.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: ;
  --bs-modal-bg: var(--bs-body-bg);
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: var(--bs-border-width);
  --bs-modal-border-radius: var(--bs-border-radius-lg);
  --bs-modal-box-shadow: var(--bs-box-shadow-sm);
  --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: var(--bs-border-width);
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: var(--bs-border-width);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: 0.8;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
}
.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
}

.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}
.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
}

@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: var(--bs-box-shadow);
  }
  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
  .modal-sm {
    --bs-modal-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
.modal-xl {
    --bs-modal-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header,
.modal-fullscreen .modal-footer {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header,
.modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header,
.modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header,
.modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header,
.modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header,
.modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}
/* GENERAL */
body {
  font-family: "Open Sans Condensed", sans-serif;
  color: #212529;
  font-size: 20px;
  border-top: 3px solid #0d6efd;
}

a, button.btn-link {
  color: inherit;
  text-decoration: none;
}

p a, ul.showlink a {
  background-image: url(/images/link.gif);
  background-position: center right;
  background-repeat: no-repeat;
  padding-right: 16px;
}

.highlight {
  background-color: #ffc107;
}

.highlight2 {
  background-color: #ffc107;
  opacity: 0.5;
}

/* HEADER */
header .searchbar ::placeholder {
  color: #ced4da;
}

#txt_search {
  font-size: 1.5rem;
}

header .searchbar img {
  height: 16px;
  width: 24px;
}

header .searchbar i.fa-fw {
  vertical-align: middle;
}

header .searchbar .dropdown-item:hover, header .searchbar .dropdown-item:focus {
  color: #f8f9fa;
}

header .dropdown-menu[data-bs-popper] {
  right: 0;
  left: unset !important;
}

header .autocomplete-menu {
  max-height: 80vh !important;
}

header .searchbar .dropdown-item:hover {
  cursor: pointer;
}

header #social .dropdown-menu {
  min-width: 0;
}

@media (max-width: 1199px) {
  header .searchbar .dropdown-item {
    font-size: 1rem;
  }
  header #social {
    flex-direction: row;
    justify-content: center;
  }
  header #social li {
    margin-left: 0.5rem;
  }
  header #social li::first {
    margin-left: 0;
  }
}
header .searchbar img {
  display: inline;
}

header .navbar-nav {
  font-size: 1.2rem;
}

header .navbar-light .navbar-nav .nav-link {
  color: #212529;
}

header .navbar-nav .nav-item.active .nav-link {
  border-bottom: 2px solid #0d6efd;
  color: #0d6efd;
}

/* FOOTER */
footer {
  border-top: 3px solid #0d6efd;
}

footer * {
  font-size: 0.8rem;
}

footer ul {
  padding: 0;
  margin: 0;
}

footer ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul.navbar-nav li {
  padding: 5px;
}

footer .navbar {
  padding: 0;
}

footer ul {
  padding: 0;
  margin: 0;
}

footer .navbar .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}

#top-link-block {
  transition: all 0.25s ease-in-out;
  position: fixed;
  bottom: 0;
  right: 0;
  display: inline-flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  margin: 0 0.5em 0.5em 0;
  border-radius: 50%;
  padding: 0.25em;
  width: 40px;
  height: 40px;
  background-color: #0d6efd;
  color: #f8f9fa !important;
  z-index: 9999;
  opacity: 0.5;
}

.menu-link {
  margin-left: 0.7rem;
  font-size: 1.2rem;
}

/* pagina index.tpl */
.lastposts li {
  font-size: 1rem;
}

.lastpost .highlight {
  font-size: 1.5rem;
}

.lastpost a {
  color: inherit;
  text-decoration: none;
}

/* pagina smarthome.tpl */
#project-components-accordion img {
  /* max-height: 100px; */
  max-width: 100px;
}

#project-components-accordion .media-body p {
  font-size: 1rem;
}

#project-components-accordion button.btn-link {
  font-size: 1.5rem;
  text-decoration: none;
}

#project-components-accordion button.btn-link:hover {
  opacity: 0.6;
  color: inherit;
}

.smarthome .nav-item, .flightsim .nav-item, .job .nav-item, .chisono .nav-item, .why .nav-item {
  width: 100%;
  text-align: center;
}
.smarthome .nav-item a, .flightsim .nav-item a, .job .nav-item a, .chisono .nav-item a, .why .nav-item a {
  border-width: 0;
}

@media (min-width: 768px) {
  .smarthome .nav-item, .flightsim .nav-item, .job .nav-item, .chisono .nav-item, .why .nav-item {
    width: auto;
    text-align: left;
  }
  .smarthome .nav-item a, .flightsim .nav-item a, .job .nav-item a, .chisono .nav-item a, .why .nav-item a {
    border-width: 1px;
  }
}
/* pagina blog.tpl */
/* pagina blogsingle.tpl */
.blog .blog-menu li.active {
  background-color: #ffc107;
}

.blog .blog-menu li:hover {
  background-color: #ced4da;
}

.blog .blog-menu li a {
  text-decoration: none;
}

.blog .blog-hl.card {
  height: 25rem;
  overflow: hidden;
}
.blog .blog-hl.card div.title-openhab-smarthome {
  color: #f8f9fa;
  background-color: #dc3545;
}
.blog .blog-hl.card div.title-alessia-e-marco {
  color: #f8f9fa;
  background-color: #198754;
}
.blog .blog-hl.card div.title-learjet-45-home-cockpit {
  color: #f8f9fa;
  background-color: #212529;
}

.blog .blog-hl .pointer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 0;
}

.blog .blog-hl .card-text div, .blog .blog-hl .card-text .blog-domoticsduino {
  font-size: 1rem !important;
}

.blog .blog-hl br {
  display: none;
}

.blog a {
  text-decoration: none;
}

.blog .show-post {
  z-index: 1044;
}

.blog .show-post:hover {
  opacity: 0.8 !important;
}

.blog .blog-domoticsduino p {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.blog .blog-domoticsduino-banggood {
  display: none;
}
.blog .blog-domoticsduino-banggood * {
  font-size: 1.2rem;
}

.blog .versione-linguaggio {
  font-size: 0.9rem;
}

/* YOUTUBE MODAL */
#youtubeModal .modal-content {
  border-color: #dc3545;
  border-width: 3px;
}

#youtubeModal a {
  text-decoration: none;
  color: inherit;
}

.nav-tabs {
  border-bottom-color: #0d6efd;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  border-color: #0d6efd #0d6efd #FFF;
}
.nav-tabs .nav-link {
  border-color: #FFF #FFF #0d6efd;
}

body.search .search-result .card:hover {
  background-color: #f8f9fa;
}

/*# sourceMappingURL=style.css.map */
