
@import url("common.css");

@media only screen and (min-width: 1025px) {
  div.flex {  
    padding: 0 100px;
  }
}

.flex ul.noList {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;  
}

.flex ul.noList li {
  padding: 0.3em 0.6em;
  margin: 0;
}

.buttonBuy {
  background-color:#ff8100;
  border: 0;  
  border-radius: 10px;
  cursor: pointer;
  color: #FFF;  
  font-weight: bold;
  font-size: 22px;
  padding: 16px 0;
  display: block;
  width: 100%;
}
.buttonBuy:hover {
  color: #e6e3e3;  
  box-shadow:0 -2px 0 0 #bf6a12 inset;
  background:#bf6a12
}
.buttonBuy:active {
  background-color:#a42f1d;
  background-image:-webkit-linear-gradient(#a42f1d 0%,#ba3d25 100%);
  background-image:linear-gradient(#a42f1d 0%,#ba3d25 100%)
}

.priceInfo {
   /*align-self: flex-end;*/
   margin-top: auto; /* this is the solution */
}

/* Nav bar */

.navbar {
    overflow: hidden;
    background-color: #084C61;
}

.navbar a {
    float: left;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.navbar a, .navbar div {
  border-radius: 10px;
  margin: 4px;
} 

.navbar a:hover, .dropdown:hover .dropbtn, .dropbtn:focus {
    border-radius: 10px;
    background-color: #1E667C;
}

.navbar > a.active {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    background-color: #165E73;
}

/* Drop-down */

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    cursor: pointer;
    font-size: 16px;    
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.show {
    display: block;
}

/* Button to go to top*/

#backTop {
  display: block;
  opacity: 0;
  transition: opacity 0.5s;
  position: fixed;
  width: 40px;
  height: 40px;
  right: 15px;
  bottom: 15px;
  cursor: pointer;
  z-index: 9990;
  background: url(https://mnmstatic.net/v_143/img/common/uparr-48-w.png) no-repeat center center rgba(0, 0, 0, 0.8);
  background-size: 24px 24px;
  border: none;
  border-radius: 50%;
}

/* Badge style */

.badge-container {
    width: 100%;
    margin: -16px 22px -10px -10px;
    left: 0px;
    top: 0px;
    box-sizing: border-box;
    z-index: 1;
}

.badge-body {
    height: 30px;
    border-top-left-radius: 10px;
}

.badge-text {
    padding: 8px;
    color: #fff;
    font-size: 1.3rem!important;
    line-height: 1.4!important;
}

.badge-triangle {
    width: 0;
    height: 0;
    border-right: 10px solid transparent;
    border-top: 30px solid;
}

.badge-triangle.badge-color {
    color: #084C61;
}
.badge-body.badge-color {
    background-color: #084C61;
}

.badge-body, .badge-triangle {
    float: left!important;
}