/* Minification failed. Returning unminified contents.
input(33198,58): run-time error CSS1063: Expected calculation unit, found 'l'
input(33198,58): run-time error CSS1064: Expected calculation product, found 'l'
input(33198,58): run-time error CSS1065: Expected calculation sum, found 'l'
input(33198,58): run-time error CSS1034: Expected closing parenthesis, found 'l'
input(33198,58): run-time error CSS1042: Expected function, found 'l'
input(33198,61): run-time error CSS1019: Unexpected token, found ' '
input(33198,61): run-time error CSS1019: Unexpected token, found ' '
input(33198,61): run-time error CSS1042: Expected function, found ' '
input(33198,61): run-time error CSS1062: Expected semicolon or closing curly-brace, found ' '
 */
div.Accordion {
  --accordion-trigger-color: white;
}
div.Accordion.InitiallyClosed div.AccordionContent {
  display: none;
}
div.Accordion.Open a.WithArrow::after {
  transform: rotate(-90deg);
}
div.Accordion a.WithArrow {
  display: block;
  position: relative;
  padding-right: 40px;
  text-decoration: none !important;
  color: var(--accordion-trigger-color) !important;
}
div.Accordion a.WithArrow::after {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f061";
  position: absolute;
  right: 0;
  transform: rotate(90deg);
  transition: 300ms all linear;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Accordion.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAIA;EACI;;AAGI;EACI;;AAMA;EACI;;AAKZ;EACI;EACA;EACA;EACA;EACA;;AAEA;EC+EJ;EACA;EACA;EACA;EACA;EACA;EACA;EDnFQ;EACA;EACA;EACA%22%7D */
:root {
  --alert-bg: #FFEEA9;
  --alert-padding: 20px;
}
@media only screen and (min-width: 760px) {
  :root {
    --alert-padding: 20px;
  }
}

div#Content div.Alert {
  z-index: 1;
  border-radius: 5px;
  position: relative;
  padding: var(--alert-padding);
  background-color: var(--alert-bg);
  margin-top: 20px;
  margin-bottom: 20px;
}
div#Content div.Alert::before {
  inset: 0;
  z-index: -1;
  content: " ";
  position: absolute;
}
div#Content div.Alert h1, div#Content div.Alert h2, div#Content div.Alert h3, div#Content div.Alert h4, div#Content div.Alert h5, div#Content div.Alert h6 {
  margin-top: 0;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Alert.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAEA;EACI;EACA;;AAEA;EAJJ;IAKQ;;;;AAKJ;EACI;EACA;EACA;EACA;EACA;EACA,YCeoB;EDdpB,eCcoB;;ADZpB;EACI;EACA;EACA;EACA;;AAGJ;EACI%22%7D */
/* Anagrafica Lookup Trigger Icon */
.AnagraficaLookup__Container {
  margin-top: 30px;
}

.AnagraficaLookupTrigger {
  cursor: pointer;
  color: #666;
  font-size: 16px;
  transition: color 0.2s ease;
}
.AnagraficaLookupTrigger:hover {
  color: var(--color-accent);
  transform: scale(1.1);
}

#AnagraficaLookupModal {
  /* Modal Base Styles */
  /* Grid System */
  /* Table Styles */
  /* Utility Classes */
  /* Results Styles */
  /* Pagination Styles */
  /* Loading Styles */
  /* Responsive */
}
#AnagraficaLookupModal.Modal {
  display: none;
  position: fixed;
  z-index: 100002;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  outline: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
#AnagraficaLookupModal.Modal.Show {
  display: flex;
  align-items: center;
  justify-content: center;
}
#AnagraficaLookupModal.Modal.Fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}
#AnagraficaLookupModal.Modal.Fade.Show {
  opacity: 1;
}
#AnagraficaLookupModal .ModalDialog {
  position: relative;
  width: 900px;
  margin: 1.75rem;
  max-width: calc(100vw - 3.5rem);
  max-height: calc(100vh - 3.5rem);
  pointer-events: none;
}
#AnagraficaLookupModal .ModalContent {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: calc(100vh - 3.5rem);
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
#AnagraficaLookupModal .ModalHeader {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
#AnagraficaLookupModal .ModalTitle {
  margin: 0;
  line-height: 1.5;
  font-size: 1.25rem;
  font-weight: 500;
}
#AnagraficaLookupModal .ModalBody {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
  overflow-y: auto;
}
#AnagraficaLookupModal .Close {
  padding: 0;
  background-color: transparent;
  border: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  opacity: 0.5;
  cursor: pointer;
}
#AnagraficaLookupModal .Close:hover {
  opacity: 0.75;
}
#AnagraficaLookupModal .Row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
#AnagraficaLookupModal .ColMd6 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 50%;
  max-width: 50%;
}
#AnagraficaLookupModal .Table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  border-collapse: collapse;
}
#AnagraficaLookupModal .Table th,
#AnagraficaLookupModal .Table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
#AnagraficaLookupModal .Table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
  background-color: #f8f9fa;
  border-top: none;
  font-weight: 600;
  color: #495057;
  font-size: 0.9em;
  text-align: left;
}
#AnagraficaLookupModal .Table tbody + tbody {
  border-top: 2px solid #dee2e6;
}
#AnagraficaLookupModal .Table.TableStriped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}
#AnagraficaLookupModal .Table.TableHover tbody tr:hover {
  background-color: #f5f5f5;
}
#AnagraficaLookupModal .TextCenter {
  text-align: center;
}
#AnagraficaLookupModal .Me1 {
  margin-right: 0.25rem;
}
#AnagraficaLookupModal .SearchForm {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}
#AnagraficaLookupModal .SearchForm .Btn {
  margin-right: 10px;
  margin-bottom: 10px;
}
#AnagraficaLookupModal .SearchForm .Btn:last-child {
  margin-right: 0;
}
#AnagraficaLookupModal .SearchSection {
  margin-bottom: 15px;
}
#AnagraficaLookupModal .SearchSection .Row {
  margin-bottom: 10px;
}
#AnagraficaLookupModal .SearchSection .Row:last-child {
  margin-bottom: 0;
}
#AnagraficaLookupModal .Table {
  margin-bottom: 0;
}
#AnagraficaLookupModal .Table td {
  vertical-align: middle;
  font-size: 0.9em;
}
#AnagraficaLookupModal #ResultsContainer {
  margin-top: 20px;
}
#AnagraficaLookupModal #ResultsContainer .ResultsHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #dee2e6;
}
#AnagraficaLookupModal #ResultsContainer .ResultsHeader h5 {
  margin: 0;
  color: #495057;
}
#AnagraficaLookupModal #ResultsContainer .ResultsTable {
  overflow-x: scroll;
}
#AnagraficaLookupModal #ResultsCount {
  font-size: 0.9em;
  color: #6c757d;
}
#AnagraficaLookupModal .PaginationInfo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #dee2e6;
}
#AnagraficaLookupModal #PaginationNav .PageBtn {
  margin-left: 0px !important;
  margin-right: 5px !important;
}
#AnagraficaLookupModal #PaginationNav .PageBtn:last-child {
  margin-right: 0 !important;
}
#AnagraficaLookupModal #PaginationStats {
  font-size: 0.9em;
  color: #6c757d;
}
#AnagraficaLookupModal #LoadingContainer {
  padding: 40px 0;
  color: #6c757d;
}
#AnagraficaLookupModal #LoadingContainer .fa-spinner {
  font-size: 1.5em;
  margin-right: 10px;
}
@media only screen and (max-width: 759px) {
  #AnagraficaLookupModal .ModalDialog {
    max-width: 95%;
    margin: 10px auto;
  }
  #AnagraficaLookupModal .ColMd6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  #AnagraficaLookupModal #AnagraficaLookupModal .SearchSection .Row {
    margin-bottom: 15px;
  }
  #AnagraficaLookupModal #AnagraficaLookupModal .Table {
    font-size: 0.8em;
  }
  #AnagraficaLookupModal .PaginationInfo {
    flex-direction: column;
    gap: 10px;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/AnagraficaLookup.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAEA;AACA;EACI;;;AAGJ;EACI;EACA,OCCa;EDAb;EACA;;AAEA;EACI;EACA;;;AAIR;AACI;AA4FA;AAgBA;AAqCA;AA6CA;AA4BA;AA0BA;AAWA;;AA9PA;EACI;EACA;EACA,SCgCM;ED/BN;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;EACA;;AAEA;EACI;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAIR;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAEA;AAAA;EAEI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAIR;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAEA;EACI;;AAKZ;EACI;;AAEA;EACI;;AAEA;EACI;;AAKZ;EACI;;AAEA;EACI;EACA;;AAIR;EACI;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAIR;EACI;;AAIR;EACI;EACA;;AAIJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAIA;EACI;EACA;;AAEA;EACI;;AAKZ;EACI;EACA;;AAIJ;EACI;EACA;;AAEA;EACI;EACA;;AAKR;EACI;IACI;IACA;;EAGJ;IACI;IACA;;EAIA;IACI;;EAGJ;IACI;;EAIR;IACI;IACA%22%7D */
.AnimatedCheck .Loader {
  margin-top: 5px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-left-color: white;
  animation-name: loader-spin;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  position: relative;
  vertical-align: top;
  display: none;
}
.AnimatedCheck .Loader,
.AnimatedCheck .Loader::after {
  border-radius: 50%;
  width: 20px;
  height: 20px;
}
.AnimatedCheck .Loaded {
  border: none;
  -webkit-animation: none;
  animation: none;
  transition: border 500ms ease-out;
  display: inline-block;
}
.AnimatedCheck .CheckMark.Draw::after {
  animation-duration: 800ms;
  animation-timing-function: ease;
  animation-name: checkmark;
  transform: scaleX(-1) rotate(135deg);
}
.AnimatedCheck .CheckMark::after {
  opacity: 1;
  height: 10px;
  width: 5px;
  transform-origin: left top;
  border-right: 4px solid white;
  border-top: 4px solid white;
  content: "";
  left: 2px;
  top: 10px;
  position: absolute;
}
@keyframes loader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes checkmark {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }
  20% {
    height: 0;
    width: 5px;
    opacity: 1;
  }
  40% {
    height: 10px;
    width: 5px;
    opacity: 1;
  }
  100% {
    height: 10px;
    width: 5px;
    opacity: 1;
  }
}

body.Loading .AnimatedCheck i {
  display: none;
}
body.Loading .AnimatedCheck .Loader {
  display: inline-block;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Users/MassimilianoCarosi/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/AnimatedCheck.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AASI;EACI;EACA;EACA,mBAXQ;EAYR;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;AAAA;EAEI;EACA,OAvBM;EAwBN,QAxBM;;AA2BV;EACI;EACA;EACA;EAEA;EACA;;AAIA;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA,QA7CG;EA8CH,OA7CE;EA8CF;EACA;EACA;EACA;EACA,MAjDC;EAkDD,KApDG;EAqDH;;AAIR;EACI;IACI;;EAGJ;IACI;;;AAIR;EACI;IACI;IACA;IACA;;EAGJ;IACI;IACA,OA3EE;IA4EF;;EAGJ;IACI,QAjFG;IAkFH,OAjFE;IAkFF;;EAGJ;IACI,QAvFG;IAwFH,OAvFE;IAwFF;;;;AAOJ;EACI;;AAGJ;EACI%22%7D */
div.CMSBlock.Attrazioni .Arrow {
  top: 50%;
  cursor: pointer;
  position: absolute;
  text-align: center;
  width: 35px;
  height: 35px;
  transform: translateY(-50%);
  background-color: var(--color-accent) !important;
}
div.CMSBlock.Attrazioni .Arrow:focus {
  outline: 0;
}
div.CMSBlock.Attrazioni .Arrow:hover {
  background-color: var(--color-brand) !important;
}
div.CMSBlock.Attrazioni .Arrow.Right {
  left: 100%;
}
div.CMSBlock.Attrazioni .Arrow.Left {
  right: 100%;
}
div.CMSBlock.Attrazioni .Arrow i {
  top: 50%;
  color: white;
  position: relative;
  font-size: 25px;
  transform: translate(0, -50%);
}
div.CMSBlock.Attrazioni .AttractionList {
  margin: 0 35px;
  position: relative;
}
div.CMSBlock.Attrazioni .AttractionList .Attraction {
  padding: 10px;
  background-color: white;
  border: 1px solid #ccc;
}
div.CMSBlock.Attrazioni .AttractionList .Attraction a img {
  display: block;
  width: 100% !important;
  height: unset !important;
}
div.CMSBlock.Attrazioni .AttractionList .Attraction a span {
  border-top: 1px solid white;
  margin: 0 !important;
  background: var(--color-accent);
  padding: 15px 0;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 24px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
div.CMSBlock.Attrazioni .AttractionList .Attraction a:hover {
  text-decoration: none !important;
}
div.CMSBlock.Attrazioni .AttractionList .Attraction div.Text {
  margin-top: 5px;
}
@media only screen and (max-width: 759px) {
  div.CMSBlock.Attrazioni .AttractionList--Carousel {
    margin: 0;
  }
  div.CMSBlock.Attrazioni .AttractionList--Carousel .Arrow {
    z-index: 1;
    display: none;
    border: 1px solid white;
  }
  div.CMSBlock.Attrazioni .AttractionList--Carousel .Arrow.Left {
    border-left: unset;
    right: unset;
    left: 0;
  }
  div.CMSBlock.Attrazioni .AttractionList--Carousel .Arrow.Right {
    border-right: unset;
    left: unset;
    right: 0;
  }
  div.CMSBlock.Attrazioni .AttractionList--Carousel .Attraction {
    width: 70%;
  }
  div.CMSBlock.Attrazioni .AttractionList--Carousel:hover .Arrow {
    opacity: 0.6;
    display: block;
  }
  div.CMSBlock.Attrazioni .AttractionList--Carousel:hover .Arrow:hover {
    opacity: 1;
  }
}
div.CMSBlock.Attrazioni .AttractionList::after {
  content: " ";
  display: block;
  clear: both;
}
div.CMSBlock.Attrazioni .AllSlidesVisible.AttractionList {
  margin: 0;
}
div.CMSBlock.Attrazioni .AllSlidesVisible .Arrow {
  display: none;
}

body.CMS div.CMSBlock.Attrazioni table tr:first-of-type th {
  height: 50px;
  vertical-align: middle;
  border: dashed 1px red;
}
body.CMS div.CMSBlock.Attrazioni table td {
  vertical-align: top;
}
body.CMS div.CMSBlock.Attrazioni table td:not(:last-of-type) {
  border-right: dashed 1px red;
}
body.CMS div.CMSBlock.Attrazioni table td img {
  height: 100px !important;
  width: unset !important;
  max-width: 100%;
  display: block;
  margin: 20px auto;
  border: solid 1px white;
}
body.CMS div.CMSBlock.Attrazioni table td img:first-of-type {
  margin-top: 0px;
}
body.CMS div.CMSBlock.Attrazioni table td p {
  text-align: center;
  margin: 20px 0 !important;
  height: 100px;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Attrazioni.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAKI;EACI;EACA;EACA;EACA;EACA,OARK;EASL,QATK;EAUL;EACA;;AAEA;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAIR;EACI;EACA;;AAEA;EACI;EACA;EACA;;AAGI;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAIR;EACI;;AAKJ;EADJ;IAEQ;;EAEA;IACI;IACA;IACA;;EAEA;IACI;IACA;IACA;;EAGJ;IACI;IACA;IACA;;EAIR;IACI;;EAIA;IACI;IACA;;EAEA;IACI;;;AAOpB;EACI;EACA;EACA;;AAKJ;EACI;;AAGJ;EACI;;;AAQA;EACI;EACA;EACA;;AAIR;EACI;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAIR;EACI;EACA;EACA%22%7D */
div.AuthenticationBox div.TabContent {
  padding: 20px;
}
div.AuthenticationBox div.Group.Password div.Field {
  position: relative;
}
div.AuthenticationBox div.Group.Password div.Field a {
  transform: translateY(-50%);
  position: absolute;
  color: black;
  right: 0;
  top: 50%;
}
div.AuthenticationBox div.Group.Password div.Field a i {
  padding: 10px;
}
div.AuthenticationBox div.Group.DataDiNascita div.DatePicker {
  display: block;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/Magicland/FrontEnd/Content/Theme/AuthenticationBox.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AACI;EACI;;AAIA;EACI;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAOZ;EACI%22%7D */
div.AutoComplete {
  position: relative;
}

select.AutoComplete {
  display: none !important;
}
select.AutoComplete.has-error + input.AutoComplete {
  border-color: #900;
}

input.AutoComplete {
  text-overflow: ellipsis;
  padding-right: 36px !important;
}
input.AutoComplete.Open {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  outline: 5px auto -webkit-focus-ring-color;
}

input.AutoComplete-Filter {
  min-width: unset !important;
  position: absolute;
  border-radius: 0 !important;
  margin-top: 0 !important;
  border-top: none !important;
  border-bottom: none !important;
  border: 1px solid #ccc;
  background-color: #ccc !important;
  z-index: 1001;
  height: 36px;
  outline: none;
}
input.AutoComplete-Filter.FullHeight {
  display: none !important;
}

div.AutoComplete-List {
  position: absolute;
  display: none;
  height: unset;
  z-index: 1001;
  border: solid 1px #ccc;
  border-top: none;
  border-right: none;
  background: white;
  max-height: 150px;
  overflow: auto;
  margin-top: 35px;
}
div.AutoComplete-List a {
  display: block;
  text-decoration: none;
  color: black;
  font-size: 13px;
  height: 36px;
  line-height: 36px;
  padding: 0 10px;
  white-space: nowrap;
  outline: none;
  overflow: hidden;
  text-overflow: ellipsis;
}
div.AutoComplete-List a.Selected {
  background: #efefef;
  position: relative;
  padding-right: 20px;
}
div.AutoComplete-List a.Selected::after {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f00c";
  color: #666;
  position: absolute;
  right: 0;
  top: 50%;
  padding: 0 5px;
  transform: translateY(-50%);
}
div.AutoComplete-List a:hover {
  background: #ccc !important;
  text-decoration: none !important;
}
div.AutoComplete-List a.None i {
  font-style: normal;
  color: #666;
}
div.AutoComplete-List i {
  display: block;
  text-align: center;
  width: unset !important;
  position: relative !important;
  border: none !important;
  background: none !important;
}
div.AutoComplete-List.FullHeight {
  display: block;
  position: static;
  margin-top: 0;
  max-height: 500px;
}
div.AutoComplete-List div.OptGroup {
  padding: 0 10px;
  color: #999;
  height: 36px;
  line-height: 36px;
  white-space: nowrap;
  outline: none;
  overflow: hidden;
  text-overflow: ellipsis;
}

i.AutoComplete {
  line-height: 36px;
  height: 36px;
  position: absolute !important;
  margin: 0 !important;
  display: none;
}
i.AutoComplete.FullHeight {
  display: none !important;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/AutoComplete.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAIA;EACI;;;AAGJ;EACI;;AAEA;EACI;;;AAIR;EACI;EACA;;AAEA;EACI;EACA;EAEA;;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,SCOiB;EDNjB,QApCoB;EAqCpB;;AAEA;EACI;;;AAIR;EACI;EACA;EACA;EACA,SCNiB;EDOjB;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA,QA9DgB;EA+DhB,aA/DgB;EAgEhB;EACA;EACA;EACA;EACA;;AAEA;EACI,YClES;EDmET;EACA;;AAEA;EC8BR;EACA;EACA;EACA;EACA;EACA;EACA;EDlCY,OCrEC;EDsED;EACA;EACA;EACA;EACA;;AAIR;EACI;EACA;;AAIA;EACI;EACA,OCtFC;;AD2Fb;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA,OC9GK;ED+GL,QAtHgB;EAuHhB,aAvHgB;EAwHhB;EACA;EACA;EACA;;;AAIR;EACI,aAhIoB;EAiIpB,QAjIoB;EAkIpB;EACA;EACA;;AACA;EACI%22%7D */
body:not(.CMS) {
  --banner-extended-height: 350px;
  --banner-mobile-height: 200px;
}
body:not(.CMS) div.CMSBlock.Banner,
body:not(.CMS) div.Banner {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media only screen and (min-width: 760px) {
  body:not(.CMS) div.CMSBlock.Banner,
  body:not(.CMS) div.Banner {
    background-position: center 80px;
  }
}
@media only screen and (max-width: 759px) {
  body:not(.CMS) div.CMSBlock.Banner,
  body:not(.CMS) div.Banner {
    background-position: center top;
  }
}
body:not(.CMS) div.Banner {
  --banner-height: var(--banner-mobile-height);
  min-height: var(--banner-height);
}
body:not(.CMS) div.Banner a, body:not(.CMS) div.Banner div.Image {
  height: var(--banner-height);
  display: block;
  background: center;
  background-size: cover;
}
body:not(.CMS) div.Banner a.Banner--Parallax, body:not(.CMS) div.Banner div.Image.Banner--Parallax {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media only screen and (min-width: 760px) {
  body:not(.CMS) div.Banner a.Banner--Parallax, body:not(.CMS) div.Banner div.Image.Banner--Parallax {
    background-position: center 80px;
  }
}
@media only screen and (max-width: 759px) {
  body:not(.CMS) div.Banner a.Banner--Parallax, body:not(.CMS) div.Banner div.Image.Banner--Parallax {
    background-position: center top;
  }
}
body:not(.CMS) div.Banner h2 {
  position: absolute;
  top: 40px;
  width: 100%;
  text-align: center;
  font-weight: bold !important;
  color: black !important;
  text-shadow: white 0 0 10px;
  border-bottom: none !important;
}
body:not(.CMS) div.Banner img {
  height: unset !important;
  max-width: unset !important;
}
body:not(.CMS) div.Banner img.Fixed {
  transform: translate(-50%, -50%);
  max-width: 100% !important;
  position: absolute;
  left: 50%;
  top: 50%;
}
@media only screen and (min-width: 760px) and (max-width: 999px) {
  body:not(.CMS) div.Banner img.Fixed {
    max-height: 80% !important;
  }
}
@media only screen and (max-width: 759px) {
  body:not(.CMS) div.Banner img.Fixed {
    max-height: 60% !important;
  }
}
@media only screen and (min-width: 1000px) {
  body:not(.CMS) div.Banner {
    --banner-height: var(--banner-extended-height);
  }
}
body:not(.CMS) div.Banner.Small {
  --banner-extended-height: 180px;
  --banner-mobile-height: 180px;
}
body:not(.CMS) div.Banner.Big {
  --banner-extended-height: calc(350px * 1.5);
}
body:not(.CMS) div:not(.CMSBlock__Banner) .Banner {
  border-bottom: solid 15px var(--color-block-separator) !important;
}

body.CMS div.Banner h2 {
  border-bottom: none !important;
}
body.CMS div.Banner img {
  height: unset !important;
  width: unset !important;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Banner.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAEA;EACI;EACA;;AAEA;AAAA;EAEI;EACA;EACA;EACA;;AAEA;EAPJ;AAAA;IAQQ;;;AAGJ;EAXJ;AAAA;IAYQ;;;AAIR;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAEA;EANJ;IAOQ;;;AAGJ;EAVJ;IAWQ;;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EAPJ;IAQQ;;;AAGJ;EAXJ;IAYQ;;;AAIR;EA1DJ;IA2DQ;;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAIR;EACI;;;AAMI;EACI;;AAGJ;EACI;EACA%22%7D */
div.Dialog.BigliettoAbbonamento a.Scan {
  position: absolute;
  right: 20px;
  margin-top: 10px;
  color: black !important;
}
div.Dialog.BigliettoAbbonamento a.Scan:hover {
  color: var(--color-accent) !important;
  text-decoration: none;
}
div.Dialog.BigliettoAbbonamento video {
  width: 100%;
  margin-top: 10px;
  display: none;
}
div.Dialog.BigliettoAbbonamento div.Error {
  display: none;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Users/Massimiliano/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/BigliettoAbbonamento.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AACI;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAIR;EACI;EACA;EACA;;AAGJ;EACI%22%7D */
div#Breadcrumbs {
  padding-top: 12px;
  font-size: 12px;
}
div#Breadcrumbs span {
  display: inline-block;
  color: #999;
}
div#Breadcrumbs a {
  display: inline-block;
  color: #999;
  padding-right: 5px;
}
div#Breadcrumbs a:hover {
  text-decoration: none;
  color: var(--color-link-hover);
}
div#Breadcrumbs a::after {
  font-weight: 100;
  padding-left: 5px;
  content: "|";
  color: #ccc !important;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Breadcrumbs.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAEA;EACI;EACA;;AAEA;EACI;EACA,OCCK;;ADET;EACI;EACA,OCJK;EDKL;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA%22%7D */
div.Calendar {
  padding: 5px;
  border: 1px solid #ccc;
  box-shadow: rgba(0, 0, 0, 0.3) 0 0 4px;
  text-align: center;
  font-size: 14px;
  position: relative;
}
div.Calendar.Popup {
  position: absolute;
  z-index: 9997;
  display: none;
  background: white;
  min-width: 210px;
}
@media only screen and (max-width: 759px) {
  div.Calendar.Popup {
    left: 20px !important;
    width: calc(100% - 40px) !important;
    margin-bottom: 100px;
  }
}
div.Calendar a:hover {
  text-decoration: none;
}
div.Calendar span.Month {
  color: black;
  padding: 0 20px;
  line-height: 30px;
}
div.Calendar a.Arrow {
  position: absolute;
  line-height: 30px;
  top: 5px;
}
div.Calendar a.Arrow.PreviousMonth {
  left: 10px;
}
div.Calendar a.Arrow.NextMonth {
  right: 10px;
}
div.Calendar a.Arrow.Active {
  color: var(--color-accent);
}
div.Calendar a.Arrow.Active:hover {
  color: black;
}
div.Calendar a.Arrow:not(.Active) {
  color: #ccc;
  cursor: default;
}
div.Calendar table {
  width: 100%;
  min-width: 190px;
  border-collapse: collapse;
  opacity: 0;
}
div.Calendar table tr .Holyday {
  color: var(--color-accent);
}
div.Calendar table tr th {
  background-color: #ccc;
  padding: 10px 0;
  width: 14.2857142857%;
  text-align: center;
  font-size: 12px;
}
div.Calendar table tr td {
  width: 14.2857142857px;
  line-height: 22px;
  text-align: right;
  border: solid 1px white;
  cursor: default;
  opacity: 0.4;
  padding: 0 5px;
}
div.Calendar table tr td.Active {
  font-weight: bold;
  cursor: pointer;
  opacity: 1;
}
div.Calendar table tr td.Active:hover {
  color: white;
  text-decoration: none;
  background-color: #1f8fcf;
}
div.Calendar table tr td.Today {
  background-color: #efefef;
}
div.Calendar table tr td.Checkin {
  background-color: #588725;
  color: white;
  clip-path: polygon(40% 0, 50% 20%, 60% 0, 100% 0, 100% 100%, 0 100%, 0 0);
}
div.Calendar table tr td.Checkout {
  background-color: #ff9900;
  color: white;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 60% 100%, 50% 80%, 40% 100%, 0 100%);
}
div.Calendar table tr td.Stay {
  background-color: #ccc;
  color: white;
}
div.Calendar table tr:nth-child(2) td {
  padding-top: 5px;
}
div.Calendar span.Month {
  padding: 0 20px;
  line-height: 30px;
  text-transform: uppercase;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Calendar.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA,SCsCS;EDrCT;EACA;EACA;;AAEA;EAPJ;IAQQ;IACA;IACA;;;AAIR;EACI;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAEA;EACI;;AAIR;EACI,OChDM;EDiDN;;AAIR;EACI;EACA;EACA;EACA;;AAGI;EACI;;AAGJ;EACI,kBCjEE;EDkEF;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA,kBChFN;;ADoFF;EACI,kBC/FC;;ADkGL;EACI,kBChFN;EDiFM;EACA;;AAGJ;EACI,kBCnFL;EDoFK;EACA;;AAGJ;EACI,kBC9GF;ED+GE;;AAKJ;EACI;;AAMhB;EACI;EACA;EACA%22%7D */
body:not(.CMS) div.Carousel {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  width: 100%;
  margin-top: 60px;
  /*@media only screen and (max-width: 759px) {
      @media only screen and (orientation: portrait) {
          height: 50vh !important;
      }
  }*/
  /* IE10 Windows Phone 8 Fixes */
}
body:not(.CMS) div.Carousel:first-of-type {
  margin-top: 0;
}
body:not(.CMS) div.Carousel .SwiperWrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
body:not(.CMS) div.Carousel.Carousel-no-flexbox .Item {
  float: left;
}
body:not(.CMS) div.Carousel.Carousel-android .Item,
body:not(.CMS) div.Carousel .SwiperWrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
body:not(.CMS) div.Carousel.Carousel-wp8-horizontal, body:not(.CMS) div.Carousel.Carousel-wp8-horizontal > .SwiperWrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
body:not(.CMS) div.Carousel .Item {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  background: center no-repeat;
  background-size: cover;
}
body:not(.CMS) div.Carousel h1 {
  position: absolute;
  z-index: 10;
  text-transform: unset;
  color: white !important;
  bottom: 200px;
  text-shadow: 0px 1px 3px rgba(5, 47, 80, 0.47), 0px 2px 8px rgb(28, 64, 93);
  font-size: 20px !important;
  line-height: 1.2;
  text-align: right;
  right: 10%;
}
@media only screen and (max-width: 759px) {
  body:not(.CMS) div.Carousel h1 {
    left: 20px;
    right: 20px;
    top: 40px;
    text-align: center !important;
  }
}
body:not(.CMS) div.Carousel div.Dots {
  right: 20px;
  top: 20px;
  width: auto;
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  z-index: 10;
}
body:not(.CMS) div.Carousel div.Dots.Dots-hidden {
  opacity: 0;
}
body:not(.CMS) div.Carousel div.Dots.Dots-clickable .Bullet {
  cursor: pointer;
}
body:not(.CMS) div.Carousel div.Dots .Bullet {
  border-radius: 50%;
  display: inline-block;
  height: 12px;
  width: 12px;
  opacity: 1;
  box-shadow: 0px 4px 12px 2px rgba(0, 0, 0, 0.35);
  background: #999;
  margin: 0 4px;
}
body:not(.CMS) div.Carousel div.Dots .Bullet:hover, body:not(.CMS) div.Carousel div.Dots .Bullet.Selected {
  background-color: white;
}
body:not(.CMS) div.Carousel div.List, body:not(.CMS) div.Carousel div.ClaimsList {
  display: none;
}
body:not(.CMS) div.Carousel .Arrow {
  position: absolute;
  z-index: 11;
  opacity: 0;
  transition: opacity ease-in-out 0.6s;
  text-align: center;
  font-size: 60px;
  color: white;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.7);
  cursor: pointer;
}
body:not(.CMS) div.Carousel .Arrow:hover, body:not(.CMS) div.Carousel .Arrow:active, body:not(.CMS) div.Carousel .Arrow:focus {
  outline: none;
}
body:not(.CMS) div.Carousel .Arrow.Left {
  left: 0;
  top: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  transform: translateY(-50%);
}
body:not(.CMS) div.Carousel .Arrow.Right {
  right: 0;
  top: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  transform: translateY(-50%);
}
body:not(.CMS) div.Carousel .Arrow.Down {
  font-size: 130px;
  color: black;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  height: 100px;
}
body:not(.CMS) div.Carousel .Arrow:hover {
  opacity: 1;
}
@media only screen and (max-width: 759px) {
  body:not(.CMS) div.Carousel .Arrow {
    display: none !important;
  }
}
body:not(.CMS) div.Carousel:hover .Arrow {
  opacity: 0.7;
}

body.CMS div.Carousel div.List {
  border: dashed 1px red;
}
body.CMS div.Carousel div#VideoLinkEditor {
  border: dashed 1px red;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Carousel.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAGI;EACI;EACA;EACA;EACA;EACA;AACA;EACA;EACA;EACA;AAEA;AAAA;AAAA;AAAA;AAAA;AAoCA;;AA/BA;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAGJ;AAAA;EAEI;EACA;;AAGJ;EAEI;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA,SClCc;EDmCd;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;IACI,MCtDU;IDuDV,OCvDU;IDwDV;IACA;;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA,YCjHH;EDkHG;;AAEA;EACI;;AAKZ;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAGI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAGJ;EAjDJ;IAkDQ;;;AAKJ;EACI;;;AAQd;EACC;;AAGD;EACC%22%7D */
div.CMSPage div.CMSBlock {
  position: relative;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
div.CMSPage div.CMSBlock div.Background0 {
  display: none;
}
@media all and (max-device-width: 1024px) {
  div.CMSPage div.CMSBlock div.Background0 {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
  }
  div.CMSPage div.CMSBlock div.Background0 div.Background1 {
    position: absolute;
    background: center center no-repeat;
    background-size: cover;
    left: 0;
    right: 0;
    top: 0;
    height: 100vh;
  }
}
div.CMSPage div.CMSBlock.Black {
  background-color: black;
  color: white;
}
div.CMSPage div.CMSBlock.BorderBottom {
  border-bottom: solid 15px var(--color-block-separator) !important;
}
div.CMSPage div.CMSBlock.Opacity:not(:hover) {
  opacity: 0.5;
}
div.CMSPage div.CMSBlock.Arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 20px solid white;
  transform: translate(-50%, 0);
}
div.CMSPage div.CMSBlock.Shadow::after {
  content: "";
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 30px;
  bottom: -30px;
  background: url(/Content/Theme/CMSPage/Shadow.png) center no-repeat;
}
div.CMSPage div.CMSBlock.MarginBottom {
  margin-bottom: 20px;
}
div.CMSPage div.CMSBlock.Side.First {
  padding-top: 60px;
}
div.CMSPage div.CMSBlock.Side.Last {
  padding-bottom: 60px;
}
div.CMSPage div.CMSBlock.CustomBackground {
  padding-top: 40px;
  padding-bottom: 40px;
}
div.CMSPage div.CMSBlock.CustomBackgroundImage {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media only screen and (max-width: 759px) {
  div.CMSPage div.CMSBlock.CustomBackgroundImage {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/CMSPage.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAGC;EACC;EACA;EACA;EACA;EACA;;AAEA;EACC;;AAEA;EAHD;IAIE;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACC;IACA;IACA;IACA;IACA;IACA;IACA;;;AAKH;EACC;EACA;;AAGD;EACC;;AAGD;EACC;;AAIA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAKD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIF;EACC;;AAKA;EACC;;AAGD;EACC;;AAIF;EACC;EACA;;AAGD;EACC;EACA;;AAEA;EAJD;IAKE;IACA%22%7D */
body.CMS .Component table.WithCMS td {
  vertical-align: middle;
  text-align: center; }
  body.CMS .Component table.WithCMS td.Actions {
    width: 300px; }
    body.CMS .Component table.WithCMS td.Actions .Button {
      display: inline-block;
      margin-right: 5px;
      margin-top: 5px;
      margin-bottom: 5px; }
      body.CMS .Component table.WithCMS td.Actions .Button.Delete {
        float: left;
        padding: 0 25px; }
      body.CMS .Component table.WithCMS td.Actions .Button + .Button {
        margin-left: 0; }
    body.CMS .Component table.WithCMS td.Actions a {
      font-size: 20px;
      margin-right: 5px; }
    body.CMS .Component table.WithCMS td.Actions .OrderBar {
      float: left; }
      body.CMS .Component table.WithCMS td.Actions .OrderBar::after {
        content: "";
        clear: both;
        display: block; }

body.CMS .Component .Button.Add,
body.CMS .Component .Button.Save {
  margin-top: 0;
  margin-right: 15px; }

/*# sourceMappingURL=data:application/json;base64,ewoJInZlcnNpb24iOiAzLAoJImZpbGUiOiAiQ29udGVudC9UaGVtZS9Db21wb25lbnQuY3NzIiwKCSJzb3VyY2VzIjogWwoJCSJDb250ZW50L1RoZW1lL0NvbXBvbmVudC5zY3NzIgoJXSwKCSJuYW1lcyI6IFtdLAoJIm1hcHBpbmdzIjogIkFBQ0EsQUFHWSxJQUhSLEFBQUEsSUFBSSxDQUNKLFVBQVUsQ0FDTixLQUFLLEFBQUEsUUFBUSxDQUNULEVBQUUsQ0FBQztFQUNDLGNBQWMsRUFBRSxNQUFNO0VBQ3RCLFVBQVUsRUFBRSxNQUFNLEdBb0NyQjtFQXpDYixBQUdZLElBSFIsQUFBQSxJQUFJLENBQ0osVUFBVSxDQUNOLEtBQUssQUFBQSxRQUFRLENBQ1QsRUFBRSxBQUlFLFFBQVMsQ0FBQztJQUNOLEtBQUssRUFBRSxLQUFLLEdBZ0NmO0lBeENqQixBQVVvQixJQVZoQixBQUFBLElBQUksQ0FDSixVQUFVLENBQ04sS0FBSyxBQUFBLFFBQVEsQ0FDVCxFQUFFLEFBSUUsUUFBUyxDQUdMLE9BQU8sQ0FBQztNQUNKLE9BQU8sRUFBRSxZQUFZO01BQ3JCLFlBQVksRUFBRSxHQUFHO01BQ2pCLFVBQVUsRUFBRSxHQUFHO01BQ2YsYUFBYSxFQUFFLEdBQUcsR0FVckI7TUF4QnJCLEFBVW9CLElBVmhCLEFBQUEsSUFBSSxDQUNKLFVBQVUsQ0FDTixLQUFLLEFBQUEsUUFBUSxDQUNULEVBQUUsQUFJRSxRQUFTLENBR0wsT0FBTyxBQU1ILE9BQVEsQ0FBQztRQUNMLEtBQUssRUFBRSxJQUFJO1FBQ1gsT0FBTyxFQUFFLE1BQU0sR0FDbEI7TUFuQnpCLEFBcUI0QixJQXJCeEIsQUFBQSxJQUFJLENBQ0osVUFBVSxDQUNOLEtBQUssQUFBQSxRQUFRLENBQ1QsRUFBRSxBQUlFLFFBQVMsQ0FHTCxPQUFPLEdBV0MsT0FBTyxDQUFDO1FBQ1IsV0FBVyxFQUFFLENBQUMsR0FDakI7SUF2QnpCLEFBMEJvQixJQTFCaEIsQUFBQSxJQUFJLENBQ0osVUFBVSxDQUNOLEtBQUssQUFBQSxRQUFRLENBQ1QsRUFBRSxBQUlFLFFBQVMsQ0FtQkwsQ0FBQyxDQUFDO01BQ0UsU0FBUyxFQUFFLElBQUk7TUFDZixZQUFZLEVBQUUsR0FBRyxHQUNwQjtJQTdCckIsQUErQm9CLElBL0JoQixBQUFBLElBQUksQ0FDSixVQUFVLENBQ04sS0FBSyxBQUFBLFFBQVEsQ0FDVCxFQUFFLEFBSUUsUUFBUyxDQXdCTCxTQUFTLENBQUM7TUFDTixLQUFLLEVBQUUsSUFBSSxHQU9kO01BdkNyQixBQStCb0IsSUEvQmhCLEFBQUEsSUFBSSxDQUNKLFVBQVUsQ0FDTixLQUFLLEFBQUEsUUFBUSxDQUNULEVBQUUsQUFJRSxRQUFTLENBd0JMLFNBQVMsQUFHTCxPQUFRLENBQUM7UUFDTCxPQUFPLEVBQUUsRUFBRTtRQUNYLEtBQUssRUFBRSxJQUFJO1FBQ1gsT0FBTyxFQUFFLEtBQUssR0FDakI7O0FBdEN6QixBQTRDUSxJQTVDSixBQUFBLElBQUksQ0FDSixVQUFVLENBMkNOLE9BQU8sQUFBQSxJQUFJO0FBNUNuQixBQTZDUSxJQTdDSixBQUFBLElBQUksQ0FDSixVQUFVLENBNENOLE9BQU8sQUFBQSxLQUFLLENBQUM7RUFDVCxVQUFVLEVBQUUsQ0FBQztFQUNiLFlBQVksRUFBRSxJQUFJLEdBQ3JCIgp9 */
/*!
 * Font Awesome Pro 6.5.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2023 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-classic: "FontAwesome";
  --fa-font-regular: normal 400 1em/1 "FontAwesome";
}

@font-face {
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("FontAwesome/Fonts/fa-regular-400.woff2") format("woff2"), url("FontAwesome/Fonts/fa-regular-400.ttf") format("truetype");
}
.far,
.fa-regular {
  font-weight: 400;
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

.display-block {
  display: block;
}

.display-flex {
  display: flex;
}

.display-grid {
  display: grid;
}

.display-none {
  display: none;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.items-stretch {
  align-items: stretch;
}

@media (min-width: 640px) {
  .sm\:align-left {
    text-align: left;
  }
  .sm\:align-center {
    text-align: center;
  }
  .sm\:align-right {
    text-align: right;
  }
  .sm\:display-block {
    display: block;
  }
  .sm\:display-flex {
    display: flex;
  }
  .sm\:display-grid {
    display: grid;
  }
  .sm\:display-none {
    display: none;
  }
  .sm\:justify-start {
    justify-content: flex-start;
  }
  .sm\:justify-center {
    justify-content: center;
  }
  .sm\:justify-end {
    justify-content: flex-end;
  }
  .sm\:justify-between {
    justify-content: space-between;
  }
  .sm\:justify-around {
    justify-content: space-around;
  }
  .sm\:items-start {
    align-items: flex-start;
  }
  .sm\:items-center {
    align-items: center;
  }
  .sm\:items-end {
    align-items: flex-end;
  }
  .sm\:items-stretch {
    align-items: stretch;
  }
}
@media (min-width: 760px) {
  .md\:align-left {
    text-align: left;
  }
  .md\:align-center {
    text-align: center;
  }
  .md\:align-right {
    text-align: right;
  }
  .md\:display-block {
    display: block;
  }
  .md\:display-flex {
    display: flex;
  }
  .md\:display-grid {
    display: grid;
  }
  .md\:display-none {
    display: none;
  }
  .md\:justify-start {
    justify-content: flex-start;
  }
  .md\:justify-center {
    justify-content: center;
  }
  .md\:justify-end {
    justify-content: flex-end;
  }
  .md\:justify-between {
    justify-content: space-between;
  }
  .md\:justify-around {
    justify-content: space-around;
  }
  .md\:items-start {
    align-items: flex-start;
  }
  .md\:items-center {
    align-items: center;
  }
  .md\:items-end {
    align-items: flex-end;
  }
  .md\:items-stretch {
    align-items: stretch;
  }
}
@media (min-width: 1000px) {
  .lg\:align-left {
    text-align: left;
  }
  .lg\:align-center {
    text-align: center;
  }
  .lg\:align-right {
    text-align: right;
  }
  .lg\:display-block {
    display: block;
  }
  .lg\:display-flex {
    display: flex;
  }
  .lg\:display-grid {
    display: grid;
  }
  .lg\:display-none {
    display: none;
  }
  .lg\:justify-start {
    justify-content: flex-start;
  }
  .lg\:justify-center {
    justify-content: center;
  }
  .lg\:justify-end {
    justify-content: flex-end;
  }
  .lg\:justify-between {
    justify-content: space-between;
  }
  .lg\:justify-around {
    justify-content: space-around;
  }
  .lg\:items-start {
    align-items: flex-start;
  }
  .lg\:items-center {
    align-items: center;
  }
  .lg\:items-end {
    align-items: flex-end;
  }
  .lg\:items-stretch {
    align-items: stretch;
  }
}
@media (min-width: 1256px) {
  .xl\:align-left {
    text-align: left;
  }
  .xl\:align-center {
    text-align: center;
  }
  .xl\:align-right {
    text-align: right;
  }
  .xl\:display-block {
    display: block;
  }
  .xl\:display-flex {
    display: flex;
  }
  .xl\:display-grid {
    display: grid;
  }
  .xl\:display-none {
    display: none;
  }
  .xl\:justify-start {
    justify-content: flex-start;
  }
  .xl\:justify-center {
    justify-content: center;
  }
  .xl\:justify-end {
    justify-content: flex-end;
  }
  .xl\:justify-between {
    justify-content: space-between;
  }
  .xl\:justify-around {
    justify-content: space-around;
  }
  .xl\:items-start {
    align-items: flex-start;
  }
  .xl\:items-center {
    align-items: center;
  }
  .xl\:items-end {
    align-items: flex-end;
  }
  .xl\:items-stretch {
    align-items: stretch;
  }
}
body.CMS div#Content h1.WithCMS, body.CMS div#Content h2.WithCMS, body.CMS div#Content h3.WithCMS, body.CMS div#Content h4.WithCMS, body.CMS div#Content h5.WithCMS {
  color: #cc0000;
  font-size: 30px;
  font-family: var(--font-primary, MyriadPro, sans-serif);
  text-transform: uppercase;
  border: none;
}

body:not(.Home) div#Content {
  background: white;
}

body:not(.CMSPage) footer {
  margin-top: 40px;
}

@media only screen and (min-width: 760px) {
  div#Content {
    padding: var(--header-height) 0 0;
  }
}

@media only screen and (min-width: 760px) {
  header.SocialBar + div#Content {
    padding: calc(var(--header-height) + 30px) 0 0;
  }
}

div#Content,
div.Dialog.PopupNewsletter #PopupNewsletter {
  min-height: calc(100vh - var(--footer-height));
}

footer a,
div#Content a,
body.Dialog div.Dialog div.Container a {
  color: var(--color-link-default, --color-accent);
}
footer a:hover,
div#Content a:hover,
body.Dialog div.Dialog div.Container a:hover {
  text-decoration: underline;
  color: var(--color-link-hover, --color-accent);
}
footer a:not(.Button).Icon i,
div#Content a:not(.Button).Icon i,
body.Dialog div.Dialog div.Container a:not(.Button).Icon i {
  position: relative;
  top: 1px;
  margin-left: 10px;
}
footer a:not(.Button).Icon:hover,
div#Content a:not(.Button).Icon:hover,
body.Dialog div.Dialog div.Container a:not(.Button).Icon:hover {
  text-decoration: none;
  color: #1f8fcf;
}
footer a.PopupButton.Close,
div#Content a.PopupButton.Close,
body.Dialog div.Dialog div.Container a.PopupButton.Close {
  cursor: pointer;
  font-size: 28px;
  position: absolute;
  color: #1f8fcf;
}
footer a.PopupButton.Close:hover,
div#Content a.PopupButton.Close:hover,
body.Dialog div.Dialog div.Container a.PopupButton.Close:hover {
  text-decoration: none;
}
footer sub,
div#Content sub,
body.Dialog div.Dialog div.Container sub {
  vertical-align: sub;
  font-size: smaller;
}
footer sup,
div#Content sup,
body.Dialog div.Dialog div.Container sup {
  vertical-align: super;
  font-size: smaller;
}
footer blockquote,
div#Content blockquote,
body.Dialog div.Dialog div.Container blockquote {
  background: #f9f9f9;
  border-left: 4px solid #ccc;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: none;
}
footer hr,
div#Content hr,
body.Dialog div.Dialog div.Container hr {
  height: 0;
  border-top: solid 1px #ccc;
  border-bottom: none;
  width: 100%;
  margin: 0 0 20px 0;
}
footer h1,
div#Content h1,
body.Dialog div.Dialog div.Container h1 {
  font-weight: bold;
  text-transform: uppercase;
  color: var(--color-heading-h1);
  max-width: 1280px;
  margin: 30px auto;
  position: relative;
}
footer h1:last-child,
div#Content h1:last-child,
body.Dialog div.Dialog div.Container h1:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (min-width: 760px) {
  footer h1,
  div#Content h1,
  body.Dialog div.Dialog div.Container h1 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 759px) {
  footer h1,
  div#Content h1,
  body.Dialog div.Dialog div.Container h1 {
    font-size: 22px;
    margin: 20px 0;
  }
}
footer > h1,
div#Content > h1,
body.Dialog div.Dialog div.Container > h1 {
  padding: 0 20px;
}
footer h2,
div#Content h2,
body.Dialog div.Dialog div.Container h2 {
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 5px;
  color: var(--color-heading-h2);
  text-transform: none;
}
footer h2.Raggruppamento,
div#Content h2.Raggruppamento,
body.Dialog div.Dialog div.Container h2.Raggruppamento {
  color: white;
  background-color: var(--color-accent);
  padding: 10px;
}
footer h2.Raggruppamento i,
div#Content h2.Raggruppamento i,
body.Dialog div.Dialog div.Container h2.Raggruppamento i {
  background-color: transparent;
}
@media only screen and (min-width: 760px) {
  footer h2,
  div#Content h2,
  body.Dialog div.Dialog div.Container h2 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 759px) {
  footer h2,
  div#Content h2,
  body.Dialog div.Dialog div.Container h2 {
    font-size: 20px;
    margin-top: 20px;
  }
}
footer h2:first-child:not(.MarginTop),
div#Content h2:first-child:not(.MarginTop),
body.Dialog div.Dialog div.Container h2:first-child:not(.MarginTop) {
  margin-top: 0 !important;
}
footer h2:last-child:not(.MarginBottom),
div#Content h2:last-child:not(.MarginBottom),
body.Dialog div.Dialog div.Container h2:last-child:not(.MarginBottom) {
  margin-bottom: 0 !important;
}
footer h3,
div#Content h3,
body.Dialog div.Dialog div.Container h3 {
  color: var(--color-heading-h3);
}
footer h3, footer h5,
div#Content h3,
div#Content h5,
body.Dialog div.Dialog div.Container h3,
body.Dialog div.Dialog div.Container h5 {
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
}
footer h3:first-child:not(.MarginTop), footer h5:first-child:not(.MarginTop),
div#Content h3:first-child:not(.MarginTop),
div#Content h5:first-child:not(.MarginTop),
body.Dialog div.Dialog div.Container h3:first-child:not(.MarginTop),
body.Dialog div.Dialog div.Container h5:first-child:not(.MarginTop) {
  margin-top: 0 !important;
}
footer h3:last-child:not(.MarginBottom), footer h5:last-child:not(.MarginBottom),
div#Content h3:last-child:not(.MarginBottom),
div#Content h5:last-child:not(.MarginBottom),
body.Dialog div.Dialog div.Container h3:last-child:not(.MarginBottom),
body.Dialog div.Dialog div.Container h5:last-child:not(.MarginBottom) {
  margin-bottom: 0 !important;
}
@media only screen and (min-width: 760px) {
  footer h3, footer h5,
  div#Content h3,
  div#Content h5,
  body.Dialog div.Dialog div.Container h3,
  body.Dialog div.Dialog div.Container h5 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 759px) {
  footer h3, footer h5,
  div#Content h3,
  div#Content h5,
  body.Dialog div.Dialog div.Container h3,
  body.Dialog div.Dialog div.Container h5 {
    font-size: 16px;
  }
}
footer h4,
div#Content h4,
body.Dialog div.Dialog div.Container h4 {
  font-weight: normal;
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--color-heading-h4);
}
footer h4:first-child,
div#Content h4:first-child,
body.Dialog div.Dialog div.Container h4:first-child {
  margin-top: 0 !important;
}
footer h4:last-child,
div#Content h4:last-child,
body.Dialog div.Dialog div.Container h4:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (min-width: 760px) {
  footer h4,
  div#Content h4,
  body.Dialog div.Dialog div.Container h4 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 759px) {
  footer h4,
  div#Content h4,
  body.Dialog div.Dialog div.Container h4 {
    font-size: 16px;
  }
}
footer h5,
div#Content h5,
body.Dialog div.Dialog div.Container h5 {
  color: var(--color-heading-h5);
}
footer h6,
div#Content h6,
body.Dialog div.Dialog div.Container h6 {
  color: var(--color-heading-h6);
}
footer p,
div#Content p,
body.Dialog div.Dialog div.Container p {
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--color-paragraph);
}
footer p:first-child,
div#Content p:first-child,
body.Dialog div.Dialog div.Container p:first-child {
  margin-top: 0;
}
footer p:last-child,
div#Content p:last-child,
body.Dialog div.Dialog div.Container p:last-child {
  margin-bottom: 0;
}
footer p + ul, footer p + ol,
div#Content p + ul,
div#Content p + ol,
body.Dialog div.Dialog div.Container p + ul,
body.Dialog div.Dialog div.Container p + ol {
  margin-top: 0 !important;
}
footer ul:not(.Plain),
div#Content ul:not(.Plain),
body.Dialog div.Dialog div.Container ul:not(.Plain) {
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: 20px;
}
footer ul:not(.Plain):first-child,
div#Content ul:not(.Plain):first-child,
body.Dialog div.Dialog div.Container ul:not(.Plain):first-child {
  margin-top: 0;
}
footer ul:not(.Plain):last-child,
div#Content ul:not(.Plain):last-child,
body.Dialog div.Dialog div.Container ul:not(.Plain):last-child {
  margin-bottom: 0;
}
footer ul:not(.Plain) li,
div#Content ul:not(.Plain) li,
body.Dialog div.Dialog div.Container ul:not(.Plain) li {
  padding-left: 20px;
  position: relative;
  font-size: 16px;
  color: var(--color-paragraph);
}
footer ul:not(.Plain) li::before,
div#Content ul:not(.Plain) li::before,
body.Dialog div.Dialog div.Container ul:not(.Plain) li::before {
  color: var(--color-list, --color-accent);
  font-family: FontAwesome;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: -0.125em;
  content: "\f111";
  line-height: 16px;
  position: absolute;
  font-weight: bold;
  font-size: 8px;
  left: 0;
  top: 3px;
}
footer ul:not(.Plain).NoIcon > li,
div#Content ul:not(.Plain).NoIcon > li,
body.Dialog div.Dialog div.Container ul:not(.Plain).NoIcon > li {
  padding-left: 0;
}
footer ul:not(.Plain).NoIcon > li::before,
div#Content ul:not(.Plain).NoIcon > li::before,
body.Dialog div.Dialog div.Container ul:not(.Plain).NoIcon > li::before {
  content: unset;
}
footer ul:not(.Plain).ColumnRule,
div#Content ul:not(.Plain).ColumnRule,
body.Dialog div.Dialog div.Container ul:not(.Plain).ColumnRule {
  column-rule: 1px double #ccc;
  column-gap: 40px;
}
footer ul:not(.Plain)[data-icon] li,
div#Content ul:not(.Plain)[data-icon] li,
body.Dialog div.Dialog div.Container ul:not(.Plain)[data-icon] li {
  padding-top: 10px;
  padding-left: 46px;
  min-height: 48px;
}
footer ul:not(.Plain)[data-icon] li i,
div#Content ul:not(.Plain)[data-icon] li i,
body.Dialog div.Dialog div.Container ul:not(.Plain)[data-icon] li i {
  font-size: 34px;
  color: var(--color-accent);
  position: absolute;
  left: 0px;
  top: 8px;
  display: inline-block;
  font-weight: 100;
}
footer ul:not(.Plain)[data-icon] li::before,
div#Content ul:not(.Plain)[data-icon] li::before,
body.Dialog div.Dialog div.Container ul:not(.Plain)[data-icon] li::before {
  content: unset;
}
footer ul:not(.Plain)[data-image] li,
div#Content ul:not(.Plain)[data-image] li,
body.Dialog div.Dialog div.Container ul:not(.Plain)[data-image] li {
  padding-top: 10px;
  padding-left: 46px;
  min-height: 48px;
}
footer ul:not(.Plain)[data-image] li img,
div#Content ul:not(.Plain)[data-image] li img,
body.Dialog div.Dialog div.Container ul:not(.Plain)[data-image] li img {
  position: absolute;
  max-height: 32px;
  max-width: 32px;
  left: 0;
}
footer ul:not(.Plain)[data-image] li::before,
div#Content ul:not(.Plain)[data-image] li::before,
body.Dialog div.Dialog div.Container ul:not(.Plain)[data-image] li::before {
  content: unset;
}
footer ul:not(.Plain)[data-columns="2"],
div#Content ul:not(.Plain)[data-columns="2"],
body.Dialog div.Dialog div.Container ul:not(.Plain)[data-columns="2"] {
  -webkit-columns: 200px 2;
  -moz-columns: 200px 2;
  columns: 200px 2;
}
footer ul:not(.Plain)[data-columns="2"] li,
div#Content ul:not(.Plain)[data-columns="2"] li,
body.Dialog div.Dialog div.Container ul:not(.Plain)[data-columns="2"] li {
  -webkit-column-break-inside: avoid;
  -webkit-backface-visibility: hidden;
}
footer ul:not(.Plain)[data-columns="3"],
div#Content ul:not(.Plain)[data-columns="3"],
body.Dialog div.Dialog div.Container ul:not(.Plain)[data-columns="3"] {
  -webkit-columns: 200px 3;
  -moz-columns: 200px 3;
  columns: 200px 3;
}
footer ul:not(.Plain)[data-columns="3"] li,
div#Content ul:not(.Plain)[data-columns="3"] li,
body.Dialog div.Dialog div.Container ul:not(.Plain)[data-columns="3"] li {
  -webkit-column-break-inside: avoid;
  -webkit-backface-visibility: hidden;
}
footer ul:not(.Plain)[data-columns="4"],
div#Content ul:not(.Plain)[data-columns="4"],
body.Dialog div.Dialog div.Container ul:not(.Plain)[data-columns="4"] {
  -webkit-columns: 200px 4;
  -moz-columns: 200px 4;
  columns: 200px 4;
}
footer ul:not(.Plain)[data-columns="4"] li,
div#Content ul:not(.Plain)[data-columns="4"] li,
body.Dialog div.Dialog div.Container ul:not(.Plain)[data-columns="4"] li {
  -webkit-column-break-inside: avoid;
  -webkit-backface-visibility: hidden;
}
footer ol:not(.Plain),
div#Content ol:not(.Plain),
body.Dialog div.Dialog div.Container ol:not(.Plain) {
  line-height: 1.5;
  margin-top: 20px;
  list-style: none;
  counter-reset: li;
  margin-bottom: 20px;
  list-style-position: inside;
}
footer ol:not(.Plain):first-child,
div#Content ol:not(.Plain):first-child,
body.Dialog div.Dialog div.Container ol:not(.Plain):first-child {
  margin-top: 0 !important;
}
footer ol:not(.Plain):last-child,
div#Content ol:not(.Plain):last-child,
body.Dialog div.Dialog div.Container ol:not(.Plain):last-child {
  margin-bottom: 0 !important;
}
footer ol:not(.Plain) li,
div#Content ol:not(.Plain) li,
body.Dialog div.Dialog div.Container ol:not(.Plain) li {
  padding-left: 20px;
  position: relative;
  counter-increment: li;
  color: var(--color-paragraph);
}
footer ol:not(.Plain) li::before,
div#Content ol:not(.Plain) li::before,
body.Dialog div.Dialog div.Container ol:not(.Plain) li::before {
  content: counters(li, ".");
  color: var(--color-list, --color-accent);
  padding-right: 10px;
  position: relative;
  line-height: 16px;
  font-weight: bold;
  left: 0;
  top: 0px;
}
footer ol:not(.Plain) ul,
div#Content ol:not(.Plain) ul,
body.Dialog div.Dialog div.Container ol:not(.Plain) ul {
  list-style: circle;
  list-style-position: inside;
}
footer ol:not(.Plain) ul li::before,
div#Content ol:not(.Plain) ul li::before,
body.Dialog div.Dialog div.Container ol:not(.Plain) ul li::before {
  content: none;
}
footer ul.ImageList,
div#Content ul.ImageList,
body.Dialog div.Dialog div.Container ul.ImageList {
  display: grid;
  justify-content: space-around;
}
footer ul.ImageList li,
div#Content ul.ImageList li,
body.Dialog div.Dialog div.Container ul.ImageList li {
  padding-left: unset;
  text-align: center;
  flex-basis: 120px;
  line-height: 1.2;
}
footer ul.ImageList li img,
div#Content ul.ImageList li img,
body.Dialog div.Dialog div.Container ul.ImageList li img {
  width: 60%;
  margin: 0 20% 10px 20%;
}
footer ul.ImageList li::before,
div#Content ul.ImageList li::before,
body.Dialog div.Dialog div.Container ul.ImageList li::before {
  content: unset;
}
@media only screen and (min-width: 760px) {
  footer ul.ImageList,
  div#Content ul.ImageList,
  body.Dialog div.Dialog div.Container ul.ImageList {
    grid-gap: 40px;
    grid-template-columns: repeat(auto-fit, 200px);
  }
}
@media only screen and (max-width: 759px) {
  footer ul.ImageList,
  div#Content ul.ImageList,
  body.Dialog div.Dialog div.Container ul.ImageList {
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fit, 200px);
  }
}
@media only screen and (max-width: 399px) {
  footer ul.ImageList,
  div#Content ul.ImageList,
  body.Dialog div.Dialog div.Container ul.ImageList {
    grid-template-columns: 1fr;
  }
}
footer table:not(.Plain):not(.Information),
div#Content table:not(.Plain):not(.Information),
body.Dialog div.Dialog div.Container table:not(.Plain):not(.Information) {
  width: 100%;
  margin: 30px 0;
}
footer table:not(.Plain):not(.Information) tr th,
div#Content table:not(.Plain):not(.Information) tr th,
body.Dialog div.Dialog div.Container table:not(.Plain):not(.Information) tr th {
  color: white;
  background-color: black;
  border: 1px solid white;
  padding: 10px;
  font-weight: bold;
}
footer table:not(.Plain):not(.Information) tr th:first-child,
div#Content table:not(.Plain):not(.Information) tr th:first-child,
body.Dialog div.Dialog div.Container table:not(.Plain):not(.Information) tr th:first-child {
  border-left: none;
}
footer table:not(.Plain):not(.Information) tr th:last-child,
div#Content table:not(.Plain):not(.Information) tr th:last-child,
body.Dialog div.Dialog div.Container table:not(.Plain):not(.Information) tr th:last-child {
  border-right: none;
}
footer table:not(.Plain):not(.Information) tr.Disabled td,
div#Content table:not(.Plain):not(.Information) tr.Disabled td,
body.Dialog div.Dialog div.Container table:not(.Plain):not(.Information) tr.Disabled td {
  background-color: #efefef;
}
footer table:not(.Plain):not(.Information) tr.Future td,
div#Content table:not(.Plain):not(.Information) tr.Future td,
body.Dialog div.Dialog div.Container table:not(.Plain):not(.Information) tr.Future td {
  background-color: #e1edf1;
}
footer table:not(.Plain):not(.Information) tr td,
div#Content table:not(.Plain):not(.Information) tr td,
body.Dialog div.Dialog div.Container table:not(.Plain):not(.Information) tr td {
  border: 1px solid #ccc;
  padding: 10px;
}
footer table:not(.Plain):not(.Information) tr td:first-child,
div#Content table:not(.Plain):not(.Information) tr td:first-child,
body.Dialog div.Dialog div.Container table:not(.Plain):not(.Information) tr td:first-child {
  border-left: none;
}
footer table:not(.Plain):not(.Information) tr td:last-child,
div#Content table:not(.Plain):not(.Information) tr td:last-child,
body.Dialog div.Dialog div.Container table:not(.Plain):not(.Information) tr td:last-child {
  border-right: none;
}
footer table:not(.Plain):not(.Information) tr td:not(:first-child),
div#Content table:not(.Plain):not(.Information) tr td:not(:first-child),
body.Dialog div.Dialog div.Container table:not(.Plain):not(.Information) tr td:not(:first-child) {
  text-align: center;
}
footer table:not(.Plain):not(.Information) tr td.Orange,
div#Content table:not(.Plain):not(.Information) tr td.Orange,
body.Dialog div.Dialog div.Container table:not(.Plain):not(.Information) tr td.Orange {
  color: #ff9900;
  font-weight: bold;
}
footer table:not(.Plain):not(.Information) tr.Separator td, footer table:not(.Plain):not(.Information) tr.Separator th,
div#Content table:not(.Plain):not(.Information) tr.Separator td,
div#Content table:not(.Plain):not(.Information) tr.Separator th,
body.Dialog div.Dialog div.Container table:not(.Plain):not(.Information) tr.Separator td,
body.Dialog div.Dialog div.Container table:not(.Plain):not(.Information) tr.Separator th {
  border: none;
  padding: 0;
  height: 10px;
}
footer table.Information,
div#Content table.Information,
body.Dialog div.Dialog div.Container table.Information {
  border-collapse: collapse;
  border: 0;
  width: 100%;
  margin: 40px 0;
}
footer table.Information tr,
div#Content table.Information tr,
body.Dialog div.Dialog div.Container table.Information tr {
  border-top: 1px solid #ccc;
}
footer table.Information tr:last-child,
div#Content table.Information tr:last-child,
body.Dialog div.Dialog div.Container table.Information tr:last-child {
  border-bottom: 1px solid #ccc;
}
footer table.Information tr td,
div#Content table.Information tr td,
body.Dialog div.Dialog div.Container table.Information tr td {
  border: 0;
  padding: 20px 0;
  vertical-align: middle;
}
footer table.Information tr td:first-child,
div#Content table.Information tr td:first-child,
body.Dialog div.Dialog div.Container table.Information tr td:first-child {
  color: var(--color-accent);
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  width: 25%;
  padding-right: 20px;
}
footer table.Information tr td:last-child ul,
div#Content table.Information tr td:last-child ul,
body.Dialog div.Dialog div.Container table.Information tr td:last-child ul {
  margin: 0;
}
footer table:first-child,
div#Content table:first-child,
body.Dialog div.Dialog div.Container table:first-child {
  margin-top: 0 !important;
}
footer table:last-child,
div#Content table:last-child,
body.Dialog div.Dialog div.Container table:last-child {
  margin-bottom: 0 !important;
}
footer strong,
div#Content strong,
body.Dialog div.Dialog div.Container strong {
  font-weight: bold;
}
footer em,
div#Content em,
body.Dialog div.Dialog div.Container em {
  font-style: italic;
}
footer img,
div#Content img,
body.Dialog div.Dialog div.Container img {
  max-width: 100%;
}
footer .Brand,
div#Content .Brand,
body.Dialog div.Dialog div.Container .Brand {
  color: var(--color-brand);
}
footer .Accent,
div#Content .Accent,
body.Dialog div.Dialog div.Container .Accent {
  color: var(--color-accent);
}
footer .Enfasy,
div#Content .Enfasy,
body.Dialog div.Dialog div.Container .Enfasy {
  color: var(--color-enfasy);
}
footer .Brand strong,
footer .Accent strong,
footer .Enfasy strong,
div#Content .Brand strong,
div#Content .Accent strong,
div#Content .Enfasy strong,
body.Dialog div.Dialog div.Container .Brand strong,
body.Dialog div.Dialog div.Container .Accent strong,
body.Dialog div.Dialog div.Container .Enfasy strong {
  color: inherit;
}
footer div.Padding,
div#Content div.Padding,
body.Dialog div.Dialog div.Container div.Padding {
  padding-top: 40px;
  padding-bottom: 40px;
}
footer div.Padding:first-child,
div#Content div.Padding:first-child,
body.Dialog div.Dialog div.Container div.Padding:first-child {
  padding-top: 0;
}
footer div.Margin,
div#Content div.Margin,
body.Dialog div.Dialog div.Container div.Margin {
  margin-top: 40px;
  margin-bottom: 40px;
}
footer div.Margin:first-child,
div#Content div.Margin:first-child,
body.Dialog div.Dialog div.Container div.Margin:first-child {
  margin-top: 0;
}
footer div.AppleWallet,
div#Content div.AppleWallet,
body.Dialog div.Dialog div.Container div.AppleWallet {
  clear: both;
}
footer div.AppleWallet a.DownloadButton,
div#Content div.AppleWallet a.DownloadButton,
body.Dialog div.Dialog div.Container div.AppleWallet a.DownloadButton {
  display: block;
  margin-top: 5px;
  margin-bottom: 20px;
}
footer div.Clear,
div#Content div.Clear,
body.Dialog div.Dialog div.Container div.Clear {
  clear: both;
}
@media only screen and (min-width: 760px) {
  footer.TwoColumns div.SideContainer,
  div#Content.TwoColumns div.SideContainer,
  body.Dialog div.Dialog div.Container.TwoColumns div.SideContainer {
    width: 300px;
  }
  footer.TwoColumns div.SideContainer.Left,
  div#Content.TwoColumns div.SideContainer.Left,
  body.Dialog div.Dialog div.Container.TwoColumns div.SideContainer.Left {
    float: left;
  }
  footer.TwoColumns div.SideContainer.Right,
  div#Content.TwoColumns div.SideContainer.Right,
  body.Dialog div.Dialog div.Container.TwoColumns div.SideContainer.Right {
    float: right;
  }
  footer.TwoColumns div.OtherSideContainer,
  div#Content.TwoColumns div.OtherSideContainer,
  body.Dialog div.Dialog div.Container.TwoColumns div.OtherSideContainer {
    width: calc(100% - 320px);
  }
  footer.TwoColumns div.OtherSideContainer.Left,
  div#Content.TwoColumns div.OtherSideContainer.Left,
  body.Dialog div.Dialog div.Container.TwoColumns div.OtherSideContainer.Left {
    float: left;
  }
  footer.TwoColumns div.OtherSideContainer.Right,
  div#Content.TwoColumns div.OtherSideContainer.Right,
  body.Dialog div.Dialog div.Container.TwoColumns div.OtherSideContainer.Right {
    float: right;
  }
}
@media only screen and (max-width: 759px) {
  footer.TwoColumns div.OtherSideContainer,
  div#Content.TwoColumns div.OtherSideContainer,
  body.Dialog div.Dialog div.Container.TwoColumns div.OtherSideContainer {
    padding-bottom: 60px;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/FontAwesome/regular.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/FontAwesome/_variables.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Content.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Mixins.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAAA;AAAA;AAAA;AAAA;AAAA;AAQA;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA,cCgCwB;ED/BxB;;AAIF;AAAA;EAEE;;;AEkCc;EACI,YAFiB;;;AACrB;EACI,YAFiB;;;AACrB;EACI,YAFiB;;;AACrB;EACI,SAFiB;;;AACrB;EACI,SAFiB;;;AACrB;EACI,SAFiB;;;AACrB;EACI,SAFiB;;;AACrB;EACI,iBAFiB;;;AACrB;EACI,iBAFiB;;;AACrB;EACI,iBAFiB;;;AACrB;EACI,iBAFiB;;;AACrB;EACI,iBAFiB;;;AACrB;EACI,aAFiB;;;AACrB;EACI,aAFiB;;;AACrB;EACI,aAFiB;;;AACrB;EACI,aAFiB;;;AAS7B;EAKY;IACI,YAFiB;;EACrB;IACI,YAFiB;;EACrB;IACI,YAFiB;;EACrB;IACI,SAFiB;;EACrB;IACI,SAFiB;;EACrB;IACI,SAFiB;;EACrB;IACI,SAFiB;;EACrB;IACI,iBAFiB;;EACrB;IACI,iBAFiB;;EACrB;IACI,iBAFiB;;EACrB;IACI,iBAFiB;;EACrB;IACI,iBAFiB;;EACrB;IACI,aAFiB;;EACrB;IACI,aAFiB;;EACrB;IACI,aAFiB;;EACrB;IACI,aAFiB;;;AAJjC;EAKY;IACI,YAFiB;;EACrB;IACI,YAFiB;;EACrB;IACI,YAFiB;;EACrB;IACI,SAFiB;;EACrB;IACI,SAFiB;;EACrB;IACI,SAFiB;;EACrB;IACI,SAFiB;;EACrB;IACI,iBAFiB;;EACrB;IACI,iBAFiB;;EACrB;IACI,iBAFiB;;EACrB;IACI,iBAFiB;;EACrB;IACI,iBAFiB;;EACrB;IACI,aAFiB;;EACrB;IACI,aAFiB;;EACrB;IACI,aAFiB;;EACrB;IACI,aAFiB;;;AAJjC;EAKY;IACI,YAFiB;;EACrB;IACI,YAFiB;;EACrB;IACI,YAFiB;;EACrB;IACI,SAFiB;;EACrB;IACI,SAFiB;;EACrB;IACI,SAFiB;;EACrB;IACI,SAFiB;;EACrB;IACI,iBAFiB;;EACrB;IACI,iBAFiB;;EACrB;IACI,iBAFiB;;EACrB;IACI,iBAFiB;;EACrB;IACI,iBAFiB;;EACrB;IACI,aAFiB;;EACrB;IACI,aAFiB;;EACrB;IACI,aAFiB;;EACrB;IACI,aAFiB;;;AAJjC;EAKY;IACI,YAFiB;;EACrB;IACI,YAFiB;;EACrB;IACI,YAFiB;;EACrB;IACI,SAFiB;;EACrB;IACI,SAFiB;;EACrB;IACI,SAFiB;;EACrB;IACI,SAFiB;;EACrB;IACI,iBAFiB;;EACrB;IACI,iBAFiB;;EACrB;IACI,iBAFiB;;EACrB;IACI,iBAFiB;;EACrB;IACI,iBAFiB;;EACrB;IACI,aAFiB;;EACrB;IACI,aAFiB;;EACrB;IACI,aAFiB;;EACrB;IACI,aAFiB;;;AAYjC;EACI;EACA;EACA,aCjFA;EDkFA;EACA;;;AAKZ;EACI;;;AAGJ;EACI;;;AAIA;EADJ;IAEQ;;;;AAKJ;EADJ;IAEQ;;;;AAIR;AAAA;EAEI;;;AAMA;AAAA;AAAA;EACI;;AAEA;AAAA;AAAA;EACI;EACA;;AAIA;AAAA;AAAA;EACI;EACA;EACA;;AAGJ;AAAA;AAAA;EACI;EACA,OCxHE;;AD4HV;AAAA;AAAA;EACI;EACA;EACA;EACA,OChIM;;ADkIN;AAAA;AAAA;EACI;;AAKZ;AAAA;AAAA;EACI;EACA;;AAGJ;AAAA;AAAA;EACI;EACA;;AAGJ;AAAA;AAAA;EACI;EACA;EACA;EACA;EACA;;AAIJ;AAAA;AAAA;EACI;EACA;EACA;EACA;EACA;;AAGJ;AAAA;AAAA;EACI;EACA;EACA;EACA,WCxJW;EDyJX;EACA;;AAEA;AAAA;AAAA;EACI;;AAGJ;EAZJ;AAAA;AAAA;IAaQ;;;AAGJ;EAhBJ;AAAA;AAAA;IAiBQ;IACA;;;AAIR;AAAA;AAAA;EACI;;AAGJ;AAAA;AAAA;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;AAAA;AAAA;EACI;EACA;EACA;;AAEA;AAAA;AAAA;EACI;;AAIR;EAlBJ;AAAA;AAAA;IAmBQ;;;AAGJ;EAtBJ;AAAA;AAAA;IAuBQ;IACA;;;AAGJ;AAAA;AAAA;EACI;;AAGJ;AAAA;AAAA;EACI;;AAIR;AAAA;AAAA;EACI;;AAGJ;AAAA;AAAA;AAAA;AAAA;EACI;EACA;EACA;;AAEA;AAAA;AAAA;AAAA;AAAA;EACI;;AAGJ;AAAA;AAAA;AAAA;AAAA;EACI;;AAGJ;EAbJ;AAAA;AAAA;AAAA;AAAA;IAcQ;;;AAGJ;EAjBJ;AAAA;AAAA;AAAA;AAAA;IAkBQ;;;AAIR;AAAA;AAAA;EACI;EACA;EACA;EACA;;AAEA;AAAA;AAAA;EACI;;AAGJ;AAAA;AAAA;EACI;;AAGJ;EAdJ;AAAA;AAAA;IAeQ;;;AAGJ;EAlBJ;AAAA;AAAA;IAmBQ;;;AAIR;AAAA;AAAA;EACI;;AAGJ;AAAA;AAAA;EACI;;AAGJ;AAAA;AAAA;EACI;EACA;EACA;EACA;EACA;;AAEA;AAAA;AAAA;EACI;;AAGJ;AAAA;AAAA;EACI;;AAIR;AAAA;AAAA;AAAA;AAAA;EACI;;AAIJ;AAAA;AAAA;EACI;EACA;EACA;;AAEA;AAAA;AAAA;EACI;;AAGJ;AAAA;AAAA;EACI;;AAGJ;AAAA;AAAA;EACI;EACA;EACA;EACA;;AAGA;AAAA;AAAA;EACI;EElVZ;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EF2UY;EACA;EACA;EACA;EACA;EACA;;AAIR;AAAA;AAAA;EACI;;AAEA;AAAA;AAAA;EACI;;AAIR;AAAA;AAAA;EACI;EACA;;AAIA;AAAA;AAAA;EACI;EACA;EACA;;AAEA;AAAA;AAAA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;AAAA;AAAA;EACI;;AAMR;AAAA;AAAA;EACI;EACA;EACA;;AAEA;AAAA;AAAA;EACI;EACA;EACA;EACA;;AAGJ;AAAA;AAAA;EACI;;AAKZ;AAAA;AAAA;EAMI;EACA;EACA;;AAPA;AAAA;AAAA;EACI;EACA;;AAQR;AAAA;AAAA;EAMI;EACA;EACA;;AAPA;AAAA;AAAA;EACI;EACA;;AAQR;AAAA;AAAA;EAMI;EACA;EACA;;AAPA;AAAA;AAAA;EACI;EACA;;AASZ;AAAA;AAAA;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;AAAA;AAAA;EACI;;AAGJ;AAAA;AAAA;EACI;;AAGJ;AAAA;AAAA;EACI;EACA;EACA;EACA;;AAGA;AAAA;AAAA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIR;AAAA;AAAA;EACI;EACA;;AAGI;AAAA;AAAA;EACI;;AAMhB;AAAA;AAAA;EACI;EACA;;AAGA;AAAA;AAAA;EACI;EACA;EACA;EACA;;AAEA;AAAA;AAAA;EACI;EACA;;AAGJ;AAAA;AAAA;EACI;;AAIR;EArBJ;AAAA;AAAA;IAsBQ;IACA;;;AAGJ;EA1BJ;AAAA;AAAA;IA2BQ;IACA;;;AAGJ;EA/BJ;AAAA;AAAA;IAgCQ;;;AAKJ;AAAA;AAAA;EACI;EACA;;AAGI;AAAA;AAAA;EACI;EACA;EACA;EACA;EACA;;AAEA;AAAA;AAAA;EACI;;AAGJ;AAAA;AAAA;EACI;;AAKJ;AAAA;AAAA;EACI,kBC5hBH;;ADiiBD;AAAA;AAAA;EACI;;AAIR;AAAA;AAAA;EACI;EACA;;AAEA;AAAA;AAAA;EACI;;AAGJ;AAAA;AAAA;EACI;;AAGJ;AAAA;AAAA;EACI;;AAGJ;AAAA;AAAA;EACI,OCjiBT;EDkiBS;;AAKJ;AAAA;AAAA;AAAA;AAAA;EACI;EACA;EACA;;AAMhB;AAAA;AAAA;EACI;EACA;EACA;EACA;;AAEA;AAAA;AAAA;EACI;;AAEA;AAAA;AAAA;EACI;;AAGJ;AAAA;AAAA;EACI;EACA;EACA;;AAEA;AAAA;AAAA;EACI;EACA;EACA;EACA;EACA;EACA;;AAIA;AAAA;AAAA;EACI;;AAOpB;AAAA;AAAA;EACI;;AAGJ;AAAA;AAAA;EACI;;AAIR;AAAA;AAAA;EACI;;AAGJ;AAAA;AAAA;EACI;;AAGJ;AAAA;AAAA;EACI;;AAGJ;AAAA;AAAA;EACI;;AAGJ;AAAA;AAAA;EACI;;AAGJ;AAAA;AAAA;EACI;;AAMA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EACI;;AAIR;AAAA;AAAA;EACI;EACA;;AAEA;AAAA;AAAA;EACI;;AAIR;AAAA;AAAA;EACI;EACA;;AAEA;AAAA;AAAA;EACI;;AAIR;AAAA;AAAA;EACI;;AAEA;AAAA;AAAA;EACI;EACA;EACA;;AAIR;AAAA;AAAA;EACI;;AAKA;EAGI;AAAA;AAAA;IACI,OAHQ;;EAKR;AAAA;AAAA;IACI;;EAGJ;AAAA;AAAA;IACI;;EAIR;AAAA;AAAA;IACI;;EAEA;AAAA;AAAA;IACI;;EAGJ;AAAA;AAAA;IACI;;;AAKZ;EACI;AAAA;AAAA;IACI%22%7D */
div.CMSBlock.Content.Black h2 {
  color: white !important;
  font-weight: bold !important;
}
div.CMSBlock.Content.Black p {
  color: white !important;
}
div.CMSBlock.Content iframe {
  border: solid 1px #ccc;
  width: 100%;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/ContentBlock.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAIQ;EACI;EACA;;AAGJ;EACI;;AAIR;EACI;EACA%22%7D */
div.CookiePolicyManager-Banner {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10001;
  display: none;
  background: white;
  font-family: var(--font-primary, MyriadPro, sans-serif);
  font-size: 16px;
  color: black;
  line-height: 20px;
  padding: 20px;
  box-sizing: border-box;
  overflow: hidden;
  border: solid 1px #808080;
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.1);
  border-radius: var(--style-banner-radius);
}
div.CookiePolicyManager-Banner img {
  display: block;
  margin: 0 auto;
  padding: 10px;
}
div.CookiePolicyManager-Banner .Block {
  display: block;
  margin: 10px 0;
  font-size: 16px;
}
div.CookiePolicyManager-Banner div.Banner-Buttons {
  gap: 10px;
  display: flex;
  float: right;
}
div.CookiePolicyManager-Banner div.Banner-Buttons a.not-visible {
  display: none;
}
div.CookiePolicyManager-Banner a {
  color: var(--color-accent);
  text-decoration: none;
}
div.CookiePolicyManager-Banner a:hover {
  text-decoration: underline;
}
div.CookiePolicyManager-Banner a.Block.Ok {
  background-color: var(--color-link-default);
  text-decoration: none;
  padding: 5px 20px;
  font-weight: bold;
  border-radius: 1px;
  color: white;
  display: flex;
  justify-content: center;
  text-align: center;
  line-height: 1.5;
  text-decoration: none !important;
  font-size: 15px;
}
@media only screen and (min-width: 760px) and (max-width: 1279px) {
  div.CookiePolicyManager-Banner a.Block {
    display: block;
    box-sizing: content-box;
  }
  div.CookiePolicyManager-Banner a.Block.Ok {
    margin: 10px auto;
  }
}
@media only screen and (max-width: 759px) {
  div.CookiePolicyManager-Banner {
    width: calc(100% - 20px);
    max-height: calc(100% - 20px);
    overflow-y: auto;
  }
  div.CookiePolicyManager-Banner a.Block {
    display: block;
    box-sizing: content-box;
  }
  div.CookiePolicyManager-Banner a.Block.Ok {
    margin: 10px auto;
  }
  div.CookiePolicyManager-Banner div.Banner-Buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    padding-bottom: 10px;
  }
  div.CookiePolicyManager-Banner div.Banner-Buttons a.Block {
    margin-top: 0;
    margin-bottom: 0;
  }
}

div.CookiePolicyManager-Overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
}

div.CookiePolicyManager-HiddenIfBlocked, div.CookiePolicyManager-Loader {
  display: none;
}

div.CookiePolicyManager-Page table {
  width: 80%;
  text-align: center;
  margin: 20px auto;
}
div.CookiePolicyManager-Page table td {
  width: 50%;
}

body.no-scroll {
  overflow: hidden;
}
body.no-scroll div.CookiePolicyManager-Page {
  filter: blur(5px);
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/CookiePolicyManager.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAEA;EACI;EACA;EACA;EACA;EACA,SCgDiB;ED/CjB;EACA;EACA,aCNQ;EDOR;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;;AAIR;EACI;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAKR;EACI;IACI;IACA;;EAEA;IACI;;;AAKZ;EA7EJ;IA8EQ;IACA;IACA;;EAEA;IACI;IACA;;EAEA;IACI;;EAIR;IACI;IACA;IACA;IACA;IACA;IACA;;EAEA;IACI;IACA;;;;AAMhB;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;;;AAIA;EACI;EACA;EACA;;AAEA;EACI;;;AAKZ;EACI;;AAEA;EACI%22%7D */
body.Dashboard .Bold {
  font-weight: bold;
}
body.Dashboard div.SuccessMessage {
  color: #588725;
  text-align: center;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: bold;
  display: none;
}
body.Dashboard div.Pager {
  margin-top: 20px;
}
body.Dashboard div.Pager input {
  width: 30px;
}
body.Dashboard div.Pager a {
  padding: 4px;
}
body.Dashboard div.FieldGroup {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 20px;
}
body.Dashboard div.FieldGroup input[readonly] {
  background-color: #efefef;
  border-color: #999;
}
body.Dashboard div.FieldGroup input[readonly] + a.fal.fa-calendar {
  border-top-color: #999;
  border-right-color: #999;
  border-bottom-color: #999;
}
body.Dashboard div.FieldGroup div.Buttons {
  flex: 0 1 auto;
  margin-left: auto;
  justify-content: flex-end;
}
body.Dashboard div.FieldGroup div.Buttons a.Button {
  margin: 20px 0 0 13px;
  max-width: 130px;
}
@media only screen and (max-width: 759px) {
  body.Dashboard div.FieldGroup div.Buttons a.Button {
    display: block;
  }
}
@media only screen and (min-width: 760px) {
  body.Dashboard div.FieldGroup div.Buttons a.Button {
    display: inline-block;
  }
}
body.Dashboard div.FieldGroup div.EditMode {
  display: none;
}
@media only screen and (max-width: 1099px) {
  body.Dashboard div.FieldGroup {
    padding-right: 0;
    padding-bottom: 50px;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Dashboard.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAGI;EACI;;AAGJ;EACI,OCkBM;EDjBN;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAEA;EACI;;AAGJ;EACI;;AAIR;EACI;EACA;EACA;EACA;;AAEA;EACI,kBC5BS;ED6BT,cC3BC;;AD6BD;EACI,kBC9BH;ED+BG,oBC/BH;EDgCG,qBChCH;;ADuCL;EACI;EACA;EACA;;AAEA;EASI;EACA;;AATA;EADJ;IAEQ;;;AAGJ;EALJ;IAMQ;;;AAQZ;EACI;;AAGJ;EA3CJ;IA4CQ;IACA%22%7D */
div.DateList {
  width: 240px;
  display: flex;
}
div.DateList input {
  width: 33.33% !important;
  text-align: center;
  flex-basis: 33.33%;
}
div.DateList input.Day {
  border-top-right-radius: unset;
  border-bottom-right-radius: unset;
}
div.DateList input.Month {
  border-top-right-radius: unset;
  border-bottom-right-radius: unset;
  border-top-left-radius: unset;
  border-bottom-left-radius: unset;
}
div.DateList input.Month:not(:focus) {
  border-left: none;
  border-right: none;
}
div.DateList input.Year {
  border-top-left-radius: unset;
  border-bottom-left-radius: unset;
}
div.DateList div.AutoComplete {
  width: 33.33% !important;
  text-align: center;
  flex-basis: 33.33%;
}
div.DateList div.AutoComplete input.AutoComplete {
  width: 100% !important;
}
div.DateList div.AutoComplete select.Day + input {
  border-top-right-radius: unset;
  border-bottom-right-radius: unset;
}
div.DateList div.AutoComplete select.Month + input {
  border-top-right-radius: unset;
  border-bottom-right-radius: unset;
  border-top-left-radius: unset;
  border-bottom-left-radius: unset;
}
div.DateList div.AutoComplete select.Month + input:not(:focus):not(.Open) {
  border-left: none;
  border-right: none;
}
div.DateList div.AutoComplete select.Year + input {
  border-top-left-radius: unset;
  border-bottom-left-radius: unset;
}
div.DateList.has-error input, div.DateList.has-error input:focus {
  border-color: #900;
}
@media only screen and (max-width: 399px) {
  div.DateList {
    width: 100%;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/DateList.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAEA;EACI;EACA;;AAEA;EACI;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAIR;EACI;EACA;;AAIR;EACI;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAIR;EACI;EACA;;AAKJ;EACI,cCxDE;;AD4DV;EAtEJ;IAuEQ%22%7D */
div.DatePicker {
  position: relative;
}
div.DatePicker input {
  padding-right: 32px !important;
  text-align: center;
}
div.DatePicker a {
  position: absolute;
  background: #efefef;
  border: solid 1px #ccc;
  border-radius: 0 5px 5px 0;
  top: 0;
  right: 0;
  font-size: 20px;
  outline: none;
  line-height: 32px;
  width: 32px;
  text-align: center;
  color: black !important;
}
div.DatePicker div.Dates, div.DatePicker div.Limits {
  display: none;
}
div.DatePicker.ReadOnly input {
  color: #ccc !important;
}
div.DatePicker.ReadOnly a {
  color: #ccc !important;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/DatePicker.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAEA;EACI;;AAEA;EACI;EACA;;AAGJ;EACI;EACA,YCLa;EDMb;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAIA;EACI;;AAGJ;EACI%22%7D */
@media only screen and (max-width: 759px) {
  body.Dialog header, body.Dialog footer, body.Dialog #Content {
    display: none;
  }
}

div.Dialog {
  display: none;
}
div.Dialog div.Container {
  background-color: white;
  border: solid 1px black;
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.75) 5px 5px 5px;
}
div.Dialog div.Container h2 {
  margin: 0 0 20px;
  border-bottom: solid 1px black;
  padding: 10px 0;
  color: black;
  text-transform: uppercase;
  font-weight: normal;
}
div.Dialog div.Container div.Buttons {
  margin-top: 40px;
}
div.Dialog div.Container div.Buttons a {
  min-width: 100px;
  float: right;
  margin-left: 10px;
}
div.Dialog div.Container div.Buttons a:last-child {
  margin-left: 0;
}
div.Dialog div.Container label {
  display: block;
  margin-bottom: 10px;
}
div.Dialog div.Container label:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 760px) {
  div.Dialog {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    background-color: rgba(217, 217, 217, 0.5);
  }
  div.Dialog div.Container {
    position: absolute;
    width: 400px;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
@media only screen and (max-width: 759px) {
  div.Dialog {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    z-index: 10000;
    background-color: rgba(217, 217, 217, 0.5);
  }
  div.Dialog div.Container {
    top: 50%;
    position: absolute;
    z-index: 10000;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Dialog.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAGI;EACI;IACI;;;;AAKZ;EACI;;AAEA;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAEA;EACI;EACA;EACA;;AAEA;EACI;;AAKZ;EACI;EACA;;AAEA;EACI;;AAKZ;EA1CJ;IA2CQ;IACA;IACA;IACA;IACA;IACA,SCJe;IDKf;;EAEA;IACI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;;AAIR;EAhEJ;IAiEQ;IACA;IACA;IACA;IACA;IACA,SC1Be;ID2Bf;;EAEA;IACI;IACA;IACA,SChCW;IDiCX;IACA;IACA;IACA;IACA%22%7D */
body.Email div#Content {
  background: white;
}
body.Email div#Content > table {
  margin-top: 70px !important;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Email.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAGI;EACI;;AAEA;EACI%22%7D */
body.Espositori {
  color: black !important;
}
body.Espositori div#Content .Container {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}
body.Espositori div#Content .Container div.Filters,
body.Espositori div#Content .Container div.Result {
  flex: 1 1 auto;
}
@media only screen and (min-width: 900px) {
  body.Espositori div#Content .Container div.Filters {
    flex-basis: calc(23% - 10px);
    min-width: 300px;
  }
  body.Espositori div#Content .Container div.Result {
    flex-basis: calc(70% - 10px);
    min-width: 400px;
  }
}
body.Espositori div#Content div.Filters #ToggleFiltersButton {
  margin-bottom: 20px;
}
body.Espositori div#Content div.Filters h2 {
  margin-top: 20px;
  margin-bottom: 10px;
}
body.Espositori div#Content div.Filters h3 {
  color: black;
}
body.Espositori div#Content div.Filters div.Azienda {
  position: relative;
}
body.Espositori div#Content div.Filters div.Azienda input {
  padding-right: 30px;
}
body.Espositori div#Content div.Filters div.Azienda i {
  transform: translateY(-50%);
  position: absolute;
  cursor: pointer;
  right: 10px;
  top: 50%;
}
body.Espositori div#Content div.Filters div.Registrati {
  margin-top: 20px;
  line-height: 1.2;
}
@media only screen and (min-width: 900px) {
  body.Espositori div#Content div.Filters #ToggleFiltersButton {
    display: none;
  }
}
@media only screen and (max-width: 899px) {
  body.Espositori div#Content div.Filters:not(.On) *:not(#ToggleFiltersButton):not(.Registrati) {
    display: none;
  }
}
body.Espositori div#Content div.Filters div.Category .Category__Container {
  position: relative;
}
body.Espositori div#Content div.Filters div.Category .Category__Toggle {
  transform: translateY(-50%);
  position: absolute;
  cursor: pointer;
  top: 50%;
  right: 0;
}
body.Espositori div#Content div.Filters div.Category .Category__Toggle::after {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f078";
  font-size: 1em;
}
body.Espositori div#Content div.Filters div.Category--Open .Category__Toggle::after {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f077";
}
body.Espositori div#Content div.Filters div.Category .Category__Subcategories {
  margin: 2px 0;
}
body.Espositori div#Content div.Filters div.Category .Subcategory {
  margin-left: 20px;
}
body.Espositori div#Content div.Filters div.Filter__Item {
  align-items: center;
  margin-bottom: 5px;
  display: flex;
  gap: 5px;
}
body.Espositori div#Content div.Filters div.Filter__Item label {
  margin-bottom: 0;
}
body.Espositori div#Content div.Exhibitors {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
}
body.Espositori div#Content div.Exhibitors div.Exhibitor {
  border: solid 1px var(--color-brand);
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 4px 1px;
  cursor: pointer;
  flex-basis: 100%;
  align-items: flex-start;
  padding: 10px;
  display: flex;
  color: black;
  gap: 10px;
  border-radius: 5px;
}
body.Espositori div#Content div.Exhibitors div.Exhibitor img.Logo {
  align-self: center;
  height: auto;
  width: 120px;
}
body.Espositori div#Content div.Exhibitors div.Exhibitor div.Stand {
  font-size: 14px;
  text-transform: uppercase;
}
body.Espositori div#Content div.Exhibitors div.Exhibitor div.Posizione {
  font-size: 14px;
  font-weight: 300;
}
body.Espositori div#Content div.Exhibitors div.Exhibitor div.Azienda {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
  padding: 9px 0;
}
body.Espositori div#Content div.Exhibitors div.Exhibitor div.Nazione {
  font-size: 14px;
  text-transform: uppercase;
}
body.Espositori div#Content div.Exhibitors div.Exhibitor div.Categoria {
  padding: 5px 0;
}
body.Espositori div#Content div.Exhibitors div.Exhibitor div.Sottocategoria {
  font-size: 14px;
  font-weight: 300;
}
body.Espositori div#Content div.Exhibitors div.Exhibitor div.Tags {
  flex-wrap: wrap;
  display: flex;
  gap: 10px;
  margin-top: 9px;
}
body.Espositori div#Content div.Exhibitors div.Exhibitor div.Tags div.Tag {
  align-items: flex-start;
  font-size: 12px;
  font-weight: 300;
  color: white;
  background-color: var(--color-brand);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 3px;
}
@media only screen and (min-width: 760px) {
  body.Espositori div#Content div.Exhibitors div.Exhibitor {
    flex-basis: calc(50% - 10px);
  }
}
body.Espositori div#Content div.Exhibitors div.ShowMore__Container {
  justify-content: center;
  flex-basis: 100%;
  display: flex;
}
body.Espositori div#Content div.NoRows {
  text-align: center;
  flex-basis: 100%;
}
body.Espositori div#Content div.NoRows i {
  font-size: 42px;
}
body.Espositori div#Content div.NoRows h2 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
body.Espositori div#Content div.NoRows p {
  margin: 0;
}

body.Espositore h4 {
  font-weight: bold;
  margin-bottom: 0;
}
body.Espositore h4 + p {
  margin-top: 0 !important;
}
body.Espositore p {
  font-weight: 300;
}
body.Espositore p.Italic {
  font-style: italic;
}
body.Espositore p + h4 {
  margin-top: 40px !important;
}
body.Espositore img.Logo {
  float: left;
  margin-top: -20px;
  margin-bottom: 20px;
  border: solid 5px white;
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 4px 1px;
}
body.Espositore div.Espositore {
  float: left;
  margin: 20px;
}
body.Espositore div.Espositore div.Nome {
  font-size: 24px;
  text-transform: uppercase;
}
body.Espositore div.Espositore div.Nazione {
  margin-top: 27px;
}
body.Espositore div.Espositore div.Categoria {
  margin-top: 10px;
}
body.Espositore div.Stand {
  float: right;
  margin: 20px 0 10px;
  text-align: right;
}
body.Espositore div.Stand div.Codice {
  font-size: 24px;
  text-transform: uppercase;
}
body.Espositore div.Stand div.Posizione {
  font-size: 12px;
  font-weight: 300;
  margin-top: 5px;
}
body.Espositore a.Search {
  clear: right;
  float: right;
  margin-top: 10px;
  margin-bottom: 20px;
}
body.Espositore div.Contenuto {
  margin-top: 30px;
}
body.Espositore div.Contatti {
  margin-top: 30px;
  max-width: 30%;
}
body.Espositore div.Contatti div.Social {
  font-size: 40px;
}
body.Espositore div.Contatti > a {
  margin-top: 40px;
  display: block;
}
@media only screen and (min-width: 760px) {
  body.Espositore div.Contenuto {
    max-width: calc(70% - 20px);
    margin-right: 20px;
    float: left;
  }
  body.Espositore div.Contatti {
    max-width: 30%;
    float: right;
    text-align: right;
  }
}
body.RegistrazioneEspositori div.Group {
  display: block;
  float: left;
}
body.RegistrazioneEspositori div.Group.Width50 {
  width: calc(50% - 2px);
  padding-right: 0;
}
@media only screen and (max-width: 899px) {
  body.RegistrazioneEspositori div.Group.Width50 {
    padding-right: 0;
    padding-left: 0;
    width: 100%;
  }
}
@media only screen and (min-width: 900px) {
  body.RegistrazioneEspositori div.Group.Width50 + div.Width50 {
    padding-left: 10px;
  }
}
body.RegistrazioneEspositori div.Group.Width100 {
  padding-right: 0;
  width: 100%;
}
body.RegistrazioneEspositori textarea {
  height: 100px;
}
body.RegistrazioneEspositori h3 ~ h3 {
  color: black !important;
  margin-top: 0 !important;
  padding-top: 40px;
}
body.RegistrazioneEspositori h3 ~ h3::before {
  content: "";
  position: absolute;
  margin-top: -21.5px;
  background: linear-gradient(90deg, rgb(255, 0, 152) 0%, rgb(2, 173, 239) 100%) !important;
  height: 3px;
  width: calc(100% - 40px);
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Espositori.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAEA;EACI;;AAGI;EACI;EACA;EACA;EACA;EACA;;AAEA;AAAA;EAEI;;AAGJ;EACI;IACI;IACA;;EAGJ;IACI;IACA;;;AAMR;EACI;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAGJ;EACI;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAIR;EACI;EACA;;AAGJ;EACI;IACI;;;AAIR;EAEQ;IACI;;;AAMR;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAEA;ECehB;EACA;EACA;EACA;EACA;EACA;EACA;EDnBoB;;AAKJ;ECQhB;EACA;EACA;EACA;EACA;EACA;EACA;;ADTY;EACI;;AAGJ;EACI;;AAIR;EACI;EACA;EACA;EACA;;AAEA;EACI;;AAKZ;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIR;EAnEJ;IAoEQ;;;AAIR;EACI;EACA;EACA;;AAIR;EACI;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;;AAGJ;EACI;;;AAQZ;EACI;EACA;;AAEA;EACI;;AAIR;EACI;;AAEA;EACI;;AAGJ;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;;AAGJ;EACI;;AAIR;EACI;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;;AAIR;EACI;IACI;IACA;IACA;;EAGJ;IACI;IACA;IACA;;;AAUR;EACI;EACA;;AAEA;EACI;EACA;;AAEA;EAJJ;IAKQ;IACA;IACA;;;AAIR;EACI;IACI;;;AAIR;EACI;EACA;;AAIR;EACI;;AAIA;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA%22%7D */
div#Content div.CMSBlock.EventContent.Black h2 {
  color: white !important;
  font-weight: bold !important;
}
div#Content div.CMSBlock.EventContent.Black p {
  color: white !important;
}
@media only screen and (max-width: 759px) {
  div#Content div.CMSBlock.EventContent.Margin {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

body div.CMSBlock.EventContent {
  color: #003851;
}
body div.CMSBlock.EventContent div.Container img {
  display: block;
  float: left;
  padding-right: 20px;
  width: unset !important;
  height: unset !important;
}
body div.CMSBlock.EventContent div.Container .Video {
  z-index: 1;
  float: left;
  width: 520px;
  height: 325px;
  margin: 0 20px 10px 0;
}
body div.CMSBlock.EventContent div.Container .Video img {
  padding: 0;
}
body div.CMSBlock.EventContent div.Container .Video.Cover {
  position: relative;
}
body div.CMSBlock.EventContent div.Container .Video.Cover::before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 30px;
  border-radius: 50%;
  background-color: white;
  padding: 20px 20px;
  padding-left: 25px;
  transform: translate(-50%, -50%);
  font-family: FontAwesome;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: -0.125em;
  content: "\f04b";
}
body div.CMSBlock.EventContent div.Container .Video.Cover:hover {
  cursor: pointer;
}
body div.CMSBlock.EventContent div.Container .Video.Cover:hover::before {
  background-color: rgba(255, 255, 255, 0.8);
}
body div.CMSBlock.EventContent div.Container h4 {
  margin-top: 20px !important;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.4em;
}
body div.CMSBlock.EventContent div.Container .Period {
  color: #1f8fcf;
}
@media only screen and (min-width: 760px) and (max-width: 999px) {
  body div.CMSBlock.EventContent div.Container img {
    max-width: 360px !important;
  }
  body div.CMSBlock.EventContent div.Container .Video {
    width: 360px;
    height: 225px;
  }
}
@media only screen and (max-width: 759px) {
  body div.CMSBlock.EventContent div.Container img {
    width: 100% !important;
    padding: 0;
    margin-bottom: 30px;
  }
  body div.CMSBlock.EventContent div.Container .Video {
    padding: 0;
    width: 100%;
    margin-bottom: 10px;
  }
}
body div.CMSBlock.EventContent div.Container ul:not(.Plain) li {
  padding-left: 0 !important;
}
body div.CMSBlock.EventContent div.Container ul:not(.Plain) li::before {
  top: -3px !important;
  line-height: 24px !important;
  padding-right: 12px !important;
  position: relative !important;
}
@media only screen and (min-width: 760px) {
  body div.CMSBlock.EventContent.TwoColumns div.Container {
    display: flex;
  }
  body div.CMSBlock.EventContent.TwoColumns div.Container div.Column.Image {
    flex-shrink: 0;
  }
}
body div.CMSBlock.EventContent.TwoColumns div.Container img {
  padding-bottom: 0;
}
body div.CMSBlock.EventContent.OldEvent div.Container:not(:hover) {
  opacity: 0.5;
}
body:not(.DettaglioEvento) div.CMSBlock.EventContent div.Container {
  border-radius: var(--style-content-box-radius);
  border: 1px solid #ccc;
  padding: 20px;
  overflow: auto;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}
body.CMS div.CMSBlock.EventContent div.Wrap div.Container div.Image__Container {
  float: left;
  padding-right: 20px;
}

div.CMSBlock div.Container div.Image__Container {
  width: 40%;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/EventContent.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Mixins.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAKQ;EACI;EACA;;AAGJ;EACI;;AAKJ;EADJ;IAEQ;IACA;;;;AAMR;EACI,OCNS;;ADSL;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EEzDpB;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AFoDgB;EACI;;AAEA;EACI;;AAMhB;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI,OClEE;;ADqEN;EACI;IACI;;EAGJ;IACI;IACA;;;AAIR;EACI;IACI;IACA;IACA;;EAGJ;IACI;IACA;IACA;;;AAKJ;EACI;;AAGJ;EACI;EACA;EACA;EACA;;AAOJ;EADJ;IAEQ;;EAEA;IACI;;;AAIR;EACI;;AAKZ;EACI;;AAMA;EACI;EACA;EACA;EACA;EACA;;AAaA;EACI;EACA;;;AASZ;EACI%22%7D */
div#Content div.CMSBlock.Eventi div.Eventi__List {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
}
div#Content div.CMSBlock.Eventi div.Eventi__List div.Evento {
  flex: 1;
  min-width: 290px;
  border-radius: 12px;
  background-color: white;
  box-shadow: 0px 4px 12px 2px rgba(0, 0, 0, 0.2);
}
div#Content div.CMSBlock.Eventi div.Eventi__List div.Evento div.Evento__Container {
  cursor: pointer;
  padding: 20px;
}
div#Content div.CMSBlock.Eventi div.Eventi__List div.Evento div.Evento__Image {
  margin-top: -20px;
  margin-left: -20px;
  width: calc(100% + 40px);
}
div#Content div.CMSBlock.Eventi div.Eventi__List div.Evento div.Evento__Image img {
  width: 100%;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
div#Content div.CMSBlock.Eventi div.Eventi__List div.Evento div.Evento__Period {
  color: var(--color-brand);
  margin-bottom: 30px;
}
div#Content div.CMSBlock.Eventi div.Eventi__List div.Evento div.Evento__Abstract {
  color: black;
}
div#Content div.CMSBlock.Eventi div.Eventi__List div.Evento a.Evento__More {
  float: right;
  padding: 10px;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 18px;
  font-size: 14px;
  color: white;
  background: var(--color-brand);
  border-radius: 12px;
}

div.Eventi .AddEvent__Container {
  float: none;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Eventi.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAGI;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAIR;EACI;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAOZ;EACI%22%7D */
body.compensate-for-scrollbar {
  overflow: hidden; }

.fancybox-active {
  height: auto; }

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden; }

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992; }

.fancybox-container * {
  box-sizing: border-box; }

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0; }

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto; }

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71); }

.fancybox-is-open .fancybox-bg {
  opacity: .9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1); }

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity .25s ease, visibility 0s ease .25s;
  visibility: hidden;
  z-index: 99997; }

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  transition: opacity .25s ease 0s, visibility 0s ease 0s;
  visibility: visible; }

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.fancybox-toolbar {
  right: 0;
  top: 0; }

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994; }

.fancybox-is-open .fancybox-stage {
  overflow: hidden; }

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994; }

.fancybox-slide::before {
  content: '';
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0; }

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block; }

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0; }

.fancybox-slide--image::before {
  display: none; }

.fancybox-slide--html {
  padding: 6px; }

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle; }

.fancybox-slide--image .fancybox-content {
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -ms-transform-origin: top left;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995; }

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out; }

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in; }

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab; }

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

.fancybox-container [data-selectable='true'] {
  cursor: text; }

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%; }

.fancybox-spaceball {
  z-index: 1; }

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%; }

.fancybox-slide--video .fancybox-content {
  background: #000; }

.fancybox-slide--map .fancybox-content {
  background: #e5e3df; }

.fancybox-slide--iframe .fancybox-content {
  background: #fff; }

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%; }

/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0; }

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%; }

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0; }

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color .2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px; }

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc; }

.fancybox-button:hover {
  color: #fff; }

.fancybox-button:focus {
  outline: none; }

.fancybox-button.fancybox-focus {
  outline: 1px dotted; }

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none; }

/* Fix IE11 */
.fancybox-button div {
  height: 100%; }

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%; }

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0; }

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none; }

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none; }

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -ms-transform-origin: 0;
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998; }

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: .8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401; }

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1; }

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0; }

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden; }

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none; }

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px; }

.fancybox-navigation .fancybox-button div:not(.icon) {
  padding: 7px; }

.fancybox-navigation .fancybox-button div.icon {
  position: relative; }

.fancybox-navigation .fancybox-button div.icon i {
  transform: translate(-50%, -50%);
  position: absolute;
  font-size: 18px;
  left: 50%;
  top: 50%; }

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px; }

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right); }

/* Caption */
.fancybox-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, transparent 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996; }

.fancybox-caption--separate {
  margin-top: -50px; }

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all; }

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none; }

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline; }

/* Loading indicator */
.fancybox-loading {
  animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: .7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999; }

@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg); } }

/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1); }

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0); }

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0); }

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translate3d(0, 0, 0); }

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1; }

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5); }

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5); }

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1); }

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -ms-transform: rotate(-360deg);
  transform: rotate(-360deg); }

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -ms-transform: rotate(360deg);
  transform: rotate(360deg); }

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -ms-transform: rotate(0deg);
  transform: rotate(0deg); }

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0); }

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0); }

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0); }

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg); }

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg); }

.fancybox-fx-tube.fancybox-slide--current {
  transform: translate3d(0, 0, 0) scale(1); }

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px; }
  .fancybox-slide--image {
    padding: 6px 0; }
  .fancybox-close-small {
    right: -6px; }
  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px; }
  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px; } }

/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center; }

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0; }

.fancybox-share p {
  margin: 0;
  padding: 0; }

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all .2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap; }

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff; }

.fancybox-share__button:hover {
  text-decoration: none; }

.fancybox-share__button--fb {
  background: #3b5998; }

.fancybox-share__button--fb:hover {
  background: #344e86; }

.fancybox-share__button--pt {
  background: #bd081d; }

.fancybox-share__button--pt:hover {
  background: #aa0719; }

.fancybox-share__button--tw {
  background: #1da1f2; }

.fancybox-share__button--tw:hover {
  background: #0d95e8; }

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px; }

.fancybox-share__button svg path {
  fill: #fff; }

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%; }

/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  width: 212px;
  z-index: 99995; }

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden; }

.fancybox-show-thumbs .fancybox-thumbs {
  display: block; }

.fancybox-show-thumbs .fancybox-inner {
  right: 212px; }

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%; }

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden; }

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px; }

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); }

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px; }

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px; }

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: '';
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991; }

.fancybox-thumbs__list a:focus::before {
  opacity: .5; }

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1; }

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px; }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px; }
  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px); } }

/*# sourceMappingURL=data:application/json;base64,ewoJInZlcnNpb24iOiAzLAoJImZpbGUiOiAiQ29udGVudC9UaGVtZS9GYW5jeUJveC5jc3MiLAoJInNvdXJjZXMiOiBbCgkJIkNvbnRlbnQvVGhlbWUvRmFuY3lCb3guc2NzcyIKCV0sCgkibmFtZXMiOiBbXSwKCSJtYXBwaW5ncyI6ICJBQUFBLEFBQUEsSUFBSSxBQUFBLHlCQUF5QixDQUFDO0VBQzFCLFFBQVEsRUFBRSxNQUFNLEdBQ25COztBQUVELEFBQUEsZ0JBQWdCLENBQUM7RUFDYixNQUFNLEVBQUUsSUFBSSxHQUNmOztBQUVELEFBQUEsbUJBQW1CLENBQUM7RUFDaEIsSUFBSSxFQUFFLE9BQU87RUFDYixNQUFNLEVBQUUsQ0FBQztFQUNULFFBQVEsRUFBRSxtQkFBbUI7RUFDN0IsR0FBRyxFQUFFLE9BQU87RUFDWixVQUFVLEVBQUUsTUFBTSxHQUNyQjs7QUFFRCxBQUFBLG1CQUFtQixDQUFDO0VBQ2hCLDJCQUEyQixFQUFFLE1BQU07RUFDbkMsTUFBTSxFQUFFLElBQUk7RUFDWixJQUFJLEVBQUUsQ0FBQztFQUNQLE9BQU8sRUFBRSxJQUFJO0VBQ2IsUUFBUSxFQUFFLEtBQUs7RUFDZiwyQkFBMkIsRUFBRSxXQUFXO0VBQ3hDLEdBQUcsRUFBRSxDQUFDO0VBQ04sZ0JBQWdCLEVBQUUsWUFBWTtFQUM5QixZQUFZLEVBQUUsWUFBWTtFQUMxQixTQUFTLEVBQUUsYUFBYTtFQUN4QixLQUFLLEVBQUUsSUFBSTtFQUNYLE9BQU8sRUFBRSxLQUFLLEdBQ2pCOztBQUVELEFBQW9CLG1CQUFELENBQUMsQ0FBQyxDQUFDO0VBQ2xCLFVBQVUsRUFBRSxVQUFVLEdBQ3pCOztBQUVELEFBQUEsZUFBZTtBQUNmLEFBQUEsZUFBZTtBQUNmLEFBQUEsWUFBWTtBQUNaLEFBQUEsZUFBZSxDQUFDO0VBQ1osTUFBTSxFQUFFLENBQUM7RUFDVCxJQUFJLEVBQUUsQ0FBQztFQUNQLFFBQVEsRUFBRSxRQUFRO0VBQ2xCLEtBQUssRUFBRSxDQUFDO0VBQ1IsR0FBRyxFQUFFLENBQUMsR0FDVDs7QUFFRCxBQUFBLGVBQWUsQ0FBQztFQUNaLDBCQUEwQixFQUFFLEtBQUs7RUFDakMsVUFBVSxFQUFFLElBQUksR0FDbkI7O0FBRUQsQUFBQSxZQUFZLENBQUM7RUFDVCxVQUFVLEVBQUUsT0FBZTtFQUMzQixPQUFPLEVBQUUsQ0FBQztFQUNWLG1CQUFtQixFQUFFLE9BQU87RUFDNUIsbUJBQW1CLEVBQUUsT0FBTztFQUM1QiwwQkFBMEIsRUFBRSxpQ0FBOEIsR0FDN0Q7O0FBRUQsQUFBa0IsaUJBQUQsQ0FBQyxZQUFZLENBQUM7RUFDM0IsT0FBTyxFQUFFLEVBQUU7RUFDWCwwQkFBMEIsRUFBRSxpQ0FBOEIsR0FDN0Q7O0FBRUQsQUFBQSxpQkFBaUI7QUFDakIsQUFBQSxpQkFBaUI7QUFDakIsQUFBQSxpQkFBaUI7QUFDakIsQUFBcUIsb0JBQUQsQ0FBQyxnQkFBZ0IsQ0FBQztFQUNsQyxTQUFTLEVBQUUsR0FBRztFQUNkLE9BQU8sRUFBRSxDQUFDO0VBQ1YsUUFBUSxFQUFFLFFBQVE7RUFDbEIsVUFBVSxFQUFFLDBDQUEwQztFQUN0RCxVQUFVLEVBQUUsTUFBTTtFQUNsQixPQUFPLEVBQUUsS0FBSyxHQUNqQjs7QUFFRCxBQUF1QixzQkFBRCxDQUFDLGlCQUFpQjtBQUN4QyxBQUF1QixzQkFBRCxDQUFDLGlCQUFpQjtBQUN4QyxBQUF1QixzQkFBRCxDQUFDLGlCQUFpQjtBQUN4QyxBQUF3QyxrQkFBdEIsQ0FBQyxvQkFBb0IsQ0FBQyxnQkFBZ0IsQ0FBQztFQUNyRCxPQUFPLEVBQUUsQ0FBQztFQUNWLFVBQVUsRUFBRSwyQ0FBMkM7RUFDdkQsVUFBVSxFQUFFLE9BQU8sR0FDdEI7O0FBRUQsQUFBQSxpQkFBaUIsQ0FBQztFQUNkLEtBQUssRUFBRSxJQUFJO0VBQ1gsU0FBUyxFQUFFLElBQUk7RUFDZixzQkFBc0IsRUFBRSxvQkFBb0I7RUFDNUMsTUFBTSxFQUFFLElBQUk7RUFDWixJQUFJLEVBQUUsQ0FBQztFQUNQLFdBQVcsRUFBRSxJQUFJO0VBQ2pCLFNBQVMsRUFBRSxJQUFJO0VBQ2YsY0FBYyxFQUFFLFVBQVU7RUFDMUIsT0FBTyxFQUFFLE1BQU07RUFDZixjQUFjLEVBQUUsSUFBSTtFQUNwQixHQUFHLEVBQUUsQ0FBQztFQUNOLHFCQUFxQixFQUFFLElBQUk7RUFDM0IsbUJBQW1CLEVBQUUsSUFBSTtFQUN6QixnQkFBZ0IsRUFBRSxJQUFJO0VBQ3RCLGVBQWUsRUFBRSxJQUFJO0VBQ3JCLFdBQVcsRUFBRSxJQUFJLEdBQ3BCOztBQUVELEFBQUEsaUJBQWlCLENBQUM7RUFDZCxLQUFLLEVBQUUsQ0FBQztFQUNSLEdBQUcsRUFBRSxDQUFDLEdBQ1Q7O0FBRUQsQUFBQSxlQUFlLENBQUM7RUFDWixTQUFTLEVBQUUsR0FBRztFQUNkLFFBQVEsRUFBRSxPQUFPO0VBQ2pCLFNBQVMsRUFBRSxhQUFhO0VBQ3hCLE9BQU8sRUFBRSxLQUFLLEdBQ2pCOztBQUVELEFBQWtCLGlCQUFELENBQUMsZUFBZSxDQUFDO0VBQzlCLFFBQVEsRUFBRSxNQUFNLEdBQ25COztBQUVELEFBQUEsZUFBZSxDQUFDO0VBQ1osMkJBQTJCLEVBQUUsTUFBTTtFQUFHLDJDQUEyQztFQUNqRixPQUFPLEVBQUUsSUFBSTtFQUNiLE1BQU0sRUFBRSxJQUFJO0VBQ1osSUFBSSxFQUFFLENBQUM7RUFDUCxPQUFPLEVBQUUsSUFBSTtFQUNiLFFBQVEsRUFBRSxJQUFJO0VBQ2QsMEJBQTBCLEVBQUUsS0FBSztFQUNqQyxPQUFPLEVBQUUsSUFBSTtFQUNiLFFBQVEsRUFBRSxRQUFRO0VBQ2xCLFVBQVUsRUFBRSxNQUFNO0VBQ2xCLEdBQUcsRUFBRSxDQUFDO0VBQ04sbUJBQW1CLEVBQUUsa0JBQWtCO0VBQ3ZDLFdBQVcsRUFBRSxNQUFNO0VBQ25CLEtBQUssRUFBRSxJQUFJO0VBQ1gsT0FBTyxFQUFFLEtBQUssR0FDakI7O0FBRUQsQUFBQSxlQUFlLEFBQUEsUUFBUSxDQUFDO0VBQ3BCLE9BQU8sRUFBRSxFQUFFO0VBQ1gsT0FBTyxFQUFFLFlBQVk7RUFDckIsU0FBUyxFQUFFLENBQUM7RUFDWixNQUFNLEVBQUUsSUFBSTtFQUNaLGNBQWMsRUFBRSxNQUFNO0VBQ3RCLEtBQUssRUFBRSxDQUFDLEdBQ1g7O0FBRUQsQUFBcUIsb0JBQUQsQ0FBQyxlQUFlO0FBQ3BDLEFBQUEseUJBQXlCO0FBQ3pCLEFBQUEsd0JBQXdCO0FBQ3hCLEFBQUEscUJBQXFCLENBQUM7RUFDbEIsT0FBTyxFQUFFLEtBQUssR0FDakI7O0FBRUQsQUFBQSxzQkFBc0IsQ0FBQztFQUNuQixRQUFRLEVBQUUsTUFBTTtFQUNoQixPQUFPLEVBQUUsTUFBTSxHQUNsQjs7QUFFRCxBQUFBLHNCQUFzQixBQUFBLFFBQVEsQ0FBQztFQUMzQixPQUFPLEVBQUUsSUFBSSxHQUNoQjs7QUFFRCxBQUFBLHFCQUFxQixDQUFDO0VBQ2xCLE9BQU8sRUFBRSxHQUFHLEdBQ2Y7O0FBRUQsQUFBQSxpQkFBaUIsQ0FBQztFQUNkLFVBQVUsRUFBRSxJQUFJO0VBQ2hCLE9BQU8sRUFBRSxZQUFZO0VBQ3JCLE1BQU0sRUFBRSxDQUFDO0VBQ1QsU0FBUyxFQUFFLElBQUk7RUFDZixRQUFRLEVBQUUsSUFBSTtFQUNkLDBCQUEwQixFQUFFLEtBQUs7RUFDakMsT0FBTyxFQUFFLElBQUk7RUFDYixRQUFRLEVBQUUsUUFBUTtFQUNsQixVQUFVLEVBQUUsSUFBSTtFQUNoQixjQUFjLEVBQUUsTUFBTSxHQUN6Qjs7QUFFRCxBQUF1QixzQkFBRCxDQUFDLGlCQUFpQixDQUFDO0VBQ3JDLHlCQUF5QixFQUFFLDZCQUEyQjtFQUN0RCwyQkFBMkIsRUFBRSxNQUFNO0VBQ25DLFVBQVUsRUFBRSxXQUFXO0VBQ3ZCLGlCQUFpQixFQUFFLFNBQVM7RUFDNUIsZUFBZSxFQUFFLFNBQVM7RUFDMUIsSUFBSSxFQUFFLENBQUM7RUFDUCxTQUFTLEVBQUUsSUFBSTtFQUNmLFFBQVEsRUFBRSxPQUFPO0VBQ2pCLE9BQU8sRUFBRSxDQUFDO0VBQ1YsUUFBUSxFQUFFLFFBQVE7RUFDbEIsR0FBRyxFQUFFLENBQUM7RUFDTixvQkFBb0IsRUFBRSxRQUFRO0VBQzlCLGdCQUFnQixFQUFFLFFBQVE7RUFDMUIsbUJBQW1CLEVBQUUsa0JBQWtCO0VBQ3ZDLG1CQUFtQixFQUFFLElBQUk7RUFDekIsZ0JBQWdCLEVBQUUsSUFBSTtFQUN0QixlQUFlLEVBQUUsSUFBSTtFQUNyQixXQUFXLEVBQUUsSUFBSTtFQUNqQixPQUFPLEVBQUUsS0FBSyxHQUNqQjs7QUFFRCxBQUFzQixxQkFBRCxDQUFDLGlCQUFpQixDQUFDO0VBQ3BDLE1BQU0sRUFBRSxRQUFRLEdBQ25COztBQUVELEFBQXFCLG9CQUFELENBQUMsaUJBQWlCLENBQUM7RUFDbkMsTUFBTSxFQUFFLE9BQU8sR0FDbEI7O0FBRUQsQUFBb0IsbUJBQUQsQ0FBQyxpQkFBaUI7QUFDckMsQUFBa0IsaUJBQUQsQ0FBQyxpQkFBaUIsQ0FBQztFQUNoQyxNQUFNLEVBQUUsWUFBWTtFQUNwQixNQUFNLEVBQUUsSUFBSSxHQUNmOztBQUVELEFBQXNCLHFCQUFELENBQUMsaUJBQWlCLENBQUM7RUFDcEMsTUFBTSxFQUFFLGdCQUFnQjtFQUN4QixNQUFNLEVBQUUsUUFBUSxHQUNuQjs7QUFFRCxBQUFvQixtQkFBRCxFQUFDLEFBQUEsZUFBQyxDQUFnQixNQUFNLEFBQXRCLEVBQXdCO0VBQ3pDLE1BQU0sRUFBRSxJQUFJLEdBQ2Y7O0FBRUQsQUFBQSxlQUFlO0FBQ2YsQUFBQSxtQkFBbUIsQ0FBQztFQUNoQixVQUFVLEVBQUUsV0FBVztFQUN2QixNQUFNLEVBQUUsQ0FBQztFQUNULE1BQU0sRUFBRSxJQUFJO0VBQ1osSUFBSSxFQUFFLENBQUM7RUFDUCxNQUFNLEVBQUUsQ0FBQztFQUNULFVBQVUsRUFBRSxJQUFJO0VBQ2hCLFNBQVMsRUFBRSxJQUFJO0VBQ2YsT0FBTyxFQUFFLENBQUM7RUFDVixRQUFRLEVBQUUsUUFBUTtFQUNsQixHQUFHLEVBQUUsQ0FBQztFQUNOLG1CQUFtQixFQUFFLElBQUk7RUFDekIsZ0JBQWdCLEVBQUUsSUFBSTtFQUN0QixlQUFlLEVBQUUsSUFBSTtFQUNyQixXQUFXLEVBQUUsSUFBSTtFQUNqQixLQUFLLEVBQUUsSUFBSSxHQUNkOztBQUVELEFBQUEsbUJBQW1CLENBQUM7RUFDaEIsT0FBTyxFQUFFLENBQUMsR0FDYjs7QUFFRCxBQUF1QixzQkFBRCxDQUFDLGlCQUFpQjtBQUN4QyxBQUFxQixvQkFBRCxDQUFDLGlCQUFpQjtBQUN0QyxBQUFxQixvQkFBRCxDQUFDLGlCQUFpQjtBQUN0QyxBQUF3Qix1QkFBRCxDQUFDLGlCQUFpQixDQUFDO0VBQ3RDLE1BQU0sRUFBRSxJQUFJO0VBQ1osUUFBUSxFQUFFLE9BQU87RUFDakIsT0FBTyxFQUFFLENBQUM7RUFDVixLQUFLLEVBQUUsSUFBSSxHQUNkOztBQUVELEFBQXVCLHNCQUFELENBQUMsaUJBQWlCLENBQUM7RUFDckMsVUFBVSxFQUFFLElBQUksR0FDbkI7O0FBRUQsQUFBcUIsb0JBQUQsQ0FBQyxpQkFBaUIsQ0FBQztFQUNuQyxVQUFVLEVBQUUsT0FBTyxHQUN0Qjs7QUFFRCxBQUF3Qix1QkFBRCxDQUFDLGlCQUFpQixDQUFDO0VBQ3RDLFVBQVUsRUFBRSxJQUFJLEdBQ25COztBQUVELEFBQUEsZUFBZTtBQUNmLEFBQUEsZ0JBQWdCLENBQUM7RUFDYixVQUFVLEVBQUUsV0FBVztFQUN2QixNQUFNLEVBQUUsQ0FBQztFQUNULE9BQU8sRUFBRSxLQUFLO0VBQ2QsTUFBTSxFQUFFLElBQUk7RUFDWixNQUFNLEVBQUUsQ0FBQztFQUNULFFBQVEsRUFBRSxNQUFNO0VBQ2hCLE9BQU8sRUFBRSxDQUFDO0VBQ1YsS0FBSyxFQUFFLElBQUksR0FDZDs7QUFFRCxhQUFhO0FBQ2IsQUFBQSxnQkFBZ0IsQ0FBQztFQUNiLElBQUksRUFBRSxDQUFDO0VBQ1AsUUFBUSxFQUFFLFFBQVE7RUFDbEIsR0FBRyxFQUFFLENBQUMsR0FDVDs7QUFFRCxBQUFBLGVBQWUsQ0FBQztFQUNaLFVBQVUsRUFBRSxJQUFJO0VBQ2hCLE1BQU0sRUFBRSxPQUFPO0VBQ2YsU0FBUyxFQUFFLEtBQUs7RUFDaEIsT0FBTyxFQUFFLElBQUk7RUFDYixLQUFLLEVBQUUsSUFBSSxHQUNkOztBQUVELEFBQWdCLGVBQUQsQ0FBQyxDQUFDLENBQUM7RUFDZCxLQUFLLEVBQUUsSUFBSTtFQUNYLFNBQVMsRUFBRSxJQUFJO0VBQ2YsV0FBVyxFQUFFLElBQUk7RUFDakIsTUFBTSxFQUFFLENBQUM7RUFDVCxPQUFPLEVBQUUsQ0FBQyxHQUNiOztBQUVELGFBQWE7QUFFYixBQUFBLGdCQUFnQixDQUFDO0VBQ2IsVUFBVSxFQUFFLHFCQUFvQjtFQUNoQyxNQUFNLEVBQUUsQ0FBQztFQUNULGFBQWEsRUFBRSxDQUFDO0VBQ2hCLFVBQVUsRUFBRSxJQUFJO0VBQ2hCLE1BQU0sRUFBRSxPQUFPO0VBQ2YsT0FBTyxFQUFFLFlBQVk7RUFDckIsTUFBTSxFQUFFLElBQUk7RUFDWixNQUFNLEVBQUUsQ0FBQztFQUNULE9BQU8sRUFBRSxJQUFJO0VBQ2IsUUFBUSxFQUFFLFFBQVE7RUFDbEIsVUFBVSxFQUFFLFNBQVM7RUFDckIsY0FBYyxFQUFFLEdBQUc7RUFDbkIsVUFBVSxFQUFFLE9BQU87RUFDbkIsS0FBSyxFQUFFLElBQUksR0FDZDs7QUFFRCxBQUFBLGdCQUFnQjtBQUNoQixBQUFBLGdCQUFnQixBQUFBLFFBQVE7QUFDeEIsQUFBQSxnQkFBZ0IsQUFBQSxLQUFLLENBQUM7RUFDbEIsS0FBSyxFQUFFLElBQUksR0FDZDs7QUFFRCxBQUFBLGdCQUFnQixBQUFBLE1BQU0sQ0FBQztFQUNuQixLQUFLLEVBQUUsSUFBSSxHQUNkOztBQUVELEFBQUEsZ0JBQWdCLEFBQUEsTUFBTSxDQUFDO0VBQ25CLE9BQU8sRUFBRSxJQUFJLEdBQ2hCOztBQUVELEFBQUEsZ0JBQWdCLEFBQUEsZUFBZSxDQUFDO0VBQzVCLE9BQU8sRUFBRSxVQUFVLEdBQ3RCOztBQUVELEFBQUEsZ0JBQWdCLENBQUEsQUFBQSxRQUFDLEFBQUE7QUFDakIsQUFBQSxnQkFBZ0IsQ0FBQSxBQUFBLFFBQUMsQUFBQSxDQUFTLE1BQU0sQ0FBQztFQUM3QixLQUFLLEVBQUUsSUFBSTtFQUNYLE1BQU0sRUFBRSxPQUFPO0VBQ2YsT0FBTyxFQUFFLElBQUksR0FDaEI7O0FBRUQsY0FBYztBQUNkLEFBQWlCLGdCQUFELENBQUMsR0FBRyxDQUFDO0VBQ2pCLE1BQU0sRUFBRSxJQUFJLEdBQ2Y7O0FBRUQsQUFBaUIsZ0JBQUQsQ0FBQyxHQUFHLENBQUM7RUFDakIsT0FBTyxFQUFFLEtBQUs7RUFDZCxNQUFNLEVBQUUsSUFBSTtFQUNaLFFBQVEsRUFBRSxPQUFPO0VBQ2pCLFFBQVEsRUFBRSxRQUFRO0VBQ2xCLEtBQUssRUFBRSxJQUFJLEdBQ2Q7O0FBRUQsQUFBcUIsZ0JBQUwsQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDO0VBQ3RCLElBQUksRUFBRSxZQUFZO0VBQ2xCLFlBQVksRUFBRSxDQUFDLEdBQ2xCOztBQUVELEFBQXVCLHNCQUFELENBQUMsR0FBRyxBQUFBLFVBQVcsQ0FBQSxBQUFBLENBQUM7QUFDdEMsQUFBMEIseUJBQUQsQ0FBQyxHQUFHLEFBQUEsVUFBVyxDQUFBLEFBQUEsQ0FBQyxFQUFFO0VBQ3ZDLE9BQU8sRUFBRSxJQUFJLEdBQ2hCOztBQUVELEFBQXdCLHVCQUFELENBQUMsR0FBRyxBQUFBLFVBQVcsQ0FBQSxBQUFBLENBQUM7QUFDdkMsQUFBeUIsd0JBQUQsQ0FBQyxHQUFHLEFBQUEsVUFBVyxDQUFBLEFBQUEsQ0FBQyxFQUFFO0VBQ3RDLE9BQU8sRUFBRSxJQUFJLEdBQ2hCOztBQUVELEFBQUEsa0JBQWtCLENBQUM7RUFDZixVQUFVLEVBQUUsT0FBTztFQUNuQixNQUFNLEVBQUUsR0FBRztFQUNYLElBQUksRUFBRSxDQUFDO0VBQ1AsUUFBUSxFQUFFLFFBQVE7RUFDbEIsS0FBSyxFQUFFLENBQUM7RUFDUixHQUFHLEVBQUUsQ0FBQztFQUNOLGFBQWEsRUFBRSxTQUFTO0VBQ3hCLFNBQVMsRUFBRSxTQUFTO0VBQ3BCLG9CQUFvQixFQUFFLENBQUM7RUFDdkIsZ0JBQWdCLEVBQUUsQ0FBQztFQUNuQixtQkFBbUIsRUFBRSxTQUFTO0VBQzlCLDBCQUEwQixFQUFFLE1BQU07RUFDbEMsT0FBTyxFQUFFLEtBQUssR0FDakI7O0FBQ0QsMERBQTBEO0FBRTFELEFBQUEscUJBQXFCLENBQUM7RUFDbEIsVUFBVSxFQUFFLFdBQVc7RUFDdkIsTUFBTSxFQUFFLENBQUM7RUFDVCxhQUFhLEVBQUUsQ0FBQztFQUNoQixLQUFLLEVBQUUsSUFBSTtFQUNYLE1BQU0sRUFBRSxPQUFPO0VBQ2YsT0FBTyxFQUFFLEVBQUU7RUFDWCxPQUFPLEVBQUUsR0FBRztFQUNaLFFBQVEsRUFBRSxRQUFRO0VBQ2xCLEtBQUssRUFBRSxLQUFLO0VBQ1osR0FBRyxFQUFFLEtBQUs7RUFDVixPQUFPLEVBQUUsR0FBRyxHQUNmOztBQUVELEFBQUEscUJBQXFCLEFBQUEsTUFBTSxDQUFDO0VBQ3hCLEtBQUssRUFBRSxJQUFJO0VBQ1gsT0FBTyxFQUFFLENBQUMsR0FDYjs7QUFFRCxBQUFzQixxQkFBRCxDQUFDLHFCQUFxQixDQUFDO0VBQ3hDLEtBQUssRUFBRSxZQUFZO0VBQ25CLE9BQU8sRUFBRSxJQUFJO0VBQ2IsS0FBSyxFQUFFLENBQUM7RUFDUixHQUFHLEVBQUUsQ0FBQyxHQUNUOztBQUVELEFBQTJDLHNCQUFyQixBQUFBLG9CQUFvQixDQUFDLGlCQUFpQixDQUFDO0VBQ3pELFFBQVEsRUFBRSxNQUFNLEdBQ25COztBQUVELEFBQXFCLG9CQUFELENBQUMscUJBQXFCO0FBQzFDLEFBQXVDLHFCQUFsQixBQUFBLGlCQUFpQixDQUFDLHFCQUFxQixDQUFDO0VBQ3pELE9BQU8sRUFBRSxJQUFJLEdBQ2hCOztBQUVELHVCQUF1QjtBQUV2QixBQUFxQixvQkFBRCxDQUFDLGdCQUFnQixDQUFDO0VBQ2xDLGVBQWUsRUFBRSxXQUFXO0VBQzVCLE1BQU0sRUFBRSxLQUFLO0VBQ2IsT0FBTyxFQUFFLENBQUM7RUFDVixRQUFRLEVBQUUsUUFBUTtFQUNsQixHQUFHLEVBQUUsZ0JBQWdCO0VBQ3JCLEtBQUssRUFBRSxJQUFJLEdBQ2Q7O0FBRUQsQUFBc0Msb0JBQWxCLENBQUMsZ0JBQWdCLENBQUMsR0FBRyxBQUFBLElBQUssQ0FBQSxBQUFBLEtBQUssRUFBRTtFQUNqRCxPQUFPLEVBQUUsR0FBRyxHQUNmOztBQUVELEFBQXNDLG9CQUFsQixDQUFDLGdCQUFnQixDQUFDLEdBQUcsQUFBQSxLQUFLLENBQUM7RUFDM0MsUUFBUSxFQUFFLFFBQVEsR0FDckI7O0FBRUQsQUFBK0Msb0JBQTNCLENBQUMsZ0JBQWdCLENBQUMsR0FBRyxBQUFBLEtBQUssQ0FBQyxDQUFDLENBQUM7RUFDN0MsU0FBUyxFQUFFLHFCQUFxQjtFQUNoQyxRQUFRLEVBQUUsUUFBUTtFQUNsQixTQUFTLEVBQUUsSUFBSTtFQUNmLElBQUksRUFBRSxHQUFHO0VBQ1QsR0FBRyxFQUFFLEdBQUcsR0FDWDs7QUFFRCxBQUFxQixvQkFBRCxDQUFDLDRCQUE0QixDQUFDO0VBQzlDLElBQUksRUFBRSxDQUFDO0VBQ1AsSUFBSSxFQUFFLHlCQUF5QjtFQUMvQixPQUFPLEVBQUUsa0JBQWtCLEdBQzlCOztBQUVELEFBQXFCLG9CQUFELENBQUMsNkJBQTZCLENBQUM7RUFDL0MsT0FBTyxFQUFFLGtCQUFrQjtFQUMzQixLQUFLLEVBQUUsQ0FBQztFQUNSLEtBQUssRUFBRSwwQkFBMEIsR0FDcEM7O0FBRUQsYUFBYTtBQUViLEFBQUEsaUJBQWlCLENBQUM7RUFDZCxVQUFVLEVBQUUscU1BQXNNO0VBQ2xOLE1BQU0sRUFBRSxDQUFDO0VBQ1QsS0FBSyxFQUFFLElBQUk7RUFDWCxTQUFTLEVBQUUsSUFBSTtFQUNmLFdBQVcsRUFBRSxHQUFHO0VBQ2hCLElBQUksRUFBRSxDQUFDO0VBQ1AsV0FBVyxFQUFFLEdBQUc7RUFDaEIsT0FBTyxFQUFFLG1CQUFtQjtFQUM1QixjQUFjLEVBQUUsSUFBSTtFQUNwQixLQUFLLEVBQUUsQ0FBQztFQUNSLFVBQVUsRUFBRSxNQUFNO0VBQ2xCLE9BQU8sRUFBRSxLQUFLLEdBQ2pCOztBQUVELEFBQUEsMkJBQTJCLENBQUM7RUFDeEIsVUFBVSxFQUFFLEtBQUssR0FDcEI7O0FBRUQsQUFBQSx1QkFBdUIsQ0FBQztFQUNwQixVQUFVLEVBQUUsSUFBSTtFQUNoQixRQUFRLEVBQUUsSUFBSTtFQUNkLGNBQWMsRUFBRSxHQUFHLEdBQ3RCOztBQUVELEFBQWtCLGlCQUFELENBQUMsQ0FBQztBQUNuQixBQUFrQixpQkFBRCxDQUFDLENBQUMsQUFBQSxLQUFLO0FBQ3hCLEFBQWtCLGlCQUFELENBQUMsQ0FBQyxBQUFBLFFBQVEsQ0FBQztFQUN4QixLQUFLLEVBQUUsSUFBSTtFQUNYLGVBQWUsRUFBRSxJQUFJLEdBQ3hCOztBQUVELEFBQWtCLGlCQUFELENBQUMsQ0FBQyxBQUFBLE1BQU0sQ0FBQztFQUN0QixLQUFLLEVBQUUsSUFBSTtFQUNYLGVBQWUsRUFBRSxTQUFTLEdBQzdCOztBQUVELHVCQUF1QjtBQUV2QixBQUFBLGlCQUFpQixDQUFDO0VBQ2QsU0FBUyxFQUFFLGtDQUFrQztFQUM3QyxVQUFVLEVBQUUsV0FBVztFQUN2QixNQUFNLEVBQUUsY0FBYztFQUN0QixtQkFBbUIsRUFBRSxJQUFJO0VBQ3pCLGFBQWEsRUFBRSxHQUFHO0VBQ2xCLE1BQU0sRUFBRSxJQUFJO0VBQ1osSUFBSSxFQUFFLEdBQUc7RUFDVCxNQUFNLEVBQUUsZUFBZTtFQUN2QixPQUFPLEVBQUUsRUFBRTtFQUNYLE9BQU8sRUFBRSxDQUFDO0VBQ1YsUUFBUSxFQUFFLFFBQVE7RUFDbEIsR0FBRyxFQUFFLEdBQUc7RUFDUixLQUFLLEVBQUUsSUFBSTtFQUNYLE9BQU8sRUFBRSxLQUFLLEdBQ2pCOztBQUVELFVBQVUsQ0FBVixlQUFVO0VBQ04sQUFBQSxJQUFJO0lBQ0EsU0FBUyxFQUFFLGNBQWM7O0FBSWpDLHdCQUF3QjtBQUV4QixBQUFBLGtCQUFrQixDQUFDO0VBQ2YsMEJBQTBCLEVBQUUsMkJBQTBCLEdBQ3pEOztBQUVELDZCQUE2QjtBQUU3QixBQUFBLGtCQUFrQixBQUFBLHlCQUF5QixDQUFDO0VBQ3hDLE9BQU8sRUFBRSxDQUFDO0VBQ1YsU0FBUyxFQUFFLHdCQUF3QixHQUN0Qzs7QUFFRCxBQUFBLGtCQUFrQixBQUFBLHFCQUFxQixDQUFDO0VBQ3BDLE9BQU8sRUFBRSxDQUFDO0VBQ1YsU0FBUyxFQUFFLHVCQUF1QixHQUNyQzs7QUFFRCxBQUFBLGtCQUFrQixBQUFBLHdCQUF3QixDQUFDO0VBQ3ZDLE9BQU8sRUFBRSxDQUFDO0VBQ1YsU0FBUyxFQUFFLG9CQUFvQixHQUNsQzs7QUFFRCw0QkFBNEI7QUFFNUIsQUFBQSxpQkFBaUIsQUFBQSx5QkFBeUI7QUFDMUMsQUFBQSxpQkFBaUIsQUFBQSxxQkFBcUIsQ0FBQztFQUNuQyxPQUFPLEVBQUUsQ0FBQztFQUNWLDBCQUEwQixFQUFFLDhCQUE0QixHQUMzRDs7QUFFRCxBQUFBLGlCQUFpQixBQUFBLHdCQUF3QixDQUFDO0VBQ3RDLE9BQU8sRUFBRSxDQUFDLEdBQ2I7O0FBRUQsbUNBQW1DO0FBRW5DLEFBQUEsd0JBQXdCLEFBQUEseUJBQXlCLENBQUM7RUFDOUMsT0FBTyxFQUFFLENBQUM7RUFDVixTQUFTLEVBQUUsc0JBQXNCLEdBQ3BDOztBQUVELEFBQUEsd0JBQXdCLEFBQUEscUJBQXFCLENBQUM7RUFDMUMsT0FBTyxFQUFFLENBQUM7RUFDVixTQUFTLEVBQUUsc0JBQW1CLEdBQ2pDOztBQUVELEFBQUEsd0JBQXdCLEFBQUEsd0JBQXdCLENBQUM7RUFDN0MsT0FBTyxFQUFFLENBQUM7RUFDVixTQUFTLEVBQUUsZ0JBQWdCLEdBQzlCOztBQUVELDhCQUE4QjtBQUU5QixBQUFBLG1CQUFtQixBQUFBLHlCQUF5QixDQUFDO0VBQ3pDLE9BQU8sRUFBRSxDQUFDO0VBQ1YsYUFBYSxFQUFFLGVBQWU7RUFDOUIsU0FBUyxFQUFFLGVBQWUsR0FDN0I7O0FBRUQsQUFBQSxtQkFBbUIsQUFBQSxxQkFBcUIsQ0FBQztFQUNyQyxPQUFPLEVBQUUsQ0FBQztFQUNWLGFBQWEsRUFBRSxjQUFjO0VBQzdCLFNBQVMsRUFBRSxjQUFjLEdBQzVCOztBQUVELEFBQUEsbUJBQW1CLEFBQUEsd0JBQXdCLENBQUM7RUFDeEMsT0FBTyxFQUFFLENBQUM7RUFDVixhQUFhLEVBQUUsWUFBWTtFQUMzQixTQUFTLEVBQUUsWUFBWSxHQUMxQjs7QUFFRCxnQ0FBZ0M7QUFFaEMsQUFBQSxxQkFBcUIsQUFBQSx5QkFBeUIsQ0FBQztFQUMzQyxPQUFPLEVBQUUsQ0FBQztFQUNWLFNBQVMsRUFBRSxnQkFBZ0IsQ0FBQyx3QkFBd0IsR0FDdkQ7O0FBRUQsQUFBQSxxQkFBcUIsQUFBQSxxQkFBcUIsQ0FBQztFQUN2QyxPQUFPLEVBQUUsQ0FBQztFQUNWLFNBQVMsRUFBRSxnQkFBZ0IsQ0FBQyx1QkFBdUIsR0FDdEQ7O0FBRUQsQUFBQSxxQkFBcUIsQUFBQSx3QkFBd0IsQ0FBQztFQUMxQyxPQUFPLEVBQUUsQ0FBQztFQUNWLFNBQVMsRUFBRSxnQkFBZ0IsQ0FBQyxvQkFBb0IsR0FDbkQ7O0FBRUQsNEJBQTRCO0FBRTVCLEFBQUEsaUJBQWlCLEFBQUEseUJBQXlCLENBQUM7RUFDdkMsU0FBUyxFQUFFLHdCQUF3QixDQUFDLFVBQVMsQ0FBQyxZQUFZLEdBQzdEOztBQUVELEFBQUEsaUJBQWlCLEFBQUEscUJBQXFCLENBQUM7RUFDbkMsU0FBUyxFQUFFLHVCQUF1QixDQUFDLFVBQVMsQ0FBQyxXQUFXLEdBQzNEOztBQUVELEFBQUEsaUJBQWlCLEFBQUEsd0JBQXdCLENBQUM7RUFDdEMsU0FBUyxFQUFFLG9CQUFvQixDQUFDLFFBQVEsR0FDM0M7O0FBRUQsc0NBQXNDO0FBQ3RDLE1BQU0sQ0FBQyxHQUFHLE1BQU0sVUFBVSxFQUFFLEtBQUs7RUFDN0IsQUFBQSxlQUFlLENBQUM7SUFDWixZQUFZLEVBQUUsR0FBRztJQUNqQixhQUFhLEVBQUUsR0FBRyxHQUNyQjtFQUVELEFBQUEsc0JBQXNCLENBQUM7SUFDbkIsT0FBTyxFQUFFLEtBQUssR0FDakI7RUFFRCxBQUFBLHFCQUFxQixDQUFDO0lBQ2xCLEtBQUssRUFBRSxJQUFJLEdBQ2Q7RUFFRCxBQUF1QixzQkFBRCxDQUFDLHFCQUFxQixDQUFDO0lBQ3pDLFVBQVUsRUFBRSxPQUFPO0lBQ25CLEtBQUssRUFBRSxPQUFPO0lBQ2QsTUFBTSxFQUFFLElBQUk7SUFDWixPQUFPLEVBQUUsQ0FBQztJQUNWLE9BQU8sRUFBRSxHQUFHO0lBQ1osS0FBSyxFQUFFLENBQUM7SUFDUixHQUFHLEVBQUUsQ0FBQztJQUNOLEtBQUssRUFBRSxJQUFJLEdBQ2Q7RUFFRCxBQUFBLGlCQUFpQixDQUFDO0lBQ2QsWUFBWSxFQUFFLElBQUk7SUFDbEIsYUFBYSxFQUFFLElBQUksR0FDdEI7O0FBR0wsV0FBVztBQUVYLEFBQUEsZUFBZSxDQUFDO0VBQ1osVUFBVSxFQUFFLE9BQU87RUFDbkIsYUFBYSxFQUFFLEdBQUc7RUFDbEIsU0FBUyxFQUFFLEdBQUc7RUFDZCxPQUFPLEVBQUUsSUFBSTtFQUNiLFVBQVUsRUFBRSxNQUFNLEdBQ3JCOztBQUVELEFBQWdCLGVBQUQsQ0FBQyxFQUFFLENBQUM7RUFDZixLQUFLLEVBQUUsSUFBSTtFQUNYLFNBQVMsRUFBRSxJQUFJO0VBQ2YsV0FBVyxFQUFFLEdBQUc7RUFDaEIsTUFBTSxFQUFFLFVBQVUsR0FDckI7O0FBRUQsQUFBZ0IsZUFBRCxDQUFDLENBQUMsQ0FBQztFQUNkLE1BQU0sRUFBRSxDQUFDO0VBQ1QsT0FBTyxFQUFFLENBQUMsR0FDYjs7QUFFRCxBQUFBLHVCQUF1QixDQUFDO0VBQ3BCLE1BQU0sRUFBRSxDQUFDO0VBQ1QsYUFBYSxFQUFFLEdBQUc7RUFDbEIsT0FBTyxFQUFFLFlBQVk7RUFDckIsU0FBUyxFQUFFLElBQUk7RUFDZixXQUFXLEVBQUUsR0FBRztFQUNoQixXQUFXLEVBQUUsSUFBSTtFQUNqQixNQUFNLEVBQUUsY0FBYztFQUN0QixTQUFTLEVBQUUsS0FBSztFQUNoQixPQUFPLEVBQUUsTUFBTTtFQUNmLGVBQWUsRUFBRSxJQUFJO0VBQ3JCLFVBQVUsRUFBRSxPQUFPO0VBQ25CLG1CQUFtQixFQUFFLElBQUk7RUFDekIsZ0JBQWdCLEVBQUUsSUFBSTtFQUN0QixlQUFlLEVBQUUsSUFBSTtFQUNyQixXQUFXLEVBQUUsSUFBSTtFQUNqQixXQUFXLEVBQUUsTUFBTSxHQUN0Qjs7QUFFRCxBQUFBLHVCQUF1QixBQUFBLFFBQVE7QUFDL0IsQUFBQSx1QkFBdUIsQUFBQSxLQUFLLENBQUM7RUFDekIsS0FBSyxFQUFFLElBQUksR0FDZDs7QUFFRCxBQUFBLHVCQUF1QixBQUFBLE1BQU0sQ0FBQztFQUMxQixlQUFlLEVBQUUsSUFBSSxHQUN4Qjs7QUFFRCxBQUFBLDJCQUEyQixDQUFDO0VBQ3hCLFVBQVUsRUFBRSxPQUFPLEdBQ3RCOztBQUVELEFBQUEsMkJBQTJCLEFBQUEsTUFBTSxDQUFDO0VBQzlCLFVBQVUsRUFBRSxPQUFPLEdBQ3RCOztBQUVELEFBQUEsMkJBQTJCLENBQUM7RUFDeEIsVUFBVSxFQUFFLE9BQU8sR0FDdEI7O0FBRUQsQUFBQSwyQkFBMkIsQUFBQSxNQUFNLENBQUM7RUFDOUIsVUFBVSxFQUFFLE9BQU8sR0FDdEI7O0FBRUQsQUFBQSwyQkFBMkIsQ0FBQztFQUN4QixVQUFVLEVBQUUsT0FBTyxHQUN0Qjs7QUFFRCxBQUFBLDJCQUEyQixBQUFBLE1BQU0sQ0FBQztFQUM5QixVQUFVLEVBQUUsT0FBTyxHQUN0Qjs7QUFFRCxBQUF3Qix1QkFBRCxDQUFDLEdBQUcsQ0FBQztFQUN4QixNQUFNLEVBQUUsSUFBSTtFQUNaLFlBQVksRUFBRSxHQUFHO0VBQ2pCLFFBQVEsRUFBRSxRQUFRO0VBQ2xCLEdBQUcsRUFBRSxJQUFJO0VBQ1QsY0FBYyxFQUFFLE1BQU07RUFDdEIsS0FBSyxFQUFFLElBQUksR0FDZDs7QUFFRCxBQUE0Qix1QkFBTCxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUM7RUFDN0IsSUFBSSxFQUFFLElBQUksR0FDYjs7QUFFRCxBQUFBLHNCQUFzQixDQUFDO0VBQ25CLFVBQVUsRUFBRSxXQUFXO0VBQ3ZCLE1BQU0sRUFBRSxDQUFDO0VBQ1QsYUFBYSxFQUFFLGlCQUFpQjtFQUNoQyxhQUFhLEVBQUUsQ0FBQztFQUNoQixLQUFLLEVBQUUsT0FBTztFQUNkLFNBQVMsRUFBRSxJQUFJO0VBQ2YsTUFBTSxFQUFFLFVBQVU7RUFDbEIsT0FBTyxFQUFFLElBQUk7RUFDYixPQUFPLEVBQUUsU0FBUztFQUNsQixLQUFLLEVBQUUsSUFBSSxHQUNkOztBQUVELFlBQVk7QUFFWixBQUFBLGdCQUFnQixDQUFDO0VBQ2IsVUFBVSxFQUFFLElBQUk7RUFDaEIsTUFBTSxFQUFFLENBQUM7RUFDVCxPQUFPLEVBQUUsSUFBSTtFQUNiLE1BQU0sRUFBRSxDQUFDO0VBQ1QsMEJBQTBCLEVBQUUsS0FBSztFQUNqQyxrQkFBa0IsRUFBRSx3QkFBd0I7RUFDNUMsT0FBTyxFQUFFLGVBQWU7RUFDeEIsUUFBUSxFQUFFLFFBQVE7RUFDbEIsS0FBSyxFQUFFLENBQUM7RUFDUiwyQkFBMkIsRUFBRSxXQUFnQjtFQUM3QyxHQUFHLEVBQUUsQ0FBQztFQUNOLEtBQUssRUFBRSxLQUFLO0VBQ1osT0FBTyxFQUFFLEtBQUssR0FDakI7O0FBRUQsQUFBQSxrQkFBa0IsQ0FBQztFQUNmLFVBQVUsRUFBRSxJQUFJO0VBQ2hCLFVBQVUsRUFBRSxNQUFNLEdBQ3JCOztBQUVELEFBQXNCLHFCQUFELENBQUMsZ0JBQWdCLENBQUM7RUFDbkMsT0FBTyxFQUFFLEtBQUssR0FDakI7O0FBRUQsQUFBc0IscUJBQUQsQ0FBQyxlQUFlLENBQUM7RUFDbEMsS0FBSyxFQUFFLEtBQUssR0FDZjs7QUFFRCxBQUFBLHNCQUFzQixDQUFDO0VBQ25CLFNBQVMsRUFBRSxDQUFDO0VBQ1osTUFBTSxFQUFFLElBQUk7RUFDWixVQUFVLEVBQUUsSUFBSTtFQUNoQixNQUFNLEVBQUUsQ0FBQztFQUNULFVBQVUsRUFBRSxNQUFNO0VBQ2xCLFVBQVUsRUFBRSxJQUFJO0VBQ2hCLE9BQU8sRUFBRSxDQUFDO0VBQ1YsUUFBUSxFQUFFLFFBQVE7RUFDbEIsUUFBUSxFQUFFLFFBQVE7RUFDbEIsV0FBVyxFQUFFLE1BQU07RUFDbkIsS0FBSyxFQUFFLElBQUksR0FDZDs7QUFFRCxBQUFtQixrQkFBRCxDQUFDLHNCQUFzQixDQUFDO0VBQ3RDLFFBQVEsRUFBRSxNQUFNLEdBQ25COztBQUVELEFBQW1CLGtCQUFELENBQUMsc0JBQXNCLEFBQUEsbUJBQW1CLENBQUM7RUFDekQsS0FBSyxFQUFFLEdBQUcsR0FDYjs7QUFFRCxBQUFtQixrQkFBRCxDQUFDLHNCQUFzQixBQUFBLHlCQUF5QixDQUFDO0VBQy9ELFVBQVUsRUFBRSxJQUFJO0VBQ2hCLGFBQWEsRUFBRSxJQUFJO0VBQ25CLFVBQVUsRUFBRSxLQUFLLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxHQUFHLENBQUMsa0JBQWlCLEdBQzlDOztBQUVELEFBQW1CLGtCQUFELENBQUMsc0JBQXNCLEFBQUEseUJBQXlCLENBQUM7RUFDL0QsVUFBVSxFQUFFLE9BQU87RUFDbkIsYUFBYSxFQUFFLElBQUksR0FDdEI7O0FBRUQsQUFBdUIsc0JBQUQsQ0FBQyxDQUFDLENBQUM7RUFDckIsMkJBQTJCLEVBQUUsTUFBTTtFQUNuQyxtQkFBbUIsRUFBRSxNQUFNO0VBQzNCLGdCQUFnQixFQUFFLGtCQUFpQjtFQUNuQyxtQkFBbUIsRUFBRSxhQUFhO0VBQ2xDLGlCQUFpQixFQUFFLFNBQVM7RUFDNUIsZUFBZSxFQUFFLEtBQUs7RUFDdEIsTUFBTSxFQUFFLE9BQU87RUFDZixLQUFLLEVBQUUsSUFBSTtFQUNYLE1BQU0sRUFBRSxJQUFJO0VBQ1osTUFBTSxFQUFFLEdBQUc7RUFDWCxVQUFVLEVBQUUsZ0JBQWdCO0VBQzVCLFNBQVMsRUFBRSxlQUFlO0VBQzFCLE9BQU8sRUFBRSxJQUFJO0VBQ2IsUUFBUSxFQUFFLE1BQU07RUFDaEIsT0FBTyxFQUFFLENBQUM7RUFDVixRQUFRLEVBQUUsUUFBUTtFQUNsQiwyQkFBMkIsRUFBRSxXQUFXO0VBQ3hDLEtBQUssRUFBRSxLQUFLLEdBQ2Y7O0FBRUQsQUFBdUIsc0JBQUQsQ0FBQyxDQUFDLEFBQUEsUUFBUSxDQUFDO0VBQzdCLE1BQU0sRUFBRSxpQkFBaUI7RUFDekIsTUFBTSxFQUFFLENBQUM7RUFDVCxPQUFPLEVBQUUsRUFBRTtFQUNYLElBQUksRUFBRSxDQUFDO0VBQ1AsT0FBTyxFQUFFLENBQUM7RUFDVixRQUFRLEVBQUUsUUFBUTtFQUNsQixLQUFLLEVBQUUsQ0FBQztFQUNSLEdBQUcsRUFBRSxDQUFDO0VBQ04sVUFBVSxFQUFFLEdBQUcsQ0FBQyxJQUFHLENBQUMsb0NBQWdDO0VBQ3BELE9BQU8sRUFBRSxLQUFLLEdBQ2pCOztBQUVELEFBQXVCLHNCQUFELENBQUMsQ0FBQyxBQUFBLE1BQU0sQUFBQSxRQUFRLENBQUM7RUFDbkMsT0FBTyxFQUFFLEVBQUUsR0FDZDs7QUFFRCxBQUF1QixzQkFBRCxDQUFDLENBQUMsQUFBQSx1QkFBdUIsQUFBQSxRQUFRLENBQUM7RUFDcEQsT0FBTyxFQUFFLENBQUMsR0FDYjs7QUFFRCxzQ0FBc0M7QUFDdEMsTUFBTSxDQUFDLEdBQUcsTUFBTSxTQUFTLEVBQUUsS0FBSztFQUM1QixBQUFBLGdCQUFnQixDQUFDO0lBQ2IsS0FBSyxFQUFFLEtBQUssR0FDZjtFQUVELEFBQXNCLHFCQUFELENBQUMsZUFBZSxDQUFDO0lBQ2xDLEtBQUssRUFBRSxLQUFLLEdBQ2Y7RUFFRCxBQUF1QixzQkFBRCxDQUFDLENBQUMsQ0FBQztJQUNyQixTQUFTLEVBQUUsaUJBQWlCLEdBQy9CIgp9 */
div#Content .FlipCards {
  font-size: 0;
  margin-left: -20px;
  margin-bottom: -20px;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  --column-gap: 40px;
  /*margin-top: -$Metric-Separator-Extended;*/
}
@media only screen and (min-width: 760px) {
  div#Content .FlipCards {
    margin-left: calc(-1 * var(--column-gap));
  }
  div#Content .FlipCards.FlipCards-1 div.Flip-Container, div#Content .FlipCards[columns="1"] div.Flip-Container {
    max-width: 100% !important;
    flex-basis: 100%;
  }
  div#Content .FlipCards.FlipCards-2 div.Flip-Container, div#Content .FlipCards[columns="2"] div.Flip-Container {
    max-width: calc(50% - var(--column-gap)) !important;
    flex-basis: 50%;
    /* &[colspan="2"] {
        width: 100%;
        margin-left: 0;
    }*/
  }
  div#Content .FlipCards.FlipCards-3 div.Flip-Container, div#Content .FlipCards[columns="3"] div.Flip-Container {
    max-width: calc(33.3333333333% - var(--column-gap)) !important;
    flex-basis: 33%;
    /*&[colspan="2"] {
        width: calc(100%/3*2 - var(--column-gap));
    }

    &[colspan="3"] {
        width: 100%;
    }*/
  }
  div#Content .FlipCards.FlipCards-4 div.Flip-Container, div#Content .FlipCards[columns="4"] div.Flip-Container {
    max-width: calc(25% - var(--column-gap)) !important;
    flex-basis: 25%;
    /*&[colspan="2"] {
        width: calc(100%/4*2 - var(--column-gap));
    }

    &[colspan="3"] {
        width: calc(100%/4*3 - var(--column-gap));
    }

    &[colspan="4"] {
        width: 100%;
    }*/
  }
  div#Content .FlipCards div.Flip-Container {
    margin-left: var(--column-gap);
  }
}
@media only screen and (max-width: 759px) {
  div#Content .FlipCards div.Flip-Container {
    width: 100%;
  }
}
div#Content .FlipCards--RoundedBorders div.Flip-Container {
  border-radius: var(--style-card-radius);
}
div#Content .FlipCards--RoundedBorders div.Flip-Container div.Card {
  border-radius: var(--style-card-radius);
  overflow: hidden;
  position: relative;
}
div#Content .FlipCards--RoundedBorders div.Flip-Container div.Card.Velo--Green::before, div#Content .FlipCards--RoundedBorders div.Flip-Container div.Card.Velo--Orange::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 39;
  pointer-events: none;
}
div#Content .FlipCards--RoundedBorders div.Flip-Container div.Card.Velo--Green:hover::before, div#Content .FlipCards--RoundedBorders div.Flip-Container div.Card.Velo--Orange:hover::before {
  content: none;
}
div#Content .FlipCards--RoundedBorders div.Flip-Container div.Card.Velo--Green::before {
  background: rgba(17, 176, 92, 0.45);
}
div#Content .FlipCards--RoundedBorders div.Flip-Container div.Card.Velo--Orange::before {
  background: rgba(227, 71, 17, 0.45);
}
div#Content .FlipCards--RoundedBorders div.Flip-Container div.Card.Velo--Gray::before {
  background: rgba(58, 68, 67, 0.45);
}
div#Content .FlipCards--RoundedBorders div.Flip-Container div.Flipper {
  border-radius: var(--style-card-radius);
  position: relative;
}
div#Content .FlipCards--RoundedBorders div.Flip-Container div.Flipper .Front, div#Content .FlipCards--RoundedBorders div.Flip-Container div.Flipper .Back {
  border-radius: var(--style-card-radius);
  overflow: hidden;
}
div#Content .FlipCards--RoundedBorders div.Flip-Container div.Flipper.Velo--Green::before, div#Content .FlipCards--RoundedBorders div.Flip-Container div.Flipper.Velo--Orange::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  pointer-events: none;
}
div#Content .FlipCards--RoundedBorders div.Flip-Container div.Flipper.Velo--Green:hover::before, div#Content .FlipCards--RoundedBorders div.Flip-Container div.Flipper.Velo--Orange:hover::before {
  content: none;
}
div#Content .FlipCards--RoundedBorders div.Flip-Container div.Flipper.Velo--Green::before {
  background: rgba(17, 176, 92, 0.45);
}
div#Content .FlipCards--RoundedBorders div.Flip-Container div.Flipper.Velo--Orange::before {
  background: rgba(227, 71, 17, 0.45);
}
div#Content .FlipCards--RoundedBorders div.Flip-Container div.Flipper.Velo--Gray::before {
  background: rgba(58, 68, 67, 0.45);
}
div#Content .FlipCards--LayoutFreccia {
  padding-top: 55px;
}
div#Content .FlipCards--LayoutFreccia .Flip-Container {
  position: relative;
  overflow: visible !important;
}
div#Content .FlipCards--LayoutFreccia .Flip-Container div.Card {
  border-radius: unset !important;
}
div#Content .FlipCards--LayoutFreccia .Flip-Container div.Commands {
  margin-bottom: 40px !important;
}
div#Content .FlipCards--LayoutFreccia .Flip-Container div.Flipper {
  border-radius: 0 0 var(--style-card-radius) var(--style-card-radius);
}
div#Content .FlipCards--LayoutFreccia .Flip-Container div.Flipper div.Front, div#Content .FlipCards--LayoutFreccia .Flip-Container div.Flipper div.Back {
  border-radius: 0 0 var(--style-card-radius) var(--style-card-radius);
}
div#Content .FlipCards--LayoutFreccia .Flip-Container::after {
  content: "";
  position: absolute;
  top: -39px;
  left: 0;
  height: 40px;
  background-color: white;
  width: 100%;
  clip-path: polygon(0% 0%, 43.25% 0%, 50% 30px, 56.75% 0%, 100% 0%, 100% 100%, 0% 100%);
  border-radius: var(--style-card-radius) var(--style-card-radius) 0 0;
}
div#Content .FlipCards--Shadow div.Flip-Container {
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.1);
}
div#Content .FlipCards--Carousel div.Flip-Container:has(div.Card) {
  max-width: 20%;
}
div#Content .FlipCards--DiffHeight {
  align-items: flex-start;
}
div#Content .FlipCards--DiffHeight .Flip-Container .Flipper .Front.No__Title {
  padding-top: 69% !important;
}
div#Content .FlipCards--DiffHeight .Flip-Container .Card .Card__Container .Card__Content.Card__Content__NoLink {
  padding-bottom: 12px;
}
@media only screen and (min-width: 760px) {
  div#Content .FlipCards--Separator {
    --column-gap: 40px;
  }
  div#Content .FlipCards--Separator.FlipCards-2 div.Flip-Container:not(:nth-child(2n+1))::before, div#Content .FlipCards--Separator[columns="2"] div.Flip-Container:not(:nth-child(2n+1))::before {
    left: calc(-1 * var(--column-gap) / 2);
    background-color: #ccc;
    position: absolute;
    content: " ";
    height: 100%;
    width: 1px;
    top: 0;
  }
  div#Content .FlipCards--Separator div.Flip-Container {
    overflow: visible;
  }
  div#Content .FlipCards--Separator.FlipCards-3 div.Flip-Container:not(:nth-child(3n+1))::before, div#Content .FlipCards--Separator[columns="3"] div.Flip-Container:not(:nth-child(3n+1))::before {
    left: calc(-1 * var(--column-gap) / 2);
    background-color: #ccc;
    position: absolute;
    content: " ";
    height: 100%;
    width: 1px;
    top: 0;
  }
  div#Content .FlipCards--Separator div.Flip-Container {
    overflow: visible;
  }
  div#Content .FlipCards--Separator.FlipCards-4 div.Flip-Container:not(:nth-child(4n+1))::before, div#Content .FlipCards--Separator[columns="4"] div.Flip-Container:not(:nth-child(4n+1))::before {
    left: calc(-1 * var(--column-gap) / 2);
    background-color: #ccc;
    position: absolute;
    content: " ";
    height: 100%;
    width: 1px;
    top: 0;
  }
  div#Content .FlipCards--Separator div.Flip-Container {
    overflow: visible;
  }
  div#Content .FlipCards--Separator.FlipCards-5 div.Flip-Container:not(:nth-child(5n+1))::before, div#Content .FlipCards--Separator[columns="5"] div.Flip-Container:not(:nth-child(5n+1))::before {
    left: calc(-1 * var(--column-gap) / 2);
    background-color: #ccc;
    position: absolute;
    content: " ";
    height: 100%;
    width: 1px;
    top: 0;
  }
  div#Content .FlipCards--Separator div.Flip-Container {
    overflow: visible;
  }
}
div#Content .FlipCards--AlignCenter {
  justify-content: center;
}
div#Content .FlipCards div.Card {
  height: 100%;
}
div#Content .FlipCards div.Card div.Card__Container {
  height: 100%;
  display: flex;
  flex-flow: column;
}
div#Content .FlipCards div.Card div.Card__Container div.Card__Content {
  flex: 1;
  padding-top: 20px;
  font-size: 12px;
}
div#Content .FlipCards div.Card div.Card__Container div.Card__Info {
  font-size: 12px;
}
div#Content .FlipCards div.Card div.Card__Image {
  overflow: hidden;
  padding-top: 75%;
  position: relative;
  width: 100%;
  height: unset;
}
div#Content .FlipCards div.Card div.Card__Image img,
div#Content .FlipCards div.Card div.Card__Image video {
  transition: transform 500ms linear;
  position: absolute;
  background: black;
  object-fit: cover;
  height: 100%;
  width: 100%;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
}
div#Content .FlipCards div.Card div.Card__Title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 20px;
  text-transform: uppercase;
}
div#Content .FlipCards div.Card div.Card__Description {
  margin: 10px 20px 0;
}
div#Content .FlipCards div.Card div.Card__Info {
  margin: 10px 20px 20px;
}
div#Content .FlipCards div.Card a.Info {
  height: 48px;
  color: white;
  display: block;
  font-size: 16px;
  line-height: 48px;
  margin: 10px 0 0 0;
  text-align: center;
  text-decoration: unset;
  background: var(--color-card-button);
}
div#Content .FlipCards div.Card p {
  margin: 0 !important;
}
div#Content .FlipCards div.Card:hover {
  cursor: pointer;
}
div#Content .FlipCards div.Card:hover div.Card__Image img {
  transform: scale(1.1);
}
div#Content .FlipCards div.Card:hover a.Info {
  background-color: var(--color-card-button-hover);
}
div#Content .FlipCards .Flip-Container {
  margin-left: 20px;
  margin-bottom: 20px;
  perspective: 1000px;
  display: inline-block;
  background-color: white;
  flex-basis: 100%;
  overflow: hidden;
}
@media only screen and (min-width: 550px) {
  div#Content .FlipCards .Flip-Container {
    flex-basis: calc(50% - 40px);
    max-width: calc(50% - 40px);
  }
}
@media only screen and (min-width: 825px) {
  div#Content .FlipCards .Flip-Container {
    flex-basis: calc(33.33% - 40px);
    max-width: calc(33.33% - 40px);
  }
}
@media only screen and (min-width: 1100px) {
  div#Content .FlipCards .Flip-Container {
    flex-basis: calc(25% - 40px);
    max-width: calc(25% - 40px);
  }
}
@media only screen and (min-width: 760px) {
  div#Content .FlipCards .Flip-Container:hover .Flipper, div#Content .FlipCards .Flip-Container.hover .Flipper {
    transform: rotateY(180deg);
  }
}
div#Content .FlipCards .Flip-Container.Flip-Container--Flipper {
  box-shadow: none !important;
  overflow: visible;
}
div#Content .FlipCards .Flip-Container .Flipper {
  width: 100%;
  height: 100%;
  transition: 0.6s;
  position: relative;
  transform-style: preserve-3d;
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.1);
}
div#Content .FlipCards .Flip-Container .Flipper .Front, div#Content .FlipCards .Flip-Container .Flipper .Back {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  flex-basis: 100%;
  flex-wrap: wrap;
  cursor: default;
  display: flex;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
div#Content .FlipCards .Flip-Container .Flipper .Front {
  z-index: 2;
  transform: rotateY(0deg);
}
div#Content .FlipCards .Flip-Container .Flipper .Back {
  position: absolute;
  transform: rotateY(180deg);
}
div#Content .FlipCards .Flip-Container {
  --info-height: 80px;
}
@media only screen and (max-width: 759px) {
  div#Content .FlipCards .Flip-Container {
    --info-height: 48px;
  }
}
div#Content .FlipCards .Flip-Container.Offline div.Flipper::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  content: " ";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
}
div#Content .FlipCards .Flip-Container.Offline div.ActionBar a.Hide i::before {
  content: "\f06e";
}
div#Content .FlipCards .Flip-Container .SettingsPanel {
  position: relative;
  display: inline-block;
}
div#Content .FlipCards .Flip-Container .SettingsPanel .Panel {
  z-index: 40;
  display: none;
  position: absolute;
  background-color: white;
  bottom: 30px;
  border: 1px solid black;
  padding: 20px;
  min-width: 400px;
  text-align: left;
  left: 0;
}
div#Content .FlipCards .Flip-Container .SettingsPanel .Panel img {
  max-width: 142px !important;
  max-height: 106px !important;
}
div#Content .FlipCards .Flip-Container .SettingsPanel .Panel a.Close {
  padding: 10px 10px 10px 0;
  margin-top: 15px;
  display: inline-block;
}
div#Content .FlipCards .Flip-Container .IconeFiltri i {
  font-size: 13px;
  margin-right: 10px;
}
div#Content .FlipCards .Flip-Container .Flipper .Content {
  flex: 1 0 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  height: calc(100% - var(--info-height));
}
div#Content .FlipCards .Flip-Container .Flipper .Content.No__Link, div#Content .FlipCards .Flip-Container .Flipper .Content.No__Title {
  overflow: unset;
}
div#Content .FlipCards .Flip-Container .Flipper .Info {
  flex-grow: 1;
  flex-wrap: wrap;
  display: flex;
  align-content: center;
  height: var(--info-height);
  padding: 0 15px;
  font-size: 17px;
  overflow: hidden;
  line-height: unset;
  align-items: center;
  text-transform: uppercase;
}
div#Content .FlipCards .Flip-Container .Flipper .Info .TempoAttesa,
div#Content .FlipCards .Flip-Container .Flipper .Info .NonDisponibile {
  font-size: 0.7em;
}
div#Content .FlipCards .Flip-Container .Flipper .Info p {
  margin: 0 !important;
}
div#Content .FlipCards .Flip-Container .Flipper div[data-cms-inline] {
  width: 100%;
}
div#Content .FlipCards .Flip-Container .Flipper .Front {
  padding-top: 69%;
}
div#Content .FlipCards .Flip-Container .Flipper .Front .Content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
div#Content .FlipCards .Flip-Container .Flipper .Front .Content img {
  width: 100% !important;
}
div#Content .FlipCards .Flip-Container .Flipper .Front div.Info {
  color: white;
  background-color: var(--color-flip-card-bar);
}
div#Content .FlipCards .Flip-Container .Flipper .Front a.Info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: unset;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 760px) {
  div#Content .FlipCards .Flip-Container .Flipper .Front a.Info {
    display: none;
  }
}
div#Content .FlipCards .Flip-Container .Flipper .Back .Content {
  padding: 20px;
  font-size: 14px;
  background-color: white;
}
div#Content .FlipCards .Flip-Container .Flipper .Back .Content h3 {
  margin: 0;
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--color-accent);
  text-transform: uppercase;
}
div#Content .FlipCards .Flip-Container .Flipper .Back.No__Link {
  overflow: hidden;
}
div#Content .FlipCards .Flip-Container .Flipper .Back .Info {
  color: white;
  text-decoration: none;
  background-color: var(--color-flip-card-bar);
}
div#Content .FlipCards .Flip-Container .Flipper .Back .Info:hover {
  background-color: var(--color-flip-card-bar-hover);
}

body.CMS div#Content .FlipCards .Flip-Container {
  perspective: none;
  margin-top: 25px;
  position: relative;
  overflow: unset;
}
body.CMS div#Content .FlipCards .Flip-Container:not(.Hidden) div.Commands a.Show {
  display: none;
}
body.CMS div#Content .FlipCards .Flip-Container.Hidden::before {
  position: absolute;
  content: " ";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}
body.CMS div#Content .FlipCards .Flip-Container.Hidden div.Commands a.Hide {
  display: none;
}
body.CMS div#Content .FlipCards .Flip-Container .Commands {
  position: absolute;
  font-size: 12px;
  bottom: 100%;
  right: 0;
  margin-bottom: 5px;
  color: var(--cms-color-regular);
}
body.CMS div#Content .FlipCards .Flip-Container .Commands a {
  text-align: right;
  color: inherit;
}
body.CMS div#Content .FlipCards .Flip-Container .Commands a:hover {
  color: var(--cms-color-dark);
}
body.CMS div#Content .FlipCards .Flip-Container:hover .Flipper, body.CMS div#Content .FlipCards .Flip-Container.hover .Flipper {
  transform: none;
}
body.CMS div#Content .FlipCards .Flip-Container .Flipper .Front, body.CMS div#Content .FlipCards .Flip-Container .Flipper .Back {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  transform: rotateY(0deg);
  position: static;
  display: block;
  height: auto;
}
body.CMS div#Content .FlipCards .Flip-Container .Flipper .Back:before {
  content: "";
  display: block;
  height: 1px;
  margin: 10px 0;
  background-color: #999;
}
body.CMS div#Content .FlipCards .Flip-Container .Flipper .Back:after {
  content: "";
  display: block;
  height: 1px;
  margin: 10px 0;
  background-color: #999;
}
body.CMS div#Content .FlipCards .Flip-Container .Flipper .Back .Info {
  height: unset;
  display: block;
  padding: 0.5em;
}
body.CMS div#Content .FlipCards .Flip-Container .Flipper .Back .Content {
  height: 199.5px;
}
body.CMS div#Content .FlipCards .Flip-Container .Filter {
  padding: 10px;
  font-size: 14px !important;
  color: white;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  background-color: var(--color-accent);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
body.CMS div#Content .FlipCards .Flip-Container .Filter div.Group::after {
  clear: both;
  content: "";
  display: block;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/FlipCardGallery.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAOA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;AACA;;AAEA;EAVJ;IAWQ;;EAKI;IACI;IACA;;EAMJ;IACI;IACA;AACA;AAAA;AAAA;AAAA;;EASJ;IACI;IACA;AACA;AAAA;AAAA;;AAAA;AAAA;AAAA;;EAYJ;IACI;IACA;AACA;AAAA;AAAA;;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;;EAcR;IACI;;;AAIR;EACI;IACI;;;AAKJ;EACI;;AAEA;EACI;EACA;EACA;;AAGI;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIA;EACI;;AAMR;EACI;;AAKJ;EACI;;AAKJ;EACI;;AAKZ;EACI;EACA;;AAEA;EACI;EACA;;AAIA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIA;EACI;;AAMR;EACI;;AAKJ;EACI;;AAKJ;EACI;;AAOpB;EACI;;AAEA;EACI;EACA;;AAEA;EACI;;AAGJ;EACI;;AAIJ;EACI;;AAEA;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAMR;EACI;;AAKJ;EACI;;AAIR;EACI;;AAII;EACI;;AAIR;EACI;;AAKJ;EADJ;IAEQ;;EAMY;IACI;IACA,kBCzPV;ID0PU;IACA;IACA;IACA;IACA;;EAKZ;IACI;;EAbI;IACI;IACA,kBCzPV;ID0PU;IACA;IACA;IACA;IACA;;EAKZ;IACI;;EAbI;IACI;IACA,kBCzPV;ID0PU;IACA;IACA;IACA;IACA;;EAKZ;IACI;;EAbI;IACI;IACA,kBCzPV;ID0PU;IACA;IACA;IACA;IACA;;EAKZ;IACI;;;AAMhB;EACI;;AAIJ;EACI;;AAEA;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;;AAEA;AAAA;EAEI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAGJ;EACI;;AAGI;EACI;;AAIR;EACI;;AAMZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EATJ;IAUQ;IACA;;;AAGJ;EAdJ;IAeQ;IACA;;;AAGJ;EAnBJ;IAoBQ;IACA;;;AAGJ;EACI;IACI;;;AAIR;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAKZ;EACI;;AAIA;EALJ;IAMQ;;;AAIA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAIR;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;EACA;;AAKZ;EACI;EACA;;AAMA;EACI;EACA;EACA;EACA;;AAEA;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;AAAA;EAEI;;AAGJ;EACI;;AAIR;EACI;;AAGJ;EACI;;AAGA;EACI;EACA;EACA;EACA;;AAEA;EACI;;AAIR;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAXJ;IAYQ;;;AAMR;EASI;EACA;EACA;;AAVA;EACI;EACA;EACA;EACA,OA/jBR;EAgkBQ;;AAQR;EACI;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;;;AAUhB;EACI;EACA;EACA;EACA;;AAIQ;EACI;;AAMR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAEA;EACI;;AAKZ;EACI;;AAIA;EACI;EACA;EACA;EACA;EACA;EACA;;AAIA;EACI;EACA;EACA;EACA;EACA,kBC5pBX;;AD+pBO;EACI;EACA;EACA;EACA;EACA,kBCpqBX;;ADuqBO;EACI;EACA;EACA;;AAGJ;EACI;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBAhsBA;EAisBA;EACA;EACA;;AAEA;EACI;EACA;EACA%22%7D */
/*!
 * Font Awesome Pro 6.5.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2023 Fonticons, Inc.
 */
.fa, .fas {
  font-family: var(--fa-style-family, "FontAwesome");
  font-weight: var(--fa-style, 900);
}

.fa,
.fas,
.fa-classic,
.fa-sharp,
.fa-solid,
.far,
.fa-regular,
.fasr,
.fal,
.fa-light,
.fasl,
.fat,
.fa-thin,
.fast,
.fad,
.fa-duotone,
.fass,
.fa-sharp-solid,
.fab,
.fa-brands {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

.fas,
.fa-classic,
.fa-solid,
.far,
.fa-regular,
.fal,
.fa-light,
.fat,
.fa-thin {
  font-family: "FontAwesome";
}

.fab,
.fa-brands {
  font-family: "Font Awesome 6 Brands";
}

.fad,
.fa-classic.fa-duotone,
.fa-duotone {
  font-family: "Font Awesome 6 Duotone";
}

.fass,
.fasr,
.fasl,
.fast,
.fa-sharp {
  font-family: "Font Awesome 6 Sharp";
}

.fass,
.fa-sharp {
  font-weight: 900;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-2xs {
  font-size: 0.625em;
  line-height: 0.1em;
  vertical-align: 0.225em;
}

.fa-xs {
  font-size: 0.75em;
  line-height: 0.0833333337em;
  vertical-align: 0.125em;
}

.fa-sm {
  font-size: 0.875em;
  line-height: 0.0714285718em;
  vertical-align: 0.0535714295em;
}

.fa-lg {
  font-size: 1.25em;
  line-height: 0.05em;
  vertical-align: -0.075em;
}

.fa-xl {
  font-size: 1.5em;
  line-height: 0.0416666682em;
  vertical-align: -0.125em;
}

.fa-2xl {
  font-size: 2em;
  line-height: 0.03125em;
  vertical-align: -0.1875em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: var(--fa-li-margin, 2.5em);
  padding-left: 0;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  left: calc(var(--fa-li-width, 2em) * -1);
  position: absolute;
  text-align: center;
  width: var(--fa-li-width, 2em);
  line-height: inherit;
}

.fa-border {
  border-color: var(--fa-border-color, #eee);
  border-radius: var(--fa-border-radius, 0.1em);
  border-style: var(--fa-border-style, solid);
  border-width: var(--fa-border-width, 0.08em);
  padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);
}

.fa-pull-left {
  float: left;
  margin-right: var(--fa-pull-margin, 0.3em);
}

.fa-pull-right {
  float: right;
  margin-left: var(--fa-pull-margin, 0.3em);
}

.fa-beat {
  animation-name: fa-beat;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-bounce {
  animation-name: fa-bounce;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
}

.fa-fade {
  animation-name: fa-fade;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}

.fa-beat-fade {
  animation-name: fa-beat-fade;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}

.fa-flip {
  animation-name: fa-flip;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-shake {
  animation-name: fa-shake;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-spin {
  animation-name: fa-spin;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 2s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-spin-reverse {
  --fa-animation-direction: reverse;
}

.fa-pulse,
.fa-spin-pulse {
  animation-name: fa-spin;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, steps(8));
}

@media (prefers-reduced-motion: reduce) {
  .fa-beat,
  .fa-bounce,
  .fa-fade,
  .fa-beat-fade,
  .fa-flip,
  .fa-pulse,
  .fa-shake,
  .fa-spin,
  .fa-spin-pulse {
    animation-delay: -1ms;
    animation-duration: 1ms;
    animation-iteration-count: 1;
    transition-delay: 0s;
    transition-duration: 0s;
  }
}
@keyframes fa-beat {
  0%, 90% {
    transform: scale(1);
  }
  45% {
    transform: scale(var(--fa-beat-scale, 1.25));
  }
}
@keyframes fa-bounce {
  0% {
    transform: scale(1, 1) translateY(0);
  }
  10% {
    transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
  }
  30% {
    transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
  }
  50% {
    transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
  }
  57% {
    transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
@keyframes fa-fade {
  50% {
    opacity: var(--fa-fade-opacity, 0.4);
  }
}
@keyframes fa-beat-fade {
  0%, 100% {
    opacity: var(--fa-beat-fade-opacity, 0.4);
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(var(--fa-beat-fade-scale, 1.125));
  }
}
@keyframes fa-flip {
  50% {
    transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
  }
}
@keyframes fa-shake {
  0% {
    transform: rotate(-15deg);
  }
  4% {
    transform: rotate(15deg);
  }
  8%, 24% {
    transform: rotate(-18deg);
  }
  12%, 28% {
    transform: rotate(18deg);
  }
  16% {
    transform: rotate(-22deg);
  }
  20% {
    transform: rotate(22deg);
  }
  32% {
    transform: rotate(-12deg);
  }
  36% {
    transform: rotate(12deg);
  }
  40%, 100% {
    transform: rotate(0deg);
  }
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  transform: rotate(90deg);
}

.fa-rotate-180 {
  transform: rotate(180deg);
}

.fa-rotate-270 {
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  transform: scale(1, -1);
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  transform: scale(-1, -1);
}

.fa-rotate-by {
  transform: rotate(var(--fa-rotate-angle, none));
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: var(--fa-stack-z-index, auto);
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: var(--fa-inverse, #fff);
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-0::before {
  content: "\30 ";
}

.fa-1::before {
  content: "\31 ";
}

.fa-2::before {
  content: "\32 ";
}

.fa-3::before {
  content: "\33 ";
}

.fa-4::before {
  content: "\34 ";
}

.fa-5::before {
  content: "\35 ";
}

.fa-6::before {
  content: "\36 ";
}

.fa-7::before {
  content: "\37 ";
}

.fa-8::before {
  content: "\38 ";
}

.fa-9::before {
  content: "\39 ";
}

.fa-fill-drip::before {
  content: "\f576";
}

.fa-arrows-to-circle::before {
  content: "\e4bd";
}

.fa-circle-chevron-right::before {
  content: "\f138";
}

.fa-chevron-circle-right::before {
  content: "\f138";
}

.fa-wagon-covered::before {
  content: "\f8ee";
}

.fa-line-height::before {
  content: "\f871";
}

.fa-bagel::before {
  content: "\e3d7";
}

.fa-transporter-7::before {
  content: "\e2a8";
}

.fa-at::before {
  content: "\@";
}

.fa-rectangles-mixed::before {
  content: "\e323";
}

.fa-phone-arrow-up-right::before {
  content: "\e224";
}

.fa-phone-arrow-up::before {
  content: "\e224";
}

.fa-phone-outgoing::before {
  content: "\e224";
}

.fa-trash-can::before {
  content: "\f2ed";
}

.fa-trash-alt::before {
  content: "\f2ed";
}

.fa-circle-l::before {
  content: "\e114";
}

.fa-head-side-goggles::before {
  content: "\f6ea";
}

.fa-head-vr::before {
  content: "\f6ea";
}

.fa-text-height::before {
  content: "\f034";
}

.fa-user-xmark::before {
  content: "\f235";
}

.fa-user-times::before {
  content: "\f235";
}

.fa-face-hand-yawn::before {
  content: "\e379";
}

.fa-gauge-simple-min::before {
  content: "\f62d";
}

.fa-tachometer-slowest::before {
  content: "\f62d";
}

.fa-stethoscope::before {
  content: "\f0f1";
}

.fa-coffin::before {
  content: "\f6c6";
}

.fa-message::before {
  content: "\f27a";
}

.fa-comment-alt::before {
  content: "\f27a";
}

.fa-salad::before {
  content: "\f81e";
}

.fa-bowl-salad::before {
  content: "\f81e";
}

.fa-info::before {
  content: "\f129";
}

.fa-robot-astromech::before {
  content: "\e2d2";
}

.fa-ring-diamond::before {
  content: "\e5ab";
}

.fa-fondue-pot::before {
  content: "\e40d";
}

.fa-theta::before {
  content: "\f69e";
}

.fa-face-hand-peeking::before {
  content: "\e481";
}

.fa-square-user::before {
  content: "\e283";
}

.fa-down-left-and-up-right-to-center::before {
  content: "\f422";
}

.fa-compress-alt::before {
  content: "\f422";
}

.fa-explosion::before {
  content: "\e4e9";
}

.fa-file-lines::before {
  content: "\f15c";
}

.fa-file-alt::before {
  content: "\f15c";
}

.fa-file-text::before {
  content: "\f15c";
}

.fa-wave-square::before {
  content: "\f83e";
}

.fa-ring::before {
  content: "\f70b";
}

.fa-building-un::before {
  content: "\e4d9";
}

.fa-dice-three::before {
  content: "\f527";
}

.fa-tire-pressure-warning::before {
  content: "\f633";
}

.fa-wifi-fair::before {
  content: "\f6ab";
}

.fa-wifi-2::before {
  content: "\f6ab";
}

.fa-calendar-days::before {
  content: "\f073";
}

.fa-calendar-alt::before {
  content: "\f073";
}

.fa-mp3-player::before {
  content: "\f8ce";
}

.fa-anchor-circle-check::before {
  content: "\e4aa";
}

.fa-tally-4::before {
  content: "\e297";
}

.fa-rectangle-history::before {
  content: "\e4a2";
}

.fa-building-circle-arrow-right::before {
  content: "\e4d1";
}

.fa-volleyball::before {
  content: "\f45f";
}

.fa-volleyball-ball::before {
  content: "\f45f";
}

.fa-sun-haze::before {
  content: "\f765";
}

.fa-text-size::before {
  content: "\f894";
}

.fa-ufo::before {
  content: "\e047";
}

.fa-fork::before {
  content: "\f2e3";
}

.fa-utensil-fork::before {
  content: "\f2e3";
}

.fa-arrows-up-to-line::before {
  content: "\e4c2";
}

.fa-mobile-signal::before {
  content: "\e1ef";
}

.fa-barcode-scan::before {
  content: "\f465";
}

.fa-sort-down::before {
  content: "\f0dd";
}

.fa-sort-desc::before {
  content: "\f0dd";
}

.fa-folder-arrow-down::before {
  content: "\e053";
}

.fa-folder-download::before {
  content: "\e053";
}

.fa-circle-minus::before {
  content: "\f056";
}

.fa-minus-circle::before {
  content: "\f056";
}

.fa-face-icicles::before {
  content: "\e37c";
}

.fa-shovel::before {
  content: "\f713";
}

.fa-door-open::before {
  content: "\f52b";
}

.fa-films::before {
  content: "\e17a";
}

.fa-right-from-bracket::before {
  content: "\f2f5";
}

.fa-sign-out-alt::before {
  content: "\f2f5";
}

.fa-face-glasses::before {
  content: "\e377";
}

.fa-nfc::before {
  content: "\e1f7";
}

.fa-atom::before {
  content: "\f5d2";
}

.fa-soap::before {
  content: "\e06e";
}

.fa-icons::before {
  content: "\f86d";
}

.fa-heart-music-camera-bolt::before {
  content: "\f86d";
}

.fa-microphone-lines-slash::before {
  content: "\f539";
}

.fa-microphone-alt-slash::before {
  content: "\f539";
}

.fa-closed-captioning-slash::before {
  content: "\e135";
}

.fa-calculator-simple::before {
  content: "\f64c";
}

.fa-calculator-alt::before {
  content: "\f64c";
}

.fa-bridge-circle-check::before {
  content: "\e4c9";
}

.fa-sliders-up::before {
  content: "\f3f1";
}

.fa-sliders-v::before {
  content: "\f3f1";
}

.fa-location-minus::before {
  content: "\f609";
}

.fa-map-marker-minus::before {
  content: "\f609";
}

.fa-pump-medical::before {
  content: "\e06a";
}

.fa-fingerprint::before {
  content: "\f577";
}

.fa-ski-boot::before {
  content: "\e3cc";
}

.fa-standard-definition::before {
  content: "\e28a";
}

.fa-rectangle-sd::before {
  content: "\e28a";
}

.fa-h1::before {
  content: "\f313";
}

.fa-hand-point-right::before {
  content: "\f0a4";
}

.fa-magnifying-glass-location::before {
  content: "\f689";
}

.fa-search-location::before {
  content: "\f689";
}

.fa-message-bot::before {
  content: "\e3b8";
}

.fa-forward-step::before {
  content: "\f051";
}

.fa-step-forward::before {
  content: "\f051";
}

.fa-face-smile-beam::before {
  content: "\f5b8";
}

.fa-smile-beam::before {
  content: "\f5b8";
}

.fa-light-ceiling::before {
  content: "\e016";
}

.fa-message-exclamation::before {
  content: "\f4a5";
}

.fa-comment-alt-exclamation::before {
  content: "\f4a5";
}

.fa-bowl-scoop::before {
  content: "\e3de";
}

.fa-bowl-shaved-ice::before {
  content: "\e3de";
}

.fa-square-x::before {
  content: "\e286";
}

.fa-building-memo::before {
  content: "\e61e";
}

.fa-utility-pole-double::before {
  content: "\e2c4";
}

.fa-flag-checkered::before {
  content: "\f11e";
}

.fa-chevrons-up::before {
  content: "\f325";
}

.fa-chevron-double-up::before {
  content: "\f325";
}

.fa-football::before {
  content: "\f44e";
}

.fa-football-ball::before {
  content: "\f44e";
}

.fa-user-vneck::before {
  content: "\e461";
}

.fa-school-circle-exclamation::before {
  content: "\e56c";
}

.fa-crop::before {
  content: "\f125";
}

.fa-angles-down::before {
  content: "\f103";
}

.fa-angle-double-down::before {
  content: "\f103";
}

.fa-users-rectangle::before {
  content: "\e594";
}

.fa-people-roof::before {
  content: "\e537";
}

.fa-square-arrow-right::before {
  content: "\f33b";
}

.fa-arrow-square-right::before {
  content: "\f33b";
}

.fa-location-plus::before {
  content: "\f60a";
}

.fa-map-marker-plus::before {
  content: "\f60a";
}

.fa-lightbulb-exclamation-on::before {
  content: "\e1ca";
}

.fa-people-line::before {
  content: "\e534";
}

.fa-beer-mug-empty::before {
  content: "\f0fc";
}

.fa-beer::before {
  content: "\f0fc";
}

.fa-crate-empty::before {
  content: "\e151";
}

.fa-diagram-predecessor::before {
  content: "\e477";
}

.fa-transporter::before {
  content: "\e042";
}

.fa-calendar-circle-user::before {
  content: "\e471";
}

.fa-arrow-up-long::before {
  content: "\f176";
}

.fa-long-arrow-up::before {
  content: "\f176";
}

.fa-person-carry-box::before {
  content: "\f4cf";
}

.fa-person-carry::before {
  content: "\f4cf";
}

.fa-fire-flame-simple::before {
  content: "\f46a";
}

.fa-burn::before {
  content: "\f46a";
}

.fa-person::before {
  content: "\f183";
}

.fa-male::before {
  content: "\f183";
}

.fa-laptop::before {
  content: "\f109";
}

.fa-file-csv::before {
  content: "\f6dd";
}

.fa-menorah::before {
  content: "\f676";
}

.fa-union::before {
  content: "\f6a2";
}

.fa-chevrons-left::before {
  content: "\f323";
}

.fa-chevron-double-left::before {
  content: "\f323";
}

.fa-circle-heart::before {
  content: "\f4c7";
}

.fa-heart-circle::before {
  content: "\f4c7";
}

.fa-truck-plane::before {
  content: "\e58f";
}

.fa-record-vinyl::before {
  content: "\f8d9";
}

.fa-bring-forward::before {
  content: "\f856";
}

.fa-square-p::before {
  content: "\e279";
}

.fa-face-grin-stars::before {
  content: "\f587";
}

.fa-grin-stars::before {
  content: "\f587";
}

.fa-sigma::before {
  content: "\f68b";
}

.fa-camera-movie::before {
  content: "\f8a9";
}

.fa-bong::before {
  content: "\f55c";
}

.fa-clarinet::before {
  content: "\f8ad";
}

.fa-truck-flatbed::before {
  content: "\e2b6";
}

.fa-spaghetti-monster-flying::before {
  content: "\f67b";
}

.fa-pastafarianism::before {
  content: "\f67b";
}

.fa-arrow-down-up-across-line::before {
  content: "\e4af";
}

.fa-arrows-rotate-reverse::before {
  content: "\e630";
}

.fa-leaf-heart::before {
  content: "\f4cb";
}

.fa-house-building::before {
  content: "\e1b1";
}

.fa-cheese-swiss::before {
  content: "\f7f0";
}

.fa-spoon::before {
  content: "\f2e5";
}

.fa-utensil-spoon::before {
  content: "\f2e5";
}

.fa-jar-wheat::before {
  content: "\e517";
}

.fa-envelopes-bulk::before {
  content: "\f674";
}

.fa-mail-bulk::before {
  content: "\f674";
}

.fa-file-circle-exclamation::before {
  content: "\e4eb";
}

.fa-bow-arrow::before {
  content: "\f6b9";
}

.fa-cart-xmark::before {
  content: "\e0dd";
}

.fa-hexagon-xmark::before {
  content: "\f2ee";
}

.fa-times-hexagon::before {
  content: "\f2ee";
}

.fa-xmark-hexagon::before {
  content: "\f2ee";
}

.fa-circle-h::before {
  content: "\f47e";
}

.fa-hospital-symbol::before {
  content: "\f47e";
}

.fa-merge::before {
  content: "\e526";
}

.fa-pager::before {
  content: "\f815";
}

.fa-cart-minus::before {
  content: "\e0db";
}

.fa-address-book::before {
  content: "\f2b9";
}

.fa-contact-book::before {
  content: "\f2b9";
}

.fa-pan-frying::before {
  content: "\e42c";
}

.fa-grid::before {
  content: "\e195";
}

.fa-grid-3::before {
  content: "\e195";
}

.fa-football-helmet::before {
  content: "\f44f";
}

.fa-hand-love::before {
  content: "\e1a5";
}

.fa-trees::before {
  content: "\f724";
}

.fa-strikethrough::before {
  content: "\f0cc";
}

.fa-page::before {
  content: "\e428";
}

.fa-k::before {
  content: "K";
}

.fa-diagram-previous::before {
  content: "\e478";
}

.fa-gauge-min::before {
  content: "\f628";
}

.fa-tachometer-alt-slowest::before {
  content: "\f628";
}

.fa-folder-grid::before {
  content: "\e188";
}

.fa-eggplant::before {
  content: "\e16c";
}

.fa-excavator::before {
  content: "\e656";
}

.fa-ram::before {
  content: "\f70a";
}

.fa-landmark-flag::before {
  content: "\e51c";
}

.fa-lips::before {
  content: "\f600";
}

.fa-pencil::before {
  content: "\f303";
}

.fa-pencil-alt::before {
  content: "\f303";
}

.fa-backward::before {
  content: "\f04a";
}

.fa-caret-right::before {
  content: "\f0da";
}

.fa-comments::before {
  content: "\f086";
}

.fa-paste::before {
  content: "\f0ea";
}

.fa-file-clipboard::before {
  content: "\f0ea";
}

.fa-desktop-arrow-down::before {
  content: "\e155";
}

.fa-code-pull-request::before {
  content: "\e13c";
}

.fa-pumpkin::before {
  content: "\f707";
}

.fa-clipboard-list::before {
  content: "\f46d";
}

.fa-pen-field::before {
  content: "\e211";
}

.fa-blueberries::before {
  content: "\e2e8";
}

.fa-truck-ramp-box::before {
  content: "\f4de";
}

.fa-truck-loading::before {
  content: "\f4de";
}

.fa-note::before {
  content: "\e1ff";
}

.fa-arrow-down-to-square::before {
  content: "\e096";
}

.fa-user-check::before {
  content: "\f4fc";
}

.fa-cloud-xmark::before {
  content: "\e35f";
}

.fa-vial-virus::before {
  content: "\e597";
}

.fa-book-blank::before {
  content: "\f5d9";
}

.fa-book-alt::before {
  content: "\f5d9";
}

.fa-golf-flag-hole::before {
  content: "\e3ac";
}

.fa-message-arrow-down::before {
  content: "\e1db";
}

.fa-comment-alt-arrow-down::before {
  content: "\e1db";
}

.fa-face-unamused::before {
  content: "\e39f";
}

.fa-sheet-plastic::before {
  content: "\e571";
}

.fa-circle-9::before {
  content: "\e0f6";
}

.fa-blog::before {
  content: "\f781";
}

.fa-user-ninja::before {
  content: "\f504";
}

.fa-pencil-slash::before {
  content: "\e215";
}

.fa-bowling-pins::before {
  content: "\f437";
}

.fa-person-arrow-up-from-line::before {
  content: "\e539";
}

.fa-down-right::before {
  content: "\e16b";
}

.fa-scroll-torah::before {
  content: "\f6a0";
}

.fa-torah::before {
  content: "\f6a0";
}

.fa-webhook::before {
  content: "\e5d5";
}

.fa-blinds-open::before {
  content: "\f8fc";
}

.fa-fence::before {
  content: "\e303";
}

.fa-up::before {
  content: "\f357";
}

.fa-arrow-alt-up::before {
  content: "\f357";
}

.fa-broom-ball::before {
  content: "\f458";
}

.fa-quidditch::before {
  content: "\f458";
}

.fa-quidditch-broom-ball::before {
  content: "\f458";
}

.fa-drumstick::before {
  content: "\f6d6";
}

.fa-square-v::before {
  content: "\e284";
}

.fa-face-awesome::before {
  content: "\e409";
}

.fa-gave-dandy::before {
  content: "\e409";
}

.fa-dial-off::before {
  content: "\e162";
}

.fa-toggle-off::before {
  content: "\f204";
}

.fa-face-smile-horns::before {
  content: "\e391";
}

.fa-box-archive::before {
  content: "\f187";
}

.fa-archive::before {
  content: "\f187";
}

.fa-grapes::before {
  content: "\e306";
}

.fa-person-drowning::before {
  content: "\e545";
}

.fa-dial-max::before {
  content: "\e15e";
}

.fa-circle-m::before {
  content: "\e115";
}

.fa-calendar-image::before {
  content: "\e0d4";
}

.fa-circle-caret-down::before {
  content: "\f32d";
}

.fa-caret-circle-down::before {
  content: "\f32d";
}

.fa-arrow-down-9-1::before {
  content: "\f886";
}

.fa-sort-numeric-desc::before {
  content: "\f886";
}

.fa-sort-numeric-down-alt::before {
  content: "\f886";
}

.fa-face-grin-tongue-squint::before {
  content: "\f58a";
}

.fa-grin-tongue-squint::before {
  content: "\f58a";
}

.fa-shish-kebab::before {
  content: "\f821";
}

.fa-spray-can::before {
  content: "\f5bd";
}

.fa-alarm-snooze::before {
  content: "\f845";
}

.fa-scarecrow::before {
  content: "\f70d";
}

.fa-truck-monster::before {
  content: "\f63b";
}

.fa-gift-card::before {
  content: "\f663";
}

.fa-w::before {
  content: "W";
}

.fa-code-pull-request-draft::before {
  content: "\e3fa";
}

.fa-square-b::before {
  content: "\e264";
}

.fa-elephant::before {
  content: "\f6da";
}

.fa-earth-africa::before {
  content: "\f57c";
}

.fa-globe-africa::before {
  content: "\f57c";
}

.fa-rainbow::before {
  content: "\f75b";
}

.fa-circle-notch::before {
  content: "\f1ce";
}

.fa-tablet-screen-button::before {
  content: "\f3fa";
}

.fa-tablet-alt::before {
  content: "\f3fa";
}

.fa-paw::before {
  content: "\f1b0";
}

.fa-message-question::before {
  content: "\e1e3";
}

.fa-cloud::before {
  content: "\f0c2";
}

.fa-trowel-bricks::before {
  content: "\e58a";
}

.fa-square-3::before {
  content: "\e258";
}

.fa-face-flushed::before {
  content: "\f579";
}

.fa-flushed::before {
  content: "\f579";
}

.fa-hospital-user::before {
  content: "\f80d";
}

.fa-microwave::before {
  content: "\e01b";
}

.fa-chf-sign::before {
  content: "\e602";
}

.fa-tent-arrow-left-right::before {
  content: "\e57f";
}

.fa-cart-circle-arrow-up::before {
  content: "\e3f0";
}

.fa-trash-clock::before {
  content: "\e2b0";
}

.fa-gavel::before {
  content: "\f0e3";
}

.fa-legal::before {
  content: "\f0e3";
}

.fa-sprinkler-ceiling::before {
  content: "\e44c";
}

.fa-browsers::before {
  content: "\e0cb";
}

.fa-trillium::before {
  content: "\e588";
}

.fa-music-slash::before {
  content: "\f8d1";
}

.fa-truck-ramp::before {
  content: "\f4e0";
}

.fa-binoculars::before {
  content: "\f1e5";
}

.fa-microphone-slash::before {
  content: "\f131";
}

.fa-box-tissue::before {
  content: "\e05b";
}

.fa-circle-c::before {
  content: "\e101";
}

.fa-star-christmas::before {
  content: "\f7d4";
}

.fa-chart-bullet::before {
  content: "\e0e1";
}

.fa-motorcycle::before {
  content: "\f21c";
}

.fa-tree-christmas::before {
  content: "\f7db";
}

.fa-tire-flat::before {
  content: "\f632";
}

.fa-sunglasses::before {
  content: "\f892";
}

.fa-badge::before {
  content: "\f335";
}

.fa-message-pen::before {
  content: "\f4a4";
}

.fa-comment-alt-edit::before {
  content: "\f4a4";
}

.fa-message-edit::before {
  content: "\f4a4";
}

.fa-bell-concierge::before {
  content: "\f562";
}

.fa-concierge-bell::before {
  content: "\f562";
}

.fa-pen-ruler::before {
  content: "\f5ae";
}

.fa-pencil-ruler::before {
  content: "\f5ae";
}

.fa-file-mp3::before {
  content: "\e648";
}

.fa-arrow-progress::before {
  content: "\e5df";
}

.fa-chess-rook-piece::before {
  content: "\f448";
}

.fa-chess-rook-alt::before {
  content: "\f448";
}

.fa-square-root::before {
  content: "\f697";
}

.fa-album-collection-circle-plus::before {
  content: "\e48e";
}

.fa-people-arrows::before {
  content: "\e068";
}

.fa-people-arrows-left-right::before {
  content: "\e068";
}

.fa-sign-post::before {
  content: "\e624";
}

.fa-face-angry-horns::before {
  content: "\e368";
}

.fa-mars-and-venus-burst::before {
  content: "\e523";
}

.fa-tombstone::before {
  content: "\f720";
}

.fa-square-caret-right::before {
  content: "\f152";
}

.fa-caret-square-right::before {
  content: "\f152";
}

.fa-scissors::before {
  content: "\f0c4";
}

.fa-cut::before {
  content: "\f0c4";
}

.fa-list-music::before {
  content: "\f8c9";
}

.fa-sun-plant-wilt::before {
  content: "\e57a";
}

.fa-toilets-portable::before {
  content: "\e584";
}

.fa-hockey-puck::before {
  content: "\f453";
}

.fa-mustache::before {
  content: "\e5bc";
}

.fa-hyphen::before {
  content: "\-";
}

.fa-table::before {
  content: "\f0ce";
}

.fa-user-chef::before {
  content: "\e3d2";
}

.fa-message-image::before {
  content: "\e1e0";
}

.fa-comment-alt-image::before {
  content: "\e1e0";
}

.fa-users-medical::before {
  content: "\f830";
}

.fa-sensor-triangle-exclamation::before {
  content: "\e029";
}

.fa-sensor-alert::before {
  content: "\e029";
}

.fa-magnifying-glass-arrow-right::before {
  content: "\e521";
}

.fa-tachograph-digital::before {
  content: "\f566";
}

.fa-digital-tachograph::before {
  content: "\f566";
}

.fa-face-mask::before {
  content: "\e37f";
}

.fa-pickleball::before {
  content: "\e435";
}

.fa-star-sharp-half::before {
  content: "\e28c";
}

.fa-users-slash::before {
  content: "\e073";
}

.fa-clover::before {
  content: "\e139";
}

.fa-meat::before {
  content: "\f814";
}

.fa-reply::before {
  content: "\f3e5";
}

.fa-mail-reply::before {
  content: "\f3e5";
}

.fa-star-and-crescent::before {
  content: "\f699";
}

.fa-empty-set::before {
  content: "\f656";
}

.fa-house-fire::before {
  content: "\e50c";
}

.fa-square-minus::before {
  content: "\f146";
}

.fa-minus-square::before {
  content: "\f146";
}

.fa-helicopter::before {
  content: "\f533";
}

.fa-bird::before {
  content: "\e469";
}

.fa-compass::before {
  content: "\f14e";
}

.fa-square-caret-down::before {
  content: "\f150";
}

.fa-caret-square-down::before {
  content: "\f150";
}

.fa-heart-half-stroke::before {
  content: "\e1ac";
}

.fa-heart-half-alt::before {
  content: "\e1ac";
}

.fa-file-circle-question::before {
  content: "\e4ef";
}

.fa-truck-utensils::before {
  content: "\e628";
}

.fa-laptop-code::before {
  content: "\f5fc";
}

.fa-joystick::before {
  content: "\f8c5";
}

.fa-grill-fire::before {
  content: "\e5a4";
}

.fa-rectangle-vertical-history::before {
  content: "\e237";
}

.fa-swatchbook::before {
  content: "\f5c3";
}

.fa-prescription-bottle::before {
  content: "\f485";
}

.fa-bars::before {
  content: "\f0c9";
}

.fa-navicon::before {
  content: "\f0c9";
}

.fa-keyboard-left::before {
  content: "\e1c3";
}

.fa-people-group::before {
  content: "\e533";
}

.fa-hourglass-end::before {
  content: "\f253";
}

.fa-hourglass-3::before {
  content: "\f253";
}

.fa-heart-crack::before {
  content: "\f7a9";
}

.fa-heart-broken::before {
  content: "\f7a9";
}

.fa-face-beam-hand-over-mouth::before {
  content: "\e47c";
}

.fa-droplet-percent::before {
  content: "\f750";
}

.fa-humidity::before {
  content: "\f750";
}

.fa-square-up-right::before {
  content: "\f360";
}

.fa-external-link-square-alt::before {
  content: "\f360";
}

.fa-face-kiss-beam::before {
  content: "\f597";
}

.fa-kiss-beam::before {
  content: "\f597";
}

.fa-corn::before {
  content: "\f6c7";
}

.fa-roller-coaster::before {
  content: "\e324";
}

.fa-photo-film-music::before {
  content: "\e228";
}

.fa-radar::before {
  content: "\e024";
}

.fa-sickle::before {
  content: "\f822";
}

.fa-film::before {
  content: "\f008";
}

.fa-coconut::before {
  content: "\e2f6";
}

.fa-ruler-horizontal::before {
  content: "\f547";
}

.fa-shield-cross::before {
  content: "\f712";
}

.fa-cassette-tape::before {
  content: "\f8ab";
}

.fa-square-terminal::before {
  content: "\e32a";
}

.fa-people-robbery::before {
  content: "\e536";
}

.fa-lightbulb::before {
  content: "\f0eb";
}

.fa-caret-left::before {
  content: "\f0d9";
}

.fa-comment-middle::before {
  content: "\e149";
}

.fa-trash-can-list::before {
  content: "\e2ab";
}

.fa-block::before {
  content: "\e46a";
}

.fa-circle-exclamation::before {
  content: "\f06a";
}

.fa-exclamation-circle::before {
  content: "\f06a";
}

.fa-school-circle-xmark::before {
  content: "\e56d";
}

.fa-arrow-right-from-bracket::before {
  content: "\f08b";
}

.fa-sign-out::before {
  content: "\f08b";
}

.fa-face-frown-slight::before {
  content: "\e376";
}

.fa-circle-chevron-down::before {
  content: "\f13a";
}

.fa-chevron-circle-down::before {
  content: "\f13a";
}

.fa-sidebar-flip::before {
  content: "\e24f";
}

.fa-unlock-keyhole::before {
  content: "\f13e";
}

.fa-unlock-alt::before {
  content: "\f13e";
}

.fa-temperature-list::before {
  content: "\e299";
}

.fa-cloud-showers-heavy::before {
  content: "\f740";
}

.fa-headphones-simple::before {
  content: "\f58f";
}

.fa-headphones-alt::before {
  content: "\f58f";
}

.fa-sitemap::before {
  content: "\f0e8";
}

.fa-pipe-section::before {
  content: "\e438";
}

.fa-space-station-moon-construction::before {
  content: "\e034";
}

.fa-space-station-moon-alt::before {
  content: "\e034";
}

.fa-circle-dollar-to-slot::before {
  content: "\f4b9";
}

.fa-donate::before {
  content: "\f4b9";
}

.fa-memory::before {
  content: "\f538";
}

.fa-face-sleeping::before {
  content: "\e38d";
}

.fa-road-spikes::before {
  content: "\e568";
}

.fa-fire-burner::before {
  content: "\e4f1";
}

.fa-squirrel::before {
  content: "\f71a";
}

.fa-arrow-up-to-line::before {
  content: "\f341";
}

.fa-arrow-to-top::before {
  content: "\f341";
}

.fa-flag::before {
  content: "\f024";
}

.fa-face-cowboy-hat::before {
  content: "\e36e";
}

.fa-hanukiah::before {
  content: "\f6e6";
}

.fa-chart-scatter-3d::before {
  content: "\e0e8";
}

.fa-display-chart-up::before {
  content: "\e5e3";
}

.fa-square-code::before {
  content: "\e267";
}

.fa-feather::before {
  content: "\f52d";
}

.fa-volume-low::before {
  content: "\f027";
}

.fa-volume-down::before {
  content: "\f027";
}

.fa-xmark-to-slot::before {
  content: "\f771";
}

.fa-times-to-slot::before {
  content: "\f771";
}

.fa-vote-nay::before {
  content: "\f771";
}

.fa-box-taped::before {
  content: "\f49a";
}

.fa-box-alt::before {
  content: "\f49a";
}

.fa-comment-slash::before {
  content: "\f4b3";
}

.fa-swords::before {
  content: "\f71d";
}

.fa-cloud-sun-rain::before {
  content: "\f743";
}

.fa-album::before {
  content: "\f89f";
}

.fa-circle-n::before {
  content: "\e118";
}

.fa-compress::before {
  content: "\f066";
}

.fa-wheat-awn::before {
  content: "\e2cd";
}

.fa-wheat-alt::before {
  content: "\e2cd";
}

.fa-ankh::before {
  content: "\f644";
}

.fa-hands-holding-child::before {
  content: "\e4fa";
}

.fa-asterisk::before {
  content: "\*";
}

.fa-key-skeleton-left-right::before {
  content: "\e3b4";
}

.fa-comment-lines::before {
  content: "\f4b0";
}

.fa-luchador-mask::before {
  content: "\f455";
}

.fa-luchador::before {
  content: "\f455";
}

.fa-mask-luchador::before {
  content: "\f455";
}

.fa-square-check::before {
  content: "\f14a";
}

.fa-check-square::before {
  content: "\f14a";
}

.fa-shredder::before {
  content: "\f68a";
}

.fa-book-open-cover::before {
  content: "\e0c0";
}

.fa-book-open-alt::before {
  content: "\e0c0";
}

.fa-sandwich::before {
  content: "\f81f";
}

.fa-peseta-sign::before {
  content: "\e221";
}

.fa-square-parking-slash::before {
  content: "\f617";
}

.fa-parking-slash::before {
  content: "\f617";
}

.fa-train-tunnel::before {
  content: "\e454";
}

.fa-heading::before {
  content: "\f1dc";
}

.fa-header::before {
  content: "\f1dc";
}

.fa-ghost::before {
  content: "\f6e2";
}

.fa-face-anguished::before {
  content: "\e369";
}

.fa-hockey-sticks::before {
  content: "\f454";
}

.fa-abacus::before {
  content: "\f640";
}

.fa-film-simple::before {
  content: "\f3a0";
}

.fa-film-alt::before {
  content: "\f3a0";
}

.fa-list::before {
  content: "\f03a";
}

.fa-list-squares::before {
  content: "\f03a";
}

.fa-tree-palm::before {
  content: "\f82b";
}

.fa-square-phone-flip::before {
  content: "\f87b";
}

.fa-phone-square-alt::before {
  content: "\f87b";
}

.fa-cart-plus::before {
  content: "\f217";
}

.fa-gamepad::before {
  content: "\f11b";
}

.fa-border-center-v::before {
  content: "\f89d";
}

.fa-circle-dot::before {
  content: "\f192";
}

.fa-dot-circle::before {
  content: "\f192";
}

.fa-clipboard-medical::before {
  content: "\e133";
}

.fa-face-dizzy::before {
  content: "\f567";
}

.fa-dizzy::before {
  content: "\f567";
}

.fa-egg::before {
  content: "\f7fb";
}

.fa-up-to-line::before {
  content: "\f34d";
}

.fa-arrow-alt-to-top::before {
  content: "\f34d";
}

.fa-house-medical-circle-xmark::before {
  content: "\e513";
}

.fa-watch-fitness::before {
  content: "\f63e";
}

.fa-clock-nine-thirty::before {
  content: "\e34d";
}

.fa-campground::before {
  content: "\f6bb";
}

.fa-folder-plus::before {
  content: "\f65e";
}

.fa-jug::before {
  content: "\f8c6";
}

.fa-futbol::before {
  content: "\f1e3";
}

.fa-futbol-ball::before {
  content: "\f1e3";
}

.fa-soccer-ball::before {
  content: "\f1e3";
}

.fa-snow-blowing::before {
  content: "\f761";
}

.fa-paintbrush::before {
  content: "\f1fc";
}

.fa-paint-brush::before {
  content: "\f1fc";
}

.fa-lock::before {
  content: "\f023";
}

.fa-arrow-down-from-line::before {
  content: "\f345";
}

.fa-arrow-from-top::before {
  content: "\f345";
}

.fa-gas-pump::before {
  content: "\f52f";
}

.fa-signal-bars-slash::before {
  content: "\f694";
}

.fa-signal-alt-slash::before {
  content: "\f694";
}

.fa-monkey::before {
  content: "\f6fb";
}

.fa-rectangle-pro::before {
  content: "\e235";
}

.fa-pro::before {
  content: "\e235";
}

.fa-house-night::before {
  content: "\e010";
}

.fa-hot-tub-person::before {
  content: "\f593";
}

.fa-hot-tub::before {
  content: "\f593";
}

.fa-globe-pointer::before {
  content: "\e60e";
}

.fa-blanket::before {
  content: "\f498";
}

.fa-map-location::before {
  content: "\f59f";
}

.fa-map-marked::before {
  content: "\f59f";
}

.fa-house-flood-water::before {
  content: "\e50e";
}

.fa-comments-question-check::before {
  content: "\e14f";
}

.fa-tree::before {
  content: "\f1bb";
}

.fa-arrows-cross::before {
  content: "\e0a2";
}

.fa-backpack::before {
  content: "\f5d4";
}

.fa-square-small::before {
  content: "\e27e";
}

.fa-folder-arrow-up::before {
  content: "\e054";
}

.fa-folder-upload::before {
  content: "\e054";
}

.fa-bridge-lock::before {
  content: "\e4cc";
}

.fa-crosshairs-simple::before {
  content: "\e59f";
}

.fa-sack-dollar::before {
  content: "\f81d";
}

.fa-pen-to-square::before {
  content: "\f044";
}

.fa-edit::before {
  content: "\f044";
}

.fa-square-sliders::before {
  content: "\f3f0";
}

.fa-sliders-h-square::before {
  content: "\f3f0";
}

.fa-car-side::before {
  content: "\f5e4";
}

.fa-message-middle-top::before {
  content: "\e1e2";
}

.fa-comment-middle-top-alt::before {
  content: "\e1e2";
}

.fa-lightbulb-on::before {
  content: "\f672";
}

.fa-knife::before {
  content: "\f2e4";
}

.fa-utensil-knife::before {
  content: "\f2e4";
}

.fa-share-nodes::before {
  content: "\f1e0";
}

.fa-share-alt::before {
  content: "\f1e0";
}

.fa-display-chart-up-circle-dollar::before {
  content: "\e5e6";
}

.fa-wave-sine::before {
  content: "\f899";
}

.fa-heart-circle-minus::before {
  content: "\e4ff";
}

.fa-circle-w::before {
  content: "\e12c";
}

.fa-circle-calendar::before {
  content: "\e102";
}

.fa-calendar-circle::before {
  content: "\e102";
}

.fa-hourglass-half::before {
  content: "\f252";
}

.fa-hourglass-2::before {
  content: "\f252";
}

.fa-microscope::before {
  content: "\f610";
}

.fa-sunset::before {
  content: "\f767";
}

.fa-sink::before {
  content: "\e06d";
}

.fa-calendar-exclamation::before {
  content: "\f334";
}

.fa-truck-container-empty::before {
  content: "\e2b5";
}

.fa-hand-heart::before {
  content: "\f4bc";
}

.fa-bag-shopping::before {
  content: "\f290";
}

.fa-shopping-bag::before {
  content: "\f290";
}

.fa-arrow-down-z-a::before {
  content: "\f881";
}

.fa-sort-alpha-desc::before {
  content: "\f881";
}

.fa-sort-alpha-down-alt::before {
  content: "\f881";
}

.fa-mitten::before {
  content: "\f7b5";
}

.fa-reply-clock::before {
  content: "\e239";
}

.fa-reply-time::before {
  content: "\e239";
}

.fa-person-rays::before {
  content: "\e54d";
}

.fa-right::before {
  content: "\f356";
}

.fa-arrow-alt-right::before {
  content: "\f356";
}

.fa-circle-f::before {
  content: "\e10e";
}

.fa-users::before {
  content: "\f0c0";
}

.fa-face-pleading::before {
  content: "\e386";
}

.fa-eye-slash::before {
  content: "\f070";
}

.fa-flask-vial::before {
  content: "\e4f3";
}

.fa-police-box::before {
  content: "\e021";
}

.fa-cucumber::before {
  content: "\e401";
}

.fa-head-side-brain::before {
  content: "\f808";
}

.fa-hand::before {
  content: "\f256";
}

.fa-hand-paper::before {
  content: "\f256";
}

.fa-person-biking-mountain::before {
  content: "\f84b";
}

.fa-biking-mountain::before {
  content: "\f84b";
}

.fa-utensils-slash::before {
  content: "\e464";
}

.fa-print-magnifying-glass::before {
  content: "\f81a";
}

.fa-print-search::before {
  content: "\f81a";
}

.fa-turn-right::before {
  content: "\e639";
}

.fa-folder-bookmark::before {
  content: "\e186";
}

.fa-arrow-turn-left-down::before {
  content: "\e633";
}

.fa-om::before {
  content: "\f679";
}

.fa-pi::before {
  content: "\f67e";
}

.fa-flask-round-potion::before {
  content: "\f6e1";
}

.fa-flask-potion::before {
  content: "\f6e1";
}

.fa-face-shush::before {
  content: "\e38c";
}

.fa-worm::before {
  content: "\e599";
}

.fa-house-circle-xmark::before {
  content: "\e50b";
}

.fa-plug::before {
  content: "\f1e6";
}

.fa-calendar-circle-exclamation::before {
  content: "\e46e";
}

.fa-square-i::before {
  content: "\e272";
}

.fa-chevron-up::before {
  content: "\f077";
}

.fa-face-saluting::before {
  content: "\e484";
}

.fa-gauge-simple-low::before {
  content: "\f62c";
}

.fa-tachometer-slow::before {
  content: "\f62c";
}

.fa-face-persevering::before {
  content: "\e385";
}

.fa-circle-camera::before {
  content: "\e103";
}

.fa-camera-circle::before {
  content: "\e103";
}

.fa-hand-spock::before {
  content: "\f259";
}

.fa-spider-web::before {
  content: "\f719";
}

.fa-circle-microphone::before {
  content: "\e116";
}

.fa-microphone-circle::before {
  content: "\e116";
}

.fa-book-arrow-up::before {
  content: "\e0ba";
}

.fa-popsicle::before {
  content: "\e43e";
}

.fa-command::before {
  content: "\e142";
}

.fa-blinds::before {
  content: "\f8fb";
}

.fa-stopwatch::before {
  content: "\f2f2";
}

.fa-saxophone::before {
  content: "\f8dc";
}

.fa-square-2::before {
  content: "\e257";
}

.fa-field-hockey-stick-ball::before {
  content: "\f44c";
}

.fa-field-hockey::before {
  content: "\f44c";
}

.fa-arrow-up-square-triangle::before {
  content: "\f88b";
}

.fa-sort-shapes-up-alt::before {
  content: "\f88b";
}

.fa-face-scream::before {
  content: "\e38b";
}

.fa-square-m::before {
  content: "\e276";
}

.fa-camera-web::before {
  content: "\f832";
}

.fa-webcam::before {
  content: "\f832";
}

.fa-comment-arrow-down::before {
  content: "\e143";
}

.fa-lightbulb-cfl::before {
  content: "\e5a6";
}

.fa-window-frame-open::before {
  content: "\e050";
}

.fa-face-kiss::before {
  content: "\f596";
}

.fa-kiss::before {
  content: "\f596";
}

.fa-bridge-circle-xmark::before {
  content: "\e4cb";
}

.fa-period::before {
  content: "\.";
}

.fa-face-grin-tongue::before {
  content: "\f589";
}

.fa-grin-tongue::before {
  content: "\f589";
}

.fa-up-to-dotted-line::before {
  content: "\e457";
}

.fa-thought-bubble::before {
  content: "\e32e";
}

.fa-skeleton-ribs::before {
  content: "\e5cb";
}

.fa-raygun::before {
  content: "\e025";
}

.fa-flute::before {
  content: "\f8b9";
}

.fa-acorn::before {
  content: "\f6ae";
}

.fa-video-arrow-up-right::before {
  content: "\e2c9";
}

.fa-grate-droplet::before {
  content: "\e194";
}

.fa-seal-exclamation::before {
  content: "\e242";
}

.fa-chess-bishop::before {
  content: "\f43a";
}

.fa-message-sms::before {
  content: "\e1e5";
}

.fa-coffee-beans::before {
  content: "\e13f";
}

.fa-hat-witch::before {
  content: "\f6e7";
}

.fa-face-grin-wink::before {
  content: "\f58c";
}

.fa-grin-wink::before {
  content: "\f58c";
}

.fa-clock-three-thirty::before {
  content: "\e357";
}

.fa-ear-deaf::before {
  content: "\f2a4";
}

.fa-deaf::before {
  content: "\f2a4";
}

.fa-deafness::before {
  content: "\f2a4";
}

.fa-hard-of-hearing::before {
  content: "\f2a4";
}

.fa-alarm-clock::before {
  content: "\f34e";
}

.fa-eclipse::before {
  content: "\f749";
}

.fa-face-relieved::before {
  content: "\e389";
}

.fa-road-circle-check::before {
  content: "\e564";
}

.fa-dice-five::before {
  content: "\f523";
}

.fa-octagon-minus::before {
  content: "\f308";
}

.fa-minus-octagon::before {
  content: "\f308";
}

.fa-square-rss::before {
  content: "\f143";
}

.fa-rss-square::before {
  content: "\f143";
}

.fa-face-zany::before {
  content: "\e3a4";
}

.fa-tricycle::before {
  content: "\e5c3";
}

.fa-land-mine-on::before {
  content: "\e51b";
}

.fa-square-arrow-up-left::before {
  content: "\e263";
}

.fa-i-cursor::before {
  content: "\f246";
}

.fa-chart-mixed-up-circle-dollar::before {
  content: "\e5d9";
}

.fa-salt-shaker::before {
  content: "\e446";
}

.fa-stamp::before {
  content: "\f5bf";
}

.fa-file-plus::before {
  content: "\f319";
}

.fa-draw-square::before {
  content: "\f5ef";
}

.fa-toilet-paper-under-slash::before {
  content: "\e2a1";
}

.fa-toilet-paper-reverse-slash::before {
  content: "\e2a1";
}

.fa-stairs::before {
  content: "\e289";
}

.fa-drone-front::before {
  content: "\f860";
}

.fa-drone-alt::before {
  content: "\f860";
}

.fa-glass-empty::before {
  content: "\e191";
}

.fa-dial-high::before {
  content: "\e15c";
}

.fa-user-helmet-safety::before {
  content: "\f82c";
}

.fa-user-construction::before {
  content: "\f82c";
}

.fa-user-hard-hat::before {
  content: "\f82c";
}

.fa-i::before {
  content: "I";
}

.fa-hryvnia-sign::before {
  content: "\f6f2";
}

.fa-hryvnia::before {
  content: "\f6f2";
}

.fa-arrow-down-left-and-arrow-up-right-to-center::before {
  content: "\e092";
}

.fa-pills::before {
  content: "\f484";
}

.fa-face-grin-wide::before {
  content: "\f581";
}

.fa-grin-alt::before {
  content: "\f581";
}

.fa-tooth::before {
  content: "\f5c9";
}

.fa-basketball-hoop::before {
  content: "\f435";
}

.fa-objects-align-bottom::before {
  content: "\e3bb";
}

.fa-v::before {
  content: "V";
}

.fa-sparkles::before {
  content: "\f890";
}

.fa-squid::before {
  content: "\e450";
}

.fa-leafy-green::before {
  content: "\e41d";
}

.fa-circle-arrow-up-right::before {
  content: "\e0fc";
}

.fa-calendars::before {
  content: "\e0d7";
}

.fa-bangladeshi-taka-sign::before {
  content: "\e2e6";
}

.fa-bicycle::before {
  content: "\f206";
}

.fa-hammer-war::before {
  content: "\f6e4";
}

.fa-circle-d::before {
  content: "\e104";
}

.fa-spider-black-widow::before {
  content: "\f718";
}

.fa-staff-snake::before {
  content: "\e579";
}

.fa-rod-asclepius::before {
  content: "\e579";
}

.fa-rod-snake::before {
  content: "\e579";
}

.fa-staff-aesculapius::before {
  content: "\e579";
}

.fa-pear::before {
  content: "\e20c";
}

.fa-head-side-cough-slash::before {
  content: "\e062";
}

.fa-file-mov::before {
  content: "\e647";
}

.fa-triangle::before {
  content: "\f2ec";
}

.fa-apartment::before {
  content: "\e468";
}

.fa-truck-medical::before {
  content: "\f0f9";
}

.fa-ambulance::before {
  content: "\f0f9";
}

.fa-pepper::before {
  content: "\e432";
}

.fa-piano::before {
  content: "\f8d4";
}

.fa-gun-squirt::before {
  content: "\e19d";
}

.fa-wheat-awn-circle-exclamation::before {
  content: "\e598";
}

.fa-snowman::before {
  content: "\f7d0";
}

.fa-user-alien::before {
  content: "\e04a";
}

.fa-shield-check::before {
  content: "\f2f7";
}

.fa-mortar-pestle::before {
  content: "\f5a7";
}

.fa-road-barrier::before {
  content: "\e562";
}

.fa-chart-candlestick::before {
  content: "\e0e2";
}

.fa-briefcase-blank::before {
  content: "\e0c8";
}

.fa-school::before {
  content: "\f549";
}

.fa-igloo::before {
  content: "\f7ae";
}

.fa-bracket-round::before {
  content: "\(";
}

.fa-parenthesis::before {
  content: "\(";
}

.fa-joint::before {
  content: "\f595";
}

.fa-horse-saddle::before {
  content: "\f8c3";
}

.fa-mug-marshmallows::before {
  content: "\f7b7";
}

.fa-filters::before {
  content: "\e17e";
}

.fa-bell-on::before {
  content: "\f8fa";
}

.fa-angle-right::before {
  content: "\f105";
}

.fa-dial-med::before {
  content: "\e15f";
}

.fa-horse::before {
  content: "\f6f0";
}

.fa-q::before {
  content: "Q";
}

.fa-monitor-waveform::before {
  content: "\f611";
}

.fa-monitor-heart-rate::before {
  content: "\f611";
}

.fa-link-simple::before {
  content: "\e1cd";
}

.fa-whistle::before {
  content: "\f460";
}

.fa-g::before {
  content: "G";
}

.fa-wine-glass-crack::before {
  content: "\f4bb";
}

.fa-fragile::before {
  content: "\f4bb";
}

.fa-slot-machine::before {
  content: "\e3ce";
}

.fa-notes-medical::before {
  content: "\f481";
}

.fa-car-wash::before {
  content: "\f5e6";
}

.fa-escalator::before {
  content: "\e171";
}

.fa-comment-image::before {
  content: "\e148";
}

.fa-temperature-half::before {
  content: "\f2c9";
}

.fa-temperature-2::before {
  content: "\f2c9";
}

.fa-thermometer-2::before {
  content: "\f2c9";
}

.fa-thermometer-half::before {
  content: "\f2c9";
}

.fa-dong-sign::before {
  content: "\e169";
}

.fa-donut::before {
  content: "\e406";
}

.fa-doughnut::before {
  content: "\e406";
}

.fa-capsules::before {
  content: "\f46b";
}

.fa-poo-storm::before {
  content: "\f75a";
}

.fa-poo-bolt::before {
  content: "\f75a";
}

.fa-tally-1::before {
  content: "\e294";
}

.fa-file-vector::before {
  content: "\e64c";
}

.fa-face-frown-open::before {
  content: "\f57a";
}

.fa-frown-open::before {
  content: "\f57a";
}

.fa-square-dashed::before {
  content: "\e269";
}

.fa-bag-shopping-plus::before {
  content: "\e651";
}

.fa-square-j::before {
  content: "\e273";
}

.fa-hand-point-up::before {
  content: "\f0a6";
}

.fa-money-bill::before {
  content: "\f0d6";
}

.fa-arrow-up-big-small::before {
  content: "\f88e";
}

.fa-sort-size-up::before {
  content: "\f88e";
}

.fa-barcode-read::before {
  content: "\f464";
}

.fa-baguette::before {
  content: "\e3d8";
}

.fa-bowl-soft-serve::before {
  content: "\e46b";
}

.fa-face-holding-back-tears::before {
  content: "\e482";
}

.fa-square-up::before {
  content: "\f353";
}

.fa-arrow-alt-square-up::before {
  content: "\f353";
}

.fa-train-subway-tunnel::before {
  content: "\e2a3";
}

.fa-subway-tunnel::before {
  content: "\e2a3";
}

.fa-square-exclamation::before {
  content: "\f321";
}

.fa-exclamation-square::before {
  content: "\f321";
}

.fa-semicolon::before {
  content: "\;";
}

.fa-bookmark::before {
  content: "\f02e";
}

.fa-fan-table::before {
  content: "\e004";
}

.fa-align-justify::before {
  content: "\f039";
}

.fa-battery-low::before {
  content: "\e0b1";
}

.fa-battery-1::before {
  content: "\e0b1";
}

.fa-credit-card-front::before {
  content: "\f38a";
}

.fa-brain-arrow-curved-right::before {
  content: "\f677";
}

.fa-mind-share::before {
  content: "\f677";
}

.fa-umbrella-beach::before {
  content: "\f5ca";
}

.fa-helmet-un::before {
  content: "\e503";
}

.fa-location-smile::before {
  content: "\f60d";
}

.fa-map-marker-smile::before {
  content: "\f60d";
}

.fa-arrow-left-to-line::before {
  content: "\f33e";
}

.fa-arrow-to-left::before {
  content: "\f33e";
}

.fa-bullseye::before {
  content: "\f140";
}

.fa-sushi::before {
  content: "\e48a";
}

.fa-nigiri::before {
  content: "\e48a";
}

.fa-message-captions::before {
  content: "\e1de";
}

.fa-comment-alt-captions::before {
  content: "\e1de";
}

.fa-trash-list::before {
  content: "\e2b1";
}

.fa-bacon::before {
  content: "\f7e5";
}

.fa-option::before {
  content: "\e318";
}

.fa-raccoon::before {
  content: "\e613";
}

.fa-hand-point-down::before {
  content: "\f0a7";
}

.fa-arrow-up-from-bracket::before {
  content: "\e09a";
}

.fa-head-side-gear::before {
  content: "\e611";
}

.fa-trash-plus::before {
  content: "\e2b2";
}

.fa-objects-align-top::before {
  content: "\e3c0";
}

.fa-folder::before {
  content: "\f07b";
}

.fa-folder-blank::before {
  content: "\f07b";
}

.fa-face-anxious-sweat::before {
  content: "\e36a";
}

.fa-credit-card-blank::before {
  content: "\f389";
}

.fa-file-waveform::before {
  content: "\f478";
}

.fa-file-medical-alt::before {
  content: "\f478";
}

.fa-microchip-ai::before {
  content: "\e1ec";
}

.fa-mug::before {
  content: "\f874";
}

.fa-plane-up-slash::before {
  content: "\e22e";
}

.fa-radiation::before {
  content: "\f7b9";
}

.fa-pen-circle::before {
  content: "\e20e";
}

.fa-bag-seedling::before {
  content: "\e5f2";
}

.fa-chart-simple::before {
  content: "\e473";
}

.fa-crutches::before {
  content: "\f7f8";
}

.fa-circle-parking::before {
  content: "\f615";
}

.fa-parking-circle::before {
  content: "\f615";
}

.fa-mars-stroke::before {
  content: "\f229";
}

.fa-leaf-oak::before {
  content: "\f6f7";
}

.fa-square-bolt::before {
  content: "\e265";
}

.fa-vial::before {
  content: "\f492";
}

.fa-gauge::before {
  content: "\f624";
}

.fa-dashboard::before {
  content: "\f624";
}

.fa-gauge-med::before {
  content: "\f624";
}

.fa-tachometer-alt-average::before {
  content: "\f624";
}

.fa-wand-magic-sparkles::before {
  content: "\e2ca";
}

.fa-magic-wand-sparkles::before {
  content: "\e2ca";
}

.fa-lambda::before {
  content: "\f66e";
}

.fa-e::before {
  content: "E";
}

.fa-pizza::before {
  content: "\f817";
}

.fa-bowl-chopsticks-noodles::before {
  content: "\e2ea";
}

.fa-h3::before {
  content: "\f315";
}

.fa-pen-clip::before {
  content: "\f305";
}

.fa-pen-alt::before {
  content: "\f305";
}

.fa-bridge-circle-exclamation::before {
  content: "\e4ca";
}

.fa-badge-percent::before {
  content: "\f646";
}

.fa-rotate-reverse::before {
  content: "\e631";
}

.fa-user::before {
  content: "\f007";
}

.fa-sensor::before {
  content: "\e028";
}

.fa-comma::before {
  content: "\,";
}

.fa-school-circle-check::before {
  content: "\e56b";
}

.fa-toilet-paper-under::before {
  content: "\e2a0";
}

.fa-toilet-paper-reverse::before {
  content: "\e2a0";
}

.fa-light-emergency::before {
  content: "\e41f";
}

.fa-arrow-down-to-arc::before {
  content: "\e4ae";
}

.fa-dumpster::before {
  content: "\f793";
}

.fa-van-shuttle::before {
  content: "\f5b6";
}

.fa-shuttle-van::before {
  content: "\f5b6";
}

.fa-building-user::before {
  content: "\e4da";
}

.fa-light-switch::before {
  content: "\e017";
}

.fa-square-caret-left::before {
  content: "\f191";
}

.fa-caret-square-left::before {
  content: "\f191";
}

.fa-highlighter::before {
  content: "\f591";
}

.fa-wave-pulse::before {
  content: "\f5f8";
}

.fa-heart-rate::before {
  content: "\f5f8";
}

.fa-key::before {
  content: "\f084";
}

.fa-hat-santa::before {
  content: "\f7a7";
}

.fa-tamale::before {
  content: "\e451";
}

.fa-box-check::before {
  content: "\f467";
}

.fa-bullhorn::before {
  content: "\f0a1";
}

.fa-steak::before {
  content: "\f824";
}

.fa-location-crosshairs-slash::before {
  content: "\f603";
}

.fa-location-slash::before {
  content: "\f603";
}

.fa-person-dolly::before {
  content: "\f4d0";
}

.fa-globe::before {
  content: "\f0ac";
}

.fa-synagogue::before {
  content: "\f69b";
}

.fa-file-chart-column::before {
  content: "\f659";
}

.fa-file-chart-line::before {
  content: "\f659";
}

.fa-person-half-dress::before {
  content: "\e548";
}

.fa-folder-image::before {
  content: "\e18a";
}

.fa-calendar-pen::before {
  content: "\f333";
}

.fa-calendar-edit::before {
  content: "\f333";
}

.fa-road-bridge::before {
  content: "\e563";
}

.fa-face-smile-tear::before {
  content: "\e393";
}

.fa-message-plus::before {
  content: "\f4a8";
}

.fa-comment-alt-plus::before {
  content: "\f4a8";
}

.fa-location-arrow::before {
  content: "\f124";
}

.fa-c::before {
  content: "C";
}

.fa-tablet-button::before {
  content: "\f10a";
}

.fa-person-dress-fairy::before {
  content: "\e607";
}

.fa-rectangle-history-circle-user::before {
  content: "\e4a4";
}

.fa-building-lock::before {
  content: "\e4d6";
}

.fa-chart-line-up::before {
  content: "\e0e5";
}

.fa-mailbox::before {
  content: "\f813";
}

.fa-sign-posts::before {
  content: "\e625";
}

.fa-truck-bolt::before {
  content: "\e3d0";
}

.fa-pizza-slice::before {
  content: "\f818";
}

.fa-money-bill-wave::before {
  content: "\f53a";
}

.fa-chart-area::before {
  content: "\f1fe";
}

.fa-area-chart::before {
  content: "\f1fe";
}

.fa-house-flag::before {
  content: "\e50d";
}

.fa-circle-three-quarters-stroke::before {
  content: "\e5d4";
}

.fa-person-circle-minus::before {
  content: "\e540";
}

.fa-scalpel::before {
  content: "\f61d";
}

.fa-ban::before {
  content: "\f05e";
}

.fa-cancel::before {
  content: "\f05e";
}

.fa-bell-exclamation::before {
  content: "\f848";
}

.fa-circle-bookmark::before {
  content: "\e100";
}

.fa-bookmark-circle::before {
  content: "\e100";
}

.fa-egg-fried::before {
  content: "\f7fc";
}

.fa-face-weary::before {
  content: "\e3a1";
}

.fa-uniform-martial-arts::before {
  content: "\e3d1";
}

.fa-camera-rotate::before {
  content: "\e0d8";
}

.fa-sun-dust::before {
  content: "\f764";
}

.fa-comment-text::before {
  content: "\e14d";
}

.fa-spray-can-sparkles::before {
  content: "\f5d0";
}

.fa-air-freshener::before {
  content: "\f5d0";
}

.fa-signal-bars::before {
  content: "\f690";
}

.fa-signal-alt::before {
  content: "\f690";
}

.fa-signal-alt-4::before {
  content: "\f690";
}

.fa-signal-bars-strong::before {
  content: "\f690";
}

.fa-diamond-exclamation::before {
  content: "\e405";
}

.fa-star::before {
  content: "\f005";
}

.fa-dial-min::before {
  content: "\e161";
}

.fa-repeat::before {
  content: "\f363";
}

.fa-cross::before {
  content: "\f654";
}

.fa-page-caret-down::before {
  content: "\e429";
}

.fa-file-caret-down::before {
  content: "\e429";
}

.fa-box::before {
  content: "\f466";
}

.fa-venus-mars::before {
  content: "\f228";
}

.fa-clock-seven-thirty::before {
  content: "\e351";
}

.fa-arrow-pointer::before {
  content: "\f245";
}

.fa-mouse-pointer::before {
  content: "\f245";
}

.fa-clock-four-thirty::before {
  content: "\e34b";
}

.fa-signal-bars-good::before {
  content: "\f693";
}

.fa-signal-alt-3::before {
  content: "\f693";
}

.fa-cactus::before {
  content: "\f8a7";
}

.fa-lightbulb-gear::before {
  content: "\e5fd";
}

.fa-maximize::before {
  content: "\f31e";
}

.fa-expand-arrows-alt::before {
  content: "\f31e";
}

.fa-charging-station::before {
  content: "\f5e7";
}

.fa-shapes::before {
  content: "\f61f";
}

.fa-triangle-circle-square::before {
  content: "\f61f";
}

.fa-plane-tail::before {
  content: "\e22c";
}

.fa-gauge-simple-max::before {
  content: "\f62b";
}

.fa-tachometer-fastest::before {
  content: "\f62b";
}

.fa-circle-u::before {
  content: "\e127";
}

.fa-shield-slash::before {
  content: "\e24b";
}

.fa-square-phone-hangup::before {
  content: "\e27a";
}

.fa-phone-square-down::before {
  content: "\e27a";
}

.fa-arrow-up-left::before {
  content: "\e09d";
}

.fa-transporter-1::before {
  content: "\e043";
}

.fa-peanuts::before {
  content: "\e431";
}

.fa-shuffle::before {
  content: "\f074";
}

.fa-random::before {
  content: "\f074";
}

.fa-person-running::before {
  content: "\f70c";
}

.fa-running::before {
  content: "\f70c";
}

.fa-mobile-retro::before {
  content: "\e527";
}

.fa-grip-lines-vertical::before {
  content: "\f7a5";
}

.fa-bin-bottles-recycle::before {
  content: "\e5f6";
}

.fa-arrow-up-from-square::before {
  content: "\e09c";
}

.fa-file-dashed-line::before {
  content: "\f877";
}

.fa-page-break::before {
  content: "\f877";
}

.fa-bracket-curly-right::before {
  content: "\}";
}

.fa-spider::before {
  content: "\f717";
}

.fa-clock-three::before {
  content: "\e356";
}

.fa-hands-bound::before {
  content: "\e4f9";
}

.fa-scalpel-line-dashed::before {
  content: "\f61e";
}

.fa-scalpel-path::before {
  content: "\f61e";
}

.fa-file-invoice-dollar::before {
  content: "\f571";
}

.fa-pipe-smoking::before {
  content: "\e3c4";
}

.fa-face-astonished::before {
  content: "\e36b";
}

.fa-window::before {
  content: "\f40e";
}

.fa-plane-circle-exclamation::before {
  content: "\e556";
}

.fa-ear::before {
  content: "\f5f0";
}

.fa-file-lock::before {
  content: "\e3a6";
}

.fa-diagram-venn::before {
  content: "\e15a";
}

.fa-x-ray::before {
  content: "\f497";
}

.fa-goal-net::before {
  content: "\e3ab";
}

.fa-coffin-cross::before {
  content: "\e051";
}

.fa-spell-check::before {
  content: "\f891";
}

.fa-location-xmark::before {
  content: "\f60e";
}

.fa-map-marker-times::before {
  content: "\f60e";
}

.fa-map-marker-xmark::before {
  content: "\f60e";
}

.fa-circle-quarter-stroke::before {
  content: "\e5d3";
}

.fa-lasso::before {
  content: "\f8c8";
}

.fa-slash::before {
  content: "\f715";
}

.fa-person-to-portal::before {
  content: "\e022";
}

.fa-portal-enter::before {
  content: "\e022";
}

.fa-calendar-star::before {
  content: "\f736";
}

.fa-computer-mouse::before {
  content: "\f8cc";
}

.fa-mouse::before {
  content: "\f8cc";
}

.fa-arrow-right-to-bracket::before {
  content: "\f090";
}

.fa-sign-in::before {
  content: "\f090";
}

.fa-pegasus::before {
  content: "\f703";
}

.fa-files-medical::before {
  content: "\f7fd";
}

.fa-cannon::before {
  content: "\e642";
}

.fa-nfc-lock::before {
  content: "\e1f8";
}

.fa-person-ski-lift::before {
  content: "\f7c8";
}

.fa-ski-lift::before {
  content: "\f7c8";
}

.fa-square-6::before {
  content: "\e25b";
}

.fa-shop-slash::before {
  content: "\e070";
}

.fa-store-alt-slash::before {
  content: "\e070";
}

.fa-wind-turbine::before {
  content: "\f89b";
}

.fa-sliders-simple::before {
  content: "\e253";
}

.fa-grid-round::before {
  content: "\e5da";
}

.fa-badge-sheriff::before {
  content: "\f8a2";
}

.fa-server::before {
  content: "\f233";
}

.fa-virus-covid-slash::before {
  content: "\e4a9";
}

.fa-intersection::before {
  content: "\f668";
}

.fa-shop-lock::before {
  content: "\e4a5";
}

.fa-family::before {
  content: "\e300";
}

.fa-hourglass-start::before {
  content: "\f251";
}

.fa-hourglass-1::before {
  content: "\f251";
}

.fa-user-hair-buns::before {
  content: "\e3d3";
}

.fa-blender-phone::before {
  content: "\f6b6";
}

.fa-hourglass-clock::before {
  content: "\e41b";
}

.fa-person-seat-reclined::before {
  content: "\e21f";
}

.fa-paper-plane-top::before {
  content: "\e20a";
}

.fa-paper-plane-alt::before {
  content: "\e20a";
}

.fa-send::before {
  content: "\e20a";
}

.fa-message-arrow-up::before {
  content: "\e1dc";
}

.fa-comment-alt-arrow-up::before {
  content: "\e1dc";
}

.fa-lightbulb-exclamation::before {
  content: "\f671";
}

.fa-layer-minus::before {
  content: "\f5fe";
}

.fa-layer-group-minus::before {
  content: "\f5fe";
}

.fa-chart-pie-simple-circle-currency::before {
  content: "\e604";
}

.fa-circle-e::before {
  content: "\e109";
}

.fa-building-wheat::before {
  content: "\e4db";
}

.fa-gauge-max::before {
  content: "\f626";
}

.fa-tachometer-alt-fastest::before {
  content: "\f626";
}

.fa-person-breastfeeding::before {
  content: "\e53a";
}

.fa-apostrophe::before {
  content: "\'";
}

.fa-file-png::before {
  content: "\e666";
}

.fa-fire-hydrant::before {
  content: "\e17f";
}

.fa-right-to-bracket::before {
  content: "\f2f6";
}

.fa-sign-in-alt::before {
  content: "\f2f6";
}

.fa-video-plus::before {
  content: "\f4e1";
}

.fa-square-right::before {
  content: "\f352";
}

.fa-arrow-alt-square-right::before {
  content: "\f352";
}

.fa-comment-smile::before {
  content: "\f4b4";
}

.fa-venus::before {
  content: "\f221";
}

.fa-passport::before {
  content: "\f5ab";
}

.fa-inbox-in::before {
  content: "\f310";
}

.fa-inbox-arrow-down::before {
  content: "\f310";
}

.fa-heart-pulse::before {
  content: "\f21e";
}

.fa-heartbeat::before {
  content: "\f21e";
}

.fa-circle-8::before {
  content: "\e0f5";
}

.fa-clouds-moon::before {
  content: "\f745";
}

.fa-clock-ten-thirty::before {
  content: "\e355";
}

.fa-people-carry-box::before {
  content: "\f4ce";
}

.fa-people-carry::before {
  content: "\f4ce";
}

.fa-folder-user::before {
  content: "\e18e";
}

.fa-trash-can-xmark::before {
  content: "\e2ae";
}

.fa-temperature-high::before {
  content: "\f769";
}

.fa-microchip::before {
  content: "\f2db";
}

.fa-left-long-to-line::before {
  content: "\e41e";
}

.fa-crown::before {
  content: "\f521";
}

.fa-weight-hanging::before {
  content: "\f5cd";
}

.fa-xmarks-lines::before {
  content: "\e59a";
}

.fa-file-prescription::before {
  content: "\f572";
}

.fa-calendar-range::before {
  content: "\e0d6";
}

.fa-flower-daffodil::before {
  content: "\f800";
}

.fa-hand-back-point-up::before {
  content: "\e1a2";
}

.fa-weight-scale::before {
  content: "\f496";
}

.fa-weight::before {
  content: "\f496";
}

.fa-arrow-up-to-arc::before {
  content: "\e617";
}

.fa-star-exclamation::before {
  content: "\f2f3";
}

.fa-books::before {
  content: "\f5db";
}

.fa-user-group::before {
  content: "\f500";
}

.fa-user-friends::before {
  content: "\f500";
}

.fa-arrow-up-a-z::before {
  content: "\f15e";
}

.fa-sort-alpha-up::before {
  content: "\f15e";
}

.fa-layer-plus::before {
  content: "\f5ff";
}

.fa-layer-group-plus::before {
  content: "\f5ff";
}

.fa-play-pause::before {
  content: "\e22f";
}

.fa-block-question::before {
  content: "\e3dd";
}

.fa-snooze::before {
  content: "\f880";
}

.fa-zzz::before {
  content: "\f880";
}

.fa-scanner-image::before {
  content: "\f8f3";
}

.fa-tv-retro::before {
  content: "\f401";
}

.fa-square-t::before {
  content: "\e280";
}

.fa-farm::before {
  content: "\f864";
}

.fa-barn-silo::before {
  content: "\f864";
}

.fa-chess-knight::before {
  content: "\f441";
}

.fa-bars-sort::before {
  content: "\e0ae";
}

.fa-pallet-boxes::before {
  content: "\f483";
}

.fa-palette-boxes::before {
  content: "\f483";
}

.fa-pallet-alt::before {
  content: "\f483";
}

.fa-face-laugh-squint::before {
  content: "\f59b";
}

.fa-laugh-squint::before {
  content: "\f59b";
}

.fa-code-simple::before {
  content: "\e13d";
}

.fa-bolt-slash::before {
  content: "\e0b8";
}

.fa-panel-fire::before {
  content: "\e42f";
}

.fa-binary-circle-check::before {
  content: "\e33c";
}

.fa-comment-minus::before {
  content: "\f4b1";
}

.fa-burrito::before {
  content: "\f7ed";
}

.fa-violin::before {
  content: "\f8ed";
}

.fa-objects-column::before {
  content: "\e3c1";
}

.fa-square-chevron-down::before {
  content: "\f329";
}

.fa-chevron-square-down::before {
  content: "\f329";
}

.fa-comment-plus::before {
  content: "\f4b2";
}

.fa-triangle-instrument::before {
  content: "\f8e2";
}

.fa-triangle-music::before {
  content: "\f8e2";
}

.fa-wheelchair::before {
  content: "\f193";
}

.fa-user-pilot-tie::before {
  content: "\e2c1";
}

.fa-piano-keyboard::before {
  content: "\f8d5";
}

.fa-bed-empty::before {
  content: "\f8f9";
}

.fa-circle-arrow-up::before {
  content: "\f0aa";
}

.fa-arrow-circle-up::before {
  content: "\f0aa";
}

.fa-toggle-on::before {
  content: "\f205";
}

.fa-rectangle-vertical::before {
  content: "\f2fb";
}

.fa-rectangle-portrait::before {
  content: "\f2fb";
}

.fa-person-walking::before {
  content: "\f554";
}

.fa-walking::before {
  content: "\f554";
}

.fa-l::before {
  content: "L";
}

.fa-signal-stream::before {
  content: "\f8dd";
}

.fa-down-to-bracket::before {
  content: "\e4e7";
}

.fa-circle-z::before {
  content: "\e130";
}

.fa-stars::before {
  content: "\f762";
}

.fa-fire::before {
  content: "\f06d";
}

.fa-bed-pulse::before {
  content: "\f487";
}

.fa-procedures::before {
  content: "\f487";
}

.fa-house-day::before {
  content: "\e00e";
}

.fa-shuttle-space::before {
  content: "\f197";
}

.fa-space-shuttle::before {
  content: "\f197";
}

.fa-shirt-long-sleeve::before {
  content: "\e3c7";
}

.fa-chart-pie-simple::before {
  content: "\f64e";
}

.fa-chart-pie-alt::before {
  content: "\f64e";
}

.fa-face-laugh::before {
  content: "\f599";
}

.fa-laugh::before {
  content: "\f599";
}

.fa-folder-open::before {
  content: "\f07c";
}

.fa-album-collection-circle-user::before {
  content: "\e48f";
}

.fa-candy::before {
  content: "\e3e7";
}

.fa-bowl-hot::before {
  content: "\f823";
}

.fa-soup::before {
  content: "\f823";
}

.fa-flatbread::before {
  content: "\e40b";
}

.fa-heart-circle-plus::before {
  content: "\e500";
}

.fa-code-fork::before {
  content: "\e13b";
}

.fa-city::before {
  content: "\f64f";
}

.fa-signal-bars-weak::before {
  content: "\f691";
}

.fa-signal-alt-1::before {
  content: "\f691";
}

.fa-microphone-lines::before {
  content: "\f3c9";
}

.fa-microphone-alt::before {
  content: "\f3c9";
}

.fa-clock-twelve::before {
  content: "\e358";
}

.fa-pepper-hot::before {
  content: "\f816";
}

.fa-citrus-slice::before {
  content: "\e2f5";
}

.fa-sheep::before {
  content: "\f711";
}

.fa-unlock::before {
  content: "\f09c";
}

.fa-colon-sign::before {
  content: "\e140";
}

.fa-headset::before {
  content: "\f590";
}

.fa-badger-honey::before {
  content: "\f6b4";
}

.fa-h4::before {
  content: "\f86a";
}

.fa-store-slash::before {
  content: "\e071";
}

.fa-road-circle-xmark::before {
  content: "\e566";
}

.fa-signal-slash::before {
  content: "\f695";
}

.fa-user-minus::before {
  content: "\f503";
}

.fa-mars-stroke-up::before {
  content: "\f22a";
}

.fa-mars-stroke-v::before {
  content: "\f22a";
}

.fa-champagne-glasses::before {
  content: "\f79f";
}

.fa-glass-cheers::before {
  content: "\f79f";
}

.fa-taco::before {
  content: "\f826";
}

.fa-hexagon-plus::before {
  content: "\f300";
}

.fa-plus-hexagon::before {
  content: "\f300";
}

.fa-clipboard::before {
  content: "\f328";
}

.fa-house-circle-exclamation::before {
  content: "\e50a";
}

.fa-file-arrow-up::before {
  content: "\f574";
}

.fa-file-upload::before {
  content: "\f574";
}

.fa-wifi::before {
  content: "\f1eb";
}

.fa-wifi-3::before {
  content: "\f1eb";
}

.fa-wifi-strong::before {
  content: "\f1eb";
}

.fa-messages::before {
  content: "\f4b6";
}

.fa-comments-alt::before {
  content: "\f4b6";
}

.fa-bath::before {
  content: "\f2cd";
}

.fa-bathtub::before {
  content: "\f2cd";
}

.fa-umbrella-simple::before {
  content: "\e2bc";
}

.fa-umbrella-alt::before {
  content: "\e2bc";
}

.fa-rectangle-history-circle-plus::before {
  content: "\e4a3";
}

.fa-underline::before {
  content: "\f0cd";
}

.fa-prescription-bottle-pill::before {
  content: "\e5c0";
}

.fa-user-pen::before {
  content: "\f4ff";
}

.fa-user-edit::before {
  content: "\f4ff";
}

.fa-binary-slash::before {
  content: "\e33e";
}

.fa-square-o::before {
  content: "\e278";
}

.fa-signature::before {
  content: "\f5b7";
}

.fa-stroopwafel::before {
  content: "\f551";
}

.fa-bold::before {
  content: "\f032";
}

.fa-anchor-lock::before {
  content: "\e4ad";
}

.fa-building-ngo::before {
  content: "\e4d7";
}

.fa-transporter-3::before {
  content: "\e045";
}

.fa-engine-warning::before {
  content: "\f5f2";
}

.fa-engine-exclamation::before {
  content: "\f5f2";
}

.fa-circle-down-right::before {
  content: "\e108";
}

.fa-square-k::before {
  content: "\e274";
}

.fa-manat-sign::before {
  content: "\e1d5";
}

.fa-money-check-pen::before {
  content: "\f872";
}

.fa-money-check-edit::before {
  content: "\f872";
}

.fa-not-equal::before {
  content: "\f53e";
}

.fa-border-top-left::before {
  content: "\f853";
}

.fa-border-style::before {
  content: "\f853";
}

.fa-map-location-dot::before {
  content: "\f5a0";
}

.fa-map-marked-alt::before {
  content: "\f5a0";
}

.fa-tilde::before {
  content: "\~";
}

.fa-jedi::before {
  content: "\f669";
}

.fa-square-poll-vertical::before {
  content: "\f681";
}

.fa-poll::before {
  content: "\f681";
}

.fa-arrow-down-square-triangle::before {
  content: "\f889";
}

.fa-sort-shapes-down-alt::before {
  content: "\f889";
}

.fa-mug-hot::before {
  content: "\f7b6";
}

.fa-dog-leashed::before {
  content: "\f6d4";
}

.fa-car-battery::before {
  content: "\f5df";
}

.fa-battery-car::before {
  content: "\f5df";
}

.fa-face-downcast-sweat::before {
  content: "\e371";
}

.fa-mailbox-flag-up::before {
  content: "\e5bb";
}

.fa-memo-circle-info::before {
  content: "\e49a";
}

.fa-gift::before {
  content: "\f06b";
}

.fa-dice-two::before {
  content: "\f528";
}

.fa-volume::before {
  content: "\f6a8";
}

.fa-volume-medium::before {
  content: "\f6a8";
}

.fa-transporter-5::before {
  content: "\e2a6";
}

.fa-gauge-circle-bolt::before {
  content: "\e496";
}

.fa-coin-front::before {
  content: "\e3fc";
}

.fa-file-slash::before {
  content: "\e3a7";
}

.fa-message-arrow-up-right::before {
  content: "\e1dd";
}

.fa-treasure-chest::before {
  content: "\f723";
}

.fa-chess-queen::before {
  content: "\f445";
}

.fa-paintbrush-fine::before {
  content: "\f5a9";
}

.fa-paint-brush-alt::before {
  content: "\f5a9";
}

.fa-paint-brush-fine::before {
  content: "\f5a9";
}

.fa-paintbrush-alt::before {
  content: "\f5a9";
}

.fa-glasses::before {
  content: "\f530";
}

.fa-hood-cloak::before {
  content: "\f6ef";
}

.fa-square-quote::before {
  content: "\e329";
}

.fa-up-left::before {
  content: "\e2bd";
}

.fa-bring-front::before {
  content: "\f857";
}

.fa-chess-board::before {
  content: "\f43c";
}

.fa-burger-cheese::before {
  content: "\f7f1";
}

.fa-cheeseburger::before {
  content: "\f7f1";
}

.fa-building-circle-check::before {
  content: "\e4d2";
}

.fa-repeat-1::before {
  content: "\f365";
}

.fa-arrow-down-to-line::before {
  content: "\f33d";
}

.fa-arrow-to-bottom::before {
  content: "\f33d";
}

.fa-grid-5::before {
  content: "\e199";
}

.fa-swap-arrows::before {
  content: "\e60a";
}

.fa-right-long-to-line::before {
  content: "\e444";
}

.fa-person-chalkboard::before {
  content: "\e53d";
}

.fa-mars-stroke-right::before {
  content: "\f22b";
}

.fa-mars-stroke-h::before {
  content: "\f22b";
}

.fa-hand-back-fist::before {
  content: "\f255";
}

.fa-hand-rock::before {
  content: "\f255";
}

.fa-grid-round-5::before {
  content: "\e5de";
}

.fa-tally::before {
  content: "\f69c";
}

.fa-tally-5::before {
  content: "\f69c";
}

.fa-square-caret-up::before {
  content: "\f151";
}

.fa-caret-square-up::before {
  content: "\f151";
}

.fa-cloud-showers-water::before {
  content: "\e4e4";
}

.fa-chart-bar::before {
  content: "\f080";
}

.fa-bar-chart::before {
  content: "\f080";
}

.fa-hands-bubbles::before {
  content: "\e05e";
}

.fa-hands-wash::before {
  content: "\e05e";
}

.fa-less-than-equal::before {
  content: "\f537";
}

.fa-train::before {
  content: "\f238";
}

.fa-up-from-dotted-line::before {
  content: "\e456";
}

.fa-eye-low-vision::before {
  content: "\f2a8";
}

.fa-low-vision::before {
  content: "\f2a8";
}

.fa-traffic-light-go::before {
  content: "\f638";
}

.fa-face-exhaling::before {
  content: "\e480";
}

.fa-sensor-fire::before {
  content: "\e02a";
}

.fa-user-unlock::before {
  content: "\e058";
}

.fa-hexagon-divide::before {
  content: "\e1ad";
}

.fa-00::before {
  content: "\e467";
}

.fa-crow::before {
  content: "\f520";
}

.fa-cassette-betamax::before {
  content: "\f8a4";
}

.fa-betamax::before {
  content: "\f8a4";
}

.fa-sailboat::before {
  content: "\e445";
}

.fa-window-restore::before {
  content: "\f2d2";
}

.fa-nfc-magnifying-glass::before {
  content: "\e1f9";
}

.fa-file-binary::before {
  content: "\e175";
}

.fa-circle-v::before {
  content: "\e12a";
}

.fa-square-plus::before {
  content: "\f0fe";
}

.fa-plus-square::before {
  content: "\f0fe";
}

.fa-bowl-scoops::before {
  content: "\e3df";
}

.fa-mistletoe::before {
  content: "\f7b4";
}

.fa-custard::before {
  content: "\e403";
}

.fa-lacrosse-stick::before {
  content: "\e3b5";
}

.fa-hockey-mask::before {
  content: "\f6ee";
}

.fa-sunrise::before {
  content: "\f766";
}

.fa-subtitles::before {
  content: "\e60f";
}

.fa-panel-ews::before {
  content: "\e42e";
}

.fa-torii-gate::before {
  content: "\f6a1";
}

.fa-cloud-exclamation::before {
  content: "\e491";
}

.fa-message-lines::before {
  content: "\f4a6";
}

.fa-comment-alt-lines::before {
  content: "\f4a6";
}

.fa-frog::before {
  content: "\f52e";
}

.fa-bucket::before {
  content: "\e4cf";
}

.fa-floppy-disk-pen::before {
  content: "\e182";
}

.fa-image::before {
  content: "\f03e";
}

.fa-window-frame::before {
  content: "\e04f";
}

.fa-microphone::before {
  content: "\f130";
}

.fa-cow::before {
  content: "\f6c8";
}

.fa-file-zip::before {
  content: "\e5ee";
}

.fa-square-ring::before {
  content: "\e44f";
}

.fa-down-from-line::before {
  content: "\f349";
}

.fa-arrow-alt-from-top::before {
  content: "\f349";
}

.fa-caret-up::before {
  content: "\f0d8";
}

.fa-shield-xmark::before {
  content: "\e24c";
}

.fa-shield-times::before {
  content: "\e24c";
}

.fa-screwdriver::before {
  content: "\f54a";
}

.fa-circle-sort-down::before {
  content: "\e031";
}

.fa-sort-circle-down::before {
  content: "\e031";
}

.fa-folder-closed::before {
  content: "\e185";
}

.fa-house-tsunami::before {
  content: "\e515";
}

.fa-square-nfi::before {
  content: "\e576";
}

.fa-forklift::before {
  content: "\f47a";
}

.fa-arrow-up-from-ground-water::before {
  content: "\e4b5";
}

.fa-bracket-square-right::before {
  content: "\]";
}

.fa-martini-glass::before {
  content: "\f57b";
}

.fa-glass-martini-alt::before {
  content: "\f57b";
}

.fa-rotate-left::before {
  content: "\f2ea";
}

.fa-rotate-back::before {
  content: "\f2ea";
}

.fa-rotate-backward::before {
  content: "\f2ea";
}

.fa-undo-alt::before {
  content: "\f2ea";
}

.fa-table-columns::before {
  content: "\f0db";
}

.fa-columns::before {
  content: "\f0db";
}

.fa-square-a::before {
  content: "\e25f";
}

.fa-tick::before {
  content: "\e32f";
}

.fa-lemon::before {
  content: "\f094";
}

.fa-head-side-mask::before {
  content: "\e063";
}

.fa-handshake::before {
  content: "\f2b5";
}

.fa-gem::before {
  content: "\f3a5";
}

.fa-dolly::before {
  content: "\f472";
}

.fa-dolly-box::before {
  content: "\f472";
}

.fa-smoking::before {
  content: "\f48d";
}

.fa-minimize::before {
  content: "\f78c";
}

.fa-compress-arrows-alt::before {
  content: "\f78c";
}

.fa-refrigerator::before {
  content: "\e026";
}

.fa-monument::before {
  content: "\f5a6";
}

.fa-octagon-xmark::before {
  content: "\f2f0";
}

.fa-times-octagon::before {
  content: "\f2f0";
}

.fa-xmark-octagon::before {
  content: "\f2f0";
}

.fa-align-slash::before {
  content: "\f846";
}

.fa-snowplow::before {
  content: "\f7d2";
}

.fa-angles-right::before {
  content: "\f101";
}

.fa-angle-double-right::before {
  content: "\f101";
}

.fa-truck-ramp-couch::before {
  content: "\f4dd";
}

.fa-truck-couch::before {
  content: "\f4dd";
}

.fa-cannabis::before {
  content: "\f55f";
}

.fa-circle-play::before {
  content: "\f144";
}

.fa-play-circle::before {
  content: "\f144";
}

.fa-arrow-up-right-and-arrow-down-left-from-center::before {
  content: "\e0a0";
}

.fa-location-arrow-up::before {
  content: "\e63a";
}

.fa-tablets::before {
  content: "\f490";
}

.fa-360-degrees::before {
  content: "\e2dc";
}

.fa-ethernet::before {
  content: "\f796";
}

.fa-euro-sign::before {
  content: "\f153";
}

.fa-eur::before {
  content: "\f153";
}

.fa-euro::before {
  content: "\f153";
}

.fa-chair::before {
  content: "\f6c0";
}

.fa-circle-check::before {
  content: "\f058";
}

.fa-check-circle::before {
  content: "\f058";
}

.fa-square-dashed-circle-plus::before {
  content: "\e5c2";
}

.fa-hand-holding-circle-dollar::before {
  content: "\e621";
}

.fa-money-simple-from-bracket::before {
  content: "\e313";
}

.fa-bat::before {
  content: "\f6b5";
}

.fa-circle-stop::before {
  content: "\f28d";
}

.fa-stop-circle::before {
  content: "\f28d";
}

.fa-head-side-headphones::before {
  content: "\f8c2";
}

.fa-phone-rotary::before {
  content: "\f8d3";
}

.fa-compass-drafting::before {
  content: "\f568";
}

.fa-drafting-compass::before {
  content: "\f568";
}

.fa-plate-wheat::before {
  content: "\e55a";
}

.fa-calendar-circle-minus::before {
  content: "\e46f";
}

.fa-chopsticks::before {
  content: "\e3f7";
}

.fa-car-wrench::before {
  content: "\f5e3";
}

.fa-car-mechanic::before {
  content: "\f5e3";
}

.fa-icicles::before {
  content: "\f7ad";
}

.fa-person-shelter::before {
  content: "\e54f";
}

.fa-neuter::before {
  content: "\f22c";
}

.fa-id-badge::before {
  content: "\f2c1";
}

.fa-kazoo::before {
  content: "\f8c7";
}

.fa-marker::before {
  content: "\f5a1";
}

.fa-bin-bottles::before {
  content: "\e5f5";
}

.fa-face-laugh-beam::before {
  content: "\f59a";
}

.fa-laugh-beam::before {
  content: "\f59a";
}

.fa-square-arrow-down-left::before {
  content: "\e261";
}

.fa-battery-bolt::before {
  content: "\f376";
}

.fa-tree-large::before {
  content: "\f7dd";
}

.fa-helicopter-symbol::before {
  content: "\e502";
}

.fa-aperture::before {
  content: "\e2df";
}

.fa-universal-access::before {
  content: "\f29a";
}

.fa-gear-complex::before {
  content: "\e5e9";
}

.fa-file-magnifying-glass::before {
  content: "\f865";
}

.fa-file-search::before {
  content: "\f865";
}

.fa-up-right::before {
  content: "\e2be";
}

.fa-circle-chevron-up::before {
  content: "\f139";
}

.fa-chevron-circle-up::before {
  content: "\f139";
}

.fa-user-police::before {
  content: "\e333";
}

.fa-lari-sign::before {
  content: "\e1c8";
}

.fa-volcano::before {
  content: "\f770";
}

.fa-teddy-bear::before {
  content: "\e3cf";
}

.fa-stocking::before {
  content: "\f7d5";
}

.fa-person-walking-dashed-line-arrow-right::before {
  content: "\e553";
}

.fa-image-slash::before {
  content: "\e1b7";
}

.fa-mask-snorkel::before {
  content: "\e3b7";
}

.fa-smoke::before {
  content: "\f760";
}

.fa-sterling-sign::before {
  content: "\f154";
}

.fa-gbp::before {
  content: "\f154";
}

.fa-pound-sign::before {
  content: "\f154";
}

.fa-battery-exclamation::before {
  content: "\e0b0";
}

.fa-viruses::before {
  content: "\e076";
}

.fa-square-person-confined::before {
  content: "\e577";
}

.fa-user-tie::before {
  content: "\f508";
}

.fa-arrow-down-long::before {
  content: "\f175";
}

.fa-long-arrow-down::before {
  content: "\f175";
}

.fa-tent-arrow-down-to-line::before {
  content: "\e57e";
}

.fa-certificate::before {
  content: "\f0a3";
}

.fa-crystal-ball::before {
  content: "\e362";
}

.fa-reply-all::before {
  content: "\f122";
}

.fa-mail-reply-all::before {
  content: "\f122";
}

.fa-suitcase::before {
  content: "\f0f2";
}

.fa-person-skating::before {
  content: "\f7c5";
}

.fa-skating::before {
  content: "\f7c5";
}

.fa-star-shooting::before {
  content: "\e036";
}

.fa-binary-lock::before {
  content: "\e33d";
}

.fa-filter-circle-dollar::before {
  content: "\f662";
}

.fa-funnel-dollar::before {
  content: "\f662";
}

.fa-camera-retro::before {
  content: "\f083";
}

.fa-circle-arrow-down::before {
  content: "\f0ab";
}

.fa-arrow-circle-down::before {
  content: "\f0ab";
}

.fa-comment-pen::before {
  content: "\f4ae";
}

.fa-comment-edit::before {
  content: "\f4ae";
}

.fa-file-import::before {
  content: "\f56f";
}

.fa-arrow-right-to-file::before {
  content: "\f56f";
}

.fa-banjo::before {
  content: "\f8a3";
}

.fa-square-arrow-up-right::before {
  content: "\f14c";
}

.fa-external-link-square::before {
  content: "\f14c";
}

.fa-light-emergency-on::before {
  content: "\e420";
}

.fa-kerning::before {
  content: "\f86f";
}

.fa-box-open::before {
  content: "\f49e";
}

.fa-square-f::before {
  content: "\e270";
}

.fa-scroll::before {
  content: "\f70e";
}

.fa-spa::before {
  content: "\f5bb";
}

.fa-arrow-left-from-line::before {
  content: "\f344";
}

.fa-arrow-from-right::before {
  content: "\f344";
}

.fa-strawberry::before {
  content: "\e32b";
}

.fa-location-pin-lock::before {
  content: "\e51f";
}

.fa-pause::before {
  content: "\f04c";
}

.fa-clock-eight-thirty::before {
  content: "\e346";
}

.fa-plane-engines::before {
  content: "\f3de";
}

.fa-plane-alt::before {
  content: "\f3de";
}

.fa-hill-avalanche::before {
  content: "\e507";
}

.fa-temperature-empty::before {
  content: "\f2cb";
}

.fa-temperature-0::before {
  content: "\f2cb";
}

.fa-thermometer-0::before {
  content: "\f2cb";
}

.fa-thermometer-empty::before {
  content: "\f2cb";
}

.fa-bomb::before {
  content: "\f1e2";
}

.fa-gauge-low::before {
  content: "\f627";
}

.fa-tachometer-alt-slow::before {
  content: "\f627";
}

.fa-registered::before {
  content: "\f25d";
}

.fa-trash-can-plus::before {
  content: "\e2ac";
}

.fa-address-card::before {
  content: "\f2bb";
}

.fa-contact-card::before {
  content: "\f2bb";
}

.fa-vcard::before {
  content: "\f2bb";
}

.fa-scale-unbalanced-flip::before {
  content: "\f516";
}

.fa-balance-scale-right::before {
  content: "\f516";
}

.fa-globe-snow::before {
  content: "\f7a3";
}

.fa-subscript::before {
  content: "\f12c";
}

.fa-diamond-turn-right::before {
  content: "\f5eb";
}

.fa-directions::before {
  content: "\f5eb";
}

.fa-integral::before {
  content: "\f667";
}

.fa-burst::before {
  content: "\e4dc";
}

.fa-house-laptop::before {
  content: "\e066";
}

.fa-laptop-house::before {
  content: "\e066";
}

.fa-face-tired::before {
  content: "\f5c8";
}

.fa-tired::before {
  content: "\f5c8";
}

.fa-money-bills::before {
  content: "\e1f3";
}

.fa-blinds-raised::before {
  content: "\f8fd";
}

.fa-smog::before {
  content: "\f75f";
}

.fa-ufo-beam::before {
  content: "\e048";
}

.fa-circle-caret-up::before {
  content: "\f331";
}

.fa-caret-circle-up::before {
  content: "\f331";
}

.fa-user-vneck-hair-long::before {
  content: "\e463";
}

.fa-square-a-lock::before {
  content: "\e44d";
}

.fa-crutch::before {
  content: "\f7f7";
}

.fa-gas-pump-slash::before {
  content: "\f5f4";
}

.fa-cloud-arrow-up::before {
  content: "\f0ee";
}

.fa-cloud-upload::before {
  content: "\f0ee";
}

.fa-cloud-upload-alt::before {
  content: "\f0ee";
}

.fa-palette::before {
  content: "\f53f";
}

.fa-transporter-4::before {
  content: "\e2a5";
}

.fa-chart-mixed-up-circle-currency::before {
  content: "\e5d8";
}

.fa-objects-align-right::before {
  content: "\e3bf";
}

.fa-arrows-turn-right::before {
  content: "\e4c0";
}

.fa-vest::before {
  content: "\e085";
}

.fa-pig::before {
  content: "\f706";
}

.fa-inbox-full::before {
  content: "\e1ba";
}

.fa-circle-envelope::before {
  content: "\e10c";
}

.fa-envelope-circle::before {
  content: "\e10c";
}

.fa-triangle-person-digging::before {
  content: "\f85d";
}

.fa-construction::before {
  content: "\f85d";
}

.fa-ferry::before {
  content: "\e4ea";
}

.fa-bullseye-arrow::before {
  content: "\f648";
}

.fa-arrows-down-to-people::before {
  content: "\e4b9";
}

.fa-seedling::before {
  content: "\f4d8";
}

.fa-sprout::before {
  content: "\f4d8";
}

.fa-clock-seven::before {
  content: "\e350";
}

.fa-left-right::before {
  content: "\f337";
}

.fa-arrows-alt-h::before {
  content: "\f337";
}

.fa-boxes-packing::before {
  content: "\e4c7";
}

.fa-circle-arrow-left::before {
  content: "\f0a8";
}

.fa-arrow-circle-left::before {
  content: "\f0a8";
}

.fa-flashlight::before {
  content: "\f8b8";
}

.fa-file-jpg::before {
  content: "\e646";
}

.fa-group-arrows-rotate::before {
  content: "\e4f6";
}

.fa-bowl-food::before {
  content: "\e4c6";
}

.fa-square-9::before {
  content: "\e25e";
}

.fa-candy-cane::before {
  content: "\f786";
}

.fa-arrow-down-wide-short::before {
  content: "\f160";
}

.fa-sort-amount-asc::before {
  content: "\f160";
}

.fa-sort-amount-down::before {
  content: "\f160";
}

.fa-square-dollar::before {
  content: "\f2e9";
}

.fa-dollar-square::before {
  content: "\f2e9";
}

.fa-usd-square::before {
  content: "\f2e9";
}

.fa-phone-arrow-right::before {
  content: "\e5be";
}

.fa-hand-holding-seedling::before {
  content: "\f4bf";
}

.fa-message-check::before {
  content: "\f4a2";
}

.fa-comment-alt-check::before {
  content: "\f4a2";
}

.fa-cloud-bolt::before {
  content: "\f76c";
}

.fa-thunderstorm::before {
  content: "\f76c";
}

.fa-chart-line-up-down::before {
  content: "\e5d7";
}

.fa-text-slash::before {
  content: "\f87d";
}

.fa-remove-format::before {
  content: "\f87d";
}

.fa-watch::before {
  content: "\f2e1";
}

.fa-circle-down-left::before {
  content: "\e107";
}

.fa-text::before {
  content: "\f893";
}

.fa-projector::before {
  content: "\f8d6";
}

.fa-face-smile-wink::before {
  content: "\f4da";
}

.fa-smile-wink::before {
  content: "\f4da";
}

.fa-tombstone-blank::before {
  content: "\f721";
}

.fa-tombstone-alt::before {
  content: "\f721";
}

.fa-chess-king-piece::before {
  content: "\f440";
}

.fa-chess-king-alt::before {
  content: "\f440";
}

.fa-circle-6::before {
  content: "\e0f3";
}

.fa-waves-sine::before {
  content: "\e65d";
}

.fa-left::before {
  content: "\f355";
}

.fa-arrow-alt-left::before {
  content: "\f355";
}

.fa-file-word::before {
  content: "\f1c2";
}

.fa-file-powerpoint::before {
  content: "\f1c4";
}

.fa-square-down::before {
  content: "\f350";
}

.fa-arrow-alt-square-down::before {
  content: "\f350";
}

.fa-objects-align-center-vertical::before {
  content: "\e3bd";
}

.fa-arrows-left-right::before {
  content: "\f07e";
}

.fa-arrows-h::before {
  content: "\f07e";
}

.fa-house-lock::before {
  content: "\e510";
}

.fa-cloud-arrow-down::before {
  content: "\f0ed";
}

.fa-cloud-download::before {
  content: "\f0ed";
}

.fa-cloud-download-alt::before {
  content: "\f0ed";
}

.fa-wreath::before {
  content: "\f7e2";
}

.fa-children::before {
  content: "\e4e1";
}

.fa-meter-droplet::before {
  content: "\e1ea";
}

.fa-chalkboard::before {
  content: "\f51b";
}

.fa-blackboard::before {
  content: "\f51b";
}

.fa-user-large-slash::before {
  content: "\f4fa";
}

.fa-user-alt-slash::before {
  content: "\f4fa";
}

.fa-signal-strong::before {
  content: "\f68f";
}

.fa-signal-4::before {
  content: "\f68f";
}

.fa-lollipop::before {
  content: "\e424";
}

.fa-lollypop::before {
  content: "\e424";
}

.fa-list-tree::before {
  content: "\e1d2";
}

.fa-envelope-open::before {
  content: "\f2b6";
}

.fa-draw-circle::before {
  content: "\f5ed";
}

.fa-cat-space::before {
  content: "\e001";
}

.fa-handshake-simple-slash::before {
  content: "\e05f";
}

.fa-handshake-alt-slash::before {
  content: "\e05f";
}

.fa-rabbit-running::before {
  content: "\f709";
}

.fa-rabbit-fast::before {
  content: "\f709";
}

.fa-memo-pad::before {
  content: "\e1da";
}

.fa-mattress-pillow::before {
  content: "\e525";
}

.fa-alarm-plus::before {
  content: "\f844";
}

.fa-alicorn::before {
  content: "\f6b0";
}

.fa-comment-question::before {
  content: "\e14b";
}

.fa-gingerbread-man::before {
  content: "\f79d";
}

.fa-guarani-sign::before {
  content: "\e19a";
}

.fa-burger-fries::before {
  content: "\e0cd";
}

.fa-mug-tea::before {
  content: "\f875";
}

.fa-border-top::before {
  content: "\f855";
}

.fa-arrows-rotate::before {
  content: "\f021";
}

.fa-refresh::before {
  content: "\f021";
}

.fa-sync::before {
  content: "\f021";
}

.fa-circle-book-open::before {
  content: "\e0ff";
}

.fa-book-circle::before {
  content: "\e0ff";
}

.fa-arrows-to-dotted-line::before {
  content: "\e0a6";
}

.fa-fire-extinguisher::before {
  content: "\f134";
}

.fa-magnifying-glass-arrows-rotate::before {
  content: "\e65e";
}

.fa-garage-open::before {
  content: "\e00b";
}

.fa-shelves-empty::before {
  content: "\e246";
}

.fa-cruzeiro-sign::before {
  content: "\e152";
}

.fa-watch-apple::before {
  content: "\e2cb";
}

.fa-watch-calculator::before {
  content: "\f8f0";
}

.fa-list-dropdown::before {
  content: "\e1cf";
}

.fa-cabinet-filing::before {
  content: "\f64b";
}

.fa-burger-soda::before {
  content: "\f858";
}

.fa-square-arrow-up::before {
  content: "\f33c";
}

.fa-arrow-square-up::before {
  content: "\f33c";
}

.fa-greater-than-equal::before {
  content: "\f532";
}

.fa-pallet-box::before {
  content: "\e208";
}

.fa-face-confounded::before {
  content: "\e36c";
}

.fa-shield-halved::before {
  content: "\f3ed";
}

.fa-shield-alt::before {
  content: "\f3ed";
}

.fa-truck-plow::before {
  content: "\f7de";
}

.fa-book-atlas::before {
  content: "\f558";
}

.fa-atlas::before {
  content: "\f558";
}

.fa-virus::before {
  content: "\e074";
}

.fa-grid-round-2::before {
  content: "\e5db";
}

.fa-comment-middle-top::before {
  content: "\e14a";
}

.fa-wave::before {
  content: "\e65b";
}

.fa-envelope-circle-check::before {
  content: "\e4e8";
}

.fa-layer-group::before {
  content: "\f5fd";
}

.fa-restroom-simple::before {
  content: "\e23a";
}

.fa-arrows-to-dot::before {
  content: "\e4be";
}

.fa-border-outer::before {
  content: "\f851";
}

.fa-hashtag-lock::before {
  content: "\e415";
}

.fa-clock-two-thirty::before {
  content: "\e35b";
}

.fa-archway::before {
  content: "\f557";
}

.fa-heart-circle-check::before {
  content: "\e4fd";
}

.fa-house-chimney-crack::before {
  content: "\f6f1";
}

.fa-house-damage::before {
  content: "\f6f1";
}

.fa-file-zipper::before {
  content: "\f1c6";
}

.fa-file-archive::before {
  content: "\f1c6";
}

.fa-ticket-perforated::before {
  content: "\e63e";
}

.fa-heart-half::before {
  content: "\e1ab";
}

.fa-comment-check::before {
  content: "\f4ac";
}

.fa-square::before {
  content: "\f0c8";
}

.fa-memo::before {
  content: "\e1d8";
}

.fa-martini-glass-empty::before {
  content: "\f000";
}

.fa-glass-martini::before {
  content: "\f000";
}

.fa-couch::before {
  content: "\f4b8";
}

.fa-cedi-sign::before {
  content: "\e0df";
}

.fa-italic::before {
  content: "\f033";
}

.fa-glass-citrus::before {
  content: "\f869";
}

.fa-calendar-lines-pen::before {
  content: "\e472";
}

.fa-church::before {
  content: "\f51d";
}

.fa-person-snowmobiling::before {
  content: "\f7d1";
}

.fa-snowmobile::before {
  content: "\f7d1";
}

.fa-face-hushed::before {
  content: "\e37b";
}

.fa-comments-dollar::before {
  content: "\f653";
}

.fa-tickets-simple::before {
  content: "\e659";
}

.fa-pickaxe::before {
  content: "\e5bf";
}

.fa-link-simple-slash::before {
  content: "\e1ce";
}

.fa-democrat::before {
  content: "\f747";
}

.fa-face-confused::before {
  content: "\e36d";
}

.fa-pinball::before {
  content: "\e229";
}

.fa-z::before {
  content: "Z";
}

.fa-person-skiing::before {
  content: "\f7c9";
}

.fa-skiing::before {
  content: "\f7c9";
}

.fa-deer::before {
  content: "\f78e";
}

.fa-input-pipe::before {
  content: "\e1be";
}

.fa-road-lock::before {
  content: "\e567";
}

.fa-a::before {
  content: "A";
}

.fa-bookmark-slash::before {
  content: "\e0c2";
}

.fa-temperature-arrow-down::before {
  content: "\e03f";
}

.fa-temperature-down::before {
  content: "\e03f";
}

.fa-mace::before {
  content: "\f6f8";
}

.fa-feather-pointed::before {
  content: "\f56b";
}

.fa-feather-alt::before {
  content: "\f56b";
}

.fa-sausage::before {
  content: "\f820";
}

.fa-trash-can-clock::before {
  content: "\e2aa";
}

.fa-p::before {
  content: "P";
}

.fa-broom-wide::before {
  content: "\e5d1";
}

.fa-snowflake::before {
  content: "\f2dc";
}

.fa-stomach::before {
  content: "\f623";
}

.fa-newspaper::before {
  content: "\f1ea";
}

.fa-rectangle-ad::before {
  content: "\f641";
}

.fa-ad::before {
  content: "\f641";
}

.fa-guitar-electric::before {
  content: "\f8be";
}

.fa-arrow-turn-down-right::before {
  content: "\e3d6";
}

.fa-moon-cloud::before {
  content: "\f754";
}

.fa-bread-slice-butter::before {
  content: "\e3e1";
}

.fa-circle-arrow-right::before {
  content: "\f0a9";
}

.fa-arrow-circle-right::before {
  content: "\f0a9";
}

.fa-user-group-crown::before {
  content: "\f6a5";
}

.fa-users-crown::before {
  content: "\f6a5";
}

.fa-circle-i::before {
  content: "\e111";
}

.fa-toilet-paper-check::before {
  content: "\e5b2";
}

.fa-filter-circle-xmark::before {
  content: "\e17b";
}

.fa-locust::before {
  content: "\e520";
}

.fa-sort::before {
  content: "\f0dc";
}

.fa-unsorted::before {
  content: "\f0dc";
}

.fa-list-ol::before {
  content: "\f0cb";
}

.fa-list-1-2::before {
  content: "\f0cb";
}

.fa-list-numeric::before {
  content: "\f0cb";
}

.fa-chart-waterfall::before {
  content: "\e0eb";
}

.fa-sparkle::before {
  content: "\e5d6";
}

.fa-face-party::before {
  content: "\e383";
}

.fa-kidneys::before {
  content: "\f5fb";
}

.fa-wifi-exclamation::before {
  content: "\e2cf";
}

.fa-chart-network::before {
  content: "\f78a";
}

.fa-person-dress-burst::before {
  content: "\e544";
}

.fa-dice-d4::before {
  content: "\f6d0";
}

.fa-money-check-dollar::before {
  content: "\f53d";
}

.fa-money-check-alt::before {
  content: "\f53d";
}

.fa-vector-square::before {
  content: "\f5cb";
}

.fa-bread-slice::before {
  content: "\f7ec";
}

.fa-language::before {
  content: "\f1ab";
}

.fa-wheat-awn-slash::before {
  content: "\e338";
}

.fa-face-kiss-wink-heart::before {
  content: "\f598";
}

.fa-kiss-wink-heart::before {
  content: "\f598";
}

.fa-dagger::before {
  content: "\f6cb";
}

.fa-podium::before {
  content: "\f680";
}

.fa-memo-circle-check::before {
  content: "\e1d9";
}

.fa-route-highway::before {
  content: "\f61a";
}

.fa-down-to-line::before {
  content: "\f34a";
}

.fa-arrow-alt-to-bottom::before {
  content: "\f34a";
}

.fa-filter::before {
  content: "\f0b0";
}

.fa-square-g::before {
  content: "\e271";
}

.fa-circle-phone::before {
  content: "\e11b";
}

.fa-phone-circle::before {
  content: "\e11b";
}

.fa-clipboard-prescription::before {
  content: "\f5e8";
}

.fa-user-nurse-hair::before {
  content: "\e45d";
}

.fa-question::before {
  content: "\?";
}

.fa-file-signature::before {
  content: "\f573";
}

.fa-toggle-large-on::before {
  content: "\e5b1";
}

.fa-up-down-left-right::before {
  content: "\f0b2";
}

.fa-arrows-alt::before {
  content: "\f0b2";
}

.fa-dryer-heat::before {
  content: "\f862";
}

.fa-dryer-alt::before {
  content: "\f862";
}

.fa-house-chimney-user::before {
  content: "\e065";
}

.fa-hand-holding-heart::before {
  content: "\f4be";
}

.fa-arrow-up-small-big::before {
  content: "\f88f";
}

.fa-sort-size-up-alt::before {
  content: "\f88f";
}

.fa-train-track::before {
  content: "\e453";
}

.fa-puzzle-piece::before {
  content: "\f12e";
}

.fa-money-check::before {
  content: "\f53c";
}

.fa-star-half-stroke::before {
  content: "\f5c0";
}

.fa-star-half-alt::before {
  content: "\f5c0";
}

.fa-file-exclamation::before {
  content: "\f31a";
}

.fa-code::before {
  content: "\f121";
}

.fa-whiskey-glass::before {
  content: "\f7a0";
}

.fa-glass-whiskey::before {
  content: "\f7a0";
}

.fa-moon-stars::before {
  content: "\f755";
}

.fa-building-circle-exclamation::before {
  content: "\e4d3";
}

.fa-clothes-hanger::before {
  content: "\e136";
}

.fa-mobile-notch::before {
  content: "\e1ee";
}

.fa-mobile-iphone::before {
  content: "\e1ee";
}

.fa-magnifying-glass-chart::before {
  content: "\e522";
}

.fa-arrow-up-right-from-square::before {
  content: "\f08e";
}

.fa-external-link::before {
  content: "\f08e";
}

.fa-cubes-stacked::before {
  content: "\e4e6";
}

.fa-images-user::before {
  content: "\e1b9";
}

.fa-won-sign::before {
  content: "\f159";
}

.fa-krw::before {
  content: "\f159";
}

.fa-won::before {
  content: "\f159";
}

.fa-image-polaroid-user::before {
  content: "\e1b6";
}

.fa-virus-covid::before {
  content: "\e4a8";
}

.fa-square-ellipsis::before {
  content: "\e26e";
}

.fa-pie::before {
  content: "\f705";
}

.fa-chess-knight-piece::before {
  content: "\f442";
}

.fa-chess-knight-alt::before {
  content: "\f442";
}

.fa-austral-sign::before {
  content: "\e0a9";
}

.fa-cloud-plus::before {
  content: "\e35e";
}

.fa-f::before {
  content: "F";
}

.fa-leaf::before {
  content: "\f06c";
}

.fa-bed-bunk::before {
  content: "\f8f8";
}

.fa-road::before {
  content: "\f018";
}

.fa-taxi::before {
  content: "\f1ba";
}

.fa-cab::before {
  content: "\f1ba";
}

.fa-person-circle-plus::before {
  content: "\e541";
}

.fa-chart-pie::before {
  content: "\f200";
}

.fa-pie-chart::before {
  content: "\f200";
}

.fa-bolt-lightning::before {
  content: "\e0b7";
}

.fa-clock-eight::before {
  content: "\e345";
}

.fa-sack-xmark::before {
  content: "\e56a";
}

.fa-file-xls::before {
  content: "\e64d";
}

.fa-file-excel::before {
  content: "\f1c3";
}

.fa-file-contract::before {
  content: "\f56c";
}

.fa-fish-fins::before {
  content: "\e4f2";
}

.fa-circle-q::before {
  content: "\e11e";
}

.fa-building-flag::before {
  content: "\e4d5";
}

.fa-face-grin-beam::before {
  content: "\f582";
}

.fa-grin-beam::before {
  content: "\f582";
}

.fa-object-ungroup::before {
  content: "\f248";
}

.fa-face-disguise::before {
  content: "\e370";
}

.fa-circle-arrow-down-right::before {
  content: "\e0fa";
}

.fa-alien-8bit::before {
  content: "\f8f6";
}

.fa-alien-monster::before {
  content: "\f8f6";
}

.fa-hand-point-ribbon::before {
  content: "\e1a6";
}

.fa-poop::before {
  content: "\f619";
}

.fa-object-exclude::before {
  content: "\e49c";
}

.fa-telescope::before {
  content: "\e03e";
}

.fa-location-pin::before {
  content: "\f041";
}

.fa-map-marker::before {
  content: "\f041";
}

.fa-square-list::before {
  content: "\e489";
}

.fa-kaaba::before {
  content: "\f66b";
}

.fa-toilet-paper::before {
  content: "\f71e";
}

.fa-helmet-safety::before {
  content: "\f807";
}

.fa-hard-hat::before {
  content: "\f807";
}

.fa-hat-hard::before {
  content: "\f807";
}

.fa-comment-code::before {
  content: "\e147";
}

.fa-sim-cards::before {
  content: "\e251";
}

.fa-starship::before {
  content: "\e039";
}

.fa-eject::before {
  content: "\f052";
}

.fa-circle-right::before {
  content: "\f35a";
}

.fa-arrow-alt-circle-right::before {
  content: "\f35a";
}

.fa-plane-circle-check::before {
  content: "\e555";
}

.fa-seal::before {
  content: "\e241";
}

.fa-user-cowboy::before {
  content: "\f8ea";
}

.fa-hexagon-vertical-nft::before {
  content: "\e505";
}

.fa-face-rolling-eyes::before {
  content: "\f5a5";
}

.fa-meh-rolling-eyes::before {
  content: "\f5a5";
}

.fa-bread-loaf::before {
  content: "\f7eb";
}

.fa-rings-wedding::before {
  content: "\f81b";
}

.fa-object-group::before {
  content: "\f247";
}

.fa-french-fries::before {
  content: "\f803";
}

.fa-chart-line::before {
  content: "\f201";
}

.fa-line-chart::before {
  content: "\f201";
}

.fa-calendar-arrow-down::before {
  content: "\e0d0";
}

.fa-calendar-download::before {
  content: "\e0d0";
}

.fa-send-back::before {
  content: "\f87e";
}

.fa-mask-ventilator::before {
  content: "\e524";
}

.fa-tickets::before {
  content: "\e658";
}

.fa-signature-lock::before {
  content: "\e3ca";
}

.fa-arrow-right::before {
  content: "\f061";
}

.fa-signs-post::before {
  content: "\f277";
}

.fa-map-signs::before {
  content: "\f277";
}

.fa-octagon-plus::before {
  content: "\f301";
}

.fa-plus-octagon::before {
  content: "\f301";
}

.fa-cash-register::before {
  content: "\f788";
}

.fa-person-circle-question::before {
  content: "\e542";
}

.fa-melon-slice::before {
  content: "\e311";
}

.fa-space-station-moon::before {
  content: "\e033";
}

.fa-message-smile::before {
  content: "\f4aa";
}

.fa-comment-alt-smile::before {
  content: "\f4aa";
}

.fa-cup-straw::before {
  content: "\e363";
}

.fa-left-from-line::before {
  content: "\f348";
}

.fa-arrow-alt-from-right::before {
  content: "\f348";
}

.fa-h::before {
  content: "H";
}

.fa-basket-shopping-simple::before {
  content: "\e0af";
}

.fa-shopping-basket-alt::before {
  content: "\e0af";
}

.fa-hands-holding-heart::before {
  content: "\f4c3";
}

.fa-hands-heart::before {
  content: "\f4c3";
}

.fa-clock-nine::before {
  content: "\e34c";
}

.fa-hammer-brush::before {
  content: "\e620";
}

.fa-tarp::before {
  content: "\e57b";
}

.fa-face-sleepy::before {
  content: "\e38e";
}

.fa-hand-horns::before {
  content: "\e1a9";
}

.fa-screwdriver-wrench::before {
  content: "\f7d9";
}

.fa-tools::before {
  content: "\f7d9";
}

.fa-arrows-to-eye::before {
  content: "\e4bf";
}

.fa-circle-three-quarters::before {
  content: "\e125";
}

.fa-trophy-star::before {
  content: "\f2eb";
}

.fa-trophy-alt::before {
  content: "\f2eb";
}

.fa-plug-circle-bolt::before {
  content: "\e55b";
}

.fa-face-thermometer::before {
  content: "\e39a";
}

.fa-grid-round-4::before {
  content: "\e5dd";
}

.fa-sign-posts-wrench::before {
  content: "\e626";
}

.fa-shirt-running::before {
  content: "\e3c8";
}

.fa-book-circle-arrow-up::before {
  content: "\e0bd";
}

.fa-face-nauseated::before {
  content: "\e381";
}

.fa-heart::before {
  content: "\f004";
}

.fa-file-chart-pie::before {
  content: "\f65a";
}

.fa-mars-and-venus::before {
  content: "\f224";
}

.fa-house-user::before {
  content: "\e1b0";
}

.fa-home-user::before {
  content: "\e1b0";
}

.fa-circle-arrow-down-left::before {
  content: "\e0f9";
}

.fa-dumpster-fire::before {
  content: "\f794";
}

.fa-hexagon-minus::before {
  content: "\f307";
}

.fa-minus-hexagon::before {
  content: "\f307";
}

.fa-left-to-line::before {
  content: "\f34b";
}

.fa-arrow-alt-to-left::before {
  content: "\f34b";
}

.fa-house-crack::before {
  content: "\e3b1";
}

.fa-paw-simple::before {
  content: "\f701";
}

.fa-paw-alt::before {
  content: "\f701";
}

.fa-arrow-left-long-to-line::before {
  content: "\e3d4";
}

.fa-brackets-round::before {
  content: "\e0c5";
}

.fa-parentheses::before {
  content: "\e0c5";
}

.fa-martini-glass-citrus::before {
  content: "\f561";
}

.fa-cocktail::before {
  content: "\f561";
}

.fa-user-shakespeare::before {
  content: "\e2c2";
}

.fa-arrow-right-to-arc::before {
  content: "\e4b2";
}

.fa-face-surprise::before {
  content: "\f5c2";
}

.fa-surprise::before {
  content: "\f5c2";
}

.fa-bottle-water::before {
  content: "\e4c5";
}

.fa-circle-pause::before {
  content: "\f28b";
}

.fa-pause-circle::before {
  content: "\f28b";
}

.fa-gauge-circle-plus::before {
  content: "\e498";
}

.fa-folders::before {
  content: "\f660";
}

.fa-angel::before {
  content: "\f779";
}

.fa-value-absolute::before {
  content: "\f6a6";
}

.fa-rabbit::before {
  content: "\f708";
}

.fa-toilet-paper-slash::before {
  content: "\e072";
}

.fa-circle-euro::before {
  content: "\e5ce";
}

.fa-apple-whole::before {
  content: "\f5d1";
}

.fa-apple-alt::before {
  content: "\f5d1";
}

.fa-kitchen-set::before {
  content: "\e51a";
}

.fa-diamond-half::before {
  content: "\e5b7";
}

.fa-lock-keyhole::before {
  content: "\f30d";
}

.fa-lock-alt::before {
  content: "\f30d";
}

.fa-r::before {
  content: "R";
}

.fa-temperature-quarter::before {
  content: "\f2ca";
}

.fa-temperature-1::before {
  content: "\f2ca";
}

.fa-thermometer-1::before {
  content: "\f2ca";
}

.fa-thermometer-quarter::before {
  content: "\f2ca";
}

.fa-square-info::before {
  content: "\f30f";
}

.fa-info-square::before {
  content: "\f30f";
}

.fa-wifi-slash::before {
  content: "\f6ac";
}

.fa-toilet-paper-xmark::before {
  content: "\e5b3";
}

.fa-hands-holding-dollar::before {
  content: "\f4c5";
}

.fa-hands-usd::before {
  content: "\f4c5";
}

.fa-cube::before {
  content: "\f1b2";
}

.fa-arrow-down-triangle-square::before {
  content: "\f888";
}

.fa-sort-shapes-down::before {
  content: "\f888";
}

.fa-bitcoin-sign::before {
  content: "\e0b4";
}

.fa-shutters::before {
  content: "\e449";
}

.fa-shield-dog::before {
  content: "\e573";
}

.fa-solar-panel::before {
  content: "\f5ba";
}

.fa-lock-open::before {
  content: "\f3c1";
}

.fa-table-tree::before {
  content: "\e293";
}

.fa-house-chimney-heart::before {
  content: "\e1b2";
}

.fa-tally-3::before {
  content: "\e296";
}

.fa-elevator::before {
  content: "\e16d";
}

.fa-money-bill-transfer::before {
  content: "\e528";
}

.fa-money-bill-trend-up::before {
  content: "\e529";
}

.fa-house-flood-water-circle-arrow-right::before {
  content: "\e50f";
}

.fa-square-poll-horizontal::before {
  content: "\f682";
}

.fa-poll-h::before {
  content: "\f682";
}

.fa-circle::before {
  content: "\f111";
}

.fa-cart-circle-exclamation::before {
  content: "\e3f2";
}

.fa-sword::before {
  content: "\f71c";
}

.fa-backward-fast::before {
  content: "\f049";
}

.fa-fast-backward::before {
  content: "\f049";
}

.fa-recycle::before {
  content: "\f1b8";
}

.fa-user-astronaut::before {
  content: "\f4fb";
}

.fa-interrobang::before {
  content: "\e5ba";
}

.fa-plane-slash::before {
  content: "\e069";
}

.fa-circle-dashed::before {
  content: "\e105";
}

.fa-trademark::before {
  content: "\f25c";
}

.fa-basketball::before {
  content: "\f434";
}

.fa-basketball-ball::before {
  content: "\f434";
}

.fa-fork-knife::before {
  content: "\f2e6";
}

.fa-utensils-alt::before {
  content: "\f2e6";
}

.fa-satellite-dish::before {
  content: "\f7c0";
}

.fa-badge-check::before {
  content: "\f336";
}

.fa-circle-up::before {
  content: "\f35b";
}

.fa-arrow-alt-circle-up::before {
  content: "\f35b";
}

.fa-slider::before {
  content: "\e252";
}

.fa-mobile-screen-button::before {
  content: "\f3cd";
}

.fa-mobile-alt::before {
  content: "\f3cd";
}

.fa-clock-one-thirty::before {
  content: "\e34f";
}

.fa-inbox-out::before {
  content: "\f311";
}

.fa-inbox-arrow-up::before {
  content: "\f311";
}

.fa-cloud-slash::before {
  content: "\e137";
}

.fa-volume-high::before {
  content: "\f028";
}

.fa-volume-up::before {
  content: "\f028";
}

.fa-users-rays::before {
  content: "\e593";
}

.fa-wallet::before {
  content: "\f555";
}

.fa-octagon-check::before {
  content: "\e426";
}

.fa-flatbread-stuffed::before {
  content: "\e40c";
}

.fa-clipboard-check::before {
  content: "\f46c";
}

.fa-cart-circle-plus::before {
  content: "\e3f3";
}

.fa-truck-clock::before {
  content: "\f48c";
}

.fa-shipping-timed::before {
  content: "\f48c";
}

.fa-pool-8-ball::before {
  content: "\e3c5";
}

.fa-file-audio::before {
  content: "\f1c7";
}

.fa-turn-down-left::before {
  content: "\e331";
}

.fa-lock-hashtag::before {
  content: "\e423";
}

.fa-chart-radar::before {
  content: "\e0e7";
}

.fa-staff::before {
  content: "\f71b";
}

.fa-burger::before {
  content: "\f805";
}

.fa-hamburger::before {
  content: "\f805";
}

.fa-utility-pole::before {
  content: "\e2c3";
}

.fa-transporter-6::before {
  content: "\e2a7";
}

.fa-arrow-turn-left::before {
  content: "\e632";
}

.fa-wrench::before {
  content: "\f0ad";
}

.fa-bugs::before {
  content: "\e4d0";
}

.fa-vector-polygon::before {
  content: "\e2c7";
}

.fa-diagram-nested::before {
  content: "\e157";
}

.fa-rupee-sign::before {
  content: "\f156";
}

.fa-rupee::before {
  content: "\f156";
}

.fa-file-image::before {
  content: "\f1c5";
}

.fa-circle-question::before {
  content: "\f059";
}

.fa-question-circle::before {
  content: "\f059";
}

.fa-tickets-perforated::before {
  content: "\e63f";
}

.fa-image-user::before {
  content: "\e1b8";
}

.fa-buoy::before {
  content: "\e5b5";
}

.fa-plane-departure::before {
  content: "\f5b0";
}

.fa-handshake-slash::before {
  content: "\e060";
}

.fa-book-bookmark::before {
  content: "\e0bb";
}

.fa-border-center-h::before {
  content: "\f89c";
}

.fa-can-food::before {
  content: "\e3e6";
}

.fa-typewriter::before {
  content: "\f8e7";
}

.fa-arrow-right-from-arc::before {
  content: "\e4b1";
}

.fa-circle-k::before {
  content: "\e113";
}

.fa-face-hand-over-mouth::before {
  content: "\e378";
}

.fa-popcorn::before {
  content: "\f819";
}

.fa-house-water::before {
  content: "\f74f";
}

.fa-house-flood::before {
  content: "\f74f";
}

.fa-object-subtract::before {
  content: "\e49e";
}

.fa-code-branch::before {
  content: "\f126";
}

.fa-warehouse-full::before {
  content: "\f495";
}

.fa-warehouse-alt::before {
  content: "\f495";
}

.fa-hat-cowboy::before {
  content: "\f8c0";
}

.fa-bridge::before {
  content: "\e4c8";
}

.fa-phone-flip::before {
  content: "\f879";
}

.fa-phone-alt::before {
  content: "\f879";
}

.fa-arrow-down-from-dotted-line::before {
  content: "\e090";
}

.fa-file-doc::before {
  content: "\e5ed";
}

.fa-square-quarters::before {
  content: "\e44e";
}

.fa-truck-front::before {
  content: "\e2b7";
}

.fa-cat::before {
  content: "\f6be";
}

.fa-trash-xmark::before {
  content: "\e2b4";
}

.fa-circle-caret-left::before {
  content: "\f32e";
}

.fa-caret-circle-left::before {
  content: "\f32e";
}

.fa-files::before {
  content: "\e178";
}

.fa-anchor-circle-exclamation::before {
  content: "\e4ab";
}

.fa-face-clouds::before {
  content: "\e47d";
}

.fa-user-crown::before {
  content: "\f6a4";
}

.fa-basket-shopping-plus::before {
  content: "\e653";
}

.fa-truck-field::before {
  content: "\e58d";
}

.fa-route::before {
  content: "\f4d7";
}

.fa-cart-circle-check::before {
  content: "\e3f1";
}

.fa-clipboard-question::before {
  content: "\e4e3";
}

.fa-panorama::before {
  content: "\e209";
}

.fa-comment-medical::before {
  content: "\f7f5";
}

.fa-teeth-open::before {
  content: "\f62f";
}

.fa-user-tie-hair-long::before {
  content: "\e460";
}

.fa-file-circle-minus::before {
  content: "\e4ed";
}

.fa-head-side-medical::before {
  content: "\f809";
}

.fa-arrow-turn-right::before {
  content: "\e635";
}

.fa-tags::before {
  content: "\f02c";
}

.fa-wine-glass::before {
  content: "\f4e3";
}

.fa-forward-fast::before {
  content: "\f050";
}

.fa-fast-forward::before {
  content: "\f050";
}

.fa-face-meh-blank::before {
  content: "\f5a4";
}

.fa-meh-blank::before {
  content: "\f5a4";
}

.fa-user-robot::before {
  content: "\e04b";
}

.fa-square-parking::before {
  content: "\f540";
}

.fa-parking::before {
  content: "\f540";
}

.fa-card-diamond::before {
  content: "\e3ea";
}

.fa-face-zipper::before {
  content: "\e3a5";
}

.fa-face-raised-eyebrow::before {
  content: "\e388";
}

.fa-house-signal::before {
  content: "\e012";
}

.fa-square-chevron-up::before {
  content: "\f32c";
}

.fa-chevron-square-up::before {
  content: "\f32c";
}

.fa-bars-progress::before {
  content: "\f828";
}

.fa-tasks-alt::before {
  content: "\f828";
}

.fa-faucet-drip::before {
  content: "\e006";
}

.fa-arrows-to-line::before {
  content: "\e0a7";
}

.fa-dolphin::before {
  content: "\e168";
}

.fa-arrow-up-right::before {
  content: "\e09f";
}

.fa-circle-r::before {
  content: "\e120";
}

.fa-cart-flatbed::before {
  content: "\f474";
}

.fa-dolly-flatbed::before {
  content: "\f474";
}

.fa-ban-smoking::before {
  content: "\f54d";
}

.fa-smoking-ban::before {
  content: "\f54d";
}

.fa-circle-sort-up::before {
  content: "\e032";
}

.fa-sort-circle-up::before {
  content: "\e032";
}

.fa-terminal::before {
  content: "\f120";
}

.fa-mobile-button::before {
  content: "\f10b";
}

.fa-house-medical-flag::before {
  content: "\e514";
}

.fa-basket-shopping::before {
  content: "\f291";
}

.fa-shopping-basket::before {
  content: "\f291";
}

.fa-tape::before {
  content: "\f4db";
}

.fa-chestnut::before {
  content: "\e3f6";
}

.fa-bus-simple::before {
  content: "\f55e";
}

.fa-bus-alt::before {
  content: "\f55e";
}

.fa-eye::before {
  content: "\f06e";
}

.fa-face-sad-cry::before {
  content: "\f5b3";
}

.fa-sad-cry::before {
  content: "\f5b3";
}

.fa-heat::before {
  content: "\e00c";
}

.fa-ticket-airline::before {
  content: "\e29a";
}

.fa-ticket-perforated-plane::before {
  content: "\e29a";
}

.fa-ticket-plane::before {
  content: "\e29a";
}

.fa-boot-heeled::before {
  content: "\e33f";
}

.fa-arrows-minimize::before {
  content: "\e0a5";
}

.fa-compress-arrows::before {
  content: "\e0a5";
}

.fa-audio-description::before {
  content: "\f29e";
}

.fa-person-military-to-person::before {
  content: "\e54c";
}

.fa-file-shield::before {
  content: "\e4f0";
}

.fa-hexagon::before {
  content: "\f312";
}

.fa-manhole::before {
  content: "\e1d6";
}

.fa-user-slash::before {
  content: "\f506";
}

.fa-pen::before {
  content: "\f304";
}

.fa-tower-observation::before {
  content: "\e586";
}

.fa-floppy-disks::before {
  content: "\e183";
}

.fa-toilet-paper-blank-under::before {
  content: "\e29f";
}

.fa-toilet-paper-reverse-alt::before {
  content: "\e29f";
}

.fa-file-code::before {
  content: "\f1c9";
}

.fa-signal::before {
  content: "\f012";
}

.fa-signal-5::before {
  content: "\f012";
}

.fa-signal-perfect::before {
  content: "\f012";
}

.fa-pump::before {
  content: "\e442";
}

.fa-bus::before {
  content: "\f207";
}

.fa-heart-circle-xmark::before {
  content: "\e501";
}

.fa-arrow-up-left-from-circle::before {
  content: "\e09e";
}

.fa-house-chimney::before {
  content: "\e3af";
}

.fa-home-lg::before {
  content: "\e3af";
}

.fa-window-maximize::before {
  content: "\f2d0";
}

.fa-dryer::before {
  content: "\f861";
}

.fa-face-frown::before {
  content: "\f119";
}

.fa-frown::before {
  content: "\f119";
}

.fa-chess-bishop-piece::before {
  content: "\f43b";
}

.fa-chess-bishop-alt::before {
  content: "\f43b";
}

.fa-shirt-tank-top::before {
  content: "\e3c9";
}

.fa-diploma::before {
  content: "\f5ea";
}

.fa-scroll-ribbon::before {
  content: "\f5ea";
}

.fa-screencast::before {
  content: "\e23e";
}

.fa-walker::before {
  content: "\f831";
}

.fa-prescription::before {
  content: "\f5b1";
}

.fa-shop::before {
  content: "\f54f";
}

.fa-store-alt::before {
  content: "\f54f";
}

.fa-floppy-disk::before {
  content: "\f0c7";
}

.fa-save::before {
  content: "\f0c7";
}

.fa-vihara::before {
  content: "\f6a7";
}

.fa-face-kiss-closed-eyes::before {
  content: "\e37d";
}

.fa-scale-unbalanced::before {
  content: "\f515";
}

.fa-balance-scale-left::before {
  content: "\f515";
}

.fa-file-user::before {
  content: "\f65c";
}

.fa-user-police-tie::before {
  content: "\e334";
}

.fa-face-tongue-money::before {
  content: "\e39d";
}

.fa-tennis-ball::before {
  content: "\f45e";
}

.fa-square-l::before {
  content: "\e275";
}

.fa-sort-up::before {
  content: "\f0de";
}

.fa-sort-asc::before {
  content: "\f0de";
}

.fa-calendar-arrow-up::before {
  content: "\e0d1";
}

.fa-calendar-upload::before {
  content: "\e0d1";
}

.fa-comment-dots::before {
  content: "\f4ad";
}

.fa-commenting::before {
  content: "\f4ad";
}

.fa-plant-wilt::before {
  content: "\e5aa";
}

.fa-scarf::before {
  content: "\f7c1";
}

.fa-album-circle-plus::before {
  content: "\e48c";
}

.fa-user-nurse-hair-long::before {
  content: "\e45e";
}

.fa-diamond::before {
  content: "\f219";
}

.fa-square-left::before {
  content: "\f351";
}

.fa-arrow-alt-square-left::before {
  content: "\f351";
}

.fa-face-grin-squint::before {
  content: "\f585";
}

.fa-grin-squint::before {
  content: "\f585";
}

.fa-circle-ellipsis-vertical::before {
  content: "\e10b";
}

.fa-hand-holding-dollar::before {
  content: "\f4c0";
}

.fa-hand-holding-usd::before {
  content: "\f4c0";
}

.fa-grid-dividers::before {
  content: "\e3ad";
}

.fa-bacterium::before {
  content: "\e05a";
}

.fa-hand-pointer::before {
  content: "\f25a";
}

.fa-drum-steelpan::before {
  content: "\f56a";
}

.fa-hand-scissors::before {
  content: "\f257";
}

.fa-hands-praying::before {
  content: "\f684";
}

.fa-praying-hands::before {
  content: "\f684";
}

.fa-face-pensive::before {
  content: "\e384";
}

.fa-user-music::before {
  content: "\f8eb";
}

.fa-arrow-rotate-right::before {
  content: "\f01e";
}

.fa-arrow-right-rotate::before {
  content: "\f01e";
}

.fa-arrow-rotate-forward::before {
  content: "\f01e";
}

.fa-redo::before {
  content: "\f01e";
}

.fa-messages-dollar::before {
  content: "\f652";
}

.fa-comments-alt-dollar::before {
  content: "\f652";
}

.fa-sensor-on::before {
  content: "\e02b";
}

.fa-balloon::before {
  content: "\e2e3";
}

.fa-biohazard::before {
  content: "\f780";
}

.fa-chess-queen-piece::before {
  content: "\f446";
}

.fa-chess-queen-alt::before {
  content: "\f446";
}

.fa-location-crosshairs::before {
  content: "\f601";
}

.fa-location::before {
  content: "\f601";
}

.fa-mars-double::before {
  content: "\f227";
}

.fa-house-person-leave::before {
  content: "\e00f";
}

.fa-house-leave::before {
  content: "\e00f";
}

.fa-house-person-depart::before {
  content: "\e00f";
}

.fa-ruler-triangle::before {
  content: "\f61c";
}

.fa-card-club::before {
  content: "\e3e9";
}

.fa-child-dress::before {
  content: "\e59c";
}

.fa-users-between-lines::before {
  content: "\e591";
}

.fa-lungs-virus::before {
  content: "\e067";
}

.fa-spinner-third::before {
  content: "\f3f4";
}

.fa-face-grin-tears::before {
  content: "\f588";
}

.fa-grin-tears::before {
  content: "\f588";
}

.fa-phone::before {
  content: "\f095";
}

.fa-computer-mouse-scrollwheel::before {
  content: "\f8cd";
}

.fa-mouse-alt::before {
  content: "\f8cd";
}

.fa-calendar-xmark::before {
  content: "\f273";
}

.fa-calendar-times::before {
  content: "\f273";
}

.fa-child-reaching::before {
  content: "\e59d";
}

.fa-table-layout::before {
  content: "\e290";
}

.fa-narwhal::before {
  content: "\f6fe";
}

.fa-ramp-loading::before {
  content: "\f4d4";
}

.fa-calendar-circle-plus::before {
  content: "\e470";
}

.fa-toothbrush::before {
  content: "\f635";
}

.fa-border-inner::before {
  content: "\f84e";
}

.fa-paw-claws::before {
  content: "\f702";
}

.fa-kiwi-fruit::before {
  content: "\e30c";
}

.fa-traffic-light-slow::before {
  content: "\f639";
}

.fa-rectangle-code::before {
  content: "\e322";
}

.fa-head-side-virus::before {
  content: "\e064";
}

.fa-keyboard-brightness::before {
  content: "\e1c0";
}

.fa-books-medical::before {
  content: "\f7e8";
}

.fa-lightbulb-slash::before {
  content: "\f673";
}

.fa-house-blank::before {
  content: "\e487";
}

.fa-home-blank::before {
  content: "\e487";
}

.fa-square-5::before {
  content: "\e25a";
}

.fa-square-heart::before {
  content: "\f4c8";
}

.fa-heart-square::before {
  content: "\f4c8";
}

.fa-puzzle::before {
  content: "\e443";
}

.fa-user-gear::before {
  content: "\f4fe";
}

.fa-user-cog::before {
  content: "\f4fe";
}

.fa-pipe-circle-check::before {
  content: "\e436";
}

.fa-arrow-up-1-9::before {
  content: "\f163";
}

.fa-sort-numeric-up::before {
  content: "\f163";
}

.fa-octagon-exclamation::before {
  content: "\e204";
}

.fa-dial-low::before {
  content: "\e15d";
}

.fa-door-closed::before {
  content: "\f52a";
}

.fa-laptop-mobile::before {
  content: "\f87a";
}

.fa-phone-laptop::before {
  content: "\f87a";
}

.fa-conveyor-belt-boxes::before {
  content: "\f46f";
}

.fa-conveyor-belt-alt::before {
  content: "\f46f";
}

.fa-shield-virus::before {
  content: "\e06c";
}

.fa-starfighter-twin-ion-engine-advanced::before {
  content: "\e28e";
}

.fa-starfighter-alt-advanced::before {
  content: "\e28e";
}

.fa-dice-six::before {
  content: "\f526";
}

.fa-starfighter-twin-ion-engine::before {
  content: "\e038";
}

.fa-starfighter-alt::before {
  content: "\e038";
}

.fa-rocket-launch::before {
  content: "\e027";
}

.fa-mosquito-net::before {
  content: "\e52c";
}

.fa-vent-damper::before {
  content: "\e465";
}

.fa-bridge-water::before {
  content: "\e4ce";
}

.fa-ban-bug::before {
  content: "\f7f9";
}

.fa-debug::before {
  content: "\f7f9";
}

.fa-person-booth::before {
  content: "\f756";
}

.fa-text-width::before {
  content: "\f035";
}

.fa-garage-car::before {
  content: "\e00a";
}

.fa-square-kanban::before {
  content: "\e488";
}

.fa-hat-wizard::before {
  content: "\f6e8";
}

.fa-chart-kanban::before {
  content: "\e64f";
}

.fa-pen-fancy::before {
  content: "\f5ac";
}

.fa-coffee-pot::before {
  content: "\e002";
}

.fa-mouse-field::before {
  content: "\e5a8";
}

.fa-person-digging::before {
  content: "\f85e";
}

.fa-digging::before {
  content: "\f85e";
}

.fa-shower-down::before {
  content: "\e24d";
}

.fa-shower-alt::before {
  content: "\e24d";
}

.fa-box-circle-check::before {
  content: "\e0c4";
}

.fa-brightness::before {
  content: "\e0c9";
}

.fa-car-side-bolt::before {
  content: "\e344";
}

.fa-file-xml::before {
  content: "\e654";
}

.fa-ornament::before {
  content: "\f7b8";
}

.fa-phone-arrow-down-left::before {
  content: "\e223";
}

.fa-phone-arrow-down::before {
  content: "\e223";
}

.fa-phone-incoming::before {
  content: "\e223";
}

.fa-cloud-word::before {
  content: "\e138";
}

.fa-hand-fingers-crossed::before {
  content: "\e1a3";
}

.fa-trash::before {
  content: "\f1f8";
}

.fa-gauge-simple::before {
  content: "\f629";
}

.fa-gauge-simple-med::before {
  content: "\f629";
}

.fa-tachometer-average::before {
  content: "\f629";
}

.fa-arrow-down-small-big::before {
  content: "\f88d";
}

.fa-sort-size-down-alt::before {
  content: "\f88d";
}

.fa-book-medical::before {
  content: "\f7e6";
}

.fa-face-melting::before {
  content: "\e483";
}

.fa-poo::before {
  content: "\f2fe";
}

.fa-pen-clip-slash::before {
  content: "\e20f";
}

.fa-pen-alt-slash::before {
  content: "\e20f";
}

.fa-quote-right::before {
  content: "\f10e";
}

.fa-quote-right-alt::before {
  content: "\f10e";
}

.fa-scroll-old::before {
  content: "\f70f";
}

.fa-guitars::before {
  content: "\f8bf";
}

.fa-phone-xmark::before {
  content: "\e227";
}

.fa-hose::before {
  content: "\e419";
}

.fa-clock-six::before {
  content: "\e352";
}

.fa-shirt::before {
  content: "\f553";
}

.fa-t-shirt::before {
  content: "\f553";
}

.fa-tshirt::before {
  content: "\f553";
}

.fa-billboard::before {
  content: "\e5cd";
}

.fa-square-r::before {
  content: "\e27c";
}

.fa-cubes::before {
  content: "\f1b3";
}

.fa-envelope-open-dollar::before {
  content: "\f657";
}

.fa-divide::before {
  content: "\f529";
}

.fa-sun-cloud::before {
  content: "\f763";
}

.fa-lamp-floor::before {
  content: "\e015";
}

.fa-square-7::before {
  content: "\e25c";
}

.fa-tenge-sign::before {
  content: "\f7d7";
}

.fa-tenge::before {
  content: "\f7d7";
}

.fa-headphones::before {
  content: "\f025";
}

.fa-hands-holding::before {
  content: "\f4c2";
}

.fa-campfire::before {
  content: "\f6ba";
}

.fa-circle-ampersand::before {
  content: "\e0f8";
}

.fa-snowflakes::before {
  content: "\f7cf";
}

.fa-hands-clapping::before {
  content: "\e1a8";
}

.fa-republican::before {
  content: "\f75e";
}

.fa-leaf-maple::before {
  content: "\f6f6";
}

.fa-arrow-left::before {
  content: "\f060";
}

.fa-person-circle-xmark::before {
  content: "\e543";
}

.fa-ruler::before {
  content: "\f545";
}

.fa-cup-straw-swoosh::before {
  content: "\e364";
}

.fa-temperature-sun::before {
  content: "\f76a";
}

.fa-temperature-hot::before {
  content: "\f76a";
}

.fa-align-left::before {
  content: "\f036";
}

.fa-dice-d6::before {
  content: "\f6d1";
}

.fa-restroom::before {
  content: "\f7bd";
}

.fa-high-definition::before {
  content: "\e1ae";
}

.fa-rectangle-hd::before {
  content: "\e1ae";
}

.fa-j::before {
  content: "J";
}

.fa-galaxy::before {
  content: "\e008";
}

.fa-users-viewfinder::before {
  content: "\e595";
}

.fa-file-video::before {
  content: "\f1c8";
}

.fa-cherries::before {
  content: "\e0ec";
}

.fa-up-right-from-square::before {
  content: "\f35d";
}

.fa-external-link-alt::before {
  content: "\f35d";
}

.fa-circle-sort::before {
  content: "\e030";
}

.fa-sort-circle::before {
  content: "\e030";
}

.fa-table-cells::before {
  content: "\f00a";
}

.fa-th::before {
  content: "\f00a";
}

.fa-bag-shopping-minus::before {
  content: "\e650";
}

.fa-file-pdf::before {
  content: "\f1c1";
}

.fa-siren::before {
  content: "\e02d";
}

.fa-arrow-up-to-dotted-line::before {
  content: "\e0a1";
}

.fa-image-landscape::before {
  content: "\e1b5";
}

.fa-landscape::before {
  content: "\e1b5";
}

.fa-tank-water::before {
  content: "\e452";
}

.fa-curling-stone::before {
  content: "\f44a";
}

.fa-curling::before {
  content: "\f44a";
}

.fa-gamepad-modern::before {
  content: "\e5a2";
}

.fa-gamepad-alt::before {
  content: "\e5a2";
}

.fa-messages-question::before {
  content: "\e1e7";
}

.fa-book-bible::before {
  content: "\f647";
}

.fa-bible::before {
  content: "\f647";
}

.fa-o::before {
  content: "O";
}

.fa-suitcase-medical::before {
  content: "\f0fa";
}

.fa-medkit::before {
  content: "\f0fa";
}

.fa-briefcase-arrow-right::before {
  content: "\e2f2";
}

.fa-expand-wide::before {
  content: "\f320";
}

.fa-clock-eleven-thirty::before {
  content: "\e348";
}

.fa-rv::before {
  content: "\f7be";
}

.fa-user-secret::before {
  content: "\f21b";
}

.fa-otter::before {
  content: "\f700";
}

.fa-dreidel::before {
  content: "\f792";
}

.fa-person-dress::before {
  content: "\f182";
}

.fa-female::before {
  content: "\f182";
}

.fa-comment-dollar::before {
  content: "\f651";
}

.fa-business-time::before {
  content: "\f64a";
}

.fa-briefcase-clock::before {
  content: "\f64a";
}

.fa-flower-tulip::before {
  content: "\f801";
}

.fa-people-pants-simple::before {
  content: "\e21a";
}

.fa-cloud-drizzle::before {
  content: "\f738";
}

.fa-table-cells-large::before {
  content: "\f009";
}

.fa-th-large::before {
  content: "\f009";
}

.fa-book-tanakh::before {
  content: "\f827";
}

.fa-tanakh::before {
  content: "\f827";
}

.fa-solar-system::before {
  content: "\e02f";
}

.fa-seal-question::before {
  content: "\e243";
}

.fa-phone-volume::before {
  content: "\f2a0";
}

.fa-volume-control-phone::before {
  content: "\f2a0";
}

.fa-disc-drive::before {
  content: "\f8b5";
}

.fa-hat-cowboy-side::before {
  content: "\f8c1";
}

.fa-table-rows::before {
  content: "\e292";
}

.fa-rows::before {
  content: "\e292";
}

.fa-location-exclamation::before {
  content: "\f608";
}

.fa-map-marker-exclamation::before {
  content: "\f608";
}

.fa-face-fearful::before {
  content: "\e375";
}

.fa-clipboard-user::before {
  content: "\f7f3";
}

.fa-bus-school::before {
  content: "\f5dd";
}

.fa-film-slash::before {
  content: "\e179";
}

.fa-square-arrow-down-right::before {
  content: "\e262";
}

.fa-book-sparkles::before {
  content: "\f6b8";
}

.fa-book-spells::before {
  content: "\f6b8";
}

.fa-washing-machine::before {
  content: "\f898";
}

.fa-washer::before {
  content: "\f898";
}

.fa-child::before {
  content: "\f1ae";
}

.fa-lira-sign::before {
  content: "\f195";
}

.fa-user-visor::before {
  content: "\e04c";
}

.fa-file-plus-minus::before {
  content: "\e177";
}

.fa-chess-clock-flip::before {
  content: "\f43e";
}

.fa-chess-clock-alt::before {
  content: "\f43e";
}

.fa-satellite::before {
  content: "\f7bf";
}

.fa-truck-fire::before {
  content: "\e65a";
}

.fa-plane-lock::before {
  content: "\e558";
}

.fa-steering-wheel::before {
  content: "\f622";
}

.fa-tag::before {
  content: "\f02b";
}

.fa-stretcher::before {
  content: "\f825";
}

.fa-book-section::before {
  content: "\e0c1";
}

.fa-book-law::before {
  content: "\e0c1";
}

.fa-inboxes::before {
  content: "\e1bb";
}

.fa-coffee-bean::before {
  content: "\e13e";
}

.fa-circle-yen::before {
  content: "\e5d0";
}

.fa-brackets-curly::before {
  content: "\f7ea";
}

.fa-ellipsis-stroke-vertical::before {
  content: "\f39c";
}

.fa-ellipsis-v-alt::before {
  content: "\f39c";
}

.fa-comment::before {
  content: "\f075";
}

.fa-square-1::before {
  content: "\e256";
}

.fa-cake-candles::before {
  content: "\f1fd";
}

.fa-birthday-cake::before {
  content: "\f1fd";
}

.fa-cake::before {
  content: "\f1fd";
}

.fa-head-side::before {
  content: "\f6e9";
}

.fa-truck-ladder::before {
  content: "\e657";
}

.fa-envelope::before {
  content: "\f0e0";
}

.fa-dolly-empty::before {
  content: "\f473";
}

.fa-face-tissue::before {
  content: "\e39c";
}

.fa-angles-up::before {
  content: "\f102";
}

.fa-angle-double-up::before {
  content: "\f102";
}

.fa-bin-recycle::before {
  content: "\e5f7";
}

.fa-paperclip::before {
  content: "\f0c6";
}

.fa-chart-line-down::before {
  content: "\f64d";
}

.fa-arrow-right-to-city::before {
  content: "\e4b3";
}

.fa-lock-a::before {
  content: "\e422";
}

.fa-ribbon::before {
  content: "\f4d6";
}

.fa-lungs::before {
  content: "\f604";
}

.fa-person-pinball::before {
  content: "\e21d";
}

.fa-arrow-up-9-1::before {
  content: "\f887";
}

.fa-sort-numeric-up-alt::before {
  content: "\f887";
}

.fa-apple-core::before {
  content: "\e08f";
}

.fa-circle-y::before {
  content: "\e12f";
}

.fa-h6::before {
  content: "\e413";
}

.fa-litecoin-sign::before {
  content: "\e1d3";
}

.fa-circle-small::before {
  content: "\e122";
}

.fa-border-none::before {
  content: "\f850";
}

.fa-arrow-turn-down-left::before {
  content: "\e2e1";
}

.fa-circle-nodes::before {
  content: "\e4e2";
}

.fa-parachute-box::before {
  content: "\f4cd";
}

.fa-reflect-horizontal::before {
  content: "\e664";
}

.fa-message-medical::before {
  content: "\f7f4";
}

.fa-comment-alt-medical::before {
  content: "\f7f4";
}

.fa-rugby-ball::before {
  content: "\e3c6";
}

.fa-comment-music::before {
  content: "\f8b0";
}

.fa-indent::before {
  content: "\f03c";
}

.fa-tree-deciduous::before {
  content: "\f400";
}

.fa-tree-alt::before {
  content: "\f400";
}

.fa-puzzle-piece-simple::before {
  content: "\e231";
}

.fa-puzzle-piece-alt::before {
  content: "\e231";
}

.fa-truck-field-un::before {
  content: "\e58e";
}

.fa-nfc-trash::before {
  content: "\e1fd";
}

.fa-hourglass::before {
  content: "\f254";
}

.fa-hourglass-empty::before {
  content: "\f254";
}

.fa-mountain::before {
  content: "\f6fc";
}

.fa-file-xmark::before {
  content: "\f317";
}

.fa-file-times::before {
  content: "\f317";
}

.fa-house-heart::before {
  content: "\f4c9";
}

.fa-home-heart::before {
  content: "\f4c9";
}

.fa-house-chimney-blank::before {
  content: "\e3b0";
}

.fa-meter-bolt::before {
  content: "\e1e9";
}

.fa-user-doctor::before {
  content: "\f0f0";
}

.fa-user-md::before {
  content: "\f0f0";
}

.fa-slash-back::before {
  content: "\\";
}

.fa-circle-info::before {
  content: "\f05a";
}

.fa-info-circle::before {
  content: "\f05a";
}

.fa-fishing-rod::before {
  content: "\e3a8";
}

.fa-hammer-crash::before {
  content: "\e414";
}

.fa-message-heart::before {
  content: "\e5c9";
}

.fa-cloud-meatball::before {
  content: "\f73b";
}

.fa-camera-polaroid::before {
  content: "\f8aa";
}

.fa-camera::before {
  content: "\f030";
}

.fa-camera-alt::before {
  content: "\f030";
}

.fa-square-virus::before {
  content: "\e578";
}

.fa-cart-arrow-up::before {
  content: "\e3ee";
}

.fa-meteor::before {
  content: "\f753";
}

.fa-car-on::before {
  content: "\e4dd";
}

.fa-sleigh::before {
  content: "\f7cc";
}

.fa-arrow-down-1-9::before {
  content: "\f162";
}

.fa-sort-numeric-asc::before {
  content: "\f162";
}

.fa-sort-numeric-down::before {
  content: "\f162";
}

.fa-buoy-mooring::before {
  content: "\e5b6";
}

.fa-square-4::before {
  content: "\e259";
}

.fa-hand-holding-droplet::before {
  content: "\f4c1";
}

.fa-hand-holding-water::before {
  content: "\f4c1";
}

.fa-file-eps::before {
  content: "\e644";
}

.fa-tricycle-adult::before {
  content: "\e5c4";
}

.fa-waveform::before {
  content: "\f8f1";
}

.fa-water::before {
  content: "\f773";
}

.fa-star-sharp-half-stroke::before {
  content: "\e28d";
}

.fa-star-sharp-half-alt::before {
  content: "\e28d";
}

.fa-nfc-signal::before {
  content: "\e1fb";
}

.fa-plane-prop::before {
  content: "\e22b";
}

.fa-calendar-check::before {
  content: "\f274";
}

.fa-clock-desk::before {
  content: "\e134";
}

.fa-calendar-clock::before {
  content: "\e0d2";
}

.fa-calendar-time::before {
  content: "\e0d2";
}

.fa-braille::before {
  content: "\f2a1";
}

.fa-prescription-bottle-medical::before {
  content: "\f486";
}

.fa-prescription-bottle-alt::before {
  content: "\f486";
}

.fa-plate-utensils::before {
  content: "\e43b";
}

.fa-family-pants::before {
  content: "\e302";
}

.fa-hose-reel::before {
  content: "\e41a";
}

.fa-house-window::before {
  content: "\e3b3";
}

.fa-landmark::before {
  content: "\f66f";
}

.fa-truck::before {
  content: "\f0d1";
}

.fa-music-magnifying-glass::before {
  content: "\e662";
}

.fa-crosshairs::before {
  content: "\f05b";
}

.fa-cloud-rainbow::before {
  content: "\f73e";
}

.fa-person-cane::before {
  content: "\e53c";
}

.fa-alien::before {
  content: "\f8f5";
}

.fa-tent::before {
  content: "\e57d";
}

.fa-laptop-binary::before {
  content: "\e5e7";
}

.fa-vest-patches::before {
  content: "\e086";
}

.fa-people-dress-simple::before {
  content: "\e218";
}

.fa-check-double::before {
  content: "\f560";
}

.fa-arrow-down-a-z::before {
  content: "\f15d";
}

.fa-sort-alpha-asc::before {
  content: "\f15d";
}

.fa-sort-alpha-down::before {
  content: "\f15d";
}

.fa-bowling-ball-pin::before {
  content: "\e0c3";
}

.fa-bell-school-slash::before {
  content: "\f5d6";
}

.fa-plus-large::before {
  content: "\e59e";
}

.fa-money-bill-wheat::before {
  content: "\e52a";
}

.fa-camera-viewfinder::before {
  content: "\e0da";
}

.fa-screenshot::before {
  content: "\e0da";
}

.fa-message-music::before {
  content: "\f8af";
}

.fa-comment-alt-music::before {
  content: "\f8af";
}

.fa-car-building::before {
  content: "\f859";
}

.fa-border-bottom-right::before {
  content: "\f854";
}

.fa-border-style-alt::before {
  content: "\f854";
}

.fa-octagon::before {
  content: "\f306";
}

.fa-comment-arrow-up-right::before {
  content: "\e145";
}

.fa-octagon-divide::before {
  content: "\e203";
}

.fa-cookie::before {
  content: "\f563";
}

.fa-arrow-rotate-left::before {
  content: "\f0e2";
}

.fa-arrow-left-rotate::before {
  content: "\f0e2";
}

.fa-arrow-rotate-back::before {
  content: "\f0e2";
}

.fa-arrow-rotate-backward::before {
  content: "\f0e2";
}

.fa-undo::before {
  content: "\f0e2";
}

.fa-tv-music::before {
  content: "\f8e6";
}

.fa-hard-drive::before {
  content: "\f0a0";
}

.fa-hdd::before {
  content: "\f0a0";
}

.fa-reel::before {
  content: "\e238";
}

.fa-face-grin-squint-tears::before {
  content: "\f586";
}

.fa-grin-squint-tears::before {
  content: "\f586";
}

.fa-dumbbell::before {
  content: "\f44b";
}

.fa-rectangle-list::before {
  content: "\f022";
}

.fa-list-alt::before {
  content: "\f022";
}

.fa-tarp-droplet::before {
  content: "\e57c";
}

.fa-alarm-exclamation::before {
  content: "\f843";
}

.fa-house-medical-circle-check::before {
  content: "\e511";
}

.fa-traffic-cone::before {
  content: "\f636";
}

.fa-grate::before {
  content: "\e193";
}

.fa-arrow-down-right::before {
  content: "\e093";
}

.fa-person-skiing-nordic::before {
  content: "\f7ca";
}

.fa-skiing-nordic::before {
  content: "\f7ca";
}

.fa-calendar-plus::before {
  content: "\f271";
}

.fa-person-from-portal::before {
  content: "\e023";
}

.fa-portal-exit::before {
  content: "\e023";
}

.fa-plane-arrival::before {
  content: "\f5af";
}

.fa-cowbell-circle-plus::before {
  content: "\f8b4";
}

.fa-cowbell-more::before {
  content: "\f8b4";
}

.fa-circle-left::before {
  content: "\f359";
}

.fa-arrow-alt-circle-left::before {
  content: "\f359";
}

.fa-distribute-spacing-vertical::before {
  content: "\e366";
}

.fa-signal-bars-fair::before {
  content: "\f692";
}

.fa-signal-alt-2::before {
  content: "\f692";
}

.fa-sportsball::before {
  content: "\e44b";
}

.fa-game-console-handheld-crank::before {
  content: "\e5b9";
}

.fa-train-subway::before {
  content: "\f239";
}

.fa-subway::before {
  content: "\f239";
}

.fa-chart-gantt::before {
  content: "\e0e4";
}

.fa-face-smile-upside-down::before {
  content: "\e395";
}

.fa-ball-pile::before {
  content: "\f77e";
}

.fa-badge-dollar::before {
  content: "\f645";
}

.fa-money-bills-simple::before {
  content: "\e1f4";
}

.fa-money-bills-alt::before {
  content: "\e1f4";
}

.fa-list-timeline::before {
  content: "\e1d1";
}

.fa-indian-rupee-sign::before {
  content: "\e1bc";
}

.fa-indian-rupee::before {
  content: "\e1bc";
}

.fa-inr::before {
  content: "\e1bc";
}

.fa-crop-simple::before {
  content: "\f565";
}

.fa-crop-alt::before {
  content: "\f565";
}

.fa-money-bill-1::before {
  content: "\f3d1";
}

.fa-money-bill-alt::before {
  content: "\f3d1";
}

.fa-left-long::before {
  content: "\f30a";
}

.fa-long-arrow-alt-left::before {
  content: "\f30a";
}

.fa-keyboard-down::before {
  content: "\e1c2";
}

.fa-circle-up-right::before {
  content: "\e129";
}

.fa-cloud-bolt-moon::before {
  content: "\f76d";
}

.fa-thunderstorm-moon::before {
  content: "\f76d";
}

.fa-turn-left-up::before {
  content: "\e638";
}

.fa-dna::before {
  content: "\f471";
}

.fa-virus-slash::before {
  content: "\e075";
}

.fa-bracket-round-right::before {
  content: "\)";
}

.fa-circle-sterling::before {
  content: "\e5cf";
}

.fa-circle-5::before {
  content: "\e0f2";
}

.fa-minus::before {
  content: "\f068";
}

.fa-subtract::before {
  content: "\f068";
}

.fa-fire-flame::before {
  content: "\f6df";
}

.fa-flame::before {
  content: "\f6df";
}

.fa-right-to-line::before {
  content: "\f34c";
}

.fa-arrow-alt-to-right::before {
  content: "\f34c";
}

.fa-gif::before {
  content: "\e190";
}

.fa-chess::before {
  content: "\f439";
}

.fa-trash-slash::before {
  content: "\e2b3";
}

.fa-arrow-left-long::before {
  content: "\f177";
}

.fa-long-arrow-left::before {
  content: "\f177";
}

.fa-plug-circle-check::before {
  content: "\e55c";
}

.fa-font-case::before {
  content: "\f866";
}

.fa-street-view::before {
  content: "\f21d";
}

.fa-arrow-down-left::before {
  content: "\e091";
}

.fa-franc-sign::before {
  content: "\e18f";
}

.fa-flask-round-poison::before {
  content: "\f6e0";
}

.fa-flask-poison::before {
  content: "\f6e0";
}

.fa-volume-off::before {
  content: "\f026";
}

.fa-book-circle-arrow-right::before {
  content: "\e0bc";
}

.fa-chart-user::before {
  content: "\f6a3";
}

.fa-user-chart::before {
  content: "\f6a3";
}

.fa-hands-asl-interpreting::before {
  content: "\f2a3";
}

.fa-american-sign-language-interpreting::before {
  content: "\f2a3";
}

.fa-asl-interpreting::before {
  content: "\f2a3";
}

.fa-hands-american-sign-language-interpreting::before {
  content: "\f2a3";
}

.fa-presentation-screen::before {
  content: "\f685";
}

.fa-presentation::before {
  content: "\f685";
}

.fa-circle-bolt::before {
  content: "\e0fe";
}

.fa-face-smile-halo::before {
  content: "\e38f";
}

.fa-cart-circle-arrow-down::before {
  content: "\e3ef";
}

.fa-house-person-return::before {
  content: "\e011";
}

.fa-house-person-arrive::before {
  content: "\e011";
}

.fa-house-return::before {
  content: "\e011";
}

.fa-message-xmark::before {
  content: "\f4ab";
}

.fa-comment-alt-times::before {
  content: "\f4ab";
}

.fa-message-times::before {
  content: "\f4ab";
}

.fa-file-certificate::before {
  content: "\f5f3";
}

.fa-file-award::before {
  content: "\f5f3";
}

.fa-user-doctor-hair-long::before {
  content: "\e459";
}

.fa-camera-security::before {
  content: "\f8fe";
}

.fa-camera-home::before {
  content: "\f8fe";
}

.fa-gear::before {
  content: "\f013";
}

.fa-cog::before {
  content: "\f013";
}

.fa-droplet-slash::before {
  content: "\f5c7";
}

.fa-tint-slash::before {
  content: "\f5c7";
}

.fa-book-heart::before {
  content: "\f499";
}

.fa-mosque::before {
  content: "\f678";
}

.fa-duck::before {
  content: "\f6d8";
}

.fa-mosquito::before {
  content: "\e52b";
}

.fa-star-of-david::before {
  content: "\f69a";
}

.fa-flag-swallowtail::before {
  content: "\f74c";
}

.fa-flag-alt::before {
  content: "\f74c";
}

.fa-person-military-rifle::before {
  content: "\e54b";
}

.fa-car-garage::before {
  content: "\f5e2";
}

.fa-cart-shopping::before {
  content: "\f07a";
}

.fa-shopping-cart::before {
  content: "\f07a";
}

.fa-book-font::before {
  content: "\e0bf";
}

.fa-shield-plus::before {
  content: "\e24a";
}

.fa-vials::before {
  content: "\f493";
}

.fa-eye-dropper-full::before {
  content: "\e172";
}

.fa-distribute-spacing-horizontal::before {
  content: "\e365";
}

.fa-tablet-rugged::before {
  content: "\f48f";
}

.fa-temperature-snow::before {
  content: "\f768";
}

.fa-temperature-frigid::before {
  content: "\f768";
}

.fa-moped::before {
  content: "\e3b9";
}

.fa-face-smile-plus::before {
  content: "\f5b9";
}

.fa-smile-plus::before {
  content: "\f5b9";
}

.fa-radio-tuner::before {
  content: "\f8d8";
}

.fa-radio-alt::before {
  content: "\f8d8";
}

.fa-face-swear::before {
  content: "\e399";
}

.fa-water-arrow-down::before {
  content: "\f774";
}

.fa-water-lower::before {
  content: "\f774";
}

.fa-scanner-touchscreen::before {
  content: "\f48a";
}

.fa-circle-7::before {
  content: "\e0f4";
}

.fa-plug-circle-plus::before {
  content: "\e55f";
}

.fa-person-ski-jumping::before {
  content: "\f7c7";
}

.fa-ski-jump::before {
  content: "\f7c7";
}

.fa-place-of-worship::before {
  content: "\f67f";
}

.fa-water-arrow-up::before {
  content: "\f775";
}

.fa-water-rise::before {
  content: "\f775";
}

.fa-waveform-lines::before {
  content: "\f8f2";
}

.fa-waveform-path::before {
  content: "\f8f2";
}

.fa-split::before {
  content: "\e254";
}

.fa-film-canister::before {
  content: "\f8b7";
}

.fa-film-cannister::before {
  content: "\f8b7";
}

.fa-folder-xmark::before {
  content: "\f65f";
}

.fa-folder-times::before {
  content: "\f65f";
}

.fa-toilet-paper-blank::before {
  content: "\f71f";
}

.fa-toilet-paper-alt::before {
  content: "\f71f";
}

.fa-tablet-screen::before {
  content: "\f3fc";
}

.fa-tablet-android-alt::before {
  content: "\f3fc";
}

.fa-hexagon-vertical-nft-slanted::before {
  content: "\e506";
}

.fa-folder-music::before {
  content: "\e18d";
}

.fa-display-medical::before {
  content: "\e166";
}

.fa-desktop-medical::before {
  content: "\e166";
}

.fa-share-all::before {
  content: "\f367";
}

.fa-peapod::before {
  content: "\e31c";
}

.fa-chess-clock::before {
  content: "\f43d";
}

.fa-axe::before {
  content: "\f6b2";
}

.fa-square-d::before {
  content: "\e268";
}

.fa-grip-vertical::before {
  content: "\f58e";
}

.fa-mobile-signal-out::before {
  content: "\e1f0";
}

.fa-arrow-turn-up::before {
  content: "\f148";
}

.fa-level-up::before {
  content: "\f148";
}

.fa-u::before {
  content: "U";
}

.fa-arrow-up-from-dotted-line::before {
  content: "\e09b";
}

.fa-square-root-variable::before {
  content: "\f698";
}

.fa-square-root-alt::before {
  content: "\f698";
}

.fa-light-switch-on::before {
  content: "\e019";
}

.fa-arrow-down-arrow-up::before {
  content: "\f883";
}

.fa-sort-alt::before {
  content: "\f883";
}

.fa-raindrops::before {
  content: "\f75c";
}

.fa-dash::before {
  content: "\e404";
}

.fa-minus-large::before {
  content: "\e404";
}

.fa-clock::before {
  content: "\f017";
}

.fa-clock-four::before {
  content: "\f017";
}

.fa-input-numeric::before {
  content: "\e1bd";
}

.fa-truck-tow::before {
  content: "\e2b8";
}

.fa-backward-step::before {
  content: "\f048";
}

.fa-step-backward::before {
  content: "\f048";
}

.fa-pallet::before {
  content: "\f482";
}

.fa-car-bolt::before {
  content: "\e341";
}

.fa-arrows-maximize::before {
  content: "\f31d";
}

.fa-expand-arrows::before {
  content: "\f31d";
}

.fa-faucet::before {
  content: "\e005";
}

.fa-cloud-sleet::before {
  content: "\f741";
}

.fa-lamp-street::before {
  content: "\e1c5";
}

.fa-list-radio::before {
  content: "\e1d0";
}

.fa-pen-nib-slash::before {
  content: "\e4a1";
}

.fa-baseball-bat-ball::before {
  content: "\f432";
}

.fa-square-up-left::before {
  content: "\e282";
}

.fa-overline::before {
  content: "\f876";
}

.fa-s::before {
  content: "S";
}

.fa-timeline::before {
  content: "\e29c";
}

.fa-keyboard::before {
  content: "\f11c";
}

.fa-arrows-from-dotted-line::before {
  content: "\e0a3";
}

.fa-usb-drive::before {
  content: "\f8e9";
}

.fa-ballot::before {
  content: "\f732";
}

.fa-caret-down::before {
  content: "\f0d7";
}

.fa-location-dot-slash::before {
  content: "\f605";
}

.fa-map-marker-alt-slash::before {
  content: "\f605";
}

.fa-cards::before {
  content: "\e3ed";
}

.fa-house-chimney-medical::before {
  content: "\f7f2";
}

.fa-clinic-medical::before {
  content: "\f7f2";
}

.fa-boxing-glove::before {
  content: "\f438";
}

.fa-glove-boxing::before {
  content: "\f438";
}

.fa-temperature-three-quarters::before {
  content: "\f2c8";
}

.fa-temperature-3::before {
  content: "\f2c8";
}

.fa-thermometer-3::before {
  content: "\f2c8";
}

.fa-thermometer-three-quarters::before {
  content: "\f2c8";
}

.fa-bell-school::before {
  content: "\f5d5";
}

.fa-mobile-screen::before {
  content: "\f3cf";
}

.fa-mobile-android-alt::before {
  content: "\f3cf";
}

.fa-plane-up::before {
  content: "\e22d";
}

.fa-folder-heart::before {
  content: "\e189";
}

.fa-circle-location-arrow::before {
  content: "\f602";
}

.fa-location-circle::before {
  content: "\f602";
}

.fa-face-head-bandage::before {
  content: "\e37a";
}

.fa-sushi-roll::before {
  content: "\e48b";
}

.fa-maki-roll::before {
  content: "\e48b";
}

.fa-makizushi::before {
  content: "\e48b";
}

.fa-car-bump::before {
  content: "\f5e0";
}

.fa-piggy-bank::before {
  content: "\f4d3";
}

.fa-racquet::before {
  content: "\f45a";
}

.fa-car-mirrors::before {
  content: "\e343";
}

.fa-industry-windows::before {
  content: "\f3b3";
}

.fa-industry-alt::before {
  content: "\f3b3";
}

.fa-bolt-auto::before {
  content: "\e0b6";
}

.fa-battery-half::before {
  content: "\f242";
}

.fa-battery-3::before {
  content: "\f242";
}

.fa-flux-capacitor::before {
  content: "\f8ba";
}

.fa-mountain-city::before {
  content: "\e52e";
}

.fa-coins::before {
  content: "\f51e";
}

.fa-honey-pot::before {
  content: "\e418";
}

.fa-olive::before {
  content: "\e316";
}

.fa-khanda::before {
  content: "\f66d";
}

.fa-filter-list::before {
  content: "\e17c";
}

.fa-outlet::before {
  content: "\e01c";
}

.fa-sliders::before {
  content: "\f1de";
}

.fa-sliders-h::before {
  content: "\f1de";
}

.fa-cauldron::before {
  content: "\f6bf";
}

.fa-people::before {
  content: "\e216";
}

.fa-folder-tree::before {
  content: "\f802";
}

.fa-network-wired::before {
  content: "\f6ff";
}

.fa-croissant::before {
  content: "\f7f6";
}

.fa-map-pin::before {
  content: "\f276";
}

.fa-hamsa::before {
  content: "\f665";
}

.fa-cent-sign::before {
  content: "\e3f5";
}

.fa-swords-laser::before {
  content: "\e03d";
}

.fa-flask::before {
  content: "\f0c3";
}

.fa-person-pregnant::before {
  content: "\e31e";
}

.fa-square-u::before {
  content: "\e281";
}

.fa-wand-sparkles::before {
  content: "\f72b";
}

.fa-router::before {
  content: "\f8da";
}

.fa-ellipsis-vertical::before {
  content: "\f142";
}

.fa-ellipsis-v::before {
  content: "\f142";
}

.fa-sword-laser-alt::before {
  content: "\e03c";
}

.fa-ticket::before {
  content: "\f145";
}

.fa-power-off::before {
  content: "\f011";
}

.fa-coin::before {
  content: "\f85c";
}

.fa-laptop-slash::before {
  content: "\e1c7";
}

.fa-right-long::before {
  content: "\f30b";
}

.fa-long-arrow-alt-right::before {
  content: "\f30b";
}

.fa-circle-b::before {
  content: "\e0fd";
}

.fa-person-dress-simple::before {
  content: "\e21c";
}

.fa-pipe-collar::before {
  content: "\e437";
}

.fa-lights-holiday::before {
  content: "\f7b2";
}

.fa-citrus::before {
  content: "\e2f4";
}

.fa-flag-usa::before {
  content: "\f74d";
}

.fa-laptop-file::before {
  content: "\e51d";
}

.fa-tty::before {
  content: "\f1e4";
}

.fa-teletype::before {
  content: "\f1e4";
}

.fa-chart-tree-map::before {
  content: "\e0ea";
}

.fa-diagram-next::before {
  content: "\e476";
}

.fa-person-rifle::before {
  content: "\e54e";
}

.fa-clock-five-thirty::before {
  content: "\e34a";
}

.fa-pipe-valve::before {
  content: "\e439";
}

.fa-arrow-up-from-arc::before {
  content: "\e4b4";
}

.fa-face-spiral-eyes::before {
  content: "\e485";
}

.fa-compress-wide::before {
  content: "\f326";
}

.fa-circle-phone-hangup::before {
  content: "\e11d";
}

.fa-phone-circle-down::before {
  content: "\e11d";
}

.fa-gear-complex-code::before {
  content: "\e5eb";
}

.fa-house-medical-circle-exclamation::before {
  content: "\e512";
}

.fa-badminton::before {
  content: "\e33a";
}

.fa-closed-captioning::before {
  content: "\f20a";
}

.fa-person-hiking::before {
  content: "\f6ec";
}

.fa-hiking::before {
  content: "\f6ec";
}

.fa-right-from-line::before {
  content: "\f347";
}

.fa-arrow-alt-from-left::before {
  content: "\f347";
}

.fa-venus-double::before {
  content: "\f226";
}

.fa-images::before {
  content: "\f302";
}

.fa-calculator::before {
  content: "\f1ec";
}

.fa-shuttlecock::before {
  content: "\f45b";
}

.fa-user-hair::before {
  content: "\e45a";
}

.fa-eye-evil::before {
  content: "\f6db";
}

.fa-people-pulling::before {
  content: "\e535";
}

.fa-n::before {
  content: "N";
}

.fa-swap::before {
  content: "\e609";
}

.fa-garage::before {
  content: "\e009";
}

.fa-cable-car::before {
  content: "\f7da";
}

.fa-tram::before {
  content: "\f7da";
}

.fa-shovel-snow::before {
  content: "\f7c3";
}

.fa-cloud-rain::before {
  content: "\f73d";
}

.fa-face-lying::before {
  content: "\e37e";
}

.fa-sprinkler::before {
  content: "\e035";
}

.fa-building-circle-xmark::before {
  content: "\e4d4";
}

.fa-person-sledding::before {
  content: "\f7cb";
}

.fa-sledding::before {
  content: "\f7cb";
}

.fa-game-console-handheld::before {
  content: "\f8bb";
}

.fa-ship::before {
  content: "\f21a";
}

.fa-clock-six-thirty::before {
  content: "\e353";
}

.fa-battery-slash::before {
  content: "\f377";
}

.fa-tugrik-sign::before {
  content: "\e2ba";
}

.fa-arrows-down-to-line::before {
  content: "\e4b8";
}

.fa-download::before {
  content: "\f019";
}

.fa-angles-up-down::before {
  content: "\e60d";
}

.fa-shelves::before {
  content: "\f480";
}

.fa-inventory::before {
  content: "\f480";
}

.fa-cloud-snow::before {
  content: "\f742";
}

.fa-face-grin::before {
  content: "\f580";
}

.fa-grin::before {
  content: "\f580";
}

.fa-delete-left::before {
  content: "\f55a";
}

.fa-backspace::before {
  content: "\f55a";
}

.fa-oven::before {
  content: "\e01d";
}

.fa-cloud-binary::before {
  content: "\e601";
}

.fa-eye-dropper::before {
  content: "\f1fb";
}

.fa-eye-dropper-empty::before {
  content: "\f1fb";
}

.fa-eyedropper::before {
  content: "\f1fb";
}

.fa-comment-captions::before {
  content: "\e146";
}

.fa-comments-question::before {
  content: "\e14e";
}

.fa-scribble::before {
  content: "\e23f";
}

.fa-rotate-exclamation::before {
  content: "\e23c";
}

.fa-file-circle-check::before {
  content: "\e5a0";
}

.fa-glass::before {
  content: "\f804";
}

.fa-loader::before {
  content: "\e1d4";
}

.fa-forward::before {
  content: "\f04e";
}

.fa-user-pilot::before {
  content: "\e2c0";
}

.fa-mobile::before {
  content: "\f3ce";
}

.fa-mobile-android::before {
  content: "\f3ce";
}

.fa-mobile-phone::before {
  content: "\f3ce";
}

.fa-code-pull-request-closed::before {
  content: "\e3f9";
}

.fa-face-meh::before {
  content: "\f11a";
}

.fa-meh::before {
  content: "\f11a";
}

.fa-align-center::before {
  content: "\f037";
}

.fa-book-skull::before {
  content: "\f6b7";
}

.fa-book-dead::before {
  content: "\f6b7";
}

.fa-id-card::before {
  content: "\f2c2";
}

.fa-drivers-license::before {
  content: "\f2c2";
}

.fa-face-dotted::before {
  content: "\e47f";
}

.fa-face-worried::before {
  content: "\e3a3";
}

.fa-outdent::before {
  content: "\f03b";
}

.fa-dedent::before {
  content: "\f03b";
}

.fa-court-sport::before {
  content: "\e643";
}

.fa-heart-circle-exclamation::before {
  content: "\e4fe";
}

.fa-house::before {
  content: "\f015";
}

.fa-home::before {
  content: "\f015";
}

.fa-home-alt::before {
  content: "\f015";
}

.fa-home-lg-alt::before {
  content: "\f015";
}

.fa-vector-circle::before {
  content: "\e2c6";
}

.fa-car-circle-bolt::before {
  content: "\e342";
}

.fa-calendar-week::before {
  content: "\f784";
}

.fa-flying-disc::before {
  content: "\e3a9";
}

.fa-laptop-medical::before {
  content: "\f812";
}

.fa-square-down-right::before {
  content: "\e26c";
}

.fa-b::before {
  content: "B";
}

.fa-seat-airline::before {
  content: "\e244";
}

.fa-moon-over-sun::before {
  content: "\f74a";
}

.fa-eclipse-alt::before {
  content: "\f74a";
}

.fa-pipe::before {
  content: "\|";
}

.fa-file-medical::before {
  content: "\f477";
}

.fa-potato::before {
  content: "\e440";
}

.fa-dice-one::before {
  content: "\f525";
}

.fa-circle-a::before {
  content: "\e0f7";
}

.fa-helmet-battle::before {
  content: "\f6eb";
}

.fa-butter::before {
  content: "\e3e4";
}

.fa-blanket-fire::before {
  content: "\e3da";
}

.fa-kiwi-bird::before {
  content: "\f535";
}

.fa-castle::before {
  content: "\e0de";
}

.fa-golf-club::before {
  content: "\f451";
}

.fa-arrow-right-arrow-left::before {
  content: "\f0ec";
}

.fa-exchange::before {
  content: "\f0ec";
}

.fa-rotate-right::before {
  content: "\f2f9";
}

.fa-redo-alt::before {
  content: "\f2f9";
}

.fa-rotate-forward::before {
  content: "\f2f9";
}

.fa-utensils::before {
  content: "\f2e7";
}

.fa-cutlery::before {
  content: "\f2e7";
}

.fa-arrow-up-wide-short::before {
  content: "\f161";
}

.fa-sort-amount-up::before {
  content: "\f161";
}

.fa-chart-pie-simple-circle-dollar::before {
  content: "\e605";
}

.fa-balloons::before {
  content: "\e2e4";
}

.fa-mill-sign::before {
  content: "\e1ed";
}

.fa-bowl-rice::before {
  content: "\e2eb";
}

.fa-timeline-arrow::before {
  content: "\e29d";
}

.fa-skull::before {
  content: "\f54c";
}

.fa-game-board-simple::before {
  content: "\f868";
}

.fa-game-board-alt::before {
  content: "\f868";
}

.fa-circle-video::before {
  content: "\e12b";
}

.fa-video-circle::before {
  content: "\e12b";
}

.fa-chart-scatter-bubble::before {
  content: "\e0e9";
}

.fa-house-turret::before {
  content: "\e1b4";
}

.fa-banana::before {
  content: "\e2e5";
}

.fa-hand-holding-skull::before {
  content: "\e1a4";
}

.fa-people-dress::before {
  content: "\e217";
}

.fa-loveseat::before {
  content: "\f4cc";
}

.fa-couch-small::before {
  content: "\f4cc";
}

.fa-tower-broadcast::before {
  content: "\f519";
}

.fa-broadcast-tower::before {
  content: "\f519";
}

.fa-truck-pickup::before {
  content: "\f63c";
}

.fa-block-quote::before {
  content: "\e0b5";
}

.fa-up-long::before {
  content: "\f30c";
}

.fa-long-arrow-alt-up::before {
  content: "\f30c";
}

.fa-stop::before {
  content: "\f04d";
}

.fa-code-merge::before {
  content: "\f387";
}

.fa-money-check-dollar-pen::before {
  content: "\f873";
}

.fa-money-check-edit-alt::before {
  content: "\f873";
}

.fa-up-from-line::before {
  content: "\f346";
}

.fa-arrow-alt-from-bottom::before {
  content: "\f346";
}

.fa-upload::before {
  content: "\f093";
}

.fa-hurricane::before {
  content: "\f751";
}

.fa-grid-round-2-plus::before {
  content: "\e5dc";
}

.fa-people-pants::before {
  content: "\e219";
}

.fa-mound::before {
  content: "\e52d";
}

.fa-windsock::before {
  content: "\f777";
}

.fa-circle-half::before {
  content: "\e110";
}

.fa-brake-warning::before {
  content: "\e0c7";
}

.fa-toilet-portable::before {
  content: "\e583";
}

.fa-compact-disc::before {
  content: "\f51f";
}

.fa-file-arrow-down::before {
  content: "\f56d";
}

.fa-file-download::before {
  content: "\f56d";
}

.fa-saxophone-fire::before {
  content: "\f8db";
}

.fa-sax-hot::before {
  content: "\f8db";
}

.fa-camera-web-slash::before {
  content: "\f833";
}

.fa-webcam-slash::before {
  content: "\f833";
}

.fa-folder-medical::before {
  content: "\e18c";
}

.fa-folder-gear::before {
  content: "\e187";
}

.fa-folder-cog::before {
  content: "\e187";
}

.fa-hand-wave::before {
  content: "\e1a7";
}

.fa-arrow-up-arrow-down::before {
  content: "\e099";
}

.fa-sort-up-down::before {
  content: "\e099";
}

.fa-caravan::before {
  content: "\f8ff";
}

.fa-shield-cat::before {
  content: "\e572";
}

.fa-message-slash::before {
  content: "\f4a9";
}

.fa-comment-alt-slash::before {
  content: "\f4a9";
}

.fa-bolt::before {
  content: "\f0e7";
}

.fa-zap::before {
  content: "\f0e7";
}

.fa-trash-can-check::before {
  content: "\e2a9";
}

.fa-glass-water::before {
  content: "\e4f4";
}

.fa-oil-well::before {
  content: "\e532";
}

.fa-person-simple::before {
  content: "\e220";
}

.fa-arrow-turn-left-up::before {
  content: "\e634";
}

.fa-vault::before {
  content: "\e2c5";
}

.fa-mars::before {
  content: "\f222";
}

.fa-toilet::before {
  content: "\f7d8";
}

.fa-plane-circle-xmark::before {
  content: "\e557";
}

.fa-yen-sign::before {
  content: "\f157";
}

.fa-cny::before {
  content: "\f157";
}

.fa-jpy::before {
  content: "\f157";
}

.fa-rmb::before {
  content: "\f157";
}

.fa-yen::before {
  content: "\f157";
}

.fa-gear-code::before {
  content: "\e5e8";
}

.fa-notes::before {
  content: "\e202";
}

.fa-ruble-sign::before {
  content: "\f158";
}

.fa-rouble::before {
  content: "\f158";
}

.fa-rub::before {
  content: "\f158";
}

.fa-ruble::before {
  content: "\f158";
}

.fa-trash-undo::before {
  content: "\f895";
}

.fa-trash-arrow-turn-left::before {
  content: "\f895";
}

.fa-champagne-glass::before {
  content: "\f79e";
}

.fa-glass-champagne::before {
  content: "\f79e";
}

.fa-objects-align-center-horizontal::before {
  content: "\e3bc";
}

.fa-sun::before {
  content: "\f185";
}

.fa-trash-can-slash::before {
  content: "\e2ad";
}

.fa-trash-alt-slash::before {
  content: "\e2ad";
}

.fa-screen-users::before {
  content: "\f63d";
}

.fa-users-class::before {
  content: "\f63d";
}

.fa-guitar::before {
  content: "\f7a6";
}

.fa-square-arrow-left::before {
  content: "\f33a";
}

.fa-arrow-square-left::before {
  content: "\f33a";
}

.fa-square-8::before {
  content: "\e25d";
}

.fa-face-smile-hearts::before {
  content: "\e390";
}

.fa-brackets-square::before {
  content: "\f7e9";
}

.fa-brackets::before {
  content: "\f7e9";
}

.fa-laptop-arrow-down::before {
  content: "\e1c6";
}

.fa-hockey-stick-puck::before {
  content: "\e3ae";
}

.fa-house-tree::before {
  content: "\e1b3";
}

.fa-signal-fair::before {
  content: "\f68d";
}

.fa-signal-2::before {
  content: "\f68d";
}

.fa-face-laugh-wink::before {
  content: "\f59c";
}

.fa-laugh-wink::before {
  content: "\f59c";
}

.fa-circle-dollar::before {
  content: "\f2e8";
}

.fa-dollar-circle::before {
  content: "\f2e8";
}

.fa-usd-circle::before {
  content: "\f2e8";
}

.fa-horse-head::before {
  content: "\f7ab";
}

.fa-arrows-repeat::before {
  content: "\f364";
}

.fa-repeat-alt::before {
  content: "\f364";
}

.fa-bore-hole::before {
  content: "\e4c3";
}

.fa-industry::before {
  content: "\f275";
}

.fa-image-polaroid::before {
  content: "\f8c4";
}

.fa-wave-triangle::before {
  content: "\f89a";
}

.fa-turn-left-down::before {
  content: "\e637";
}

.fa-person-running-fast::before {
  content: "\e5ff";
}

.fa-circle-down::before {
  content: "\f358";
}

.fa-arrow-alt-circle-down::before {
  content: "\f358";
}

.fa-grill::before {
  content: "\e5a3";
}

.fa-arrows-turn-to-dots::before {
  content: "\e4c1";
}

.fa-chart-mixed::before {
  content: "\f643";
}

.fa-analytics::before {
  content: "\f643";
}

.fa-florin-sign::before {
  content: "\e184";
}

.fa-arrow-down-short-wide::before {
  content: "\f884";
}

.fa-sort-amount-desc::before {
  content: "\f884";
}

.fa-sort-amount-down-alt::before {
  content: "\f884";
}

.fa-less-than::before {
  content: "\<";
}

.fa-display-code::before {
  content: "\e165";
}

.fa-desktop-code::before {
  content: "\e165";
}

.fa-face-drooling::before {
  content: "\e372";
}

.fa-oil-temperature::before {
  content: "\f614";
}

.fa-oil-temp::before {
  content: "\f614";
}

.fa-square-question::before {
  content: "\f2fd";
}

.fa-question-square::before {
  content: "\f2fd";
}

.fa-air-conditioner::before {
  content: "\f8f4";
}

.fa-angle-down::before {
  content: "\f107";
}

.fa-mountains::before {
  content: "\f6fd";
}

.fa-omega::before {
  content: "\f67a";
}

.fa-car-tunnel::before {
  content: "\e4de";
}

.fa-person-dolly-empty::before {
  content: "\f4d1";
}

.fa-pan-food::before {
  content: "\e42b";
}

.fa-head-side-cough::before {
  content: "\e061";
}

.fa-grip-lines::before {
  content: "\f7a4";
}

.fa-thumbs-down::before {
  content: "\f165";
}

.fa-user-lock::before {
  content: "\f502";
}

.fa-arrow-right-long::before {
  content: "\f178";
}

.fa-long-arrow-right::before {
  content: "\f178";
}

.fa-tickets-airline::before {
  content: "\e29b";
}

.fa-tickets-perforated-plane::before {
  content: "\e29b";
}

.fa-tickets-plane::before {
  content: "\e29b";
}

.fa-tent-double-peak::before {
  content: "\e627";
}

.fa-anchor-circle-xmark::before {
  content: "\e4ac";
}

.fa-ellipsis::before {
  content: "\f141";
}

.fa-ellipsis-h::before {
  content: "\f141";
}

.fa-nfc-slash::before {
  content: "\e1fc";
}

.fa-chess-pawn::before {
  content: "\f443";
}

.fa-kit-medical::before {
  content: "\f479";
}

.fa-first-aid::before {
  content: "\f479";
}

.fa-grid-2-plus::before {
  content: "\e197";
}

.fa-bells::before {
  content: "\f77f";
}

.fa-person-through-window::before {
  content: "\e5a9";
}

.fa-toolbox::before {
  content: "\f552";
}

.fa-envelope-dot::before {
  content: "\e16f";
}

.fa-envelope-badge::before {
  content: "\e16f";
}

.fa-magnifying-glass-waveform::before {
  content: "\e661";
}

.fa-hands-holding-circle::before {
  content: "\e4fb";
}

.fa-bug::before {
  content: "\f188";
}

.fa-bowl-chopsticks::before {
  content: "\e2e9";
}

.fa-credit-card::before {
  content: "\f09d";
}

.fa-credit-card-alt::before {
  content: "\f09d";
}

.fa-circle-s::before {
  content: "\e121";
}

.fa-box-ballot::before {
  content: "\f735";
}

.fa-car::before {
  content: "\f1b9";
}

.fa-automobile::before {
  content: "\f1b9";
}

.fa-hand-holding-hand::before {
  content: "\e4f7";
}

.fa-user-tie-hair::before {
  content: "\e45f";
}

.fa-podium-star::before {
  content: "\f758";
}

.fa-user-hair-mullet::before {
  content: "\e45c";
}

.fa-business-front::before {
  content: "\e45c";
}

.fa-party-back::before {
  content: "\e45c";
}

.fa-trian-balbot::before {
  content: "\e45c";
}

.fa-microphone-stand::before {
  content: "\f8cb";
}

.fa-book-open-reader::before {
  content: "\f5da";
}

.fa-book-reader::before {
  content: "\f5da";
}

.fa-family-dress::before {
  content: "\e301";
}

.fa-circle-x::before {
  content: "\e12e";
}

.fa-cabin::before {
  content: "\e46d";
}

.fa-mountain-sun::before {
  content: "\e52f";
}

.fa-chart-simple-horizontal::before {
  content: "\e474";
}

.fa-arrows-left-right-to-line::before {
  content: "\e4ba";
}

.fa-hand-back-point-left::before {
  content: "\e19f";
}

.fa-message-dots::before {
  content: "\f4a3";
}

.fa-comment-alt-dots::before {
  content: "\f4a3";
}

.fa-messaging::before {
  content: "\f4a3";
}

.fa-file-heart::before {
  content: "\e176";
}

.fa-beer-mug::before {
  content: "\e0b3";
}

.fa-beer-foam::before {
  content: "\e0b3";
}

.fa-dice-d20::before {
  content: "\f6cf";
}

.fa-drone::before {
  content: "\f85f";
}

.fa-truck-droplet::before {
  content: "\e58c";
}

.fa-file-circle-xmark::before {
  content: "\e5a1";
}

.fa-temperature-arrow-up::before {
  content: "\e040";
}

.fa-temperature-up::before {
  content: "\e040";
}

.fa-medal::before {
  content: "\f5a2";
}

.fa-person-fairy::before {
  content: "\e608";
}

.fa-bed::before {
  content: "\f236";
}

.fa-book-copy::before {
  content: "\e0be";
}

.fa-square-h::before {
  content: "\f0fd";
}

.fa-h-square::before {
  content: "\f0fd";
}

.fa-square-c::before {
  content: "\e266";
}

.fa-clock-two::before {
  content: "\e35a";
}

.fa-square-ellipsis-vertical::before {
  content: "\e26f";
}

.fa-calendar-users::before {
  content: "\e5e2";
}

.fa-podcast::before {
  content: "\f2ce";
}

.fa-bee::before {
  content: "\e0b2";
}

.fa-temperature-full::before {
  content: "\f2c7";
}

.fa-temperature-4::before {
  content: "\f2c7";
}

.fa-thermometer-4::before {
  content: "\f2c7";
}

.fa-thermometer-full::before {
  content: "\f2c7";
}

.fa-bell::before {
  content: "\f0f3";
}

.fa-candy-bar::before {
  content: "\e3e8";
}

.fa-chocolate-bar::before {
  content: "\e3e8";
}

.fa-xmark-large::before {
  content: "\e59b";
}

.fa-pinata::before {
  content: "\e3c3";
}

.fa-file-ppt::before {
  content: "\e64a";
}

.fa-arrows-from-line::before {
  content: "\e0a4";
}

.fa-superscript::before {
  content: "\f12b";
}

.fa-bowl-spoon::before {
  content: "\e3e0";
}

.fa-hexagon-check::before {
  content: "\e416";
}

.fa-plug-circle-xmark::before {
  content: "\e560";
}

.fa-star-of-life::before {
  content: "\f621";
}

.fa-phone-slash::before {
  content: "\f3dd";
}

.fa-traffic-light-stop::before {
  content: "\f63a";
}

.fa-paint-roller::before {
  content: "\f5aa";
}

.fa-accent-grave::before {
  content: "\`";
}

.fa-handshake-angle::before {
  content: "\f4c4";
}

.fa-hands-helping::before {
  content: "\f4c4";
}

.fa-circle-0::before {
  content: "\e0ed";
}

.fa-dial-med-low::before {
  content: "\e160";
}

.fa-location-dot::before {
  content: "\f3c5";
}

.fa-map-marker-alt::before {
  content: "\f3c5";
}

.fa-crab::before {
  content: "\e3ff";
}

.fa-box-open-full::before {
  content: "\f49c";
}

.fa-box-full::before {
  content: "\f49c";
}

.fa-file::before {
  content: "\f15b";
}

.fa-greater-than::before {
  content: "\>";
}

.fa-quotes::before {
  content: "\e234";
}

.fa-pretzel::before {
  content: "\e441";
}

.fa-t-rex::before {
  content: "\e629";
}

.fa-person-swimming::before {
  content: "\f5c4";
}

.fa-swimmer::before {
  content: "\f5c4";
}

.fa-arrow-down::before {
  content: "\f063";
}

.fa-user-robot-xmarks::before {
  content: "\e4a7";
}

.fa-message-quote::before {
  content: "\e1e4";
}

.fa-comment-alt-quote::before {
  content: "\e1e4";
}

.fa-candy-corn::before {
  content: "\f6bd";
}

.fa-folder-magnifying-glass::before {
  content: "\e18b";
}

.fa-folder-search::before {
  content: "\e18b";
}

.fa-notebook::before {
  content: "\e201";
}

.fa-droplet::before {
  content: "\f043";
}

.fa-tint::before {
  content: "\f043";
}

.fa-bullseye-pointer::before {
  content: "\f649";
}

.fa-eraser::before {
  content: "\f12d";
}

.fa-hexagon-image::before {
  content: "\e504";
}

.fa-earth-americas::before {
  content: "\f57d";
}

.fa-earth::before {
  content: "\f57d";
}

.fa-earth-america::before {
  content: "\f57d";
}

.fa-globe-americas::before {
  content: "\f57d";
}

.fa-file-svg::before {
  content: "\e64b";
}

.fa-crate-apple::before {
  content: "\f6b1";
}

.fa-apple-crate::before {
  content: "\f6b1";
}

.fa-person-burst::before {
  content: "\e53b";
}

.fa-game-board::before {
  content: "\f867";
}

.fa-hat-chef::before {
  content: "\f86b";
}

.fa-hand-back-point-right::before {
  content: "\e1a1";
}

.fa-dove::before {
  content: "\f4ba";
}

.fa-snowflake-droplets::before {
  content: "\e5c1";
}

.fa-battery-empty::before {
  content: "\f244";
}

.fa-battery-0::before {
  content: "\f244";
}

.fa-grid-4::before {
  content: "\e198";
}

.fa-socks::before {
  content: "\f696";
}

.fa-face-sunglasses::before {
  content: "\e398";
}

.fa-inbox::before {
  content: "\f01c";
}

.fa-square-0::before {
  content: "\e255";
}

.fa-section::before {
  content: "\e447";
}

.fa-square-this-way-up::before {
  content: "\f49f";
}

.fa-box-up::before {
  content: "\f49f";
}

.fa-gauge-high::before {
  content: "\f625";
}

.fa-tachometer-alt::before {
  content: "\f625";
}

.fa-tachometer-alt-fast::before {
  content: "\f625";
}

.fa-square-ampersand::before {
  content: "\e260";
}

.fa-envelope-open-text::before {
  content: "\f658";
}

.fa-lamp-desk::before {
  content: "\e014";
}

.fa-hospital::before {
  content: "\f0f8";
}

.fa-hospital-alt::before {
  content: "\f0f8";
}

.fa-hospital-wide::before {
  content: "\f0f8";
}

.fa-poll-people::before {
  content: "\f759";
}

.fa-whiskey-glass-ice::before {
  content: "\f7a1";
}

.fa-glass-whiskey-rocks::before {
  content: "\f7a1";
}

.fa-wine-bottle::before {
  content: "\f72f";
}

.fa-chess-rook::before {
  content: "\f447";
}

.fa-user-bounty-hunter::before {
  content: "\e2bf";
}

.fa-bars-staggered::before {
  content: "\f550";
}

.fa-reorder::before {
  content: "\f550";
}

.fa-stream::before {
  content: "\f550";
}

.fa-diagram-sankey::before {
  content: "\e158";
}

.fa-cloud-hail-mixed::before {
  content: "\f73a";
}

.fa-circle-up-left::before {
  content: "\e128";
}

.fa-dharmachakra::before {
  content: "\f655";
}

.fa-objects-align-left::before {
  content: "\e3be";
}

.fa-oil-can-drip::before {
  content: "\e205";
}

.fa-face-smiling-hands::before {
  content: "\e396";
}

.fa-broccoli::before {
  content: "\e3e2";
}

.fa-route-interstate::before {
  content: "\f61b";
}

.fa-ear-muffs::before {
  content: "\f795";
}

.fa-hotdog::before {
  content: "\f80f";
}

.fa-transporter-empty::before {
  content: "\e046";
}

.fa-person-walking-with-cane::before {
  content: "\f29d";
}

.fa-blind::before {
  content: "\f29d";
}

.fa-angle-90::before {
  content: "\e08d";
}

.fa-rectangle-terminal::before {
  content: "\e236";
}

.fa-kite::before {
  content: "\f6f4";
}

.fa-drum::before {
  content: "\f569";
}

.fa-scrubber::before {
  content: "\f2f8";
}

.fa-ice-cream::before {
  content: "\f810";
}

.fa-heart-circle-bolt::before {
  content: "\e4fc";
}

.fa-fish-bones::before {
  content: "\e304";
}

.fa-deer-rudolph::before {
  content: "\f78f";
}

.fa-fax::before {
  content: "\f1ac";
}

.fa-paragraph::before {
  content: "\f1dd";
}

.fa-head-side-heart::before {
  content: "\e1aa";
}

.fa-square-e::before {
  content: "\e26d";
}

.fa-meter-fire::before {
  content: "\e1eb";
}

.fa-cloud-hail::before {
  content: "\f739";
}

.fa-check-to-slot::before {
  content: "\f772";
}

.fa-vote-yea::before {
  content: "\f772";
}

.fa-money-from-bracket::before {
  content: "\e312";
}

.fa-star-half::before {
  content: "\f089";
}

.fa-car-bus::before {
  content: "\f85a";
}

.fa-speaker::before {
  content: "\f8df";
}

.fa-timer::before {
  content: "\e29e";
}

.fa-boxes-stacked::before {
  content: "\f468";
}

.fa-boxes::before {
  content: "\f468";
}

.fa-boxes-alt::before {
  content: "\f468";
}

.fa-landmark-magnifying-glass::before {
  content: "\e622";
}

.fa-grill-hot::before {
  content: "\e5a5";
}

.fa-ballot-check::before {
  content: "\f733";
}

.fa-link::before {
  content: "\f0c1";
}

.fa-chain::before {
  content: "\f0c1";
}

.fa-ear-listen::before {
  content: "\f2a2";
}

.fa-assistive-listening-systems::before {
  content: "\f2a2";
}

.fa-file-minus::before {
  content: "\f318";
}

.fa-tree-city::before {
  content: "\e587";
}

.fa-play::before {
  content: "\f04b";
}

.fa-font::before {
  content: "\f031";
}

.fa-cup-togo::before {
  content: "\f6c5";
}

.fa-coffee-togo::before {
  content: "\f6c5";
}

.fa-square-down-left::before {
  content: "\e26b";
}

.fa-burger-lettuce::before {
  content: "\e3e3";
}

.fa-rupiah-sign::before {
  content: "\e23d";
}

.fa-magnifying-glass::before {
  content: "\f002";
}

.fa-search::before {
  content: "\f002";
}

.fa-table-tennis-paddle-ball::before {
  content: "\f45d";
}

.fa-ping-pong-paddle-ball::before {
  content: "\f45d";
}

.fa-table-tennis::before {
  content: "\f45d";
}

.fa-person-dots-from-line::before {
  content: "\f470";
}

.fa-diagnoses::before {
  content: "\f470";
}

.fa-chevrons-down::before {
  content: "\f322";
}

.fa-chevron-double-down::before {
  content: "\f322";
}

.fa-trash-can-arrow-up::before {
  content: "\f82a";
}

.fa-trash-restore-alt::before {
  content: "\f82a";
}

.fa-signal-good::before {
  content: "\f68e";
}

.fa-signal-3::before {
  content: "\f68e";
}

.fa-location-question::before {
  content: "\f60b";
}

.fa-map-marker-question::before {
  content: "\f60b";
}

.fa-floppy-disk-circle-xmark::before {
  content: "\e181";
}

.fa-floppy-disk-times::before {
  content: "\e181";
}

.fa-save-circle-xmark::before {
  content: "\e181";
}

.fa-save-times::before {
  content: "\e181";
}

.fa-naira-sign::before {
  content: "\e1f6";
}

.fa-peach::before {
  content: "\e20b";
}

.fa-taxi-bus::before {
  content: "\e298";
}

.fa-bracket-curly::before {
  content: "\{";
}

.fa-bracket-curly-left::before {
  content: "\{";
}

.fa-lobster::before {
  content: "\e421";
}

.fa-cart-flatbed-empty::before {
  content: "\f476";
}

.fa-dolly-flatbed-empty::before {
  content: "\f476";
}

.fa-colon::before {
  content: "\:";
}

.fa-cart-arrow-down::before {
  content: "\f218";
}

.fa-wand::before {
  content: "\f72a";
}

.fa-walkie-talkie::before {
  content: "\f8ef";
}

.fa-file-pen::before {
  content: "\f31c";
}

.fa-file-edit::before {
  content: "\f31c";
}

.fa-receipt::before {
  content: "\f543";
}

.fa-table-picnic::before {
  content: "\e32d";
}

.fa-square-pen::before {
  content: "\f14b";
}

.fa-pen-square::before {
  content: "\f14b";
}

.fa-pencil-square::before {
  content: "\f14b";
}

.fa-circle-microphone-lines::before {
  content: "\e117";
}

.fa-microphone-circle-alt::before {
  content: "\e117";
}

.fa-display-slash::before {
  content: "\e2fa";
}

.fa-desktop-slash::before {
  content: "\e2fa";
}

.fa-suitcase-rolling::before {
  content: "\f5c1";
}

.fa-person-circle-exclamation::before {
  content: "\e53f";
}

.fa-transporter-2::before {
  content: "\e044";
}

.fa-hands-holding-diamond::before {
  content: "\f47c";
}

.fa-hand-receiving::before {
  content: "\f47c";
}

.fa-money-bill-simple-wave::before {
  content: "\e1f2";
}

.fa-chevron-down::before {
  content: "\f078";
}

.fa-battery-full::before {
  content: "\f240";
}

.fa-battery::before {
  content: "\f240";
}

.fa-battery-5::before {
  content: "\f240";
}

.fa-bell-plus::before {
  content: "\f849";
}

.fa-book-arrow-right::before {
  content: "\e0b9";
}

.fa-hospitals::before {
  content: "\f80e";
}

.fa-club::before {
  content: "\f327";
}

.fa-skull-crossbones::before {
  content: "\f714";
}

.fa-droplet-degree::before {
  content: "\f748";
}

.fa-dewpoint::before {
  content: "\f748";
}

.fa-code-compare::before {
  content: "\e13a";
}

.fa-list-ul::before {
  content: "\f0ca";
}

.fa-list-dots::before {
  content: "\f0ca";
}

.fa-hand-holding-magic::before {
  content: "\f6e5";
}

.fa-watermelon-slice::before {
  content: "\e337";
}

.fa-circle-ellipsis::before {
  content: "\e10a";
}

.fa-school-lock::before {
  content: "\e56f";
}

.fa-tower-cell::before {
  content: "\e585";
}

.fa-sd-cards::before {
  content: "\e240";
}

.fa-jug-bottle::before {
  content: "\e5fb";
}

.fa-down-long::before {
  content: "\f309";
}

.fa-long-arrow-alt-down::before {
  content: "\f309";
}

.fa-envelopes::before {
  content: "\e170";
}

.fa-phone-office::before {
  content: "\f67d";
}

.fa-ranking-star::before {
  content: "\e561";
}

.fa-chess-king::before {
  content: "\f43f";
}

.fa-nfc-pen::before {
  content: "\e1fa";
}

.fa-person-harassing::before {
  content: "\e549";
}

.fa-magnifying-glass-play::before {
  content: "\e660";
}

.fa-hat-winter::before {
  content: "\f7a8";
}

.fa-brazilian-real-sign::before {
  content: "\e46c";
}

.fa-landmark-dome::before {
  content: "\f752";
}

.fa-landmark-alt::before {
  content: "\f752";
}

.fa-bone-break::before {
  content: "\f5d8";
}

.fa-arrow-up::before {
  content: "\f062";
}

.fa-down-from-dotted-line::before {
  content: "\e407";
}

.fa-tv::before {
  content: "\f26c";
}

.fa-television::before {
  content: "\f26c";
}

.fa-tv-alt::before {
  content: "\f26c";
}

.fa-border-left::before {
  content: "\f84f";
}

.fa-circle-divide::before {
  content: "\e106";
}

.fa-shrimp::before {
  content: "\e448";
}

.fa-list-check::before {
  content: "\f0ae";
}

.fa-tasks::before {
  content: "\f0ae";
}

.fa-diagram-subtask::before {
  content: "\e479";
}

.fa-jug-detergent::before {
  content: "\e519";
}

.fa-circle-user::before {
  content: "\f2bd";
}

.fa-user-circle::before {
  content: "\f2bd";
}

.fa-square-y::before {
  content: "\e287";
}

.fa-user-doctor-hair::before {
  content: "\e458";
}

.fa-planet-ringed::before {
  content: "\e020";
}

.fa-mushroom::before {
  content: "\e425";
}

.fa-user-shield::before {
  content: "\f505";
}

.fa-megaphone::before {
  content: "\f675";
}

.fa-wreath-laurel::before {
  content: "\e5d2";
}

.fa-circle-exclamation-check::before {
  content: "\e10d";
}

.fa-wind::before {
  content: "\f72e";
}

.fa-box-dollar::before {
  content: "\f4a0";
}

.fa-box-usd::before {
  content: "\f4a0";
}

.fa-car-burst::before {
  content: "\f5e1";
}

.fa-car-crash::before {
  content: "\f5e1";
}

.fa-y::before {
  content: "Y";
}

.fa-user-headset::before {
  content: "\f82d";
}

.fa-arrows-retweet::before {
  content: "\f361";
}

.fa-retweet-alt::before {
  content: "\f361";
}

.fa-person-snowboarding::before {
  content: "\f7ce";
}

.fa-snowboarding::before {
  content: "\f7ce";
}

.fa-square-chevron-right::before {
  content: "\f32b";
}

.fa-chevron-square-right::before {
  content: "\f32b";
}

.fa-lacrosse-stick-ball::before {
  content: "\e3b6";
}

.fa-truck-fast::before {
  content: "\f48b";
}

.fa-shipping-fast::before {
  content: "\f48b";
}

.fa-user-magnifying-glass::before {
  content: "\e5c5";
}

.fa-star-sharp::before {
  content: "\e28b";
}

.fa-comment-heart::before {
  content: "\e5c8";
}

.fa-circle-1::before {
  content: "\e0ee";
}

.fa-circle-star::before {
  content: "\e123";
}

.fa-star-circle::before {
  content: "\e123";
}

.fa-fish::before {
  content: "\f578";
}

.fa-cloud-fog::before {
  content: "\f74e";
}

.fa-fog::before {
  content: "\f74e";
}

.fa-waffle::before {
  content: "\e466";
}

.fa-music-note::before {
  content: "\f8cf";
}

.fa-music-alt::before {
  content: "\f8cf";
}

.fa-hexagon-exclamation::before {
  content: "\e417";
}

.fa-cart-shopping-fast::before {
  content: "\e0dc";
}

.fa-object-union::before {
  content: "\e49f";
}

.fa-user-graduate::before {
  content: "\f501";
}

.fa-starfighter::before {
  content: "\e037";
}

.fa-circle-half-stroke::before {
  content: "\f042";
}

.fa-adjust::before {
  content: "\f042";
}

.fa-arrow-right-long-to-line::before {
  content: "\e3d5";
}

.fa-square-arrow-down::before {
  content: "\f339";
}

.fa-arrow-square-down::before {
  content: "\f339";
}

.fa-diamond-half-stroke::before {
  content: "\e5b8";
}

.fa-clapperboard::before {
  content: "\e131";
}

.fa-square-chevron-left::before {
  content: "\f32a";
}

.fa-chevron-square-left::before {
  content: "\f32a";
}

.fa-phone-intercom::before {
  content: "\e434";
}

.fa-link-horizontal::before {
  content: "\e1cb";
}

.fa-chain-horizontal::before {
  content: "\e1cb";
}

.fa-mango::before {
  content: "\e30f";
}

.fa-music-note-slash::before {
  content: "\f8d0";
}

.fa-music-alt-slash::before {
  content: "\f8d0";
}

.fa-circle-radiation::before {
  content: "\f7ba";
}

.fa-radiation-alt::before {
  content: "\f7ba";
}

.fa-face-tongue-sweat::before {
  content: "\e39e";
}

.fa-globe-stand::before {
  content: "\f5f6";
}

.fa-baseball::before {
  content: "\f433";
}

.fa-baseball-ball::before {
  content: "\f433";
}

.fa-circle-p::before {
  content: "\e11a";
}

.fa-award-simple::before {
  content: "\e0ab";
}

.fa-jet-fighter-up::before {
  content: "\e518";
}

.fa-diagram-project::before {
  content: "\f542";
}

.fa-project-diagram::before {
  content: "\f542";
}

.fa-pedestal::before {
  content: "\e20d";
}

.fa-chart-pyramid::before {
  content: "\e0e6";
}

.fa-sidebar::before {
  content: "\e24e";
}

.fa-snowman-head::before {
  content: "\f79b";
}

.fa-frosty-head::before {
  content: "\f79b";
}

.fa-copy::before {
  content: "\f0c5";
}

.fa-burger-glass::before {
  content: "\e0ce";
}

.fa-volume-xmark::before {
  content: "\f6a9";
}

.fa-volume-mute::before {
  content: "\f6a9";
}

.fa-volume-times::before {
  content: "\f6a9";
}

.fa-hand-sparkles::before {
  content: "\e05d";
}

.fa-bars-filter::before {
  content: "\e0ad";
}

.fa-paintbrush-pencil::before {
  content: "\e206";
}

.fa-party-bell::before {
  content: "\e31a";
}

.fa-user-vneck-hair::before {
  content: "\e462";
}

.fa-jack-o-lantern::before {
  content: "\f30e";
}

.fa-grip::before {
  content: "\f58d";
}

.fa-grip-horizontal::before {
  content: "\f58d";
}

.fa-share-from-square::before {
  content: "\f14d";
}

.fa-share-square::before {
  content: "\f14d";
}

.fa-keynote::before {
  content: "\f66c";
}

.fa-child-combatant::before {
  content: "\e4e0";
}

.fa-child-rifle::before {
  content: "\e4e0";
}

.fa-gun::before {
  content: "\e19b";
}

.fa-square-phone::before {
  content: "\f098";
}

.fa-phone-square::before {
  content: "\f098";
}

.fa-hat-beach::before {
  content: "\e606";
}

.fa-plus::before {
  content: "\+";
}

.fa-add::before {
  content: "\+";
}

.fa-expand::before {
  content: "\f065";
}

.fa-computer::before {
  content: "\e4e5";
}

.fa-fort::before {
  content: "\e486";
}

.fa-cloud-check::before {
  content: "\e35c";
}

.fa-xmark::before {
  content: "\f00d";
}

.fa-close::before {
  content: "\f00d";
}

.fa-multiply::before {
  content: "\f00d";
}

.fa-remove::before {
  content: "\f00d";
}

.fa-times::before {
  content: "\f00d";
}

.fa-face-smirking::before {
  content: "\e397";
}

.fa-arrows-up-down-left-right::before {
  content: "\f047";
}

.fa-arrows::before {
  content: "\f047";
}

.fa-chalkboard-user::before {
  content: "\f51c";
}

.fa-chalkboard-teacher::before {
  content: "\f51c";
}

.fa-rhombus::before {
  content: "\e23b";
}

.fa-claw-marks::before {
  content: "\f6c2";
}

.fa-peso-sign::before {
  content: "\e222";
}

.fa-face-smile-tongue::before {
  content: "\e394";
}

.fa-cart-circle-xmark::before {
  content: "\e3f4";
}

.fa-building-shield::before {
  content: "\e4d8";
}

.fa-circle-phone-flip::before {
  content: "\e11c";
}

.fa-phone-circle-alt::before {
  content: "\e11c";
}

.fa-baby::before {
  content: "\f77c";
}

.fa-users-line::before {
  content: "\e592";
}

.fa-quote-left::before {
  content: "\f10d";
}

.fa-quote-left-alt::before {
  content: "\f10d";
}

.fa-tractor::before {
  content: "\f722";
}

.fa-key-skeleton::before {
  content: "\f6f3";
}

.fa-trash-arrow-up::before {
  content: "\f829";
}

.fa-trash-restore::before {
  content: "\f829";
}

.fa-arrow-down-up-lock::before {
  content: "\e4b0";
}

.fa-arrow-down-to-bracket::before {
  content: "\e094";
}

.fa-lines-leaning::before {
  content: "\e51e";
}

.fa-square-q::before {
  content: "\e27b";
}

.fa-ruler-combined::before {
  content: "\f546";
}

.fa-symbols::before {
  content: "\f86e";
}

.fa-icons-alt::before {
  content: "\f86e";
}

.fa-copyright::before {
  content: "\f1f9";
}

.fa-flask-gear::before {
  content: "\e5f1";
}

.fa-highlighter-line::before {
  content: "\e1af";
}

.fa-bracket-square::before {
  content: "\[";
}

.fa-bracket::before {
  content: "\[";
}

.fa-bracket-left::before {
  content: "\[";
}

.fa-island-tropical::before {
  content: "\f811";
}

.fa-island-tree-palm::before {
  content: "\f811";
}

.fa-arrow-right-from-line::before {
  content: "\f343";
}

.fa-arrow-from-left::before {
  content: "\f343";
}

.fa-h2::before {
  content: "\f314";
}

.fa-equals::before {
  content: "\=";
}

.fa-cake-slice::before {
  content: "\e3e5";
}

.fa-shortcake::before {
  content: "\e3e5";
}

.fa-building-magnifying-glass::before {
  content: "\e61c";
}

.fa-peanut::before {
  content: "\e430";
}

.fa-wrench-simple::before {
  content: "\e2d1";
}

.fa-blender::before {
  content: "\f517";
}

.fa-teeth::before {
  content: "\f62e";
}

.fa-tally-2::before {
  content: "\e295";
}

.fa-shekel-sign::before {
  content: "\f20b";
}

.fa-ils::before {
  content: "\f20b";
}

.fa-shekel::before {
  content: "\f20b";
}

.fa-sheqel::before {
  content: "\f20b";
}

.fa-sheqel-sign::before {
  content: "\f20b";
}

.fa-cars::before {
  content: "\f85b";
}

.fa-axe-battle::before {
  content: "\f6b3";
}

.fa-user-hair-long::before {
  content: "\e45b";
}

.fa-map::before {
  content: "\f279";
}

.fa-arrow-left-from-arc::before {
  content: "\e615";
}

.fa-file-circle-info::before {
  content: "\e493";
}

.fa-face-disappointed::before {
  content: "\e36f";
}

.fa-lasso-sparkles::before {
  content: "\e1c9";
}

.fa-clock-eleven::before {
  content: "\e347";
}

.fa-rocket::before {
  content: "\f135";
}

.fa-siren-on::before {
  content: "\e02e";
}

.fa-clock-ten::before {
  content: "\e354";
}

.fa-candle-holder::before {
  content: "\f6bc";
}

.fa-video-arrow-down-left::before {
  content: "\e2c8";
}

.fa-photo-film::before {
  content: "\f87c";
}

.fa-photo-video::before {
  content: "\f87c";
}

.fa-floppy-disk-circle-arrow-right::before {
  content: "\e180";
}

.fa-save-circle-arrow-right::before {
  content: "\e180";
}

.fa-folder-minus::before {
  content: "\f65d";
}

.fa-planet-moon::before {
  content: "\e01f";
}

.fa-face-eyes-xmarks::before {
  content: "\e374";
}

.fa-chart-scatter::before {
  content: "\f7ee";
}

.fa-display-arrow-down::before {
  content: "\e164";
}

.fa-store::before {
  content: "\f54e";
}

.fa-arrow-trend-up::before {
  content: "\e098";
}

.fa-plug-circle-minus::before {
  content: "\e55e";
}

.fa-olive-branch::before {
  content: "\e317";
}

.fa-angle::before {
  content: "\e08c";
}

.fa-vacuum-robot::before {
  content: "\e04e";
}

.fa-sign-hanging::before {
  content: "\f4d9";
}

.fa-sign::before {
  content: "\f4d9";
}

.fa-square-divide::before {
  content: "\e26a";
}

.fa-folder-check::before {
  content: "\e64e";
}

.fa-signal-stream-slash::before {
  content: "\e250";
}

.fa-bezier-curve::before {
  content: "\f55b";
}

.fa-eye-dropper-half::before {
  content: "\e173";
}

.fa-store-lock::before {
  content: "\e4a6";
}

.fa-bell-slash::before {
  content: "\f1f6";
}

.fa-cloud-bolt-sun::before {
  content: "\f76e";
}

.fa-thunderstorm-sun::before {
  content: "\f76e";
}

.fa-camera-slash::before {
  content: "\e0d9";
}

.fa-comment-quote::before {
  content: "\e14c";
}

.fa-tablet::before {
  content: "\f3fb";
}

.fa-tablet-android::before {
  content: "\f3fb";
}

.fa-school-flag::before {
  content: "\e56e";
}

.fa-message-code::before {
  content: "\e1df";
}

.fa-glass-half::before {
  content: "\e192";
}

.fa-glass-half-empty::before {
  content: "\e192";
}

.fa-glass-half-full::before {
  content: "\e192";
}

.fa-fill::before {
  content: "\f575";
}

.fa-message-minus::before {
  content: "\f4a7";
}

.fa-comment-alt-minus::before {
  content: "\f4a7";
}

.fa-angle-up::before {
  content: "\f106";
}

.fa-dinosaur::before {
  content: "\e5fe";
}

.fa-drumstick-bite::before {
  content: "\f6d7";
}

.fa-link-horizontal-slash::before {
  content: "\e1cc";
}

.fa-chain-horizontal-slash::before {
  content: "\e1cc";
}

.fa-holly-berry::before {
  content: "\f7aa";
}

.fa-nose::before {
  content: "\e5bd";
}

.fa-arrow-left-to-arc::before {
  content: "\e616";
}

.fa-chevron-left::before {
  content: "\f053";
}

.fa-bacteria::before {
  content: "\e059";
}

.fa-clouds::before {
  content: "\f744";
}

.fa-money-bill-simple::before {
  content: "\e1f1";
}

.fa-hand-lizard::before {
  content: "\f258";
}

.fa-table-pivot::before {
  content: "\e291";
}

.fa-filter-slash::before {
  content: "\e17d";
}

.fa-trash-can-undo::before {
  content: "\f896";
}

.fa-trash-can-arrow-turn-left::before {
  content: "\f896";
}

.fa-trash-undo-alt::before {
  content: "\f896";
}

.fa-notdef::before {
  content: "\e1fe";
}

.fa-disease::before {
  content: "\f7fa";
}

.fa-person-to-door::before {
  content: "\e433";
}

.fa-turntable::before {
  content: "\f8e4";
}

.fa-briefcase-medical::before {
  content: "\f469";
}

.fa-genderless::before {
  content: "\f22d";
}

.fa-chevron-right::before {
  content: "\f054";
}

.fa-signal-weak::before {
  content: "\f68c";
}

.fa-signal-1::before {
  content: "\f68c";
}

.fa-clock-five::before {
  content: "\e349";
}

.fa-retweet::before {
  content: "\f079";
}

.fa-car-rear::before {
  content: "\f5de";
}

.fa-car-alt::before {
  content: "\f5de";
}

.fa-pump-soap::before {
  content: "\e06b";
}

.fa-computer-classic::before {
  content: "\f8b1";
}

.fa-frame::before {
  content: "\e495";
}

.fa-video-slash::before {
  content: "\f4e2";
}

.fa-battery-quarter::before {
  content: "\f243";
}

.fa-battery-2::before {
  content: "\f243";
}

.fa-ellipsis-stroke::before {
  content: "\f39b";
}

.fa-ellipsis-h-alt::before {
  content: "\f39b";
}

.fa-radio::before {
  content: "\f8d7";
}

.fa-baby-carriage::before {
  content: "\f77d";
}

.fa-carriage-baby::before {
  content: "\f77d";
}

.fa-face-expressionless::before {
  content: "\e373";
}

.fa-down-to-dotted-line::before {
  content: "\e408";
}

.fa-cloud-music::before {
  content: "\f8ae";
}

.fa-traffic-light::before {
  content: "\f637";
}

.fa-cloud-minus::before {
  content: "\e35d";
}

.fa-thermometer::before {
  content: "\f491";
}

.fa-shield-minus::before {
  content: "\e249";
}

.fa-vr-cardboard::before {
  content: "\f729";
}

.fa-car-tilt::before {
  content: "\f5e5";
}

.fa-gauge-circle-minus::before {
  content: "\e497";
}

.fa-brightness-low::before {
  content: "\e0ca";
}

.fa-hand-middle-finger::before {
  content: "\f806";
}

.fa-percent::before {
  content: "\%";
}

.fa-percentage::before {
  content: "\%";
}

.fa-truck-moving::before {
  content: "\f4df";
}

.fa-glass-water-droplet::before {
  content: "\e4f5";
}

.fa-conveyor-belt::before {
  content: "\f46e";
}

.fa-location-check::before {
  content: "\f606";
}

.fa-map-marker-check::before {
  content: "\f606";
}

.fa-coin-vertical::before {
  content: "\e3fd";
}

.fa-display::before {
  content: "\e163";
}

.fa-person-sign::before {
  content: "\f757";
}

.fa-face-smile::before {
  content: "\f118";
}

.fa-smile::before {
  content: "\f118";
}

.fa-phone-hangup::before {
  content: "\e225";
}

.fa-signature-slash::before {
  content: "\e3cb";
}

.fa-thumbtack::before {
  content: "\f08d";
}

.fa-thumb-tack::before {
  content: "\f08d";
}

.fa-wheat-slash::before {
  content: "\e339";
}

.fa-trophy::before {
  content: "\f091";
}

.fa-clouds-sun::before {
  content: "\f746";
}

.fa-person-praying::before {
  content: "\f683";
}

.fa-pray::before {
  content: "\f683";
}

.fa-hammer::before {
  content: "\f6e3";
}

.fa-face-vomit::before {
  content: "\e3a0";
}

.fa-speakers::before {
  content: "\f8e0";
}

.fa-tty-answer::before {
  content: "\e2b9";
}

.fa-teletype-answer::before {
  content: "\e2b9";
}

.fa-mug-tea-saucer::before {
  content: "\e1f5";
}

.fa-diagram-lean-canvas::before {
  content: "\e156";
}

.fa-alt::before {
  content: "\e08a";
}

.fa-dial::before {
  content: "\e15b";
}

.fa-dial-med-high::before {
  content: "\e15b";
}

.fa-hand-peace::before {
  content: "\f25b";
}

.fa-circle-trash::before {
  content: "\e126";
}

.fa-trash-circle::before {
  content: "\e126";
}

.fa-rotate::before {
  content: "\f2f1";
}

.fa-sync-alt::before {
  content: "\f2f1";
}

.fa-circle-quarters::before {
  content: "\e3f8";
}

.fa-spinner::before {
  content: "\f110";
}

.fa-tower-control::before {
  content: "\e2a2";
}

.fa-arrow-up-triangle-square::before {
  content: "\f88a";
}

.fa-sort-shapes-up::before {
  content: "\f88a";
}

.fa-whale::before {
  content: "\f72c";
}

.fa-robot::before {
  content: "\f544";
}

.fa-peace::before {
  content: "\f67c";
}

.fa-party-horn::before {
  content: "\e31b";
}

.fa-gears::before {
  content: "\f085";
}

.fa-cogs::before {
  content: "\f085";
}

.fa-sun-bright::before {
  content: "\e28f";
}

.fa-sun-alt::before {
  content: "\e28f";
}

.fa-warehouse::before {
  content: "\f494";
}

.fa-conveyor-belt-arm::before {
  content: "\e5f8";
}

.fa-lock-keyhole-open::before {
  content: "\f3c2";
}

.fa-lock-open-alt::before {
  content: "\f3c2";
}

.fa-square-fragile::before {
  content: "\f49b";
}

.fa-box-fragile::before {
  content: "\f49b";
}

.fa-square-wine-glass-crack::before {
  content: "\f49b";
}

.fa-arrow-up-right-dots::before {
  content: "\e4b7";
}

.fa-square-n::before {
  content: "\e277";
}

.fa-splotch::before {
  content: "\f5bc";
}

.fa-face-grin-hearts::before {
  content: "\f584";
}

.fa-grin-hearts::before {
  content: "\f584";
}

.fa-meter::before {
  content: "\e1e8";
}

.fa-mandolin::before {
  content: "\f6f9";
}

.fa-dice-four::before {
  content: "\f524";
}

.fa-sim-card::before {
  content: "\f7c4";
}

.fa-transgender::before {
  content: "\f225";
}

.fa-transgender-alt::before {
  content: "\f225";
}

.fa-mercury::before {
  content: "\f223";
}

.fa-up-from-bracket::before {
  content: "\e590";
}

.fa-knife-kitchen::before {
  content: "\f6f5";
}

.fa-border-right::before {
  content: "\f852";
}

.fa-arrow-turn-down::before {
  content: "\f149";
}

.fa-level-down::before {
  content: "\f149";
}

.fa-spade::before {
  content: "\f2f4";
}

.fa-card-spade::before {
  content: "\e3ec";
}

.fa-line-columns::before {
  content: "\f870";
}

.fa-arrow-right-to-line::before {
  content: "\f340";
}

.fa-arrow-to-right::before {
  content: "\f340";
}

.fa-person-falling-burst::before {
  content: "\e547";
}

.fa-flag-pennant::before {
  content: "\f456";
}

.fa-pennant::before {
  content: "\f456";
}

.fa-conveyor-belt-empty::before {
  content: "\e150";
}

.fa-user-group-simple::before {
  content: "\e603";
}

.fa-award::before {
  content: "\f559";
}

.fa-ticket-simple::before {
  content: "\f3ff";
}

.fa-ticket-alt::before {
  content: "\f3ff";
}

.fa-building::before {
  content: "\f1ad";
}

.fa-angles-left::before {
  content: "\f100";
}

.fa-angle-double-left::before {
  content: "\f100";
}

.fa-camcorder::before {
  content: "\f8a8";
}

.fa-video-handheld::before {
  content: "\f8a8";
}

.fa-pancakes::before {
  content: "\e42d";
}

.fa-album-circle-user::before {
  content: "\e48d";
}

.fa-subtitles-slash::before {
  content: "\e610";
}

.fa-qrcode::before {
  content: "\f029";
}

.fa-dice-d10::before {
  content: "\f6cd";
}

.fa-fireplace::before {
  content: "\f79a";
}

.fa-browser::before {
  content: "\f37e";
}

.fa-pen-paintbrush::before {
  content: "\f618";
}

.fa-pencil-paintbrush::before {
  content: "\f618";
}

.fa-fish-cooked::before {
  content: "\f7fe";
}

.fa-chair-office::before {
  content: "\f6c1";
}

.fa-magnifying-glass-music::before {
  content: "\e65f";
}

.fa-nesting-dolls::before {
  content: "\e3ba";
}

.fa-clock-rotate-left::before {
  content: "\f1da";
}

.fa-history::before {
  content: "\f1da";
}

.fa-trumpet::before {
  content: "\f8e3";
}

.fa-face-grin-beam-sweat::before {
  content: "\f583";
}

.fa-grin-beam-sweat::before {
  content: "\f583";
}

.fa-fire-smoke::before {
  content: "\f74b";
}

.fa-phone-missed::before {
  content: "\e226";
}

.fa-file-export::before {
  content: "\f56e";
}

.fa-arrow-right-from-file::before {
  content: "\f56e";
}

.fa-shield::before {
  content: "\f132";
}

.fa-shield-blank::before {
  content: "\f132";
}

.fa-arrow-up-short-wide::before {
  content: "\f885";
}

.fa-sort-amount-up-alt::before {
  content: "\f885";
}

.fa-arrows-repeat-1::before {
  content: "\f366";
}

.fa-repeat-1-alt::before {
  content: "\f366";
}

.fa-gun-slash::before {
  content: "\e19c";
}

.fa-avocado::before {
  content: "\e0aa";
}

.fa-binary::before {
  content: "\e33b";
}

.fa-glasses-round::before {
  content: "\f5f5";
}

.fa-glasses-alt::before {
  content: "\f5f5";
}

.fa-phone-plus::before {
  content: "\f4d2";
}

.fa-ditto::before {
  content: "\"";
}

.fa-person-seat::before {
  content: "\e21e";
}

.fa-house-medical::before {
  content: "\e3b2";
}

.fa-golf-ball-tee::before {
  content: "\f450";
}

.fa-golf-ball::before {
  content: "\f450";
}

.fa-circle-chevron-left::before {
  content: "\f137";
}

.fa-chevron-circle-left::before {
  content: "\f137";
}

.fa-house-chimney-window::before {
  content: "\e00d";
}

.fa-scythe::before {
  content: "\f710";
}

.fa-pen-nib::before {
  content: "\f5ad";
}

.fa-ban-parking::before {
  content: "\f616";
}

.fa-parking-circle-slash::before {
  content: "\f616";
}

.fa-tent-arrow-turn-left::before {
  content: "\e580";
}

.fa-face-diagonal-mouth::before {
  content: "\e47e";
}

.fa-diagram-cells::before {
  content: "\e475";
}

.fa-cricket-bat-ball::before {
  content: "\f449";
}

.fa-cricket::before {
  content: "\f449";
}

.fa-tents::before {
  content: "\e582";
}

.fa-wand-magic::before {
  content: "\f0d0";
}

.fa-magic::before {
  content: "\f0d0";
}

.fa-dog::before {
  content: "\f6d3";
}

.fa-pen-line::before {
  content: "\e212";
}

.fa-atom-simple::before {
  content: "\f5d3";
}

.fa-atom-alt::before {
  content: "\f5d3";
}

.fa-ampersand::before {
  content: "\&";
}

.fa-carrot::before {
  content: "\f787";
}

.fa-arrow-up-from-line::before {
  content: "\f342";
}

.fa-arrow-from-bottom::before {
  content: "\f342";
}

.fa-moon::before {
  content: "\f186";
}

.fa-pen-slash::before {
  content: "\e213";
}

.fa-wine-glass-empty::before {
  content: "\f5ce";
}

.fa-wine-glass-alt::before {
  content: "\f5ce";
}

.fa-square-star::before {
  content: "\e27f";
}

.fa-cheese::before {
  content: "\f7ef";
}

.fa-send-backward::before {
  content: "\f87f";
}

.fa-yin-yang::before {
  content: "\f6ad";
}

.fa-music::before {
  content: "\f001";
}

.fa-compass-slash::before {
  content: "\f5e9";
}

.fa-clock-one::before {
  content: "\e34e";
}

.fa-file-music::before {
  content: "\f8b6";
}

.fa-code-commit::before {
  content: "\f386";
}

.fa-temperature-low::before {
  content: "\f76b";
}

.fa-person-biking::before {
  content: "\f84a";
}

.fa-biking::before {
  content: "\f84a";
}

.fa-display-chart-up-circle-currency::before {
  content: "\e5e5";
}

.fa-skeleton::before {
  content: "\f620";
}

.fa-circle-g::before {
  content: "\e10f";
}

.fa-circle-arrow-up-left::before {
  content: "\e0fb";
}

.fa-coin-blank::before {
  content: "\e3fb";
}

.fa-broom::before {
  content: "\f51a";
}

.fa-vacuum::before {
  content: "\e04d";
}

.fa-shield-heart::before {
  content: "\e574";
}

.fa-card-heart::before {
  content: "\e3eb";
}

.fa-lightbulb-cfl-on::before {
  content: "\e5a7";
}

.fa-melon::before {
  content: "\e310";
}

.fa-gopuram::before {
  content: "\f664";
}

.fa-earth-oceania::before {
  content: "\e47b";
}

.fa-globe-oceania::before {
  content: "\e47b";
}

.fa-container-storage::before {
  content: "\f4b7";
}

.fa-face-pouting::before {
  content: "\e387";
}

.fa-square-xmark::before {
  content: "\f2d3";
}

.fa-times-square::before {
  content: "\f2d3";
}

.fa-xmark-square::before {
  content: "\f2d3";
}

.fa-face-explode::before {
  content: "\e2fe";
}

.fa-exploding-head::before {
  content: "\e2fe";
}

.fa-hashtag::before {
  content: "\#";
}

.fa-up-right-and-down-left-from-center::before {
  content: "\f424";
}

.fa-expand-alt::before {
  content: "\f424";
}

.fa-oil-can::before {
  content: "\f613";
}

.fa-t::before {
  content: "T";
}

.fa-transformer-bolt::before {
  content: "\e2a4";
}

.fa-hippo::before {
  content: "\f6ed";
}

.fa-chart-column::before {
  content: "\e0e3";
}

.fa-cassette-vhs::before {
  content: "\f8ec";
}

.fa-vhs::before {
  content: "\f8ec";
}

.fa-infinity::before {
  content: "\f534";
}

.fa-vial-circle-check::before {
  content: "\e596";
}

.fa-chimney::before {
  content: "\f78b";
}

.fa-object-intersect::before {
  content: "\e49d";
}

.fa-person-arrow-down-to-line::before {
  content: "\e538";
}

.fa-voicemail::before {
  content: "\f897";
}

.fa-block-brick::before {
  content: "\e3db";
}

.fa-wall-brick::before {
  content: "\e3db";
}

.fa-fan::before {
  content: "\f863";
}

.fa-bags-shopping::before {
  content: "\f847";
}

.fa-paragraph-left::before {
  content: "\f878";
}

.fa-paragraph-rtl::before {
  content: "\f878";
}

.fa-person-walking-luggage::before {
  content: "\e554";
}

.fa-caravan-simple::before {
  content: "\e000";
}

.fa-caravan-alt::before {
  content: "\e000";
}

.fa-turtle::before {
  content: "\f726";
}

.fa-pencil-mechanical::before {
  content: "\e5ca";
}

.fa-up-down::before {
  content: "\f338";
}

.fa-arrows-alt-v::before {
  content: "\f338";
}

.fa-cloud-moon-rain::before {
  content: "\f73c";
}

.fa-booth-curtain::before {
  content: "\f734";
}

.fa-calendar::before {
  content: "\f133";
}

.fa-box-heart::before {
  content: "\f49d";
}

.fa-trailer::before {
  content: "\e041";
}

.fa-user-doctor-message::before {
  content: "\f82e";
}

.fa-user-md-chat::before {
  content: "\f82e";
}

.fa-bahai::before {
  content: "\f666";
}

.fa-haykal::before {
  content: "\f666";
}

.fa-lighthouse::before {
  content: "\e612";
}

.fa-amp-guitar::before {
  content: "\f8a1";
}

.fa-sd-card::before {
  content: "\f7c2";
}

.fa-volume-slash::before {
  content: "\f2e2";
}

.fa-border-bottom::before {
  content: "\f84d";
}

.fa-wifi-weak::before {
  content: "\f6aa";
}

.fa-wifi-1::before {
  content: "\f6aa";
}

.fa-dragon::before {
  content: "\f6d5";
}

.fa-shoe-prints::before {
  content: "\f54b";
}

.fa-circle-plus::before {
  content: "\f055";
}

.fa-plus-circle::before {
  content: "\f055";
}

.fa-face-grin-tongue-wink::before {
  content: "\f58b";
}

.fa-grin-tongue-wink::before {
  content: "\f58b";
}

.fa-hand-holding::before {
  content: "\f4bd";
}

.fa-plug-circle-exclamation::before {
  content: "\e55d";
}

.fa-link-slash::before {
  content: "\f127";
}

.fa-chain-broken::before {
  content: "\f127";
}

.fa-chain-slash::before {
  content: "\f127";
}

.fa-unlink::before {
  content: "\f127";
}

.fa-clone::before {
  content: "\f24d";
}

.fa-person-walking-arrow-loop-left::before {
  content: "\e551";
}

.fa-arrow-up-z-a::before {
  content: "\f882";
}

.fa-sort-alpha-up-alt::before {
  content: "\f882";
}

.fa-fire-flame-curved::before {
  content: "\f7e4";
}

.fa-fire-alt::before {
  content: "\f7e4";
}

.fa-tornado::before {
  content: "\f76f";
}

.fa-file-circle-plus::before {
  content: "\e494";
}

.fa-delete-right::before {
  content: "\e154";
}

.fa-book-quran::before {
  content: "\f687";
}

.fa-quran::before {
  content: "\f687";
}

.fa-circle-quarter::before {
  content: "\e11f";
}

.fa-anchor::before {
  content: "\f13d";
}

.fa-border-all::before {
  content: "\f84c";
}

.fa-function::before {
  content: "\f661";
}

.fa-face-angry::before {
  content: "\f556";
}

.fa-angry::before {
  content: "\f556";
}

.fa-people-simple::before {
  content: "\e21b";
}

.fa-cookie-bite::before {
  content: "\f564";
}

.fa-arrow-trend-down::before {
  content: "\e097";
}

.fa-rss::before {
  content: "\f09e";
}

.fa-feed::before {
  content: "\f09e";
}

.fa-face-monocle::before {
  content: "\e380";
}

.fa-draw-polygon::before {
  content: "\f5ee";
}

.fa-scale-balanced::before {
  content: "\f24e";
}

.fa-balance-scale::before {
  content: "\f24e";
}

.fa-calendar-lines::before {
  content: "\e0d5";
}

.fa-calendar-note::before {
  content: "\e0d5";
}

.fa-arrow-down-big-small::before {
  content: "\f88c";
}

.fa-sort-size-down::before {
  content: "\f88c";
}

.fa-gauge-simple-high::before {
  content: "\f62a";
}

.fa-tachometer::before {
  content: "\f62a";
}

.fa-tachometer-fast::before {
  content: "\f62a";
}

.fa-do-not-enter::before {
  content: "\f5ec";
}

.fa-shower::before {
  content: "\f2cc";
}

.fa-dice-d8::before {
  content: "\f6d2";
}

.fa-desktop::before {
  content: "\f390";
}

.fa-desktop-alt::before {
  content: "\f390";
}

.fa-m::before {
  content: "M";
}

.fa-spinner-scale::before {
  content: "\e62a";
}

.fa-grip-dots-vertical::before {
  content: "\e411";
}

.fa-face-viewfinder::before {
  content: "\e2ff";
}

.fa-soft-serve::before {
  content: "\e400";
}

.fa-creemee::before {
  content: "\e400";
}

.fa-h5::before {
  content: "\e412";
}

.fa-hand-back-point-down::before {
  content: "\e19e";
}

.fa-table-list::before {
  content: "\f00b";
}

.fa-th-list::before {
  content: "\f00b";
}

.fa-basket-shopping-minus::before {
  content: "\e652";
}

.fa-comment-sms::before {
  content: "\f7cd";
}

.fa-sms::before {
  content: "\f7cd";
}

.fa-rectangle::before {
  content: "\f2fa";
}

.fa-rectangle-landscape::before {
  content: "\f2fa";
}

.fa-clipboard-list-check::before {
  content: "\f737";
}

.fa-turkey::before {
  content: "\f725";
}

.fa-book::before {
  content: "\f02d";
}

.fa-user-plus::before {
  content: "\f234";
}

.fa-ice-skate::before {
  content: "\f7ac";
}

.fa-check::before {
  content: "\f00c";
}

.fa-battery-three-quarters::before {
  content: "\f241";
}

.fa-battery-4::before {
  content: "\f241";
}

.fa-tomato::before {
  content: "\e330";
}

.fa-sword-laser::before {
  content: "\e03b";
}

.fa-house-circle-check::before {
  content: "\e509";
}

.fa-buildings::before {
  content: "\e0cc";
}

.fa-angle-left::before {
  content: "\f104";
}

.fa-cart-flatbed-boxes::before {
  content: "\f475";
}

.fa-dolly-flatbed-alt::before {
  content: "\f475";
}

.fa-diagram-successor::before {
  content: "\e47a";
}

.fa-truck-arrow-right::before {
  content: "\e58b";
}

.fa-square-w::before {
  content: "\e285";
}

.fa-arrows-split-up-and-left::before {
  content: "\e4bc";
}

.fa-lamp::before {
  content: "\f4ca";
}

.fa-airplay::before {
  content: "\e089";
}

.fa-hand-fist::before {
  content: "\f6de";
}

.fa-fist-raised::before {
  content: "\f6de";
}

.fa-shield-quartered::before {
  content: "\e575";
}

.fa-slash-forward::before {
  content: "\/";
}

.fa-location-pen::before {
  content: "\f607";
}

.fa-map-marker-edit::before {
  content: "\f607";
}

.fa-cloud-moon::before {
  content: "\f6c3";
}

.fa-pot-food::before {
  content: "\e43f";
}

.fa-briefcase::before {
  content: "\f0b1";
}

.fa-person-falling::before {
  content: "\e546";
}

.fa-image-portrait::before {
  content: "\f3e0";
}

.fa-portrait::before {
  content: "\f3e0";
}

.fa-user-tag::before {
  content: "\f507";
}

.fa-rug::before {
  content: "\e569";
}

.fa-print-slash::before {
  content: "\f686";
}

.fa-earth-europe::before {
  content: "\f7a2";
}

.fa-globe-europe::before {
  content: "\f7a2";
}

.fa-cart-flatbed-suitcase::before {
  content: "\f59d";
}

.fa-luggage-cart::before {
  content: "\f59d";
}

.fa-hand-back-point-ribbon::before {
  content: "\e1a0";
}

.fa-rectangle-xmark::before {
  content: "\f410";
}

.fa-rectangle-times::before {
  content: "\f410";
}

.fa-times-rectangle::before {
  content: "\f410";
}

.fa-window-close::before {
  content: "\f410";
}

.fa-tire-rugged::before {
  content: "\f634";
}

.fa-lightbulb-dollar::before {
  content: "\f670";
}

.fa-cowbell::before {
  content: "\f8b3";
}

.fa-baht-sign::before {
  content: "\e0ac";
}

.fa-corner::before {
  content: "\e3fe";
}

.fa-chevrons-right::before {
  content: "\f324";
}

.fa-chevron-double-right::before {
  content: "\f324";
}

.fa-book-open::before {
  content: "\f518";
}

.fa-book-journal-whills::before {
  content: "\f66a";
}

.fa-journal-whills::before {
  content: "\f66a";
}

.fa-inhaler::before {
  content: "\f5f9";
}

.fa-handcuffs::before {
  content: "\e4f8";
}

.fa-snake::before {
  content: "\f716";
}

.fa-triangle-exclamation::before {
  content: "\f071";
}

.fa-exclamation-triangle::before {
  content: "\f071";
}

.fa-warning::before {
  content: "\f071";
}

.fa-note-medical::before {
  content: "\e200";
}

.fa-database::before {
  content: "\f1c0";
}

.fa-down-left::before {
  content: "\e16a";
}

.fa-share::before {
  content: "\f064";
}

.fa-mail-forward::before {
  content: "\f064";
}

.fa-face-thinking::before {
  content: "\e39b";
}

.fa-turn-down-right::before {
  content: "\e455";
}

.fa-bottle-droplet::before {
  content: "\e4c4";
}

.fa-mask-face::before {
  content: "\e1d7";
}

.fa-hill-rockslide::before {
  content: "\e508";
}

.fa-scanner-keyboard::before {
  content: "\f489";
}

.fa-circle-o::before {
  content: "\e119";
}

.fa-grid-horizontal::before {
  content: "\e307";
}

.fa-message-dollar::before {
  content: "\f650";
}

.fa-comment-alt-dollar::before {
  content: "\f650";
}

.fa-right-left::before {
  content: "\f362";
}

.fa-exchange-alt::before {
  content: "\f362";
}

.fa-columns-3::before {
  content: "\e361";
}

.fa-paper-plane::before {
  content: "\f1d8";
}

.fa-road-circle-exclamation::before {
  content: "\e565";
}

.fa-dungeon::before {
  content: "\f6d9";
}

.fa-hand-holding-box::before {
  content: "\f47b";
}

.fa-input-text::before {
  content: "\e1bf";
}

.fa-window-flip::before {
  content: "\f40f";
}

.fa-window-alt::before {
  content: "\f40f";
}

.fa-align-right::before {
  content: "\f038";
}

.fa-scanner-gun::before {
  content: "\f488";
}

.fa-scanner::before {
  content: "\f488";
}

.fa-tire::before {
  content: "\f631";
}

.fa-engine::before {
  content: "\e16e";
}

.fa-money-bill-1-wave::before {
  content: "\f53b";
}

.fa-money-bill-wave-alt::before {
  content: "\f53b";
}

.fa-life-ring::before {
  content: "\f1cd";
}

.fa-hands::before {
  content: "\f2a7";
}

.fa-sign-language::before {
  content: "\f2a7";
}

.fa-signing::before {
  content: "\f2a7";
}

.fa-circle-caret-right::before {
  content: "\f330";
}

.fa-caret-circle-right::before {
  content: "\f330";
}

.fa-turn-left::before {
  content: "\e636";
}

.fa-wheat::before {
  content: "\f72d";
}

.fa-file-spreadsheet::before {
  content: "\f65b";
}

.fa-audio-description-slash::before {
  content: "\e0a8";
}

.fa-bell-ring::before {
  content: "\e62c";
}

.fa-calendar-day::before {
  content: "\f783";
}

.fa-water-ladder::before {
  content: "\f5c5";
}

.fa-ladder-water::before {
  content: "\f5c5";
}

.fa-swimming-pool::before {
  content: "\f5c5";
}

.fa-arrows-up-down::before {
  content: "\f07d";
}

.fa-arrows-v::before {
  content: "\f07d";
}

.fa-chess-pawn-piece::before {
  content: "\f444";
}

.fa-chess-pawn-alt::before {
  content: "\f444";
}

.fa-face-grimace::before {
  content: "\f57f";
}

.fa-grimace::before {
  content: "\f57f";
}

.fa-wheelchair-move::before {
  content: "\e2ce";
}

.fa-wheelchair-alt::before {
  content: "\e2ce";
}

.fa-turn-down::before {
  content: "\f3be";
}

.fa-level-down-alt::before {
  content: "\f3be";
}

.fa-square-s::before {
  content: "\e27d";
}

.fa-rectangle-barcode::before {
  content: "\f463";
}

.fa-barcode-alt::before {
  content: "\f463";
}

.fa-person-walking-arrow-right::before {
  content: "\e552";
}

.fa-square-envelope::before {
  content: "\f199";
}

.fa-envelope-square::before {
  content: "\f199";
}

.fa-dice::before {
  content: "\f522";
}

.fa-unicorn::before {
  content: "\f727";
}

.fa-bowling-ball::before {
  content: "\f436";
}

.fa-pompebled::before {
  content: "\e43d";
}

.fa-brain::before {
  content: "\f5dc";
}

.fa-watch-smart::before {
  content: "\e2cc";
}

.fa-book-user::before {
  content: "\f7e7";
}

.fa-sensor-cloud::before {
  content: "\e02c";
}

.fa-sensor-smoke::before {
  content: "\e02c";
}

.fa-clapperboard-play::before {
  content: "\e132";
}

.fa-bandage::before {
  content: "\f462";
}

.fa-band-aid::before {
  content: "\f462";
}

.fa-calendar-minus::before {
  content: "\f272";
}

.fa-circle-xmark::before {
  content: "\f057";
}

.fa-times-circle::before {
  content: "\f057";
}

.fa-xmark-circle::before {
  content: "\f057";
}

.fa-circle-4::before {
  content: "\e0f1";
}

.fa-gifts::before {
  content: "\f79c";
}

.fa-album-collection::before {
  content: "\f8a0";
}

.fa-hotel::before {
  content: "\f594";
}

.fa-earth-asia::before {
  content: "\f57e";
}

.fa-globe-asia::before {
  content: "\f57e";
}

.fa-id-card-clip::before {
  content: "\f47f";
}

.fa-id-card-alt::before {
  content: "\f47f";
}

.fa-magnifying-glass-plus::before {
  content: "\f00e";
}

.fa-search-plus::before {
  content: "\f00e";
}

.fa-thumbs-up::before {
  content: "\f164";
}

.fa-cloud-showers::before {
  content: "\f73f";
}

.fa-user-clock::before {
  content: "\f4fd";
}

.fa-onion::before {
  content: "\e427";
}

.fa-clock-twelve-thirty::before {
  content: "\e359";
}

.fa-arrow-down-to-dotted-line::before {
  content: "\e095";
}

.fa-hand-dots::before {
  content: "\f461";
}

.fa-allergies::before {
  content: "\f461";
}

.fa-file-invoice::before {
  content: "\f570";
}

.fa-window-minimize::before {
  content: "\f2d1";
}

.fa-rectangle-wide::before {
  content: "\f2fc";
}

.fa-comment-arrow-up::before {
  content: "\e144";
}

.fa-garlic::before {
  content: "\e40e";
}

.fa-mug-saucer::before {
  content: "\f0f4";
}

.fa-coffee::before {
  content: "\f0f4";
}

.fa-brush::before {
  content: "\f55d";
}

.fa-tree-decorated::before {
  content: "\f7dc";
}

.fa-mask::before {
  content: "\f6fa";
}

.fa-calendar-heart::before {
  content: "\e0d3";
}

.fa-magnifying-glass-minus::before {
  content: "\f010";
}

.fa-search-minus::before {
  content: "\f010";
}

.fa-flower::before {
  content: "\f7ff";
}

.fa-arrow-down-from-arc::before {
  content: "\e614";
}

.fa-right-left-large::before {
  content: "\e5e1";
}

.fa-ruler-vertical::before {
  content: "\f548";
}

.fa-circles-overlap::before {
  content: "\e600";
}

.fa-user-large::before {
  content: "\f406";
}

.fa-user-alt::before {
  content: "\f406";
}

.fa-starship-freighter::before {
  content: "\e03a";
}

.fa-train-tram::before {
  content: "\e5b4";
}

.fa-bridge-suspension::before {
  content: "\e4cd";
}

.fa-trash-check::before {
  content: "\e2af";
}

.fa-user-nurse::before {
  content: "\f82f";
}

.fa-boombox::before {
  content: "\f8a5";
}

.fa-syringe::before {
  content: "\f48e";
}

.fa-cloud-sun::before {
  content: "\f6c4";
}

.fa-shield-exclamation::before {
  content: "\e247";
}

.fa-stopwatch-20::before {
  content: "\e06f";
}

.fa-square-full::before {
  content: "\f45c";
}

.fa-grip-dots::before {
  content: "\e410";
}

.fa-comment-exclamation::before {
  content: "\f4af";
}

.fa-pen-swirl::before {
  content: "\e214";
}

.fa-falafel::before {
  content: "\e40a";
}

.fa-circle-2::before {
  content: "\e0ef";
}

.fa-magnet::before {
  content: "\f076";
}

.fa-jar::before {
  content: "\e516";
}

.fa-gramophone::before {
  content: "\f8bd";
}

.fa-dice-d12::before {
  content: "\f6ce";
}

.fa-note-sticky::before {
  content: "\f249";
}

.fa-sticky-note::before {
  content: "\f249";
}

.fa-down::before {
  content: "\f354";
}

.fa-arrow-alt-down::before {
  content: "\f354";
}

.fa-hundred-points::before {
  content: "\e41c";
}

.fa-100::before {
  content: "\e41c";
}

.fa-paperclip-vertical::before {
  content: "\e3c2";
}

.fa-wind-warning::before {
  content: "\f776";
}

.fa-wind-circle-exclamation::before {
  content: "\f776";
}

.fa-location-pin-slash::before {
  content: "\f60c";
}

.fa-map-marker-slash::before {
  content: "\f60c";
}

.fa-face-sad-sweat::before {
  content: "\e38a";
}

.fa-bug-slash::before {
  content: "\e490";
}

.fa-cupcake::before {
  content: "\e402";
}

.fa-light-switch-off::before {
  content: "\e018";
}

.fa-toggle-large-off::before {
  content: "\e5b0";
}

.fa-pen-fancy-slash::before {
  content: "\e210";
}

.fa-truck-container::before {
  content: "\f4dc";
}

.fa-boot::before {
  content: "\f782";
}

.fa-arrow-up-from-water-pump::before {
  content: "\e4b6";
}

.fa-file-check::before {
  content: "\f316";
}

.fa-bone::before {
  content: "\f5d7";
}

.fa-cards-blank::before {
  content: "\e4df";
}

.fa-circle-3::before {
  content: "\e0f0";
}

.fa-bench-tree::before {
  content: "\e2e7";
}

.fa-keyboard-brightness-low::before {
  content: "\e1c1";
}

.fa-ski-boot-ski::before {
  content: "\e3cd";
}

.fa-brain-circuit::before {
  content: "\e0c6";
}

.fa-user-injured::before {
  content: "\f728";
}

.fa-block-brick-fire::before {
  content: "\e3dc";
}

.fa-firewall::before {
  content: "\e3dc";
}

.fa-face-sad-tear::before {
  content: "\f5b4";
}

.fa-sad-tear::before {
  content: "\f5b4";
}

.fa-plane::before {
  content: "\f072";
}

.fa-tent-arrows-down::before {
  content: "\e581";
}

.fa-exclamation::before {
  content: "\!";
}

.fa-arrows-spin::before {
  content: "\e4bb";
}

.fa-face-smile-relaxed::before {
  content: "\e392";
}

.fa-comment-xmark::before {
  content: "\f4b5";
}

.fa-comment-times::before {
  content: "\f4b5";
}

.fa-print::before {
  content: "\f02f";
}

.fa-turkish-lira-sign::before {
  content: "\e2bb";
}

.fa-try::before {
  content: "\e2bb";
}

.fa-turkish-lira::before {
  content: "\e2bb";
}

.fa-face-nose-steam::before {
  content: "\e382";
}

.fa-circle-waveform-lines::before {
  content: "\e12d";
}

.fa-waveform-circle::before {
  content: "\e12d";
}

.fa-dollar-sign::before {
  content: "\$";
}

.fa-dollar::before {
  content: "\$";
}

.fa-usd::before {
  content: "\$";
}

.fa-ferris-wheel::before {
  content: "\e174";
}

.fa-computer-speaker::before {
  content: "\f8b2";
}

.fa-skull-cow::before {
  content: "\f8de";
}

.fa-x::before {
  content: "X";
}

.fa-magnifying-glass-dollar::before {
  content: "\f688";
}

.fa-search-dollar::before {
  content: "\f688";
}

.fa-users-gear::before {
  content: "\f509";
}

.fa-users-cog::before {
  content: "\f509";
}

.fa-person-military-pointing::before {
  content: "\e54a";
}

.fa-building-columns::before {
  content: "\f19c";
}

.fa-bank::before {
  content: "\f19c";
}

.fa-institution::before {
  content: "\f19c";
}

.fa-museum::before {
  content: "\f19c";
}

.fa-university::before {
  content: "\f19c";
}

.fa-circle-t::before {
  content: "\e124";
}

.fa-sack::before {
  content: "\f81c";
}

.fa-grid-2::before {
  content: "\e196";
}

.fa-camera-cctv::before {
  content: "\f8ac";
}

.fa-cctv::before {
  content: "\f8ac";
}

.fa-umbrella::before {
  content: "\f0e9";
}

.fa-trowel::before {
  content: "\e589";
}

.fa-horizontal-rule::before {
  content: "\f86c";
}

.fa-bed-front::before {
  content: "\f8f7";
}

.fa-bed-alt::before {
  content: "\f8f7";
}

.fa-d::before {
  content: "D";
}

.fa-stapler::before {
  content: "\e5af";
}

.fa-masks-theater::before {
  content: "\f630";
}

.fa-theater-masks::before {
  content: "\f630";
}

.fa-file-gif::before {
  content: "\e645";
}

.fa-kip-sign::before {
  content: "\e1c4";
}

.fa-face-woozy::before {
  content: "\e3a2";
}

.fa-cloud-question::before {
  content: "\e492";
}

.fa-pineapple::before {
  content: "\e31f";
}

.fa-hand-point-left::before {
  content: "\f0a5";
}

.fa-gallery-thumbnails::before {
  content: "\e3aa";
}

.fa-circle-j::before {
  content: "\e112";
}

.fa-eyes::before {
  content: "\e367";
}

.fa-handshake-simple::before {
  content: "\f4c6";
}

.fa-handshake-alt::before {
  content: "\f4c6";
}

.fa-page-caret-up::before {
  content: "\e42a";
}

.fa-file-caret-up::before {
  content: "\e42a";
}

.fa-jet-fighter::before {
  content: "\f0fb";
}

.fa-fighter-jet::before {
  content: "\f0fb";
}

.fa-comet::before {
  content: "\e003";
}

.fa-square-share-nodes::before {
  content: "\f1e1";
}

.fa-share-alt-square::before {
  content: "\f1e1";
}

.fa-reflect-vertical::before {
  content: "\e665";
}

.fa-shield-keyhole::before {
  content: "\e248";
}

.fa-file-mp4::before {
  content: "\e649";
}

.fa-barcode::before {
  content: "\f02a";
}

.fa-bulldozer::before {
  content: "\e655";
}

.fa-plus-minus::before {
  content: "\e43c";
}

.fa-square-sliders-vertical::before {
  content: "\f3f2";
}

.fa-sliders-v-square::before {
  content: "\f3f2";
}

.fa-video::before {
  content: "\f03d";
}

.fa-video-camera::before {
  content: "\f03d";
}

.fa-message-middle::before {
  content: "\e1e1";
}

.fa-comment-middle-alt::before {
  content: "\e1e1";
}

.fa-graduation-cap::before {
  content: "\f19d";
}

.fa-mortar-board::before {
  content: "\f19d";
}

.fa-hand-holding-medical::before {
  content: "\e05c";
}

.fa-person-circle-check::before {
  content: "\e53e";
}

.fa-square-z::before {
  content: "\e288";
}

.fa-message-text::before {
  content: "\e1e6";
}

.fa-comment-alt-text::before {
  content: "\e1e6";
}

.fa-turn-up::before {
  content: "\f3bf";
}

.fa-level-up-alt::before {
  content: "\f3bf";
}

.sr-only,
.fa-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.sr-only-focusable:not(:focus),
.fa-sr-only-focusable:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/*!
 * Font Awesome Pro 6.5.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2023 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-brands: "Font Awesome 6 Brands";
  --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("FontAwesome/Fonts/fa-brands-400.woff2") format("woff2"), url("FontAwesome/Fonts/fa-brands-400.ttf") format("truetype");
}
.fab,
.fa-brands {
  font-weight: 400;
}

.fa-monero:before {
  content: "\f3d0";
}

.fa-hooli:before {
  content: "\f427";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-shopware:before {
  content: "\f5b5";
}

.fa-creative-commons-nc:before {
  content: "\f4e8";
}

.fa-aws:before {
  content: "\f375";
}

.fa-redhat:before {
  content: "\f7bc";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-cloudflare:before {
  content: "\e07d";
}

.fa-ups:before {
  content: "\f7e0";
}

.fa-pixiv:before {
  content: "\e640";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-dyalog:before {
  content: "\f399";
}

.fa-bity:before {
  content: "\f37a";
}

.fa-stackpath:before {
  content: "\f842";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-modx:before {
  content: "\f285";
}

.fa-guilded:before {
  content: "\e07e";
}

.fa-vnv:before {
  content: "\f40b";
}

.fa-square-js:before {
  content: "\f3b9";
}

.fa-js-square:before {
  content: "\f3b9";
}

.fa-microsoft:before {
  content: "\f3ca";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-orcid:before {
  content: "\f8d2";
}

.fa-java:before {
  content: "\f4e4";
}

.fa-invision:before {
  content: "\f7b0";
}

.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}

.fa-centercode:before {
  content: "\f380";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-hire-a-helper:before {
  content: "\f3b0";
}

.fa-creative-commons-by:before {
  content: "\f4e7";
}

.fa-unity:before {
  content: "\e049";
}

.fa-whmcs:before {
  content: "\f40d";
}

.fa-rocketchat:before {
  content: "\f3e8";
}

.fa-vk:before {
  content: "\f189";
}

.fa-untappd:before {
  content: "\f405";
}

.fa-mailchimp:before {
  content: "\f59e";
}

.fa-css3-alt:before {
  content: "\f38b";
}

.fa-square-reddit:before {
  content: "\f1a2";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-square-font-awesome:before {
  content: "\e5ad";
}

.fa-deskpro:before {
  content: "\f38f";
}

.fa-brave:before {
  content: "\e63c";
}

.fa-sistrix:before {
  content: "\f3ee";
}

.fa-square-instagram:before {
  content: "\e055";
}

.fa-instagram-square:before {
  content: "\e055";
}

.fa-battle-net:before {
  content: "\f835";
}

.fa-the-red-yeti:before {
  content: "\f69d";
}

.fa-square-hacker-news:before {
  content: "\f3af";
}

.fa-hacker-news-square:before {
  content: "\f3af";
}

.fa-edge:before {
  content: "\f282";
}

.fa-threads:before {
  content: "\e618";
}

.fa-napster:before {
  content: "\f3d2";
}

.fa-square-snapchat:before {
  content: "\f2ad";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-google-plus-g:before {
  content: "\f0d5";
}

.fa-artstation:before {
  content: "\f77a";
}

.fa-markdown:before {
  content: "\f60f";
}

.fa-sourcetree:before {
  content: "\f7d3";
}

.fa-google-plus:before {
  content: "\f2b3";
}

.fa-diaspora:before {
  content: "\f791";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-phoenix-squadron:before {
  content: "\f511";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-algolia:before {
  content: "\f36c";
}

.fa-red-river:before {
  content: "\f3e3";
}

.fa-creative-commons-sa:before {
  content: "\f4ef";
}

.fa-safari:before {
  content: "\f267";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-square-font-awesome-stroke:before {
  content: "\f35c";
}

.fa-font-awesome-alt:before {
  content: "\f35c";
}

.fa-atlassian:before {
  content: "\f77b";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-digital-ocean:before {
  content: "\f391";
}

.fa-nimblr:before {
  content: "\f5a8";
}

.fa-chromecast:before {
  content: "\f838";
}

.fa-evernote:before {
  content: "\f839";
}

.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-creative-commons-sampling:before {
  content: "\f4f0";
}

.fa-adversal:before {
  content: "\f36a";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-watchman-monitoring:before {
  content: "\e087";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-weixin:before {
  content: "\f1d7";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-git-alt:before {
  content: "\f841";
}

.fa-lyft:before {
  content: "\f3c3";
}

.fa-rev:before {
  content: "\f5b2";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-wizards-of-the-coast:before {
  content: "\f730";
}

.fa-square-viadeo:before {
  content: "\f2aa";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-meetup:before {
  content: "\f2e0";
}

.fa-centos:before {
  content: "\f789";
}

.fa-adn:before {
  content: "\f170";
}

.fa-cloudsmith:before {
  content: "\f384";
}

.fa-opensuse:before {
  content: "\e62b";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-square-dribbble:before {
  content: "\f397";
}

.fa-dribbble-square:before {
  content: "\f397";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-node:before {
  content: "\f419";
}

.fa-mix:before {
  content: "\f3cb";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-cc-apple-pay:before {
  content: "\f416";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-debian:before {
  content: "\e60b";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-instalod:before {
  content: "\e081";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-sellcast:before {
  content: "\f2da";
}

.fa-square-twitter:before {
  content: "\f081";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-r-project:before {
  content: "\f4f7";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-freebsd:before {
  content: "\f3a4";
}

.fa-vuejs:before {
  content: "\f41f";
}

.fa-accusoft:before {
  content: "\f369";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-fonticons-fi:before {
  content: "\f3a2";
}

.fa-app-store:before {
  content: "\f36f";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-itunes-note:before {
  content: "\f3b5";
}

.fa-golang:before {
  content: "\e40f";
}

.fa-kickstarter:before {
  content: "\f3bb";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-uncharted:before {
  content: "\e084";
}

.fa-firstdraft:before {
  content: "\f3a1";
}

.fa-square-youtube:before {
  content: "\f431";
}

.fa-youtube-square:before {
  content: "\f431";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-wpressr:before {
  content: "\f3e4";
}

.fa-rendact:before {
  content: "\f3e4";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-galactic-republic:before {
  content: "\f50c";
}

.fa-nfc-directional:before {
  content: "\e530";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-joget:before {
  content: "\f3b7";
}

.fa-fedora:before {
  content: "\f798";
}

.fa-stripe-s:before {
  content: "\f42a";
}

.fa-meta:before {
  content: "\e49b";
}

.fa-laravel:before {
  content: "\f3bd";
}

.fa-hotjar:before {
  content: "\f3b1";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-square-letterboxd:before {
  content: "\e62e";
}

.fa-sticker-mule:before {
  content: "\f3f7";
}

.fa-creative-commons-zero:before {
  content: "\f4f3";
}

.fa-hips:before {
  content: "\f452";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-discord:before {
  content: "\f392";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-app-store-ios:before {
  content: "\f370";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-confluence:before {
  content: "\f78d";
}

.fa-shoelace:before {
  content: "\e60c";
}

.fa-mdb:before {
  content: "\f8ca";
}

.fa-dochub:before {
  content: "\f394";
}

.fa-accessible-icon:before {
  content: "\f368";
}

.fa-ebay:before {
  content: "\f4f4";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-unsplash:before {
  content: "\e07c";
}

.fa-yarn:before {
  content: "\f7e3";
}

.fa-square-steam:before {
  content: "\f1b7";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-500px:before {
  content: "\f26e";
}

.fa-square-vimeo:before {
  content: "\f194";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-asymmetrik:before {
  content: "\f372";
}

.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-font-awesome-flag:before {
  content: "\f2b4";
}

.fa-font-awesome-logo-full:before {
  content: "\f2b4";
}

.fa-gratipay:before {
  content: "\f184";
}

.fa-apple:before {
  content: "\f179";
}

.fa-hive:before {
  content: "\e07f";
}

.fa-gitkraken:before {
  content: "\f3a6";
}

.fa-keybase:before {
  content: "\f4f5";
}

.fa-apple-pay:before {
  content: "\f415";
}

.fa-padlet:before {
  content: "\e4a0";
}

.fa-amazon-pay:before {
  content: "\f42c";
}

.fa-square-github:before {
  content: "\f092";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-fedex:before {
  content: "\f797";
}

.fa-phoenix-framework:before {
  content: "\f3dc";
}

.fa-shopify:before {
  content: "\e057";
}

.fa-neos:before {
  content: "\f612";
}

.fa-square-threads:before {
  content: "\e619";
}

.fa-hackerrank:before {
  content: "\f5f7";
}

.fa-researchgate:before {
  content: "\f4f8";
}

.fa-swift:before {
  content: "\f8e1";
}

.fa-angular:before {
  content: "\f420";
}

.fa-speakap:before {
  content: "\f3f3";
}

.fa-angrycreative:before {
  content: "\f36e";
}

.fa-y-combinator:before {
  content: "\f23b";
}

.fa-empire:before {
  content: "\f1d1";
}

.fa-envira:before {
  content: "\f299";
}

.fa-google-scholar:before {
  content: "\e63b";
}

.fa-square-gitlab:before {
  content: "\e5ae";
}

.fa-gitlab-square:before {
  content: "\e5ae";
}

.fa-studiovinari:before {
  content: "\f3f8";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-goodreads:before {
  content: "\f3a8";
}

.fa-square-odnoklassniki:before {
  content: "\f264";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-sith:before {
  content: "\f512";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-page4:before {
  content: "\f3d7";
}

.fa-hashnode:before {
  content: "\e499";
}

.fa-react:before {
  content: "\f41b";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-squarespace:before {
  content: "\f5be";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-creative-commons-share:before {
  content: "\f4f2";
}

.fa-bitcoin:before {
  content: "\f379";
}

.fa-keycdn:before {
  content: "\f3ba";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-itch-io:before {
  content: "\f83a";
}

.fa-umbraco:before {
  content: "\f8e8";
}

.fa-galactic-senate:before {
  content: "\f50d";
}

.fa-ubuntu:before {
  content: "\f7df";
}

.fa-draft2digital:before {
  content: "\f396";
}

.fa-stripe:before {
  content: "\f429";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-gg:before {
  content: "\f260";
}

.fa-dhl:before {
  content: "\f790";
}

.fa-square-pinterest:before {
  content: "\f0d3";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-xing:before {
  content: "\f168";
}

.fa-blackberry:before {
  content: "\f37b";
}

.fa-creative-commons-pd:before {
  content: "\f4ec";
}

.fa-playstation:before {
  content: "\f3df";
}

.fa-quinscape:before {
  content: "\f459";
}

.fa-less:before {
  content: "\f41d";
}

.fa-blogger-b:before {
  content: "\f37d";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-signal-messenger:before {
  content: "\e663";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-typo3:before {
  content: "\f42b";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-dailymotion:before {
  content: "\e052";
}

.fa-affiliatetheme:before {
  content: "\f36b";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-bootstrap:before {
  content: "\f836";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-nfc-symbol:before {
  content: "\e531";
}

.fa-mintbit:before {
  content: "\e62f";
}

.fa-ethereum:before {
  content: "\f42e";
}

.fa-speaker-deck:before {
  content: "\f83c";
}

.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}

.fa-patreon:before {
  content: "\f3d9";
}

.fa-avianex:before {
  content: "\f374";
}

.fa-ello:before {
  content: "\f5f1";
}

.fa-gofore:before {
  content: "\f3a7";
}

.fa-bimobject:before {
  content: "\f378";
}

.fa-brave-reverse:before {
  content: "\e63d";
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-square-google-plus:before {
  content: "\f0d4";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-mandalorian:before {
  content: "\f50f";
}

.fa-first-order-alt:before {
  content: "\f50a";
}

.fa-osi:before {
  content: "\f41a";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-d-and-d-beyond:before {
  content: "\f6ca";
}

.fa-periscope:before {
  content: "\f3da";
}

.fa-fulcrum:before {
  content: "\f50b";
}

.fa-cloudscale:before {
  content: "\f383";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-mizuni:before {
  content: "\f3cc";
}

.fa-schlix:before {
  content: "\f3ea";
}

.fa-square-xing:before {
  content: "\f169";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-cloudversify:before {
  content: "\f385";
}

.fa-usps:before {
  content: "\f7e1";
}

.fa-megaport:before {
  content: "\f5a3";
}

.fa-magento:before {
  content: "\f3c4";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-fly:before {
  content: "\f417";
}

.fa-aviato:before {
  content: "\f421";
}

.fa-itunes:before {
  content: "\f3b4";
}

.fa-cuttlefish:before {
  content: "\f38c";
}

.fa-blogger:before {
  content: "\f37c";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-viber:before {
  content: "\f409";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-letterboxd:before {
  content: "\e62d";
}

.fa-symfony:before {
  content: "\f83d";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-facebook-messenger:before {
  content: "\f39f";
}

.fa-audible:before {
  content: "\f373";
}

.fa-think-peaks:before {
  content: "\f731";
}

.fa-bilibili:before {
  content: "\e3d9";
}

.fa-erlang:before {
  content: "\f39d";
}

.fa-x-twitter:before {
  content: "\e61b";
}

.fa-cotton-bureau:before {
  content: "\f89e";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-42-group:before {
  content: "\e080";
}

.fa-innosoft:before {
  content: "\e080";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-elementor:before {
  content: "\f430";
}

.fa-square-pied-piper:before {
  content: "\e01e";
}

.fa-pied-piper-square:before {
  content: "\e01e";
}

.fa-creative-commons-nd:before {
  content: "\f4eb";
}

.fa-palfed:before {
  content: "\f3d8";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-resolving:before {
  content: "\f3e7";
}

.fa-xbox:before {
  content: "\f412";
}

.fa-searchengin:before {
  content: "\f3eb";
}

.fa-tiktok:before {
  content: "\e07b";
}

.fa-square-facebook:before {
  content: "\f082";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-linkedin:before {
  content: "\f08c";
}

.fa-hubspot:before {
  content: "\f3b2";
}

.fa-deploydog:before {
  content: "\f38e";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-mixer:before {
  content: "\e056";
}

.fa-square-lastfm:before {
  content: "\f203";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-mendeley:before {
  content: "\f7b3";
}

.fa-uniregistry:before {
  content: "\f404";
}

.fa-figma:before {
  content: "\f799";
}

.fa-creative-commons-remix:before {
  content: "\f4ee";
}

.fa-cc-amazon-pay:before {
  content: "\f42d";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-cmplid:before {
  content: "\e360";
}

.fa-upwork:before {
  content: "\e641";
}

.fa-facebook:before {
  content: "\f09a";
}

.fa-gripfire:before {
  content: "\f3ac";
}

.fa-jedi-order:before {
  content: "\f50e";
}

.fa-uikit:before {
  content: "\f403";
}

.fa-fort-awesome-alt:before {
  content: "\f3a3";
}

.fa-phabricator:before {
  content: "\f3db";
}

.fa-ussunnah:before {
  content: "\f407";
}

.fa-earlybirds:before {
  content: "\f39a";
}

.fa-trade-federation:before {
  content: "\f513";
}

.fa-autoprefixer:before {
  content: "\f41c";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-google-play:before {
  content: "\f3ab";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-line:before {
  content: "\f3c0";
}

.fa-google-drive:before {
  content: "\f3aa";
}

.fa-servicestack:before {
  content: "\f3ec";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-deezer:before {
  content: "\e077";
}

.fa-raspberry-pi:before {
  content: "\f7bb";
}

.fa-jira:before {
  content: "\f7b1";
}

.fa-docker:before {
  content: "\f395";
}

.fa-screenpal:before {
  content: "\e570";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-gitter:before {
  content: "\f426";
}

.fa-d-and-d:before {
  content: "\f38d";
}

.fa-microblog:before {
  content: "\e01a";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-pied-piper-hat:before {
  content: "\f4e5";
}

.fa-kickstarter-k:before {
  content: "\f3bc";
}

.fa-yandex:before {
  content: "\f413";
}

.fa-readme:before {
  content: "\f4d5";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-sass:before {
  content: "\f41e";
}

.fa-wirsindhandwerk:before {
  content: "\e2d0";
}

.fa-wsh:before {
  content: "\e2d0";
}

.fa-buromobelexperte:before {
  content: "\f37f";
}

.fa-salesforce:before {
  content: "\f83b";
}

.fa-octopus-deploy:before {
  content: "\e082";
}

.fa-medapps:before {
  content: "\f3c6";
}

.fa-ns8:before {
  content: "\f3d5";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-apper:before {
  content: "\f371";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-waze:before {
  content: "\f83f";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ab";
}

.fa-fantasy-flight-games:before {
  content: "\f6dc";
}

.fa-rust:before {
  content: "\e07a";
}

.fa-wix:before {
  content: "\f5cf";
}

.fa-square-behance:before {
  content: "\f1b5";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-supple:before {
  content: "\f3f9";
}

.fa-webflow:before {
  content: "\e65c";
}

.fa-rebel:before {
  content: "\f1d0";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-staylinked:before {
  content: "\f3f5";
}

.fa-kaggle:before {
  content: "\f5fa";
}

.fa-space-awesome:before {
  content: "\e5ac";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-cpanel:before {
  content: "\f388";
}

.fa-goodreads-g:before {
  content: "\f3a9";
}

.fa-square-git:before {
  content: "\f1d2";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-square-tumblr:before {
  content: "\f174";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-trello:before {
  content: "\f181";
}

.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-perbyte:before {
  content: "\e083";
}

.fa-grunt:before {
  content: "\f3ad";
}

.fa-weebly:before {
  content: "\f5cc";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-themeco:before {
  content: "\f5c6";
}

.fa-python:before {
  content: "\f3e2";
}

.fa-android:before {
  content: "\f17b";
}

.fa-bots:before {
  content: "\e340";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-hornbill:before {
  content: "\f592";
}

.fa-js:before {
  content: "\f3b8";
}

.fa-ideal:before {
  content: "\e013";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-dev:before {
  content: "\f6cc";
}

.fa-sketch:before {
  content: "\f7c6";
}

.fa-yandex-international:before {
  content: "\f414";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-uber:before {
  content: "\f402";
}

.fa-github:before {
  content: "\f09b";
}

.fa-php:before {
  content: "\f457";
}

.fa-alipay:before {
  content: "\f642";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-firefox-browser:before {
  content: "\e007";
}

.fa-replyd:before {
  content: "\f3e6";
}

.fa-suse:before {
  content: "\f7d6";
}

.fa-jenkins:before {
  content: "\f3b6";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-rockrms:before {
  content: "\f3e9";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-buffer:before {
  content: "\f837";
}

.fa-npm:before {
  content: "\f3d4";
}

.fa-yammer:before {
  content: "\f840";
}

.fa-btc:before {
  content: "\f15a";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-stubber:before {
  content: "\e5c7";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-telegram-plane:before {
  content: "\f2c6";
}

.fa-old-republic:before {
  content: "\f510";
}

.fa-odysee:before {
  content: "\e5c6";
}

.fa-square-whatsapp:before {
  content: "\f40c";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

.fa-node-js:before {
  content: "\f3d3";
}

.fa-edge-legacy:before {
  content: "\e078";
}

.fa-slack:before {
  content: "\f198";
}

.fa-slack-hash:before {
  content: "\f198";
}

.fa-medrt:before {
  content: "\f3c8";
}

.fa-usb:before {
  content: "\f287";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-vaadin:before {
  content: "\f408";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-square-x-twitter:before {
  content: "\e61a";
}

.fa-reacteurope:before {
  content: "\f75d";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-medium-m:before {
  content: "\f23a";
}

.fa-amilia:before {
  content: "\f36d";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-flipboard:before {
  content: "\f44d";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-critical-role:before {
  content: "\f6c9";
}

.fa-sitrox:before {
  content: "\e44a";
}

.fa-discourse:before {
  content: "\f393";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-mastodon:before {
  content: "\f4f6";
}

.fa-airbnb:before {
  content: "\f834";
}

.fa-wolf-pack-battalion:before {
  content: "\f514";
}

.fa-buy-n-large:before {
  content: "\f8a6";
}

.fa-gulp:before {
  content: "\f3ae";
}

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}

.fa-strava:before {
  content: "\f428";
}

.fa-ember:before {
  content: "\f423";
}

.fa-canadian-maple-leaf:before {
  content: "\f785";
}

.fa-teamspeak:before {
  content: "\f4f9";
}

.fa-pushed:before {
  content: "\f3e1";
}

.fa-wordpress-simple:before {
  content: "\f411";
}

.fa-nutritionix:before {
  content: "\f3d6";
}

.fa-wodu:before {
  content: "\e088";
}

.fa-google-pay:before {
  content: "\e079";
}

.fa-intercom:before {
  content: "\f7af";
}

.fa-zhihu:before {
  content: "\f63f";
}

.fa-korvue:before {
  content: "\f42f";
}

.fa-pix:before {
  content: "\e43a";
}

.fa-steam-symbol:before {
  content: "\f3f6";
}

/*!
 * Font Awesome Pro 6.5.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2023 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-classic: "FontAwesome";
  --fa-font-light: normal 300 1em/1 "FontAwesome";
}

@font-face {
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: 300;
  font-display: block;
  src: url("FontAwesome/Fonts/fa-light-300.woff2") format("woff2"), url("FontAwesome/Fonts/fa-light-300.ttf") format("truetype");
}
.fal,
.fa-light {
  font-weight: 300;
}

/*!
 * Font Awesome Pro 6.5.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2023 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-classic: "FontAwesome";
  --fa-font-regular: normal 400 1em/1 "FontAwesome";
}

@font-face {
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("FontAwesome/Fonts/fa-regular-400.woff2") format("woff2"), url("FontAwesome/Fonts/fa-regular-400.ttf") format("truetype");
}
.far,
.fa-regular {
  font-weight: 400;
}

/*!
 * Font Awesome Pro 6.5.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2023 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-classic: "FontAwesome";
  --fa-font-solid: normal 900 1em/1 "FontAwesome";
}

@font-face {
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("FontAwesome/Fonts/fa-solid-900.woff2") format("woff2"), url("FontAwesome/Fonts/fa-solid-900.ttf") format("truetype");
}
.fas,
.fa-solid {
  font-weight: 900;
}

@font-face {
  font-family: "MyriadPro";
  src: url("Fonts/MyriadPro-Regular.eot");
  src: url("Fonts/MyriadPro-Regular.eot?#iefix") format("embedded-opentype"), url("Fonts/MyriadPro-Regular.woff") format("woff"), url("Fonts/MyriadPro-Regular.ttf") format("truetype"), url("Fonts/MyriadPro-Regular.svg#MyriadPro-Regular") format("svg");
}
@font-face {
  font-family: "MyriadPro";
  src: url("Fonts/MyriadPro-LightCond.eot");
  src: url("Fonts/MyriadPro-LightCond.eot?#iefix") format("embedded-opentype"), url("Fonts/MyriadPro-LightCond.woff") format("woff"), url("Fonts/MyriadPro-LightCond.ttf") format("truetype"), url("Fonts/MyriadPro-LightCond.svg#MyriadPro-LightCond") format("svg");
  font-weight: 100;
}
@font-face {
  font-family: "MyriadPro";
  src: url("Fonts/MyriadPro-BoldCond.eot");
  src: url("Fonts/MyriadPro-BoldCond.eot?#iefix") format("embedded-opentype"), url("Fonts/MyriadPro-BoldCond.woff") format("woff"), url("Fonts/MyriadPro-BoldCond.ttf") format("truetype"), url("Fonts/MyriadPro-BoldCond.svg#MyriadPro-BoldCond") format("svg");
  font-weight: 600;
}
@font-face {
  font-family: "MyriadPro";
  src: url("Fonts/MyriadPro-Bold.eot");
  src: url("Fonts/MyriadPro-Bold.eot?#iefix") format("embedded-opentype"), url("Fonts/MyriadPro-Bold.woff") format("woff"), url("Fonts/MyriadPro-Bold.ttf") format("truetype"), url("Fonts/MyriadPro-Bold.svg#MyriadPro-Bold") format("svg");
  font-weight: 700;
}
@font-face {
  font-family: "Gotham Extra";
  src: url("Fonts/Gotham-XLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("Fonts/Gotham-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("Fonts/Gotham-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Extra";
  src: url("Fonts/Gotham-XLightIta.otf") format("opentype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("Fonts/Gotham-BlackItalic.otf") format("opentype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Condensed";
  src: url("Fonts/GothamCond-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("Fonts/Gotham-BoldItalic.otf") format("opentype");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Book";
  src: url("Fonts/Gotham-BookItalic.otf") format("opentype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Book";
  src: url("Fonts/Gotham-Book.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Condensed";
  src: url("Fonts/GothamCond-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Condensed";
  src: url("Fonts/GothamCond-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Condensed Book";
  src: url("Fonts/GothamCond-Book.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("Fonts/Gotham-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("Fonts/Gotham-LightItalic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("Fonts/Gotham-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("Fonts/Gotham-ThinItalic.otf") format("opentype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("Fonts/Gotham-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("Fonts/Gotham-MediumItalic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Ultra";
  src: url("Fonts/Gotham-UltraItalic.otf") format("opentype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Ultra";
  src: url("Fonts/Gotham-Ultra.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: url("Fonts/Roboto-Light.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "RobotoLight";
  font-style: normal;
  font-weight: 300;
  src: url("Fonts/Roboto-Light.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 300;
  src: url("Fonts/Roboto-LightItalic.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("Fonts/Roboto-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  src: url("Fonts/Roboto-Italic.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("Fonts/Roboto-Bold.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 700;
  src: url("Fonts/Roboto-BoldItalic.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Sanchez";
  font-style: italic;
  font-weight: 400;
  src: url("Fonts/Sanchez-Italic.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Sanchez";
  font-style: normal;
  font-weight: 400;
  src: url("Fonts/Sanchez-Regular.ttf") format("truetype");
  font-display: swap;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/FontAwesome/fontawesome.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/FontAwesome/_core.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/FontAwesome/_sizing.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/FontAwesome/_mixins.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/FontAwesome/_fixed-width.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/FontAwesome/_variables.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/FontAwesome/_list.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/FontAwesome/_bordered-pulled.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/FontAwesome/_animated.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/FontAwesome/_rotated-flipped.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/FontAwesome/_stacked.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/FontAwesome/_icons.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/FontAwesome/_screen-reader.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/FontAwesome/brands.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/FontAwesome/light.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/FontAwesome/regular.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/FontAwesome/solid.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Fonts.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAAA;AAAA;AAAA;AAAA;AAAA;ACGA;EACE;EACA;;;AAGF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAoBE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EASE;;;AAGF;AAAA;EAEE;;;AAGF;AAAA;AAAA;EAGE;;;AAGF;AAAA;AAAA;AAAA;AAAA;EAKE;;;AAEF;AAAA;EAEE;;;AChEA;EACE;;;AADF;EACE;;;AADF;EACE;;;AADF;EACE;;;AADF;EACE;;;AADF;EACE;;;AADF;EACE;;;AADF;EACE;;;AADF;EACE;;;AADF;EACE;;;AAMF;ECIA;EACA;EACA;;;ADNA;ECIA;EACA;EACA;;;ADNA;ECIA;EACA;EACA;;;ADNA;ECIA;EACA;EACA;;;ADNA;ECIA;EACA;EACA;;;ADNA;ECIA;EACA;EACA;;;ACfF;EACE;EACA,OCMwB;;;ACR1B;EACE;EACA;EACA;;AAEA;EAAO;;;AAGT;EACE;EACA;EACA;EACA;EACA;;;ACbF;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;EACE;EACA;;;ACfF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;AAAA;EAEE;EACA;EACA;EACA;EACA;;;AAMF;EACE;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;IASE;IACA;IACA;IACA;IACA;;;AAIJ;EACE;IAAU;;EACV;IAAM;;;AAGR;EACE;IAAO;;EACP;IAAO;;EACP;IAAO;;EACP;IAAO;;EACP;IAAO;;EACP;IAAO;;EACP;IAAO;;;AAGT;EACE;IAAM;;;AAGR;EACE;IACE;IACA;;EAEF;IACE;IACA;;;AAIJ;EACE;IACE;;;AAIJ;EACE;IAAK;;EACL;IAAK;;EACL;IAAU;;EACV;IAAW;;EACX;IAAM;;EACN;IAAM;;EACN;IAAM;;EACN;IAAM;;EACN;IAAY;;;AAGd;EACE;IAAK;;EACL;IAAO;;;ACnJT;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;AAAA;EAEE;;;AAGF;EACE;;;AC1BF;EACE;EACA;EACA;EACA;EACA,gBLqCwB;EKpCxB,OLqCwB;;;AKlC1B;AAAA;EAEE;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AC3BF;AAAA;AAIE;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;AAAtC;EAAsC;;;ACHxC;AAAA;ETqBE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAKA;AAAA;EAbA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AUjCF;AAAA;AAAA;AAAA;AAAA;AAQA;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA,cRgCwB;EQ/BxB;;AAIF;AAAA;EAEE;;;AAIA;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AAArC;EAAqC;;;AC5BvC;AAAA;AAAA;AAAA;AAAA;AAQA;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA,cTgCwB;ES/BxB;;AAIF;AAAA;EAEE;;;ACxBF;AAAA;AAAA;AAAA;AAAA;AAQA;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA,cVgCwB;EU/BxB;;AAIF;AAAA;EAEE;;;ACxBF;AAAA;AAAA;AAAA;AAAA;AAQA;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA,cXgCwB;EW/BxB;;AAIF;AAAA;EAEE;;;ACdF;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA%22%7D */
body.CMS div#Content div.Gallery .Images {
  display: flex;
  flex-wrap: wrap;
}
body.CMS div#Content div.Gallery .Images .GalleryItem {
  margin-bottom: 5px;
  margin-right: 5px;
  position: relative;
  border-radius: var(--style-gallery-radius);
}
body.CMS div#Content div.Gallery .Images .GalleryItem.GalleryItem--Offline div.Image {
  position: relative;
}
body.CMS div#Content div.Gallery .Images .GalleryItem.GalleryItem--Offline div.Image::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  content: " ";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
}
body.CMS div#Content div.Gallery .Images .GalleryItem.GalleryItem--Offline .ActionBar a.Hide i::before {
  content: "\f06e";
}
body.CMS div#Content div.Gallery .Images .GalleryItem .ActionBar {
  font-size: 12px;
  margin-bottom: 5px;
  text-align: right;
}
body.CMS div#Content div.Gallery .Images .GalleryItem .ActionBar a {
  color: var(--cms-color-regular);
  font-size: 20px;
  margin-right: 5px;
}
body.CMS div#Content div.Gallery .Images .GalleryItem .ActionBar a:hover {
  color: var(--cms-color-dark);
}
body.CMS div#Content div.Gallery .Images .GalleryItem .SettingsPanel {
  position: relative;
  display: inline-block;
}
body.CMS div#Content div.Gallery .Images .GalleryItem .SettingsPanel .Panel {
  display: none;
  position: absolute;
  z-index: 40;
  background-color: white;
  bottom: 30px;
  border: 1px solid black;
  padding: 20px;
  min-width: 400px;
  text-align: left;
  left: 0;
}
body.CMS div#Content div.Gallery .Images .GalleryItem .SettingsPanel .Panel img {
  max-width: 142px !important;
  max-height: 106px !important;
}
body.CMS div#Content div.Gallery .Images .GalleryItem .SettingsPanel .Panel a.Close {
  padding: 10px 10px 10px 0;
  margin-top: 15px;
  display: inline-block;
}
body.CMS div#Content div.Gallery .Images .GalleryItem .Image {
  border: 1px solid #ccc;
  min-width: 142px;
  max-width: 142px;
  padding: 0 5px;
  height: 106px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}
body.CMS div#Content div.Gallery .Images .GalleryItem .Image div[data-cms], body.CMS div#Content div.Gallery .Images .GalleryItem .Image img {
  max-width: 142px;
  max-height: 106px;
}
body.CMS div#Content div.Gallery .Images .GalleryItem .Image img {
  width: unset !important;
  height: unset !important;
}
body.CMS div#Content div.Gallery .Images .GalleryItem.Add {
  border: 1px solid #ccc;
  display: inline-block;
  line-height: 106px;
  flex-basis: 106px;
  font-size: 3em;
  height: 106px;
  min-width: 142px;
  max-width: 142px;
  text-align: center;
  margin-top: 18px;
  background-color: white;
  color: var(--cms-color-regular) !important;
}
body.CMS div#Content div.Gallery .Images .GalleryItem.Add:hover {
  color: var(--cms-color-dark) !important;
}

#Content ul.Gallery {
  font-size: 0;
  box-sizing: content-box;
  margin-bottom: -10px;
  margin-left: -10px;
}
#Content ul.Gallery li.Gallery-Item {
  font-size: 0;
  display: inline-block;
  margin-bottom: 10px;
  margin-left: 10px;
  padding: 0;
  position: relative;
  overflow: hidden;
}
#Content ul.Gallery li.Gallery-Item img {
  top: 50%;
  width: 100%;
  height: auto;
  position: absolute;
  transform: translateY(-50%);
  transition: transform 300ms linear;
}
#Content ul.Gallery li.Gallery-Item:hover img {
  transform: scale(1.2) translateY(-50%);
}
#Content ul.Gallery li.Gallery-Item:hover a.Video:after {
  opacity: 1;
}
#Content ul.Gallery li.Gallery-Item a.Video:after {
  left: calc(50% - 32px);
  top: calc(50% - 32px);
  position: absolute;
  display: block;
  /*content: $font-Flaticon-freccia-su;*/
  width: 64px;
  height: 64px;
  opacity: 0.7;
  color: #fff;
  border-radius: 50%;
  background-color: #000;
  font-size: 26px;
  font-family: "Flaticon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 64px;
  text-align: center;
  text-decoration: inherit;
  text-rendering: optimizeLegibility;
  text-transform: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  transform: rotate(90deg);
  text-decoration: none;
}
#Content ul.Gallery li.Gallery-Item a.Video:after:hover {
  text-decoration: none;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Gallery.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAGI;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAGI;EACI;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIR;EACI;;AAIR;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAEA;EACI;;AAKZ;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;EACA;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;;AAQhB;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AAIA;EACI;;AAGJ;EACI;;AAIR;EACI;EACA;EACA;EACA;AACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI%22%7D */
body.CMS div.CMSBlock__GridBlock.CMSBlock__GridBlock--Legend {
  border: 1px dotted #999;
  position: relative;
  margin: 2rem 0;
}
body.CMS div.CMSBlock__GridBlock.CMSBlock__GridBlock--Legend::before {
  content: "Grid - Accordion Card";
  position: absolute;
  top: -1rem;
}

div.GridBlock div.Grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  --column-gap: 15px;
  margin-top: -20px;
}
@media only screen and (min-width: 760px) {
  div.GridBlock div.Grid {
    margin-left: calc(-1 * var(--column-gap));
  }
  div.GridBlock div.Grid.Grid-1 div.Grid-Item, div.GridBlock div.Grid[columns="1"] div.Grid-Item {
    width: 100%;
  }
  div.GridBlock div.Grid.Grid-2 div.Grid-Item, div.GridBlock div.Grid[columns="2"] div.Grid-Item {
    width: calc(50% - var(--column-gap));
  }
  div.GridBlock div.Grid.Grid-2 div.Grid-Item[colspan="2"], div.GridBlock div.Grid[columns="2"] div.Grid-Item[colspan="2"] {
    width: 100%;
    margin-left: 0;
  }
  div.GridBlock div.Grid.Grid-3 div.Grid-Item, div.GridBlock div.Grid[columns="3"] div.Grid-Item {
    width: calc(33.3333333333% - var(--column-gap));
  }
  div.GridBlock div.Grid.Grid-3 div.Grid-Item[colspan="2"], div.GridBlock div.Grid[columns="3"] div.Grid-Item[colspan="2"] {
    width: calc(66.6666666667% - var(--column-gap));
  }
  div.GridBlock div.Grid.Grid-3 div.Grid-Item[colspan="3"], div.GridBlock div.Grid[columns="3"] div.Grid-Item[colspan="3"] {
    width: 100%;
  }
  div.GridBlock div.Grid.Grid-4 div.Grid-Item, div.GridBlock div.Grid[columns="4"] div.Grid-Item {
    width: calc(25% - var(--column-gap));
  }
  div.GridBlock div.Grid.Grid-4 div.Grid-Item[colspan="2"], div.GridBlock div.Grid[columns="4"] div.Grid-Item[colspan="2"] {
    width: calc(50% - var(--column-gap));
  }
  div.GridBlock div.Grid.Grid-4 div.Grid-Item[colspan="3"], div.GridBlock div.Grid[columns="4"] div.Grid-Item[colspan="3"] {
    width: calc(75% - var(--column-gap));
  }
  div.GridBlock div.Grid.Grid-4 div.Grid-Item[colspan="4"], div.GridBlock div.Grid[columns="4"] div.Grid-Item[colspan="4"] {
    width: 100%;
  }
  div.GridBlock div.Grid div.Grid-Item {
    margin-left: var(--column-gap);
  }
}
@media only screen and (max-width: 759px) {
  div.GridBlock div.Grid div.Grid-Item {
    width: 100%;
  }
}
div.GridBlock div.Grid div.Grid-Item {
  margin-top: 20px;
  position: relative;
}
div.GridBlock div.Grid div.Grid-Item--Offline div.Grid-Content::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  content: " ";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
}
div.GridBlock div.Grid div.Grid-Item--Offline div.ActionBar a.Hide i::before {
  content: "\f06e";
}
@media only screen and (min-width: 760px) {
  div.GridBlock div.Grid div.Grid-Item--LeftRule::before {
    left: calc(-1 * var(--column-gap) / 2);
    background-color: #ccc;
    position: absolute;
    content: " ";
    height: 100%;
    width: 1px;
    top: 0;
  }
}
div.GridBlock div.Grid div.Grid-Item[data-link] {
  cursor: pointer;
}
div.GridBlock div.Grid div.Grid-Item div.ActionBar {
  font-size: 12px;
  margin-bottom: 5px;
  text-align: right;
}
div.GridBlock div.Grid div.Grid-Item div.ActionBar a {
  font-size: 20px !important;
  margin-right: 5px;
}
div.GridBlock div.Grid div.Grid-Item .SettingsPanel {
  position: relative;
  display: inline-block;
}
div.GridBlock div.Grid div.Grid-Item .SettingsPanel .Panel {
  z-index: 40;
  display: none;
  position: absolute;
  background-color: white;
  bottom: 30px;
  border: 1px solid black;
  padding: 20px;
  min-width: 400px;
  text-align: left;
  left: 0;
}
div.GridBlock div.Grid div.Grid-Item .SettingsPanel .Panel img {
  max-width: 142px !important;
  max-height: 106px !important;
}
div.GridBlock div.Grid div.Grid-Item .SettingsPanel .Panel a.Close {
  padding: 10px 10px 10px 0;
  margin-top: 15px;
  display: inline-block;
}
div.GridBlock div.Grid div.Grid-Content {
  border: 1px solid #e1e1e1;
  background-color: white;
  text-align: center;
  position: relative;
  padding: 10px;
}
div.GridBlock div.Grid div.Grid-Content.Open {
  padding-bottom: 30px;
}
div.GridBlock div.Grid div.Grid-Content.Open a.AccordionTrigger.Grid-Item__AccordionIcon i::before {
  content: "\f139";
}
div.GridBlock div.Grid div.Grid-Content.Velo--Green::before, div.GridBlock div.Grid div.Grid-Content.Velo--Orange::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 39;
  pointer-events: none;
}
div.GridBlock div.Grid div.Grid-Content.Velo--Green:hover::before, div.GridBlock div.Grid div.Grid-Content.Velo--Orange:hover::before {
  content: none;
}
div.GridBlock div.Grid div.Grid-Content.Velo--Green::before {
  background: rgba(17, 176, 92, 0.45);
}
div.GridBlock div.Grid div.Grid-Content.Velo--Orange::before {
  background: rgba(227, 71, 17, 0.45);
}
div.GridBlock div.Grid div.Grid-Content.Velo--Gray::before {
  background: rgba(58, 68, 67, 0.45);
}
div.GridBlock div.Grid div.Grid-Content.Accordion {
  padding-bottom: 30px;
  margin-bottom: 20px;
}
div.GridBlock div.Grid div.Grid-Content div.ActionBar {
  font-size: 12px;
  margin-bottom: 5px;
  text-align: right;
}
div.GridBlock div.Grid div.Grid-Content div.ActionBar a {
  color: #666;
}
div.GridBlock div.Grid div.Grid-Content img {
  width: 100%;
}
div.GridBlock div.Grid div.Grid-Content div.Title {
  text-align: center;
  background-color: var(--color-accordion-card-bar);
  color: #fff;
  padding: 10px 1%;
  font-size: 1.5em;
  line-height: 30px;
  margin-bottom: 10px;
}
div.GridBlock div.Grid div.Grid-Content div.Header {
  display: flex;
  text-align: center;
  flex-direction: column;
}
div.GridBlock div.Grid div.Grid-Content div.Header div.Header__Content {
  margin-top: 10px;
}
div.GridBlock div.Grid div.Grid-Content div.Body {
  margin-top: 10px;
  padding-top: 10px;
}
div.GridBlock div.Grid div.Grid-Content div.Footer {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e2e4ff;
}
div.GridBlock div.Grid div.Grid-Content div.Body + div.Footer {
  margin-top: 10px;
}
div.GridBlock div.Grid div.Grid-Content hr {
  margin: 20px 0;
  border-bottom: 1px solid #e2e4ff;
}
div.GridBlock div.Grid div.Grid-Content h3 {
  margin-top: 0 !important;
}
div.GridBlock div.Grid div.Grid-Content a.AccordionTrigger.Grid-Item__AccordionIcon {
  position: absolute;
  display: inline-block;
  bottom: 2px;
  left: 50%;
  transform: translate(-50%, 50%);
  background-color: white;
  border-radius: 50%;
  font-size: 30px;
  padding: 7px 8px 4px 8px;
}
div.GridBlock div.Grid div.Grid-Content a.AccordionTrigger.Grid-Item__AccordionIcon i {
  position: relative;
  left: 0px;
  top: 0px;
}
div.GridBlock div.Grid div.Grid-Content a.AccordionTrigger.Grid-Item__AccordionIcon::before {
  content: " ";
  display: block;
  width: 43px;
  height: 21px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  border: 1px solid #e1e1e1;
  border-top: 0;
  position: absolute;
  bottom: 0;
  left: 0;
}
div.GridBlock--NoBorders div.Grid div.Grid-Content {
  border: unset;
  padding: unset;
}
div.GridBlock--NoBorders div.Grid div.Grid-Content .Header__Content {
  padding: 0 10px;
}
div.GridBlock--NoBorders div.Grid div.Grid-Content .AccordionContent {
  padding: 0 10px 10px 10px;
}
div.GridBlock--DiffHeight .Grid .Grid-Item .Accordion {
  box-sizing: border-box !important;
}
div.GridBlock--DiffHeight .Grid .Grid-Item .Accordion:not(.Open) {
  height: 100%;
}
@media only screen and (max-width: 759px) {
  div.GridBlock--DiffHeight.GridBlock--Carousel {
    padding-bottom: 20px;
  }
  div.GridBlock--DiffHeight.GridBlock--Carousel .Grid .Grid-Item.swiper-slide {
    height: unset;
  }
}
div.GridBlock--RoundedBorders div.Grid div.Grid-Content {
  border-radius: var(--style-card-radius);
  overflow: hidden;
}
div.GridBlock--RoundedBorders div.Grid div.Grid-Content .Header.No__HeaderTitle .Header__Image img {
  border-radius: calc(var(--style-card-radius) - 10px);
  overflow: hidden;
}
div.GridBlock--RoundedBorders div.Grid div.Grid-Content .Header .Title {
  border-radius: calc(var(--style-card-radius) - 10px) calc(var(--style-card-radius) - 10px) 0 0;
}
div.GridBlock--Shadow div.Grid div.Grid-Content {
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 760px) {
  div.GridBlock--Separator div.Grid {
    --column-gap: 40px;
  }
  div.GridBlock--Separator div.Grid.Grid-2 div.Grid-Item:not(:nth-child(2n+1))::before, div.GridBlock--Separator div.Grid[columns="2"] div.Grid-Item:not(:nth-child(2n+1))::before {
    left: calc(-1 * var(--column-gap) / 2);
    background-color: #ccc;
    position: absolute;
    content: " ";
    height: 100%;
    width: 1px;
    top: 0;
  }
  div.GridBlock--Separator div.Grid.Grid-3 div.Grid-Item:not(:nth-child(3n+1))::before, div.GridBlock--Separator div.Grid[columns="3"] div.Grid-Item:not(:nth-child(3n+1))::before {
    left: calc(-1 * var(--column-gap) / 2);
    background-color: #ccc;
    position: absolute;
    content: " ";
    height: 100%;
    width: 1px;
    top: 0;
  }
  div.GridBlock--Separator div.Grid.Grid-4 div.Grid-Item:not(:nth-child(4n+1))::before, div.GridBlock--Separator div.Grid[columns="4"] div.Grid-Item:not(:nth-child(4n+1))::before {
    left: calc(-1 * var(--column-gap) / 2);
    background-color: #ccc;
    position: absolute;
    content: " ";
    height: 100%;
    width: 1px;
    top: 0;
  }
  div.GridBlock--Separator div.Grid.Grid-5 div.Grid-Item:not(:nth-child(5n+1))::before, div.GridBlock--Separator div.Grid[columns="5"] div.Grid-Item:not(:nth-child(5n+1))::before {
    left: calc(-1 * var(--column-gap) / 2);
    background-color: #ccc;
    position: absolute;
    content: " ";
    height: 100%;
    width: 1px;
    top: 0;
  }
}
div.GridBlock--AlignCenter div.Grid {
  justify-content: center;
}
div.GridBlock.GridBlock--CustomAccordion div.Grid div.Grid-Item {
  margin-bottom: 0;
}
div.GridBlock.GridBlock--CustomAccordion div.Grid div.Accordion,
div.GridBlock.GridBlock--CustomAccordion div.Grid div.Grid-Content {
  margin-bottom: 0;
  padding-bottom: 20px;
}
div.GridBlock.GridBlock--CustomAccordion div.Grid div.Accordion div.Body,
div.GridBlock.GridBlock--CustomAccordion div.Grid div.Grid-Content div.Body {
  margin-top: 0;
  padding-top: 0;
  border-top: unset;
}
div.GridBlock.GridBlock--CustomAccordion div.Grid div.Accordion a.Grid-Item__AccordionIcon,
div.GridBlock.GridBlock--CustomAccordion div.Grid div.Grid-Content a.Grid-Item__AccordionIcon {
  display: none !important;
}
div.GridBlock.GridBlock--CustomAccordion div.Grid div.Accordion.Accordion.Open .AccordionTrigger--Open,
div.GridBlock.GridBlock--CustomAccordion div.Grid div.Grid-Content.Accordion.Open .AccordionTrigger--Open {
  display: none;
}
div.GridBlock.GridBlock--CustomAccordion div.Grid div.Accordion.Accordion:not(.Open) .AccordionTrigger--Close,
div.GridBlock.GridBlock--CustomAccordion div.Grid div.Grid-Content.Accordion:not(.Open) .AccordionTrigger--Close {
  display: none;
}
div.GridBlock--LayoutFreccia div.Grid-Item div.Grid-Content {
  clip-path: polygon(0% 0%, 43.25% 0%, 50% 30px, 56.75% 0%, 100% 0%, 100% 100%, 0% 100%);
  padding-top: 40px;
}
@media only screen and (max-width: 759px) {
  div.GridBlock--Carousel {
    overflow: hidden;
    margin-left: -20px;
    width: calc(100% + 40px);
  }
  div.GridBlock--Carousel div.Grid {
    flex-wrap: unset;
  }
  div.GridBlock--Carousel div.Grid div.Grid-Item {
    width: 70%;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/GridBlock.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAGI;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;;;AASR;EACI;EACA;EACA;EACA;EACA;;AAEA;EAPJ;IAQQ;;EAII;IACI;;EAMJ;IACI;;EAEA;IACI;IACA;;EAOR;IACI;;EAEA;IACI;;EAGJ;IACI;;EAOR;IACI;;EAEA;IACI;;EAGJ;IACI;;EAGJ;IACI;;EAKZ;IACI;;;AAIR;EACI;IACI;;;AAIR;EACI,YC9DgB;ED+DhB;;AAGI;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAIR;EACI;IACI;IACA,kBC9GF;ID+GE;IACA;IACA;IACA;IACA;;;AAIR;EACI;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;EACA;;AAIR;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;EACA;;AAMhB;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAEA;EACI;;AAKJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIA;EACI;;AAMR;EACI;;AAKJ;EACI;;AAKJ;EACI;;AAIR;EACI;EACA;;AAGJ;EACI;EACA;EACA;;AAEA;EACI,OCjOH;;ADqOL;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;;AAIR;EACI;EACA;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAQR;EACI;EACA;;AAEA;EACI;;AAGJ;EACI;;AAOZ;EACI;;AAEA;EACI;;AAKJ;EADJ;IAEQ;;EAII;IACI;;;AAUZ;EACI;EACA;;AAIQ;EACI;EACA;;AAIR;EACI;;AASZ;EACI;;AAMR;EACI;IACI;;EAOY;IACI;IACA,kBC5Yd;ID6Yc;IACA;IACA;IACA;IACA;;EAPJ;IACI;IACA,kBC5Yd;ID6Yc;IACA;IACA;IACA;IACA;;EAPJ;IACI;IACA,kBC5Yd;ID6Yc;IACA;IACA;IACA;IACA;;EAPJ;IACI;IACA,kBC5Yd;ID6Yc;IACA;IACA;IACA;IACA;;;AAWxB;EACI;;AAMA;EACI;;AAGJ;AAAA;EAEI;EACA;;AAEA;AAAA;EACI;EACA;EACA;;AAGJ;AAAA;EACI;;AAMI;AAAA;EACI;;AAMJ;AAAA;EACI;;AAUhB;EACI;EACA;;AAMR;EADJ;IAEQ;IACA;IACA;;EAEA;IACI;;EAEA;IACI%22%7D */
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  outline: none;
  padding: 6px 0;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}

.hamburger-box {
  width: 20px;
  height: 19px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 20px;
  height: 3px;
  background-color: var(--color-menu-link-default);
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -8px;
}
.hamburger-inner::after {
  bottom: -8px;
}

/*
* Spin
*/
.hamburger--spin .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Hamburger.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Hamburger/_Spin.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AA+BA;EACI;EACA;EACA;EACA;EACA;EACA,qBAnBkC;EAoBlC,4BAnByC;EAqBzC;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAKQ,SApCc;;;AAyC1B;EACI,OA/CoB;EAgDpB;EACA;EACA;;;AAGJ;EACI;EACA;EACA;;AAEA;EAGI,OA7DgB;EA8DhB,QA7DiB;EA8DjB;EACA,eA5DwB;EA6DxB;EACA;EACA;EACA;;AAGJ;EAEI;EACA;;AAGJ;EACI;;AAGJ;EACI;;;ACjGP;AAAA;AAAA;AAIG;EACI;EACA;;AAEA;EACI;;AAGJ;EACI;;AAKJ;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA%22%7D */
body.Home:not(.CMS) #Content div.HomeLeftContainer {
  background-color: #003851;
  overflow: visible;
  width: 350px;
  float: left;
  clear: both;
  position: relative;
  border-bottom: 20px solid #003851;
}
@media only screen and (max-width: 759px) {
  body.Home:not(.CMS) #Content div.HomeLeftContainer {
    background-color: white;
    padding-top: 40px;
    width: 100%;
    float: none;
    border: 0;
  }
}
@media only screen and (min-width: 760px) {
  body.Home:not(.CMS) #Content div.HomeLeftContainer div.SideBlockTicket div.Titles > span:nth-of-type(1) {
    background-color: white !important;
    color: #003851;
    border-top-left-radius: 0;
  }
  body.Home:not(.CMS) #Content div.HomeLeftContainer div.SideBlockTicket div.Titles > span:nth-of-type(2) {
    border-top-right-radius: 0;
  }
  body.Home:not(.CMS) #Content div.HomeLeftContainer div.SideBlockTicket div.Container {
    background-color: white;
    border: 0;
    border-top: solid 5px white;
    height: 250px;
  }
}
@media only screen and (max-width: 759px) {
  body.Home:not(.CMS) #Content div.HomeLeftContainer div.SideBlockTicket {
    margin: 0 10px;
    width: calc(100% - 40px);
  }
}
@media only screen and (min-width: 760px) {
  body.Home:not(.CMS) #Content div.HomeLeftContainer div.SideBlockBanner img {
    margin: 0;
    height: 150px;
  }
  body.Home:not(.CMS) #Content div.HomeLeftContainer div.SideBlockBanner div.Banner img {
    height: auto;
  }
}
@media only screen and (max-width: 759px) {
  body.Home:not(.CMS) #Content div.HomeLeftContainer div.SideBlockBanner img {
    margin: 20px;
    width: calc(100% - 40px);
  }
}
body.Home:not(.CMS) #Content div.Carousel {
  float: right;
  width: calc(100% - 350px);
  margin: 0;
  border-bottom: 20px solid #003851;
}
body.Home:not(.CMS) #Content div.Carousel::before {
  content: " ";
  background-image: url(/Content/Media/Layout/OmbraSlide.png);
  height: 100%;
  width: 30px;
  position: absolute;
  left: 0;
  z-index: 9;
}
@media only screen and (max-width: 759px) {
  body.Home:not(.CMS) #Content div.Carousel::before {
    content: none;
  }
}
body.Home:not(.CMS) #Content div.Carousel div.Claims {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 10;
  min-width: 320px;
  padding-left: 30px;
}
body.Home:not(.CMS) #Content div.Carousel div.Claims > img {
  position: absolute;
  top: -60px;
  right: 0;
  height: 80px;
  width: 160px;
}
body.Home:not(.CMS) #Content div.Carousel div.Claims a {
  text-decoration: none !important;
}
body.Home:not(.CMS) #Content div.Carousel div.Claims div.ClaimsContent {
  background-color: rgba(243, 176, 17, 0.9);
  border-radius: 20px;
  line-height: 1.2;
  padding: 15px 30px;
  color: #003851;
  font-size: 36px;
}
body.Home:not(.CMS) #Content div.Carousel div.Claims div.ClaimsContent a, body.Home:not(.CMS) #Content div.Carousel div.Claims div.ClaimsContent h2, body.Home:not(.CMS) #Content div.Carousel div.Claims div.ClaimsContent h3, body.Home:not(.CMS) #Content div.Carousel div.Claims div.ClaimsContent h4 {
  color: inherit !important;
}
body.Home:not(.CMS) #Content div.Carousel div.Claims div.ClaimsContent h3 {
  font-size: 1em;
}
body.Home:not(.CMS) #Content div.Carousel div.Claims div.ClaimsContent h4 {
  font-size: 0.6em;
}
body.Home:not(.CMS) #Content div.Carousel div.Claims div.ClaimsContent small {
  color: white;
  font-size: 0.8em;
}
body.Home:not(.CMS) #Content div.Carousel div.Claims div.ClaimsContent p {
  font-size: 1em;
  font-weight: bold;
  line-height: inherit;
}
body.Home:not(.CMS) #Content div.Carousel div.Claims:hover div.ClaimsContent {
  background-color: #f3b011;
  color: #1f8fcf;
}
body.Home:not(.CMS) #Content div.Carousel div.Claims:hover div.ClaimsContent small {
  color: #1f8fcf;
}
@media only screen and (max-width: 759px) {
  body.Home:not(.CMS) #Content div.Carousel {
    width: 100%;
  }
  body.Home:not(.CMS) #Content div.Carousel div.Claims {
    bottom: 0;
    padding: 0;
    left: 0;
    max-width: 100%;
    right: 0;
  }
  body.Home:not(.CMS) #Content div.Carousel div.Claims div.ClaimsContent {
    border-radius: 0%;
    background-color: #ffcc33;
  }
}
@media only screen and (max-width: 1099px) {
  body.Home:not(.CMS) #Content div.Carousel div.Claims div.ClaimsContent {
    font-size: 24px;
  }
}
@media only screen and (max-width: 759px) {
  body.Home:not(.CMS) #Content div.InfoBanners div.Wrap a {
    width: 100%;
  }
  body.Home:not(.CMS) #Content div.InfoBanners div.Wrap a img {
    width: 100%;
  }
}
@media only screen and (min-width: 760px) {
  body.Home:not(.CMS) #Content div.InfoBanners div.Wrap {
    display: flex;
    flex-wrap: wrap;
  }
  body.Home:not(.CMS) #Content div.InfoBanners div.Wrap a {
    width: calc(50% - 15px);
    overflow: hidden;
  }
  body.Home:not(.CMS) #Content div.InfoBanners div.Wrap a:first-child {
    margin-right: 30px;
  }
  body.Home:not(.CMS) #Content div.InfoBanners div.Wrap a:nth-child(2n+3) {
    margin-right: 30px;
    margin-top: 30px;
  }
  body.Home:not(.CMS) #Content div.InfoBanners div.Wrap a:nth-child(2n+4) {
    margin-top: 30px;
  }
}
body.Home:not(.CMS) #Content div.InfoBanners div.Wrap a {
  display: inline-block;
  text-decoration: unset !important;
  color: white !important;
  margin-bottom: 10px !important;
}
body.Home:not(.CMS) #Content div.InfoBanners div.Wrap a h3 {
  position: relative;
  padding: 20px 20px 0 20px;
  margin: -2px 0 0 0 !important;
  color: inherit !important;
  width: 100%;
  font-size: 28px !important;
}
body.Home:not(.CMS) #Content div.InfoBanners div.Wrap a p {
  padding: 5px 20px 20px 20px;
  margin-top: 0 !important;
  font-size: 16px !important;
  width: 100%;
}
body.Home:not(.CMS) #Content div.InfoBanners div.Wrap a img {
  margin-bottom: 0 !important;
}
body.Home:not(.CMS) #Content div.InfoBanners div.Wrap a div.Content {
  overflow: hidden;
  border-top: 2px solid white;
  background-color: #003851;
}
@media only screen and (min-width: 760px) {
  body.Home:not(.CMS) #Content div.InfoBanners div.Wrap a div.Content {
    height: 156px;
  }
}
@media only screen and (max-width: 759px) {
  body.Home:not(.CMS) #Content div.InfoBanners div.Wrap a div.Content {
    height: auto !important;
  }
}
body.Home:not(.CMS) #Content div.InfoBanners div.Wrap .Image {
  overflow: hidden;
}
body.Home:not(.CMS) #Content div.InfoBanners div.Wrap .Image img {
  display: block;
  transition: transform 200ms linear;
}
body.Home:not(.CMS) #Content div.InfoBanners div.Wrap .Image img:hover {
  transform: scale(1.2);
}
body.Home:not(.CMS) #Content ul.Countdown {
  list-style: none;
  max-width: 400px;
  position: relative;
  top: 20%;
  left: 50%;
  margin: 0 40px;
  display: flex;
  justify-content: center;
  transform: translateX(calc(-50% - 40px));
}
@media only screen and (max-width: 759px) {
  body.Home:not(.CMS) #Content ul.Countdown {
    top: 15%;
    max-width: 220px;
  }
}
@media only screen and (max-width: 399px) {
  body.Home:not(.CMS) #Content ul.Countdown {
    top: 20%;
    max-width: 200px;
  }
}
body.Home:not(.CMS) #Content ul.Countdown li {
  display: inline-block;
  flex-basis: 25%;
  max-width: 25%;
  flex-grow: 0;
  flex-shrink: 0;
}
body.Home:not(.CMS) #Content ul.Countdown li:not(:last-child) {
  margin-right: 5px;
}
body.Home:not(.CMS) #Content ul.Countdown li .Label {
  color: white;
  display: block;
  text-align: center;
  background-color: red;
  text-transform: uppercase;
}
body.Home:not(.CMS) #Content ul.Countdown li .Field {
  color: red;
  display: block;
  font-weight: bold;
  background: white;
  text-align: center;
  position: relative;
}
body.Home:not(.CMS) #Content ul.Countdown li .Field::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
body.Home:not(.CMS) #Content ul.Countdown li .Field span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 760px) {
  body.Home:not(.CMS) #Content ul.Countdown li .Label {
    padding: 10px;
  }
  body.Home:not(.CMS) #Content ul.Countdown li .Field {
    font-size: 3em;
  }
}
@media only screen and (max-width: 759px) {
  body.Home:not(.CMS) #Content ul.Countdown li .Label {
    padding: 5px;
    font-size: 0.7rem;
  }
  body.Home:not(.CMS) #Content ul.Countdown li .Field {
    font-size: 1.4rem;
  }
}

body.Home.CMS div.CMSBlock {
  border: 1px dashed red;
  margin-bottom: 10px;
}
body.Home.CMS div.Claims {
  margin: 20px;
  border: 1px dashed red;
}
body.Home.CMS div.Claims div.ClaimsContent {
  border-top: 1px dashed red;
}

body:not(.CMS) div#Content div.HomeGrid div.Grid-Item div.Grid-Content div.Header div.Header__Image img {
  width: auto;
}
body:not(.CMS) div#Content div.HomeGrid div.Grid-Item div.Grid-Content div.Header div.Header__Image img:nth-child(2) {
  display: none;
}
body:not(.CMS) div#Content div.HomeGrid div.Grid-Item div.Grid-Content div.Header div.Header__Content strong {
  color: #10a8d9;
}
body:not(.CMS) div#Content div.HomeGrid div.Grid-Item:hover div.Grid-Content div.Header div.Header__Image img:nth-child(1) {
  display: none;
}
body:not(.CMS) div#Content div.HomeGrid div.Grid-Item:hover div.Grid-Content div.Header div.Header__Image img:nth-child(2) {
  display: inline-block;
}
body:not(.CMS) div#Content div.HomeGrid div.Grid-Item:hover div.Grid-Content div.Header div.Header__Content strong {
  color: var(--color-brand);
}

@media only screen and (min-width: 1000px) {
  div#Content div.HomeAttractions {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  div#Content div.HomeAttractions div.Wrap {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    max-width: unset;
  }
  div#Content div.HomeAttractions div.Wrap div.Image {
    flex: 1;
    min-width: 50%;
  }
  div#Content div.HomeAttractions div.Wrap div.Image img {
    width: 100%;
  }
  div#Content div.HomeAttractions div.Wrap div.Content {
    flex: 1;
    min-width: 320px;
    padding: 60px 20px;
  }
}
@media only screen and (max-width: 999px) {
  div#Content div.HomeAttractions {
    padding-bottom: 0 !important;
  }
  div#Content div.HomeAttractions div.Wrap {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
  }
  div#Content div.HomeAttractions div.Wrap div.Content {
    padding: 0 20px;
    flex-basis: 100%;
  }
  div#Content div.HomeAttractions div.Wrap div.Image {
    order: 1;
    flex-basis: 100%;
    padding-top: 40px;
  }
}

div#Content div.HomeEvents {
  margin-bottom: -80px;
  z-index: 1;
}
div#Content div.HomeEvents div.Evento {
  position: relative;
}
div#Content div.HomeEvents div.Evento::after {
  content: " ";
  display: block;
  width: 100%;
  left: 0;
  right: 0;
  height: 50px;
  position: absolute;
  top: 100%;
  margin-top: 20px;
  border-radius: 12px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15));
}
div#Content div.HomeEvents div.FlipCards div.Flip-Container {
  position: relative;
  border-radius: 12px;
  overflow: unset;
}
div#Content div.HomeEvents div.FlipCards div.Flip-Container div.Card__Image {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
div#Content div.HomeEvents div.FlipCards div.Flip-Container::after {
  content: " ";
  display: block;
  width: 100%;
  left: 0;
  right: 0;
  height: 50px;
  position: absolute;
  top: 100%;
  margin-top: 20px;
  border-radius: 12px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15));
}
div#Content div.HomeEvents + div.CMSBlock {
  padding-top: 120px !important;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Home.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAGI;EACI,kBCeS;EDdT;EACA;EACA;EACA;EACA;EACA;;AAEA;EATJ;IAUQ;IACA;IACA;IACA;IACA;;;AAIA;EAGY;IACI;IACA,OCPX;IDQW;;EAGJ;IACI;;EAKZ;IACI;IACA;IACA;IACA;;;AAIR;EAxBJ;IAyBQ;IACA;;;AAKJ;EACI;IACI;IACA;;EAGJ;IACI;;;AAIR;EACI;IACI,QC9BM;ID+BN;;;AAMhB;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EATJ;IAUQ;;;AAIR;EACI;EACA;EACA;EACA,SCtDc;EDuDd;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAKJ;EACI;EACA;EACA;EACA;EACA,OCnGC;EDoGD;;AAEA;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;EACA;;AAIR;EACI;EACA,OClIE;;ADoIF;EACI,OCrIF;;AD0IV;EApFJ;IAqFQ;;EAEA;IACI;IACA;IACA;IACA;IACA;;EAEA;IACI;IACA;;;AAKZ;EACI;IACI;;;AAOJ;EACI;IACI;;EAEA;IACI;;;AAKZ;EAXJ;IAYQ;IACA;;EAEA;IACI;IAeA;;EAbA;IACI;;EAGJ;IACI;IACA;;EAGJ;IACI;;;AAOZ;EACI;EACA;EACA;EAsBA;;AApBA;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;;AAKJ;EACI;EACA;EACA,kBClOH;;ADoOG;EALJ;IAMQ;;;AAGJ;EATJ;IAUQ;;;AAKZ;EACI;;AAEA;EACI;EACA;;AAEA;EACI;;AAOpB;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAXJ;IAYQ;IACA;;;AAGJ;EAhBJ;IAiBQ;IACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAIR;EACI;IACI;;EAGJ;IACI;;;AAIR;EACI;IACI;IACA;;EAGJ;IACI;;;;AAQhB;EACI;EACA;;AAGJ;EACI;EACA;;AAEA;EACI;;;AAUQ;EACI;;AAEA;EACI;;AAMR;EACI;;AAWI;EACI;;AAGJ;EACI;;AAMR;EACI;;;AAUxB;EADJ;IAEQ;IACA;;EAEA;IACI;IACA;IACA;IACA;;EAEA;IACI;IACA;;EAEA;IACI;;EAIR;IACI;IACA;IACA;;;AAKZ;EA5BJ;IA6BQ;;EAEA;IACI;IACA;IACA;IACA;;EAEA;IACI;IACA;;EAGJ;IACI;IACA;IACA;;;;AAMhB;EACI;EACA;;AAEA;EACI;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAKJ;EACI;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAOZ;EACI%22%7D */
section#Hotel div.Servizi {
  margin-top: 15px;
}
section#Hotel div.Servizi div {
  margin-left: -15px;
}
section#Hotel div.Servizi div .Servizio {
  margin-left: 15px;
  display: inline-block;
}
section#Hotel div.Servizi div .Servizio i {
  color: #1f8fcf;
}
section#Hotel span.fa-stack {
  height: 15px;
  width: 15px;
  line-height: 15px;
}
section#Hotel div.HotelList div.NoHotel {
  color: #900;
  font-size: 14px;
}
section#Hotel div.HotelList div.NoHotel::before {
  font-family: "Flaticon";
  content: \f349;
  margin-right: 10px;
}
section#Hotel div.HotelList div.Order {
  background-color: #003851;
  margin-bottom: 30px;
}
@media only screen and (min-width: 760px) {
  section#Hotel div.HotelList div.Order {
    padding: 10px 20px;
  }
}
@media only screen and (max-width: 759px) {
  section#Hotel div.HotelList div.Order {
    padding: 10px;
  }
}
section#Hotel div.HotelList div.Order label {
  float: left;
  color: white;
  line-height: 38px;
  margin: 0 20px 0 0;
}
section#Hotel div.HotelList div.Order p.OrderBy {
  float: right;
  color: white;
  margin-bottom: 0;
  padding-top: 5px;
}
section#Hotel div.HotelList div.Order p.OrderBy select {
  margin: 0;
  width: unset;
  margin-left: 15px;
  text-align: center;
  display: inline-block;
  height: 28px;
  width: 110px;
  text-align: center;
  text-align-last: center;
}
section#Hotel div.HotelList div.Hotel {
  border: solid 1px #ccc;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  position: relative;
  background-color: white;
  padding: 10px;
}
section#Hotel div.HotelList div.Hotel div.Gallery {
  float: left;
  width: 300px;
  height: 200px;
  margin-right: 20px;
  overflow: hidden;
}
section#Hotel div.HotelList div.Hotel div.Gallery div.Carousel {
  margin-top: 0;
}
section#Hotel div.HotelList div.Hotel div.Gallery div.Carousel div.Dots {
  left: 50%;
  top: unset;
  width: 100%;
  right: unset;
  bottom: 20px;
  display: block;
  transform: translateX(-50%);
}
section#Hotel div.HotelList div.Hotel div.Gallery div.Carousel div.Dots .Bullet {
  border: 2px solid white;
  background: rgba(204, 204, 204, 0.3);
}
section#Hotel div.HotelList div.Hotel div.Gallery div.Carousel div.Dots .Bullet.Selected {
  background: #1f8fcf;
}
section#Hotel div.HotelList div.Hotel div.Gallery.FancyBox img {
  transition: transform 200ms linear;
  width: 300px;
  height: 200px;
  display: block;
  object-fit: cover;
}
section#Hotel div.HotelList div.Hotel div.Gallery.FancyBox img:hover {
  transform: scale(1.2);
}
section#Hotel div.HotelList div.Hotel.Suggested {
  border: 1px solid #ca0c55;
}
section#Hotel div.HotelList div.Hotel.Suggested::before {
  display: block;
  content: "";
  left: -4px;
  top: -4px;
  width: 116px;
  height: 116px;
  z-index: 100;
  position: absolute;
  background: url(/Content/Media/Layout/Consigliato.png) no-repeat;
  clip-path: polygon(-1px 62px, 51.73% -2px, 117.24% -1.72%, 0px 114.65%);
  -webkit-clip-path: polygon(-1px 62px, 51.73% -2px, 117.24% -1.72%, 0px 114.65%);
}
section#Hotel div.HotelList div.Hotel div.HotelSelectionContainer {
  position: absolute;
  right: 10px;
  width: 250px;
  height: 150px;
  display: flex;
  align-items: center;
  border-bottom: solid 1px #ccc;
}
section#Hotel div.HotelList div.Hotel div.HotelSelectionContainer div.Suggested {
  color: #588725;
  position: absolute;
  right: 11px;
  top: 15px;
}
section#Hotel div.HotelList div.Hotel div.HotelSelectionContainer div.Suggested i {
  margin-left: 5px;
}
section#Hotel div.HotelList div.Hotel div.HotelSelectionContainer label.HotelSelection {
  position: relative;
  padding: 15px 15px 15px 43px;
  color: white !important;
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 10px;
  background-color: #ca0c55;
  color: black;
  left: 20px;
  width: 220px;
  display: block;
  cursor: pointer;
  text-align: center;
}
section#Hotel div.HotelList div.Hotel div.HotelSelectionContainer label.HotelSelection .Unselect {
  display: none;
}
section#Hotel div.HotelList div.Hotel div.HotelSelectionContainer label.HotelSelection.Checked {
  background-color: #588725;
}
section#Hotel div.HotelList div.Hotel div.HotelSelectionContainer label.HotelSelection.Checked .Select {
  display: none;
}
section#Hotel div.HotelList div.Hotel div.HotelSelectionContainer label.HotelSelection.Checked .Unselect {
  display: block;
}
section#Hotel div.HotelList div.Hotel div.HotelSelectionContainer label.HotelSelection input {
  display: none;
}
section#Hotel div.HotelList div.Hotel div.HotelSelectionContainer label.HotelSelection::before, section#Hotel div.HotelList div.Hotel div.HotelSelectionContainer label.HotelSelection > i {
  content: " ";
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  background-color: white;
  left: 15px;
  top: 50%;
  border-radius: 50%;
  transform: translate(0, -50%);
}
section#Hotel div.HotelList div.Hotel div.HotelSelectionContainer label.HotelSelection input:checked + i {
  display: block !important;
  color: black;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
}
section#Hotel div.HotelList div.Hotel div.HotelSelectionContainer label.HotelSelection:hover {
  background-color: #ff9900 !important;
}
section#Hotel div.HotelList div.Hotel h4 {
  color: #0054a5 !important;
  margin: 0 250px 0 0 !important;
  font-weight: bold !important;
  font-size: 20px !important;
  height: 50px;
  line-height: 50px;
  text-overflow: ellipsis;
  overflow: hidden;
  border-bottom: solid 1px #ccc;
  border-right: solid 1px #ccc;
  padding-right: 10px;
}
section#Hotel div.HotelList div.Hotel h4 .Stelle {
  margin-left: 15px;
}
section#Hotel div.HotelList div.Hotel h4 .Stelle i {
  font-size: 12px;
  color: #ff9900;
  margin-right: 3px;
  top: -2px;
  position: relative;
}
section#Hotel div.HotelList div.Hotel div.Price {
  font-weight: bold !important;
  font-size: 20px !important;
  color: #1f8fcf;
  height: 50px;
  line-height: 50px;
  text-overflow: ellipsis;
  overflow: hidden;
  border-bottom: solid 1px #ccc;
  border-right: solid 1px #ccc;
  margin-right: 250px;
  padding-right: 10px;
}
section#Hotel div.HotelList div.Hotel div.Price .Unit {
  font-weight: normal;
}
section#Hotel div.HotelList div.Hotel div.Distance {
  color: #0054a5;
  font-weight: bold;
  text-overflow: ellipsis;
  overflow: hidden;
  border-bottom: solid 1px #ccc;
  border-right: solid 1px #ccc;
  margin-right: 250px;
  padding: 16px 10px 16px 0;
}
section#Hotel div.HotelList div.Hotel div.Distance p {
  margin: 0;
  line-height: 1.5em;
}
section#Hotel div.HotelList div.Hotel div.Content.Summary {
  height: 50px;
  line-height: 50px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  border-right: solid 1px #ccc;
  margin-right: 250px;
  padding-right: 10px;
}
section#Hotel div.HotelList div.Hotel div.Content.Summary * {
  display: inline;
}
section#Hotel div.HotelList div.Hotel div.Content.Summary p > ul, section#Hotel div.HotelList div.Hotel div.Content.Summary br {
  display: none;
}
section#Hotel div.HotelList div.Hotel div.Content.Full {
  display: none;
  margin-top: 10px;
}
section#Hotel div.HotelList div.Hotel div.Content.Full ul {
  font-weight: bold;
}
section#Hotel div.HotelList div.Hotel div.Content.More.Summary {
  position: relative;
}
section#Hotel div.HotelList div.Hotel div.Content.More.Summary div {
  display: none;
}
section#Hotel div.HotelList div.Hotel div.Content.More.Summary::before {
  content: "";
  background-color: #efefef;
  width: calc(100% - 10px);
  height: 40px;
  top: 10px;
  position: absolute;
}
section#Hotel div.HotelList div.Hotel div.Content.More.Full {
  display: block;
  line-height: 1.5;
  font-size: 14px;
}
section#Hotel div.HotelList div.Hotel div.ReadMore {
  position: absolute;
  right: 10px;
  top: 170px;
  height: 40px;
  line-height: 40px;
  width: 240px;
  background: #efefef;
  text-align: center;
}
section#Hotel div.HotelList div.Hotel div.ReadMore a {
  display: block;
}
section#Hotel div.HotelList div.Hotel div.ReadMore a:hover {
  text-decoration: none !important;
  color: #1f8fcf !important;
}
section#Hotel div.HotelList div.Hotel div.ReadMore .On {
  display: none;
}
section#Hotel div.HotelList div.Hotel div.ReadMore.More .On {
  display: unset;
}
section#Hotel div.HotelList div.Hotel div.ReadMore.More .Off {
  display: none;
}
@media only screen and (min-width: 500px) and (max-width: 899px) {
  section#Hotel div.HotelList div.Hotel div.Gallery {
    margin-bottom: 50px;
    width: 220px;
  }
  section#Hotel div.HotelList div.Hotel div.HotelSelectionContainer {
    height: 50px !important;
    left: 0;
    top: 210px;
    border-bottom: none;
  }
  section#Hotel div.HotelList div.Hotel div.HotelSelectionContainer label.HotelSelection {
    top: 8px;
    left: 10px;
    width: 220px;
  }
  section#Hotel div.HotelList div.Hotel h4 {
    border-right: unset;
    margin-right: unset !important;
  }
  section#Hotel div.HotelList div.Hotel div.Price {
    border-right: unset;
    margin-right: unset;
  }
  section#Hotel div.HotelList div.Hotel div.Distance {
    border-right: unset;
    margin-right: unset;
  }
  section#Hotel div.HotelList div.Hotel div.Content.Summary {
    border-right: unset;
    margin-right: unset;
    margin-top: 50px;
    border-top: solid 1px #ccc;
  }
  section#Hotel div.HotelList div.Hotel div.ReadMore {
    position: absolute;
    height: 30px;
    line-height: 30px;
    top: 170px;
    left: 260px;
    right: 10px;
    width: unset;
  }
}
@media only screen and (max-width: 499px) {
  section#Hotel div.HotelList div.Hotel {
    padding-bottom: 60px;
  }
  section#Hotel div.HotelList div.Hotel div.Gallery {
    width: 100%;
    float: none;
  }
  section#Hotel div.HotelList div.Hotel div.Gallery img {
    width: 100%;
    height: auto;
    object-fit: unset;
  }
  section#Hotel div.HotelList div.Hotel div.HotelSelectionContainer {
    position: static;
    height: unset !important;
    width: unset;
    border-bottom: unset;
    padding-bottom: 10px;
  }
  section#Hotel div.HotelList div.Hotel div.HotelSelectionContainer label.HotelSelection {
    width: 100%;
    top: 10px;
    left: 0;
  }
  section#Hotel div.HotelList div.Hotel h4 {
    width: 100%;
    border-right: unset;
  }
  section#Hotel div.HotelList div.Hotel div.Price {
    width: 100%;
    border-right: unset;
  }
  section#Hotel div.HotelList div.Hotel div.Distance {
    width: 100%;
    border-right: unset;
  }
  section#Hotel div.HotelList div.Hotel div.Content {
    border-bottom: solid 1px #ccc;
  }
  section#Hotel div.HotelList div.Hotel div.Content.Summary {
    width: 100%;
    border-right: unset;
  }
  section#Hotel div.HotelList div.Hotel div.Content.More.Summary {
    display: none;
  }
  section#Hotel div.HotelList div.Hotel div.Content.More.Full {
    padding-bottom: 10px;
  }
  section#Hotel div.HotelList div.Hotel div.ReadMore {
    position: absolute;
    width: unset;
    top: unset !important;
    bottom: 10px;
    left: 10px;
    right: 10px;
    border-right: unset;
  }
}
section#Hotel div.HotelList span.ErrorPlaceholder {
  position: relative;
}
section#Hotel div.HotelList span.ErrorPlaceholder span.Error {
  padding: 10px 20px;
}
section#Hotel div.HotelList span.ErrorPlaceholder span.Error::before {
  font-family: "Flaticon";
  content: \f36f;
  margin-right: 10px;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Hotel.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/FontAwesome/_variables.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAKI;EACI;;AAEA;EACI;;AAEA;EACI;EACA;;AAEA;EACI,OCCF;;ADKd;EACI;EACA;EACA;;AAIA;EACI,OClBE;EDmBF;;AAEA;EACI;EACA,SEq0CY;EFp0CZ;;AAIR;EACI,kBCtBK;EDuBL;;AAEA;EAJJ;IAKQ;;;AAGJ;EARJ;IASQ;;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA,cC1DY;ED2DZ;;AAEA;EACI;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAEA;EACI,YC9Fd;;ADqGE;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAMhB;EACI;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI,OCtIN;EDuIM;EACA;EACA;;AAEA;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA,kBCzJL;ED0JK;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI,kBCpKV;;ADsKU;EACI;;AAGJ;EACI;;AAIR;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EASI;;AARA;EACI;EACA,OC3NT;ED4NS;EACA;EACA;;AAOZ;EACI;EACA;EACA,OCpPE;EDqPF;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAIR;EACI,OCnQH;EDoQG;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAKJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;;AAIR;EACI;EACA;;AAEA;EACI;;AAKJ;EACI;;AAEA;EACI;;AAGJ;EACI;EACA,kBCpUP;EDqUO;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA,YC3VK;ED4VL;;AAEA;EACI;;AAEA;EACI;EACA;;AAIR;EACI;;AAIA;EACI;;AAGJ;EACI;;AAOZ;EACI;IACI;IACA;;EAGJ;IACI;IACA;IACA;IACA;;EAEA;IACI;IACA;IACA;;EAIR;IACI;IACA;;EAGJ;IACI;IACA;;EAGJ;IACI;IACA;;EAIA;IACI;IACA;IACA;IACA;;EAIR;IACI;IACA;IACA;IACA;IACA;IACA;IACA;;;AAIR;EAtWJ;IAuWQ;;EAEA;IACI;IACA;;EAEA;IACI;IACA;IACA;;EAIR;IACI;IACA;IACA;IACA;IACA;;EAEA;IACI;IACA;IACA;;EAIR;IACI;IACA;;EAGJ;IACI;IACA;;EAGJ;IACI;IACA;;EAGJ;IACI;;EAEA;IACI;IACA;;EAIA;IACI;;EAGJ;IACI;;EAKZ;IACI;IACA;IACA;IACA;IACA;IACA;IACA;;;AAKZ;EACI;;AAEA;EACI;;AAEA;EACI;EACA,SEq1HD;EFp1HC%22%7D */
div.HoverCard div.HoverCard__Content {
  padding: 10px;
  display: block;
  max-width: 400px;
  background: white;
  position: absolute;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 4px 1px;
}
div.HoverCard:not(.HoverCard--Open) div.HoverCard__Content {
  display: none;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/HoverCard.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AACI;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAIA;EACI%22%7D */
div.ImageEditor {
  display: none;
  height: 668px;
  position: relative;
  background-color: #999;
}
div.ImageEditor.HasImage:not(.Error) {
  background: none;
}
div.ImageEditor.HasImage:not(.Error) div.Bar {
  background-color: black;
}
div.ImageEditor.HasImage:not(.Error) div.Background {
  background-color: black;
}
div.ImageEditor.HasImage:not(.Error) div.Background div.ImageBackground {
  background-color: black;
}
div.ImageEditor.HasImage:not(.Error) div.Controls.noUi-target {
  background: black !important;
}
div.ImageEditor div.Error {
  display: none;
  color: red;
  background: none;
  position: relative;
  width: 80%;
  margin: auto;
  text-align: center;
  z-index: 2;
}
div.ImageEditor div.Bar {
  background-color: #999;
  display: none;
  width: 100%;
  height: 10px;
  margin: auto;
  margin-bottom: 10px;
}
div.ImageEditor div.Bar div.Progress {
  width: 0;
  height: 100%;
  background-color: white;
}
div.ImageEditor div.Background {
  width: 612px;
  height: 600px;
  margin: auto;
  position: relative;
  background-color: #999;
}
div.ImageEditor div.Background div.ImageBackground {
  margin: auto;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #999;
}
div.ImageEditor div.Background div.ImageBackground div.ImageEdit {
  cursor: move;
  position: absolute;
  background-size: contain !important;
}
div.ImageEditor div.Controls.noUi-target.noUi-horizontal {
  border-radius: 0;
  height: 7px;
  box-shadow: none;
}
div.ImageEditor div.Controls.noUi-target.noUi-horizontal div.noUi-handle {
  background: white !important;
  height: 13px !important;
  width: 10px !important;
  right: -6px;
  top: -4px;
  box-shadow: none;
  cursor: pointer;
}
div.ImageEditor div.Controls.noUi-target.noUi-horizontal div.noUi-handle::after, div.ImageEditor div.Controls.noUi-target.noUi-horizontal div.noUi-handle::before {
  width: 0;
}
div.ImageEditor div.Controls.noUi-target.noUi-horizontal div.noUi-handle:focus {
  outline: none;
}
div.ImageEditor div.Zoom {
  display: none;
  margin: auto;
  margin-top: 15px;
}
div.ImageEditor div.Zoom div {
  height: 30px;
  display: inline-block;
  color: #ccc;
  line-height: 30px;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
}
div.ImageEditor div.Zoom div.Side:first-child {
  text-align: left;
}
div.ImageEditor div.Zoom div.Side:last-child {
  text-align: right;
}
div.ImageEditor div.Zoom div.Side {
  width: 30px;
}
div.ImageEditor div.Zoom div.Central {
  width: 542px;
}

div.Overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.95);
  display: none;
}
div.Overlay .Container {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
div.Overlay#Camera {
  background: rgba(0, 0, 0, 0.95);
}
div.Overlay#Camera .Container {
  text-align: center;
}
div.Overlay#Camera .Container video {
  display: block;
  margin: auto;
  margin-bottom: 20px;
}
div.Overlay#Camera .Container .Buttons {
  display: inline-flex;
  margin: auto;
  gap: 40px;
}
div.Overlay#Camera .Container .Buttons div:first-child {
  margin-left: 0;
}
div.Overlay#Editor div.EditorContainer {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 622px;
}
div.Overlay#Editor div.EditorContainer div#ImageControls {
  position: absolute;
  display: none;
  z-index: 3;
  top: 20px;
  left: 0;
  right: 0;
}
div.Overlay#Editor div.EditorContainer div#ImageControls div.ImageControls__Container {
  display: flex !important;
  justify-content: center;
  gap: 40px;
}
div.Overlay#Editor div.EditorContainer div#ImageEditor {
  margin: auto;
}
div.Overlay:not(.Error) div.EditorContainer div#ImageControls div.Camera {
  position: fixed;
  top: 270px;
  font-size: 60px;
  height: 120px;
  width: 120px;
  line-height: 120px;
}
div.Overlay .Buttons div.Upload, div.Overlay .Buttons div.Close, div.Overlay .Buttons div.RotateLeft, div.Overlay .Buttons div.RotateRight, div.Overlay .Buttons div.Camera, div.Overlay .Buttons div.Reset {
  position: relative;
  float: left;
  width: 70px;
  height: 70px;
  text-align: center;
  line-height: 70px;
  cursor: pointer;
  font-size: 30px;
  border: solid 2px white;
  border-radius: 50%;
}
div.Overlay .Buttons div.Upload i, div.Overlay .Buttons div.Close i, div.Overlay .Buttons div.RotateLeft i, div.Overlay .Buttons div.RotateRight i, div.Overlay .Buttons div.Camera i, div.Overlay .Buttons div.Reset i {
  color: white;
}
div.Overlay .Buttons div.Upload:hover i, div.Overlay .Buttons div.Close:hover i, div.Overlay .Buttons div.RotateLeft:hover i, div.Overlay .Buttons div.RotateRight:hover i, div.Overlay .Buttons div.Camera:hover i, div.Overlay .Buttons div.Reset:hover i {
  color: white;
}
div.Overlay .Buttons div.Upload:after, div.Overlay .Buttons div.Close:after, div.Overlay .Buttons div.RotateLeft:after, div.Overlay .Buttons div.RotateRight:after, div.Overlay .Buttons div.Camera:after, div.Overlay .Buttons div.Reset:after {
  display: block;
  content: attr(data-label);
  position: absolute;
  top: calc(100% + 10px);
  left: -10px;
  width: calc(100% + 20px);
  text-align: center;
  font-size: 10px;
  line-height: 16px;
  color: white;
}

div.ImagePreview {
  position: relative;
  overflow: hidden;
  vertical-align: top;
  border: solid 2px #999;
  padding: 10px;
  background-color: #999;
  display: inline-block;
  cursor: pointer;
  color: #ccc;
  font-family: "Futura", Arial, Freesans;
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
  width: 110px;
  height: 110px;
  margin-top: 10px;
}
div.ImagePreview input[type=file] {
  pointer-events: none;
}
div.ImagePreview input[type=file], div.ImagePreview div.Opacity {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  cursor: pointer;
}
div.ImagePreview div.Opacity {
  z-index: 0;
  background-color: black;
}
div.ImagePreview i {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
  width: 100%;
  text-align: center;
  cursor: pointer;
  pointer-events: none;
  margin: 0;
  font-size: 40px;
}
div.ImagePreview:hover {
  color: white;
  border: solid 2px white;
}
div.ImagePreview:hover div.Circle {
  background-color: white;
}
div.ImagePreview.Uploaded i {
  display: none;
}
div.ImagePreview.Uploaded:hover div.Opacity {
  opacity: 0.6;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/ImageEditor.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAKA;EACI;EACA;EACA;EACA;;AAEA;EACI;;AAEA;EACI;;AAGJ;EACI;;AAEA;EACI;;AAIR;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI,kBClCK;EDmCL;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA,kBAlDK;;AAsDb;EACI;EACA;EACA;EACA;EACA,kBCrDK;;ADuDL;EACI;EACA;EACA;EACA;EACA,kBC5DC;;AD8DD;EACI;EACA;EACA;;AAKZ;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;;AAKZ;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;;AAMhB;EACI;EACA;EACA;EACA;EACA;EACA,SCzFY;ED0FZ;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAGJ;EACI;;AAEA;EACI;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAGI;EACI;;AAQhB;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAIR;EACI;;AAQA;EACI;EACA;EACA;EACA;EACA;EACA;;AAOZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI,OA1OC;;AA6OL;EACI,OA9OC;;AAiPL;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAMhB;EACI;EACA;EACA;EACA;EACA;EACA,kBCjQS;EDkQT;EACA;EACA,OCrQc;EDsQd;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAEA;EACI;;AAMJ;EACI;;AAIA;EACI%22%7D */
:root {
  --iti-hover-color: rgba(0, 0, 0, 0.05);
  --iti-text-gray: #999;
  --iti-border-gray: #ccc;
  --iti-spacer-horizontal: 8px;
  --iti-flag-height: 15px;
  --iti-flag-width: 20px;
  --iti-border-width: 1px;
  --iti-arrow-height: 4px;
  --iti-arrow-width: 6px;
  --iti-triangle-border: calc(var(--iti-arrow-width) / 2);
  --iti-arrow-padding: 6px;
  --iti-arrow-color: #555;
  --iti-input-padding: 6px;
  --iti-right-hand-selected-country-padding: calc(var(--iti-spacer-horizontal) + var(--iti-spacer-horizontal) + var(--iti-flag-width));
  --iti-selected-country-arrow-padding: calc(var(--iti-arrow-padding) + var(--iti-arrow-padding) + var(--iti-flag-width) + var(--iti-spacer-horizontal) + var(--iti-arrow-width) + var(--iti-input-padding));
  --iti-path-flags-1x: url("Intl/img/flags.png?1");
  --iti-path-flags-2x: url("Intl/img/flags@2x.png?1");
  --iti-path-globe-1x: url("Intl/img/globe.png");
  --iti-path-globe-2x: url("Intl/img/globe@2x.png");
  --iti-flag-sprite-width: 5762px;
  --iti-flag-sprite-height: 15px;
  --iti-mobile-popup-margin: 30px;
}

.iti {
  display: block;
  margin-top: 3px;
  position: relative;
}
.iti * {
  box-sizing: border-box;
}
.iti__hide {
  display: none;
}
.iti__v-hide {
  visibility: hidden;
}
.iti__a11y-text {
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  position: absolute;
}
.iti input.iti__tel-input,
.iti input.iti__tel-input[type=text],
.iti input.iti__tel-input[type=tel] {
  position: relative;
  z-index: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-right: var(--iti-right-hand-selected-country-padding);
  margin-right: 0;
}
.iti__country-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: var(--iti-border-width);
}
.iti__selected-country {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: none;
}
.iti__selected-country-primary {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 var(--iti-arrow-padding) 0 var(--iti-spacer-horizontal);
}
.iti__arrow {
  margin-left: var(--iti-arrow-padding);
  width: 0;
  height: 0;
  border-left: var(--iti-triangle-border) solid transparent;
  border-right: var(--iti-triangle-border) solid transparent;
  border-top: var(--iti-arrow-height) solid var(--iti-arrow-color);
}
[dir=rtl] .iti__arrow {
  margin-right: var(--iti-arrow-padding);
  margin-left: 0;
}
.iti__arrow--up {
  border-top: none;
  border-bottom: var(--iti-arrow-height) solid var(--iti-arrow-color);
}
.iti__dropdown-content {
  border-radius: 3px;
  background-color: white;
}
.iti--inline-dropdown .iti__dropdown-content {
  position: absolute;
  z-index: 2;
  margin-top: 3px;
  margin-left: calc(var(--iti-border-width) * -1);
  border: var(--iti-border-width) solid var(--iti-border-gray);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}
.iti__search-input {
  width: 100%;
  border-width: 0;
  border-radius: 3px;
  padding: 9px 12px;
  margin: 0 !important;
}
.iti__search-input + .iti__country-list {
  border-top: 1px solid var(--iti-border-gray);
}
.iti__country-list {
  list-style: none;
  padding: 0;
  margin: 0 !important;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.iti--inline-dropdown .iti__country-list {
  max-height: 185px;
}
.iti--flexible-dropdown-width .iti__country-list {
  white-space: nowrap;
}
@media (max-width: 500px) {
  .iti--flexible-dropdown-width .iti__country-list {
    white-space: normal;
  }
}
.iti__flag-box {
  display: inline-block;
  width: var(--iti-flag-width);
}
.iti__country {
  display: flex;
  align-items: center;
  padding: 8px var(--iti-spacer-horizontal) !important;
  outline: none;
}
.iti__country::before {
  display: none !important;
}
.iti__dial-code {
  color: var(--iti-text-gray);
}
.iti__country.iti__highlight {
  background-color: var(--iti-hover-color);
}
.iti__flag-box, .iti__country-name {
  margin-right: var(--iti-spacer-horizontal);
}
[dir=rtl] .iti__flag-box, [dir=rtl] .iti__country-name {
  margin-right: 0;
  margin-left: var(--iti-spacer-horizontal);
}
.iti--allow-dropdown input.iti__tel-input,
.iti--allow-dropdown input.iti__tel-input[type=text],
.iti--allow-dropdown input.iti__tel-input[type=tel] {
  padding-right: var(--iti-input-padding);
  padding-left: var(--iti-selected-country-arrow-padding);
  margin-left: 0;
}
[dir=rtl] .iti--allow-dropdown input.iti__tel-input,
[dir=rtl] .iti--allow-dropdown input.iti__tel-input[type=text],
[dir=rtl] .iti--allow-dropdown input.iti__tel-input[type=tel] {
  padding-right: var(--iti-selected-country-arrow-padding);
  padding-left: var(--iti-input-padding);
  margin-right: 0;
}
.iti--allow-dropdown .iti__country-container {
  right: auto;
  left: 0;
}
[dir=rtl] .iti--allow-dropdown .iti__country-container {
  right: 0;
  left: auto;
}
.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])):hover, .iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])):hover button {
  cursor: pointer;
}
.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country-primary:hover,
.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country:has(+ .iti__dropdown-content:hover) .iti__selected-country-primary {
  background-color: var(--iti-hover-color);
}
.iti .iti__selected-dial-code {
  margin-left: 4px;
}
[dir=rtl] .iti .iti__selected-dial-code {
  margin-left: 0;
  margin-right: 4px;
}
.iti--container {
  position: fixed;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: var(--iti-border-width);
}
.iti--container:hover {
  cursor: pointer;
}

.iti--fullscreen-popup.iti--container {
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
  padding: var(--iti-mobile-popup-margin);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.iti--fullscreen-popup .iti__dropdown-content {
  display: flex;
  flex-direction: column;
  max-height: 100%;
  position: relative;
}
.iti--fullscreen-popup .iti__country {
  padding: 10px 10px;
  line-height: 1.5em;
}

.iti__flag {
  --iti-flag-offset: 0px;
  --iti-flag-width: 20px;
  --iti-flag-height: 14px;
  height: var(--iti-flag-height);
  width: var(--iti-flag-width);
  box-shadow: 0px 0px 1px 0px #888;
  background-image: var(--iti-path-flags-1x);
  background-repeat: no-repeat;
  background-position: var(--iti-flag-offset) 0;
  background-size: var(--iti-flag-sprite-width) var(--iti-flag-sprite-height);
}

.iti__np {
  --iti-flag-width: 13px;
}

.iti__va, .iti__ch {
  --iti-flag-width: 15px;
}

.iti__ne, .iti__be {
  --iti-flag-width: 18px;
}

.iti__mc {
  --iti-flag-width: 19px;
}

.iti__zw, .iti__ws, .iti__vg, .iti__uz, .iti__uk, .iti__tv, .iti__to, .iti__tl, .iti__tk, .iti__tj, .iti__tc, .iti__ta, .iti__su, .iti__st, .iti__ss, .iti__si, .iti__sh, .iti__sd, .iti__sc, .iti__sb, .iti__ps, .iti__pn, .iti__ph, .iti__om, .iti__nz, .iti__nu, .iti__nr, .iti__ng, .iti__nf, .iti__nc, .iti__my, .iti__ms, .iti__mp, .iti__mn, .iti__mk, .iti__me, .iti__md, .iti__ly, .iti__lv, .iti__lk, .iti__lc, .iti__kz, .iti__ky, .iti__kw, .iti__kp, .iti__ki, .iti__jo, .iti__jm, .iti__io, .iti__im, .iti__ie, .iti__hu, .iti__hr, .iti__hn, .iti__hm, .iti__gw, .iti__gs, .iti__gi, .iti__gb, .iti__fk, .iti__fj, .iti__et, .iti__er, .iti__eh, .iti__dm, .iti__dg, .iti__cx, .iti__cu, .iti__ck, .iti__cc, .iti__ca, .iti__by, .iti__bs, .iti__bn, .iti__bm, .iti__ba, .iti__az, .iti__au, .iti__as, .iti__am, .iti__ai, .iti__ae, .iti__ac {
  --iti-flag-height: 10px;
}

.iti__us, .iti__um, .iti__py, .iti__mh, .iti__lr, .iti__gu, .iti__fm {
  --iti-flag-height: 11px;
}

.iti__vu, .iti__tt, .iti__sv, .iti__ni, .iti__mx, .iti__lu, .iti__lt, .iti__li, .iti__km, .iti__kg, .iti__je, .iti__ir, .iti__ht, .iti__gy, .iti__gd, .iti__fi, .iti__de, .iti__cv, .iti__cr, .iti__cq, .iti__bz, .iti__bi, .iti__bh, .iti__bg, .iti__bd {
  --iti-flag-height: 12px;
}

.iti__tg, .iti__se, .iti__pw, .iti__pl, .iti__kh, .iti__gt, .iti__ee, .iti__ax, .iti__ar {
  --iti-flag-height: 13px;
}

.iti__xk, .iti__va, .iti__sm, .iti__sj, .iti__pg, .iti__np, .iti__no, .iti__ne, .iti__mc, .iti__is, .iti__il, .iti__ga, .iti__fo, .iti__dk, .iti__ch, .iti__cd, .iti__bv, .iti__be, .iti__al {
  --iti-flag-height: 15px;
}

.iti__qa {
  --iti-flag-height: 8px;
}

.iti__ac {
  --iti-flag-offset: 0px;
}

.iti__ad {
  --iti-flag-offset: -22px;
}

.iti__ae {
  --iti-flag-offset: -44px;
}

.iti__af {
  --iti-flag-offset: -66px;
}

.iti__ag {
  --iti-flag-offset: -88px;
}

.iti__ai {
  --iti-flag-offset: -110px;
}

.iti__al {
  --iti-flag-offset: -132px;
}

.iti__am {
  --iti-flag-offset: -154px;
}

.iti__ao {
  --iti-flag-offset: -176px;
}

.iti__aq {
  --iti-flag-offset: -198px;
}

.iti__ar {
  --iti-flag-offset: -220px;
}

.iti__as {
  --iti-flag-offset: -242px;
}

.iti__at {
  --iti-flag-offset: -264px;
}

.iti__au {
  --iti-flag-offset: -286px;
}

.iti__aw {
  --iti-flag-offset: -308px;
}

.iti__ax {
  --iti-flag-offset: -330px;
}

.iti__az {
  --iti-flag-offset: -352px;
}

.iti__ba {
  --iti-flag-offset: -374px;
}

.iti__bb {
  --iti-flag-offset: -396px;
}

.iti__bd {
  --iti-flag-offset: -418px;
}

.iti__be {
  --iti-flag-offset: -440px;
}

.iti__bf {
  --iti-flag-offset: -460px;
}

.iti__bg {
  --iti-flag-offset: -482px;
}

.iti__bh {
  --iti-flag-offset: -504px;
}

.iti__bi {
  --iti-flag-offset: -526px;
}

.iti__bj {
  --iti-flag-offset: -548px;
}

.iti__bl {
  --iti-flag-offset: -570px;
}

.iti__bm {
  --iti-flag-offset: -592px;
}

.iti__bn {
  --iti-flag-offset: -614px;
}

.iti__bo {
  --iti-flag-offset: -636px;
}

.iti__bq {
  --iti-flag-offset: -658px;
}

.iti__br {
  --iti-flag-offset: -680px;
}

.iti__bs {
  --iti-flag-offset: -702px;
}

.iti__bt {
  --iti-flag-offset: -724px;
}

.iti__bv {
  --iti-flag-offset: -746px;
}

.iti__bw {
  --iti-flag-offset: -768px;
}

.iti__by {
  --iti-flag-offset: -790px;
}

.iti__bz {
  --iti-flag-offset: -812px;
}

.iti__ca {
  --iti-flag-offset: -834px;
}

.iti__cc {
  --iti-flag-offset: -856px;
}

.iti__cd {
  --iti-flag-offset: -878px;
}

.iti__cf {
  --iti-flag-offset: -900px;
}

.iti__cg {
  --iti-flag-offset: -922px;
}

.iti__ch {
  --iti-flag-offset: -944px;
}

.iti__ci {
  --iti-flag-offset: -961px;
}

.iti__ck {
  --iti-flag-offset: -983px;
}

.iti__cl {
  --iti-flag-offset: -1005px;
}

.iti__cm {
  --iti-flag-offset: -1027px;
}

.iti__cn {
  --iti-flag-offset: -1049px;
}

.iti__co {
  --iti-flag-offset: -1071px;
}

.iti__cp {
  --iti-flag-offset: -1093px;
}

.iti__cq {
  --iti-flag-offset: -1115px;
}

.iti__cr {
  --iti-flag-offset: -1137px;
}

.iti__cu {
  --iti-flag-offset: -1159px;
}

.iti__cv {
  --iti-flag-offset: -1181px;
}

.iti__cw {
  --iti-flag-offset: -1203px;
}

.iti__cx {
  --iti-flag-offset: -1225px;
}

.iti__cy {
  --iti-flag-offset: -1247px;
}

.iti__cz {
  --iti-flag-offset: -1269px;
}

.iti__de {
  --iti-flag-offset: -1291px;
}

.iti__dg {
  --iti-flag-offset: -1313px;
}

.iti__dj {
  --iti-flag-offset: -1335px;
}

.iti__dk {
  --iti-flag-offset: -1357px;
}

.iti__dm {
  --iti-flag-offset: -1379px;
}

.iti__do {
  --iti-flag-offset: -1401px;
}

.iti__dz {
  --iti-flag-offset: -1423px;
}

.iti__ea {
  --iti-flag-offset: -1445px;
}

.iti__ec {
  --iti-flag-offset: -1467px;
}

.iti__ee {
  --iti-flag-offset: -1489px;
}

.iti__eg {
  --iti-flag-offset: -1511px;
}

.iti__eh {
  --iti-flag-offset: -1533px;
}

.iti__er {
  --iti-flag-offset: -1555px;
}

.iti__es {
  --iti-flag-offset: -1577px;
}

.iti__et {
  --iti-flag-offset: -1599px;
}

.iti__eu {
  --iti-flag-offset: -1621px;
}

.iti__ez {
  --iti-flag-offset: -1643px;
}

.iti__fi {
  --iti-flag-offset: -1665px;
}

.iti__fj {
  --iti-flag-offset: -1687px;
}

.iti__fk {
  --iti-flag-offset: -1709px;
}

.iti__fm {
  --iti-flag-offset: -1731px;
}

.iti__fo {
  --iti-flag-offset: -1753px;
}

.iti__fr {
  --iti-flag-offset: -1775px;
}

.iti__fx {
  --iti-flag-offset: -1797px;
}

.iti__ga {
  --iti-flag-offset: -1819px;
}

.iti__gb {
  --iti-flag-offset: -1841px;
}

.iti__gd {
  --iti-flag-offset: -1863px;
}

.iti__ge {
  --iti-flag-offset: -1885px;
}

.iti__gf {
  --iti-flag-offset: -1907px;
}

.iti__gg {
  --iti-flag-offset: -1929px;
}

.iti__gh {
  --iti-flag-offset: -1951px;
}

.iti__gi {
  --iti-flag-offset: -1973px;
}

.iti__gl {
  --iti-flag-offset: -1995px;
}

.iti__gm {
  --iti-flag-offset: -2017px;
}

.iti__gn {
  --iti-flag-offset: -2039px;
}

.iti__gp {
  --iti-flag-offset: -2061px;
}

.iti__gq {
  --iti-flag-offset: -2083px;
}

.iti__gr {
  --iti-flag-offset: -2105px;
}

.iti__gs {
  --iti-flag-offset: -2127px;
}

.iti__gt {
  --iti-flag-offset: -2149px;
}

.iti__gu {
  --iti-flag-offset: -2171px;
}

.iti__gw {
  --iti-flag-offset: -2193px;
}

.iti__gy {
  --iti-flag-offset: -2215px;
}

.iti__hk {
  --iti-flag-offset: -2237px;
}

.iti__hm {
  --iti-flag-offset: -2259px;
}

.iti__hn {
  --iti-flag-offset: -2281px;
}

.iti__hr {
  --iti-flag-offset: -2303px;
}

.iti__ht {
  --iti-flag-offset: -2325px;
}

.iti__hu {
  --iti-flag-offset: -2347px;
}

.iti__ic {
  --iti-flag-offset: -2369px;
}

.iti__id {
  --iti-flag-offset: -2391px;
}

.iti__ie {
  --iti-flag-offset: -2413px;
}

.iti__il {
  --iti-flag-offset: -2435px;
}

.iti__im {
  --iti-flag-offset: -2457px;
}

.iti__in {
  --iti-flag-offset: -2479px;
}

.iti__io {
  --iti-flag-offset: -2501px;
}

.iti__iq {
  --iti-flag-offset: -2523px;
}

.iti__ir {
  --iti-flag-offset: -2545px;
}

.iti__is {
  --iti-flag-offset: -2567px;
}

.iti__it {
  --iti-flag-offset: -2589px;
}

.iti__je {
  --iti-flag-offset: -2611px;
}

.iti__jm {
  --iti-flag-offset: -2633px;
}

.iti__jo {
  --iti-flag-offset: -2655px;
}

.iti__jp {
  --iti-flag-offset: -2677px;
}

.iti__ke {
  --iti-flag-offset: -2699px;
}

.iti__kg {
  --iti-flag-offset: -2721px;
}

.iti__kh {
  --iti-flag-offset: -2743px;
}

.iti__ki {
  --iti-flag-offset: -2765px;
}

.iti__km {
  --iti-flag-offset: -2787px;
}

.iti__kn {
  --iti-flag-offset: -2809px;
}

.iti__kp {
  --iti-flag-offset: -2831px;
}

.iti__kr {
  --iti-flag-offset: -2853px;
}

.iti__kw {
  --iti-flag-offset: -2875px;
}

.iti__ky {
  --iti-flag-offset: -2897px;
}

.iti__kz {
  --iti-flag-offset: -2919px;
}

.iti__la {
  --iti-flag-offset: -2941px;
}

.iti__lb {
  --iti-flag-offset: -2963px;
}

.iti__lc {
  --iti-flag-offset: -2985px;
}

.iti__li {
  --iti-flag-offset: -3007px;
}

.iti__lk {
  --iti-flag-offset: -3029px;
}

.iti__lr {
  --iti-flag-offset: -3051px;
}

.iti__ls {
  --iti-flag-offset: -3073px;
}

.iti__lt {
  --iti-flag-offset: -3095px;
}

.iti__lu {
  --iti-flag-offset: -3117px;
}

.iti__lv {
  --iti-flag-offset: -3139px;
}

.iti__ly {
  --iti-flag-offset: -3161px;
}

.iti__ma {
  --iti-flag-offset: -3183px;
}

.iti__mc {
  --iti-flag-offset: -3205px;
}

.iti__md {
  --iti-flag-offset: -3226px;
}

.iti__me {
  --iti-flag-offset: -3248px;
}

.iti__mf {
  --iti-flag-offset: -3270px;
}

.iti__mg {
  --iti-flag-offset: -3292px;
}

.iti__mh {
  --iti-flag-offset: -3314px;
}

.iti__mk {
  --iti-flag-offset: -3336px;
}

.iti__ml {
  --iti-flag-offset: -3358px;
}

.iti__mm {
  --iti-flag-offset: -3380px;
}

.iti__mn {
  --iti-flag-offset: -3402px;
}

.iti__mo {
  --iti-flag-offset: -3424px;
}

.iti__mp {
  --iti-flag-offset: -3446px;
}

.iti__mq {
  --iti-flag-offset: -3468px;
}

.iti__mr {
  --iti-flag-offset: -3490px;
}

.iti__ms {
  --iti-flag-offset: -3512px;
}

.iti__mt {
  --iti-flag-offset: -3534px;
}

.iti__mu {
  --iti-flag-offset: -3556px;
}

.iti__mv {
  --iti-flag-offset: -3578px;
}

.iti__mw {
  --iti-flag-offset: -3600px;
}

.iti__mx {
  --iti-flag-offset: -3622px;
}

.iti__my {
  --iti-flag-offset: -3644px;
}

.iti__mz {
  --iti-flag-offset: -3666px;
}

.iti__na {
  --iti-flag-offset: -3688px;
}

.iti__nc {
  --iti-flag-offset: -3710px;
}

.iti__ne {
  --iti-flag-offset: -3732px;
}

.iti__nf {
  --iti-flag-offset: -3752px;
}

.iti__ng {
  --iti-flag-offset: -3774px;
}

.iti__ni {
  --iti-flag-offset: -3796px;
}

.iti__nl {
  --iti-flag-offset: -3818px;
}

.iti__no {
  --iti-flag-offset: -3840px;
}

.iti__np {
  --iti-flag-offset: -3862px;
}

.iti__nr {
  --iti-flag-offset: -3877px;
}

.iti__nu {
  --iti-flag-offset: -3899px;
}

.iti__nz {
  --iti-flag-offset: -3921px;
}

.iti__om {
  --iti-flag-offset: -3943px;
}

.iti__pa {
  --iti-flag-offset: -3965px;
}

.iti__pe {
  --iti-flag-offset: -3987px;
}

.iti__pf {
  --iti-flag-offset: -4009px;
}

.iti__pg {
  --iti-flag-offset: -4031px;
}

.iti__ph {
  --iti-flag-offset: -4053px;
}

.iti__pk {
  --iti-flag-offset: -4075px;
}

.iti__pl {
  --iti-flag-offset: -4097px;
}

.iti__pm {
  --iti-flag-offset: -4119px;
}

.iti__pn {
  --iti-flag-offset: -4141px;
}

.iti__pr {
  --iti-flag-offset: -4163px;
}

.iti__ps {
  --iti-flag-offset: -4185px;
}

.iti__pt {
  --iti-flag-offset: -4207px;
}

.iti__pw {
  --iti-flag-offset: -4229px;
}

.iti__py {
  --iti-flag-offset: -4251px;
}

.iti__qa {
  --iti-flag-offset: -4273px;
}

.iti__re {
  --iti-flag-offset: -4295px;
}

.iti__ro {
  --iti-flag-offset: -4317px;
}

.iti__rs {
  --iti-flag-offset: -4339px;
}

.iti__ru {
  --iti-flag-offset: -4361px;
}

.iti__rw {
  --iti-flag-offset: -4383px;
}

.iti__sa {
  --iti-flag-offset: -4405px;
}

.iti__sb {
  --iti-flag-offset: -4427px;
}

.iti__sc {
  --iti-flag-offset: -4449px;
}

.iti__sd {
  --iti-flag-offset: -4471px;
}

.iti__se {
  --iti-flag-offset: -4493px;
}

.iti__sg {
  --iti-flag-offset: -4515px;
}

.iti__sh {
  --iti-flag-offset: -4537px;
}

.iti__si {
  --iti-flag-offset: -4559px;
}

.iti__sj {
  --iti-flag-offset: -4581px;
}

.iti__sk {
  --iti-flag-offset: -4603px;
}

.iti__sl {
  --iti-flag-offset: -4625px;
}

.iti__sm {
  --iti-flag-offset: -4647px;
}

.iti__sn {
  --iti-flag-offset: -4669px;
}

.iti__so {
  --iti-flag-offset: -4691px;
}

.iti__sr {
  --iti-flag-offset: -4713px;
}

.iti__ss {
  --iti-flag-offset: -4735px;
}

.iti__st {
  --iti-flag-offset: -4757px;
}

.iti__su {
  --iti-flag-offset: -4779px;
}

.iti__sv {
  --iti-flag-offset: -4801px;
}

.iti__sx {
  --iti-flag-offset: -4823px;
}

.iti__sy {
  --iti-flag-offset: -4845px;
}

.iti__sz {
  --iti-flag-offset: -4867px;
}

.iti__ta {
  --iti-flag-offset: -4889px;
}

.iti__tc {
  --iti-flag-offset: -4911px;
}

.iti__td {
  --iti-flag-offset: -4933px;
}

.iti__tf {
  --iti-flag-offset: -4955px;
}

.iti__tg {
  --iti-flag-offset: -4977px;
}

.iti__th {
  --iti-flag-offset: -4999px;
}

.iti__tj {
  --iti-flag-offset: -5021px;
}

.iti__tk {
  --iti-flag-offset: -5043px;
}

.iti__tl {
  --iti-flag-offset: -5065px;
}

.iti__tm {
  --iti-flag-offset: -5087px;
}

.iti__tn {
  --iti-flag-offset: -5109px;
}

.iti__to {
  --iti-flag-offset: -5131px;
}

.iti__tr {
  --iti-flag-offset: -5153px;
}

.iti__tt {
  --iti-flag-offset: -5175px;
}

.iti__tv {
  --iti-flag-offset: -5197px;
}

.iti__tw {
  --iti-flag-offset: -5219px;
}

.iti__tz {
  --iti-flag-offset: -5241px;
}

.iti__ua {
  --iti-flag-offset: -5263px;
}

.iti__ug {
  --iti-flag-offset: -5285px;
}

.iti__uk {
  --iti-flag-offset: -5307px;
}

.iti__um {
  --iti-flag-offset: -5329px;
}

.iti__un {
  --iti-flag-offset: -5351px;
}

.iti__us {
  --iti-flag-offset: -5373px;
}

.iti__uy {
  --iti-flag-offset: -5395px;
}

.iti__uz {
  --iti-flag-offset: -5417px;
}

.iti__va {
  --iti-flag-offset: -5439px;
}

.iti__vc {
  --iti-flag-offset: -5456px;
}

.iti__ve {
  --iti-flag-offset: -5478px;
}

.iti__vg {
  --iti-flag-offset: -5500px;
}

.iti__vi {
  --iti-flag-offset: -5522px;
}

.iti__vn {
  --iti-flag-offset: -5544px;
}

.iti__vu {
  --iti-flag-offset: -5566px;
}

.iti__wf {
  --iti-flag-offset: -5588px;
}

.iti__ws {
  --iti-flag-offset: -5610px;
}

.iti__xk {
  --iti-flag-offset: -5632px;
}

.iti__ye {
  --iti-flag-offset: -5654px;
}

.iti__yt {
  --iti-flag-offset: -5676px;
}

.iti__za {
  --iti-flag-offset: -5698px;
}

.iti__zm {
  --iti-flag-offset: -5720px;
}

.iti__zw {
  --iti-flag-offset: -5742px;
}

.iti__globe {
  background-image: var(--iti-path-globe-1x);
  background-size: contain;
  background-position: right;
  box-shadow: none;
  height: 19px;
}

@media (min-resolution: 2x) {
  .iti__flag {
    background-image: var(--iti-path-flags-2x);
  }
  .iti__globe {
    background-image: var(--iti-path-globe-2x);
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Intl/intlTelInput.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAEA;EAEE;EACA;EACA;EAEA;EACA;EACA;EAEA;EAEA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EAGA;EACA;EACA;EACA;EAEA;EACA;EAGA;;;AAGF;EAEE;EACA;EACA;;AAIA;EACE;;AAGF;EACE;;AAIF;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAIF;AAAA;AAAA;EAGE;EAEA;EAOA;EACA;EAKA;EAGA;;AAGF;EAEE;EAEA;EACA;EACA;EAEA;;AAIF;EAEE;EACA;EACA;EACA;EAEA;EAGA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EAEA;EACA;;AAGF;EACE;EAGA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;;AAKJ;EAgBE;EACA;;AAhBA;EACE;EAEA;EAGA;EAGA;EAEA;EACA;;AAMJ;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGJ;EAEE;EACA;EACA;EAEA;EAKA;;AAEA;EACE;;AAGJ;EAEE;;AAGA;EALF;IAMI;;;AAKJ;EACE;EACA;;AAIF;EAEE;EACA;EACA;EACA;;AAEA;EACI;;AAKN;EACE;;AAEF;EACE;;AAIF;EAEE;;AAEA;EACE;EACA;;AAMF;AAAA;AAAA;EAGE;EACA;EACA;;AAEA;AAAA;AAAA;EACE;EACA;EACA;;AAGJ;EACE;EACA;;AAEA;EACE;EACA;;AAWA;EACE;;AAIJ;AAAA;EAEE;;AAKN;EACE;;AAEA;EACE;EACA;;AAKJ;EACE;EACA;EACA;EAEA;EAEA;;AACA;EACE;;;AAOJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EAEA;;AAEF;EACE;EACA;EACA;EACA;;AAEF;EACE;EAEA;;;AAIJ;EACE;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAKA;EACE;;;AADF;EACE;;;AADF;EACE;;;AADF;EACE;;;AAMF;EACE;;;AADF;EACE;;;AADF;EACE;;;AADF;EACE;;;AADF;EACE;;;AADF;EACE;;;AASF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAPF;EAOE;;;AAKJ;EACE;EACA;EACA;EACA;EACA;;;AAIF;EACE;IAAa;;EACb;IAAc%22%7D */
body.Info-Inviti:not(.CMS) div#Content div.Grafica div.Image:hover {
  cursor: pointer;
}
body.Info-Inviti:not(.CMS) div#Content div.Grafica div.Image:hover::before {
  content: " ";
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
}
body.Info-Inviti:not(.CMS) div#Content div.Grafica div.Image:hover::after {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f00e";
  transform: translate(-50%, -50%);
  color: rgba(0, 0, 0, 0.7);
  position: absolute;
  font-size: 44px;
  left: 50%;
  top: 50%;
}

body.Info-Inviti.CMS div#Content div.Grafiche div.Grafica {
  margin-top: 20px;
  position: relative;
}
body.Info-Inviti.CMS div#Content div.Grafiche div.Grafica div.ActionBar {
  right: 0;
  bottom: 100%;
  font-size: 12px;
  margin-bottom: 5px;
  position: absolute;
}
body.Info-Inviti.CMS div#Content div.Grafiche div.Grafica div.ActionBar a {
  color: var(--cms-color-regular);
}
body.Info-Inviti.CMS div#Content div.Grafiche div.Grafica div.ActionBar a:hover {
  color: var(--cms-color-dark);
}

body.Info-Inviti div#Content div.Grafiche {
  font-size: 0;
  margin-left: -20px;
  margin-bottom: -20px;
  display: flex;
  flex-wrap: wrap;
}
body.Info-Inviti div#Content div.Grafiche div.Grafica {
  margin-left: 20px;
  margin-bottom: 20px;
  perspective: 1000px;
  display: inline-block;
  flex-basis: 100%;
  padding: 10px;
  border: 1px solid #999;
}
@media only screen and (min-width: 510px) {
  body.Info-Inviti div#Content div.Grafiche div.Grafica {
    flex-basis: calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}
@media only screen and (min-width: 765px) {
  body.Info-Inviti div#Content div.Grafiche div.Grafica {
    flex-basis: calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
  }
}
@media only screen and (min-width: 1020px) {
  body.Info-Inviti div#Content div.Grafiche div.Grafica {
    flex-basis: calc(25% - 20px);
    max-width: calc(25% - 20px);
  }
}
body.Info-Inviti div#Content div.Grafiche div.Grafica .Image {
  margin-bottom: 10px;
  position: relative;
  display: block;
}
body.Info-Inviti div#Content div.Grafiche div.Grafica .Image div[data-cms][data-cms-inline] {
  display: block;
}
body.Info-Inviti div#Content div.Grafiche div.Grafica .Image img {
  width: 100%;
}
body.Info-Inviti div#Content div.Grafiche div.Grafica .Info {
  position: relative;
  align-items: center;
  display: flex;
  height: 50px;
  flex-grow: 1;
  padding: 0 15px;
  font-size: 17px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-transform: uppercase;
  background-color: #ccc;
  color: #666;
}
body.Info-Inviti div#Content div.Grafiche div.Grafica .Info div.CheckBox {
  position: absolute;
  align-items: center;
  font-size: 17px;
  display: flex;
  left: 15px;
  right: 0;
  top: 0;
  bottom: 0;
}
body.Info-Inviti div#Content div.Grafiche div.Grafica .Info div.CheckBox input {
  margin-right: 10px;
  height: 24px;
  width: 24px;
}
body.Info-Inviti div#Content div.Grafiche div.Grafica .Info div.CheckBox .Label {
  color: #666;
  margin-top: 2px;
}
body.Info-Inviti div#Content div.Grafiche.Grafiche--Single div.Grafica div.CheckBox input {
  display: none;
}
body.Info-Inviti div#Content div.ButtonsBar {
  padding: 20px 0;
  margin-right: -20px;
  display: flex;
  margin: 20px 0;
  flex: 0 1 auto;
  flex-flow: wrap;
  padding-top: 20px;
  padding-left: 20px;
  position: relative;
  justify-content: center;
}
body.Info-Inviti div#Content div.ButtonsBar::before, body.Info-Inviti div#Content div.ButtonsBar::after {
  content: " ";
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  flex-basis: 100%;
  position: absolute;
  background-color: #999;
}
body.Info-Inviti div#Content div.ButtonsBar::before {
  top: 0;
}
body.Info-Inviti div#Content div.ButtonsBar::after {
  margin-top: 10px;
  bottom: 0;
}
body.Info-Inviti div#Content div.ButtonsBar > div[data-cms] {
  margin-right: 20px;
  min-width: 20px;
}
@media only screen and (max-width: 759px) {
  body.Info-Inviti div#Content div.ButtonsBar {
    padding-left: unset;
    flex-flow: nowrap;
  }
  body.Info-Inviti div#Content div.ButtonsBar > * {
    flex: 1 1 100%;
  }
  body.Info-Inviti div#Content div.ButtonsBar a.Button {
    text-align: center;
    margin-right: 3px;
    border-radius: 0;
  }
  body.Info-Inviti div#Content div.ButtonsBar a.Button:not(.Shop) {
    padding-right: 20px;
  }
  body.Info-Inviti div#Content div.ButtonsBar a.Button:not(.Shop)::after {
    display: none;
  }
  body.Info-Inviti div#Content div.ButtonsBar a.Button:not(.Shop) i {
    margin: 0;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Inviti.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAIQ;EACI;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EC0FR;EACA;EACA;EACA;EACA;EACA;EACA;ED9FY;EACA;EACA;EACA;EACA;EACA;;;AAQR;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAEA;EACI;;;AASpB;EACI;EACA;EACA;EACA;EACA;;AAKA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EATJ;IAUQ;IACA;;;AAGJ;EAdJ;IAeQ;IACA;;;AAGJ;EAnBJ;IAoBQ;IACA;;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBC5GE;ED6GF,OC3GC;;AD6GD;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI,OC9HP;ED+HO;;AAQR;EACI;;AAMhB;EACI;EACA;EAsBA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AA3BA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBC3JC;;AD8JL;EACI;;AAGJ;EACI;EACA;;AAYJ;EACI;EACA;;AAGJ;EAtCJ;IAuCQ;IACA;;EAEA;IACI;;EAGJ;IACI;IACA;IACA;;EAEA;IACI;;EAEA;IACI;;EAGJ;IACI%22%7D */
body.Info.Info-LavoraConNoi #Content form div.Group input[type=file] {
  width: unset;
  height: 38px;
  padding: 7px;
  max-width: 100%;
  border-radius: 5px;
}
body.Info.Info-LavoraConNoi #Content div.Tabs, body.Info.Info-LavoraConNoi #Content div.SuccessMessage {
  position: relative;
}
body.Info.Info-LavoraConNoi #Content a.Submit, body.Info.Info-LavoraConNoi #Content div.FinalError {
  margin-bottom: 20px;
  margin-top: 20px;
}
body.Info.Info-LavoraConNoi #Content div.TabHeader div.Tab {
  cursor: pointer;
}
body.Info.Info-LavoraConNoi #Content div.Disponibilita {
  margin-top: 5px;
}
body.Info.Info-LavoraConNoi #Content div.Disponibilita div.CheckBox {
  display: inline-block;
  margin-right: 15px;
}
body.Info.Info-LavoraConNoi #Content div.AreeAziendali {
  width: 100%;
  max-width: 570px;
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
}
body.Info.Info-LavoraConNoi #Content div.AreeAziendali label {
  width: 100%;
}
body.Info.Info-LavoraConNoi #Content div.AreeAziendali div.AutoComplete {
  width: 100%;
}
body.Info.Info-LavoraConNoi #Content div.AreeAziendali input.AutoComplete {
  flex-grow: 1;
  width: 100%;
}
@media only screen and (max-width: 648px) {
  body.Info.Info-LavoraConNoi #Content div.AreeAziendali {
    max-width: 380px;
  }
}
body.Info.Info-LavoraConNoi #Content div.PosizioneAperta {
  cursor: pointer;
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #999;
}
body.Info.Info-LavoraConNoi #Content div.PosizioneAperta .Title {
  margin: 0;
  font-size: 1rem;
  color: var(--color-light-brand);
  text-transform: uppercase;
}
body.Info.Info-LavoraConNoi #Content div.PosizioneAperta .Subtitle {
  margin: 3px 0;
  color: #ff9900;
}
body.Info.Info-LavoraConNoi #Content div.PosizioneAperta .Description {
  margin: 0;
}
body.Info.Info-LavoraConNoi #Content div.PosizioneAperta div.CheckBox {
  position: absolute;
}
body.Info.Info-LavoraConNoi #Content div.PosizioneAperta .Title, body.Info.Info-LavoraConNoi #Content div.PosizioneAperta .Subtitle, body.Info.Info-LavoraConNoi #Content div.PosizioneAperta .Description {
  margin-left: 30px;
}
body.Info.Info-LavoraConNoi #Content div.TabContent {
  padding: 20px 20px 0 20px;
}
body.Info.Info-LavoraConNoi #Content div.Presentazione {
  clear: both;
  display: flex;
  flex-wrap: wrap;
}
body.Info.Info-LavoraConNoi #Content div.Presentazione div.Group {
  float: unset;
}
body.Info.Info-LavoraConNoi #Content div.Presentazione div.Group.Note {
  width: 100%;
  flex-basis: 100%;
}
body.Info.Info-LavoraConNoi #Content div.Presentazione div.Group.Note textarea {
  min-height: 110px;
  resize: vertical;
  height: 110px;
  width: 100%;
}
body.Info.Info-LavoraConNoi #Content div.Presentazione div.Group.Photo div.ImagePreview {
  margin-top: 0;
  display: block;
}
@media only screen and (max-width: 759px) {
  body.Info.Info-LavoraConNoi #Content div.Presentazione div.Group.Photo {
    order: 0;
  }
  body.Info.Info-LavoraConNoi #Content div.Presentazione div.Group.Note {
    order: 1;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/LavoraConNoi.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAIQ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;;AAIA;EACI;;AAIR;EACI;;AAEA;EACI;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;;AAGJ;EApBJ;IAqBQ;;;AAIR;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA,OChDD;;ADmDH;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAIR;EACI;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;;AAEA;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAKJ;EACI;EACA;;AAIR;EACI;IACI;;EAGJ;IACI%22%7D */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*!
 * Font Awesome Pro 6.5.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2023 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-classic: "FontAwesome";
  --fa-font-regular: normal 400 1em/1 "FontAwesome";
}

@font-face {
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("FontAwesome/Fonts/fa-regular-400.woff2") format("woff2"), url("FontAwesome/Fonts/fa-regular-400.ttf") format("truetype");
}
.far,
.fa-regular {
  font-weight: 400;
}

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --font-primary: MyriadPro, sans-serif;
}

html, body {
  font-family: var(--font-primary, MyriadPro, sans-serif);
  font-size: 15px;
  color: #999;
}

.Wrap {
  position: relative;
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 20px;
}
.Wrap .Wrap {
  padding: 0;
}
@media only screen and (max-width: 759px) {
  .Wrap {
    padding: 0 20px;
  }
}

body:not(.CMS) .Widescreen {
  left: 50%;
  width: 100%;
  width: 100vw;
  display: block;
  margin-left: -50%;
  margin-left: -50vw;
  position: relative;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a.CheckBox {
  color: black !important;
  line-height: 2 !important;
  text-decoration: unset !important;
}
a.CheckBox i {
  margin-right: 5px;
}
a.PopupButton.Close {
  display: block;
}

div.CheckBox {
  color: black !important;
  line-height: 2 !important;
}
div.CheckBox i {
  margin-right: 5px;
}
div.CheckBox:hover {
  cursor: pointer;
}

body {
  position: relative;
}
body .CMS {
  display: none;
}
body.CMS .CMS {
  display: unset;
}
body.CMS .No-CMS {
  display: none;
}
@media only screen and (max-width: 759px) {
  body div.MobileFastSale {
    position: fixed;
    width: 100%;
    display: flex !important;
    z-index: 9999;
    bottom: 0;
  }
  body div.MobileFastSale > a.Button {
    height: unset;
    padding: 20px 5px;
    text-align: center;
    line-height: unset;
    background-color: var(--color-brand);
    border-radius: 0;
    float: left;
    width: 50%;
    margin: 0;
  }
  body div.MobileFastSale > a.Button::before, body div.MobileFastSale > a.Button::after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: " ";
    border: unset;
    width: unset;
    height: unset;
    display: block;
    background: unset;
    position: absolute;
    border-radius: unset;
    box-sizing: border-box;
  }
  body div.MobileFastSale > a.Button:nth-child(1) {
    border-top: 1px solid white;
    border-right: 1px solid white;
  }
  body div.MobileFastSale > a.Button:nth-child(2) {
    margin-left: -1px;
    width: calc(50% + 1px);
    border-top: 1px solid white;
    border-left: 1px solid white;
  }
  body div.MobileFastSale > a.Button:hover {
    background-color: var(--color-dark-brand);
  }
}
body.Modal {
  overflow: hidden;
}
body.HamburgerMenu header div.ServiceMenu {
  display: none;
}
body .Error {
  color: #900;
}

body:not(.CustomLayout) header {
  color: white;
  background-color: var(--color-header-bg);
  font-size: 14px;
  position: relative;
  z-index: 5000;
  width: 100%;
}
@media only screen and (min-width: 760px) {
  body:not(.CustomLayout) header.Header--Sticky {
    position: fixed;
    top: 0;
  }
}
body:not(.CustomLayout) header::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 30px;
  z-index: 1;
  background: url(/Content/Theme/CMSPage/Shadow.png) center no-repeat;
  pointer-events: none;
}
body:not(.CustomLayout) header div.Social {
  width: 100%;
  min-height: 30px;
  background-color: var(--color-social-header-bg, black);
  text-align: right;
}
body:not(.CustomLayout) header div.Social a {
  text-decoration: unset;
  color: var(--color-link-default);
}
body:not(.CustomLayout) header div.Social a:hover {
  color: var(--color-link-hover);
}
body:not(.CustomLayout) header div.Social a i {
  height: 26px;
  line-height: 30px;
  width: 26px;
  color: var(--color-default, #999);
}
body:not(.CustomLayout) header div.Social a i:hover {
  color: var(--color-hover, #999);
}
body:not(.CustomLayout) header div.Navbar {
  height: var(--header-height);
  align-items: center;
  display: flex;
}
body:not(.CustomLayout) header div.Navbar nav {
  flex: 1;
}
body:not(.CustomLayout) header div.Navbar a.Logo {
  font-size: 0;
}
body:not(.CustomLayout) header div.Navbar a.Logo img.External {
  max-height: 60px;
}
@media only screen and (max-width: 759px) {
  body:not(.CustomLayout) header div.Navbar a.Logo img {
    width: 70%;
  }
}
body:not(.CustomLayout) header div.Navbar div.ExtraContent {
  line-height: 1.5rem;
}
body:not(.CustomLayout) header div.Navbar div.ExtraContent div[data-cms] {
  min-width: 20px;
}
body:not(.CustomLayout) footer {
  position: relative;
  --color-paragraph: var(--color-footer-text, #999);
  color: var(--color-footer-text, #999);
  border-top: 15px solid var(--color-footer-bar);
  background-color: var(--color-footer-bg);
  font-size: 14px;
  clear: both;
  z-index: 1;
}
body:not(.CustomLayout) footer h3 {
  text-transform: uppercase;
  line-height: 28px;
}
@media only screen and (min-width: 1000px) {
  body:not(.CustomLayout) footer h3 {
    padding-left: 32px;
  }
  body:not(.CustomLayout) footer h3::before {
    font-family: FontAwesome;
    font-size: 14px;
    line-height: 28px;
    height: 28px;
    width: 28px;
    text-align: center;
    background-color: var(--color-accent);
    content: "\f111";
    border-radius: 50%;
    left: 15px;
    position: absolute;
    display: inline-block;
    font-weight: bold;
  }
}
body:not(.CustomLayout) footer p {
  margin: 10px 0;
  line-height: 1.5;
}
body:not(.CustomLayout) footer ul {
  line-height: 1.5;
  margin: 20px 0;
}
body:not(.CustomLayout) footer h3:first-child, body:not(.CustomLayout) footer p:first-child, body:not(.CustomLayout) footer ul:first-child {
  margin-top: 0 !important;
}
body:not(.CustomLayout) footer h3:last-child, body:not(.CustomLayout) footer p:last-child, body:not(.CustomLayout) footer ul:last-child {
  margin-bottom: 0 !important;
}
body:not(.CustomLayout) footer a {
  color: var(--color-footer-link, #999);
}
body:not(.CustomLayout) footer a:hover {
  text-decoration: none;
  color: var(--color-footer-link-hover, white);
}
body:not(.CustomLayout) footer div.Columns {
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
}
body:not(.CustomLayout) footer div.Columns div.Column {
  position: relative;
}
@media only screen and (min-width: 1000px) {
  body:not(.CustomLayout) footer div.Columns div.Column {
    width: 25%;
    padding: 0 20px;
  }
  body:not(.CustomLayout) footer div.Columns div.Column:first-child {
    width: 50%;
  }
  body:not(.CustomLayout) footer div.Columns div.Column:first-child img {
    display: block;
    position: relative;
  }
  body:not(.CustomLayout) footer div.Columns div.Column:first-child img.Logo {
    z-index: 49;
    margin-left: 0;
    width: 156px;
  }
  body:not(.CustomLayout) footer div.Columns div.Column:first-child img.Creativita {
    margin-left: -82px;
    margin-top: -60px;
    height: 300px;
  }
  body:not(.CustomLayout) footer div.Columns div.Column::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: #333;
  }
  body:not(.CustomLayout) footer div.Columns div.Column:nth-child(3)::after {
    content: none;
  }
  body:not(.CustomLayout) footer div.Columns div.Column ul li {
    padding: 8px 0 0 28px;
    position: relative;
  }
  body:not(.CustomLayout) footer div.Columns div.Column:nth-child(2) ul {
    -webkit-columns: 60px 2;
    -moz-columns: 60px 2;
    columns: 60px 2;
  }
  body:not(.CustomLayout) footer div.Columns div.Column:nth-child(2) li a::before {
    font-family: FontAwesome;
    font-size: 14px;
    line-height: 16px;
    content: "\f111";
    position: absolute;
    left: 0;
    top: 9px;
    display: inline-block;
  }
  body:not(.CustomLayout) footer div.Columns div.Column:nth-child(2) li a:hover::before {
    color: #999;
    font-family: FontAwesome;
    font-size: 14px;
    line-height: 16px;
    content: "\f111";
    position: absolute;
    left: 0;
    top: 9px;
    display: inline-block;
    font-weight: bold;
  }
  body:not(.CustomLayout) footer div.Columns div.Column:nth-child(3) ul li {
    padding-left: 34px;
    padding-bottom: 8px;
  }
  body:not(.CustomLayout) footer div.Columns div.Column:nth-child(3) ul li i::before {
    font-size: 16px;
    line-height: 28px;
    height: 28px;
    width: 28px;
    text-align: center;
    border-radius: 50%;
    background-color: #666;
    transform: translateY(-50%);
    position: absolute;
    left: -4px;
    top: 50%;
    display: inline-block;
    font-weight: bold;
  }
}
@media only screen and (min-width: 500px) and (max-width: 999px) {
  body:not(.CustomLayout) footer div.Columns div.Column {
    width: 50%;
    text-align: center;
  }
  body:not(.CustomLayout) footer div.Columns div.Column:nth-child(1), body:not(.CustomLayout) footer div.Columns div.Column:nth-child(2) {
    padding: 0 20px;
    margin-bottom: 20px;
  }
  body:not(.CustomLayout) footer div.Columns div.Column:nth-child(3), body:not(.CustomLayout) footer div.Columns div.Column:nth-child(4) {
    padding: 0 20px 0;
  }
  body:not(.CustomLayout) footer div.Columns div.Column::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: #666;
  }
  body:not(.CustomLayout) footer div.Columns div.Column:nth-child(2)::after, body:not(.CustomLayout) footer div.Columns div.Column:nth-child(4)::after {
    content: none;
  }
}
@media only screen and (max-width: 499px) {
  body:not(.CustomLayout) footer div.Columns div.Column {
    width: 100%;
    padding: 0 20px 20px;
    text-align: center;
  }
  body:not(.CustomLayout) footer div.Columns div.Column:first-child img:nth-child(2) {
    margin-left: -42px;
  }
  body:not(.CustomLayout) footer div.Columns div.Column:nth-child(3) {
    padding-bottom: 0;
  }
}
body:not(.CustomLayout) footer div.Columns div.Column div.Social {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
body:not(.CustomLayout) footer div.Columns div.Column div.Social a {
  display: block;
  padding: 0 10px;
}
body:not(.CustomLayout) footer div.Columns div.Column div.Social a:first-child {
  padding-left: 0;
}
body:not(.CustomLayout) footer div.Columns div.Column div.Social a:last-child {
  padding-right: 0;
}
body:not(.CustomLayout) footer div.Columns div.Column div.Social a i {
  background-color: var(--color-accent);
  border-radius: 50%;
  height: 30px;
  line-height: 30px;
  width: 30px;
  color: white;
}
body:not(.CustomLayout) footer div.Columns div.Column div.Social a:hover i {
  background-color: white;
  color: black;
}
body:not(.CustomLayout) footer div.Columns div.Column div.Social div {
  display: flex;
}
body:not(.CustomLayout) footer div.Columns div.Column img {
  max-width: 100%;
}
body:not(.CustomLayout) footer div.Footer__Content img {
  margin: 15px;
}
body:not(.CustomLayout) footer div.OneLine {
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 1000px) {
  body:not(.CustomLayout) footer div.OneLine.Footer--Separator.Columns-1 div.Column::after {
    content: none;
  }
  body:not(.CustomLayout) footer div.OneLine.Footer--Separator.Columns-2 div.Column:nth-child(2)::after, body:not(.CustomLayout) footer div.OneLine.Footer--Separator.Columns-2 div.Column:nth-child(4)::after {
    content: none;
  }
  body:not(.CustomLayout) footer div.OneLine.Footer--Separator.Columns-3 div.Column:nth-child(3)::after {
    content: none;
  }
  body:not(.CustomLayout) footer div.OneLine.Footer--Separator.Columns-4 div.Column:nth-child(4)::after {
    content: none;
  }
}
@media only screen and (min-width: 1000px) {
  body:not(.CustomLayout) footer div.OneLine.Footer--Separator div.Column::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: var(--color-footer-separator, #333);
  }
}
@media only screen and (min-width: 500px) and (max-width: 999px) {
  body:not(.CustomLayout) footer div.OneLine.Footer--Separator div.Column::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: #666;
  }
  body:not(.CustomLayout) footer div.OneLine.Footer--Separator div.Column:nth-child(2)::after, body:not(.CustomLayout) footer div.OneLine.Footer--Separator div.Column:nth-child(4)::after {
    content: none;
  }
}
@media only screen and (min-width: 1000px) {
  body:not(.CustomLayout) footer div.OneLine.Footer--AlignCenter div.Column {
    display: flex;
    justify-content: center;
  }
  body:not(.CustomLayout) footer div.OneLine.Footer--AlignCenter div.Column .TextContainer {
    width: auto;
    display: inline-block;
    text-align: left;
    margin: 0;
  }
}
body:not(.CustomLayout) footer div.OneLine.Columns-1 div.Column {
  width: 100%;
}
body:not(.CustomLayout) footer div.OneLine.Columns-1 div.Column::after {
  display: none;
}
body:not(.CustomLayout) footer div.OneLine.Columns-1.Footer--Separator div.Column {
  padding: 10px 10px;
  border-bottom: 1px solid var(--color-footer-separator, #333);
}
body:not(.CustomLayout) footer div.OneLine.Columns-1.Footer--Separator div.Column.Last-Column {
  border-bottom: none;
}
@media only screen and (min-width: 1000px) {
  body:not(.CustomLayout) footer div.OneLine.Columns-2 div.Column {
    width: 50%;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1000px) {
  body:not(.CustomLayout) footer div.OneLine.Columns-3 div.Column {
    width: 33%;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1000px) {
  body:not(.CustomLayout) footer div.OneLine.Columns-4 div.Column {
    width: 25%;
    margin-bottom: 20px;
  }
}
body:not(.CustomLayout) footer div.OneLine div.Column {
  position: relative;
}
body:not(.CustomLayout) footer div.OneLine div.Column p {
  font-size: 100%;
  font-weight: 400;
}
@media only screen and (min-width: 1000px) {
  body:not(.CustomLayout) footer div.OneLine div.Column {
    padding: 0 20px;
  }
  body:not(.CustomLayout) footer div.OneLine div.Column ul li {
    padding: 8px 0 0 28px;
    position: relative;
  }
}
@media only screen and (min-width: 500px) and (max-width: 999px) {
  body:not(.CustomLayout) footer div.OneLine div.Column {
    text-align: center;
    width: 50%;
  }
  body:not(.CustomLayout) footer div.OneLine div.Column:nth-child(1), body:not(.CustomLayout) footer div.OneLine div.Column:nth-child(2) {
    padding: 0 20px;
    margin-bottom: 20px;
  }
  body:not(.CustomLayout) footer div.OneLine div.Column:nth-child(3), body:not(.CustomLayout) footer div.OneLine div.Column:nth-child(4) {
    padding: 0 20px 0;
  }
}
@media only screen and (max-width: 499px) {
  body:not(.CustomLayout) footer div.OneLine div.Column {
    width: 100%;
    padding: 0 20px 20px;
    text-align: center;
  }
  body:not(.CustomLayout) footer div.OneLine div.Column:nth-child(4) {
    padding-bottom: 0;
  }
}
body:not(.CustomLayout) footer div.OneLine div.Column img {
  max-width: 100%;
}
body:not(.CustomLayout) footer div.ServiceMenu.Extended {
  height: 60px;
  line-height: 60px;
  overflow: hidden;
  width: 100%;
  position: absolute;
  bottom: 80px;
  background-size: contain;
}
body:not(.CustomLayout) footer div.ServiceMenu.Extended div.Wrap::before {
  position: absolute;
  content: "";
  left: -40px;
  right: -40px;
  height: 1px;
  background: top center url(Footer/Separator.jpg) no-repeat;
}
body:not(.CustomLayout) footer div.ServiceMenu.Extended div.Wrap ul {
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
body:not(.CustomLayout) footer div.ServiceMenu.Extended div.Wrap ul li {
  position: relative;
}
body:not(.CustomLayout) footer div.ServiceMenu.Extended div.Wrap ul li a {
  display: block;
  color: #666;
  line-height: 60px;
}
body:not(.CustomLayout) footer div.ServiceMenu.Extended div.Wrap ul li + li {
  padding-left: 40px;
}
body:not(.CustomLayout) footer div.ServiceMenu.Extended div.Wrap ul li + li::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 20px;
  top: 20px;
  left: 20px;
  background-color: #333;
}
body:not(.CustomLayout) footer div.ServiceMenu.Mobile {
  margin-top: 20px;
}
body:not(.CustomLayout) footer div.Image {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  height: 40px;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
  background-position: center;
  background-size: cover;
}

div#InitialCurtain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background: white;
}

div.ErrorsTranslation {
  overflow: auto;
}

a.ScrollTop {
  position: fixed;
  z-index: 5000;
  display: none;
  opacity: 0;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 40px;
  background-color: black;
  color: white;
  bottom: 20px;
  right: 20px;
  border-radius: 10px;
  transition: background 300ms linear;
}
a.ScrollTop:hover {
  background-color: var(--color-accent);
}
@media only screen and (max-width: 759px) {
  a.ScrollTop {
    bottom: 76px;
    right: 20px;
  }
}

@media only screen and (min-width: 760px) {
  .Mobile {
    display: none !important;
  }
}
@media only screen and (max-width: 759px) {
  .Extended {
    display: none !important;
  }
}
@media only screen and (orientation: landscape) {
  .Portrait {
    display: none !important;
  }
}
@media only screen and (orientation: portrait) {
  .Landscape {
    display: none !important;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Reset.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/FontAwesome/regular.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/FontAwesome/_variables.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Layout.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAAC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAaG;EACA;EACA;EACA;EACA;EACA;;;AAGJ;AAAA;EAEI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;AAAA;EAEI;EACA;;;AAGJ;EACI;EACA;;;AC9CJ;AAAA;AAAA;AAAA;AAAA;AAQA;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA,cCgCwB;ED/BxB;;AAIF;AAAA;EAEE;;;AEpBF;EACI;EACA;EACA;;;AAGJ;EACI;;;AAGJ;EACI,aCXQ;EDYR;EACA,OCRS;;;ADWb;EACI;EACA;EACA,WCSe;EDRf;;AAEA;EACI;;AAGJ;EAVJ;IAWQ;;;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;;AAIR;EACI;;;AAIR;EACI;EACA;;AAEA;EACI;;AAGJ;EACI;;;AAIR;EACI;;AAEA;EACI;;AAIA;EACI;;AAGJ;EACI;;AAIR;EACI;IACI;IACA;IACA;IACA,SCjDI;IDkDJ;;EAEA;IACI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAIJ;IACI;IACA;;EAGJ;IACI;IACA;IACA;IACA;;EAGJ;IACI;;;AAMhB;EACI;;AAKI;EACI;;AAKZ;EACI,OCzJM;;;AD8JV;EACI;EACA;EACA;EACA;EACA,SChIO;EDiIP;;AAGI;EADJ;IAEQ;IACA;;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;EACA;;AAEA;EACI;;AAMhB;EACI;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;;AAEA;EACI;;AAGJ;EACI;IACI;;;AAKZ;EACI;;AAEA;EACI;;AAMhB;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAEA;EAJJ;IAKQ;;EAEA;IACI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;;AAKZ;EACI;EACA;;AAGJ;EACI;EACA;;AAIA;EACI;;AAGJ;EACI;;AAIR;EACI;;AAEA;EACI;EACA;;AAIR;EACI;EACA;EACA;;AAEA;EACI;;AAEA;EAHJ;IAIQ;IACA;;EAEA;IACI;;EAEA;IACI;IACA;;EAEA;IACI,SC1Sb;ID2Sa;IACA;;EAGJ;IACI;IACA;IACA;;EAKZ;IACI;IACA;IACA;IACA;IACA;IACA;IACA,YC9VJ;;EDiWA;IACI;;EAIA;IACI;IACA;;EAKJ;IACI;IACA;IACA;;EAKI;IACI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAIA;IACI,OCpY3B;IDqY2B;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EASZ;IACI;IACA;;EAEA;IACI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;;AAOpB;EAjHJ;IAkHQ;IACA;;EAEA;IACI;IACA;;EAGJ;IACI;;EAGJ;IACI;IACA;IACA;IACA;IACA;IACA;IACA,YCjcP;;EDqcO;IACI;;;AAKZ;EA/IJ;IAgJQ;IACA;IACA;;EAGI;IACI;;EAIR;IACI;;;AAIR;EACI;EACA;EACA;;AAEA;EACI;EACA;;AAEA;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAIR;EACI;;AAIR;EACI;;AAMR;EACI;;AAIR;EACI;EACA;EACA;;AAKI;EAEQ;IACI;;EAMA;IACI;;EAMR;IACI;;EAKJ;IACI;;;AASR;EACI;IACI;IACA;IACA;IACA;IACA;IACA;IACA;;;AAIR;EACI;IACI;IACA;IACA;IACA;IACA;IACA;IACA,YCxkBX;;ED4kBW;IACI;;;AAQhB;EACI;IACI;IACA;;EAEA;IACI;IACA;IACA;IACA;;;AAQZ;EACI;;AAEA;EACI;;AAKJ;EACI;EACA;;AAEA;EACI;;AAQR;EADJ;IAEQ;IACA;;;AAOJ;EADJ;IAEQ;IACA;;;AAOJ;EADJ;IAEQ;IACA;;;AAKZ;EACI;;AAEA;EACI;EACA;;AAGJ;EARJ;IASQ;;EAGI;IACI;IACA;;;AAKZ;EAnBJ;IAoBQ;IACA;;EAEA;IACI;IACA;;EAGJ;IACI;;;AAIR;EAjCJ;IAkCQ;IACA;IACA;;EAEA;IACI;;;AAIR;EACI;;AAOR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAII;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAEA;EACI;;AAEA;EACI;EACA,OCvuBf;EDwuBe;;AAGJ;EACI;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA,kBCpvBhB;;AD4vBR;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAKR;EACI;EACA;EACA;EACA;EACA;EACA,SC1uBe;ED2uBf;;;AAGJ;EACI;;;AAGJ;EACI;EACA,SC3vBO;ED4vBP;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,QCnxBoB;EDoxBpB,OCpxBoB;EDqxBpB;EACA;;AAEA;EACI;;AAGJ;EArBJ;IAsBQ;IACA,OC7xBc;;;;ADiyBtB;EACI;IACI;;;AAIR;EACI;IACI;;;AAIR;EACI;IACI;;;AAIR;EACI;IACI%22%7D */
/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
}

.leaflet-container {
	overflow: hidden;
}

.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	-webkit-user-drag: none;
}
	/* Prevents IE11 from highlighting tiles in blue */
	.leaflet-tile::selection {
		background: transparent;
	}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
}

.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
}

.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
}

.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}

	.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
		-ms-touch-action: none;
		touch-action: none;
	}

.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}

	.leaflet-container a {
		-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
	}

.leaflet-tile {
	filter: inherit;
	visibility: hidden;
}

.leaflet-tile-loaded {
	visibility: inherit;
}

.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	z-index: 800;
}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
}

.leaflet-pane {
	z-index: 400;
}

.leaflet-tile-pane {
	z-index: 200;
}

.leaflet-overlay-pane {
	z-index: 400;
}

.leaflet-shadow-pane {
	z-index: 500;
}

.leaflet-marker-pane {
	z-index: 600;
}

.leaflet-tooltip-pane {
	z-index: 650;
}

.leaflet-popup-pane {
	z-index: 700;
}

.leaflet-map-pane canvas {
	z-index: 100;
}

.leaflet-map-pane svg {
	z-index: 200;
}

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
}

.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
}

.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
}

.leaflet-top {
	top: 0;
}

.leaflet-right {
	right: 0;
}

.leaflet-bottom {
	bottom: 0;
}

.leaflet-left {
	left: 0;
}

.leaflet-control {
	float: left;
	clear: both;
}

.leaflet-right .leaflet-control {
	float: right;
}

.leaflet-top .leaflet-control {
	margin-top: 10px;
}

.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
}

.leaflet-left .leaflet-control {
	margin-left: 10px;
}

.leaflet-right .leaflet-control {
	margin-right: 10px;
}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	-moz-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
}

.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
}

.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	transform-origin: 0 0;
}

svg.leaflet-zoom-animated {
	will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	-moz-transition: -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	transition: transform 0.25s cubic-bezier(0,0,0.25,1);
}

.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
}

.leaflet-grab {
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
}

.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
}

.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
}

.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor: -moz-grabbing;
	cursor: grabbing;
}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
}

	.leaflet-marker-icon.leaflet-interactive,
	.leaflet-image-layer.leaflet-interactive,
	.leaflet-pane > svg path.leaflet-interactive,
	svg.leaflet-image-layer.leaflet-interactive path {
		pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
		pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: white;
	outline-offset: 1px;
}

	.leaflet-container a {
		color: #0078A8;
	}

.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
}


/* general typography */
.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
}

	.leaflet-bar a {
		background-color: #fff;
		border-bottom: 1px solid #ccc;
		width: 26px;
		height: 26px;
		line-height: 26px;
		display: block;
		text-align: center;
		text-decoration: none;
		color: black;
	}

	.leaflet-bar a,
	.leaflet-control-layers-toggle {
		background-position: 50% 50%;
		background-repeat: no-repeat;
		display: block;
	}

		.leaflet-bar a:hover,
		.leaflet-bar a:focus {
			background-color: #f4f4f4;
		}

		.leaflet-bar a:first-child {
			border-top-left-radius: 4px;
			border-top-right-radius: 4px;
		}

		.leaflet-bar a:last-child {
			border-bottom-left-radius: 4px;
			border-bottom-right-radius: 4px;
			border-bottom: none;
		}

		.leaflet-bar a.leaflet-disabled {
			cursor: default;
			background-color: #f4f4f4;
			color: #bbb;
		}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
}

	.leaflet-touch .leaflet-bar a:first-child {
		border-top-left-radius: 2px;
		border-top-right-radius: 2px;
	}

	.leaflet-touch .leaflet-bar a:last-child {
		border-bottom-left-radius: 2px;
		border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
	font-size: 22px;
}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
}

.leaflet-control-layers-toggle {
	background-image: url(images/layers.png);
	width: 36px;
	height: 36px;
}

.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(images/layers-2x.png);
	background-size: 26px 26px;
}

.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
}

.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
}

.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
}

.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
}

.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
}

.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
}

.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
}

.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(images/marker-icon.png);
}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
}

.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
}

	.leaflet-control-attribution a {
		text-decoration: none;
	}

		.leaflet-control-attribution a:hover,
		.leaflet-control-attribution a:focus {
			text-decoration: underline;
		}

	.leaflet-control-attribution svg {
		display: inline !important;
	}

.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
}

.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
}

.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	overflow: hidden;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #fff;
	background: rgba(255, 255, 255, 0.5);
}

	.leaflet-control-scale-line:not(:first-child) {
		border-top: 2px solid #777;
		border-bottom: none;
		margin-top: -2px;
	}

		.leaflet-control-scale-line:not(:first-child):not(:last-child) {
			border-bottom: 2px solid #777;
		}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
}

.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
}

.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
}

.leaflet-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
}

	.leaflet-popup-content p {
		margin: 17px 0;
		margin: 1.3em 0;
	}

.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
}

.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;
	margin: -10px auto 0;
	pointer-events: auto;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
}

.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
}

	.leaflet-container a.leaflet-popup-close-button:hover,
	.leaflet-container a.leaflet-popup-close-button:focus {
		color: #585858;
	}

.leaflet-popup-scrolled {
	overflow: auto;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
}

.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;
	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

	.leaflet-tooltip.leaflet-interactive {
		cursor: pointer;
		pointer-events: auto;
	}

.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}

.leaflet-tooltip-top {
	margin-top: -6px;
}

	.leaflet-tooltip-bottom:before,
	.leaflet-tooltip-top:before {
		left: 50%;
		margin-left: -6px;
	}

	.leaflet-tooltip-top:before {
		bottom: 0;
		margin-bottom: -12px;
		border-top-color: #fff;
	}

.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
}

.leaflet-tooltip-left {
	margin-left: -6px;
}

.leaflet-tooltip-right {
	margin-left: 6px;
}

	.leaflet-tooltip-left:before,
	.leaflet-tooltip-right:before {
		top: 50%;
		margin-top: -6px;
	}

.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
}

.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
}

/* Printing */

@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		color-adjust: exact;
	}
}

/*GESTURE HANDLING */
@-webkit-keyframes leaflet-gestures-fadein {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes leaflet-gestures-fadein {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.leaflet-container:after {
	-webkit-animation: leaflet-gestures-fadein 0.8s backwards;
	animation: leaflet-gestures-fadein 0.8s backwards;
	color: #fff;
	font-family: "Roboto", Arial, sans-serif;
	font-size: 22px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 15px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 461;
	pointer-events: none;
}

.leaflet-gesture-handling-touch-warning:after,
.leaflet-gesture-handling-scroll-warning:after {
	-webkit-animation: leaflet-gestures-fadein 0.8s forwards;
	animation: leaflet-gestures-fadein 0.8s forwards;
}

.leaflet-gesture-handling-touch-warning:after {
	content: attr(data-gesture-handling-touch-content);
}

.leaflet-gesture-handling-scroll-warning:after {
	content: attr(data-gesture-handling-scroll-content);
}
div#Loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
}
div#Loader div.Center {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 100001;
}
div#Loader div.Center div.Background {
  position: relative;
  height: 50px;
  width: 50px;
  left: -25px;
  background-color: black;
  opacity: 0.5;
  border-radius: 10px;
}
div#Loader div.Center div.Background div.Image {
  position: absolute;
  height: 50px;
  width: 50px;
}
div#Loader div.Center div.Background.Percentage {
  height: 70px;
}
div#Loader div.Center div.Background.Percentage div.Percentage {
  position: absolute;
  bottom: 0;
  padding-bottom: 5px;
  width: 50px;
  color: white;
  text-align: center;
  font-size: 10px;
}
div#Loader div.Center div.Background a.CancelButton {
  color: white;
  font-size: 18px;
  position: absolute;
  text-align: center;
  display: block;
  height: 50px;
  width: 50px;
  line-height: 50px;
}
div#Loader div.Center div.Background a.CancelButton:hover {
  color: #900;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Loader.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAKA;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA,QAlBH;EAmBG,OApBJ;EAqBI;EACA;EACA;EACA;;AAEA;EACI;EACA,QA5BR;EA6BQ,OA7BR;;AAgCI;EACI;;AAEA;EACI;EACA;EACA;EACA,OAvCZ;EAwCY;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA,QAnDP;EAoDO,OArDR;EAsDQ,aArDP;;AAuDO;EACI,OC/CN%22%7D */
body:not(.CMS) div.LucertolaAnimationAnchor {
  position: fixed;
  width: 100%;
  height: 80%;
  top: 0px;
  left: 0px;
}
body:not(.CMS) div#Animals {
  pointer-events: none;
  z-index: 101;
  position: fixed;
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix( M11=0,965925826, M12=-0,258819045, M21=0.258819045, M22=0.965925826, sizingMethod='auto expand')";
  filter: progid:DXImageTransform.Microsoft.Matrix( M11=0.965925826, M12=-0.258819045, M21=0.258819045, M22=0.965925826, sizingMethod="auto expand");
  zoom: 1;
  -moz-transform: rotate(15deg);
  -ms-transform: rotate(15deg);
  -o-transform: rotate(15deg);
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
}
body:not(.CMS) div#Animals div#Lucertola1 {
  position: absolute;
  top: -497px;
  left: 335px;
}
body:not(.CMS) div#Animals div#Lucertola1 div {
  position: absolute;
  width: 300px;
  height: 340px;
  background: url(/Content/Media8/Portfolio/Lucertola.png) no-repeat 0 0;
}
body:not(.CMS) div#Animals div#Lucertola2 {
  position: absolute;
  top: -1216px;
  left: 862px;
}
body:not(.CMS) div#Animals div#Lucertola2 div {
  position: absolute;
  width: 300px;
  height: 340px;
  background: url(/Content/Media8/Portfolio/Lucertola.png) no-repeat 0 0;
}
body:not(.CMS) div#Animals div#Mosca {
  position: absolute;
  top: -780px;
  left: 735px;
}
body:not(.CMS) div#Animals div#Mosca div {
  position: absolute;
  width: 50px;
  height: 50px;
  background: url(/Content/Media8/Portfolio/Mosca.png) no-repeat 0 0;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///D:/GitHub/MadeTicketWeb/FrontEnd/Content/Theme/LucertolaAnimation.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAEC;EACC;EACA;EACA;EACA;EACA;;AAGD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACC;EACA;EACA;;AAEA;EACC;EACA;EACA;EACA;;AAIF;EACC;EACA;EACA;;AAEA;EACC;EACA;EACA;EACA;;AAIF;EACC;EACA;EACA;;AAEA;EACC;EACA;EACA;EACA%22%7D */
body.Parco.Parco-Mappa #Content div.HeightFilter {
  padding: 0;
  margin-bottom: 20px;
}
body.Parco.Parco-Mappa #Content div.HeightFilter h2 {
  padding: 0;
  font-size: 20px;
  min-height: auto;
  line-height: 1.1em;
}
body.Parco.Parco-Mappa #Content div.HeightFilter div.Meter {
  font-size: 16px;
}
body.Parco.Parco-Mappa #Content div.HeightFilter div.Legend p {
  font-size: 11px;
  line-height: 1.1;
}
@media only screen and (min-width: 760px) {
  body.Parco.Parco-Mappa #Content div.HeightFilter {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 760px) {
  body.Parco.Parco-Mappa #Content .Parco-Mappa {
    display: flex;
  }
  body.Parco.Parco-Mappa #Content .Parco-Mappa #ParkMap {
    width: 75%;
    flex-shrink: 0;
  }
  body.Parco.Parco-Mappa #Content .Parco-Mappa .Filters {
    order: 2;
    width: 25%;
    margin-left: 20px;
  }
}
body.Parco.Parco-Mappa #Content .Filters a.Button {
  height: 45px;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  line-height: 45px;
}
@media only screen and (min-width: 760px) {
  body.Parco.Parco-Mappa #Content .Filters a.Button:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 759px) {
  body.Parco.Parco-Mappa #Content .Filters a.Button:not(:last-child) {
    margin-bottom: 20px;
  }
}
body.Parco.Parco-Mappa #Content .Filters a.Button i {
  margin-right: 10px;
  font-size: 18px;
}
body.Parco.Parco-Mappa #Content .Filters a.Button.Selected {
  box-shadow: inset 0px 15px 30px -10px rgba(0, 0, 0, 0.75);
}
@media only screen and (min-width: 760px) {
  body.Parco.Parco-Mappa #Content .Filters {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 760px) and (max-width: 999px) {
  body.Parco.Parco-Mappa #Content .Filters {
    font-size: 15px;
  }
}
@media only screen and (max-width: 759px) {
  body.Parco.Parco-Mappa #Content .Filters {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  body.Parco.Parco-Mappa #Content .Filters .FilePDF {
    order: 0;
    margin-bottom: 20px;
  }
  body.Parco.Parco-Mappa #Content .Filters a.Button {
    order: 1;
  }
  body.Parco.Parco-Mappa #Content .Filters div.HeightFilter {
    order: 1;
    width: 100%;
  }
}
body.Parco.Parco-Mappa #Content #ParkMap {
  position: relative;
  border: solid 1px #999;
  padding: 6px;
}
body.Parco.Parco-Mappa #Content #ParkMap #Map {
  height: 920px;
  z-index: 1;
}
body.Parco.Parco-Mappa #Content #ParkMap #Map .leaflet-div-icon {
  background: none;
  border: none;
}
body.Parco.Parco-Mappa #Content #ParkMap #Map .leaflet-popup-tip-container,
body.Parco.Parco-Mappa #Content #ParkMap #Map .leaflet-popup-close-button {
  display: none !important;
}
body.Parco.Parco-Mappa #Content #ParkMap #Map .Marker {
  width: 24px;
  height: 24px;
  color: white;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  border: solid 2px white;
}
body.Parco.Parco-Mappa #Content #ParkMap #Map .Marker:hover {
  cursor: pointer;
}
body.Parco.Parco-Mappa #Content #ParkMap #Map .Marker[data-filter*=ristorazione], body.Parco.Parco-Mappa #Content #ParkMap #Map .Marker[data-filter*=servizi] {
  border-radius: unset;
}
body.Parco.Parco-Mappa #Content #ParkMap #Map .Marker[data-filter*=servizi] {
  width: 24px;
  height: 24px;
  font-size: 12px;
  line-height: 20px;
}
body.Parco.Parco-Mappa #Content #ParkMap #Map .Marker[data-filter*=negozi] {
  color: #ffcc33;
}
body.Parco.Parco-Mappa #Content #ParkMap #Map .Marker.AreaChiusa {
  color: #E30514;
  width: 18px;
  height: 18px;
  border: none;
  font-size: 22px;
  line-height: 22px;
  background-color: white !important;
}
body.Parco.Parco-Mappa #Content #ParkMap #Map .Marker.AreaChiusa i {
  position: relative;
  left: -1px;
  top: -1px;
}
body.Parco.Parco-Mappa #Content #ParkMap #Map .Marker.Picnic {
  width: 30px;
  height: 30px;
  border: none;
}
body.Parco.Parco-Mappa #Content #ParkMap #Map .Marker.Picnic img {
  width: 100%;
}
body.Parco.Parco-Mappa #Content #ParkMap #Map .Marker.NuovaAttrazione {
  width: 80px;
  color: white;
  border: none;
  height: unset;
  background: unset !important;
}
body.Parco.Parco-Mappa #Content #ParkMap #Map .Marker.NuovaAttrazione img {
  width: 100%;
}
body.Parco.Parco-Mappa #Content #ParkMap #Map .Marker.Gioco {
  content: "";
  border: unset;
  width: 0;
  height: 0;
  font-size: 0;
  position: relative;
  background-color: unset !important;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #1E9CD7;
}
body.Parco.Parco-Mappa #Content #ParkMap #Map .Marker.Gioco::before {
  width: 0;
  height: 0;
  left: 0;
  top: 0;
  color: unset;
  content: " ";
  display: block;
  position: absolute;
  background-color: unset !important;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 23px solid white;
  transform: translate(-19px, -50%);
  z-index: -1;
}
body.Parco.Parco-Mappa #Content #ParkMap .Zoom {
  border-radius: 4px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 40;
}
body.Parco.Parco-Mappa #Content #ParkMap .Zoom button {
  padding: 0;
  color: #000;
  display: block;
  font-weight: bold;
  text-align: center;
  border: none;
  background-color: #fff;
  margin: 1px;
  width: 25px;
  height: 25px;
  outline: none;
}
body.Parco.Parco-Mappa #Content #ParkMap .Zoom button:hover:not(.Disabled) {
  background: #0054a5;
  color: white;
}
body.Parco.Parco-Mappa #Content #ParkMap .Zoom button.Disabled {
  color: #999;
}
@media only screen and (min-width: 600px) {
  body.Parco.Parco-Mappa #Content #ParkMap > .MarkerPopup {
    display: none !important;
  }
}
@media only screen and (max-width: 599px) {
  body.Parco.Parco-Mappa #Content #ParkMap #Map .MarkerPopup {
    display: none !important;
  }
  body.Parco.Parco-Mappa #Content #ParkMap > .MarkerPopup:not(.Open) {
    display: none !important;
  }
}
@media only screen and (max-width: 599px) {
  body.Parco.Parco-Mappa #Content #ParkMap .MarkerPopup {
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 100002;
    top: 0% !important;
    left: 0 !important;
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: auto;
    overflow-y: auto;
  }
  body.Parco.Parco-Mappa #Content #ParkMap .MarkerPopup .Container {
    flex-basis: 100%;
  }
}
@media only screen and (min-width: 600px) {
  body.Parco.Parco-Mappa #Content #ParkMap .MarkerPopup .Container {
    max-width: 450px;
  }
}
body.Parco.Parco-Mappa #Content #ParkMap .MarkerPopup .Close {
  position: absolute;
  right: 10px;
  top: 10px;
}
body.Parco.Parco-Mappa #Content #ParkMap .MarkerPopup .Close:hover {
  cursor: pointer;
}
@media only screen and (max-width: 759px) {
  body.Parco.Parco-Mappa #Content #ParkMap .MarkerPopup .Close span.fi::before {
    font-size: 28px;
  }
}
body.Parco.Parco-Mappa #Content #ParkMap .MarkerPopup .Container {
  padding: 10px;
  position: relative;
  background-color: white;
  border: 1px solid #999;
  box-shadow: rgba(0, 0, 0, 0.25) 2px 2px 2px;
}
body.Parco.Parco-Mappa #Content #ParkMap .MarkerPopup .Container a:not(.Close) {
  color: inherit;
}
body.Parco.Parco-Mappa #Content #ParkMap .MarkerPopup .Container a:not(.Close):hover {
  text-decoration: none;
}
body.Parco.Parco-Mappa #Content #ParkMap .MarkerPopup .Container h2 {
  margin: 0 0 10px 0;
  color: #ff9900;
  text-transform: capitalize;
}
body.Parco.Parco-Mappa #Content #ParkMap .MarkerPopup .Container h2 a {
  color: inherit;
  display: inline-block;
}
body.Parco.Parco-Mappa #Content #ParkMap .MarkerPopup .Container h2 a:hover {
  color: #0054a5;
}
body.Parco.Parco-Mappa #Content #ParkMap .MarkerPopup .Container .Row {
  display: flex;
  flex-flow: row wrap;
  margin: -10px -10px 0 -10px;
}
body.Parco.Parco-Mappa #Content #ParkMap .MarkerPopup .Container .Row .Photo, body.Parco.Parco-Mappa #Content #ParkMap .MarkerPopup .Container .Row .Content {
  margin: 10px 10px 0 10px;
}
body.Parco.Parco-Mappa #Content #ParkMap .MarkerPopup .Container .Row .Photo {
  height: 150px;
  max-width: unset !important;
}
body.Parco.Parco-Mappa #Content #ParkMap .MarkerPopup .Container .Row .Content {
  flex-basis: 220px;
  flex-grow: 1;
}
body.Parco.Parco-Mappa #Content #ParkMap .MarkerPopup .Container .Row .Content .More {
  color: #ff9900;
  float: right;
}
body.Parco.Parco-Mappa #Content #ParkMap .MarkerPopup .Container .Row .Content .More:hover {
  text-decoration: none;
  color: #0054a5;
}
body.Parco.Parco-Mappa #Content #ParkMap .MarkerPopup .Container .Attrazioni {
  margin: 0;
}
body.Parco.Parco-Mappa #Content #ParkMap .MarkerPopup .Container .Attrazioni .LeftBlock, body.Parco.Parco-Mappa #Content #ParkMap .MarkerPopup .Container .Attrazioni .RightBlock {
  min-height: 40px;
  padding: 0 15px;
}
body.Parco.Parco-Mappa #Content #ParkMap .MarkerPopup .Container .Attrazioni .LeftBlock {
  flex: 255 1 14em;
}
body.Parco.Parco-Mappa #Content #ParkMap .MarkerPopup .Container .Attrazioni .RightBlock i {
  zoom: 0.8;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Mappa.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAGI;EACI;EACA,eC6BkB;;AD3BlB;EACI;EACA;EACA;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;;AAGJ;EApBJ;IAqBQ,eCSgB;;;ADLxB;EACI;IACI;;EAEA;IACI;IACA;;EAGJ;IACI;IACA;IACA,aCPY;;;ADapB;EACI;EACA;EACA;EACA;EACA;;AAGI;EADJ;IAEQ,eCtBQ;;;ADyBZ;EALJ;IAMQ,eCzBM;;;AD6Bd;EACI;EACA;;AAGJ;EACI;;AAIR;EA5BJ;IA6BQ;IACA,eC1CgB;;;AD4ChB;EAhCR;IAiCY;;;AAIR;EArCJ;IAsCQ;IACA;IACA,eCnDc;;EDqDd;IACI;IACA,eCvDU;;ED0Dd;IACI;;EAGJ;IACI;IACA;;;AAKZ;EACI;EACA;EACA;;AAEA;EACI;EACA;;AAEA;EACI;EACA;;AAGJ;AAAA;EAEI;;AAGJ;EAGI,OAFc;EAGd,QAHc;EAId;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EAEI;;AAGJ;EAGI,OAFc;EAGd,QAHc;EAId;EACA;;AAGJ;EACI,OCpIL;;ADuIC;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAIR;EACI;EACA;EACA;;AAEA;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAIR;EAGI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAMhB;EACI;EACA;EACA;EACA;EACA;;AACA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI,YCvOP;EDwOO;;AAGJ;EACI,OCrPP;;AD0PL;EACI;IACI;;;AAIR;EACI;IACI;;EAGJ;IACI;;;AAKJ;EADJ;IAEQ;IACA,SC9NF;ID+NE;IACA;IACA;IACA;IACA;IAEA;IACA;IACA;IACA;IACA;;EAEA;IACI;;;AAIR;EACI;IACI;;;AAIR;EACI;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;IACI;;;AAKZ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAEA;EACI;;AAIR;EACI;EACA,OClTL;EDmTK;;AAEA;EACI;EACA;;AAEA;EACI,OCrUf;;AD0UG;EACI;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAEA;EACI,OClVb;EDmVa;;AAEA;EACI;EACA,OClWnB;;ADwWG;EACI;;AAEA;EACI;EACA;;AAGJ;EACI;;AAIA;EACI%22%7D */
div.Matematici {
  display: block;
  position: absolute;
  bottom: 20px;
  right: 20px;
  height: 8px;
  cursor: pointer;
  z-index: 9998;
}
div.Matematici a {
  height: 0 !important;
  line-height: 0 !important;
}
div.Matematici a span {
  position: absolute;
  display: inline-block;
  width: 8px;
  height: 8px;
  background: url(Matematici/Matematici.Black.png) no-repeat;
  color: white !important;
}
div.Matematici a span.ByMatematici {
  width: 100px;
}
div.Matematici a span.By {
  width: 0;
}
div.Matematici a span.M {
  background-position: -12px 0;
}
div.Matematici a span.A {
  background-position: -20px 0;
}
div.Matematici a span.T {
  background-position: -28px 0;
}
div.Matematici a span.E {
  background-position: -36px 0;
}
div.Matematici a span.I {
  background-position: -44px 0;
}
div.Matematici a span.C {
  background-position: -52px 0;
}
div.Matematici.White a span {
  background-image: url(Matematici/Matematici.White.png);
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Matematici.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA,SC0CS;;ADxCT;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAKZ;EACI%22%7D */
nav > div.Menu > ul {
  font-size: 15px;
}
nav > div.Menu > ul li.Item {
  display: block;
}
nav > div.Menu > ul li.Item .Item {
  color: var(--color-menu-link-default, black);
  white-space: nowrap;
  font-weight: normal;
  display: block;
}
nav > div.Menu > ul li.Item .Item i {
  color: var(--color-menu-link-default, #666);
}
nav > div.Menu > ul li.Item .Item:hover .fa-lock-alt::before {
  content: "\f3c2" !important;
}
nav > div.Menu > ul li.Item span.Item {
  cursor: default;
}
nav > div.Menu > ul li.Item a.Item {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
nav > div.Menu > ul li.Item a.Item:hover, nav > div.Menu > ul li.Item a.Item.Selected {
  color: var(--color-menu-link-hover, var(--color-accent));
}
nav > div.Menu > ul li.Item .SubMenu {
  display: none;
  text-transform: unset;
  background-color: white;
}
nav > div.Menu > ul li.Item .SubMenu li {
  position: relative;
  background: none;
  white-space: nowrap;
  line-height: 40px;
  height: 40px;
}
nav > div.Menu > ul li.Item .SubMenu li a {
  display: block;
  color: var(--color-submenu-link-default, #666);
}
nav > div.Menu > ul li.Item .SubMenu li a:hover {
  text-decoration: none;
  color: var(--color-submenu-link-hover, var(--color-accent));
}
nav > div.Menu > ul li.Item.Selected span.Item i {
  color: var(--color-menu-link-hover, var(--color-accent));
}
nav > div.Menu > ul li.Item.Selected span.Item i.fa-lock-alt::before {
  content: "\f3c2" !important;
}

body:not(.HamburgerMenu) #MenuButton {
  display: none;
}
body:not(.HamburgerMenu) nav.Navbar--TopIndicator > div.Menu > ul > li.Item:hover::before, body:not(.HamburgerMenu) nav.Navbar--TopIndicator > div.Menu > ul > li.Item.Selected::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid var(--color-menu-link-hover);
  transform: translate(-50%, 0);
}
body:not(.HamburgerMenu) nav.Navbar--TopIndicator .SubMenu:not(.Language) {
  border: unset;
  clip-path: polygon(0 10px, calc(100% - 20px - var(--indicator-offset, 0px)) 10px, calc(100% - 10px - var(--indicator-offset, 0px)) 0px, calc(100% - var(--indicator-offset, 0px)) 10px, 100% 10px, 100% 100%, 0 100%);
}
body:not(.HamburgerMenu) nav.Navbar--TopIndicator .SubMenu:not(.Language)::before {
  inset: 0;
  content: " ";
  z-index: -1;
  position: absolute;
  background: #ccc;
}
body:not(.HamburgerMenu) nav.Navbar--TopIndicator .SubMenu:not(.Language)::after {
  z-index: -1;
  content: " ";
  background: white;
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  clip-path: polygon(0 10px, calc(100% - 17px - var(--indicator-offset, 0px)) 10px, calc(100% - 10px - var(--indicator-offset, 0px) + 1.85px) 1px, calc(100% - 0px - var(--indicator-offset, 0px) + 1px) 10px, 100% 10px, 100% 100%, 0 100%);
}
body:not(.HamburgerMenu) nav.Navbar--CircleIndicator ul.SubMenu {
  right: 50%;
  padding: 20px 0;
  margin-top: 20px;
  border-radius: 5px;
  transform: translateX(50%);
}
@media only screen and (min-width: 760px) {
  body:not(.HamburgerMenu) nav.Navbar--CircleIndicator ul.SubMenu {
    border: unset;
    top: calc(var(--header-height) / 2 + 20px);
    box-shadow: rgba(0, 0, 0, 0.15) 0 0 4px 1px;
  }
}
body:not(.HamburgerMenu) nav.Navbar--CircleIndicator ul.SubMenu:not(.Language)::before, body:not(.HamburgerMenu) nav.Navbar--CircleIndicator ul.SubMenu:not(.Language)::after {
  left: 50%;
  top: -17px;
  width: 20px;
  height: 20px;
  content: " ";
  position: absolute;
  border-radius: 50%;
  border: 5px solid white;
  transform: translateX(-50%);
}
body:not(.HamburgerMenu) nav.Navbar--CircleIndicator ul.SubMenu:not(.Language)::before {
  background-color: var(--circle-color);
}
body:not(.HamburgerMenu) nav.Navbar--CircleIndicator ul.SubMenu:not(.Language)::after {
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 4px 1px;
  clip-path: polygon(-100% 60%, 200% 60%, 200% 200%, -100% 200%);
}
body:not(.HamburgerMenu) nav > div.Menu > ul {
  padding-right: 0;
  display: block !important;
  float: right;
}
body:not(.HamburgerMenu) nav > div.Menu > ul > li.Item {
  height: var(--header-height);
  line-height: var(--header-height);
  float: left;
  position: relative;
}
body:not(.HamburgerMenu) nav > div.Menu > ul > li.Item > .Item {
  padding: 0 10px 0 10px;
}
body:not(.HamburgerMenu) nav > div.Menu > ul > li.Item > .Item > .fa-angle-down {
  display: none;
}
body:not(.HamburgerMenu) nav > div.Menu > ul > li.Item > .Item span.Language {
  padding: 7px 0 5px 10px;
  background-color: #666;
  color: #ccc;
  position: relative;
}
body:not(.HamburgerMenu) nav > div.Menu > ul > li.Item > .Item span.Language i {
  color: #ccc;
  position: relative;
  top: 0;
  height: 100%;
  line-height: 1em;
  padding: 5px 10px;
  border-left: solid 1px #777;
  margin-left: 10px;
  background-color: #666;
}
body:not(.HamburgerMenu) nav > div.Menu > ul > li.Item .SubMenu {
  position: absolute;
  z-index: 1510;
  top: calc(var(--header-height) + 20px);
  padding: 20px 0;
  border: solid 1px #ccc;
  padding-top: 11px !important;
  padding-bottom: 11px !important;
}
body:not(.HamburgerMenu) nav > div.Menu > ul > li.Item .SubMenu.Set--Right {
  right: 15px;
}
body:not(.HamburgerMenu) nav > div.Menu > ul > li.Item .SubMenu ul {
  overflow-y: auto;
  margin-right: 1px;
  padding-top: 10px;
  padding-bottom: 5px;
  max-height: inherit;
}
body:not(.HamburgerMenu) nav > div.Menu > ul > li.Item .SubMenu:not(.Language) a {
  position: relative;
  display: block;
  padding-left: 20px;
  padding-right: 40px;
  transition: padding 0.3s linear;
  position: relative;
}
body:not(.HamburgerMenu) nav > div.Menu > ul > li.Item .SubMenu:not(.Language) a::before {
  content: "\f138";
  font-family: FontAwesome;
  position: absolute;
  left: 0px;
  height: 20px;
  width: 20px;
  transition: all 0.3s linear;
  opacity: 0;
}
body:not(.HamburgerMenu) nav > div.Menu > ul > li.Item .SubMenu:not(.Language) a:hover {
  padding-left: 40px;
  padding-right: 20px;
}
body:not(.HamburgerMenu) nav > div.Menu > ul > li.Item .SubMenu:not(.Language) a:hover::before {
  left: 20px;
  opacity: 1;
}
body:not(.HamburgerMenu) nav > div.Menu > ul > li.Item .SubMenu.Language {
  top: 54px;
  padding: 0;
  width: 100%;
  padding: 20px 0;
  transform: translateX(0%);
}
@media only screen and (min-width: 760px) {
  body:not(.HamburgerMenu) nav > div.Menu > ul > li.Item .SubMenu.Language {
    top: 90px;
    border: unset;
    box-shadow: rgba(0, 0, 0, 0.15) 0 0 4px 1px;
  }
}
body:not(.HamburgerMenu) nav > div.Menu > ul > li.Item .SubMenu.Language .Item {
  float: none;
  line-height: 1;
  height: unset;
  padding: 0 !important;
}
body:not(.HamburgerMenu) nav > div.Menu > ul > li.Item .SubMenu.Language .Item a {
  display: block;
  padding: 5px 10px !important;
}
body:not(.HamburgerMenu) nav > div.Menu > ul > li.Item .SubMenu.Language .Item a:hover {
  background: #ccc;
  color: white;
}
body:not(.HamburgerMenu) nav > div.Menu > ul > li.Item .SubMenu li.BottomDivider {
  height: 60px;
}
body:not(.HamburgerMenu) nav > div.Menu > ul > li.Item .SubMenu li.BottomDivider::after {
  height: 1px;
  content: " ";
  display: block;
  margin-left: 20px;
  margin-top: 10px;
  width: calc(100% - 40px);
  background-color: #1f8fcf;
}
body:not(.HamburgerMenu) nav > div.Menu > ul > li.Item:last-child .Item {
  padding: 0 20px;
}
body:not(.HamburgerMenu) nav > div.Menu > ul > li.Item:last-child .Item::after {
  content: none;
}
body:not(.HamburgerMenu) nav > div.Menu > ul > li.Item:first-child .Item::after {
  content: none;
}
body:not(.HamburgerMenu) nav > div.Menu > ul > li.Item.Sale {
  margin-left: 20px;
}
body:not(.HamburgerMenu) nav > div.Menu > ul > li.Item.Sale span.Item {
  display: inline;
  font-weight: bold;
  padding: 10px 50px;
  border-radius: 10px;
  color: white !important;
  background-color: var(--color-brand);
}
body:not(.HamburgerMenu) nav > div.Menu > ul > li.Item.Sale .SubMenu {
  /*/ / first row indicator &::before {
      background-color: var(--color-brand);
  }

  */
}
body:not(.HamburgerMenu) nav > div.Menu > ul > li.Item.Sale .SubMenu li.BottomDivider::after {
  background-color: var(--color-brand);
}
body:not(.HamburgerMenu) nav > div.Menu > ul > li.Item.Sale .SubMenu a:hover {
  color: var(--color-brand);
}

body.HamburgerMenu #MenuButton {
  right: 20px;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
}
body.HamburgerMenu nav > div.Menu {
  display: none;
  position: absolute;
  margin-bottom: 10px;
  left: 0;
  right: 0;
  z-index: 1510;
  top: var(--header-height);
}
body.HamburgerMenu nav > div.Menu > ul {
  display: flex;
  flex-direction: column;
}
body.HamburgerMenu nav > div.Menu > ul li.Item {
  order: 1;
  line-height: 46px;
  border-bottom: solid 1px #ccc;
  text-align: center;
  background: white;
  text-transform: uppercase;
}
body.HamburgerMenu nav > div.Menu > ul li.Item.Left {
  display: none;
}
body.HamburgerMenu nav > div.Menu > ul li.Item.Sale {
  order: 0;
  border-top: solid 1px #ccc;
}
body.HamburgerMenu nav > div.Menu > ul li.Item.Sale a.Item, body.HamburgerMenu nav > div.Menu > ul li.Item.Sale span.Item {
  color: var(--color-brand);
}
body.HamburgerMenu nav > div.Menu > ul li.Item.Settings {
  order: 2;
}
body.HamburgerMenu nav > div.Menu > ul li.Item i {
  color: var(--color-submenu-link-default, black);
}
body.HamburgerMenu nav > div.Menu > ul li.Item a.Item, body.HamburgerMenu nav > div.Menu > ul li.Item span.Item {
  margin: 0;
  width: 100%;
  padding: 0 20px;
  color: var(--color-submenu-link-default, black);
}
body.HamburgerMenu nav > div.Menu > ul li.Item a.Item::after, body.HamburgerMenu nav > div.Menu > ul li.Item span.Item::after {
  display: none;
}
body.HamburgerMenu nav > div.Menu > ul li.Item .SubMenu {
  border-bottom: solid 1px #ccc;
}
body.HamburgerMenu nav > div.Menu > ul li.Item .SubMenu li {
  border-top: solid 1px #ccc;
  text-transform: none;
}
body.HamburgerMenu nav > div.Menu > ul li.Item .SubMenu li a {
  width: 100%;
  padding: 0 20px;
  text-decoration: none !important;
  background-color: #efefef;
}

body.Site14 header {
  border-bottom: 1px solid var(--color-brand);
}
@media only screen and (min-width: 760px) {
  body.Site14 header div.Navbar {
    max-width: unset;
    padding: 0 30px;
  }
}
body.Site14 header div.Language {
  justify-content: center;
  position: relative;
  display: flex;
  gap: 20px;
}
body.Site14 header div.Language div.Language__Item {
  position: relative;
}
body.Site14 header div.Language div.Language__Item a {
  transition: 0.4s;
  color: var(--color-menu-link-default);
}
body.Site14 header div.Language div.Language__Item a:hover {
  color: var(--color-menu-link-hover);
  text-decoration: unset;
}
body.Site14 header div.Language div.Language__Item:not(:first-child)::before {
  border-left: 1px solid #7a7a7a;
  transform: translateY(-50%);
  position: absolute;
  display: block;
  content: " ";
  height: 1rem;
  left: -10px;
  top: 50%;
}
body.Site14:not(.HamburgerMenu) header div.Navbar div.Logo__Container {
  max-width: 30%;
}
body.Site14:not(.HamburgerMenu) header div.Navbar div.Language {
  padding-right: 25px;
  max-width: 10%;
}
body.Site14:not(.HamburgerMenu) header div.Navbar div.ExtraContent {
  padding-left: 25px;
  max-width: 20%;
}
body.Site14:not(.HamburgerMenu) nav > div.Menu {
  display: flex !important;
  justify-content: center;
}
body.Site14:not(.HamburgerMenu) nav > div.Menu a {
  transition: 0.4s;
}

body.Site4 nav > div.Menu > ul li.Item .Item {
  font-weight: normal;
}
body.Site4:not(.HamburgerMenu) nav > div.Menu > ul > li.Item {
  --circle-color: var(--color-accent);
}
body.Site4:not(.HamburgerMenu) nav > div.Menu > ul > li.Item > .Item {
  padding: 0 20px;
}
body.Site4:not(.HamburgerMenu) nav > div.Menu > ul > li.Item.Selected span.Item {
  color: var(--color-menu-link-hover, var(--color-accent));
}
body.Site4:not(.HamburgerMenu) nav > div.Menu > ul > li.Item.Sale {
  --circle-color: var(--color-brand);
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Menu.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAKA;EACI;;AAEA;EACI;;AAEA;EACI;EACA;EACA;EACA;;AAEA;EACI;;AAIA;EACI;;AAKZ;EACI;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;;AAIR;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAEA;EACI;EACA;;AAOZ;EACI;;AAEA;EACI;;;AAWhB;EACI;;AAMQ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAMR;EACI;EAEA;;AAEA;EACI;EACA;EACA;EACA;EACA,YCzGF;;AD4GF;EACI;EACA;EACA;EACA;EACA,KA1CO;EA2CP,MA3CO;EA4CP,OA5CO;EA6CP,QA7CO;EA8CP;;AAOR;EACI;EACA;EACA;EACA;EACA;;AAEA;EAPJ;IAQQ;IACA;IACA;;;AAKA;EAEI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;;AAMhB;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAEA;EACI;;AAEA;EACI;;AAGJ;EACI;EACA,kBCtLP;EDuLO,OCzLN;ED0LM;;AAEA;EACI,OC7LV;ED8LU;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBCnMX;;ADwMD;EACI;EACA,SCtKP;EDuKO;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAIA;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAEA;EACI;EACA;;AAMhB;EACI;EACA;EACA;EACA;EACA;;AAEA;EAPJ;IAQQ;IACA;IACA;;;AAGJ;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAEA;EACI,YCvRlB;EDwRkB;;AAMhB;EACI;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA,kBC/RV;;ADqSE;EACI;;AAEA;EACI;;AAMR;EACI;;AAIR;EACI,aCrSQ;;ADuSR;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;AACI;AAAA;AAAA;;AAAA;;AAMA;EACI;;AAGJ;EACI;;;AAUxB;EACI,OCvUoB;EDwUpB;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA,SCtUK;EDuUL;;AAGJ;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;;AAEA;EACI;;AAIR;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;EACA;;AAEA;EACI;;AAIR;EACI;;AAEA;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;;;AAUpB;EACI;;AAGI;EADJ;IAEQ;IACA;;;AAIR;EACI;EACA;EACA;EACA;;AAEA;EACI;;AAEA;EACI;EACA;;AAEA;EACI;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AASJ;EACI;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAKZ;EACI;EACA;;AAEA;EACI;;;AAOZ;EACI;;AAIA;EACI;;AAEA;EACI;;AAKA;EACI;;AAIR;EACI%22%7D */
@charset "UTF-8";
.Button {
  position: relative;
  display: inline-block;
  padding: 5px 20px;
  background-color: var(--color-button-bg-default);
  color: var(--color-button-link-default) !important;
  text-decoration: none !important;
  font-size: 15px;
  line-height: 1.5;
}
.Button i {
  color: var(--color-button-link-default);
  transform: translateY(-50%);
  position: absolute;
  text-align: center;
  font-size: 22px;
  right: 5px;
  top: 50%;
}
.Button i.fa-fw {
  right: 3px;
}
.Button:hover, .Button.Selected {
  cursor: pointer;
  color: var(--color-button-link-hover) !important;
  border-color: var(--color-button-bg-hover);
  background-color: var(--color-button-bg-hover);
}
.Button.Button--Outline {
  background-color: white;
  color: var(--color-button-bg-default) !important;
  border: 1px solid var(--color-button-bg-default) !important;
}
.Button.Button--Outline:hover, .Button.Button--Outline.Selected {
  color: white !important;
  background-color: var(--color-button-bg-hover);
  border: 1px solid var(--color-button-bg-default) !important;
}
.Button.Button--Small {
  line-height: 1.5;
  font-size: 0.875rem;
}
.Button.Button--Small.Icon i {
  right: 10px;
  font-size: 0.875rem;
}
.Button.Icon {
  border: none;
  padding-right: 50px;
}
.Button.Icon i {
  color: var(--color-button-link-hover);
}
.Button.Icon::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 100%;
  top: 0;
  right: 0;
  background-color: var(--color-button-bg-hover);
  border-left: solid 1px white;
}
.Button.Inverted {
  background-color: var(--color-button-bg-hover);
  color: var(--color-button-link-hover) !important;
}
.Button.Inverted:hover {
  color: var(--color-button-link-deafult) !important;
  background-color: var(--color-button-link-default);
}
.Button.Inverted.Icon::before {
  background-color: var(--color-button-bg-default);
}
.Button + .Button {
  margin-left: 20px;
}
.Button.Right {
  float: right;
  margin: 30px 0;
}
.Button.FullWidth {
  width: 100%;
}

div#Content .Buttons {
  display: flex;
  gap: var(--gap);
  flex-wrap: wrap;
  justify-content: flex-end;
}
div#Content .Buttons .Button {
  margin-left: 0;
  padding-left: var(--gap);
  padding-right: var(--gap);
}
@media only screen and (min-width: 760px) {
  div#Content .Buttons {
    --gap: 20px;
  }
}
@media only screen and (max-width: 759px) {
  div#Content .Buttons {
    --gap: 10px;
    justify-content: flex-start;
  }
  div#Content .Buttons .Button {
    text-align: center;
    width: calc(50% - var(--gap) / 2);
  }
}

form div.Group, .Module div.Group {
  display: inline-block;
  padding-bottom: 10px;
  padding-right: 10px;
  vertical-align: top;
}
form div.Group.Clear, .Module div.Group.Clear {
  clear: left;
}
form div.Group.FullWidth, .Module div.Group.FullWidth {
  width: 100%;
  display: block;
  padding-right: 0;
}
form div.Group input, form div.Group select, form div.Group textarea, form div.Group div.CheckBox, .Module div.Group input, .Module div.Group select, .Module div.Group textarea, .Module div.Group div.CheckBox {
  margin: 3px 0 0 0;
}
form div.Group input[readonly], form div.Group input[disabled], form div.Group select[readonly], form div.Group select[disabled], form div.Group textarea[readonly], form div.Group textarea[disabled], form div.Group div.CheckBox[readonly], form div.Group div.CheckBox[disabled], .Module div.Group input[readonly], .Module div.Group input[disabled], .Module div.Group select[readonly], .Module div.Group select[disabled], .Module div.Group textarea[readonly], .Module div.Group textarea[disabled], .Module div.Group div.CheckBox[readonly], .Module div.Group div.CheckBox[disabled] {
  opacity: 1;
  color: #666;
  background-color: #efefef;
}
@media only screen and (max-width: 399px) {
  form div.Group:not(.Small), .Module div.Group:not(.Small) {
    width: 100%;
    float: none;
    padding-right: 0;
  }
  form div.Group:not(.Small) input:not(input[type=radio]), form div.Group:not(.Small) select, .Module div.Group:not(.Small) input:not(input[type=radio]), .Module div.Group:not(.Small) select {
    width: 100%;
  }
}
form div.Group div.DatePicker, .Module div.Group div.DatePicker {
  display: block;
}
form .LabelsCounter, .Module .LabelsCounter {
  counter-reset: label;
}
form label, .Module label {
  font-size: 13px;
  margin: 0 0 5px 0;
  display: inline-block;
}
form label.Counter, .Module label.Counter {
  counter-increment: label;
}
form label.Counter:after, .Module label.Counter:after {
  display: inline;
  content: " n° " counter(label);
}
form span.field-validation-error, .Module span.field-validation-error {
  padding-left: 5px;
  color: #900;
  font-size: 13px;
}
form input[type=text], form input[type=password], form input[type=email], form input[type=datetime], form input[type=file], form input[type=time], form input[type=datetime-local], form select, form textarea, .Module input[type=text], .Module input[type=password], .Module input[type=email], .Module input[type=datetime], .Module input[type=file], .Module input[type=time], .Module input[type=datetime-local], .Module select, .Module textarea {
  font-size: 15px;
  display: block;
  border-radius: 5px;
  border: solid 1px #ccc;
  background: white;
  width: 100%;
  padding: 2px 4px;
  height: 34px;
  outline: none;
}
@media only screen and (min-width: 760px) {
  form input[type=text], form input[type=password], form input[type=email], form input[type=datetime], form input[type=file], form input[type=time], form input[type=datetime-local], form select, form textarea, .Module input[type=text], .Module input[type=password], .Module input[type=email], .Module input[type=datetime], .Module input[type=file], .Module input[type=time], .Module input[type=datetime-local], .Module select, .Module textarea {
    font-family: var(--font-primary, MyriadPro, sans-serif);
  }
}
@media only screen and (max-width: 759px) {
  form input[type=text], form input[type=password], form input[type=email], form input[type=datetime], form input[type=file], form input[type=time], form input[type=datetime-local], form select, form textarea, .Module input[type=text], .Module input[type=password], .Module input[type=email], .Module input[type=datetime], .Module input[type=file], .Module input[type=time], .Module input[type=datetime-local], .Module select, .Module textarea {
    font-family: Arial, sans-serif;
  }
}
form input[type=text][readonly], form input[type=text][disabled], form input[type=password][readonly], form input[type=password][disabled], form input[type=email][readonly], form input[type=email][disabled], form input[type=datetime][readonly], form input[type=datetime][disabled], form input[type=file][readonly], form input[type=file][disabled], form input[type=time][readonly], form input[type=time][disabled], form input[type=datetime-local][readonly], form input[type=datetime-local][disabled], form select[readonly], form select[disabled], form textarea[readonly], form textarea[disabled], .Module input[type=text][readonly], .Module input[type=text][disabled], .Module input[type=password][readonly], .Module input[type=password][disabled], .Module input[type=email][readonly], .Module input[type=email][disabled], .Module input[type=datetime][readonly], .Module input[type=datetime][disabled], .Module input[type=file][readonly], .Module input[type=file][disabled], .Module input[type=time][readonly], .Module input[type=time][disabled], .Module input[type=datetime-local][readonly], .Module input[type=datetime-local][disabled], .Module select[readonly], .Module select[disabled], .Module textarea[readonly], .Module textarea[disabled] {
  opacity: 1;
  color: #666;
  background-color: #efefef;
}
form input[type=text]:focus, form input[type=password]:focus, form input[type=email]:focus, form input[type=datetime]:focus, form input[type=file]:focus, form input[type=time]:focus, form input[type=datetime-local]:focus, form select:focus, form textarea:focus, .Module input[type=text]:focus, .Module input[type=password]:focus, .Module input[type=email]:focus, .Module input[type=datetime]:focus, .Module input[type=file]:focus, .Module input[type=time]:focus, .Module input[type=datetime-local]:focus, .Module select:focus, .Module textarea:focus {
  border-color: #0099cc;
}
form textarea, .Module textarea {
  height: unset;
}
form div.FinalError, .Module div.FinalError {
  display: none;
  margin: 20px 0 10px;
  padding: 7px 10px;
  background: #fcc;
  font-size: 14px;
}
form div.FinalError::before, .Module div.FinalError::before {
  font-family: FontAwesome;
  content: "\f071";
  margin-right: 10px;
}
form label.has-error, .Module label.has-error {
  color: #900;
}
form span.ErrorPlaceholder, form .Error, .Module span.ErrorPlaceholder, .Module .Error {
  color: #900;
  text-align: center;
  padding: 5px 0;
  font-size: 12px;
}
form span.ErrorPlaceholder .Error, .Module span.ErrorPlaceholder .Error {
  background: none;
}
form input.has-error, form select.has-error, form textarea.has-error, form div.NumberPicker.has-error, .Module input.has-error, .Module select.has-error, .Module textarea.has-error, .Module div.NumberPicker.has-error {
  border-color: #900 !important;
}
form input.no-error, form select.no-error, form textarea.no-error, form div.NumberPicker.no-error, .Module input.no-error, .Module select.no-error, .Module textarea.no-error, .Module div.NumberPicker.no-error {
  border-color: #0099cc !important;
}
form span.ErrorPlaceholder.Inline, .Module span.ErrorPlaceholder.Inline {
  display: inline-block;
}
form span.ErrorPlaceholder:not(.Inline) span, .Module span.ErrorPlaceholder:not(.Inline) span {
  display: block;
}
form span.ErrorPlaceholder span, .Module span.ErrorPlaceholder span {
  margin: 2px 0 0 0;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Module.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22;AAGA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAIR;EAEI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAEA;EAEI;EACA;EACA;;AAIR;EACI;EACA;;AAEA;EACI;EACA;;AAIR;EACI;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIR;EACI;EACA;;AAEA;EACI;EACA;;AAIA;EACI;;AAKZ;EACI;;AAGJ;EACI;EACA;;AAGJ;EACI;;;AAIR;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EAZJ;IAaQ;;;AAGJ;EAhBJ;IAiBQ;IACA;;EAEA;IACI;IACA;;;;AAMR;EACI;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;;AAEA;EACI;EACA,OCnJC;EDoJD,kBCvJK;;AD2Jb;EACI;IACI;IACA;IACA;;EAEA;IACI;;;AAKZ;EACI;;AAIR;EACI;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;;AAEA;EACI;EACA;;AAKZ;EACI;EACA,OC5LM;ED6LN;;AAGJ;EAoBI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AA1BA;EAFJ;IAGQ,aC3MA;;;AD8MJ;EANJ;IAOQ;;;AAGJ;EACI;EACA,OC9MK;ED+ML,kBClNS;;ADqNb;EACI,cC/ME;;AD6NV;EACI;;AAGJ;EACI;EACA;EACA;EACA,YCtOK;EDuOL;;AAEA;EACI;EACA;EACA;;AAIR;EACI,OClPM;;ADqPV;EACI,OCtPM;EDuPN;EACA;EACA;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI%22%7D */
body:not(.CMS) section.Mosaico div.Mosaico__Item:not(.Mosaico__Item--Offline) div.Mosaico__Content:hover::before,
body section.Mosaico div.Mosaico__Item div.Mosaico__Content.Mosaico__Content--ShowBack::before {
  content: "";
  display: block;
  position: absolute;
  opacity: 0.8;
  background: #003851;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 10;
}
body:not(.CMS) section.Mosaico div.Mosaico__Item:not(.Mosaico__Item--Offline) div.Mosaico__Content:hover div.Mosaico__Title,
body section.Mosaico div.Mosaico__Item div.Mosaico__Content.Mosaico__Content--ShowBack div.Mosaico__Title {
  display: none;
}
body:not(.CMS) section.Mosaico div.Mosaico__Item:not(.Mosaico__Item--Offline) div.Mosaico__Content:hover div.Mosaico__Description,
body section.Mosaico div.Mosaico__Item div.Mosaico__Content.Mosaico__Content--ShowBack div.Mosaico__Description {
  display: block;
  z-index: 11;
  width: 100%;
  position: absolute;
  color: white;
  top: 50%;
  background: none;
  text-align: center;
  transform: translateY(-50%);
  padding: 20px;
}

body section.Mosaico {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-top: -20px;
}
@media only screen and (max-width: 649px) {
  body section.Mosaico {
    margin-left: 0px;
  }
}
body section.Mosaico div.Mosaico__Item {
  float: left;
  display: block;
  position: relative;
  margin-top: 20px;
  margin-left: 20px;
}
body section.Mosaico div.Mosaico__Item div.Mosaico__Content {
  overflow: hidden;
  position: relative;
  border: solid 1px #ccc;
}
body section.Mosaico div.Mosaico__Item div.Mosaico__Content.Velo--Green::before, body section.Mosaico div.Mosaico__Item div.Mosaico__Content.Velo--Orange::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 39;
  pointer-events: none;
}
body section.Mosaico div.Mosaico__Item div.Mosaico__Content.Velo--Green:hover::before, body section.Mosaico div.Mosaico__Item div.Mosaico__Content.Velo--Orange:hover::before {
  content: none;
}
body section.Mosaico div.Mosaico__Item div.Mosaico__Content.Velo--Green::before {
  background: rgba(17, 176, 92, 0.45);
}
body section.Mosaico div.Mosaico__Item div.Mosaico__Content.Velo--Orange::before {
  background: rgba(227, 71, 17, 0.45);
}
body section.Mosaico div.Mosaico__Item div.Mosaico__Content.Velo--Gray::before {
  background: rgba(58, 68, 67, 0.45);
}
body section.Mosaico div.Mosaico__Item div.Mosaico__Content::after {
  content: "";
  display: block;
  position: relative;
  padding-bottom: 100%;
  border: solid 10px white;
}
body section.Mosaico div.Mosaico__Item div.Mosaico__Content div.Mosaico__Image {
  top: 10px;
  z-index: 1;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: block;
  object-fit: cover;
  position: absolute;
}
body section.Mosaico div.Mosaico__Item div.Mosaico__Content div.Mosaico__Image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body section.Mosaico div.Mosaico__Item div.Mosaico__Content div.Mosaico__Image div.component-editor {
  width: 100%;
  height: 100%;
}
body section.Mosaico div.Mosaico__Item div.Mosaico__Content div.Mosaico__Title {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 60px;
  text-align: center;
  line-height: 50px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: white;
  font-size: 24px;
  border-left: solid 10px white;
  border-bottom: solid 10px white;
  border-right: solid 10px white;
}
body section.Mosaico div.Mosaico__Item div.Mosaico__Content div.Mosaico__Title .Mosaico__Title__Inner {
  text-align: center;
  line-height: 50px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: white;
  font-size: 24px;
}
body section.Mosaico div.Mosaico__Item div.Mosaico__Content div.Mosaico__Title a {
  font-size: inherit;
  color: inherit !important;
  text-decoration: none !important;
}
body section.Mosaico div.Mosaico__Item div.Mosaico__Content div.Mosaico__Description {
  display: none;
}
body section.Mosaico div.Mosaico__Item.Mosaico__Item--Link div.Mosaico__Content {
  cursor: pointer;
}
body section.Mosaico div.Mosaico__Item.Mosaico__Item--Offline div.Mosaico__Content {
  position: relative;
}
body section.Mosaico div.Mosaico__Item.Mosaico__Item--Offline div.Mosaico__Content::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  content: " ";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5) !important;
}
body section.Mosaico div.Mosaico__Item.Mosaico__Item--Offline .ActionBar a.Hide i::before {
  content: "\f06e";
}
@media only screen and (max-width: 649px) {
  body section.Mosaico div.Mosaico__Item {
    width: 100% !important;
    margin-left: 0;
  }
  body section.Mosaico div.Mosaico__Item div.Mosaico__Content:after {
    padding-bottom: 100% !important;
  }
}
body section.Mosaico div.Mosaico__Item .ActionBar {
  margin-bottom: 5px;
  text-align: right;
}
body section.Mosaico div.Mosaico__Item .ActionBar a {
  color: var(--cms-color-regular);
  font-size: 20px;
  margin-right: 5px;
}
body section.Mosaico div.Mosaico__Item .ActionBar a:hover {
  color: var(--cms-color-dark);
}
body section.Mosaico div.Mosaico__Item .SettingsPanel {
  position: relative;
  display: inline-block;
}
body section.Mosaico div.Mosaico__Item .SettingsPanel .Panel {
  z-index: 40;
  display: none;
  position: absolute;
  background-color: white;
  bottom: 30px;
  border: 1px solid black;
  padding: 20px;
  min-width: 400px;
  text-align: left;
  left: 0;
}
body section.Mosaico div.Mosaico__Item .SettingsPanel .Panel img {
  max-width: 142px !important;
  max-height: 106px !important;
}
body section.Mosaico div.Mosaico__Item .SettingsPanel .Panel a.Close {
  padding: 10px 10px 10px 0;
  margin-top: 15px;
  display: inline-block;
}
body section.Mosaico.Violet span {
  background-color: #ca0c55;
}
body section.Mosaico.LightBlu span {
  background-color: #1f8fcf;
}
body section.Mosaico.Accent div.Mosaico__Item div.Mosaico__Title {
  background-color: white;
}
body section.Mosaico.Accent div.Mosaico__Item div.Mosaico__Title.Mosaico_CMS {
  background-color: var(--color-mosaic-card-bar);
}
body section.Mosaico.Accent div.Mosaico__Item div.Mosaico__Title .Mosaico__Title__Inner {
  background-color: var(--color-mosaic-card-bar);
}
body section.Mosaico.Accent div.Mosaico__Item div.Mosaico__Title.Mosaico__Title--Empty {
  display: none;
}
body section.Mosaico.Accent div.Mosaico__Item:not(div.Mosaico__Item--Offline) div.Mosaico__Content:hover::before,
body section.Mosaico.Accent div.Mosaico__Item div.Mosaico__Content.Mosaico__Content--ShowBack::before {
  background-color: var(--color-mosaic-card-hover);
  filter: brightness(30%);
}
body section.Mosaico.Accent div.Mosaico__Item:not(div.Mosaico__Item--Offline) div.Mosaico__Content:hover div.Mosaico__Description::after,
body section.Mosaico.Accent div.Mosaico__Item div.Mosaico__Content.Mosaico__Content--ShowBack div.Mosaico__Description::after {
  background: #cc9999;
}
body section.Mosaico::after {
  content: "";
  clear: both;
  display: table;
}
body section.Mosaico.Mosaico--Carousel {
  display: block;
}
@media only screen and (max-width: 759px) {
  body section.Mosaico.Mosaico--Carousel {
    overflow: hidden;
    flex-wrap: unset;
    margin-left: -20px;
    width: calc(100% + 20px * 2);
  }
  body section.Mosaico.Mosaico--Carousel div.Mosaico__Item {
    width: 70% !important;
  }
}
body section.Mosaico.Mosaico--RoundedBorders .Mosaico__Content {
  border-radius: var(--style-card-radius);
  --mosaico-radius: calc(var(--style-card-radius) - 10px);
}
body section.Mosaico.Mosaico--RoundedBorders .Mosaico__Content .Mosaico__Image {
  border-radius: var(--mosaico-radius) var(--mosaico-radius) 0 0;
  overflow: hidden;
}
body section.Mosaico.Mosaico--RoundedBorders .Mosaico__Content .Mosaico__Title__Inner {
  border-radius: 0 0 var(--mosaico-radius) var(--mosaico-radius);
  overflow: hidden;
}
body section.Mosaico.Mosaico--RoundedBorders .Mosaico__Content.No__MosaicoTitle .Mosaico__Image {
  border-radius: var(--mosaico-radius);
  overflow: hidden;
}
body section.Mosaico[columns="3"] div.Mosaico__Item {
  width: calc(33.33% - 20px);
}
body section.Mosaico[columns="3"] div.Mosaico__Item.TwoColumns {
  width: calc(66.66% - 20px);
}
body section.Mosaico[columns="3"] div.Mosaico__Item.TwoColumns div.Mosaico__Content::after {
  padding-bottom: 48.22%;
}
body section.Mosaico[columns="3"] div.Mosaico__Item.ThreeColumns {
  width: calc(100% - 20px);
}
body section.Mosaico[columns="3"] div.Mosaico__Item.ThreeColumns div.Mosaico__Content::after {
  padding-bottom: 31.77%;
}
body section.Mosaico[columns="4"] div.Mosaico__Item {
  width: calc(25% - 20px);
}
body section.Mosaico[columns="4"] div.Mosaico__Item.TwoColumns {
  width: calc(50% - 20px);
}
body section.Mosaico[columns="4"] div.Mosaico__Item.TwoColumns div.Mosaico__Content::after {
  padding-bottom: 48.15%;
}
body section.Mosaico[columns="4"] div.Mosaico__Item.ThreeColumns {
  width: calc(75% - 20px);
}
body section.Mosaico[columns="4"] div.Mosaico__Item.ThreeColumns div.Mosaico__Content::after {
  padding-bottom: 31.71%;
}
body section.Mosaico[columns="4"] div.Mosaico__Item.FourColumns {
  width: calc(100% - 20px);
}
body section.Mosaico[columns="4"] div.Mosaico__Item.FourColumns div.Mosaico__Content::after {
  padding-bottom: 23.63%;
}
body section.Mosaico[columns="5"] div.Mosaico__Item {
  width: calc(20% - 20px);
}
body section.Mosaico[columns="5"] div.Mosaico__Item.TwoColumns {
  width: calc(40% - 20px);
}
body section.Mosaico[columns="5"] div.Mosaico__Item.TwoColumns div.Mosaico__Content::after {
  padding-bottom: 47.67%;
}
body section.Mosaico[columns="5"] div.Mosaico__Item.ThreeColumns {
  width: calc(60% - 20px);
}
body section.Mosaico[columns="5"] div.Mosaico__Item.ThreeColumns div.Mosaico__Content::after {
  padding-bottom: 31.33%;
}
body section.Mosaico[columns="5"] div.Mosaico__Item.FourColumns {
  width: calc(80% - 20px);
}
body section.Mosaico[columns="5"] div.Mosaico__Item.FourColumns div.Mosaico__Content::after {
  padding-bottom: 23.28%;
}
body section.Mosaico[columns="5"] div.Mosaico__Item.FiveColumns {
  width: calc(100% - 20px);
}
body section.Mosaico[columns="5"] div.Mosaico__Item.FiveColumns div.Mosaico__Content::after {
  padding-bottom: 18.55%;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Mosaico.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAMQ;AAAA;EACI;EACA;EACA;EACA;EACA,YCQK;EDPL;EACA;EACA;EACA;;AAGJ;AAAA;EACI;;AAGJ;AAAA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAMR;EACI;EACA;EACA;EACA;;AAEA;EANJ;IAOQ;;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAII;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIA;EACI;;AAMR;EACI;;AAKJ;EACI;;AAKJ;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAIR;EACI;;AAKJ;EACI;;AAKJ;EACI;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIR;EACI;;AAIR;EAnJJ;IAoJQ;IACA;;EAEA;IACI;;;AAIR;EACI;EACA;;AAEA;EACI;EACA;EACA;;AAEA;EACI;;AAKZ;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;EACA;;AAOZ;EACI,kBCnOD;;ADwOH;EACI,kBChPE;;ADsPF;EACI;;AAEA;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAOJ;AAAA;EACI;EACA;;AAGJ;AAAA;EACI;;AAMhB;EACI;EACA;EACA;;AAIJ;EAYI;;AAXA;EADJ;IAEQ;IACA;IACA;IACA;;EAEA;IACI;;;AAQR;EACI;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;;AAIA;EACI;EACA;;AAOZ;EACI;;AAEA;EACI;;AAEA;EACI;;AAIR;EACI;;AAEA;EACI;;AAOZ;EACI;;AAEA;EACI;;AAEA;EACI;;AAIR;EACI;;AAEA;EACI;;AAIR;EACI;;AAEA;EACI;;AAOZ;EACI;;AAEA;EACI;;AAEA;EACI;;AAIR;EACI;;AAEA;EACI;;AAIR;EACI;;AAEA;EACI;;AAIR;EACI;;AAEA;EACI%22%7D */
/*! nouislider - 14.6.3 - 11/19/2020 */
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-target {
  position: relative;
}
.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}
.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}
.noUi-connect {
  height: 100%;
  width: 100%;
}
.noUi-origin {
  height: 10%;
  width: 10%;
}
/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}
/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  width: 0;
}
.noUi-horizontal .noUi-origin {
  height: 0;
}
.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}
.noUi-touch-area {
  height: 100%;
  width: 100%;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}
/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}
.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}
.noUi-vertical {
  width: 18px;
}
.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  top: -17px;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}
/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}
.noUi-connects {
  border-radius: 3px;
}
.noUi-connect {
  background: #3FB8AF;
}
/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}
.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}
.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}
.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}
/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}
.noUi-handle:after {
  left: 17px;
}
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}
.noUi-vertical .noUi-handle:after {
  top: 17px;
}
/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}
[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}
/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-pips {
  position: absolute;
  color: #999;
}
/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}
.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}
/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}
.noUi-marker-sub {
  background: #AAA;
}
.noUi-marker-large {
  background: #AAA;
}
/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}
.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}
.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}
/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}
.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 25px;
}
.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}
.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}
.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}
.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}
.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}
.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}
.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

div.NumberPicker {
  border: 1px solid #999;
  background-color: white;
  position: relative;
  border-radius: 5px;
  width: 110px;
  height: 38px;
  text-align: center;
  box-sizing: content-box;
}
div.NumberPicker label {
  position: absolute;
  right: 0;
  top: -15px;
}
div.NumberPicker input {
  margin: 0 !important;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 24px;
  outline: none;
  margin-bottom: 0 !important;
  width: 100%;
  height: inherit;
  line-height: inherit;
  text-align: center;
}
div.NumberPicker input[readonly] {
  background-color: white;
}
div.NumberPicker.Open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
div.NumberPicker:not(.Unblocked) input {
  width: calc(100% - 38px);
}
div.NumberPicker:not(.Unblocked)::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  transform: translate(50%, -50%);
  right: 19px;
  border-top: 7px solid black;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  z-index: 0;
  cursor: pointer;
}
div.NumberPicker:not(.Unblocked)::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 38px;
  cursor: pointer;
  z-index: 0;
  border-left: 1px solid #ccc;
}
div.NumberPickerList {
  font-family: var(--font-primary, MyriadPro, sans-serif);
  position: absolute;
  border: 1px solid #999;
  border-radius: 0 0 3px 3px;
  background: white;
  z-index: 9996;
}
div.NumberPickerList a {
  color: #999;
  display: block;
  height: 38px;
  line-height: 38px;
  text-align: center;
  font-size: 20px;
  text-decoration: none !important;
  border-bottom: 1px solid #999;
}
div.NumberPickerList a:last-child {
  border-bottom: 0;
}
div.NumberPickerList a:hover {
  color: #1f8fcf;
}
@media only screen and (max-width: 759px) {
  div.NumberPickerList a {
    height: 24px;
    line-height: 24px;
    font-size: 16px;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/NumberPicker.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACF;EACM;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAIR;EACI;EACA;;AAYA;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAWZ;EACI,aCtFQ;EDuFR;EACA;EACA;EACA;EACA,SC9CiB;;ADgDjB;EACI,OCzFK;ED0FL;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI,OC/FM;;ADkGV;EAlBJ;IAmBQ;IACA;IACA%22%7D */
div.NumberSelector {
  position: relative;
  padding-right: 24px;
}
div.NumberSelector input {
  width: 50px;
  text-align: center;
  border: none;
  border-radius: 0;
  font-weight: bold;
  font-size: 24px;
  outline: none;
}
div.NumberSelector a {
  font-size: 14px;
  position: absolute;
  right: 0;
  outline: none;
  color: white !important;
}
div.NumberSelector a.Up {
  top: 0px;
}
div.NumberSelector a.Down {
  bottom: 0px;
}
div.NumberSelector a.Disabled {
  color: #666 !important;
  cursor: default;
}
div.NumberSelector.Disabled input {
  color: #ccc;
}
div.NumberSelector.Disabled a {
  color: #ccc;
  cursor: default;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/NumberSelector.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAEA;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;;AAKJ;EACI,OC/BM;;ADkCV;EACI,OCnCM;EDoCN%22%7D */
#Content h1.DayInfo {
  position: relative;
  margin-right: -20px;
  margin-left: -20px;
  padding: 10px 30px;
  margin-top: 0 !important;
  background-color: #efefef;
}
#Content h1.DayInfo .Orario {
  text-transform: lowercase;
  font-size: 20px;
  display: inline-block;
}
@media only screen and (max-width: 999px) {
  #Content h1.DayInfo .Orario {
    display: block;
  }
}
#Content h1.DayInfo .PopupButton.Close {
  display: block;
}
#Content div.Orari div.Buttons, #Content .Program div.Buttons {
  margin-left: -10px;
  margin-top: -10px;
}
#Content div.Orari div.Buttons a, #Content .Program div.Buttons a {
  margin: 10px 10px 0 0;
}
#Content div.Orari .Popup, #Content .Program .Popup {
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 100002;
}
#Content div.Orari .Popup.Info, #Content .Program .Popup.Info {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.4);
}
#Content div.Orari .Popup.Info.Disabled, #Content .Program .Popup.Info.Disabled {
  display: none;
}
#Content div.Orari .Popup.Info .Content, #Content .Program .Popup.Info .Content {
  position: relative;
  background-color: white;
  margin: 100px auto;
  border: 1px solid white;
  width: 100%;
  padding: 0 20px 20px 20px;
  overflow: auto;
}
#Content div.Orari .Popup.Info .Content a.Close, #Content .Program .Popup.Info .Content a.Close {
  top: calc(50% - 14px);
  right: 10px;
}
#Content div.Orari .Popup.Info .Content table td p, #Content .Program .Popup.Info .Content table td p {
  margin: 0;
  padding: 2.5px 0 2.5px 0;
  line-height: inherit;
  color: black;
}
#Content div.Orari .Popup.Info .Content table td p.Mobile p, #Content .Program .Popup.Info .Content table td p.Mobile p {
  color: #999 !important;
}
#Content div.Orari .Popup.Info .Content table td p a, #Content .Program .Popup.Info .Content table td p a {
  color: #1f8fcf;
  font-weight: bold;
}
#Content div.Orari .Popup.Info .Content table td:nth-child(2) p, #Content .Program .Popup.Info .Content table td:nth-child(2) p {
  color: #999;
}
#Content div.Orari .Popup.Info .Content ul.Events li, #Content .Program .Popup.Info .Content ul.Events li {
  font-weight: bold;
  margin: 20px 0;
}
#Content div.Orari .Popup.Info .Content ul.Events li a, #Content .Program .Popup.Info .Content ul.Events li a {
  color: #1f8fcf;
}
@media only screen and (min-width: 1000px) {
  #Content div.Orari .Popup.Info .Content, #Content .Program .Popup.Info .Content {
    width: 800px;
  }
}
@media only screen and (min-width: 760px) and (max-width: 999px) {
  #Content div.Orari .Popup.Info .Content, #Content .Program .Popup.Info .Content {
    width: 600px;
  }
}
@media only screen and (max-width: 759px) {
  #Content div.Orari .Popup.Info .Content table td, #Content .Program .Popup.Info .Content table td {
    border-right: none;
  }
}
#Content div.Orari .Popup.Info.Yellow .Palinsesto.Yellow, #Content .Program .Popup.Info.Yellow .Palinsesto.Yellow {
  display: block;
}
#Content div.Orari .Popup.Info.Orange .Palinsesto.Orange, #Content .Program .Popup.Info.Orange .Palinsesto.Orange {
  display: block;
}
#Content div.Orari .Popup.Info.LightBlue .Palinsesto.LightBlue, #Content .Program .Popup.Info.LightBlue .Palinsesto.LightBlue {
  display: block;
}
#Content div.Orari .Popup.Info.Blue .Palinsesto.Blue, #Content .Program .Popup.Info.Blue .Palinsesto.Blue {
  display: block;
}
#Content div.Orari .Popup.Info.Pink .Palinsesto.Pink, #Content .Program .Popup.Info.Pink .Palinsesto.Pink {
  display: block;
}
#Content div.Orari .Popup.Info.Violet .Palinsesto.Violet, #Content .Program .Popup.Info.Violet .Palinsesto.Violet {
  display: block;
}
#Content div.Orari .Popup.Info.Green .Palinsesto.Green, #Content .Program .Popup.Info.Green .Palinsesto.Green {
  display: block;
}
#Content div.Orari .Popup.Info.DarkGreen .Palinsesto.DarkGreen, #Content .Program .Popup.Info.DarkGreen .Palinsesto.DarkGreen {
  display: block;
}
#Content div.Orari .Popup.Info.DarkRed .Palinsesto.DarkRed, #Content .Program .Popup.Info.DarkRed .Palinsesto.DarkRed {
  display: block;
}
#Content div.Orari .Popup.Info.Purple .Palinsesto.Purple, #Content .Program .Popup.Info.Purple .Palinsesto.Purple {
  display: block;
}
#Content div.Orari div.Note, #Content .Program div.Note {
  margin-top: 20px;
  font-size: 12px;
}
@media only screen and (max-width: 999px) {
  #Content div.Orari .YearCalendar, #Content .Program .YearCalendar {
    display: none;
  }
}
#Content div.Orari .YearCalendar .Content .Header, #Content .Program .YearCalendar .Content .Header {
  height: 60px;
  line-height: 60px;
  position: relative;
  text-align: center;
  color: white;
  background-color: var(--color-footer-bg);
}
#Content div.Orari .YearCalendar .Content .Header > div, #Content .Program .YearCalendar .Content .Header > div {
  font-size: 24px;
  display: inline-block;
}
#Content div.Orari .YearCalendar .Content .Header > div.Prev, #Content .Program .YearCalendar .Content .Header > div.Prev {
  left: 0;
  margin-left: 20px;
  position: absolute;
}
#Content div.Orari .YearCalendar .Content .Header > div.Next, #Content .Program .YearCalendar .Content .Header > div.Next {
  right: 0;
  margin-right: 20px;
  position: absolute;
}
#Content div.Orari .YearCalendar .Content .Body, #Content .Program .YearCalendar .Content .Body {
  padding: 20px;
  margin: 20px 0;
  border-radius: var(--style-calendar-radius);
  border: solid 1px #ccc;
}
#Content div.Orari .YearCalendar .Content .Body table, #Content .Program .YearCalendar .Content .Body table {
  margin: 0;
  border-collapse: collapse;
  background-color: white;
  width: 100%;
}
#Content div.Orari .YearCalendar .Content .Body table tbody tr, #Content .Program .YearCalendar .Content .Body table tbody tr {
  color: #999;
}
#Content div.Orari .YearCalendar .Content .Body table tbody tr th, #Content .Program .YearCalendar .Content .Body table tbody tr th {
  position: relative;
  color: #999;
  background-color: white !important;
  padding: 2px;
}
#Content div.Orari .YearCalendar .Content .Body table tbody tr th span.Visible, #Content .Program .YearCalendar .Content .Body table tbody tr th span.Visible {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#Content div.Orari .YearCalendar .Content .Body table tbody tr th span.Invisible, #Content .Program .YearCalendar .Content .Body table tbody tr th span.Invisible {
  visibility: hidden;
}
#Content div.Orari .YearCalendar .Content .Body table tbody tr td, #Content .Program .YearCalendar .Content .Body table tbody tr td {
  border: 1px solid white;
  padding: 10px 2px;
  width: 3.22581%;
}
#Content div.Orari .YearCalendar .Content .Body table tbody tr td.Clickable, #Content .Program .YearCalendar .Content .Body table tbody tr td.Clickable {
  cursor: pointer;
}
#Content div.Orari .YearCalendar .Content .Body table tbody tr td:first-child, #Content .Program .YearCalendar .Content .Body table tbody tr td:first-child {
  text-transform: uppercase;
  padding: 0 10px;
  line-height: 37px;
  width: 110px;
}
#Content div.Orari .YearCalendar .Content .Body table tbody tr td:not(:first-child), #Content .Program .YearCalendar .Content .Body table tbody tr td:not(:first-child) {
  background-color: #efefef;
}
#Content div.Orari .YearCalendar .Content .Body table tbody tr td.Not__Existent__Day, #Content .Program .YearCalendar .Content .Body table tbody tr td.Not__Existent__Day {
  background-color: #ffffff;
}
@media only screen and (min-width: 1000px) {
  #Content div.Orari .MonthCalendar, #Content .Program .MonthCalendar {
    display: none;
  }
}
#Content div.Orari .MonthCalendar table tr td, #Content .Program .MonthCalendar table tr td {
  padding: 8px 8px 0 0;
  text-align: center;
}
#Content div.Orari .MonthCalendar td,
#Content div.Orari .YearCalendar td, #Content .Program .MonthCalendar td,
#Content .Program .YearCalendar td {
  position: relative;
  background-color: white;
}
#Content div.Orari .MonthCalendar td img,
#Content div.Orari .YearCalendar td img, #Content .Program .MonthCalendar td img,
#Content .Program .YearCalendar td img {
  position: absolute;
  width: 22px;
  left: 0;
  top: 0;
}
#Content div.Orari .MonthCalendar td img.Bottom,
#Content div.Orari .YearCalendar td img.Bottom, #Content .Program .MonthCalendar td img.Bottom,
#Content .Program .YearCalendar td img.Bottom {
  top: unset;
  bottom: 0;
}
#Content div.Orari .MonthCalendar td img.Top,
#Content div.Orari .YearCalendar td img.Top, #Content .Program .MonthCalendar td img.Top,
#Content .Program .YearCalendar td img.Top {
  bottom: unset;
  top: 0;
}
#Content div.Orari .MonthCalendar td img.Left,
#Content div.Orari .YearCalendar td img.Left, #Content .Program .MonthCalendar td img.Left,
#Content .Program .YearCalendar td img.Left {
  right: unset;
  left: 0;
}
#Content div.Orari .MonthCalendar td img.Right,
#Content div.Orari .YearCalendar td img.Right, #Content .Program .MonthCalendar td img.Right,
#Content .Program .YearCalendar td img.Right {
  left: unset;
  right: 0;
}
#Content div.Orari .MonthCalendar td.Active, #Content div.Orari .MonthCalendar td.Clickable,
#Content div.Orari .YearCalendar td.Active,
#Content div.Orari .YearCalendar td.Clickable, #Content .Program .MonthCalendar td.Active, #Content .Program .MonthCalendar td.Clickable,
#Content .Program .YearCalendar td.Active,
#Content .Program .YearCalendar td.Clickable {
  color: white;
}
#Content div.Orari .MonthCalendar td.Evento::before,
#Content div.Orari .YearCalendar td.Evento::before, #Content .Program .MonthCalendar td.Evento::before,
#Content .Program .YearCalendar td.Evento::before {
  content: " ";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: 22px;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-image: url(../Media/Layout/Stella.png);
}
#Content div.Orari .MonthCalendar td,
#Content div.Orari .YearCalendar td, #Content .Program .MonthCalendar td,
#Content .Program .YearCalendar td {
  position: relative;
  background-color: white;
}
#Content div.Orari .MonthCalendar td img,
#Content div.Orari .YearCalendar td img, #Content .Program .MonthCalendar td img,
#Content .Program .YearCalendar td img {
  position: absolute;
  width: 22px;
  left: 0;
  top: 0;
}
#Content div.Orari .MonthCalendar td img.Bottom,
#Content div.Orari .YearCalendar td img.Bottom, #Content .Program .MonthCalendar td img.Bottom,
#Content .Program .YearCalendar td img.Bottom {
  top: unset;
  bottom: 0;
}
#Content div.Orari .MonthCalendar td img.Top,
#Content div.Orari .YearCalendar td img.Top, #Content .Program .MonthCalendar td img.Top,
#Content .Program .YearCalendar td img.Top {
  bottom: unset;
  top: 0;
}
#Content div.Orari .MonthCalendar td img.Left,
#Content div.Orari .YearCalendar td img.Left, #Content .Program .MonthCalendar td img.Left,
#Content .Program .YearCalendar td img.Left {
  right: unset;
  left: 0;
}
#Content div.Orari .MonthCalendar td img.Right,
#Content div.Orari .YearCalendar td img.Right, #Content .Program .MonthCalendar td img.Right,
#Content .Program .YearCalendar td img.Right {
  left: unset;
  right: 0;
}
#Content div.Orari .MonthCalendar td.Active, #Content div.Orari .MonthCalendar td.Clickable,
#Content div.Orari .YearCalendar td.Active,
#Content div.Orari .YearCalendar td.Clickable, #Content .Program .MonthCalendar td.Active, #Content .Program .MonthCalendar td.Clickable,
#Content .Program .YearCalendar td.Active,
#Content .Program .YearCalendar td.Clickable {
  color: white;
}
#Content div.Orari .MonthCalendar td.Evento::before,
#Content div.Orari .YearCalendar td.Evento::before, #Content .Program .MonthCalendar td.Evento::before,
#Content .Program .YearCalendar td.Evento::before {
  content: " ";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: 22px;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-image: url(../Media/Layout/Stella.png);
}
#Content div.Orari .Legend, #Content .Program .Legend {
  margin-bottom: 20px;
}
#Content div.Orari .Legend h3, #Content .Program .Legend h3 {
  color: #0054a5;
}
@media only screen and (max-width: 999px) {
  #Content div.Orari .Legend ul li, #Content .Program .Legend ul li {
    margin-top: 0;
    padding: 10px 0 10px 35px !important;
    border-bottom: 1px solid #ccc;
  }
}
@media only screen and (min-width: 1000px) {
  #Content div.Orari .Legend ul, #Content .Program .Legend ul {
    display: flex;
    flex-flow: row wrap;
    margin-top: -10px;
  }
  #Content div.Orari .Legend ul li, #Content .Program .Legend ul li {
    margin: 10px 10px 0 10px;
    flex-grow: 2;
    flex-basis: calc(25% - 20px);
    max-width: calc(25% - 20px);
  }
}
#Content div.Orari .Legend ul li, #Content .Program .Legend ul li {
  padding: 0 0 0 25px;
  position: relative;
  display: flex;
}
#Content div.Orari .Legend ul li br, #Content .Program .Legend ul li br {
  display: none;
}
#Content div.Orari .Legend ul li::before, #Content .Program .Legend ul li::before {
  content: "";
}
#Content div.Orari .Legend ul li span.Icon, #Content .Program .Legend ul li span.Icon {
  position: static;
  display: inline-block;
  vertical-align: middle;
  width: 21px;
  height: 21px;
  border-radius: 0;
  margin: 0 10px 0 -35px;
  padding: 2px 2px;
  background-color: white;
  border: 1px solid #ccc;
}
#Content div.Orari .Legend ul li span.Icon.HasImage, #Content .Program .Legend ul li span.Icon.HasImage {
  border: 1px solid #ccc;
  padding: 0;
}
#Content div.Orari .Legend ul li span.Icon.Closed, #Content .Program .Legend ul li span.Icon.Closed {
  border: 1px solid #ccc;
  background-color: #efefef;
}
#Content div.Orari .Legend ul li.Closed:before, #Content .Program .Legend ul li.Closed:before {
  width: 19px;
  height: 19px;
  border: 1px solid #ccc;
  background-color: #efefef;
}
#Content div.Orari .Legend ul li.Evento:before, #Content .Program .Legend ul li.Evento:before {
  background-color: white;
  border: 1px solid #ccc;
  background-size: 25px;
  background-repeat: no-repeat;
  background-image: url(../Media/Layout/Stella.png);
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Orari.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAGI;EACI;EACA;EACA;EACA;EACA;EACA,kBCFa;;ADIb;EACI;EACA;EACA;;AAEA;EALJ;IAMQ;;;AAIR;EACI;;AAMJ;EACI;EACA;;AAEA;EACI;;AAIR;EACI;EACA;EACA,SCgBE;;ADdF;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAKI;EACI;EACA;EACA;EACA;;AAII;EACI;;AAIR;EACI,OCpElB;EDqEkB;;AAKJ;EACI,OCnFvB;;AD0FW;EACI;EACA;;AAEA;EACI,OCvFd;;AD4FE;EAtDJ;IAuDQ;;;AAGJ;EA1DJ;IA2DQ;;;AAGJ;EAGQ;IACI;;;AAOZ;EACI;;AAKJ;EACI;;AAKJ;EACI;;AAKJ;EACI;;AAKJ;EACI;;AAKJ;EACI;;AAKJ;EACI;;AAKJ;EACI;;AAKJ;EACI;;AAKJ;EACI;;AAMhB;EACI;EACA;;AAKA;EAFJ;IAGQ;;;AAIA;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAKZ;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAGI;EACI,OCxOnB;;AD0OmB;EACI;EACA,OC5OvB;ED6OuB;EACA;;AAGI;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAKZ;EACI;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI,kBClRnB;;ADqRe;EACI;;AAW5B;EADJ;IAEQ;;;AAKI;EACI;EACA;;AAQZ;AAAA;AAAA;EACI;EACA;;AAEA;AAAA;AAAA;EACI;EACA;EACA;EACA;;AAEA;AAAA;AAAA;EACI;EACA;;AAGJ;AAAA;AAAA;EACI;EACA;;AAGJ;AAAA;AAAA;EACI;EACA;;AAGJ;AAAA;AAAA;EACI;EACA;;AAIR;AAAA;AAAA;AAAA;AAAA;EAEI;;AAGJ;AAAA;AAAA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAOR;AAAA;AAAA;EACI;EACA;;AAEA;AAAA;AAAA;EACI;EACA;EACA;EACA;;AAEA;AAAA;AAAA;EACI;EACA;;AAGJ;AAAA;AAAA;EACI;EACA;;AAGJ;AAAA;AAAA;EACI;EACA;;AAGJ;AAAA;AAAA;EACI;EACA;;AAIR;AAAA;AAAA;AAAA;AAAA;EAEI;;AAGJ;AAAA;AAAA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAKZ;EACI,eChYgB;;ADkYhB;EACI,OClZH;;ADsZG;EACI;IACI;IACA;IACA;;;AAIR;EATJ;IAUQ;IACA;IACA;;EAEA;IACI;IACA;IACA;IACA;;;AAIR;EACI;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA,kBCtdP;;AD0dD;EACI;EACA;EACA;EACA,kBC9dH;;ADieD;EACI;EACA;EACA;EACA;EACA%22%7D */
body.partners #Content .CMSBlock.Content .Wrap {
  width: 100%;
  display: flex;
  align-items: center;
  flex-flow: row wrap; }
  body.partners #Content .CMSBlock.Content .Wrap h2 {
    flex-basis: 100%; }
  body.partners #Content .CMSBlock.Content .Wrap p {
    flex: 0 0 25%;
    padding: 0 10px;
    min-width: 150px;
    position: relative;
    text-align: center; }
    body.partners #Content .CMSBlock.Content .Wrap p img {
      width: 100%;
      max-width: 200px !important; }

/*# sourceMappingURL=data:application/json;base64,ewoJInZlcnNpb24iOiAzLAoJImZpbGUiOiAiQ29udGVudC9UaGVtZS9QYXJ0bmVycy5jc3MiLAoJInNvdXJjZXMiOiBbCgkJIkNvbnRlbnQvVGhlbWUvUGFydG5lcnMuc2NzcyIKCV0sCgkibmFtZXMiOiBbXSwKCSJtYXBwaW5ncyI6ICJBQUFBLEFBQ3NCLElBRGxCLEFBQUEsU0FBUyxDQUFDLFFBQVEsQ0FDbEIsU0FBUyxBQUFBLFFBQVEsQ0FBQyxLQUFLLENBQUM7RUFDcEIsS0FBSyxFQUFFLElBQUk7RUFDWCxPQUFPLEVBQUUsSUFBSTtFQUNiLFdBQVcsRUFBRSxNQUFNO0VBQ25CLFNBQVMsRUFBRSxRQUFRLEdBa0J0QjtFQXZCTCxBQU9RLElBUEosQUFBQSxTQUFTLENBQUMsUUFBUSxDQUNsQixTQUFTLEFBQUEsUUFBUSxDQUFDLEtBQUssQ0FNbkIsRUFBRSxDQUFDO0lBQ0MsVUFBVSxFQUFFLElBQUksR0FDbkI7RUFUVCxBQVdRLElBWEosQUFBQSxTQUFTLENBQUMsUUFBUSxDQUNsQixTQUFTLEFBQUEsUUFBUSxDQUFDLEtBQUssQ0FVbkIsQ0FBQyxDQUFDO0lBQ0UsSUFBSSxFQUFFLE9BQU87SUFDYixPQUFPLEVBQUUsTUFBTTtJQUNmLFNBQVMsRUFBRSxLQUFLO0lBQ2hCLFFBQVEsRUFBRSxRQUFRO0lBQ2xCLFVBQVUsRUFBRSxNQUFNLEdBTXJCO0lBdEJULEFBa0JZLElBbEJSLEFBQUEsU0FBUyxDQUFDLFFBQVEsQ0FDbEIsU0FBUyxBQUFBLFFBQVEsQ0FBQyxLQUFLLENBVW5CLENBQUMsQ0FPRyxHQUFHLENBQUM7TUFDQSxLQUFLLEVBQUUsSUFBSTtNQUNYLFNBQVMsRUFBRSxnQkFBZ0IsR0FDOUIiCn0= */
body.Alert div.Buttons,
div.Dialog.PopupAlert div.Buttons {
  flex-basis: 100%;
  flex-wrap: wrap;
  display: flex;
  width: 100%;
}
body.Alert div.Buttons a,
div.Dialog.PopupAlert div.Buttons a {
  display: inline-block;
  margin-bottom: 10px;
}
body.Alert div.Buttons a.Ok,
div.Dialog.PopupAlert div.Buttons a.Ok {
  background: #588725;
}
body.Alert div.Buttons a.Close,
div.Dialog.PopupAlert div.Buttons a.Close {
  background: #900;
}

div.Dialog.PopupAlert div.Container {
  box-shadow: #999 0px 0px 20px;
  border: 1px solid #ccc;
  padding: 40px 20px;
  min-height: unset;
  overflow: auto;
}
@media only screen and (min-width: 760px) {
  div.Dialog.PopupAlert div.Container {
    min-width: 400px;
    width: auto;
  }
}
div.Dialog.PopupAlert div.PopupAlert {
  position: relative;
  min-height: 0;
}
div.Dialog.PopupAlert div.PopupAlert > a.Close {
  right: 0px;
  top: -24px;
}
div.Dialog.PopupAlert div.PopupAlert h2 {
  padding: 0 !important;
}
div.Dialog.PopupAlert div.PopupAlert h2:first-child {
  margin-top: 0px !important;
}
div.Dialog.PopupAlert div.PopupAlert h2:last-child {
  margin-bottom: 20px !important;
}
div.Dialog.PopupAlert div.PopupAlert div.Buttons {
  gap: 10px;
  margin-top: 10px;
  justify-content: flex-end;
}
div.Dialog.PopupAlert div.PopupAlert div.Buttons a {
  float: unset;
  margin: unset;
}
div.Dialog.PopupAlert div.PopupAlert--Content {
  display: flex;
}
@media only screen and (max-width: 999px) {
  div.Dialog.PopupAlert div.PopupAlert--Content div.Image {
    display: none;
  }
}
div.Dialog.PopupAlert div.PopupAlert--Content div.Image img {
  max-width: 400px;
  margin: 0 20px;
  height: auto;
}
@media only screen and (min-width: 760px) {
  div.Dialog.PopupAlert div.PopupAlert--Content div.Text {
    min-width: 400px;
    margin: 0 20px;
  }
}
@media only screen and (max-width: 999px) {
  div.Dialog.PopupAlert div.PopupAlert--Content div.Text {
    width: 100%;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/PopupAlert.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAII;AAAA;EACI;EACA;EACA;EACA;;AAEA;AAAA;EACI;EACA;;AAGJ;AAAA;EACI,YCUE;;ADPN;AAAA;EACI,YCRE;;;ADcV;EACI;EACA;EACA;EACA;EACA;;AAEA;EAPJ;IAQQ;IACA;;;AAIR;EACI;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;;AAEA;EACI;;AAGJ;EACI;;AAIR;EACI;EACA;EACA;;AAEA;EACI;EACA;;AAKZ;EACI;;AAGI;EADJ;IAEQ;;;AAGJ;EACI;EACA;EACA;;AAKJ;EADJ;IAEQ;IACA;;;AAGJ;EANJ;IAOQ%22%7D */
div.Dialog.PopupNewsletter div.Container {
  border: 1px solid #ccc;
  padding: 0 20px;
  overflow: auto;
}
div.Dialog.PopupNewsletter div.Container div#PopupNewsletter {
  position: relative;
  min-height: 0;
}
div.Dialog.PopupNewsletter div.Container div#PopupNewsletter a.Close {
  right: 0;
  top: -24px;
}
div.Dialog.PopupNewsletter div.Container div#PopupNewsletter h2:first-child {
  margin-top: 40px !important;
}
div.Dialog.PopupNewsletter div.Container div#PopupNewsletter h2:last-child {
  margin-bottom: 20px !important;
}
@media only screen and (min-width: 760px) {
  div.Dialog.PopupNewsletter div.Container {
    width: 600px;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/PopupNewsletter.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAGC;EACC;EACA;EACA;;AAEA;EACC;EACA;;AAEA;EACC;EACA;;AAIA;EACC;;AAGD;EACC;;AAKH;EAzBD;IA0BE%22%7D */
div#PortfolioPage {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  pointer-events: none;
}
div#PortfolioPage div#Portfolio {
  width: 1000px;
  height: 360px;
  overflow: hidden;
  position: relative;
}
div#PortfolioPage div#Portfolio div#Background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(Portfolio/Background.png) center;
  background-size: contain;
  z-index: 1;
}
div#PortfolioPage div#Portfolio div#HiddenLevel {
  width: 2000px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
div#PortfolioPage div#Portfolio div#HiddenLevel img {
  margin: auto;
  margin: 10px 50px;
  vertical-align: middle;
}
div#PortfolioPage div#Animals {
  pointer-events: none;
  z-index: 101;
  position: fixed;
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix( M11=0,965925826, M12=-0,258819045, M21=0.258819045, M22=0.965925826, sizingMethod='auto expand')";
  filter: progid:DXImageTransform.Microsoft.Matrix( M11=0.965925826, M12=-0.258819045, M21=0.258819045, M22=0.965925826, sizingMethod="auto expand");
  zoom: 1;
  -moz-transform: rotate(15deg);
  -ms-transform: rotate(15deg);
  -o-transform: rotate(15deg);
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
}
div#PortfolioPage div#Animals div#Lucertola1 {
  position: absolute;
  top: -97px;
  left: 335px;
}
div#PortfolioPage div#Animals div#Lucertola1 div {
  position: absolute;
  width: 300px;
  height: 340px;
  background: url(/Content/Media8/Portfolio/Lucertola.png) no-repeat 0 0;
}
div#PortfolioPage div#Animals div#Lucertola2 {
  position: absolute;
  top: -716px;
  left: 862px;
}
div#PortfolioPage div#Animals div#Lucertola2 div {
  position: absolute;
  width: 300px;
  height: 340px;
  background: url(/Content/Media8/Portfolio/Lucertola.png) no-repeat 0 0;
}
div#PortfolioPage div#Animals div#Mosca {
  position: absolute;
  top: -330px;
  left: 685px;
}
div#PortfolioPage div#Animals div#Mosca div {
  position: absolute;
  width: 50px;
  height: 50px;
  background: url(/Content/Media8/Portfolio/Mosca.png) no-repeat 0 0;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///D:/GitHub/MadeTicketWeb/FrontEnd/Content/Theme/Portfolio.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAAC;EACG;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA%22%7D */
body div.RecaptchaContainer div.RecaptchaPlacheHolder {
  height: 0;
}
body div.RecaptchaContainer div.RecaptchaPlacheHolder .grecaptcha-badge {
  visibility: hidden;
}
body p.RecaptchaPrivacyNotice {
  font-size: 13px;
  border-bottom: solid 1px #ccc;
  border-top: solid 1px #ccc;
  line-height: 40px;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Recaptcha.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAIQ;EACI;;AAEA;EACI;;AAKZ;EACI;EACA;EACA;EACA%22%7D */
body.Report table tbody tr:not(.NoRecord).Total {
  background: #f5f5f5 !important;
}
body.Report table tbody tr:not(.NoRecord).Total td:not(:first-child) {
  border-top: solid 1px #ccc;
}
body.Report table tbody tr:not(.NoRecord).Total:not(:nth-last-child(2)) td:not(:first-child) {
  border-bottom: solid 1px #ccc;
}
body.Report table tbody tr:not(.NoRecord).Total:hover {
  background: #ebebeb !important;
}
body.Report table tbody tr:not(.NoRecord).Total td:first-child {
  border-right: none !important;
}
body.Report table tbody tr:not(.NoRecord) td:first-child {
  text-align: right !important;
  width: 10px;
}
body.Report table tbody tr:not(.NoRecord):not(.Total:last-child) td:first-child {
  background: #f5f5f5;
}
body.Report table tbody tr:not(.NoRecord).Total:last-child {
  background: #ebebeb !important;
}
body.Report table tbody tr:not(.NoRecord).Total:last-child td {
  border-top: solid 1px #ccc !important;
  border-bottom: solid 2px #ccc !important;
}
body.Report table tbody tr:not(.NoRecord).Total:last-child:hover {
  background: #bbb !important;
}
body.Report table tbody tr.NoRecord {
  background-color: white !important;
}
body.Report table tbody tr.NoRecord td {
  color: #ccc;
  text-align: center;
}
body.Report.Zoomed header, body.Report.Zoomed footer, body.Report.Zoomed div#Breadcrumbs, body.Report.Zoomed div.Matematici {
  display: none !important;
}
body.Report.Zoomed div#Content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: auto;
  margin: 0 !important;
  padding: 10px !important;
}
body.Report.Zoomed div#Content .Wrap {
  max-width: unset;
  margin: 0 !important;
  padding: 0 !important;
}
@media screen {
  body.Report {
    width: unset;
    min-width: 100%;
    zoom: 1 !important;
  }
  body.Report div#Content div#Report {
    clear: both;
  }
  body.Report div#Content div#Report div.Error {
    color: #990000;
  }
  body.Report div#Content div#Report table thead {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0;
  }
  body.Report div#Content div#Report table tbody tr {
    cursor: pointer;
  }
  body.Report div#Content div#Report table tbody tr td.Right {
    text-align: right;
  }
  body.Report div#Content div#Report table tbody tr:not(.Current) td {
    white-space: nowrap;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  body.Report div#Content div#Report table tbody tr.CurrentPrevious td {
    border-bottom: solid 1px black !important;
  }
  body.Report div#Content div#Report table tbody tr.Current td {
    border-top: solid 1px black !important;
    border-bottom: solid 1px black !important;
  }
  body.Report div#Content div#Report table tbody tr:hover {
    background-color: #fce6e8;
  }
}
@media print {
  body.Report {
    background-color: white !important;
  }
  body.Report header, body.Report footer, body.Report div#Breadcrumbs {
    display: none !important;
  }
  body.Report div#Content {
    padding: 0 !important;
    margin: 0 !important;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Users/Massimiliano/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Report.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAUgB;EACI;;AAEA;EACI;;AAIA;EACI;;AAIR;EACI;;AAGJ;EACI;;AAIR;EACI;EACA;;AAIA;EACI,YArCH;;AAyCL;EAMI;;AALA;EACI;EACA;;AAKJ;EACI;;AAKZ;EACI;;AAEA;EACI,OA5DD;EA6DC;;AAOZ;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAKZ;EArFJ;IAsFQ;IACA;IACA;;EAGI;IACI;;EAEA;IACI;;EAIA;IACI;IACA;IACA;;EAIA;IACI;;EAGI;IACI;;EAKJ;IACI;IACA;IACA;IACA;;EAKJ;IACI;;EAKJ;IACI;IACA;;EAIR;IACI,kBA5InB;;;AAqJT;EAnJJ;IAwJQ;;EAJA;IACI;;EAKJ;IACI;IACA%22%7D */
div.Riepilogo {
  color: black;
  padding-top: 30px;
  font-size: 18px;
}
@media only screen and (max-width: 759px) {
  div.Riepilogo {
    font-size: 13px;
  }
}
div.Riepilogo div.Column {
  float: left;
  padding: 11px 10px;
}
div.Riepilogo div.Column.Column1-5 {
  width: 100%;
  float: none;
}
div.Riepilogo div.Column.Right {
  text-align: right;
}
div.Riepilogo div.Column.Column1 p {
  margin: 0 !important;
  font-size: inherit !important;
}
div.Riepilogo div.Column.Column1 p.Oggetto {
  font-weight: bold;
}
div.Riepilogo div.Column.Column1 p.Data {
  color: var(--color-accent);
}
div.Riepilogo div.Header {
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
  background-color: var(--color-tab-bar, black);
}
div.Riepilogo div.Header div.Column {
  text-align: center;
  border-left: 1px solid white;
}
div.Riepilogo div.Header div.Column.Column1 {
  text-align: left;
}
div.Riepilogo div.Header div.Column.Column5 {
  display: none;
  background-color: #999;
}
div.Riepilogo div.Row {
  display: flex;
}
div.Riepilogo div.Row div.Column:not(.Column1) {
  border-left: 1px solid #ccc;
}
div.Riepilogo div.Row div.Column.Column5 {
  display: none;
}
div.Riepilogo div.ProductList {
  border-top: 1px solid #ccc;
}
div.Riepilogo div.ProductList div.Product {
  border-bottom: 1px solid #ccc;
}
div.Riepilogo div.ProductList div.Product + div.Product {
  border-top: none;
}
div.Riepilogo div.SubGroup {
  padding: 11px 0;
}
div.Riepilogo div.SubGroup div.Column {
  padding-top: 0;
  line-height: 1.5;
  padding-bottom: 0;
}
div.Riepilogo .Validity {
  padding: 10px;
  font-weight: 400;
  text-align: center;
}
div.Riepilogo span.ErrorPlaceholder .Warning {
  margin-top: 10px;
  font-size: 16px;
}
div.Riepilogo div.Provvigione {
  font-weight: bold;
  border-top: 1px solid white;
}
div.Riepilogo div.Provvigione div.Column:first-child {
  width: 75%;
  border: none;
}
div.Riepilogo div.Provvigione div.Column:nth-child(2) {
  width: 25%;
  border: none;
  text-align: right;
}
div.Riepilogo a.Button.Previous {
  border-top-right-radius: unset;
  border-bottom-right-radius: unset;
  margin-right: 10px;
}
div.Riepilogo a.Button.Previous.Icon {
  padding-right: 20px;
  padding-left: 40px;
}
div.Riepilogo a.Button.Previous.Icon::before {
  border-right: solid 1px white;
  border-left: unset;
  right: unset;
  left: 0;
}
div.Riepilogo a.Button.Previous.Icon i {
  right: unset !important;
  left: 7px !important;
}
div.Riepilogo div.Totale {
  color: white;
  margin-top: 10px;
  font-weight: bold;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  background-color: var(--color-accent);
}
div.Riepilogo div.Totale div.Column {
  width: calc(100% - 100px);
  border: none;
}
div.Riepilogo div.Totale div.Column + div.Column {
  width: 100px;
  text-align: right;
}
div.Riepilogo .Delete {
  color: #ccc;
}
div.Riepilogo .Delete:hover {
  cursor: pointer;
}
@media only screen and (min-width: 760px) {
  div.Riepilogo div.Column.Column1 {
    width: 52%;
  }
  div.Riepilogo div.Column.Column2 {
    width: 16%;
  }
  div.Riepilogo div.Column.Column3 {
    width: 16%;
  }
  div.Riepilogo div.Column.Column4 {
    width: 16%;
  }
}
@media only screen and (min-width: 500px) and (max-width: 759px) {
  div.Riepilogo div.Column.Column1 {
    width: 50%;
  }
  div.Riepilogo div.Column.Column2 {
    width: 25%;
  }
  div.Riepilogo div.Column.Column3 {
    display: none;
  }
  div.Riepilogo div.Column.Column4 {
    width: 25%;
  }
}
@media only screen and (max-width: 499px) {
  div.Riepilogo div.Column.Column1 {
    width: 50%;
  }
  div.Riepilogo div.Column.Column2 {
    width: 25%;
  }
  div.Riepilogo div.Column.Column3 {
    display: none;
  }
  div.Riepilogo div.Column.Column4 {
    width: 25%;
  }
}

div.FinalBar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1101;
  width: 39;
  background-color: var(--color-tab-bar);
  border-top: 1px solid white;
}
div.FinalBar div.FinalError {
  display: block;
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  color: #900;
  text-align: center;
}
div.FinalBar div.FinalTotal {
  width: 100%;
  color: white;
  font-weight: bold;
  font-size: 16px;
  line-height: 70px;
  height: 70px;
}
div.FinalBar div.FinalTotal span.Price {
  font-size: 26px;
  margin-left: 5px;
}
div.FinalBar div.FinalTotal span.StrikedPrice {
  font-size: 16px;
  font-weight: normal;
  position: relative;
  margin-left: 5px;
  color: #ccc;
}
div.FinalBar div.FinalTotal span.StrikedPrice::after {
  background-color: white;
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  left: 0;
  top: 45%;
}
div.FinalBar div.FinalTotal .Button {
  color: var(--color-accent) !important;
  background-color: white;
  margin: 18px 0 0 0;
}
div.FinalBar div.FinalTotal .Button:hover {
  background: var(--color-accent);
  color: white !important;
}
div.FinalBar div.FinalTotal .Button.Previous {
  background-color: var(--color-accent);
  padding-right: 35px;
  margin-right: 10px;
  border-radius: 0;
  padding-left: 0;
  color: white;
  height: 33px;
}
div.FinalBar div.FinalTotal .Button.Previous.Icon::before {
  content: unset;
}
div.FinalBar div.FinalTotal .Button.Previous.Icon i {
  right: 6px;
  color: white;
}
div.FinalBar div.FinalTotal .Button.Previous:hover {
  background: var(--color-brand);
}
@media only screen and (max-width: 499px) {
  div.FinalBar div.FinalTotal .Button.Previous.Previous {
    font-size: 0;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Riepilogo.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAEA;EACI;EACA;EACA;;AAEA;EALJ;IAMQ;;;AAGJ;EACI;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;;AAOA;EACI;EACA;;AAEA;EACI;;AAGJ;EACI;;AAMhB;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAEA;EACI;;AAGJ;EACI;EACA,kBClDH;;ADuDT;EACI;;AAGI;EACI;;AAGJ;EACI;;AAKZ;EACI;;AAEA;EACI;;AAEA;EACI;;AAKZ;EACI;;AAEA;EACI;EACA;EACA;;AAIR;EACI;EACA;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;EACA;;AAKJ;EACI;EACA;EACA;;AAEA;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAMhB;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;;AAIR;EACI,OCpKU;;ADsKV;EACI;;AAIR;EAEQ;IACI;;EAGJ;IACI;;EAGJ;IACI;;EAGJ;IACI;;;AAKZ;EAEQ;IACI;;EAGJ;IACI;;EAGJ;IACI;;EAGJ;IACI;;;AAKZ;EAEQ;IACI;;EAGJ;IACI;;EAGJ;IACI;;EAGJ;IACI;;;;AAMhB;EACI;EACA;EACA;EACA;EACA;EACA,OC5Ma;ED6Mb;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA,OCpPM;EDqPN;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA,OC9QM;;ADgRN;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGI;EACI;;AAGJ;EACI;EACA;;AAIR;EACI;;AAGJ;EACI;IACI%22%7D */
.SaleParameters {
  display: flex;
  flex-flow: wrap;
  flex: 1;
  position: relative;
}
@media only screen and (max-width: 759px) {
  .SaleParameters {
    justify-content: space-between;
  }
}
.SaleParameters > div {
  height: 50px;
  display: inline-block;
  position: relative;
  padding: 0 71px;
  margin-top: 20px;
  border-left: none;
  display: flex;
  color: black;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 760px) {
  .SaleParameters > div.Arrivo::after, .SaleParameters > div.Partenza::after {
    font-family: FontAwesome;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    vertical-align: -0.125em;
    content: "\f078";
    color: #999;
    position: absolute;
    font-size: 24px;
    right: 10px;
    z-index: -1;
  }
  .SaleParameters > div.Arrivo:hover, .SaleParameters > div.Partenza:hover {
    cursor: pointer;
  }
  .SaleParameters > div.Arrivo:hover::after, .SaleParameters > div.Partenza:hover::after {
    color: inherit;
  }
}
@media only screen and (max-width: 759px) {
  .SaleParameters > div.Arrivo, .SaleParameters > div.Partenza {
    width: calc(50% - 6px) !important;
  }
}
@media only screen and (min-width: 760px) {
  .SaleParameters > div.Arrivo, .SaleParameters > div.Partenza {
    width: 30% !important;
    min-width: 300px;
  }
}
.SaleParameters > div.Arrivo .DatePicker::before, .SaleParameters > div.Partenza .DatePicker::before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}
.SaleParameters > div.Arrivo div[data-cms], .SaleParameters > div.Partenza div[data-cms] {
  z-index: 2;
}
.SaleParameters > div.Arrivo {
  margin-right: 15px;
  color: #588725;
  border: 1px solid #588725;
}
.SaleParameters > div.Arrivo::before {
  background-color: #588725;
}
@media only screen and (max-width: 759px) {
  .SaleParameters > div.Arrivo {
    margin-right: 10px;
  }
}
.SaleParameters > div.Partenza {
  color: #ca0c55;
  border: 1px solid #ca0c55;
}
.SaleParameters > div.Partenza::before {
  background-color: #ca0c55;
}
.SaleParameters > div.Camere {
  color: #666;
  background-image: unset;
  background-color: #1f8fcf;
}
.SaleParameters > div > label, .SaleParameters > div .Description {
  display: block;
  font-weight: bold;
}
.SaleParameters > div > label {
  width: 100%;
  margin: 0;
  font-size: 13px;
}
.SaleParameters > div .Description {
  color: #003851;
  margin-top: 5px;
  font-size: 12px;
}
@media only screen and (max-width: 399px) {
  .SaleParameters > div .Description {
    font-size: 10px;
  }
}
.SaleParameters > div > .NumberPicker {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  height: 24px;
  width: 50px;
}
.SaleParameters > div > .NumberPicker input {
  font-size: 14px;
}
.SaleParameters > div > .NumberPicker:not(.Unblocked) input {
  font-size: 14px;
  width: calc(100% - 24px);
}
.SaleParameters > div > .NumberPicker::before {
  right: 12px;
  border-top: 4px solid black;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}
.SaleParameters > div > .NumberPicker::after {
  width: 24px;
}
@media only screen and (max-width: 759px) {
  .SaleParameters > div > .NumberPicker {
    width: 70px;
    height: 24px;
  }
}
.SaleParameters > div .DatePicker {
  position: static;
  display: flex;
}
.SaleParameters > div .DatePicker label {
  align-self: center;
}
.SaleParameters > div .DatePicker input {
  height: 28px;
  display: none;
  align-self: center;
}
.SaleParameters > div .DatePicker .Description::before {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}
.SaleParameters > div .DatePicker a.fa {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  text-decoration: none;
  color: #fff !important;
  background: unset;
  border: unset;
  border-radius: unset;
  text-decoration: none !important;
}
@media only screen and (max-width: 999px) {
  .SaleParameters > div .DatePicker a.fa {
    display: none;
  }
}
.SaleParameters > div .DatePicker.Today .ControlButtons .CalendarPrev:hover {
  color: #ccc !important;
}
.SaleParameters > div .DatePicker .ControlButtons a.CalendarPrev {
  right: 30px;
}
.SaleParameters > div::before {
  font-family: FontAwesome;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: -0.125em;
  content: "\f073";
  width: 61px;
  height: 50px;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  color: white;
  text-align: center;
  border-right: none;
  font-size: 28px;
  line-height: 50px;
}
.SaleParameters.Hotel > div {
  width: 50%;
}
.SaleParameters.Hotel > div .DayShortDescription {
  display: none;
}
.SaleParameters.Hotel > div div.DatePicker a.fa {
  display: block;
}
.SaleParameters.Hotel > div.Camere {
  height: 100%;
  margin: 15px 0 0 0;
  padding: 0;
  width: 100%;
  background: none;
}
.SaleParameters.Hotel > div.Camere > .NumberSelector {
  display: none;
}
.SaleParameters.Hotel > div.Camere > label {
  color: white;
}
.SaleParameters.Hotel > div.Camere .Selector > a#ShowSelector {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 24px;
  line-height: 16px;
  text-decoration: none;
  color: white;
}
.SaleParameters.Hotel > div.Camere .Selector > a#ShowSelector::before {
  transform: translateY(-50%);
  position: absolute;
  right: 18px;
  top: 50%;
  bottom: 0;
}
.SaleParameters.Hotel > div.Camere .Selector > a#ShowSelector::after {
  content: " ";
  display: block;
  width: 1px;
  height: 100%;
  background-color: white;
  position: absolute;
  right: 50px;
}
.SaleParameters.Hotel > div.Camere .Selector .DefaultSelector, .SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector {
  top: 100%;
  width: 100%;
  z-index: 10;
  background-color: white;
  display: none;
}
.SaleParameters.Hotel > div.Camere .Selector .DefaultSelector.Visible, .SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector.Visible {
  display: block;
}
.SaleParameters.Hotel > div.Camere .Selector .DefaultSelector {
  width: 100%;
  min-width: 250px;
}
.SaleParameters.Hotel > div.Camere .Selector .DefaultSelector .Type {
  cursor: pointer;
  padding: 15px 10px;
  border: 1px solid #ccc;
  position: relative;
}
.SaleParameters.Hotel > div.Camere .Selector .DefaultSelector .Type > i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  color: black;
  font-size: 22px;
}
.SaleParameters.Hotel > div.Camere .Selector .DefaultSelector .Type:hover, .SaleParameters.Hotel > div.Camere .Selector .DefaultSelector .Type:hover > i, .SaleParameters.Hotel > div.Camere .Selector .DefaultSelector .Type.Selected, .SaleParameters.Hotel > div.Camere .Selector .DefaultSelector .Type.Selected > i {
  color: #ca0c55;
}
.SaleParameters.Hotel > div.Camere .Selector .DefaultSelector .Type:not(:first-child) {
  border-top: none;
}
@media only screen and (max-width: 759px) {
  .SaleParameters.Hotel > div.Camere .Selector .DefaultSelector .Type {
    padding: 10px 5px;
    font-size: 12px;
  }
  .SaleParameters.Hotel > div.Camere .Selector .DefaultSelector .Type > i {
    font-size: 14px;
  }
}
.SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector {
  box-shadow: 0px 0px 7px 0px #ccc;
  border: 1px solid #ccc;
  overflow: auto;
}
.SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.RoomPrototype {
  display: none;
}
.SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera {
  position: relative;
  display: flex;
  width: calc(100% - 330px);
  border-right: 1px solid #ccc;
  /*@media only screen and (max-width: 399px) {
  	font-size: 11px;

  	> div {
  		margin-top: 7px;
  	}

  	.Label label {
  		font-size: 11px;
  	}
  }*/
}
.SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera:not(:nth-last-child(3)) {
  border-bottom: 1px solid #ccc;
}
.SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera > div {
  margin: 20px 36px 20px 0;
}
@media only screen and (min-width: 760px) and (max-width: 899px) {
  .SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera > div {
    margin-right: 26px;
  }
}
@media only screen and (max-width: 399px) {
  .SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera > div {
    margin-right: 20px;
  }
}
.SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera > div:last-child {
  margin-right: 0;
}
.SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera .Index, .SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera .IndexLong {
  margin-right: 20px;
  width: 172px;
  padding: 0 20px;
  color: #1f8fcf;
  font-weight: bold;
  position: relative;
  font: bold 13px var(--font-primary, MyriadPro, sans-serif);
  text-transform: uppercase;
  align-items: center;
  text-align: center;
  display: flex;
  justify-content: center;
}
.SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera .Index::after, .SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera .IndexLong::after {
  right: 0;
  top: 0;
  position: absolute;
  display: block;
  content: " ";
  height: 100%;
  width: 1px;
  background-color: #ccc;
}
.SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera .IndexLong {
  width: 172px;
}
.SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera label {
  display: block;
  font: bold 13px var(--font-primary, MyriadPro, sans-serif);
  color: #1f8fcf;
}
@media only screen and (max-width: 899px) {
  .SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera .Index, .SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera .IndexLong, .SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera label {
    font-size: 12px;
  }
  .SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera .IndexLong, .SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera .Index {
    width: 140px;
  }
  .SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera .NumberPicker {
    height: 30px;
    width: 84px;
    display: inline-block;
  }
  .SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera .NumberPicker::after {
    width: 24px;
  }
  .SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera .NumberPicker::before {
    right: 12px;
    border-top: 6px solid black;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
  }
  .SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera .NumberPicker input {
    font-size: 18px;
    text-align: center;
    width: calc(100% - 24px);
  }
}
@media only screen and (max-width: 499px) {
  .SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera .Index, .SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera .IndexLong, .SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera label {
    font-size: 11px;
  }
  .SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera .Index {
    width: 104px;
  }
  .SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera div.Adults .NumberPicker, .SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera div.Children .NumberPicker {
    height: 30px;
    width: 64px;
    display: inline-block;
  }
  .SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera div.Adults .NumberPicker::after, .SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera div.Children .NumberPicker::after {
    width: 18px;
  }
  .SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera div.Adults .NumberPicker::before, .SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera div.Children .NumberPicker::before {
    right: 9px;
    border-top: 4px solid black;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
  }
  .SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera div.Adults .NumberPicker input, .SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera div.Children .NumberPicker input {
    font-size: 16px;
    text-align: center;
    width: calc(100% - 18px);
  }
}
.SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera a.Remove {
  display: none;
  width: 25px;
  height: 25px;
  font-size: 12px;
  line-height: 25px;
  text-align: center;
  color: white;
  background-color: #ccc;
  border: solid 1px #ccc;
  border-radius: 50%;
  position: absolute;
  right: 20px;
  top: calc(50% - 12.5px);
}
.SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera a.Remove i {
  font-size: 12px;
}
.SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.Camera a.Remove:hover {
  color: #ccc;
  background-color: white;
  text-decoration: none;
}
.SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.TaskBar a {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 11px;
  padding: 0 20px;
  font-weight: bold;
  margin: auto;
  text-transform: uppercase;
}
.SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.TaskBar a.Icon {
  padding-right: 40px;
}
.SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.TaskBar a.Icon i {
  top: 8px;
}
.SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.TaskBar a::after {
  line-height: inherit;
  font-size: 16px;
  height: 100%;
}
.SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.TaskBar a::before {
  height: 100%;
}
.SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.TaskBar a.Add {
  background-color: white;
  color: #666;
  margin-left: 20px;
}
@media only screen and (min-width: 760px) {
  .SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.TaskBar a.Add {
    margin-left: 20px;
  }
}
.SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.TaskBar a.Add.Icon {
  padding-left: 40px;
  padding-right: 20px;
}
.SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.TaskBar a.Add.Icon i {
  left: 10px;
  right: unset;
}
.SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.TaskBar a.Add i {
  margin: 0;
}
.SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.TaskBar a.Add:hover {
  background-color: #ff9900;
  color: white;
}
.SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.TaskBar a.Confirm {
  margin-right: 20px;
}
@media only screen and (min-width: 760px) {
  .SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.TaskBar a.Confirm {
    margin-right: 20px;
  }
}
.SaleParameters.Hotel > div.Camere .Selector .ExtendedSelector div.TaskBar a.Confirm:hover {
  background: #1f8fcf;
}
@media only screen and (min-width: 760px) {
  .SaleParameters.Hotel > div div.TaskBar {
    position: absolute;
    right: 0;
    height: 100%;
    top: 0;
    width: 330px;
    display: flex;
  }
}
@media only screen and (max-width: 759px) {
  .SaleParameters.Hotel > div {
    height: 40px;
    padding-left: 51px;
  }
  .SaleParameters.Hotel > div > label, .SaleParameters.Hotel > div .Description {
    font-size: 11px;
  }
  .SaleParameters.Hotel > div::before {
    width: 41px;
    height: 40px;
    left: 0;
    line-height: 40px;
    font-size: 20px;
  }
  .SaleParameters.Hotel > div::after {
    width: calc(100% + 41px);
    left: -42px;
  }
  .SaleParameters.Hotel > div #ShowSelector::before {
    right: 16px !important;
    font-size: 12px;
  }
  .SaleParameters.Hotel > div #ShowSelector::after {
    right: 40px !important;
  }
  .SaleParameters.Hotel > div.Camere div.Selector div.ExtendedSelector div.Camera {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ccc;
  }
  .SaleParameters.Hotel > div.Camere div.Selector div.ExtendedSelector div.TaskBar {
    width: 100%;
    float: right;
    margin: 20px 0;
    display: flex;
    flex-grow: 0;
    position: relative;
  }
  .SaleParameters.Hotel > div.Camere div.Selector div.ExtendedSelector div.TaskBar a {
    padding: 0 10px;
    margin-right: 0;
    margin-left: 0;
  }
  .SaleParameters.Hotel > div.Camere div.Selector div.ExtendedSelector div.TaskBar a.Add {
    margin-right: 10px;
    margin-left: auto;
  }
}
@media only screen and (max-width: 759px) and (max-width: 399px) {
  .SaleParameters.Hotel > div.Camere div.Selector div.ExtendedSelector div.TaskBar a.Add {
    margin-left: 10px;
    flex-grow: 1;
  }
}
@media only screen and (max-width: 759px) {
  .SaleParameters.Hotel > div.Camere div.Selector div.ExtendedSelector div.TaskBar a.Add.Icon {
    padding-left: 35px;
    padding-right: 15px;
  }
}
@media only screen and (max-width: 759px) and (max-width: 599px) {
  .SaleParameters.Hotel > div .DayDescription {
    display: none;
  }
  .SaleParameters.Hotel > div .DayShortDescription {
    display: unset;
  }
}
@media only screen and (max-width: 759px) and (max-width: 499px) {
  .SaleParameters.Hotel > div .DayShortDescription {
    display: none;
  }
  .SaleParameters.Hotel > div.Camere::before {
    content: none !important;
  }
  .SaleParameters.Hotel > div.Camere::after {
    width: 100%;
    left: 0;
  }
}
@media only screen and (max-width: 759px) and (max-width: 499px) {
  .SaleParameters.Hotel > div .DayShortDescription {
    display: none;
  }
}
@media only screen and (max-width: 759px) and (max-width: 399px) {
  .SaleParameters.Hotel > div {
    margin-left: 0;
    padding-left: 10px;
  }
  .SaleParameters.Hotel > div::before {
    content: none !important;
  }
  .SaleParameters.Hotel > div::after {
    width: 100%;
    left: 0;
  }
}
.SaleParameters.Scuole > div {
  width: calc(25% - 10px);
}
.SaleParameters.Scuole > div.Data::before {
  content: \f359;
}
.SaleParameters.Scuole > div.Alunni::before {
  content: \f359;
}
.SaleParameters.Scuole > div.Insegnanti::before {
  content: \f359;
}
.SaleParameters.Scuole > div.Accompagnatori::before {
  content: \f359;
}
@media only screen and (max-width: 1099px) {
  .SaleParameters.Scuole > div {
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 599px) {
  .SaleParameters.Scuole > div {
    width: 100%;
  }
}
.SaleParameters.Disabled > div {
  margin-bottom: 0 !important;
}
.SaleParameters.Disabled > div > label, .SaleParameters.Disabled > div .Description, .SaleParameters.Disabled > div .fi {
  color: #999 !important;
}
.SaleParameters.Disabled > div::before {
  background-color: #999 !important;
}
.SaleParameters.Disabled::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/SaleParameters.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Mixins.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/FontAwesome/_variables.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAGA;EAKI;EACA;EACA;EACA;;AAEA;EAVJ;IAWQ;;;AAGJ;EACI,QAdK;EAeL;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGI;EACI;IC5BZ;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IDqBgB,OExBP;IFyBO;IACA;IACA;IACA;;EAGJ;IACI;;EAGJ;IACI;;;AAIR;EApBJ;IAqBQ;;;AAGJ;EAxBJ;IAyBQ;IACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAIR;EAGI;EACA,OEnDE;EFoDF;;AAEA;EACI,kBEvDF;;AF0DF;EAXJ;IAYQ;;;AAIR;EAGI,OEpEG;EFqEH;;AAEA;EACI,kBExED;;AF4EP;EACI,OE3FK;EF4FL;EACA,kBEtFM;;AFyFV;EACI;EACA;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI,OEnGK;EFoGL;EACA;;AAEA;EALJ;IAMQ;;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAIA;EACI;EACA;;AAIR;EACI;EACA;EACA;EACA;;AAGJ;EACI;;AAGJ;EA9BJ;IA+BQ;IACA;;;AAIR;EACI;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;;AAKA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAZJ;IAaQ;;;AAIR;EACI;;AAMA;EACI;;AAKZ;ECzNJ;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EDmNQ,OAzNA;EA0NA,QA5NC;EA6ND;EACA;EACA;EACA;EACA;EACA;EACA;EACA,aApOC;;AAwOT;EACI;;AAEA;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAIA;EACI;;AAGJ;EACI;;AAIA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA,OAhSX;;AAoSG;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAIR;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI,OEhTb;;AFmTS;EACI;;AAGJ;EAvBJ;IAwBQ;IACA;;EAEA;IACI;;;AAMhB;EACI;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;EACA;AAwJA;AAAA;;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;;AAtJA;EACI;;AAGJ;EACI;;AAEA;EAHJ;IAIQ;;;AAGJ;EAPJ;IAQQ;;;AAGJ;EACI;;AAIR;EACI;EACA;EACA;EACA,OEhXV;EFiXU;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBE3Yd;;AF+YM;EACI;;AAGJ;EACI;EACA;EACA,OE7YV;;AFgZM;EACI;IACI;;EAGJ;IACI;;EAGJ;IACI;IACA;IACA;;EAEA;IACI;;EAGJ;IACI;IACA;IACA;IACA;;EAGJ;IACI;IACA;IACA;;;AAKZ;EAEI;IACI;;EAGJ;IACI;;EAIA;IACI;IACA;IACA;;EAEA;IACI;;EAGJ;IACI;IACA;IACA;IACA;;EAGJ;IACI;IACA;IACA;;;AAMhB;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBEteV;EFueU;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI,OElfd;EFmfc;EACA;;AAiBR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAEA;EACI;;AAIR;EACI;EACA;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA,OEliBf;EFmiBe,aE3gBN;;AF6gBM;EALJ;IAMQ;;;AAGJ;EACI;EACA;;AAEA;EACI;EACA;;AAIR;EACI;;AAGJ;EACI,kBEriBrB;EFsiBqB;;AAIR;EACI,cEtiBN;;AFwiBM;EAHJ;IAIQ;;;AAGJ;EACI,YE9jBlB;;AFukBV;EACI;IACI;IACA;IACA;IACA;IACA;IACA;;;AAIR;EAvXJ;IA2XQ,QAHe;IAIf;;EAEA;IACI;;EAGJ;IACI,OAVU;IAWV,QAZW;IAaX;IACA,aAdW;IAeX;;EAGJ;IACI;IACA;;EAIA;IACI;IACA;;EAGJ;IACI;;EAMA;IACI;IACA;IACA;;EAGJ;IACI;IACA;IACA;IACA;IACA;IACA;;EAEA;IACI;IACA;IACA;;EAGJ;IACI;IACA;;;AAEA;EAJJ;IAKQ;IACA;;;AA/DxB;EAkEoB;IACI;IACA;;;AASpB;EACI;IACI;;EAGJ;IACI;;;AAIR;EAEI;IACI;;EAQA;IACI;;EAGJ;IACI;IACA;;;AAKZ;EACI;IACI;;;AAIR;EA1eR;IA6eY;IACA;;EAEA;IACI;;EAGJ;IACI;IACA;;;AAMhB;EACI;;AAEA;EACI,SG60DmB;;AH10DvB;EACI,SGy0DmB;;AHt0DvB;EACI,SGq0DmB;;AHl0DvB;EACI,SGi0DmB;;AH9zDvB;EAnBJ;IAoBQ;;;AAGJ;EAvBJ;IAwBQ;;;AAKJ;EACI;;AAEA;EACI;;AAGJ;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA,SEhuBW%22%7D */
body:not(.CMS) div.Script {
  display: none; }

body.CMS div.Script {
  padding: 0 !important; }

/*# sourceMappingURL=data:application/json;base64,ewoJInZlcnNpb24iOiAzLAoJImZpbGUiOiAiQ29udGVudC9UaGVtZS9TY3JpcHQuY3NzIiwKCSJzb3VyY2VzIjogWwoJCSJDb250ZW50L1RoZW1lL1NjcmlwdC5zY3NzIgoJXSwKCSJuYW1lcyI6IFtdLAoJIm1hcHBpbmdzIjogIkFBQUEsQUFDQyxJQURHLEFBQUEsSUFBSyxDQUFBLEFBQUEsSUFBSSxFQUNaLEdBQUcsQUFBQSxPQUFPLENBQUM7RUFDVixPQUFPLEVBQUUsSUFBSSxHQUNiOztBQUdGLEFBQ0MsSUFERyxBQUFBLElBQUksQ0FDUCxHQUFHLEFBQUEsT0FBTyxDQUFDO0VBQ1YsT0FBTyxFQUFFLFlBQVksR0FDckIiCn0= */
body.Shop div.Pagamento {
  margin-bottom: 30px;
}
body.Shop footer {
  margin-top: 0;
}

body.Shop div#Content div.Shop {
  position: relative;
}
body.Shop div#Content div.Shop.famiglia div.Parametro.Date {
  display: none !important;
}
body.Shop div#Content div.Shop.SinglePage div.Step__Section:not(.Step__Section--Visible) {
  display: none;
}
body.Shop div#Content h1 {
  margin-bottom: 25px !important;
}
body.Shop div#Content h2 {
  border: none !important;
}
body.Shop div#Content h3 {
  padding-bottom: 5px;
  font-size: 20px !important;
  display: block !important;
}
@media only screen and (max-width: 759px) {
  body.Shop div#Content h3 {
    margin-bottom: 20px !important;
  }
}
@media only screen and (min-width: 760px) {
  body.Shop div#Content h3 {
    margin-bottom: 20px !important;
  }
}
body.Shop div#Content #Content .Wrap#Food div.Prodotto.Caption h3 {
  color: var(--color-brand) !important;
}
body.Shop div#Content #Content .Wrap#Food div.Prodotto .Price {
  color: var(--color-brand);
}
body.Shop div#Content #Content .Wrap#Servizi div.Prodotto.Caption h3 {
  color: #588725 !important;
}
body.Shop div#Content #Content .Wrap#Servizi div.Prodotto .Price {
  color: #588725;
}
body.Shop div#Content #Content .Wrap#Accessori div.Prodotto.Caption h3 {
  color: var(--color-brand) !important;
}
body.Shop div#Content #Content .Wrap#Accessori div.Prodotto .Price {
  color: var(--color-brand);
}
body.Shop div#Content div.StepsBar {
  margin: 0;
  margin-bottom: 40px;
  background-color: white;
  width: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 759px) {
  body.Shop div#Content div.StepsBar {
    font-size: 12px;
  }
}
@media only screen and (min-width: 760px) {
  body.Shop div#Content div.StepsBar {
    font-size: 20px;
    padding: 10px 0;
  }
}
body.Shop div#Content div.StepsBar::after {
  content: " ";
  display: block;
  clear: both;
}
body.Shop div#Content div.StepsBar .Step {
  display: inline-block;
  margin: 0;
  float: left;
  box-sizing: border-box;
  text-align: center;
  line-height: 50px;
  position: relative;
  width: calc(33.33% + 15px);
  margin-right: -15px;
  background: linear-gradient(to right, #003851, #0054a5);
}
@media only screen and (min-width: 760px) {
  body.Shop div#Content div.StepsBar .Step {
    width: calc(33.33% + 30px);
    margin-right: -30px;
  }
}
body.Shop div#Content div.StepsBar .Step:not(:first-child) {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 5% 50%, 0 0);
}
body.Shop div#Content div.StepsBar .Step > span {
  cursor: default;
}
body.Shop div#Content div.StepsBar .Step > a, body.Shop div#Content div.StepsBar .Step > span {
  display: block;
  color: white !important;
}
body.Shop div#Content div.StepsBar .Step > a > span, body.Shop div#Content div.StepsBar .Step > span > span {
  font-size: 1.1em;
  margin-right: 0.1em;
  font-weight: bold;
}
body.Shop div#Content div.StepsBar .Step a:hover {
  color: #ff9900 !important;
  text-decoration: none !important;
}
body.Shop div#Content div.StepsBar .Step.Selected {
  background: #1f8fcf;
}
body.Shop div#Content div.StepsBar.Steps-2 .Step {
  width: calc(50% + 50px) !important;
  margin-left: -50px;
}
body.Shop div#Content div.EventiSelector, body.Shop div#Content div.TurniSelector {
  position: relative;
}
body.Shop div#Content div.EventiSelector .ButtonNext, body.Shop div#Content div.EventiSelector .ButtonPrev, body.Shop div#Content div.TurniSelector .ButtonNext, body.Shop div#Content div.TurniSelector .ButtonPrev {
  font-size: 30px;
  width: 20px;
  position: absolute;
  top: 50%;
  color: var(--color-accent);
  transform: translateY(-100%);
}
body.Shop div#Content div.EventiSelector .ButtonPrev, body.Shop div#Content div.TurniSelector .ButtonPrev {
  left: -25px;
}
body.Shop div#Content div.EventiSelector .ButtonNext, body.Shop div#Content div.TurniSelector .ButtonNext {
  right: -25px;
}
body.Shop div#Content div.EventiSelector .Dots, body.Shop div#Content div.TurniSelector .Dots {
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  justify-content: center;
}
body.Shop div#Content div.EventiSelector .Dots .Dot, body.Shop div#Content div.TurniSelector .Dots .Dot {
  width: 14px;
  height: 14px;
  cursor: pointer;
  border-radius: 50%;
  background: #999;
}
body.Shop div#Content div.EventiSelector .Picker, body.Shop div#Content div.TurniSelector .Picker {
  margin-bottom: 20px;
}
body.Shop div#Content div.EventiSelector .Picker.CenteredDatePicker, body.Shop div#Content div.TurniSelector .Picker.CenteredDatePicker {
  justify-content: center;
}
body.Shop div#Content div.EventiSelector .Picker .Item, body.Shop div#Content div.TurniSelector .Picker .Item {
  padding: 5px;
  min-width: 150px;
  max-width: 150px;
  border: 1px solid #ccc;
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 4px 1px;
  color: black !important;
}
body.Shop div#Content div.EventiSelector .Picker .Item.Selected, body.Shop div#Content div.TurniSelector .Picker .Item.Selected {
  background-color: var(--color-accent);
  --highlight-color: oklch(from var(--color-accent) calc(l + 50.17) calc(c * 0.8659) calc(h - 0.30));
}
@supports not (color: oklch(from #000 l c h)) {
  body.Shop div#Content div.EventiSelector .Picker .Item.Selected, body.Shop div#Content div.TurniSelector .Picker .Item.Selected {
    --highlight-color: white;
  }
}
body.Shop div#Content div.EventiSelector .Picker .Item.Selected .Titolo, body.Shop div#Content div.EventiSelector .Picker .Item.Selected .Nota, body.Shop div#Content div.EventiSelector .Picker .Item.Selected .Single, body.Shop div#Content div.TurniSelector .Picker .Item.Selected .Titolo, body.Shop div#Content div.TurniSelector .Picker .Item.Selected .Nota, body.Shop div#Content div.TurniSelector .Picker .Item.Selected .Single {
  color: var(--highlight-color);
}
body.Shop div#Content div.EventiSelector .Picker .Item.Selected .Contenuto, body.Shop div#Content div.TurniSelector .Picker .Item.Selected .Contenuto {
  color: var(--highlight-color);
}
body.Shop div#Content div.EventiSelector .Picker .Item.Selected .Contenuto .Grande, body.Shop div#Content div.TurniSelector .Picker .Item.Selected .Contenuto .Grande {
  color: white;
}
body.Shop div#Content div.EventiSelector .Picker .Item.Selected .Contenuto .Grande::before, body.Shop div#Content div.TurniSelector .Picker .Item.Selected .Contenuto .Grande::before {
  background-color: var(--highlight-color);
}
body.Shop div#Content div.EventiSelector .Picker .Item.Selected .Nota, body.Shop div#Content div.TurniSelector .Picker .Item.Selected .Nota {
  background-color: var(--highlight-color);
  color: black;
}
body.Shop div#Content div.EventiSelector .Picker .Item.Selected .Prezzo, body.Shop div#Content div.TurniSelector .Picker .Item.Selected .Prezzo {
  color: var(--highlight-color);
}
body.Shop div#Content div.EventiSelector .Picker .Item.Selected .Prezzo strong, body.Shop div#Content div.TurniSelector .Picker .Item.Selected .Prezzo strong {
  color: var(--highlight-color) !important;
}
body.Shop div#Content div.EventiSelector .Picker .Item.Disabled, body.Shop div#Content div.TurniSelector .Picker .Item.Disabled {
  cursor: default !important;
  opacity: 0.7;
}
body.Shop div#Content div.EventiSelector .Picker .Item .Titolo, body.Shop div#Content div.TurniSelector .Picker .Item .Titolo {
  border-bottom: 1px solid #ccc;
  text-align: center;
  padding: 4px;
  margin-bottom: 5px;
  text-transform: uppercase;
  color: var(--color-accent);
}
body.Shop div#Content div.EventiSelector .Picker .Item .Single, body.Shop div#Content div.TurniSelector .Picker .Item .Single {
  text-align: center;
  padding: 4px;
  margin-top: 11px;
  color: var(--color-accent);
}
body.Shop div#Content div.EventiSelector .Picker .Item .Contenuto, body.Shop div#Content div.TurniSelector .Picker .Item .Contenuto {
  display: flex;
  justify-content: center;
  align-items: center;
}
body.Shop div#Content div.EventiSelector .Picker .Item .Contenuto .Singolo, body.Shop div#Content div.TurniSelector .Picker .Item .Contenuto .Singolo {
  display: inline-block;
  font-size: 1.5em;
  text-transform: uppercase;
  padding-top: 8px;
}
body.Shop div#Content div.EventiSelector .Picker .Item .Contenuto .Piccolo, body.Shop div#Content div.TurniSelector .Picker .Item .Contenuto .Piccolo {
  display: inline-block;
  text-transform: uppercase;
  padding-right: 10px;
}
body.Shop div#Content div.EventiSelector .Picker .Item .Contenuto .Normale, body.Shop div#Content div.TurniSelector .Picker .Item .Contenuto .Normale {
  display: inline-block;
  font-size: 1.5em;
  text-transform: uppercase;
  padding-right: 10px;
}
body.Shop div#Content div.EventiSelector .Picker .Item .Contenuto .Grande, body.Shop div#Content div.TurniSelector .Picker .Item .Contenuto .Grande {
  font-size: 2.7em;
  line-height: 1em;
  font-weight: bold;
  display: inline-block;
  color: var(--color-accent);
  padding-left: 5px;
  position: relative;
}
body.Shop div#Content div.EventiSelector .Picker .Item .Contenuto .Grande::before, body.Shop div#Content div.TurniSelector .Picker .Item .Contenuto .Grande::before {
  content: "";
  display: block;
  width: 1px;
  top: 3px;
  left: -3px;
  bottom: 5px;
  position: absolute;
  background-color: black;
}
body.Shop div#Content div.EventiSelector .Picker .Item .Nota, body.Shop div#Content div.TurniSelector .Picker .Item .Nota {
  background-color: #666;
  text-align: center;
  font-weight: bold;
  margin-top: 5px;
  color: white;
  padding: 5px;
}
body.Shop div#Content div.EventiSelector .Picker .Item .Prezzo, body.Shop div#Content div.TurniSelector .Picker .Item .Prezzo {
  font-size: 16px;
  text-align: center;
  padding: 10px 0 0 0;
}
body.Shop div#Content div.EventiSelector .Picker .Item .Prezzo strong, body.Shop div#Content div.TurniSelector .Picker .Item .Prezzo strong {
  color: black !important;
}
body.Shop div#Content div.EventiSelector .Picker .Item:not(.Selected):hover, body.Shop div#Content div.TurniSelector .Picker .Item:not(.Selected):hover {
  border: 1px solid var(--color-accent);
}
body.Shop div#Content section.PostiSelector {
  background-color: #efefef;
  padding: 60px 0 20px 0;
}
body.Shop div#Content section.PostiSelector h2 {
  margin-top: 0;
}
body.Shop div#Content section.PostiSelector h3 {
  margin-top: 0;
}
body.Shop div#Content section.PostiSelector div.SelezioneAutomatica div.TotalePosti {
  padding: 20px 0;
  text-align: center;
}
body.Shop div#Content section.PostiSelector div.SelezioneAutomatica div.TotalePosti .Label {
  text-align: center;
}
@media only screen and (max-width: 759px) {
  body.Shop div#Content section.PostiSelector div.SelezioneAutomatica div.TotalePosti .Label {
    width: 100%;
    float: right;
    text-align: right;
    margin-bottom: 20px;
  }
}
body.Shop div#Content section.PostiSelector div.SelezioneAutomatica div.TotalePosti .Label .Prezzo {
  font-size: 1.8em;
}
body.Shop div#Content section.PostiSelector div.SelezioneAutomatica div.TotalePosti a.Button {
  float: right;
  margin-right: 0;
  display: block;
  margin-left: 20px;
}
@media only screen and (max-width: 759px) {
  body.Shop div#Content section.PostiSelector div.SelezioneAutomatica div.TotalePosti a.Button {
    margin-left: 10px;
    font-size: 0.7em;
  }
}
body.Shop div#Content section.PostiSelector div.SelezioneAutomatica div.Prodotto {
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  display: grid;
  grid-template-columns: 6fr 4fr 2fr auto;
  grid-column-gap: 10px;
  align-items: center;
}
body.Shop div#Content section.PostiSelector div.SelezioneAutomatica div.Prodotto div.Quantita {
  height: 50px;
  text-align: right;
}
body.Shop div#Content section.PostiSelector div.SelezioneAutomatica div.Prodotto div.Quantita input {
  vertical-align: top;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  display: inline-block;
  border-radius: 0;
}
body.Shop div#Content section.PostiSelector div.SelezioneAutomatica div.Prodotto div.Quantita .Minus, body.Shop div#Content section.PostiSelector div.SelezioneAutomatica div.Prodotto div.Quantita .Plus {
  color: white;
  width: 25px;
  height: 100%;
  line-height: 50px;
  text-align: center;
  display: inline-block;
  user-select: none;
  background-color: #ccc;
  transition: background-color 0.4s ease;
  text-decoration: none !important;
  border: none;
}
body.Shop div#Content section.PostiSelector div.SelezioneAutomatica div.Prodotto div.Quantita .Minus:not(:disabled), body.Shop div#Content section.PostiSelector div.SelezioneAutomatica div.Prodotto div.Quantita .Plus:not(:disabled) {
  background-color: var(--color-accent);
  cursor: pointer;
}
body.Shop div#Content section.PostiSelector div.SelezioneAutomatica div.Prodotto div.Prezzo {
  text-align: center;
}
@media only screen and (min-width: 760px) {
  body.Shop div#Content section.PostiSelector div.SelezioneAutomatica {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 759px) {
  body.Shop div#Content section.PostiSelector div.SelezioneAutomatica {
    margin-bottom: 20px;
  }
}
body.Shop div#Content section.PostiSelector div.Grid {
  display: grid;
  grid-template-areas: "postiSelezionati pianta";
  grid-template-columns: 350px minmax(350px, auto);
  grid-column-gap: 30px;
  grid-row-gap: 20px;
}
@media only screen and (max-width: 759px) {
  body.Shop div#Content section.PostiSelector div.Grid {
    grid-template-areas: "pianta pianta" "postiSelezionati postiSelezionati";
    grid-template-columns: 1fr;
  }
}
body.Shop div#Content section.PostiSelector div.PostiSelezionati {
  grid-area: postiSelezionati;
  color: black;
}
body.Shop div#Content section.PostiSelector div.PostiSelezionati h3 {
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: var(--color-accent);
  padding: 10px 0 !important;
  font-weight: normal !important;
}
body.Shop div#Content section.PostiSelector div.PostiSelezionati .Button {
  margin-right: 0;
}
body.Shop div#Content section.PostiSelector div.PostiSelezionati .PostoNumerato {
  border: 1px solid #ccc;
  background-color: white;
  padding: 10px;
  color: black;
}
body.Shop div#Content section.PostiSelector div.PostiSelezionati .PostoNumerato:not(:first-child) {
  margin-top: 10px;
}
body.Shop div#Content section.PostiSelector div.PostiSelezionati .PostoNumerato::after {
  display: block;
  content: " ";
  clear: both;
}
body.Shop div#Content section.PostiSelector div.PostiSelezionati .PostoNumerato .Posto {
  font-size: 1.3em;
  font-weight: bold;
  display: inline-block;
  text-transform: uppercase;
}
body.Shop div#Content section.PostiSelector div.PostiSelezionati .PostoNumerato .Prezzo {
  font-size: 1.3em;
  font-weight: bold;
  display: inline-block;
  float: right;
  text-align: right;
  color: var(--color-accent);
}
body.Shop div#Content section.PostiSelector div.PostiSelezionati .PostoNumerato .Prevendita {
  font-size: 1em;
  font-weight: normal;
  display: inline-block;
  float: right;
  text-align: right;
  color: var(--color-accent);
  clear: right;
  padding: 5px 0;
}
body.Shop div#Content section.PostiSelector div.PostiSelezionati .PostoNumerato .Descrizione {
  margin: 10px 0;
  padding: 10px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  clear: both;
}
body.Shop div#Content section.PostiSelector div.PostiSelezionati .PostoNumerato .Rimuovi {
  text-decoration: none !important;
  line-height: 25px;
  text-align: right;
  cursor: pointer;
  color: black;
  float: right;
}
body.Shop div#Content section.PostiSelector div.PostiSelezionati .PostoNumerato .Rimuovi:hover {
  color: #991648;
}
body.Shop div#Content section.PostiSelector div.PostiSelezionati .Eventi .Evento {
  border: 1px solid #ccc;
  background-color: white;
  padding: 10px;
}
body.Shop div#Content section.PostiSelector div.PostiSelezionati .Eventi .Evento:not(:first-child) {
  margin-top: 10px;
}
body.Shop div#Content section.PostiSelector div.PostiSelezionati .Eventi .Evento::after {
  display: block;
  content: " ";
  clear: both;
}
body.Shop div#Content section.PostiSelector div.PostiSelezionati .Eventi .Evento .Titolo {
  font-size: 1.3em;
  font-weight: bold;
  display: inline-block;
  text-transform: uppercase;
}
body.Shop div#Content section.PostiSelector div.PostiSelezionati .Eventi .Evento .Descrizione {
  margin: 10px 0;
  padding: 10px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
body.Shop div#Content section.PostiSelector div.Pianta {
  min-height: 240px;
  grid-area: pianta;
  position: relative;
}
body.Shop div#Content section.PostiSelector div.Pianta div.Relative {
  border: 1px solid #ccc;
  background-color: white;
  position: relative;
}
body.Shop div#Content section.PostiSelector div.Pianta .OpenSelezioneAutomatica {
  margin: 10px;
  right: 0;
  z-index: 600;
  position: absolute;
}
body.Shop div#Content section.PostiSelector div.Pianta .Toolbar {
  display: none;
  margin: 0 10px;
  padding: 10px 0;
  height: 55px;
  border-bottom: 1px solid #ccc;
  position: relative;
}
body.Shop div#Content section.PostiSelector div.Pianta .Toolbar a#Level0 {
  position: absolute;
  cursor: pointer;
  right: 0;
  top: 10px;
  display: none;
}
body.Shop div#Content section.PostiSelector div.Pianta .ContenutoMappa {
  /*min-height: 40px;*/
}
body.Shop div#Content section.PostiSelector div.Pianta .Menu {
  display: none;
  position: absolute;
  background: white;
  border: solid 1px #999;
  z-index: 1001;
}
body.Shop div#Content section.PostiSelector div.Pianta .Menu a {
  position: relative;
  padding: 10px 20px;
  display: block;
  width: 100%;
  color: #666;
  white-space: nowrap;
}
body.Shop div#Content section.PostiSelector div.Pianta .Menu a:hover {
  background: #efefef;
  text-decoration: none !important;
}
body.Shop div#Content section.PostiSelector div.Pianta .Legenda {
  display: none;
  margin: 0 10px;
  padding: 10px 0;
  border-top: 1px solid #ccc;
  position: relative;
}
body.Shop div#Content section.PostiSelector div.Pianta .Legenda div.Cell {
  position: relative;
  float: left;
  padding: 10px 20px 10px 0;
}
body.Shop div#Content section.PostiSelector div.Pianta .Legenda div.Cell i {
  margin-right: 5px;
}
body.Shop div#Content section.PostiSelector div.Pianta .Legenda div.Cell:not(.NonDisponibile).Active {
  cursor: pointer;
}
body.Shop div#Content section.PostiSelector div.Pianta .Legenda div.Cell.NonDisponibile {
  color: #666;
}
body.Shop div#Content section.PostiSelector div.Pianta .Legenda .Menu {
  bottom: 100%;
}
body.Shop div#Content section.PostiSelector div.Pianta svg #Frame {
  display: none;
}
body.Shop div#Content section.PostiSelector div.Pianta svg #Box {
  pointer-events: auto;
  cursor: pointer;
  filter: drop-shadow(8px 8px 5px black);
}
body.Shop div#Content section.PostiSelector div.Pianta svg #Box * {
  pointer-events: auto;
  fill: #fff;
}
body.Shop div#Content section.PostiSelector div.Pianta svg #Background {
  stroke-width: 0px;
}
body.Shop div#Content section.PostiSelector div.Pianta svg g#Background path, body.Shop div#Content section.PostiSelector div.Pianta svg path#Background, body.Shop div#Content section.PostiSelector div.Pianta svg rect#Background, body.Shop div#Content section.PostiSelector div.Pianta svg polygon#Background {
  pointer-events: auto;
  transition: fill 500ms, stroke-opacity 800ms;
  fill: rgba(0, 0, 0, 0);
  cursor: pointer;
}
body.Shop div#Content section.PostiSelector div.Pianta svg #Text, body.Shop div#Content section.PostiSelector div.Pianta svg #Text * {
  filter: none !important;
  z-index: 2000;
}
body.Shop div#Content section.PostiSelector div.Pianta svg text {
  font-family: var(--font-primary, MyriadPro, sans-serif) !important;
}
body.Shop div#Content section.PostiSelector div.Pianta svg.over g#Background path, body.Shop div#Content section.PostiSelector div.Pianta svg.over path#Background, body.Shop div#Content section.PostiSelector div.Pianta svg.over rect#Background, body.Shop div#Content section.PostiSelector div.Pianta svg.over polygon#Background {
  fill: rgba(0, 0, 0, 0.2);
}
body.Shop div#Content section.PostiSelector div.Pianta svg.Labels text {
  font-family: "Arial Rounded MT";
  font-size: 7px;
  text-anchor: middle;
  fill: black;
}
body.Shop div#Content section.PostiSelector div.Pianta .leaflet-bar {
  border: none;
}
body.Shop div#Content section.PostiSelector div.Pianta .leaflet-map-pane, body.Shop div#Content section.PostiSelector div.Pianta .leaflet-overlay-pane {
  bottom: 0;
  right: 0;
}
body.Shop div#Content section.PostiSelector div.Pianta .leaflet-control-zoom-in,
body.Shop div#Content section.PostiSelector div.Pianta .leaflet-control-zoom-out {
  text-decoration: none;
  display: inline-block;
  border-radius: unset;
  color: #999 !important;
  margin-right: 2px;
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
}
body.Shop div#Content section.PostiSelector div.Pianta .leaflet-control-zoom-in:not(.leaflet-disabled):hover,
body.Shop div#Content section.PostiSelector div.Pianta .leaflet-control-zoom-out:not(.leaflet-disabled):hover {
  text-decoration: none !important;
  color: black !important;
}
body.Shop div#Content section.PostiSelector div.Pianta .leaflet-control-zoom-in.leaflet-disabled,
body.Shop div#Content section.PostiSelector div.Pianta .leaflet-control-zoom-out.leaflet-disabled {
  opacity: 0.5;
}
body.Shop div#Content section.PostiSelector div.Pianta div.Popup {
  z-index: 401;
  padding: 20px;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  min-height: 40px;
  width: 60%;
  text-align: center;
  display: none;
  background-color: white;
  border: solid 1px #ccc;
}
body.Shop div#Content section.PostiSelector div.Pianta div.Popup div#PostoViewer {
  display: none;
  width: 100%;
  height: 300px;
}
body.Shop div#Content section.PostiSelector div.Pianta div.Popup aa.Button {
  text-transform: lowercase;
  display: inline-block;
  margin-bottom: 0;
  padding: 0 50px;
}
body.Shop div#Content section.PostiSelector div.Pianta div.Popup ah3 {
  color: black;
  font-weight: bold;
  font-size: 30px;
}
body.Shop div#Content section.PostiSelector div.Pianta div.Popup div.SelezioneTipoTitolo {
  display: none;
  margin-bottom: 30px;
}
body.Shop div#Content section.PostiSelector div.Pianta div.Popup .Fila, body.Shop div#Content section.PostiSelector div.Pianta div.Popup .Posto {
  color: var(--color-accent);
}
body.Shop div#Content section.PostiSelector div.Pianta div.Popup.Error {
  text-align: left;
}
body.Shop div#Content section.PostiSelector div.Pianta div.Popup.Error h3 {
  padding-top: 0;
  margin-bottom: 0;
}
body.Shop div#Content section.PostiSelector div.Pianta div.Popup.Error span.ErrorPlaceholder span.Error {
  font-size: 14px;
  text-align: left;
}
body.Shop div#Content section.PostiSelector div.Pianta div.Popup.Error a.Chiudi {
  font-size: 21px;
  position: absolute;
  top: 20px;
  right: 20px;
  color: black;
}
body.Shop div#Content section.PostiSelector div.Pianta div.Popup.Error a.Chiudi:hover {
  color: var(--color-accent);
}
body.Shop div#Content section.PostiSelector.NoChart div.Grid {
  grid-template-columns: 0 auto;
  grid-column-gap: 0;
  grid-row-gap: 0;
}
body.Shop div#Content section.PostiSelector.NoChart div.PostiSelezionati {
  display: none;
}
body.Shop div#Content section.MultiEventiSelector {
  --event-gap: 10px;
}
body.Shop div#Content section.MultiEventiSelector div.EventList {
  display: flex;
  flex-wrap: wrap;
  overflow: visible;
  gap: var(--event-gap);
  justify-content: center;
}
@media only screen and (min-width: 600px) {
  body.Shop div#Content section.MultiEventiSelector div.EventList {
    --event-gap: 20px;
  }
}
body.Shop div#Content section.MultiEventiSelector div.EventList div.Event {
  --event-background-color: white;
  --event-text-color: var(--color-accent);
  width: 100%;
  padding: 10px;
  cursor: pointer;
  border: solid 1px #ccc;
  color: var(--event-text-color);
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 4px 1px;
  background-color: var(--event-background-color);
}
@media only screen and (min-width: 600px) {
  body.Shop div#Content section.MultiEventiSelector div.EventList div.Event {
    width: calc(50% - var(--event-gap) / 2);
    --event-gap: 20px;
  }
}
body.Shop div#Content section.MultiEventiSelector div.EventList div.Event.Event--Selected {
  --event-background-color: var(--color-accent);
  --event-text-color: white;
  cursor: default;
}
body.Shop div#Content section.MultiEventiSelector div.EventList div.Event div.Title {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--event-text-color);
}
body.Shop div#Content section.MultiEventiSelector div.EventList div.Event div.Nota {
  background-color: var(--event-text-color);
  color: var(--event-background-color);
  text-align: center;
  font-weight: bold;
  margin-top: 5px;
  padding: 10px;
}
body.Shop div#Content div.Raggruppamento {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
body.Shop div#Content div.Raggruppamento section.PostiSelector {
  background-color: transparent;
  padding: 0;
}
body.Shop div#Content div.Raggruppamento.Centered {
  justify-content: center;
}
body.Shop div#Content div.Raggruppamento.Nascosto {
  display: none;
}
body.Shop div#Content div.Raggruppamento[data-bundle=Famiglia] .Prodotto.Caption:nth-child(odd) h3, body.Shop div#Content div.Raggruppamento[data-bundle=Famiglia] .Prodotto.Caption:nth-child(odd) h4 {
  color: #1f8fcf !important;
}
body.Shop div#Content div.Raggruppamento[data-bundle=Famiglia] .Prodotto.Caption:nth-child(even) h3, body.Shop div#Content div.Raggruppamento[data-bundle=Famiglia] .Prodotto.Caption:nth-child(even) h4 {
  color: #588725 !important;
}
body.Shop div#Content div.Raggruppamento[data-bundle=Famiglia] .Prodotto.Caption.Bottom h3 {
  border-bottom: none;
}
body.Shop div#Content div.Raggruppamento[data-bundle=Famiglia] .Prodotto:not(.Caption).BackgroundImage div.Content {
  padding-top: 200px;
}
body.Shop div#Content div.Raggruppamento[data-bundle=Famiglia] .Prodotto:not(.Caption).BackgroundImage div.Content h4 {
  font-size: 24px !important;
}
body.Shop div#Content div.Raggruppamento[data-bundle=Famiglia] .Prodotto:not(.Caption).BackgroundImage div.Content .Price, body.Shop div#Content div.Raggruppamento[data-bundle=Famiglia] .Prodotto:not(.Caption).BackgroundImage div.Content .Note strong {
  color: white !important;
}
body.Shop div#Content div.Raggruppamento[data-bundle=Famiglia] .Prodotto:not(.Caption).BackgroundImage div.Content .BackgroundWrapper {
  height: 200px;
}
body.Shop div#Content div.Raggruppamento[data-bundle=Famiglia] .Prodotto:not(.Caption).BackgroundImage div.Content .Note {
  color: #ccc;
}
body.Shop div#Content div.Raggruppamento[data-bundle=Famiglia] .Prodotto:not(.Caption).BackgroundImage a.Information i {
  color: white;
}
body.Shop div#Content div.Raggruppamento[data-bundle=Famiglia] .Prodotto:not(.Caption).BackgroundImage:nth-child(odd) {
  background-color: #003851 !important;
}
body.Shop div#Content div.Raggruppamento[data-bundle=Famiglia] .Prodotto:not(.Caption).BackgroundImage:nth-child(odd) h4 {
  border-bottom: dotted #003851 5px;
}
body.Shop div#Content div.Raggruppamento[data-bundle=Famiglia] .Prodotto:not(.Caption).BackgroundImage:nth-child(even) {
  background-color: #588725 !important;
}
body.Shop div#Content div.Raggruppamento[data-bundle=Famiglia] .Prodotto:not(.Caption).BackgroundImage:nth-child(even) h4 {
  border-bottom: dotted #588725 5px;
}
@media only screen and (min-width: 760px) and (max-width: 799px), only screen and (max-width: 759px) {
  body.Shop div#Content div.Raggruppamento[data-bundle=Famiglia] .Prodotto:nth-child(even) {
    order: 2;
  }
  body.Shop div#Content div.Raggruppamento[data-bundle=Famiglia] .Prodotto:nth-child(odd) {
    order: 1;
  }
  body.Shop div#Content div.Raggruppamento[data-bundle=Famiglia] .Prodotto.More {
    order: 3;
  }
}
body.Shop div#Content div.Raggruppamento div.Prodotto {
  position: relative;
  border-top: solid 1px #ccc;
  border-left: solid 1px #ccc;
  border-right: solid 1px #ccc;
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 4px 1px;
}
body.Shop div#Content div.Raggruppamento div.Prodotto h3 {
  margin-bottom: 0 !important;
}
body.Shop div#Content div.Raggruppamento div.Prodotto h4 {
  font-size: 16px !important;
  font-weight: bold !important;
  color: var(--color-accent) !important;
  width: calc(100% + 30px);
  margin: -15px 0 20px -15px !important;
  padding: 10px 15px;
  border-bottom: solid 1px #ccc;
}
body.Shop div#Content div.Raggruppamento div.Prodotto a.Information {
  position: absolute;
  z-index: 2;
  right: 15px;
  top: 15px;
  text-align: right;
}
body.Shop div#Content div.Raggruppamento div.Prodotto a.Information i {
  color: var(--color-accent);
  position: relative;
  font-size: 20px;
}
body.Shop div#Content div.Raggruppamento div.Prodotto a.Information i::after {
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  z-index: -1;
  content: " ";
  position: absolute;
  border-radius: 50%;
  background-color: white;
}
body.Shop div#Content div.Raggruppamento div.Prodotto a.Information i::before {
  width: 20px;
  height: 20px;
  display: inline-block;
}
body.Shop div#Content div.Raggruppamento div.Prodotto a.Information.Open i::before {
  content: "\f057";
}
body.Shop div#Content div.Raggruppamento div.Prodotto .Note {
  font-size: 13px;
  line-height: 1.2;
  position: relative;
  color: #999;
  margin-top: 10px;
}
body.Shop div#Content div.Raggruppamento div.Prodotto .Note i {
  position: relative;
  font-size: 6px;
  top: -2px;
}
body.Shop div#Content div.Raggruppamento div.Prodotto .Price {
  font-weight: bold;
  color: var(--color-accent);
  font-size: 34px;
}
body.Shop div#Content div.Raggruppamento div.Prodotto .Price .Currency {
  font-size: 0.6em;
  position: relative;
  display: inline-block;
}
body.Shop div#Content div.Raggruppamento div.Prodotto .StrikedPrice {
  display: flex;
  flex-flow: column wrap;
  color: #999;
  padding-right: 5px;
  font-weight: normal;
  margin-top: 2px;
  float: left;
}
body.Shop div#Content div.Raggruppamento div.Prodotto .StrikedPrice span.PrezzoIntero {
  font-size: 16px;
  position: relative;
  display: inline-block;
}
body.Shop div#Content div.Raggruppamento div.Prodotto .StrikedPrice span.PrezzoIntero::before {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #666;
  width: 100%;
  top: 40%;
  left: 0;
}
body.Shop div#Content div.Raggruppamento div.Prodotto .StrikedPrice span.Currency {
  font-size: 12px;
  margin-left: -2px;
  position: relative;
  display: inline-block;
}
body.Shop div#Content div.Raggruppamento div.Prodotto .StrikedPrice span.InCassa {
  font-size: 10px;
}
body.Shop div#Content div.Raggruppamento div.Prodotto .Orario .Error {
  width: 100%;
  padding: 7px 10px;
  background: #fcc;
  margin-top: 10px;
}
body.Shop div#Content div.Raggruppamento div.Prodotto .Orario .Error::before {
  font-family: FontAwesome;
  content: "\f071";
}
body.Shop div#Content div.Raggruppamento div.Prodotto div.Content {
  padding: 15px 15px;
}
body.Shop div#Content div.Raggruppamento div.Prodotto div.Bar {
  z-index: 1;
}
body.Shop div#Content div.Raggruppamento div.Prodotto div.Bar div.Note {
  margin-top: 20px;
}
body.Shop div#Content div.Raggruppamento div.Prodotto div.Bar div.NumberPicker {
  float: right;
}
body.Shop div#Content div.Raggruppamento div.Prodotto div.Bar div.Quantities div.Quantity1, body.Shop div#Content div.Raggruppamento div.Prodotto div.Bar div.Quantities div.Quantity2 {
  margin-bottom: 10px;
}
body.Shop div#Content div.Raggruppamento div.Prodotto div.Bar div.Quantities div.Quantity1 div.NumberPicker, body.Shop div#Content div.Raggruppamento div.Prodotto div.Bar div.Quantities div.Quantity2 div.NumberPicker {
  float: none !important;
  margin-top: 5px;
}
body.Shop div#Content div.Raggruppamento div.Prodotto div.Bar::after {
  content: " ";
  display: block;
  clear: both;
}
body.Shop div#Content div.Raggruppamento div.Prodotto div.Bar--Link {
  display: flex;
  flex-wrap: wrap;
}
body.Shop div#Content div.Raggruppamento div.Prodotto div.Bar--Link a.Link {
  order: 1;
  font-size: 28px;
}
body.Shop div#Content div.Raggruppamento div.Prodotto div.Bar--Link .Price {
  order: 0;
  flex-grow: 1;
}
body.Shop div#Content div.Raggruppamento div.Prodotto div.Bar--Link div.Note {
  flex: 1;
  order: 2;
  margin-top: 25px;
  flex-basis: 100%;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.BackgroundImage div.Content {
  padding-top: 125px;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.BackgroundImage div.Content div.BackgroundWrapper {
  height: 110px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.BackgroundImage div.Content div.BackgroundWrapper div.Background {
  height: 100%;
  background: center no-repeat;
  background-size: cover;
  transition: transform 300ms linear;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.BackgroundImage div.Content div.BackgroundWrapper::after {
  position: relative;
  top: -4px;
  margin-top: 0;
  z-index: 2;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.BackgroundImage div.Content .Error {
  padding: 0 !important;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.BackgroundImage div.Content div.Bar div.NumberPicker {
  float: right;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.BackgroundImage div.Content div.Bar div.Note {
  width: 100%;
  margin-top: 10px;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.BackgroundImage div.Content div.Bar--Link div.Note {
  margin-top: 15px;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.BackgroundImage.DoubleHeight div.Content {
  padding-top: 235px;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.BackgroundImage.DoubleHeight div.Content div.BackgroundWrapper {
  height: 220px;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.More {
  box-shadow: none;
  min-height: 0;
  text-align: center;
  border-radius: 50px;
  font-size: 20px;
  border: unset;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.More a {
  display: block;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.Caption {
  border: none;
  box-shadow: unset;
  background: top no-repeat;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.Caption:not(.Famiglia) {
  width: 100%;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.Caption h4 {
  margin: 100px 0 0 !important;
  padding: 10px 0 0 0 !important;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.Caption span {
  display: block;
  text-align: center;
  font-size: 14px;
}
body.Shop div#Content div.Raggruppamento div.Prodotto div.CheckBox.Flag {
  float: right;
  font-size: 32px;
  margin-left: 10px;
  color: #999 !important;
  line-height: unset !important;
}
body.Shop div#Content div.Raggruppamento div.Prodotto div.CheckBox.Flag.ReadOnly a {
  color: #666 !important;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.Nascosto {
  display: none;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.Editing {
  background-color: #efefef;
}
body.Shop div#Content div.Raggruppamento div.Prodotto[visible=false] {
  display: none !important;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.ProdottoHotel.Soggiorno h4 {
  margin-bottom: 20px;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.ProdottoHotel.Camera {
  padding-bottom: 30px;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.ProdottoHotel.Camera h4 {
  margin-bottom: 30px;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.ProdottoHotel.Camera.Prototype {
  display: none;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.ProdottoHotel input {
  margin-bottom: 0;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.ProdottoHotel div.DatePicker input {
  width: 120px !important;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.ProdottoHotel div.Box {
  width: 100%;
  background-color: #ccc;
  padding: 10px;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.ProdottoHotel div.Date {
  float: left;
  margin-left: 20px;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.ProdottoHotel div.Date:first-child {
  margin-left: 0;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.ProdottoHotel div.Quantity {
  clear: left;
  margin-top: 20px;
  height: 40px;
  position: relative;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.ProdottoHotel div.Quantity span.Label {
  float: left;
  min-width: 140px;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.ProdottoHotel div.Quantity label {
  float: left;
  font-size: 16px;
  line-height: 40px;
  margin-bottom: 0;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.ProdottoHotel div.Quantity div.NumberSelector {
  float: left;
  padding-right: 14px;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.ProdottoHotel div.Quantity div.NumberSelector input {
  width: 40px;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.ProdottoHotel div.Quantity span.Price {
  position: absolute;
  left: 0;
  margin-top: 35px;
  font-size: 14px;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.ProdottoHotel div.Quantity a.Information {
  float: left;
  width: auto;
  top: unset;
  left: unset;
  right: unset;
  line-height: 40px;
  margin-left: 10px;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.ProdottoHotel div.Quantity a.Information i {
  color: #999 !important;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.ProdottoHotel div.Quantity a.Information span.Tooltip {
  position: absolute;
  width: auto;
  right: 0;
  left: unset;
  white-space: nowrap;
  margin-top: 10px;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.ProdottoHotel span.Error, body.Shop div#Content div.Raggruppamento div.Prodotto.ProdottoHotel span.ErrorPlaceholder {
  margin-top: 30px;
  padding: 0;
}
body.Shop div#Content div.Raggruppamento div.Prodotto:hover div.Background {
  transform: scale(1.2);
}
body.Shop div#Content div.Raggruppamento div.Prodotto div.ExtraPanel {
  display: none;
  z-index: 10;
  position: relative;
  top: 100%;
  color: var(--color-accent);
  border-top: 1px solid #ccc;
  background-color: #efefef;
  padding: 20px;
  width: 100%;
  font-size: 12px;
  line-height: 1.2;
}
body.Shop div#Content div.Raggruppamento div.Prodotto div.ExtraPanel.Error::before {
  background-color: #900;
}
body.Shop div#Content div.Raggruppamento div.Prodotto div.ExtraPanel.RigheProdotto {
  padding-top: 0;
}
body.Shop div#Content div.Raggruppamento div.Prodotto div.ExtraPanel.RigheProdotto p.Row {
  margin-top: 5px;
  margin-bottom: 0;
}
body.Shop div#Content div.Raggruppamento div.Prodotto div.ExtraPanel.RigheProdotto p.Row.Totale {
  border-top: 1px solid #999;
  padding-top: 10px;
  font-weight: bold;
  font-size: 1.2em;
}
body.Shop div#Content div.Raggruppamento div.Prodotto div.ExtraPanel.RigheProdotto div.RigaProdotto {
  position: relative;
  padding-top: 30px;
  margin-left: -10px;
}
body.Shop div#Content div.Raggruppamento div.Prodotto div.ExtraPanel.RigheProdotto div.RigaProdotto:not(:last-child)::after {
  padding-top: 10px;
  width: calc(100% + 30px);
  content: " ";
  display: block;
  margin-left: -10px;
  border-bottom: 1px solid #999;
}
body.Shop div#Content div.Raggruppamento div.Prodotto div.ExtraPanel.RigheProdotto div.RigaProdotto div.Group {
  padding-left: 10px;
  padding-right: 0;
}
body.Shop div#Content div.Raggruppamento div.Prodotto div.ExtraPanel.RigheProdotto div.RigaProdotto div.DatePicker input {
  width: 200px !important;
}
body.Shop div#Content div.Raggruppamento div.Prodotto div.ExtraPanel.RigheProdotto div.RigaProdotto div.DataRitiro {
  width: calc(100% - 123px);
  padding-right: 0;
  padding-left: 0;
}
@media only screen and (max-width: 399px) {
  body.Shop div#Content div.Raggruppamento div.Prodotto div.ExtraPanel.RigheProdotto div.RigaProdotto div.DataRitiro {
    width: 180px !important;
  }
}
body.Shop div#Content div.Raggruppamento div.Prodotto div.ExtraPanel.RigheProdotto div.RigaProdotto div.DataRitiro input {
  width: 100%;
}
body.Shop div#Content div.Raggruppamento div.Prodotto div.ExtraPanel.RigheProdotto div.RigaProdotto input, body.Shop div#Content div.Raggruppamento div.Prodotto div.ExtraPanel.RigheProdotto div.RigaProdotto select {
  background-color: white;
}
body.Shop div#Content div.Raggruppamento div.Prodotto div.ExtraPanel.RigheProdotto div.RigaProdotto .Remove {
  color: var(--color-dark-brand);
  position: absolute;
  cursor: pointer;
  font-size: 15px;
  top: 10px;
  right: 0;
}
body.Shop div#Content div.Raggruppamento div.Prodotto div.ExtraPanel.RigheProdotto div.RigaProdotto .Edit {
  color: var(--color-dark-brand);
  position: absolute;
  font-size: 15px;
  cursor: pointer;
  right: 20px;
  top: 10px;
}
body.Shop div#Content div.Raggruppamento div.Prodotto div.ExtraPanel.RigheProdotto div.Toolbar {
  display: flex;
  padding-top: 20px;
  justify-content: flex-end;
}
body.Shop div#Content div.Raggruppamento div.Prodotto div.ExtraPanel.RigheProdotto div.Toolbar i {
  margin-left: 5px;
}
body.Shop div#Content div.Raggruppamento div.Prodotto div.ExtraPanel.RigheProdotto div.Toolbar a {
  text-decoration: none;
}
body.Shop div#Content div.Raggruppamento.SvelaNascosti div.Prodotto.Nascosto {
  display: block !important;
}
body.Shop div#Content div.Raggruppamento.SvelaNascosti div.Prodotto.More a i.Minus {
  display: block;
}
body.Shop div#Content div.Raggruppamento.SvelaNascosti div.Prodotto.More a i.Plus {
  display: none;
}
body.Shop div#Content div.BundleNote {
  margin-top: 20px !important;
  margin-bottom: 30px !important;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 13px !important;
  color: black;
}
body.Shop div#Content div.BundleNote * {
  font-size: 13px !important;
}
body.Shop div#Content div.BundleNote::before {
  z-index: -1;
  position: absolute;
  left: 30px;
  top: 0;
  right: 30px;
  bottom: 0;
  content: " ";
  display: block;
  background: #efefef;
}
@media only screen and (max-width: 759px) {
  body.Shop div#Content div.BundleNote {
    padding: 10px 25px;
  }
  body.Shop div#Content div.BundleNote::before {
    left: 10px;
    right: 10px;
  }
}
body.Shop div#Content div.Coupon {
  margin: 40px auto;
  max-width: 1280px;
  padding: 0 20px;
}
body.Shop div#Content div.Coupon div.Field {
  position: relative;
  text-align: center;
}
body.Shop div#Content div.Coupon div.Field input {
  border: 1px solid var(--color-accent);
  padding-right: 36px !important;
  text-align: center !important;
  height: 34px;
}
body.Shop div#Content div.Coupon div.Field .Icon {
  position: absolute;
  background-color: var(--color-accent);
  border-radius: 0 5px 5px 0;
  top: 2px;
  right: 2px;
  font-size: 20px;
  line-height: 30px;
  width: 30px;
  text-align: center;
  color: white !important;
}
body.Shop div#Content div.Coupon div.Field .Icon i {
  margin-left: 0 !important;
}
body.Shop div#Content div.Coupon.NoDateCoupon {
  position: relative;
}
body.Shop div#Content div.Coupon.NoDateCoupon label {
  color: black;
  margin-right: 10px;
  width: 100%;
}
body.Shop div#Content div.Coupon.NoDateCoupon div.Field {
  width: 180px;
  display: inline-block;
}
body.Shop div#Content div.Coupon.NoDateCoupon div.Field input {
  text-align: left !important;
}
body.Shop div#Content div.Date.Parametro {
  color: white;
  height: 100%;
  z-index: 1;
  position: relative;
  align-items: center;
  justify-content: center;
}
body.Shop div#Content div.Date.Parametro h3 {
  text-align: center;
}
body.Shop div#Content div.Date.Parametro::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-color: #efefef;
}
@media only screen and (min-width: 760px) {
  body.Shop div#Content div.Date.Parametro {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 759px) {
  body.Shop div#Content div.Date.Parametro {
    padding-top: 25px;
  }
}
body.Shop div#Content div.Date.Parametro .Error {
  color: #900;
}
body.Shop div#Content div.Date.Parametro .Content {
  padding: 25px 0;
  color: #00ccff;
}
@media only screen and (min-width: 760px) {
  body.Shop div#Content div.Date.Parametro .Content {
    float: left;
    width: calc(100% - 210px);
  }
}
body.Shop div#Content div.Date.Parametro div.Tickets {
  border-bottom: 1px solid #0054a5;
}
body.Shop div#Content div.Date.Parametro div.Tickets .Ticket {
  float: left;
  width: 50%;
  background-color: #1f8fcf;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  line-height: 50px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: white !important;
  text-decoration: none !important;
  text-align: center;
}
body.Shop div#Content div.Date.Parametro div.Tickets .Ticket:not(:first-child) {
  border-left: 1px solid #0054a5;
}
body.Shop div#Content div.Date.Parametro div.Tickets span.Ticket {
  background-color: #ff9900;
  cursor: default;
}
body.Shop div#Content div.Date.Parametro div.Tickets::after {
  clear: both;
  content: " ";
  display: block;
}
body.Shop div#Content div.Date.Parametro div.TicketsContainer {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}
body.Shop div#Content div.Date.Parametro div.TicketsContainer .Ticket:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: black;
  background-color: #fff;
}
body.Shop div#Content div.Date.Parametro div.TicketsContainer .Ticket:nth-child(2):not(.Active) {
  display: none;
}
@media only screen and (min-width: 760px) {
  body.Shop div#Content div.Date.Parametro div.TicketsContainer .Ticket:nth-child(2) {
    padding: 90px 30px 10px 30px;
  }
}
@media only screen and (max-width: 759px) {
  body.Shop div#Content div.Date.Parametro div.TicketsContainer .Ticket:nth-child(2) {
    padding: 90px 10px 10px 10px;
  }
}
body.Shop div#Content div.Date.Parametro div.TicketsContainer .Ticket:nth-child(2)::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  clip-path: polygon(0 0, 100% 0, 100% 60px, 55% 60px, 50% 90px, 45% 60px, 0 60px);
  display: block;
  content: " ";
  background-color: #ff9900;
}
body.Shop div#Content div.Date.Parametro div.TicketsContainer .Ticket:nth-child(2) .TicketContent {
  transform: translateY(-100%);
  position: relative;
  top: 50%;
  text-align: center;
}
body.Shop div#Content div.Date.Parametro div.TicketsContainer .Ticket:nth-child(2) .TicketFooter {
  position: absolute;
  padding: 25px 10px;
  bottom: 0;
  left: 0;
  border-top: 1px solid #ccc;
  background-color: #efefef;
}
body.Shop div#Content div.Date.Parametro div.TicketsContainer .Ticket:nth-child(2) .TicketFooter p {
  margin-top: 0 !important;
}
body.Shop div#Content div.Date.Parametro div.TicketsContainer .Ticket:nth-child(2) .TicketFooter.Icon {
  padding-left: 70px;
}
body.Shop div#Content div.Date.Parametro div.TicketsContainer .Ticket:nth-child(2) .TicketFooter.Icon i {
  position: absolute;
  font-size: 30px;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
body.Shop div#Content div.Date.Parametro div.TicketsContainer .Ticket:nth-child(2) i {
  color: #003851;
}
body.Shop div#Content div.Date.Parametro div.TicketsContainer .Ticket:nth-child(2) a {
  color: #ca0c55 !important;
  text-decoration: underline !important;
}
body.Shop div#Content div.Date.Parametro div.FasceGroup div.Divider {
  background-color: white;
}
body.Shop div#Content div.Date.Parametro div.Calendar {
  padding: 0;
  border: none;
  box-shadow: none;
  background-color: white;
  border-radius: var(--style-calendar-radius);
  --color-shop-calendar-selected-color: white;
  --color-shop-calendar-selected-bg: var(--color-accent);
}
body.Shop div#Content div.Date.Parametro div.Calendar table.Plain {
  border: 2px solid var(--color-shop-calendar-theme-color, var(--color-accent));
  border-collapse: separate;
  overflow: hidden;
  border-radius: 0 0 var(--style-calendar-radius) var(--style-calendar-radius);
}
body.Shop div#Content div.Date.Parametro div.Calendar tr.Last__Visible__Row > :first-child {
  border-radius: 0 0 0 var(--style-calendar-radius);
}
body.Shop div#Content div.Date.Parametro div.Calendar tr.Last__Visible__Row > :last-child {
  border-radius: 0 0 var(--style-calendar-radius) 0;
}
body.Shop div#Content div.Date.Parametro div.Calendar span.Month {
  display: block;
  background-color: var(--color-shop-calendar-theme-color, var(--color-accent));
  text-transform: lowercase;
  color: white;
  line-height: 40px;
  font-size: 22px;
  border-radius: var(--style-calendar-radius) var(--style-calendar-radius) 0 0;
}
body.Shop div#Content div.Date.Parametro div.Calendar a.Arrow, body.Shop div#Content div.Date.Parametro div.Calendar i {
  color: white !important;
  line-height: 40px;
  top: 0;
}
body.Shop div#Content div.Date.Parametro div.Calendar a.Arrow:not(.Active) {
  display: none;
}
body.Shop div#Content div.Date.Parametro div.Calendar th, body.Shop div#Content div.Date.Parametro div.Calendar td {
  background-color: white;
  opacity: 1;
}
body.Shop div#Content div.Date.Parametro div.Calendar th {
  color: var(--color-shop-calendar-theme-color, var(--color-accent));
  font-weight: bold;
  font-size: 18px;
}
body.Shop div#Content div.Date.Parametro div.Calendar td {
  border: 1px solid var(--color-shop-calendar-theme-color, var(--color-accent));
  text-align: center;
  font-weight: bold;
  color: black;
  position: relative;
  margin-bottom: 100%;
  padding: 0;
  border-collapse: collapse;
  overflow: hidden;
}
body.Shop div#Content div.Date.Parametro div.Calendar td > div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 3px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body.Shop div#Content div.Date.Parametro div.Calendar td div.SoldOut,
body.Shop div#Content div.Date.Parametro div.Calendar td div.PrenotazioniEsaurite {
  font-weight: normal;
  margin-top: 2px;
  font-size: 0.7em;
  display: none;
}
body.Shop div#Content div.Date.Parametro div.Calendar td::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
body.Shop div#Content div.Date.Parametro div.Calendar td.CustomBackground {
  color: white;
}
body.Shop div#Content div.Date.Parametro div.Calendar td.Active:hover::before {
  background-color: var(--color-accent);
  opacity: 0.3;
}
body.Shop div#Content div.Date.Parametro div.Calendar td.Active {
  cursor: pointer;
}
body.Shop div#Content div.Date.Parametro div.Calendar td.CurrentMonth {
  background-color: white;
}
body.Shop div#Content div.Date.Parametro div.Calendar td.CurrentMonth:not(.Active) {
  color: #ccc;
}
body.Shop div#Content div.Date.Parametro div.Calendar td:not(.CurrentMonth) {
  background-color: #efefef;
  color: #ccc;
}
body.Shop div#Content div.Date.Parametro div.Calendar td.SoldOut {
  color: #900;
}
body.Shop div#Content div.Date.Parametro div.Calendar td.SoldOut div.SoldOut {
  display: block;
}
body.Shop div#Content div.Date.Parametro div.Calendar td.PrenotazioniEsaurite {
  color: #900;
}
body.Shop div#Content div.Date.Parametro div.Calendar td.PrenotazioniEsaurite div.PrenotazioniEsaurite {
  display: block;
}
body.Shop div#Content div.Date.Parametro div.Calendar td.Selected {
  background-color: var(--color-shop-calendar-selected-bg, var(--color-accent)) !important;
  color: var(--color-shop-calendar-selected-color, white);
}
body.Shop div#Content div.Date.Parametro div.Calendar td.Selected > div {
  border: solid 4px white;
}
body.Shop div#Content div.Date.Parametro div.Calendar td.Yellow .Price {
  color: #ffcc33;
}
body.Shop div#Content div.Date.Parametro div.Calendar td.Orange .Price {
  color: #ff9900;
}
body.Shop div#Content div.Date.Parametro div.Calendar td.LightBlue .Price {
  color: #1f8fcf;
}
body.Shop div#Content div.Date.Parametro div.Calendar td.Blue .Price {
  color: #0054a5;
}
body.Shop div#Content div.Date.Parametro div.Calendar td.Pink .Price {
  color: #f777b7;
}
body.Shop div#Content div.Date.Parametro div.Calendar td.Violet .Price {
  color: #ca0c55;
}
body.Shop div#Content div.Date.Parametro div.Calendar td.Green .Price {
  color: #72ce10;
}
body.Shop div#Content div.Date.Parametro div.Calendar td.DarkGreen .Price {
  color: #999;
}
body.Shop div#Content div.Date.Parametro div.Calendar td.Default .Price {
  color: #999;
}
body.Shop div#Content div.Date.Parametro div.Calendar td .Price {
  font-weight: normal;
}
body.Shop div#Content div.Date.Parametro div.Calendar td .Saved {
  color: #999 !important;
}
@media only screen and (min-width: 1280px) {
  body.Shop div#Content div.Date.Parametro div.Calendar td {
    font-size: 24px;
  }
  body.Shop div#Content div.Date.Parametro div.Calendar td .Price {
    margin-top: 3px;
    font-size: 0.7em;
  }
  body.Shop div#Content div.Date.Parametro div.Calendar td .Saved {
    font-size: 0.6em;
  }
}
@media only screen and (min-width: 1000px) and (max-width: 1279px) {
  body.Shop div#Content div.Date.Parametro div.Calendar td {
    font-size: 24px;
  }
  body.Shop div#Content div.Date.Parametro div.Calendar td .Price {
    margin-top: 2px;
    font-size: 0.7em;
  }
  body.Shop div#Content div.Date.Parametro div.Calendar td .Saved {
    font-size: 0.6em;
  }
}
@media only screen and (min-width: 760px) and (max-width: 999px) {
  body.Shop div#Content div.Date.Parametro div.Calendar td {
    font-size: 20px;
  }
  body.Shop div#Content div.Date.Parametro div.Calendar td > div {
    padding-top: 3px;
  }
  body.Shop div#Content div.Date.Parametro div.Calendar td .Price {
    margin-top: 0px;
    font-size: 0.7em;
  }
  body.Shop div#Content div.Date.Parametro div.Calendar td .Saved {
    font-size: 0.7em;
  }
}
@media only screen and (max-width: 759px) {
  body.Shop div#Content div.Date.Parametro div.Calendar td {
    font-size: 18px;
  }
  body.Shop div#Content div.Date.Parametro div.Calendar td .Price {
    margin-top: 3px;
    font-size: 0.7em;
  }
  body.Shop div#Content div.Date.Parametro div.Calendar td .Saved {
    font-size: 0.6em;
  }
}
@media only screen and (max-width: 599px) {
  body.Shop div#Content div.Date.Parametro div.Calendar td {
    font-size: 14px;
  }
  body.Shop div#Content div.Date.Parametro div.Calendar td > div {
    padding-top: 3px;
  }
  body.Shop div#Content div.Date.Parametro div.Calendar td .Price {
    margin-top: 2px;
    font-size: 0.7em;
  }
  body.Shop div#Content div.Date.Parametro div.Calendar td .Saved {
    font-size: 0.7em;
  }
}
body.Shop div#Content div.Date.Parametro div.DataFissa {
  padding-bottom: 50px;
}
body.Shop div#Content div.Date.Parametro div.Legend {
  background-color: #efefef;
}
body.Shop div#Content div.Date.Parametro div.Legend ul {
  justify-content: center;
  flex-flow: row wrap;
  padding: 20px 0 0 0;
  display: flex;
  gap: 10px;
}
body.Shop div#Content div.Date.Parametro div.Legend ul li {
  margin: 10px 10px 0 10px;
}
body.Shop div#Content div.Date.Parametro div.Legend ul li {
  padding: 0 0 0 25px;
  position: relative;
  line-height: 1.2;
  display: flex;
  color: black;
}
body.Shop div#Content div.Date.Parametro div.Legend ul li br {
  display: none;
}
body.Shop div#Content div.Date.Parametro div.Legend ul li::before {
  content: "";
}
body.Shop div#Content div.Date.Parametro div.Legend ul li span.Icon {
  position: static;
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  border-radius: 0;
  border-radius: 50%;
  margin: 0 10px 0 -35px;
  padding: 2px 2px;
  background-color: white;
  border: 1px solid #ccc;
}
body.Shop div#Content div.FasceGroup h3 {
  text-align: center;
}
body.Shop div#Content div.FasceGroup div.Fasce, body.Shop div#Content div.FasceGroup div.RaggruppamentiFascia {
  gap: 10px;
  display: flex;
  font-size: 1.2em;
  justify-content: center;
  flex-wrap: wrap;
}
body.Shop div#Content div.FasceGroup div.Fasce div.Fasce__Item, body.Shop div#Content div.FasceGroup div.RaggruppamentiFascia div.Fasce__Item {
  padding: 1px;
  cursor: default;
  color: white;
  border: 2px solid transparent;
}
body.Shop div#Content div.FasceGroup div.Fasce div.Fasce__Item.Fasce__Item--Selected, body.Shop div#Content div.FasceGroup div.RaggruppamentiFascia div.Fasce__Item.Fasce__Item--Selected {
  border-color: var(--color-accent);
}
body.Shop div#Content div.FasceGroup div.Fasce div.Fasce__Item:not(.Fasce__Item--Disabled), body.Shop div#Content div.FasceGroup div.RaggruppamentiFascia div.Fasce__Item:not(.Fasce__Item--Disabled) {
  cursor: pointer;
}
body.Shop div#Content div.FasceGroup div.Fasce div.Fasce__Item div.Orario, body.Shop div#Content div.FasceGroup div.RaggruppamentiFascia div.Fasce__Item div.Orario {
  font-family: sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 30px;
  height: 30px;
  width: 90px;
  position: relative;
}
body.Shop div#Content div.FasceGroup div.Fasce div.Fasce__Item div.Orario[availability=Green], body.Shop div#Content div.FasceGroup div.RaggruppamentiFascia div.Fasce__Item div.Orario[availability=Green] {
  background-color: #86BB39;
}
body.Shop div#Content div.FasceGroup div.Fasce div.Fasce__Item div.Orario[availability=Orange], body.Shop div#Content div.FasceGroup div.RaggruppamentiFascia div.Fasce__Item div.Orario[availability=Orange] {
  background-color: #FF992A;
}
body.Shop div#Content div.FasceGroup div.Fasce div.Fasce__Item div.Orario[availability=Red], body.Shop div#Content div.FasceGroup div.RaggruppamentiFascia div.Fasce__Item div.Orario[availability=Red] {
  background-color: #9A0000;
}
body.Shop div#Content div.FasceGroup div.Fasce div.Fasce__Item div.Orario[availability=Grey], body.Shop div#Content div.FasceGroup div.RaggruppamentiFascia div.Fasce__Item div.Orario[availability=Grey] {
  background-color: #ccc;
  color: #999;
}
body.Shop div#Content div.FasceGroup div.Fasce div.Fasce__Item div.Orario[tag=Combo]::after, body.Shop div#Content div.FasceGroup div.RaggruppamentiFascia div.Fasce__Item div.Orario[tag=Combo]::after {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  border: solid 8px;
  border-color: black black transparent transparent;
  right: 0;
}
body.Shop div#Content div.FasceGroup div.RaggruppamentiFascia {
  margin-bottom: 30px;
}
body.Shop div#Content div.FasceGroup div.RaggruppamentiFascia div .Orario {
  width: 196px !important;
  height: 50px !important;
  line-height: 50px !important;
  font-size: 16px !important;
}
body.Shop div#Content div.FasceGroup span.ErrorPlaceholder span.Error {
  background-color: #fcc;
  margin: 13px;
  padding: 5px 0 5px;
}
body.Shop div#Content div.FasceGroup span.ErrorPlaceholder span.Error::before {
  font-family: FontAwesome;
  content: "\f071";
  margin-right: 10px;
}
body.Shop div#Content div.FasceGroup div.Divider {
  height: 1px;
  margin: 30px 0 15px;
  background-color: #ccc;
}
body.Shop div#Content div.FasceGroup div.Legend {
  gap: 40px;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.2em;
  justify-content: center;
  padding-bottom: 15px;
}
body.Shop div#Content div.FasceGroup div.Legend div.Legend__Item {
  color: black;
  padding-left: 21px;
  position: relative;
  font-size: 12px;
}
body.Shop div#Content div.FasceGroup div.Legend div.Legend__Item:not(.Combo)::before {
  content: " ";
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: black;
}
body.Shop div#Content div.FasceGroup div.Legend div.Legend__Item.Legend__Item--Green::before {
  background-color: #86BB39;
}
body.Shop div#Content div.FasceGroup div.Legend div.Legend__Item.Legend__Item--Orange::before {
  background-color: #FF992A;
}
body.Shop div#Content div.FasceGroup div.Legend div.Legend__Item.Legend__Item--Red::before {
  background-color: #9A0000;
}
body.Shop div#Content div.FasceGroup div.Legend div.Legend__Item.Legend__Item--Grey::before {
  background-color: #ccc;
}
body.Shop div#Content div.FasceGroup div.Legend div.Legend__Item.Combo::before {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  border: solid 8px;
  border-color: black black transparent transparent;
  left: 0;
  top: -3px;
}
body.Shop div#Content div.Pagamento input:not([type=radio]) {
  width: 200px;
}
@media only screen and (max-width: 399px) {
  body.Shop div#Content div.Pagamento input:not([type=radio]) {
    width: 100%;
  }
}
body.Shop div#Content div.Pagamento div.RadioButton {
  height: 40px;
  display: flex;
}
body.Shop div#Content div.Pagamento div.RadioButton label {
  margin: auto 0;
  display: flex;
}
body.Shop div#Content div.Pagamento div.RadioButton label span {
  margin: auto 0;
}
body.Shop div#Content div.Pagamento div.RadioButton label span + img {
  margin-left: 20px;
}
@media only screen and (max-width: 499px) {
  body.Shop div#Content div.Pagamento div.RadioButton label span + img {
    display: none;
  }
}
body.Shop div#Content div.Pagamento div.RadioButton input[type=radio] {
  min-width: 0;
  margin: auto 10px auto 5px;
  flex-shrink: 0;
}
body.Shop div#Content div.Pagamento div.Column2 a.Button {
  display: none;
}
body.Shop div#Content div.Pagamento a.Button {
  margin-top: 20px;
}
body.Shop div#Content div.Pagamento a.CheckBox:hover {
  text-decoration: none;
}
body.Shop div#Content div.Pagamento select#Fattura_Provincia {
  width: 200px;
}
body.Shop div#Content div.Pagamento div.Step2.Steps-3, body.Shop div#Content div.Pagamento div.Step1.Steps-2 {
  margin-top: 30px;
}
body.Shop div#Content div.MetodiPagamento div.MetodoPagamento {
  display: none;
  margin-top: 50px;
}
body.Shop div#Content div.MetodiPagamento div.MetodoPagamento img {
  display: block;
  margin-bottom: 20px;
  max-width: 100%;
}
body.Shop div#Content form {
  position: relative;
}
body.Shop div#Content form > div.Column2 {
  background-color: #efefef;
}
body.Shop div#Content div.Countdown {
  border-left: 5px solid black;
  padding-left: 10px;
  font-weight: bold;
  color: black;
}
@media only screen and (max-width: 759px) {
  body.Shop div#Content div.Countdown {
    margin: 20px 0;
  }
}
@media only screen and (min-width: 760px) {
  body.Shop div#Content div.Countdown {
    margin: 20px 0;
  }
}
body.Shop div#Content div.Countdown p {
  margin: 0 !important;
}
body.Shop div#Content div.Countdown .Timeout {
  color: var(--color-accent);
}
body.Shop div#Content div.Countdown .Timeout a {
  text-decoration: underline;
}
body.Shop div#Content div.Countdown .Timeout a:hover {
  color: black !important;
}
body.Shop div#Content div.Raggruppamento div.Prodotto.PostoPianta {
  width: 100% !important;
  border: 0 !important;
  box-shadow: none !important;
}
@media only screen and (min-width: 1000px) {
  body.Shop div#Content form > div.Column1 {
    position: relative;
    width: calc(70% - 60px);
    margin-left: 20px;
  }
  body.Shop div#Content form > div.Column2 {
    min-height: 100%;
    width: 30%;
    margin-right: 20px;
    position: absolute;
    top: 0;
    right: 0;
  }
  body.Shop div#Content div.Raggruppamento {
    margin: -20px 0 20px -20px;
  }
  body.Shop div#Content div.Raggruppamento div.Prodotto {
    width: 31.3333333333%;
    width: calc(33.3333333333% - 20px);
    margin: 20px 0 0 20px;
  }
  body.Shop div#Content div.Raggruppamento div.Prodotto.ProdottoHotel {
    width: 47%;
    width: calc(50% - 20px) !important;
  }
}
@media only screen and (max-width: 999px) {
  body.Shop div#Content div.Raggruppamento div.Prodotto {
    width: 100%;
    margin: 20px 0 0 20px;
  }
}
@media only screen and (min-width: 800px) and (max-width: 999px) {
  body.Shop div#Content form > div.Column1 {
    position: relative;
    width: calc(100% - 355px);
    margin-left: 20px;
  }
  body.Shop div#Content form > div.Column2 {
    background-color: #efefef;
    min-height: 100%;
    width: 295px;
    margin-right: 20px;
    position: absolute;
    top: 0;
    right: 0;
  }
  body.Shop div#Content div.Raggruppamento {
    margin: -20px 0 20px -20px;
  }
  body.Shop div#Content div.Raggruppamento div.Prodotto {
    width: 47%;
    width: calc(50% - 20px);
    margin: 20px 0 0 20px;
  }
  body.Shop div#Content div.Raggruppamento div.Prodotto.ProdottoHotel.Soggiorno {
    width: 100%;
    margin-left: 0;
  }
  body.Shop div#Content div.Raggruppamento div.Prodotto.ProdottoHotel.Camera {
    width: 47%;
    width: calc(50% - 20px) !important;
  }
}
@media only screen and (min-width: 760px) and (max-width: 799px) {
  body.Shop div#Content form > div.Column1 {
    position: relative;
    width: calc(100% - 355px);
    margin-left: 20px;
  }
  body.Shop div#Content form > div.Column2 {
    background-color: #efefef;
    min-height: 100%;
    width: 295px;
    margin-right: 20px;
    position: absolute;
    top: 0;
    right: 0;
  }
  body.Shop div#Content div.Raggruppamento {
    margin: -20px 0 20px;
  }
  body.Shop div#Content div.Raggruppamento div.Prodotto {
    margin-top: 20px;
    width: 100%;
    margin-left: 0;
  }
}
@media only screen and (min-width: 500px) and (max-width: 759px) {
  body.Shop div#Content form > div.Column1:first-child, body.Shop div#Content form > div.Column2:first-child {
    margin-bottom: 20px;
  }
  body.Shop div#Content div.Raggruppamento {
    margin: -20px 0 20px -20px;
  }
  body.Shop div#Content div.Raggruppamento div.Prodotto.ProdottoHotel.Soggiorno {
    width: 100%;
    margin-left: 0;
  }
  body.Shop div#Content div.Raggruppamento div.Prodotto.ProdottoHotel.Camera {
    width: 47%;
    width: calc(50% - 20px) !important;
  }
}
@media only screen and (max-width: 499px) {
  body.Shop div#Content form > div.Column1:first-child, body.Shop div#Content form > div.Column2:first-child {
    margin-bottom: 20px;
  }
  body.Shop div#Content div.Raggruppamento div.Prodotto {
    margin: 0 0 20px 0;
    width: 100%;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Shop.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAII;EACI;;AAGJ;EACI;;;AAKJ;EACI;;AAGI;EACI;;AAMA;EACI;;AAMhB;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;;AAEA;EALJ;IAMQ;;;AAGJ;EATJ;IAUQ;;;AAYI;EACI;;AAGJ;EACI,OARW;;AAGf;EACI;;AAGJ;EACI,OARW;;AAGf;EACI;;AAGJ;EACI,OARW;;AAc3B;EACI;EACA;EACA;EACA;EACA;;AAEA;EAPJ;IAQQ;;;AAGJ;EAXJ;IAYQ;IACA;;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAZJ;IAaQ;IACA;;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;;AAEA;EACI;EACA;EACA;;AAIR;EACI;EACA;;AAGJ;EACI,YCxHE;;AD6HN;EACI;EACA;;AAKZ;EACI;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA,YC5KH;;ADgLL;EACI,eCzJgB;;AD2JhB;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAEA;EAJJ;IAKQ;;;AAGJ;EACI;;AAGJ;EACI;;AAEA;EACI;;AAEA;EACI;;AAKZ;EACI;EACA;;AAGJ;EACI;;AAEA;EACI;;AAKZ;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAKZ;EACI,kBCzSH;ED0SG;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;;AAIR;EACI;;AAMhB;EACI,kBCtUa;EDuUb;;AAEA;EACI;;AAGJ;EACI;;AAIA;EACI;EACA;;AAEA;EAQI;;AAPA;EADJ;IAEQ;IACA;IACA;IACA;;;AAKJ;EACI;;AAIR;EACI;EACA;EACA;EACA;;AAEA;EANJ;IAOQ;IACA;;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EAGI,QAFiB;EAGjB;;AAEA;EACI;EACA,OAPa;EAQb,QARa;EASb,aATa;EAUb;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA,aAnBa;EAoBb;EACA;EACA;EACA,kBCjZN;EDkZM;EACA;EACA;;AAEA;EACI;EACA;;AAKZ;EACI;;AAIR;EAlFJ;IAmFQ,eC1YY;;;AD6YhB;EAtFJ;IAuFQ,eC7YU;;;ADiZlB;EACI;EACA;EACA;EACA;EACA;;AAEA;EAPJ;IAQQ;IACA;;;AAIR;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI,OCnfL;;ADyfH;EACI;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAMhB;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAIR;AACI;;AAGJ;EACI;EACA;EACA;EACA;EACA,SCljBK;;ADojBL;EACI;EACA;EACA;EACA;EACA,OC3lBH;ED4lBG;;AAEA;EACI,YClmBH;EDmmBG;;AAKZ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;;AAGJ;EACI,OC1nBP;;AD8nBD;EACI;;AAKJ;EACI;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;EACA;;AAIR;EACI;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAIA;EACI;;AAKJ;EACI;EACA;EACA;EACA;;AAKZ;EACI;;AAGJ;EACI;EACA;;AAGJ;AAAA;EAEI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;AAAA;EACI;EACA;;AAGJ;AAAA;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAGJ;EACI;;AAEA;EACI;EACA;;AAIA;EACI;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAQhB;EACI;EACA;EACA;;AAGJ;EACI;;AAKZ;EACI;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAEA;EAPJ;IAQQ;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAXJ;IAYQ;IACA;;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAMhB;EACI;EACA;EACA;;AAGA;EACI;EACA;;AAGJ;EACI;;AAGJ;EACI;;AAMQ;EACI;;AAKJ;EACI;;AAIR;EACI;;AAKJ;EACI;;AAEA;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI,OC15BN;;AD85BF;EACI;;AAGJ;EACI;;AAEA;EACI;;AAIR;EACI;;AAEA;EACI;;AAKZ;EAEQ;IACI;;EAGJ;IACI;;EAGJ;IACI;;;AAMhB;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAIR;EACI;;AAIR;EACI;EACA;EACA;EACA,OChgCH;EDigCG;;AAEA;EACI;EACA;EACA;;AAIR;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAIR;EACI;EACA;EACA,OCzhCH;ED0hCG;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA,kBCviCP;EDwiCO;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA;;AAGJ;EACI;;AAKJ;EACI;EACA;EACA,YC3jCP;ED4jCO;;AAEA;EACI;EACA;;AAKZ;EACI;;AAGJ;EAEI;;AAEA;EACI;;AAGJ;EACI;;AAIA;EACI;;AAEA;EACI;EACA;;AAKZ;EACI;EACA;EACA;;AAGJ;EACI;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAMR;EACI;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAIR;EACI;;AAIA;EACI;;AAGJ;EACI;EACA;;AAIA;EACI;;AAOZ;EACI;;AAEA;EACI;;AAMhB;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAIR;EAKI;EACA;EACA;;AANA;EACI;;AAOJ;EACI;EACA;;AAGJ;EACI;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAIR;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAMI;EACI;;AAIR;EACI;;AAEA;EACI;;AAGJ;EACI;;AAIR;EACI;;AAIA;EACI;;AAIR;EACI;EACA,kBCvxCF;EDwxCE;;AAGJ;EACI;EACA;;AAEA;EACI;;AAIR;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAEA;EACI;;AAIR;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAKZ;EACI;EACA;;AAKJ;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA,kBCl3CK;EDm3CL,SCz1CY;ED01CZ;EACA;EACA;;AAGI;EACI,kBCr3CV;;ADy3CE;EACI;;AAEA;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;;AAEA;EALJ;IAMQ;;;AAGJ;EACI;;AAIR;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;;AASZ;EACI;;AAKI;EACI;;AAGJ;EACI;;AAQxB;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,YCpgDS;;ADugDb;EAxBJ;IAyBQ;;EAEA;IACI;IACA;;;AAKZ;EACI;EACA,WC1/CW;ED2/CX;;AAEA;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAKZ;EACI;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;EACA;;AAEA;EACI;;AAMhB;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBC3lDS;;AD8lDb;EAvBJ;IAwBQ;;;AAGJ;EA3BJ;IA4BQ;;;AAGJ;EACI,OClmDE;;ADqmDN;EACI;EACA,OCnmDS;;ADqmDT;EAJJ;IAKQ;IACA;;;AAKR;EACI;;AAEA;EACI;EACA;EACA,kBCjnDE;EDknDF;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAIR;EACI,kBCtnDD;EDunDC;;AAGJ;EACI;EACA;EACA;;AAIR;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EAbJ;IAcQ;;;AAGJ;EAjBJ;IAkBQ;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBCpqDL;;ADuqDC;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA,kBC1sDC;;AD4sDD;EACI;;AAGJ;EAII;;AAEA;EACI;EACA,WAPQ;EAQR,MAPM;EAQN;EACA;;AAKZ;EACI,OCrtDH;;ADwtDD;EACI;EACA;;AAMR;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAKA;EACI;;AAGJ;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;AAAA;EAEI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;;AAIA;EACI;EACA;;AAIR;EACI;;AAGJ;EACI;;AAEA;EACI,OCl2DN;;ADs2DF;EACI,kBCx2DC;EDy2DD,OCx2DF;;AD22DF;EACI,OCx2DN;;AD02DM;EACI;;AAIR;EACI,OCh3DN;;ADk3DM;EACI;;AAIR;EACI;EACA;;AAEA;EACI;;AAQJ;EACI,OC33DT;;ADg4DK;EACI,OC13DT;;AD+3DK;EACI,OC54DN;;ADi5DE;EACI,OCj5DX;;ADs5DO;EACI;;AAKJ;EACI,OCv5DT;;AD45DK;EACI;;AAKJ;EACI,OCl7DX;;ADu7DO;EACI,OCx7DX;;AD47DG;EACI;;AAGJ;EACI;;AAGJ;EA3JJ;IA4JQ;;EAEA;IACI;IACA;;EAGJ;IACI;;;AAIR;EAxKJ;IAyKQ;;EAEA;IACI;IACA;;EAGJ;IACI;;;AAIR;EArLJ;IAsLQ;;EAEA;IACI;;EAGJ;IACI;IACA;;EAGJ;IACI;;;AAIR;EAtMJ;IAuMQ;;EAEA;IACI;IACA;;EAGJ;IACI;;;AAIR;EAnNJ;IAoNQ;;EAEA;IACI;;EAGJ;IACI;IACA;;EAGJ;IACI;;;AAMhB;EACI;;AAGJ;EACI,kBCthES;;ADwhET;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAchB;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI,kBAvCD;;AA0CH;EACI,kBA5CA;;AA+CJ;EACI,kBA9CH;;AAiDD;EACI,kBC1nEN;ED2nEM,OC1nEX;;AD6nEO;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAMhB;EACI;;AAEA;EACI;EACA;EACA;EACA;;AAIR;EACI,kBClpEC;EDmpED;EACA;;AAEA;EACI;EACA;EACA;;AAIR;EACI;EACA;EACA,kBCrqEM;;ADwqEV;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI,kBA7HG;;AAgIP;EACI,kBAlII;;AAqIR;EACI,kBApIC;;AAuIL;EACI,kBChtEF;;ADmtEF;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAOZ;EACI;;AAEA;EAHJ;IAIQ;;;AAIR;EACI;EACA;;AAEA;EACI;EACA;;AAEA;EACI;;AAGJ;EACI;;AAEA;EAHJ;IAIQ;;;AAKZ;EACI;EACA;EACA;;AAKJ;EACI;;AAIR;EACI;;AAIA;EACI;;AAIR;EACI;;AAGJ;EACI;;AAKJ;EACI;EACA;;AAEA;EACI;EACA;EACA;;AAKZ;EACI;;AAEA;EACI,kBCjzES;;ADqzEjB;EACI;EACA;EACA;EACA;;AAEA;EANJ;IAOQ;;;AAGJ;EAVJ;IAWQ;;;AAGJ;EACI;;AAGJ;EACI;;AAEA;EACI;;AAEA;EACI;;AAMhB;EACI;EACA;EACA;;AAGJ;EAIQ;IACI;IACA;IACA,aCv0EY;;ED00EhB;IACI;IACA;IACA,cC70EY;ID80EZ;IACA;IACA;;EAIR;IACI;;EAEA;IACI;IACA;IACA;;EAEA;IACI;IACA;;;AAMhB;EAEQ;IACI;IACA;;;AAKZ;EAEQ;IACI;IACA;IACA,aCl3EY;;EDq3EhB;IACI,kBCh5EK;IDi5EL;IACA;IACA,cCz3EY;ID03EZ;IACA;IACA;;EAIR;IACI;;EAEA;IACI;IACA;IACA;;EAGI;IACI;IACA;;EAGJ;IACI;IACA;;;AAOpB;EAEQ;IACI;IACA;IACA,aC55EY;;ED+5EhB;IACI,kBC17EK;ID27EL;IACA;IACA,cCn6EY;IDo6EZ;IACA;IACA;;EAIR;IACI;;EAEA;IACI,YC96EY;ID+6EZ;IACA;;;AAKZ;EAEQ;IACI,eCx7EY;;ED47EpB;IACI;;EAIQ;IACI;IACA;;EAGJ;IACI;IACA;;;AAOpB;EAEQ;IACI,eCl9EY;;EDu9EhB;IACI;IACA%22%7D */
body:not(.CMS) div.SideBlockBanner img {
  display: block;
  object-fit: cover;
  margin: 20px auto;
  width: 100%;
}

body.CMS div.SideBlockBanner div.Images {
  display: flex;
  width: 100%;
}
body.CMS div.SideBlockBanner div.Images img {
  float: left;
  height: 100px !important;
  width: unset !important;
  max-width: 100%;
  margin: 0 1px 1px 0;
  border: solid 1px white;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/SideBlockBanner.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAIE;EACC;EACA;EACA;EACA;;;AAOD;EACC;EACA;;AAEA;EACC;EACA;EACA;EACA;EACA;EACA%22%7D */
body:not(.CMS) div.SideBlockHeader h4 {
  text-align: left;
  text-transform: uppercase;
  color: white !important;
  font-weight: bold;
  line-height: 40px;
  background-color: #999;
  padding: 0 10px;
  margin-bottom: 0 !important;
}
body:not(.CMS) div.SideBlockHeader.Green h4 {
  background: #284805;
  background: -moz-linear-gradient(left, #284805 0%, #588725 100%);
  background: -webkit-linear-gradient(left, #284805 0%, #588725 100%);
  background: linear-gradient(to right, #284805 0%, #588725 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$Color1", endColorstr="$Color2", GradientType=1);
}
body:not(.CMS) div.SideBlockHeader.Violet h4 {
  background: #991648;
  background: -moz-linear-gradient(left, #991648 0%, #ca0c55 100%);
  background: -webkit-linear-gradient(left, #991648 0%, #ca0c55 100%);
  background: linear-gradient(to right, #991648 0%, #ca0c55 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$Color1", endColorstr="$Color2", GradientType=1);
}
body:not(.CMS) div.SideBlockHeader.LightBlue h4 {
  background: #003851;
  background: -moz-linear-gradient(left, #003851 0%, #1f8fcf 100%);
  background: -webkit-linear-gradient(left, #003851 0%, #1f8fcf 100%);
  background: linear-gradient(to right, #003851 0%, #1f8fcf 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$Color1", endColorstr="$Color2", GradientType=1);
}
body:not(.CMS) div.SideBlockHeader.Yellow h4 {
  background: #ff9900;
  background: -moz-linear-gradient(left, #ff9900 0%, #ffcc33 100%);
  background: -webkit-linear-gradient(left, #ff9900 0%, #ffcc33 100%);
  background: linear-gradient(to right, #ff9900 0%, #ffcc33 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$Color1", endColorstr="$Color2", GradientType=1);
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/SideBlockHeader.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAIQ;EACI;EACA;EACA;EACA;EACA;EACA,kBCDC;EDED;EACA;;AAIA;ECmFR,YAxEc;EAyEd;EACA;EACA;EACA;;ADjFQ;EC6ER,YA1Ee;EA2Ef;EACA;EACA;EACA;;AD3EQ;ECuER,YAhFa;EAiFb;EACA;EACA;EACA;;ADrEQ;ECiER,YAtEW;EAuEX;EACA;EACA;EACA%22%7D */
body:not(.CMS) div.SideBlockInfo {
  border-left: solid 1px #ccc;
  border-right: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  background-color: #efefef;
}
body:not(.CMS) div.SideBlockInfo div.SectionContent {
  padding: 20px;
}
body:not(.CMS) div.SideBlockInfo p {
  width: 100%;
}
body:not(.CMS) div.SideBlockInfo p img {
  margin: 0 auto !important;
  display: block;
}
body:not(.CMS) div.SideBlockInfo ul {
  height: 100%;
  width: 100%;
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  text-decoration: none;
  list-style: none;
  color: #003851;
  margin-bottom: -10px !important;
}
body:not(.CMS) div.SideBlockInfo ul li {
  padding-left: 0 !important;
  margin-bottom: 10px;
  display: inline-block;
}
body:not(.CMS) div.SideBlockInfo ul li strong {
  display: block;
}
body:not(.CMS) div.SideBlockInfo ul li::before {
  content: none !important;
}
body:not(.CMS) div.SideBlockInfo .Fields {
  display: flex;
  flex-wrap: wrap;
  margin-top: -20px;
  justify-content: space-around;
}
body:not(.CMS) div.SideBlockInfo .Fields .Field {
  width: 31%;
  margin-top: 20px;
  text-align: center;
  display: inline-block;
}
body:not(.CMS) div.SideBlockInfo .Fields .Field:not(:nth-child(3n+1)) {
  margin-left: 3%;
}
body:not(.CMS) div.SideBlockInfo .Fields .Field img {
  padding: 0 12px;
  height: auto !important;
}
body:not(.CMS) div.SideBlockInfo .Fields .Field .Description {
  margin-top: 8px;
  font-weight: bold;
  font-size: 0.8rem;
  text-align: center;
}
body:not(.CMS) div .SideBlockInfo + div.SideBlockInfo::before {
  content: "";
  display: block;
  background-color: white;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/SideBlockInfo.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAGI;EACI;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;;AAEA;EACI;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA,OCXK;EDYL;;AAEA;EACI;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;;AAKZ;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAOZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA%22%7D */
body:not(.CMS) div.SideBlockTicket a.Button {
  width: 50%;
  color: white !important;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  margin: 0 auto;
}
body:not(.CMS) div.SideBlockTicket div.Titles > span {
  cursor: default;
  width: 50%;
  color: white;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  float: left;
  display: block;
  height: 50px;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  line-height: 50px;
}
body:not(.CMS) div.SideBlockTicket div.Titles > span a {
  color: white !important;
  display: block;
}
body:not(.CMS) div.SideBlockTicket div.Titles > span a:hover {
  text-decoration: none !important;
}
body:not(.CMS) div.SideBlockTicket div.Titles > span:nth-of-type(1) {
  background-color: #1f8fcf;
}
body:not(.CMS) div.SideBlockTicket div.Titles > span:nth-of-type(2) {
  background-color: #ca0c55;
}
body:not(.CMS) div.SideBlockTicket div.Titles > span:nth-of-type(2):hover {
  background-color: #ff9900;
}
body:not(.CMS) div.SideBlockTicket div.Container {
  border: solid 1px #ccc;
  border-top: solid 5px #1f8fcf;
  background-color: #efefef;
  padding-bottom: 20px;
  clear: both;
}
body:not(.CMS) div.SideBlockTicket div.Container label {
  margin: 20px 0 30px 20px;
  display: block;
  position: relative;
  color: #666;
}
body:not(.CMS) div.SideBlockTicket div.Container label span {
  display: block;
  text-transform: uppercase;
  color: #1f8fcf;
  margin-bottom: 6px;
  font-weight: bold;
}
body:not(.CMS) div.SideBlockTicket div.Container label div.NumberPicker {
  position: absolute;
  top: 0;
  width: 80px;
  right: 20px;
}
body:not(.CMS) div.SideBlockTicket div.Container label div.NumberPicker input {
  position: absolute;
  left: 0;
}

body.CMS div.SideBlockTicket a, body.CMS div.SideBlockTicket label {
  border: dashed 1px red;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/SideBlockTicket.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAKQ;EACI;EACA;EACA;EACA;EACA;EACA;;AAIA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAEA;EACI;;AAIR;EACI,kBCtBF;;ADyBF;EACI,kBCnBL;;ADqBK;EACI,kBCjBT;;ADuBP;EACI;EACA;EACA,kBChDS;EDiDT;EACA;;AAEA;EAqBI;EACA;EACA;EACA,OCzEC;;ADkDD;EACI;EACA;EACA,OC9CF;ED+CE;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;;;AAetB;EACC%22%7D */


/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%5D,%22names%22:%5B%5D,%22mappings%22:%22%22%7D */
body.Site14 {
  --font-primary: "Gotham", sans-serif;
}
body.Site14:not(.CMS) div:not(.CMSBlock).Banner {
  border-bottom: solid 1px var(--color-block-separator) !important;
}
body.Site14 .Gradient {
  background: linear-gradient(90deg, rgb(255, 0, 152) 0%, rgb(2, 173, 239) 100%);
}
body.Site14 hr.Gradient {
  height: 3px !important;
  margin: 30px 0 35px !important;
}
body.Site14 div.FinalBar div.FinalTotal .Button:hover {
  background: var(--color-button-bg-hover);
  color: white !important;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Site14.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAAC;EACG;;AAEA;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA%22%7D */
body.Site18 svg #Text, body.Site18 svg #Text * {
  fill: #00a4d3 !important;
}
body.Site18 svg.over g#Background path, body.Site18 svg.over path#Background, body.Site18 svg.over rect#Background, body.Site18 svg.over polygon#Background {
  fill: rgba(255, 255, 255, 0.3) !important;
}
body.Site18 svg.over #Text, body.Site18 svg.over #Text * {
  fill: white !important;
}
body.Site18 svg.over #Box * {
  fill: #00a4d3 !important;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Site18.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAEQ;EACI;;AAIA;EACI;;AAGJ;EACI;;AAIA;EACI%22%7D */


/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%5D,%22names%22:%5B%5D,%22mappings%22:%22%22%7D */
body.Site26 {
  --font-primary: "RobotoLight", sans-serif;
}
body.Site26 div#Content h1 {
  font-family: "Sanchez", sans-serif;
  text-transform: initial;
  font-weight: normal;
}
body.Site26 div#Content h2, body.Site26 div#Content h3, body.Site26 div#Content h4, body.Site26 div#Content h5, body.Site26 div#Content h6 {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Site26.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAAC;EACG;;AAGI;EACI;EACA;EACA;;AAGJ;EACI;EACA%22%7D */


/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%5D,%22names%22:%5B%5D,%22mappings%22:%22%22%7D */
body.Site38 {
  --header-height: 40px;
}
body.Site38 header .Hero {
  position: relative;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
body.Site38 header .Hero__Overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 100%);
}
body.Site38 header .Hero__Background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
body.Site38 header .Hero__BackgroundImage {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  display: block;
}
body.Site38 header .Hero__Logo {
  position: relative;
  z-index: 1;
}
body.Site38 header .Hero__Logo a {
  display: inline-block;
  text-decoration: none;
}
body.Site38 header .Hero__Logo img {
  width: 100%;
  height: auto;
  display: block;
}
@media only screen and (min-width: 760px) {
  body.Site38 header.SocialBar + div#Content {
    padding: 0;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Site38.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAEA;EACI;;AAGI;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIR;EACI;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;EACA;;AAKZ;EACI;IACI%22%7D */
body.Site4 {
  --header-height: 120px;
}
@media only screen and (max-width: 759px) {
  body.Site4 {
    --header-height: 100px;
  }
}
body.Site4 svg #Text, body.Site4 svg #Text * {
  fill: #0099cc !important;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Site4.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAEA;EACI;;AAEA;EAHJ;IAIQ;;;AAIA;EACI%22%7D */
div#SiteEditorPage a.Button {
  display: inline-block;
}
div#SiteEditorPage div.TabContainer {
  display: flex;
  flex-wrap: nowrap;
}
div#SiteEditorPage div.TabContainer .Pagine {
  flex-basis: 100%;
}
div#SiteEditorPage div.TabContainer .Sezioni {
  flex-basis: 40%;
}
div#SiteEditorPage .Pagine a.Button {
  float: right;
}
div#SiteEditorPage .Pagine:after {
  clear: both;
  content: " ";
  display: block;
}
div#SiteEditorPage .Pagine a.Action.Disabled {
  color: #999 !important;
}
div#SiteEditorPage .Separatore {
  border: unset;
  margin-bottom: 5px;
  background-color: white;
  height: 1px;
}
div#SiteEditorPage .Accordion {
  position: relative;
}
div#SiteEditorPage .Accordion h2 {
  margin-bottom: 0;
}
div#SiteEditorPage .Accordion .AccordionContent {
  margin-top: 10px !important;
}
div#SiteEditorPage .Accordion .AccordionTrigger {
  text-align: center;
  position: absolute;
  height: 49px;
  inset: 0;
}
div#SiteEditorPage .Accordion .AccordionTrigger::before {
  content: "\f13a";
  font-family: "FontAwesome";
  z-index: 1;
  color: white;
  display: block;
  font-weight: 600;
  margin-left: auto;
  background-color: var(--cms-color-regular);
  line-height: 49px;
  font-size: 24px;
  width: 49px;
}
div#SiteEditorPage .Accordion .AccordionTrigger:hover {
  cursor: pointer;
}
div#SiteEditorPage .Accordion.Open .AccordionTrigger::before {
  content: "\f139";
}
div#SiteEditorPage .Sezioni {
  margin-right: 15px;
}
div#SiteEditorPage .Sezioni tr.Selected td {
  background-color: rgba(189, 69, 107, 0.5);
}
div#SiteEditorPage .Sezioni .Sezione {
  position: relative;
}
div#SiteEditorPage .Sezioni .Sezione input {
  padding-right: 38px;
  width: 100% !important;
  margin-bottom: 0;
}
div#SiteEditorPage .Sezioni .Sezione div.Indicatore {
  position: absolute;
  height: 32px;
  width: 32px;
  right: 1px;
  top: 1px;
}
div#SiteEditorPage .Sezioni .Sezione div.Indicatore::before {
  content: "\f138";
  font-family: "FontAwesome";
  font-weight: 600;
  display: block;
  z-index: 1;
  color: white;
  background-color: var(--cms-color-regular);
  line-height: 32px;
  border-radius: 0 5px 5px 0;
  font-size: 18px;
}
div#SiteEditorPage .Sezioni .Sezione div.Indicatore:hover {
  cursor: pointer;
}
div#SiteEditorPage .Sezioni .Sezione div.Warning {
  background-color: white;
  position: absolute;
  margin-top: 10px;
  padding: 10px;
  top: 100%;
  left: 0;
}
div#SiteEditorPage .Sezioni .Sezione div.Warning::before {
  left: 0;
  bottom: 98%;
  content: " ";
  display: block;
  position: absolute;
  border-bottom: 10px solid white;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
div#SiteEditorPage .Sezioni a.Button {
  float: right;
  margin-top: 20px;
}
div#SiteEditorPage .Group {
  position: relative;
}
div#SiteEditorPage .Group label::first-letter {
  text-transform: uppercase;
}
div#SiteEditorPage .Group div.ColorPreview {
  width: 24px;
  height: 24px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  position: absolute;
  border: 1px solid gray;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/SiteEditor.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAGC;EACC;;AAGD;EACC;EACA;;AAEA;EACC;;AAGD;EACC;;AAKD;EACC;;AAGD;EACC;EACA;EACA;;AAIA;EACC;;AAKH;EACC;EACA;EACA;EACA;;AAGD;EACC;;AAEA;EACC;;AAGD;EACC;;AAGD;EACC;EACA;EACA;EACA;;AAEA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGD;EACC;;AAKD;EACC;;AAKH;EACC;;AAEA;EACC;;AAGD;EACC;;AAEA;EACC;EACA;EACA;;AAGD;EACC;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGD;EACC;;AAIF;EACC;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAKH;EACC;EACA;;AAIF;EACC;;AAGC;EACC;;AAIF;EACC;EACA;EACA;EACA;EACA;EACA;EACA%22%7D */
body:not(.CMS) div.Slide div.Images {
  overflow: hidden;
  position: relative;
}
body:not(.CMS) div.Slide div.Images div.Slide__Item {
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  transition: opacity linear 1s;
}
body:not(.CMS) div.Slide div.Images div.Slide__Item > img, body:not(.CMS) div.Slide div.Images div.Slide__Item > video {
  position: absolute;
  object-fit: cover;
  height: 100% !important;
  width: 100% !important;
  top: 0;
  left: 0;
}
body:not(.CMS) div.Slide div.Images div.Slide__Item video {
  z-index: 1;
}
body:not(.CMS) div.Slide div.Images div.Slide__Item img {
  z-index: 2;
}
body:not(.CMS) div.Slide div.Images div.Slide__Item div.Text {
  z-index: 3;
}
body:not(.CMS) div.Slide div.Images div.Slide__Item.Current {
  opacity: 1;
}
@media only screen and (orientation: landscape) {
  body:not(.CMS) div.Slide:not(.BorderBottom) div.Images {
    height: calc(100vh - var(--header-height) - 75px);
    width: 100%;
  }
}
@media only screen and (orientation: portrait) {
  body:not(.CMS) div.Slide:not(.BorderBottom) div.Images {
    height: 100vw;
    width: 100%;
  }
}
@media only screen and (orientation: landscape) {
  body:not(.CMS) div.Slide.BorderBottom div.Images {
    height: calc(100vh - var(--header-height) - 75px);
    width: 100%;
  }
}
@media only screen and (orientation: portrait) {
  body:not(.CMS) div.Slide.BorderBottom div.Images {
    height: 100vw;
    width: 100%;
  }
}
body:not(.CMS) div.Slide div.Text {
  position: absolute;
  display: inline-block;
}
body:not(.CMS) div.Slide div.Text.Align-Center {
  top: 50%;
  transform: translateY(-50%);
}
body:not(.CMS) div.Slide div.Text.Align-Bottom {
  top: 55%;
  transform: translateY(-50%);
}
body:not(.CMS) div.Slide div.Text.Justify-Center {
  left: 50%;
  width: 80%;
  margin: 0 auto;
  text-align: center;
  transform: translateX(-50%);
}
body:not(.CMS) div.Slide div.Text.Align-Center.Justify-Center {
  transform: translate(-50%);
}
body:not(.CMS) div.Slide div.Text.Align-Bottom.Justify-Center {
  transform: translate(-50%);
}
body:not(.CMS) div.Slide a.Next {
  right: 0;
}
body:not(.CMS) div.Slide a.Next::after {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f054";
}
body:not(.CMS) div.Slide a.Prev {
  left: 0;
}
body:not(.CMS) div.Slide a.Prev::after {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f053";
}
body:not(.CMS) div.Slide a.Next,
body:not(.CMS) div.Slide a.Prev {
  top: 50%;
  content: "";
  width: 60px;
  height: 60px;
  z-index: 100;
  cursor: pointer;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
}
body:not(.CMS) div.Slide a.Next::after,
body:not(.CMS) div.Slide a.Prev::after {
  width: 100%;
  font-size: 24px;
  line-height: 60px;
  text-align: center;
  color: #ccc;
}
@media only screen and (max-width: 759px) {
  body:not(.CMS) div.Slide a.Next,
  body:not(.CMS) div.Slide a.Prev {
    width: 30px;
    height: 40px;
  }
  body:not(.CMS) div.Slide a.Next::after,
  body:not(.CMS) div.Slide a.Prev::after {
    line-height: 40px;
  }
}

body.CMS div.Slide div.Images {
  display: flex;
  width: 100%;
  border-bottom: dashed 1px red;
}
body.CMS div.Slide div.Images > div {
  width: 100%;
  padding: 10px;
}
body.CMS div.Slide div.Images img {
  float: left;
  height: 100px !important;
  width: unset !important;
  max-width: 100%;
  margin: 0 1px 1px 0;
  border: solid 1px white;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Slide.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAIQ;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAEI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAOJ;EADJ;IAEQ;IACA;;;AAGJ;EANJ;IAOQ;IACA;;;AAOJ;EADJ;IAEQ;IACA;;;AAGJ;EANJ;IAOQ;IACA;;;AAKZ;EACI;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAGJ;EACI;;AAIR;EACI;;AAEA;ECAR;EACA;EACA;EACA;EACA;EACA;EACA;;ADDI;EACI;;AAEA;ECRR;EACA;EACA;EACA;EACA;EACA;EACA;;ADOI;AAAA;EAEI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;AAAA;EACI;EACA;EACA;EACA;EACA,OChIE;;ADmIN;EAnBJ;AAAA;IAoBQ;IACA;;EAEA;AAAA;IACI;;;;AASZ;EACI;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA%22%7D */
body:not(.CMS) div.SlideGallery {
  padding: 0 25px;
}
body:not(.CMS) div.SlideGallery.Violet h2 {
  color: #ca0c55 !important;
}
body:not(.CMS) div.SlideGallery.Violet a > span, body:not(.CMS) div.SlideGallery.Violet .Arrow {
  background-color: #ca0c55 !important;
}
body:not(.CMS) div.SlideGallery.Violet a > span:hover, body:not(.CMS) div.SlideGallery.Violet .Arrow:hover {
  background-color: #ff9900 !important;
}
body:not(.CMS) div.SlideGallery.LightBlue h2 {
  color: #1f8fcf !important;
}
body:not(.CMS) div.SlideGallery.LightBlue a > span, body:not(.CMS) div.SlideGallery.LightBlue .Arrow {
  background-color: #1f8fcf !important;
}
body:not(.CMS) div.SlideGallery.LightBlue a > span:hover, body:not(.CMS) div.SlideGallery.LightBlue .Arrow:hover {
  background-color: #ff9900 !important;
}
body:not(.CMS) div.SlideGallery.Green h2 {
  color: #588725 !important;
}
body:not(.CMS) div.SlideGallery.Green a > span, body:not(.CMS) div.SlideGallery.Green .Arrow {
  background-color: #588725 !important;
}
body:not(.CMS) div.SlideGallery.Green a > span:hover, body:not(.CMS) div.SlideGallery.Green .Arrow:hover {
  background-color: #ff9900 !important;
}
body:not(.CMS) div.SlideGallery h2 {
  margin-left: -25px;
  margin-right: -25px;
}
body:not(.CMS) div.SlideGallery .AttractionList .Attraction {
  padding: 10px;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 20px;
  overflow: hidden;
}
body:not(.CMS) div.SlideGallery .AttractionList .Attraction a img {
  width: 100%;
  display: block;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
body:not(.CMS) div.SlideGallery .AttractionList .Attraction a > span {
  border-top: 1px solid white;
  margin: 0 !important;
  background: #588725;
  padding: 15px 0;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 24px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body:not(.CMS) div.SlideGallery .AttractionList .Attraction a:hover {
  text-decoration: none !important;
}
body:not(.CMS) div.SlideGallery .AttractionList .Attraction a:hover span {
  background: #ff9900;
}
body:not(.CMS) div.SlideGallery .AttractionList .Attraction div.Text {
  margin-top: 5px;
  text-align: justify;
}
body:not(.CMS) div.SlideGallery::after {
  content: " ";
  display: block;
  clear: both;
}
body:not(.CMS) div.SlideGallery .Arrow {
  border-radius: 50%;
  position: absolute;
  cursor: pointer;
  top: 50%;
  width: 50px;
  height: 50px;
}
body:not(.CMS) div.SlideGallery .Arrow:focus {
  outline: 0;
}
body:not(.CMS) div.SlideGallery .Arrow.Right {
  right: 0;
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}
body:not(.CMS) div.SlideGallery .Arrow.Right i {
  left: 28px;
}
body:not(.CMS) div.SlideGallery .Arrow.Left {
  left: 0;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}
body:not(.CMS) div.SlideGallery .Arrow.Left i {
  right: 28px;
}
body:not(.CMS) div.SlideGallery .Arrow i {
  top: 50%;
  color: white;
  position: absolute;
  font-size: 25px;
  transform: translate(0, -50%);
}
body:not(.CMS) div.SlideGallery .AllSlidesVisible .Arrow {
  display: none;
}

body.CMS div.SlideGallery tr:first-of-type th {
  height: 50px;
  vertical-align: middle;
  border: dashed 1px red;
}
body.CMS div.SlideGallery td {
  vertical-align: top;
}
body.CMS div.SlideGallery td:not(:last-of-type) {
  border-right: dashed 1px red;
}
body.CMS div.SlideGallery td img {
  height: 100px !important;
  width: unset !important;
  max-width: 100%;
  display: block;
  margin: 20px auto;
  border: solid 1px white;
}
body.CMS div.SlideGallery td img:first-of-type {
  margin-top: 0px;
}
body.CMS div.SlideGallery td p {
  text-align: center;
  margin: 20px 0 !important;
  height: 100px;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/SlideGallery.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAGI;EACI;;AAGI;EACI;;AAGJ;EACI;;AAEA;EACI;;AAMR;EACI;;AAGJ;EACI;;AAEA;EACI;;AAMR;EACI;;AAGJ;EACI;;AAEA;EACI;;AAKZ;EACI;EACA;;AAIA;EACI;EACA;EACA;EACA;EACA;;AAGI;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA,YC9CV;ED+CU;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;;AAEA;EACI,YC3Db;;ADgEC;EACI;EACA;;AAKZ;EACI;EACA;EACA;;AAIJ;EACI;EACA;EACA;EACA;EACA,OC1EQ;ED2ER,QC3EQ;;AD6ER;EACI;;AAGJ;EACI;EACA;;AAEA;EACI;;AAIR;EACI;EACA;;AAEA;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;;AAKJ;EACI;;;AASJ;EACI;EACA;EACA;;AAIR;EACI;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAIR;EACI;EACA;EACA%22%7D */
body.Sondaggio p.History {
  color: #0054a5;
  font-weight: bold;
}
body.Sondaggio div.Question {
  padding: 20px 0 0 0;
  animation: fadeIn 0.3s;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
body.Sondaggio div.Question:not(.Visible) {
  display: none;
  animation: fadeOut 0.3s;
}
body.Sondaggio h3.Raggruppamento {
  margin-bottom: 20px !important;
}
body.Sondaggio div.Answer {
  margin-bottom: 20px;
  color: #0054a5;
  font-size: 18px;
  float: left;
}
body.Sondaggio div.Answer label {
  font-size: inherit;
}
body.Sondaggio div.Answer option {
  text-align: center;
}
body.Sondaggio div.Answer input, body.Sondaggio div.Answer select {
  width: 200px;
}
body.Sondaggio div.Margin {
  margin: 20px 0;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    left: 0;
    width: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Sondaggio.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAGI;EACI,OCcK;EDbL;;AAGJ;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAIR;EACI;;AAGJ;EACI;EACA,OCRK;EDSL;EACA;;AAEA;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAIR;EACI;;AAGJ;EACI;IACI;;EAGJ;IACI;;;AAIR;EACI;IACI;;EAGJ;IACI;IACA;IACA;IACA;IACA;IACA%22%7D */
body.Site8.Staff {
  background-color: black;
}
body.Site8.Staff div.Staff#Staff div.Banner {
  --banner-height: 125px !important;
  border-bottom: none !important;
  margin-bottom: 250px;
}
body.Site8.Staff div.Staff#Staff div.Banner img.Fixed {
  left: 60% !important;
  max-height: 125px !important;
}
@media only screen and (max-width: 759px) {
  body.Site8.Staff div.Staff#Staff div.Banner {
    --banner-height: 100px !important;
  }
  body.Site8.Staff div.Staff#Staff div.Banner img.Fixed {
    left: 50% !important;
    max-height: 100px !important;
  }
}
body.Site8.Staff div#Content {
  background-color: black;
}
body.Site8.Staff div#Frog {
  position: absolute;
  top: 430px;
  left: 140px;
  width: 142px;
  height: 177px;
  background: url("/Content/Media8/Staff/Frog.png");
  background-position: 0 0;
  z-index: 7;
}
body.Site8.Staff div.MobileStaff {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 340px);
  display: none;
  color: white;
  margin-bottom: 30px;
}
body.Site8.Staff div.MobileStaff p {
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}
@media only screen and (max-width: 759px) {
  body.Site8.Staff div.MobileStaff {
    display: table;
  }
}
body.Site8.Staff div#BrokenGlass {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: black;
  background: url("/Content/Media8/Staff/BrokenGlass.jpg") no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 53;
}
body.Site8.Staff div#StaffPage {
  white-space: nowrap;
  max-width: 1270px;
  margin: auto;
  min-height: 600px;
  margin-top: 65px;
  --staff-member-width: 95px;
}
body.Site8.Staff div#StaffPage div.StaffMemberContainer {
  margin-top: 200px;
  position: relative;
  display: inline-block;
  width: var(--staff-member-width);
  left: 0;
}
body.Site8.Staff div#StaffPage div.StaffMemberContainer.Front div.StaffMember {
  z-index: 2;
  top: -40px;
}
body.Site8.Staff div#StaffPage div.StaffMemberContainer div.StaffMember {
  position: absolute;
  top: -65px;
  left: 0px;
  z-index: 1;
}
body.Site8.Staff div#StaffPage div.StaffMemberContainer div.StaffMember img {
  margin-left: -45px;
  max-width: none;
}
body.Site8.Staff div#StaffPage div.StaffMemberContainer div.SensibleArea {
  position: absolute;
  z-index: 3;
  display: inline-block;
  cursor: pointer;
  width: 95px;
  height: 260px;
  left: 10px;
  top: 10px;
}
@media only screen and (max-width: 759px) {
  body.Site8.Staff div#StaffPage {
    display: none;
  }
}
body.Site8.Staff div#StaffDetailScope {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  height: 100%;
}
body.Site8.Staff div#StaffDetailScope div#StaffDetail {
  position: absolute;
  bottom: 0px;
  right: 400px;
}
body.Site8.Staff div#StaffDetailScope div#StaffDetail div#Wires {
  position: absolute;
  top: 0;
  left: 0;
  width: 353px;
  height: 757px;
  background: url("/Content/Media8/Staff/Wires.png") no-repeat center center;
  background-position: 0 0;
  z-index: 4;
}
body.Site8.Staff div#StaffDetailScope div#StaffDetail div#Balloons {
  position: absolute;
  top: 0;
  left: 0;
  width: 363px;
  height: 463px;
  background: url("/Content/Media8/Staff/Balloons.png") no-repeat center center;
  background-position: 0 0;
  z-index: 5;
}
body.Site8.Staff div#StaffDetailScope div#StaffDetail div#Sign {
  position: absolute;
  top: 300px;
  left: 45px;
  width: 255px;
  height: 300px;
  background: url("/Content/Media8/Staff/Signs.png") no-repeat center center;
  background-position: 0 0;
  z-index: 6;
}
body.Site8.Staff div#StaffDetailScope div#StaffDetail a#SignMail {
  cursor: pointer;
  position: absolute;
  z-index: 8;
  top: 300px;
  left: 45px;
  width: 255px;
  height: 100px;
}
body.Site8.Staff div#StaffDetailScope div#StaffDetail div#Frog {
  position: absolute;
  top: 430px;
  left: 140px;
  width: 142px;
  height: 177px;
  background: url("/Content/Media8/Staff/Frog.png");
  background-position: 0 0;
  z-index: 7;
}
body.Site8.Staff div#StaffDetailScope div#StaffDetail div#FrogGun {
  display: none;
  position: absolute;
  top: 289px;
  left: 27px;
  width: 272px;
  height: 462px;
  background: url("/Content/Media8/Staff/FrogGun.png") no-repeat center center;
  background-position: 0 0;
  z-index: 7;
}
body.Site8.Staff div#StaffDetailScope div#StaffDetail div.Close {
  position: absolute;
  width: 76px;
  height: 76px;
  background: url("/Content/Media8/Staff/Crosshair.png") no-repeat center center;
  background-position: -76px 0;
  z-index: 6;
  cursor: pointer;
}
body.Site8.Staff div#StaffDetailScope div#StaffDetail div.Close:hover {
  background-position: 0 0;
}
@media only screen and (max-width: 759px) {
  body.Site8.Staff div#StaffDetailScope {
    display: none;
  }
}

body.CMS div.MobileStaff {
  display: block;
  z-index: 1;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Staff.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAEA;EACI;;AAGI;EACI;EACA;EACA;;AAEA;EACI;EACA;;AAIR;EACI;IACI;;EAEA;IACI;IACA;;;AAMhB;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EAdJ;IAeQ;;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAGI;EACI;EACA;;AAIR;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIR;EA9CJ;IA+CQ;;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAKZ;EA/FJ;IAgGQ;;;;AAMR;EACI;EACA%22%7D */
/**
 * Swiper 4.5.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 22, 2019
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 0;
  /* right: auto; */
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  /* right: 10px; */
  /* left: auto; */
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

div.TabContainer div.TabContent:not(.Selected) {
  display: none;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Users/MassimilianoCarosi/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/TabContainer.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AACI;EACI%22%7D */
div.CMSBlock.TabContent.Black h2 {
  color: white !important;
  font-weight: bold !important;
}
div.CMSBlock.TabContent.Black p {
  color: white !important;
}

body div.Tabs div.Wrap {
  padding: 20px;
  overflow-x: auto;
}
body div.Tabs div.TabContent {
  border: 1px solid #ccc;
  border-radius: var(--style-tab-content-radius);
}
@media only screen and (min-width: 760px) {
  body div.Tabs div.TabContent {
    padding: 20px;
  }
}
@media only screen and (max-width: 759px) {
  body div.Tabs div.TabContent {
    padding: 20px;
  }
}
body div.Tabs div.TabContent h4.Title {
  display: none;
}
body div.Tabs div.TabHeader {
  overflow: auto;
}
body div.Tabs div.TabHeader > :first-child {
  border-top-left-radius: var(--style-tab-content-radius);
}
body div.Tabs div.TabHeader > :last-child {
  border-top-right-radius: var(--style-tab-content-radius);
}
body div.Tabs div.TabHeader div.Tab {
  display: block;
  cursor: default;
  color: white;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  float: left;
  display: block;
  height: 50px;
  line-height: 50px;
  background-color: #999;
  border-right: solid 1px white;
  border-bottom: solid 1px white;
}
body div.Tabs div.TabHeader div.Tab.Selected, body div.Tabs div.TabHeader div.Tab:hover {
  background-color: var(--color-tab-bar);
}
body div.Tabs div.TabHeader div.Tab:hover:not(.Selected) {
  cursor: pointer;
}
body div.Tabs div.TabHeader div.Tab a {
  color: white !important;
}
body div.Tabs div.TabHeader div.Tab a:hover {
  text-decoration: none !important;
}
body div.Tabs div.TabHeader div.Tab:last-child {
  border-right: none;
}
@media only screen and (min-width: 760px) {
  body div.Tabs div.TabHeader {
    border-bottom: 20px solid var(--color-tab-bar);
  }
}
@media only screen and (max-width: 759px) {
  body div.Tabs div.TabHeader div.Tab {
    width: 50% !important;
  }
  body div.Tabs div.TabHeader div.Tab:nth-child(even) {
    border-right: none;
  }
  body div.Tabs div.TabHeader div.Tab:nth-child(odd) {
    clear: both;
  }
}

body.CMS div.CMSBlock.TabContent h4 {
  margin-bottom: 20px;
  border-bottom: 1px dashed red;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/TabContent.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAIQ;EACI;EACA;;AAGJ;EACI;;;AAQJ;EACI;EACA;;AAGJ;EACI;EACA;;AAEA;EAJJ;IAKQ,SCKY;;;ADFhB;EARJ;IASQ,SCEU;;;ADCd;EACI;;AAIR;EACI;;AAGA;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBCtDH;EDuDG;EACA;;AAEA;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAEA;EACI;;AAIR;EACI;;AAIR;EAhDJ;IAiDQ;;;AAGJ;EACI;IACI;;EAEA;IACI;;EAGJ;IACI;;;;AAUhB;EACI;EACA%22%7D */
body.Christmas {
  background: url("/Content/Media/Tematizzazione/Natale/BGModulo.jpg") center repeat;
}
body.Christmas footer:before {
  content: "";
  display: block;
  background: url("/Content/Media/Tematizzazione/Natale/FooterModulo.png") center repeat;
  height: 77px;
  width: 100%;
  margin-top: -127px;
  position: absolute;
}
body.Christmas.HamburgerMenu header:before {
  content: "";
  display: block;
  background: url("/Content/Media/Tematizzazione/Natale/HeaderModulo.png") center repeat;
  height: 76px;
  width: 100%;
  position: absolute;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Themes.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAEA;EACI;;AAGI;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAMA;EACI;EACA;EACA;EACA;EACA;EACA%22%7D */
body.VerificaPass form a.Button, body.VerificaPass form video {
  margin-bottom: 15px;
}
body.VerificaPass form video {
  width: 100%;
  max-height: 250px;
  background-color: black;
}
body.VerificaPass a.RegistraRientro,
body.VerificaPass a.RegistraUscita,
body.VerificaPass a.Reset {
  text-align: center;
}
body.VerificaPass a.RegistraRientro:not(.Enabled),
body.VerificaPass a.RegistraUscita:not(.Enabled),
body.VerificaPass a.Reset:not(.Enabled) {
  cursor: default;
  background: linear-gradient(to bottom, #ccc, #999);
}
body.VerificaPass a.RegistraRientro,
body.VerificaPass a.RegistraUscita {
  width: calc(50% - 12px);
  display: inline-block;
  margin-right: 0;
}
body.VerificaPass a.Button.Reset {
  margin: 0;
}
body.VerificaPass .CameraAvailable:not(.Visible),
body.VerificaPass .CameraNotAvailable:not(.Visible) {
  display: none;
}
body.VerificaPass a.Button.FirmaRientro {
  transform: translateX(-50%);
  display: inline-block;
  margin-left: 50%;
  width: auto;
}
body.VerificaPass a.Button.FirmaRientro.SegnaRientro {
  background: #588725;
}
body.VerificaPass a.Button.FirmaRientro.ForzaRientro {
  background: #900;
}
body.VerificaPass div.Dialog div.Container h2 {
  font-family: "RobotoSlab", "Open Sans", sans-serif;
  background-color: #efefef;
  width: calc(100% + 20px);
  color: #003851;
  border-bottom: unset;
  padding-left: 10px;
  margin-left: -10px;
  font-weight: bold;
  margin-top: -10px;
  font-size: 22px;
}
body.VerificaPass div.Dialog div.Container i.ValidationStatus {
  display: block;
  font-size: 120px;
  margin-top: 40px;
  text-align: center;
}
body.VerificaPass div.Dialog div.Container i.ValidationStatus.ValidationStatus--Fail {
  color: #900;
}
body.VerificaPass div.Dialog div.Container i.ValidationStatus.ValidationStatus--Success {
  color: #588725;
}
body.VerificaPass div.Dialog div.Container #Message {
  color: #588725;
}
body.VerificaPass div.Dialog div.Container span.ErrorPlaceholder span {
  color: #900;
}
body.VerificaPass div.Dialog div.Container #Message, body.VerificaPass div.Dialog div.Container span.ErrorPlaceholder {
  margin: 40px 0;
  display: block;
  padding: 20px 0;
  font-size: 20px;
  text-align: center;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
body.VerificaPass div.Dialog div.Container div.Buttons {
  display: flex;
  margin-top: 20px;
  justify-content: center;
}
body.VerificaPass div.Dialog div.Container div.Buttons a.Button {
  margin: 0;
  text-align: center;
  display: inline-block;
  float: unset !important;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/VerificaPass.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAIQ;EACI;;AAGJ;EACI;EACA;EACA;;AAIR;AAAA;AAAA;EAGI;;AAEA;AAAA;AAAA;EACI;EACA;;AAIR;AAAA;EAEI;EACA;EACA;;AAGJ;EACI;;AAKA;AAAA;EACI;;AAIR;EACI;EACA;EACA;EACA;;AAEA;EACI,YCzBE;;AD4BN;EACI,YC3CE;;ADgDN;EACI;EACA,kBCvDS;EDwDT;EACA,OC7CK;ED8CL;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAEA;EACI,OCpEF;;ADuEF;EACI,OC1DF;;AD8DN;EACI,OC/DE;;ADkEN;EACI,OCjFE;;ADoFN;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA%22%7D */
body.VoucherEditor div.Console {
  position: fixed;
  top: 110px;
  right: 20px;
  background: #efefef;
  border-radius: 5px;
  padding: 10px;
  font-size: 12px;
}
body.VoucherEditor div.Console label {
  margin-top: 10px;
  display: block;
}
body.VoucherEditor div.Console label:first-child {
  margin-top: 0;
}
body.VoucherEditor input[type=text] {
  width: 100%;
}
body.VoucherEditor textarea {
  height: 200px;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/VoucherEditor.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAGI;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAEA;EACI;;AAKZ;EACI;;AAGJ;EACI%22%7D */
body.VoucherRetail form {
  text-align: center;
}
body.VoucherRetail form a.Button, body.VoucherRetail form video {
  margin-bottom: 15px;
}
body.VoucherRetail form video {
  width: 100%;
  max-height: 50vh;
  background-color: black;
}
body.VoucherRetail form input {
  text-align: center;
  margin-bottom: 15px;
}
body.VoucherRetail .CameraAvailable:not(.Visible),
body.VoucherRetail .CameraNotAvailable:not(.Visible) {
  display: none;
}
body.VoucherRetail div.Dialog div.Container h2 {
  font-family: "RobotoSlab", "Open Sans", sans-serif;
  background-color: #efefef;
  width: calc(100% + 20px);
  color: #003851;
  border-bottom: unset;
  padding-left: 10px;
  margin-left: -10px;
  font-weight: bold;
  margin-top: -10px;
  font-size: 22px;
}
body.VoucherRetail div.Dialog div.Container i.ValidationStatus {
  display: block;
  font-size: 120px;
  margin-top: 40px;
  text-align: center;
}
body.VoucherRetail div.Dialog div.Container i.ValidationStatus.ValidationStatus--Fail {
  color: #900;
}
body.VoucherRetail div.Dialog div.Container i.ValidationStatus.ValidationStatus--Success {
  color: #588725;
}
body.VoucherRetail div.Dialog div.Container #Message {
  color: #588725;
}
body.VoucherRetail div.Dialog div.Container span.ErrorPlaceholder span {
  color: #900;
}
body.VoucherRetail div.Dialog div.Container #Message, body.VoucherRetail div.Dialog div.Container span.ErrorPlaceholder {
  margin: 40px 0;
  display: block;
  padding: 20px 0;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
body.VoucherRetail div.Dialog div.Container #Message b, body.VoucherRetail div.Dialog div.Container #Message strong, body.VoucherRetail div.Dialog div.Container span.ErrorPlaceholder b, body.VoucherRetail div.Dialog div.Container span.ErrorPlaceholder strong {
  font-weight: bold;
}
body.VoucherRetail div.Dialog div.Container div.Buttons {
  display: flex;
  margin-top: 20px;
  justify-content: center;
}
body.VoucherRetail div.Dialog div.Container div.Buttons a.Button {
  margin: 0;
  text-align: center;
  display: inline-block;
  float: unset !important;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/VoucherRetail.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAGI;EACI;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;;AAMJ;AAAA;EACI;;AAKJ;EACI;EACA,kBCzBS;ED0BT;EACA,OCfK;EDgBL;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAEA;EACI,OCtCF;;ADyCF;EACI,OC5BF;;ADgCN;EACI,OCjCE;;ADoCN;EACI,OCnDE;;ADsDN;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAIR;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA%22%7D */
html.Widget, body.Widget {
  background-color: #ccc;
}

div.Widget {
  background-color: #ccc;
  color: white;
  text-align: center;
}
div.Widget img.Logo {
  display: block;
  position: relative;
  margin: 0 auto 20px;
  max-width: 100%;
}
div.Widget form {
  display: inline-block;
  max-width: 765px;
  margin: 0 auto;
  padding: 0 10px;
  text-align: left;
}
div.Widget form div.Group {
  float: left;
  margin: 0 20px 10px 0;
  padding: 0;
}
div.Widget form div.Group:last-child {
  margin-right: 0;
}
div.Widget form label {
  float: left;
  clear: both;
  font-size: 20px;
  margin: 0 20px 0 0;
  width: 70px;
}
div.Widget form span.Price {
  float: left;
  font-size: 20px;
  font-weight: bold;
  margin: 0 10px 0 0;
}
div.Widget form span.Price.Full {
  position: relative;
}
div.Widget form span.Price.Full:before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(50% - 2px);
  height: 2px;
}
div.Widget form input {
  font-size: 20px;
  padding: 0;
  margin: 0;
  height: auto;
  width: 40px;
  border-radius: 0;
  font-weight: bold;
}
div.Widget form input#Omaggi {
  float: right;
  border: none;
  text-align: center;
  width: 65px;
}
div.Widget form a.Button {
  margin: 0 0 10px 0;
  padding: 3px 10px;
  float: right;
  font-size: 16px;
}
div.Widget form div.NumberSelector {
  float: right;
  background-color: white;
}
div.Widget form div.NumberSelector a.Up, div.Widget form div.NumberSelector a.Down {
  right: 10px;
}
div.Widget div.Bottom {
  clear: both;
  height: 10px;
}
@media only screen and (max-width: 759px) {
  div.Widget div.Group {
    display: block;
    float: none !important;
    width: 100%;
  }
}
@media only screen and (min-width: 350px) {
  div.Widget div.Group {
    max-width: 300px;
  }
}
@media only screen and (max-width: 249px) {
  div.Widget form label {
    margin-right: 0;
  }
  div.Widget form span.Price {
    display: none !important;
  }
}
@media only screen and (max-width: 400px) and (max-height: 200px) {
  div.Widget img.Logo {
    height: 60px;
    margin-bottom: 10px;
  }
  div.Widget form label {
    margin-right: 0;
  }
  div.Widget form span.Price {
    display: none !important;
  }
  div.Widget div.Bottom {
    clear: both;
    height: 1px;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/Widget.scss%22,%22file:///C:/Progetti/MadeTicketWeb/FrontEnd/Content/Theme/_Library.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAEA;EACI,kBCKc;;;ADFlB;EACI,kBCCc;EDAd;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAEA;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAEA;EACI;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA;;AAMJ;EACI;EACA;;AAEA;EACI;;AAkBZ;EACI;EACA;;AAGJ;EACI;IACI;IACA;IACA;;;AAIR;EACI;IACI;;;AAIR;EAEQ;IACI;;EAGJ;IACI;;;AAKZ;EACI;IACI;IACA;;EAIA;IACI;;EAGJ;IACI;;EAIR;IACI;IACA%22%7D */
