<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.marquee {
  max-width: calc(100% - 100px);
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
}
/*TESTI SCORREVOLI*/
.marquee h5 {
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
}

.marquee h5:hover {
  animation: marquee 5s linear infinite;
  overflow: unset;
  display: block;
}

.ts-card-title {
  color: var(--ts-color-two);
  font-weight: 700;
}

@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}

a{
  text-decoration: none;
}

#sidebar-wrapper{
  background: var(--ts-color-two) 20%;
}

.button:focus,.button:active,.btn:focus,.btn:active {
  outline: none !important;
  box-shadow: none;
}

@media (min-width: 1600px) {
  .container {
    width: 1520px !important;
  }
}

@media (min-width: 1400px) AND (max-width: 1600px){
  .container {
    width: 1320px!important;
  }
}

@media (min-width: 1200px) AND (max-width: 1400px){
  .container {
    width: 1120px!important;
  }
}

@media (min-width: 992px) AND (max-width: 1200px){
  .container {
    width: 920px!important;
  }
}

@media (min-width: 768px) AND (max-width: 992px){
  .container {
    width: 700px!important;
  }
}

.form-check-input:checked {
  background-color: var(--ts-color-two);
  border-color: var(--ts-color-two);
  /*
  background-color: #0d6efd;
  border-color: #0d6efd;
  */
}
.form-check-input:focus {
  border: 1px solid rgba(0, 0, 0, 0.25);
  outline: 0;
  box-shadow: 0 0 0 0.0rem;
  /*
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  */
}

.modal .btn-close{
  filter: invert(1) grayscale(100%) brightness(200%);
}

.modal .modal-header, .modal .modal-header-white{
  color: #fff;
  background-color: var(--ts-color-two);
}

.modal .modal-footer{
  background-color: var(--ts-color-two);
}

.modal .ts-btn-secondary{
  border-color: white;
}
</pre></body></html>