body {
  background: #fafafa;
  color: #333333;
  margin-top: 5rem;
}
  
h1, h2, h3, h4, h5, h6 {
  color: #444444;
}

@media (min-width: 1500px) {
  #main {
    max-width: 1500px
  }
}

@media (min-width: 1600px) {
  #main {
    max-width: 1580px
  }
} 

@media (min-width: 1700px) {
  #main {
    max-width: 1680px
  }
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

.bg-steel {
  background-color: #5f788a;
}

.bg-steel-light {
  background-color: #cbd5db;
}

.bg-steel-lighter {
  background-color: #e2e8f0;
}

.bg-steel-lightest {
  background-color: #edf2f7;
}

.bg-steel-dark {
  background-color: #4c667a;
}

.bg-steel-darker {
  background-color: #3b5369;
}

.bg-steel-darkest {
  background-color: #2a4058;
}

.table-header {
  color: #ffffff;
}

.site-header .navbar-nav .nav-link {
  color: #cbd5db;
}

.site-header .navbar-nav .nav-link:hover{
  color: #ffffff;
}

.site-header .navbar-nav .nav-link.active {
  font-weight: 500;
}

.bg-site-background {
  background-color: #fafafa;
}

.content-section {
  background: #ffffff;
  padding: 10px 20px;
  border: 1px solid #dddddd;
  border-radius: 3px;
  margin-bottom: 20px;
}

.account-img {
  height: 125px;
  width: 125px;
  margin-right: 20px;
  margin-bottom: 16px;
}

.menu-account-img {
  height: 38px;
  width: 38px;
}

.account-heading {
  font-size: 2.5rem;
}

.edit {
	display: table-cell;
  width: fit-content;
}

.edit a i {
  display: none;
  padding-right: 0.5em;
  font-size: small;
  color: #444444;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-item {
  color: #444444;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-item:hover {
  background-color: #dddddd;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}

.collapsible {
  background-color: #777;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  margin-top: 20px
}

.collapsible:hover {
  background-color: #555;
}

button .active {
  background-color: #555;
}

.collapsible-content {
  padding: 0 18px;
  background-color: #f1f1f1;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.collapsible:after {
  content: '\002B';
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

button .active:after {
  content: "\2212";
}

.footer {
  padding: 3px;
  text-align: center;
  background: #ffffff;
  border-top: 1px solid #dddddd;
}

.button-dropdown {
  min-width: fit-content;
  padding: 0;
  background-color: transparent;
}

.button-dropdown:hover {
  background-color: transparent;
}

.hiddenRow {
  padding: 0 !important;
}

.product-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40vh;
  /*max-width: 60vh;*/
  overflow: hidden;
  border-radius: 5px;
  background-color: #f8f8f8;
  border: 1px solid #dddddd;
  position: relative;

}

.product-image-wrapper:hover .product-image{
  opacity: 0.3;
}

.product-image-wrapper:hover .middle {
  opacity: 1;
}

.product-image {
  max-height: 40vh;
  max-width: 40vh;
  width: 100%;
  object-fit: cover;
  opacity: 1;
  display: block;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
}

.product-card-image {
  max-height: 25vh; 
  object-fit: cover;
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.thumbnail {
  height: 10vh;
  min-width: 5vh;
  /*height: 23%;*/
  object-fit: cover;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.thumbnail:hover, .thumbnail.active {
  opacity: 1;
}

