@font-face {
  font-family: "Figtree";
  src: url("Figtree.woff2") format("woff2"), url("Figtree.woff") format("woff");
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
html, body {
  margin: 0;
  background-color: white;
  color: black;
  font-family: "Figtree", sans-serif;
}

body.freeze {
  overflow: hidden;
}

.grecaptcha-badge {
  display: none !important;
}

.container, .container-lg, .container-md, .container-sm, .container-xl {
  padding-right: 15px;
  padding-left: 15px;
}

.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
}

.top-bar {
  width: 100%;
  background-color: hsl(0, 0%, 95%);
  padding: 10px 0;
}
.top-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(0, 0%, 20%);
}
.top-bar a .text {
  font-size: 0.9em;
  text-transform: uppercase;
}
.top-bar a img {
  height: 20px;
}

.main-bar {
  width: 100%;
  border-top: 1px solid hsl(0, 0%, 95%);
  border-bottom: 1px solid hsl(0, 0%, 95%);
  padding: 18px 0;
}
.main-bar .nav-container {
  display: flex;
  align-items: center;
}
.main-bar .nav-container .open-sidebar {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.main-bar .nav-container .open-sidebar span {
  display: flex;
}
.main-bar .nav-container .logo-img {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.main-bar .nav-container .logo-img span {
  font-size: 0.9em;
  color: black;
  text-decoration: none;
  text-transform: uppercase;
}
.main-bar .nav-container img {
  max-height: 40px;
}
.main-bar .nav-container .links {
  display: flex;
  align-items: center;
}
.main-bar .nav-container .links a {
  display: flex;
  text-decoration: none;
  font-weight: 500;
  color: hsl(0, 0%, 40%);
  margin-left: 40px;
  text-transform: uppercase;
}
.main-bar .nav-container .links a.selected {
  color: black;
  font-weight: 600;
}
.main-bar .nav-container .links a:hover {
  color: black;
}
.main-bar .nav-container .bar {
  height: 50px;
  width: 1px;
  background-color: hsl(0, 0%, 95%);
  margin: 0 40px;
}
.main-bar .nav-container .grow {
  flex-grow: 1;
}
.main-bar .nav-container .open-search {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.main-bar .nav-container .open-search span {
  display: flex;
}

.search-bar {
  width: 100%;
  border-bottom: 1px solid hsl(0, 0%, 95%);
  padding: 10px 0;
  display: none;
}
.search-bar input {
  width: 100%;
  border: 1px solid hsl(0, 0%, 90%);
  border-radius: 40px;
  padding: 10px 20px;
  outline: none;
}

.side-bar {
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 1000;
  background-color: white;
  padding: 20px 30px;
  top: 140px;
  bottom: 20px;
  left: 20px;
  right: 20px;
  border: 1px solid hsl(0, 0%, 90%);
  border-radius: 20px;
  overflow: scroll;
}
.side-bar a {
  display: block;
  text-decoration: none;
  color: black;
  padding: 10px 0;
}
.side-bar a:hover {
  background-color: hsl(0, 0%, 95%);
  border-radius: 8px;
}
.side-bar.hidden {
  display: none;
}

footer {
  border-top: 1px solid hsl(0, 0%, 95%);
}
footer .logo-footer {
  width: 100%;
}
footer .logo-footer img {
  width: 100%;
}
footer .title {
  font-size: 1.2em;
  font-weight: 700;
}
footer a {
  color: black;
  text-decoration: none;
}
footer .row-contacts a {
  text-decoration: underline;
  font-weight: 500;
}
footer .col-feedaty img {
  width: 100px;
}
footer .col-feedaty .stars span {
  color: #F9D77D;
  font-variation-settings: "FILL" 1;
}

@media screen and (min-width: 768px) {
  footer .logo-footer {
    width: 75%;
  }
  footer .logo-footer img {
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .sticky {
    top: 1.5rem;
    position: sticky;
  }
  .top-bar {
    padding: 12px 0;
  }
  .top-bar a {
    justify-content: flex-end;
    color: hsl(0, 0%, 20%);
  }
  .main-bar .nav-container img {
    max-height: 56px;
  }
}
@media screen and (min-width: 1440px) {
  .container {
    max-width: 1400px !important;
  }
}
h1 {
  font-size: 2.5em;
  font-weight: 700;
}

h3 {
  font-size: 1.8em;
  font-weight: 700;
}

.banner, .banner-edit {
  width: 100%;
  aspect-ratio: 5/2;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

.banner-edit {
  display: none;
  position: relative;
}
.banner-edit form {
  display: flex;
  flex-direction: column;
  padding: 20px 30px;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.banner-edit form label {
  font-weight: 700;
}
.banner-edit form input[type=text] {
  padding: 10px 15px;
  border: 1px solid hsl(0, 0%, 90%);
  margin-top: 15px;
  border-radius: 50px;
  background-color: white;
  outline: none;
}

.article-date {
  color: hsl(0, 0%, 40%);
}

#article-title {
  padding: 10px 15px;
  border: 1px solid hsl(0, 0%, 90%);
  border-radius: 50px;
  background-color: white;
  outline: none;
  width: 100%;
  display: none;
  margin-bottom: 10px;
}

.banner-edit::before {
  content: "";
  display: flex;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  opacity: 0.1;
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.article-row {
  color: black;
  text-decoration: none;
  border-radius: 8px;
}
.article-row img {
  width: 100%;
  border-radius: 8px;
}
.article-row .text h4 {
  font-size: 1.3em;
  font-weight: 700;
}
.article-row .text p {
  font-size: 0.9em;
  line-height: 160%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4; /* number of lines to show */
  line-clamp: 4;
  -webkit-box-orient: vertical;
}
.article-row .text span {
  text-decoration: underline;
  font-weight: 600;
}

.col-article h2 {
  font-size: 1.8em;
  font-weight: 700;
}
.col-article p, .col-article li {
  line-height: 200%;
}
.col-article a {
  color: black;
  font-weight: 500;
}

.bar {
  width: 100%;
  height: 1px;
  background-color: hsl(0, 0%, 95%);
}

#editDescrizione, #saveDesc, #editBanner, #saveBanner {
  top: 0;
  left: -70px;
  position: absolute;
  display: flex;
  background-color: #4B75C7;
  color: white;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
#editDescrizione .icon-close, #saveDesc .icon-close, #editBanner .icon-close, #saveBanner .icon-close {
  display: none;
}
#editDescrizione.open .icon-edit, #saveDesc.open .icon-edit, #editBanner.open .icon-edit, #saveBanner.open .icon-edit {
  display: none;
}
#editDescrizione.open .icon-close, #saveDesc.open .icon-close, #editBanner.open .icon-close, #saveBanner.open .icon-close {
  display: flex;
}
#editDescrizione#saveDesc, #saveDesc#saveDesc, #editBanner#saveDesc, #saveBanner#saveDesc {
  top: 60px;
}
#editDescrizione#saveDesc.hidden, #saveDesc#saveDesc.hidden, #editBanner#saveDesc.hidden, #saveBanner#saveDesc.hidden {
  display: none;
}
#editDescrizione#editBanner, #saveDesc#editBanner, #editBanner#editBanner, #saveBanner#editBanner {
  top: 15px;
  left: -60px;
}
#editDescrizione#saveBanner, #saveDesc#saveBanner, #editBanner#saveBanner, #saveBanner#saveBanner {
  top: 75px;
  left: -60px;
}
#editDescrizione#saveBanner.hidden, #saveDesc#saveBanner.hidden, #editBanner#saveBanner.hidden, #saveBanner#saveBanner.hidden {
  display: none;
}

#editTitle, #saveTitle {
  top: 0;
  left: -60px;
  position: absolute;
  display: flex;
  background-color: #4B75C7;
  color: white;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
#editTitle .icon-close, #saveTitle .icon-close {
  display: none;
}
#editTitle.open .icon-edit, #saveTitle.open .icon-edit {
  display: none;
}
#editTitle.open .icon-close, #saveTitle.open .icon-close {
  display: flex;
}
#editTitle#saveTitle, #saveTitle#saveTitle {
  left: -120px;
}
#editTitle#saveTitle.hidden, #saveTitle#saveTitle.hidden {
  display: none;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
}
.article-tags .tag {
  margin-right: 10px;
  padding: 5px 15px;
  font-size: 0.9em;
  color: black;
  display: flex;
  align-items: center;
  background-color: hsl(0, 0%, 90%);
  border-radius: 20px;
}
.article-tags .tag a {
  text-decoration: none;
}
.article-tags .tag .material-symbols-outlined {
  font-size: 1.3em;
  display: flex;
  cursor: pointer;
}

.new-tag {
  display: flex;
  align-items: center;
}
.new-tag .select-cont {
  position: relative;
}
.new-tag .select-cont select {
  background-color: white;
  outline: none;
  padding: 10px 20px;
  border: 1px solid hsl(0, 0%, 90%);
  border-radius: 50px;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 500px;
}
.new-tag .select-cont span {
  position: absolute;
  top: calc(50% - 12px);
  font-size: 24px;
  right: 15px;
  pointer-events: none;
}
.new-tag .check {
  display: flex;
  background-color: #4B75C7;
  color: white;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}/*# sourceMappingURL=articolo.css.map */