.rm-menu-nav {
display: flex;
justify-content: center;
}

.nav-pills .nav-link {
  padding: 5px 10px;
  border-radius: 10px;
  color: #303d3f;
  font-size: 14px;
  display: block;
  margin: 0px 4px;
  cursor: pointer;
  border-color: #555;
  border:  1px solid #777;
  margin-bottom: 10px;
}
.nav-pills .nav-link:hover {
  background-color: #eee;
}

.nav-pills .nav-link.active {
    background-color: #000;
    color: white;
}

.search-bar {
    display: none;
}
.search-bar.active {
    display: block;
}
.rm-card-body {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 20px;
  align-items: center;
}
.rm-card-body p, .rm-card-body h5 { padding-bottom: 0px; margin-bottom: 0px; }
.rm-card-content {
  flex-grow: 1;
}
.rm-add-to-cart {
  display: flex;
  justify-content: flex-end;
  align-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;

  flex-grow: 1;
}
a.rm-btn , .rm-add-to-cart a {
  background-color: #eee;
  color: #303d3f;
  padding: 5px 12px;
  border-radius: 10px;
  cursor: pointer;
  margin-left: 10px;
}
.rm-add-to-cart a { width: 100px; }
a.rm-btn:hover, .rm-add-to-cart a:hover {
  background: #000;
  color: #fff;
}
.rm-basket-body {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 10px;
}
.rm-basket-content {
  display: flex;
  justify-content: space-between;
}
.rm-basket-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 5px;
}

.rm-basket-item {
  margin-bottom: 5px;
  padding: 5px 0px 10px 0px;
  border-bottom: 1px solid #eee;
}

.rm-total a{
  display: flex;
  justify-content: space-between;
}

.loading-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(245,245,245,0.6);
  z-index: 2;
  cursor: pointer;
  color: #333;
}

.loading-overlay i {
  position: absolute;
  top: 40%;
  left: 50%;
  font-size: 50px;
  color: #333;
  transform: translate(-50%, -50%);
}

.rm-add-to-cart select { width: 130px; }

.rm-price-version {
  font-size: 14px;
  padding-right: 20px;
}

.rm-order-form label {
  font-size: 15px;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #222;
  margin-bottom: 10px;
  cursor: pointer;
}
@media (max-width: 1000px) {
  .rm-card-body {
    flex-direction: column;
  }
}


.field-error .sm-form-control {
    border-color: #E42C3E;
}