.topbar {
  background-color: #0da9ef;
  border-color: #fff;
}
.site-footer {
  background-color: #34495e;
}
.dropdown-menu {
  margin-top: .8rem;
}
.sub-menu, .toolbar-dropdown {
  width: 220px;
}
.product-card {
  border: none;
}
.dropdown-product-item > .dropdown-product-thumb {
  border-radius: 0;
}
a {
  text-decoration: none;
}

.entry .entry-thumb {
  width: 96px !important;
}

.product-gallery {
  padding-top: 15px;
  border: none;
}

.checkout-steps > a {
  width: 33.3%;
}
.tab-content2 {
  border: none;
  padding: 0;
}

.tpanel a.list-group-item:focus {
  background-color: #0da9ef;
  color: #fff;
}

h1 small {
  font-size: 70%;
}

.btn-plans {
    height: auto;
    line-height: 20px;
    padding: 10px 28px;
    border-radius: 10px;
}

.slide-item {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  min-height: 580px;
}

.breadcrumbs {
  text-align: left;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader, #loading {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before, #loading::before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: #0da9ef transparent #0da9ef transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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