@charset "UTF-8";
/* CSS Document */

*, ::after, ::before {
  box-sizing: border-box;
}

img {
  height: auto;
  max-width: 100%;
}

header {
  background: #0c6334;
  height: 100px;
  margin: auto;
  max-width: 1020px;
  width: 100%;
}

footer {
  background: #333;
  height: 200px;
  margin: auto;
  max-width: 1020px;
  width: 100%;
}

/* Cart */

#cart {
  background: #fff;
  font-family: "proxima-nova",sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.42857143;
  margin: auto;
  max-width: 1020px;
  min-height: 300px;
  padding-bottom: 15px;
  padding-top: 15px;
  width: 100%;
}

#cart a {
    color: #337ab7;
    text-decoration: none;
}

#cart a:focus, #cart a:hover {
    color: #23527c;
    text-decoration: underline;
}

#cart hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
  height: 0;
  box-sizing: content-box;
}

#cart h1 {
  font-size: 36px;
}

#cart h2 {
  font-size: 30px;
}

#cart p {
  margin: 0 0 10px;
}

#cart .small, #cart small {
  font-size: 85%;
}

/* Layout */

#cart .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1020px;
}

#cart .row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

#cart .col-12, #cart .col-10, #cart .col-8, #cart .col-6, #cart .col-4, #cart .col-2 {
  position: relative;
  width: 100%;
  padding-bottom: 15px;
  padding-top: 15px;
  padding-right: 15px;
  padding-left: 15px;
}

#cart .mb-3, #cart .my-3 {
    margin-bottom: 1rem!important;
}

@media (min-width: 576px) {

  #cart .container {
    max-width: 540px;
  }

}

@media (min-width: 768px) {

  #cart .container {
    max-width: 720px;
  }
  
  #cart .col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  #cart .col-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  #cart .col-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  #cart .col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  #cart .col-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  
  #cart .col-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

}

@media (min-width: 992px) {

  #cart .container {
    max-width: 960px;
  }

}

/* Items */

#cart .cart-item {
  border-top: 1px solid #eee;
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 15px;
  padding-top: 15px;
}

@media (max-width: 768px) {
  
  #cart .cart-item .cart-quantity {
    max-width: 100px;
  }
  
}

/* Total */

#cart .cart-scroll {
  position: -webkit-sticky; 
  position: sticky; 
  top: 15px;
}

#cart .cart-total .row {
  background-color: #f5f5f5;
  margin-left: 0;
  margin-right: 0;
}

#cart .cart-total .row:first-child {
  border-radius: 4px 4px 0 0;
}

#cart .cart-total .row:last-child {
  border-radius: 0 0 4px 4px;
}

/* Form */

#cart .form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

/* Alerts */

#cart .cart-alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

#cart .cart-alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

#cart .cart-alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

/* Buttons */

#cart button {
  height: auto;
}

#cart .btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

#cart .btn.focus, #cart .btn:focus, #cart .btn:hover {
  color: #333;
  text-decoration: none;
}

#cart .btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}

#cart .btn-primary:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}

#cart .btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}

#cart .btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}

#cart .btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}

#cart .btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}

#cart .btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}

#cart .btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

#cart .btn-block {
  display: block;
  width: 100%;
}

#cart .btn-link {
  font-weight: 400;
  color: #337ab7;
  border-radius: 0;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: transparent;
}

#cart .btn-link.btn-danger {
  color: #d9534f;
}

#cart .btn-link.btn-danger:focus, #cart .btn-link.btn-danger:hover {
  color: #c9302c;
}

#cart .btn-large {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

#cart .btn-desktop {
  display: none;
}

#cart .btn-mobile {
  display: block;
}

@media (min-width: 768px) {

#cart .btn-desktop {
  display: block;
}  

#cart .btn-mobile {
  display: none;
}
  
}