body {
    background-color: ghostwhite;
    /*padding-top: 3.5rem;*/
}


.bg-dark {
    background-color: black !important;
}

.bg-light, .sidebar-sticky {
    background-color: ghostwhite !important;
}

#navbarSupportedContent {
    flex-flow: row-reverse;
}


.header {
    text-align: right;
}


#top {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-around;
}


#footer {
    text-align: center;
    position: absolute;
}



.nav-item {
    text-align: right;
    color:white !important;
}

.navbar-toggler{
    color:white !important;
}

.card {
    margin-bottom: 25px;
    width: 18rem;
}

.accordion {
  width: 72rem;
}

#columns {
    margin-left: 10px;
    margin-right: 10px;
}

.content {
    margin: 20px;
}

.product {
    width: 40rem;
}

#JSONCatalog {
    margin-top: 0;
}

mark {
    background-color: yellow;
    color: black;
}


.faqHeader {
    font-size: 27px;
}


.homepage-cols {
    display: flex;
    justify-content: space-around;
}


.jumbotron {
    background-image: url("/static/images/jumbotron.jpg");
    background-size: cover;
    background-position: center bottom;
    min-height: 400px;
}

#tagline, #summary {
    background-color: ghostwhite;
    display: inline-block;
}

.if-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 780px) {
    .thumbnail-arrow, .number {
        display: none;
    }
.dropdown {
  text-align: right;
}
.dropdown-content {
  position: inherit !important;
}

.accordion {
  width: 22rem;
}

.btn {
  white-space: inherit;
}
}

input[type=number] {
text-align: right;
}

/* Dropdown Button */
.dropbtn {
  background-color: black;
  color: white;
  padding: 8px;
  font-size: 16px;
  border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #3e8e41;}