@charset "UTF-8";
.products-listing {
  display: flex;
}

.layout-has-filter h1 {
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}

.filter-menu {
  padding: 20px;
  color: #000;
}
.filter-menu h3 {
  font-weight: bold;
  color: #FF0000;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.filter-menu .filter-title {
  font-family: "gilroybold", sans-serif;
  font-size: 14px;
  color: #005BC5;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.filter-menu button svg {
  transition: transform 0.4s;
}
.filter-menu .checkbox-label {
  position: relative;
  display: block;
  cursor: pointer;
}
.filter-menu .checkbox-label input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 4px;
  display: inline-grid;
  place-items: center;
  vertical-align: middle;
  background: #fff;
  font-weight: bold;
  position: absolute;
  right: 0;
}
.filter-menu .checkbox-label input[type=checkbox]:checked::before {
  content: "✕"; /* ou "X" */
  color: #005BC5;
  font-size: 14px;
  line-height: 1;
}
.filter-menu .checkbox-label input[type=checkbox]:checked + span {
  color: #005BC5;
}
.filter-menu .has-submenu > button {
  width: 100%;
  padding: 0 !important;
}
.filter-menu .has-submenu.open > button {
  color: #005BC5;
}
.filter-menu .has-submenu.open > button svg {
  transform: rotate(180deg);
}
.filter-menu .has-submenu.open > button svg path {
  stroke: #005BC5;
}
.filter-menu .has-submenu.open > .submenu,
.filter-menu .has-submenu.open > ul {
  display: block;
}
.filter-menu .has-submenu .open > a {
  color: #005BC5;
}
.filter-menu .has-submenu .open > button svg,
.filter-menu .has-submenu .open > svg {
  transform: rotate(180deg);
}
.filter-menu .has-submenu .open > button svg path,
.filter-menu .has-submenu .open > svg path {
  stroke: #005BC5;
}
.filter-menu .has-submenu .open + ul {
  display: block;
  margin-left: 0;
}
.filter-menu .has-submenu .open + ul li {
  padding-left: 30px;
}
.filter-menu .show-sub-categories:hover {
  cursor: pointer;
}
.filter-menu .show-sub-categories:hover path {
  stroke: #005BC5;
}
.filter-menu li.open > a {
  color: #005BC5;
}
.filter-menu li.open > ul {
  display: block !important;
}
.filter-menu .selected {
  color: #005BC5;
}
.filter-menu button:hover {
  color: #005BC5;
}
.filter-menu button:hover svg path {
  stroke: #005BC5;
}
.filter-menu .submenu {
  margin-top: 30px;
}
.filter-menu .submenu a:hover {
  color: #005BC5;
}
.filter-menu ul {
  list-style: none;
  padding: 0;
}
.filter-menu ul li {
  border-bottom: 1px solid #000;
  padding: 15px 0;
}
.filter-menu ul li a,
.filter-menu ul li button:not(.btn) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  background: none;
  border: none;
  font-size: 16px;
  color: #000;
  cursor: pointer;
  padding: 10px 0;
  text-decoration: none;
}
.filter-menu ul li .submenu {
  display: none;
  flex-direction: column;
  padding-left: 10px;
}
.filter-menu ul li .submenu li {
  padding: 0;
  border-bottom: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.filter-menu ul li .submenu li span {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.filter-menu ul li .submenu li > ul {
  display: none;
  width: 100%;
}
.filter-menu ul li a {
  font-size: 14px;
  color: #000;
  padding: 4px 0;
  display: block;
  text-decoration: none;
}
.filter-menu ul.open {
  display: block !important;
}
.filter-menu ul.open > button svg {
  transform: rotate(180deg);
}
.filter-menu ul.open .submenu {
  display: flex;
}
.filter-menu .show-sub-categories.open {
  transform: rotate(180deg);
}
.filter-menu .has-submenu.open .prices-ctn, .filter-menu .has-submenu.open .keywords-ctn {
  display: flex !important;
}
.filter-menu .keywords-ctn {
  justify-content: space-between;
  flex-direction: row !important;
  padding-left: 0 !important;
  justify-content: space-between;
}
.filter-menu .keywords-ctn input {
  padding: 5px 8px;
  width: 100%;
  border-radius: 0;
  border: 1px solid #000;
  margin-left: 2px;
}
.filter-menu .keywords-ctn input:focus-visible {
  outline: none;
}
.filter-menu .keywords-ctn .btn-ctn {
  width: 33.33%;
  display: flex;
}
.filter-menu .keywords-ctn .btn-ctn .btn {
  margin-left: auto;
  padding: 6px 25px;
}
.filter-menu .keywords-ctn .btn-ctn .btn:hover {
  color: #fff;
  background: #DB0000;
}
.filter-menu .prices-ctn {
  justify-content: space-between;
  flex-direction: row !important;
  padding-left: 0 !important;
  justify-content: space-between;
}
.filter-menu .prices-ctn span {
  width: 33.33%;
  text-align: right;
}
.filter-menu .prices-ctn input {
  padding: 3px 8px;
  width: 75%;
  border-radius: 0;
  border: 1px solid #000;
  margin-left: 2px;
}
.filter-menu .prices-ctn input:focus-visible {
  outline: none;
}
.filter-menu .prices-ctn .btn-ctn {
  width: 33.33%;
  display: flex;
}
.filter-menu .prices-ctn .btn-ctn .btn {
  margin-left: auto;
  padding: 6px 25px;
}
.filter-menu .prices-ctn .btn-ctn .btn:hover {
  color: #fff;
  background: #DB0000;
}
.filter-menu .filters-sort,
.filter-menu .menu-availability {
  padding-left: 0 !important;
}
.filter-menu .filters-sort label,
.filter-menu .menu-availability label {
  margin-bottom: 10px;
}
.filter-menu .menu-availability span span {
  margin-left: 12px;
  position: relative;
  top: 3px;
}
.filter-menu .menu-availability .checkbox-label:hover input[type=checkbox] {
  background: rgba(255, 211, 58, 0.2) !important;
  border: 1px solid #000 !important;
}
.filter-menu .menu-availability .checkbox-label input[type=checkbox] {
  border: 1px solid #000;
  position: initial;
  border-radius: 0;
  width: 18px;
  height: 18px;
}
.filter-menu .menu-availability .checkbox-label input[type=checkbox]:checked {
  background: #FFD33A;
  border-color: #FFD33A;
}
.filter-menu .menu-availability .checkbox-label input[type=checkbox]:checked:before {
  content: "";
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCAxNCAxMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEuNjE5MTQgNi4xMzI1N0w1LjAxNzkgOS41MzEzNEwxMi45NDkxIDEuNjAwMSIgc3Ryb2tlPSIjMjAxRjIzIiBzdHJva2Utd2lkdGg9IjIiLz4KPC9zdmc+Cg==");
  color: #000;
  background-size: contain;
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-position: 0px 1px;
}
.filter-menu .menu-availability .checkbox-label input[type=checkbox]:checked + span {
  color: #000;
}
.filter-menu .filters-sort select {
  padding: 10px;
  width: 100%;
}

#OrderBySelect {
  border: none;
  border-bottom: 1px solid #000;
  padding: 0 35px 12px 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDEzIDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0wLjYyNjYwOSAxLjE1NjU3TDYuMzEzMyA2Ljg0MzI2TDEyIDEuMTU2NTciIHN0cm9rZT0iIzIwMUYyMyIvPgo8L3N2Zz4K");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 5px;
  margin-left: auto;
  margin-bottom: 60px;
}
#OrderBySelect:focus-visible {
  outline: none;
}

#filter-categories > li:first-child a {
  font-family: "gilroybold";
}

.cat-listing,
.product_listing {
  display: grid;
  grid-gap: 120px;
  padding-left: 0;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) and (max-width: 991px) {
  .cat-listing,
  .product_listing {
    grid-gap: 40px;
  }
}
@media (min-width: 768px) {
  .cat-listing,
  .product_listing {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1400px) {
  .cat-listing,
  .product_listing {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cat-listing li {
  list-style: none;
  text-align: center;
}
.cat-listing li img {
  margin: 0 auto 20px;
}
.cat-listing li a {
  font-size: 20px;
  text-decoration: none;
}
.cat-listing li ul {
  padding-left: 0;
}
.cat-listing li ul li a {
  font-size: 15px;
}

.products-listing-ctn {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-content: flex-start;
}
@media (min-width: 768px) {
  .products-listing-ctn {
    width: 70%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .products-listing-ctn {
    width: 66%;
  }
}
.products-listing-ctn > p {
  margin-bottom: 70px;
  color: #000;
}
.products-listing-ctn .products {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.products-listing-ctn .product_block {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
}
.products-listing-ctn .product_block:hover img {
  transform: scale(1.1);
}
.products-listing-ctn .product_block a {
  width: 100%;
  text-decoration: none;
}
.products-listing-ctn .product_block .ribbon {
  font-size: 14px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #005BC5;
  padding: 5px;
  color: #fff;
  width: 70%;
}
.products-listing-ctn .product_block .price {
  color: #201F23;
}
.products-listing-ctn .product_block .price .strike {
  color: #FF0000;
  opacity: 30%;
  text-decoration: line-through;
}
.products-listing-ctn .product_block .price .rebate {
  font-family: gilroybold, sans-serif;
  color: #FF0000;
  font-weight: 400;
}
.products-listing-ctn .product_block .img {
  display: block;
  position: relative;
  width: 100%;
}
.products-listing-ctn .product_block .img img {
  margin: auto;
  width: 100%;
  max-height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.6s;
}
.products-listing-ctn .product_block .btn {
  margin-top: 20px;
  width: 100%;
  display: block;
  text-align: center;
  align-self: end;
}
.products-listing-ctn .product_block .name {
  color: #201F23;
  font-size: 20px;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 20px;
  display: block;
}

.product-detail-ctn {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product-detail-ctn .product-img {
  width: 100%;
  position: relative;
}
.product-detail-ctn .product-img img {
  margin: auto;
}
.product-detail-ctn .product-img .ribbon {
  font-size: 14px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #005BC5;
  padding: 5px;
  color: #fff;
  width: auto;
}
@media (min-width: 992px) {
  .product-detail-ctn .product-img {
    width: 35%;
  }
}
.product-detail-ctn .product-img #gallery_zoom {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.product-detail-ctn .product-detail {
  width: 100%;
  margin-top: 50px;
}
@media (min-width: 992px) {
  .product-detail-ctn .product-detail {
    width: 60%;
    margin-top: 0;
  }
}
.product-detail-ctn .product-detail .price {
  color: #FF0000;
}
.product-detail-ctn .product-detail .price.strike {
  opacity: 30%;
  text-decoration: line-through;
}
.product-detail-ctn .product-detail h1 {
  font-size: 50px;
  color: #000;
  font-family: gilroyheavy, sans-serif;
}
.product-detail-ctn .item_price {
  font-size: 26px;
  font-style: normal;
  margin-top: 20px;
  font-weight: 400;
  line-height: normal;
  font-family: gilroybold, sans-serif;
  text-transform: uppercase;
}
.product-detail-ctn .quandtity-price-ctn {
  display: flex;
  flex-wrap: wrap;
}
.product-detail-ctn .quandtity-price-ctn #price,
.product-detail-ctn .quandtity-price-ctn .item_number,
.product-detail-ctn .quandtity-price-ctn .share {
  width: 100%;
}
.product-detail-ctn .quandtity-price-ctn .item_number {
  display: none;
}
.product-detail-ctn #price {
  margin-bottom: 60px;
  color: #201F23;
  font-weight: 400;
  font-size: 26px;
}
.product-detail-ctn .share {
  display: flex;
  align-items: center;
  margin-top: 60px;
  padding-top: 15px;
  border-top: 1px solid #000;
}
.product-detail-ctn .share span {
  font-family: gilroybold, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-right: 30px;
  color: #201F23;
}
.product-detail-ctn .share .icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #FF0000;
  position: relative;
  margin-right: 10px;
}
.product-detail-ctn .share .icon:hover {
  background: #DB0000;
}
.product-detail-ctn .share .icon svg {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.product-detail-ctn .product-description {
  margin-top: 120px;
  margin-bottom: 120px;
}
.product-detail-ctn .product-description h3 {
  margin-bottom: 30px;
  color: #005BC5;
}
.product-detail-ctn .product-description .p2 {
  color: #201F23;
}
.product-detail-ctn .main_picture {
  margin-bottom: 20px;
}
.product-detail-ctn .main_picture,
.product-detail-ctn .mini_picture {
  display: block;
  padding: 8px;
  border: 1px solid #201F23;
}

#ModalAddProduct h3 {
  color: #005BC5;
}
#ModalAddProduct .modal-body {
  color: #000;
}

.pagination {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  justify-content: center;
  align-items: center;
  margin-top: 120px;
}
@media (max-width: 767px) {
  .pagination {
    flex-wrap: wrap;
  }
}
.pagination li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #005BC5;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  color: #005BC5;
  transition: background 0.3s, color 0.3s;
}
@media (max-width: 767px) {
  .pagination li {
    width: 30px;
    height: 30px;
  }
}
.pagination li a,
.pagination li span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
.pagination li.active, .pagination li:hover {
  background-color: #005BC5;
  color: white;
}
.pagination li.disabled {
  opacity: 0.3;
  pointer-events: none;
}
.pagination li:last-child {
  background: #005BC5;
  color: white;
}
.pagination li:last-child a {
  color: white;
}
.pagination li:last-child {
  border: none;
  background: none;
}
@media (max-width: 767px) {
  .pagination li:last-child {
    width: 100%;
  }
}
.pagination li:last-child .dsi-pager-text {
  background: none;
  color: #005BC5;
  text-align: center;
}

.shopping_cart {
  margin-top: 45px;
  /*input.zipcode {
        @include border-radius(0);
        height: 40px;
        background: none;
        color: #FFFFFF;
        text-align: center;
        border: 1px solid #FFFFFF;
        margin-right: 10px;
        margin-top: 1px;
    }*/
}
.shopping_cart h1 {
  color: #000;
  font-family: gilroyheavy, sans-serif;
  margin-bottom: 30px;
}
.shopping_cart table {
  border-spacing: 0 !important;
  border: none;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
}
.shopping_cart table thead tr th {
  font-size: 17px;
  font-size: 0.9444444444 rem;
  font-family: "gilroymedium", sans-serif;
  width: auto;
  color: #005BC5 !important;
  border: none;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
}
.shopping_cart table thead tr th.min {
  width: 1%;
  white-space: nowrap;
}
.shopping_cart table .price {
  color: #000;
}
.shopping_cart table .name a {
  text-decoration: none;
  color: #000;
}
.shopping_cart table.table-total {
  border-top: 0;
}
.shopping_cart table tbody tr td {
  background: none;
  vertical-align: middle;
  width: auto;
  border: none;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
}
.shopping_cart table tbody tr td.min {
  width: 1%;
  white-space: nowrap;
}
.shopping_cart table tbody tr td.image {
  max-width: 120px;
}
.shopping_cart table tbody tr td.image img.thumbnail {
  border-radius: 0;
  background: none;
  border: 1px solid #FFFFFF;
  margin: 0 0 5px 0;
  padding: 0;
}
.shopping_cart table tbody tr td a.remove {
  font-size: 13px;
  font-size: 0.7222222222 rem;
  text-align: center;
  display: block;
}
.shopping_cart .ui-corner-all,
.shopping_cart .ui-corner-top,
.shopping_cart .ui-corner-bottom,
.shopping_cart .ui-corner-right,
.shopping_cart .ui-corner-left,
.shopping_cart .ui-corner-tr,
.shopping_cart .ui-corner-tl,
.shopping_cart .ui-corner-br,
.shopping_cart .ui-corner-bl {
  border-radius: 0;
}
.shopping_cart .ui-spinner-input {
  font-size: 16px;
  font-size: 0.8888888889 rem;
  margin: 0 30px 0 0;
  border: 1px solid #201F23;
  color: #201F23;
  width: 65px;
  height: 46px;
  padding: 5px 15px;
}
.shopping_cart .ui-spinner-input:focus {
  border: 1px solid #201F23;
}
.shopping_cart .ui-spinner-button {
  cursor: pointer;
  width: 25px;
}
.shopping_cart .ui-widget-content {
  border-radius: 0;
  background: none;
  color: #FFFFFF;
  border: none;
}
.shopping_cart .ui-spinner .ui-icon {
  left: auto;
  margin-top: 0;
  position: relative;
  top: auto;
}
.shopping_cart .ui-button {
  background: none;
  cursor: pointer;
  border-radius: 0;
}
.shopping_cart .ui-button:hover, .shopping_cart .ui-button:focus {
  background: #FF7800;
}
.shopping_cart .ui-state-default,
.shopping_cart .ui-state-hover {
  border: none;
}
.shopping_cart .ui-icon-plus,
.shopping_cart .ui-icon-minus {
  display: block;
  text-indent: -999999px;
  width: 25px;
  height: 23px;
  margin: 0 auto;
  background: url(/assets/client/img/icon_spinner.png) no-repeat center 0 transparent;
  border: 3px solid #201F23;
}
.shopping_cart .ui-icon-plus {
  border-bottom: none;
}
.shopping_cart .ui-icon-minus {
  background-position: center -23px;
  border-top: none;
}
.shopping_cart .ui-button-text-only .ui-button-text {
  padding: 0;
}
.shopping_cart .codepromo {
  padding: 15px;
  background: #FFD33A;
  margin-bottom: 15px;
  color: #000;
}
.shopping_cart .codepromo .btn-primary {
  margin-top: 15px;
}
.shopping_cart .codepromo #PromotionalCode {
  border: none;
  border-bottom: 1px solid #000;
  background: none;
}
.shopping_cart .checkout {
  float: right;
}
.shopping_cart .country_select,
.shopping_cart .state_select {
  position: relative;
  margin-right: 10px;
}
.shopping_cart .btn_submit {
  margin-top: -3px;
}
.shopping_cart .estimates {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #ddd;
  color: #005BC5;
}
.shopping_cart .estimates h2 {
  color: #000;
}
.shopping_cart .estimates input,
.shopping_cart .estimates select {
  color: #005BC5;
  border: none;
  text-align: left;
  border-bottom: 1px solid #005BC5;
}
.shopping_cart .estimates p {
  margin: 0;
}
.shopping_cart .estimates p.shipping_estimate {
  margin-bottom: 10px;
}
.shopping_cart .estimates label.zipcode {
  display: block;
}
.shopping_cart .estimates input.zipcode {
  width: auto;
  text-align: center;
}
.shopping_cart .estimates .btn {
  margin-top: 15px;
}
.shopping_cart .placeholder-fade::-moz-placeholder {
  -ms-opacity: 0.5;
  opacity: 0.5;
}
.shopping_cart .placeholder-fade::placeholder {
  -ms-opacity: 0.5;
  opacity: 0.5;
}

@media screen and (max-width: 1199px) {
  .shopping_cart {
    margin-top: 80px;
  }
}
@media screen and (max-width: 991px) {
  .shopping_cart {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .shopping_cart {
    margin-top: 10px;
  }
  .shopping_cart table thead tr th {
    font-size: 14px;
    font-size: 0.7777777778 rem;
  }
  .shopping_cart .passer_a_la_caisse {
    float: none;
    margin-bottom: 15px;
  }
  .shopping_cart .estimates {
    margin-top: 40px;
  }
  .shopping_cart .estimates h2 {
    font-size: 20px;
    font-size: 1.1111111111 rem;
    margin-bottom: 10px;
  }
  .shopping_cart .estimates .form-group {
    margin-bottom: 0;
  }
}
.processus h1 {
  color: #000;
}
.processus .panel-group {
  margin: 0;
}
.processus .panel-group .panel {
  border-radius: 0;
  background: none;
}
.processus .panel-group .panel .panel-heading {
  background: #EEEEEE;
  padding: 0;
}
.processus .panel-group .panel .panel-heading a {
  display: block;
  text-decoration: none;
  padding: 10px 15px 5px 15px;
}
.processus .panel-group .panel .panel-heading a:hover {
  color: #FF7800;
}
.processus .panel-group .panel .panel-heading a h2 {
  font-size: 24px;
  font-size: 1.3333333333 rem;
  line-height: 1;
  display: inline-block;
  margin: 0;
}
.processus .panel-group .panel .panel-heading a i {
  font-size: 24px;
  font-size: 1.3333333333 rem;
  margin-top: 5px;
}
.processus .panel-group .panel .panel-body {
  padding: 15px;
  color: #000;
}
.processus .panel-group .panel .panel-body .loginbox .btn-primary {
  margin-top: 15px;
}
.processus .panel-group .panel .panel-body .loginbox .btn-primary.btn_continue {
  margin-top: 30px;
}
.processus .panel-group .panel .panel-body label {
  font-weight: 400;
  line-height: 1;
}
.processus .panel-group .panel .panel-body input {
  border-radius: 0;
  width: 100%;
  height: 40px;
  padding: 5px;
}
.processus .panel-group .panel .panel-body input[type=radio], .processus .panel-group .panel .panel-body input[type=checkbox] {
  width: auto;
  height: auto;
  margin-top: 0;
}
.processus .panel-group .panel .panel-body input.ccv {
  width: 100px;
}
.processus .panel-group .panel .panel-body .country_select,
.processus .panel-group .panel .panel-body .state_select,
.processus .panel-group .panel .panel-body .card_select,
.processus .panel-group .panel .panel-body .month_select,
.processus .panel-group .panel .panel-body .year_select {
  position: relative;
}
.processus .panel-group .panel .panel-body .month_select {
  margin-right: 10px;
}
.processus .panel-group .panel .panel-body button.use_same_info {
  width: 100%;
  margin: 0 0 30px 0;
}
.processus .panel-group .panel .panel-body .shipping_choice p {
  margin-bottom: 10px;
}
.processus .panel-group .panel .panel-body button.paypal {
  background: transparent;
  border: none;
  margin: 0 auto;
  display: block;
}
.processus .panel-group .panel .panel-body .credit_card {
  border-right: 1px solid #FFFFFF;
}
.processus p {
  margin: 0;
}
.processus .sidebar ul li.selected a {
  color: #FF0000;
  font-weight: 600;
}
.processus .sidebar ul li a {
  padding: 5px;
  color: #FFFFFF;
}
.processus .sidebar ul li a:hover {
  color: #FF0000;
}
.processus table thead tr th {
  font-size: 17px;
  font-size: 0.9444444444 rem;
  font-family: "gilroymedium", sans-serif;
  width: auto;
}
.processus table thead tr th.min {
  width: 1%;
  white-space: nowrap;
}
.processus table tbody tr td {
  background: none;
  vertical-align: middle;
  width: auto;
}
.processus table tbody tr td.min {
  width: 1%;
  white-space: nowrap;
}
.processus table tbody tr td.image img.thumbnail {
  border-radius: 0;
  background: none;
  border: 1px solid #FFFFFF;
  margin: 0 0 5px 0;
  padding: 0;
}
.processus table tbody tr td a.remove {
  font-size: 13px;
  font-size: 0.7222222222 rem;
  text-align: center;
  display: block;
}
.processus label.inline {
  display: block;
}
.processus a.forgottenPassword {
  font-size: 12px;
  font-size: 0.6666666667 rem;
}
.processus .usePaymentInfo {
  margin: 0 0 30px 0;
  text-align: center;
}
.processus .isbringtomyaccount,
.processus .localpickup {
  white-space: initial;
}
.processus .isbringtomyaccount img {
  margin-left: 10px;
}
.processus #form_shippingchoice .btn-primary {
  margin-top: 15px;
}
.processus #payment .btn_cvv {
  font-size: 18px;
  font-size: 1 rem;
  position: absolute;
  right: -16px;
  bottom: 0;
  background: #201F23;
  color: #FFFFFF;
  padding: 8px 10px 7px 10px;
  text-decoration: none;
  line-height: 1.5;
  width: 30px;
  height: 40px;
}

@media screen and (max-width: 991px) {
  .processus {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .processus .panel-group .panel .panel-heading a {
    padding: 3px 8px 1px 8px;
  }
  .processus .panel-group .panel .panel-heading a h2 {
    font-size: 16px;
    font-size: 0.8888888889 rem;
  }
  .processus .panel-group .panel .panel-heading a i {
    font-size: 16px;
    font-size: 0.8888888889 rem;
    margin-top: 9px;
  }
  .processus .newcustomer {
    padding-bottom: 15px;
    border-bottom: 1px solid #FFFFFF;
    margin-bottom: 15px;
  }
  .processus .returncustomer {
    margin-top: 40px;
  }
  .processus .paymentType .customSelect {
    padding: 0 55px 0 5px;
  }
  .processus #form_paypal {
    line-height: 1.2;
    margin-top: 30px;
  }
  .processus #form_paypal button {
    margin-top: 15px;
  }
  .processus table thead tr th {
    font-size: 14px;
    font-size: 0.7777777778 rem;
  }
  .processus table tbody tr td {
    font-size: 14px;
    font-size: 0.7777777778 rem;
  }
}
.estimates .form-group {
  margin: 5px 0;
  display: flex;
  max-width: 400px;
}
.estimates .form-group label {
  width: 200px;
  display: inline-block;
}
.estimates .form-group select,
.estimates .form-group input {
  width: 100% !important;
}

.processus h1 {
  text-align: center;
  margin-bottom: 50px;
}
.processus input {
  border: 1px solid #201F23;
}
.processus .panel-group .panel .panel-heading a:hover h2 {
  color: #201F23;
}
.processus .panel-group .panel .panel-heading a:hover i {
  color: #201F23;
}
.processus .panel-group .panel .panel-heading a i {
  margin-top: 0;
}
.processus select {
  padding: 8px;
  width: 100%;
}
.processus .btn {
  margin-top: 10px;
}

.loginbox .text {
  margin: 10px 0;
}

.newcustomerinfo.hide {
  display: none;
}

.alert-danger {
  border: 1px solid #FF0000;
  padding: 5px;
  background-color: #ffe1e1;
}

.invoice {
  margin-top: 45px;
}
.invoice .row {
  margin-left: 0;
  margin-right: 0;
}
.invoice .invoice_top {
  background: url(/assets/client/img/default_2.jpg) no-repeat center center transparent;
  height: 400px;
}
.invoice .invoice_top .invoice_title {
  height: 300px;
  padding: 80px 0;
}
.invoice .invoice_top .invoice_title h1 {
  font-size: 80px;
  font-size: 4.4444444444 rem;
  color: #FFFFFF;
  font-weight: 300;
  line-height: 1;
  text-shadow: 2px 2px 3px #201F23;
}
.invoice .invoice_content {
  background: rgba(0, 0, 0, 0.6);
  padding: 60px 0;
}
.invoice .invoice_content h2 {
  color: #FFFFFF;
  margin: 0 0 20px 0;
}
.invoice .invoice_content p {
  margin: 0;
  color: #FFFFFF;
}
.invoice .invoice_content .bloc_info {
  margin-bottom: 40px;
}
.invoice .invoice_content table {
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
}
.invoice .invoice_content table thead tr th {
  font-size: 17px;
  font-size: 0.9444444444 rem;
  color: #FFFFFF;
  font-weight: 500;
  text-shadow: 1px 1px 2px #201F23;
}
.invoice .invoice_content table tbody tr td {
  background: none;
}
.invoice .invoice_content table tbody tr td.image img.thumbnail {
  border-radius: 0;
  background: none;
  border: 1px solid #FFFFFF;
  margin-bottom: 10px;
  padding: 0;
}
.invoice .invoice_content table tbody tr td a.remove {
  font-size: 13px;
  font-size: 0.7222222222 rem;
  color: #FFFFFF;
  text-shadow: 1px 1px 2px #201F23;
  text-align: center;
  display: block;
}

/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container:before, .container:after {
  content: " ";
  display: table;
}
.container:after {
  clear: both;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container-fluid:before, .container-fluid:after {
  content: " ";
  display: table;
}
.container-fluid:after {
  clear: both;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}
.row:before, .row:after {
  content: " ";
  display: table;
}
.row:after {
  clear: both;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

.col-xs-1 {
  width: 8.3333333333%;
}

.col-xs-2 {
  width: 16.6666666667%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-4 {
  width: 33.3333333333%;
}

.col-xs-5 {
  width: 41.6666666667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-7 {
  width: 58.3333333333%;
}

.col-xs-8 {
  width: 66.6666666667%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-10 {
  width: 83.3333333333%;
}

.col-xs-11 {
  width: 91.6666666667%;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-pull-1 {
  right: 8.3333333333%;
}

.col-xs-pull-2 {
  right: 16.6666666667%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-4 {
  right: 33.3333333333%;
}

.col-xs-pull-5 {
  right: 41.6666666667%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-7 {
  right: 58.3333333333%;
}

.col-xs-pull-8 {
  right: 66.6666666667%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-10 {
  right: 83.3333333333%;
}

.col-xs-pull-11 {
  right: 91.6666666667%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-push-1 {
  left: 8.3333333333%;
}

.col-xs-push-2 {
  left: 16.6666666667%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-4 {
  left: 33.3333333333%;
}

.col-xs-push-5 {
  left: 41.6666666667%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-7 {
  left: 58.3333333333%;
}

.col-xs-push-8 {
  left: 66.6666666667%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-10 {
  left: 83.3333333333%;
}

.col-xs-push-11 {
  left: 91.6666666667%;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-1 {
    width: 8.3333333333%;
  }
  .col-sm-2 {
    width: 16.6666666667%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.3333333333%;
  }
  .col-sm-5 {
    width: 41.6666666667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.3333333333%;
  }
  .col-sm-8 {
    width: 66.6666666667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.3333333333%;
  }
  .col-sm-11 {
    width: 91.6666666667%;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-pull-1 {
    right: 8.3333333333%;
  }
  .col-sm-pull-2 {
    right: 16.6666666667%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-4 {
    right: 33.3333333333%;
  }
  .col-sm-pull-5 {
    right: 41.6666666667%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-7 {
    right: 58.3333333333%;
  }
  .col-sm-pull-8 {
    right: 66.6666666667%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-10 {
    right: 83.3333333333%;
  }
  .col-sm-pull-11 {
    right: 91.6666666667%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-push-1 {
    left: 8.3333333333%;
  }
  .col-sm-push-2 {
    left: 16.6666666667%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-4 {
    left: 33.3333333333%;
  }
  .col-sm-push-5 {
    left: 41.6666666667%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-7 {
    left: 58.3333333333%;
  }
  .col-sm-push-8 {
    left: 66.6666666667%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-10 {
    left: 83.3333333333%;
  }
  .col-sm-push-11 {
    left: 91.6666666667%;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-1 {
    width: 8.3333333333%;
  }
  .col-md-2 {
    width: 16.6666666667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.3333333333%;
  }
  .col-md-5 {
    width: 41.6666666667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.3333333333%;
  }
  .col-md-8 {
    width: 66.6666666667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.3333333333%;
  }
  .col-md-11 {
    width: 91.6666666667%;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-pull-1 {
    right: 8.3333333333%;
  }
  .col-md-pull-2 {
    right: 16.6666666667%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-4 {
    right: 33.3333333333%;
  }
  .col-md-pull-5 {
    right: 41.6666666667%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-7 {
    right: 58.3333333333%;
  }
  .col-md-pull-8 {
    right: 66.6666666667%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-10 {
    right: 83.3333333333%;
  }
  .col-md-pull-11 {
    right: 91.6666666667%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-push-1 {
    left: 8.3333333333%;
  }
  .col-md-push-2 {
    left: 16.6666666667%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-4 {
    left: 33.3333333333%;
  }
  .col-md-push-5 {
    left: 41.6666666667%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-7 {
    left: 58.3333333333%;
  }
  .col-md-push-8 {
    left: 66.6666666667%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-10 {
    left: 83.3333333333%;
  }
  .col-md-push-11 {
    left: 91.6666666667%;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-1 {
    width: 8.3333333333%;
  }
  .col-lg-2 {
    width: 16.6666666667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.3333333333%;
  }
  .col-lg-5 {
    width: 41.6666666667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.3333333333%;
  }
  .col-lg-8 {
    width: 66.6666666667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.3333333333%;
  }
  .col-lg-11 {
    width: 91.6666666667%;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-pull-1 {
    right: 8.3333333333%;
  }
  .col-lg-pull-2 {
    right: 16.6666666667%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-4 {
    right: 33.3333333333%;
  }
  .col-lg-pull-5 {
    right: 41.6666666667%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-7 {
    right: 58.3333333333%;
  }
  .col-lg-pull-8 {
    right: 66.6666666667%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-10 {
    right: 83.3333333333%;
  }
  .col-lg-pull-11 {
    right: 91.6666666667%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-push-1 {
    left: 8.3333333333%;
  }
  .col-lg-push-2 {
    left: 16.6666666667%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-4 {
    left: 33.3333333333%;
  }
  .col-lg-push-5 {
    left: 41.6666666667%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-7 {
    left: 58.3333333333%;
  }
  .col-lg-push-8 {
    left: 66.6666666667%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-10 {
    left: 83.3333333333%;
  }
  .col-lg-push-11 {
    left: 91.6666666667%;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
table {
  background-color: transparent;
}

caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: rgb(119.085, 119.085, 119.085);
  text-align: left;
}

th {
  text-align: left;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.428571429;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}
.table .table {
  background-color: #fff;
}

.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}

.table-bordered {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}

table col[class*=col-] {
  position: static;
  float: none;
  display: table-column;
}

table td[class*=col-],
table th[class*=col-] {
  position: static;
  float: none;
  display: table-cell;
}

.table > thead > tr > td.active,
.table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th {
  background-color: rgb(232.25, 232.25, 232.25);
}

.table > thead > tr > td.success,
.table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th {
  background-color: rgb(207.8888888889, 232.9166666667, 197.5833333333);
}

.table > thead > tr > td.info,
.table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th {
  background-color: rgb(195.9347826087, 227.0217391304, 242.5652173913);
}

.table > thead > tr > td.warning,
.table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th {
  background-color: rgb(249.5322580645, 242.2419354839, 203.9677419355);
}

.table > thead > tr > td.danger,
.table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th {
  background-color: rgb(234.7934782609, 203.7065217391, 203.7065217391);
}

.table-responsive {
  overflow-x: auto;
  min-height: 0.01%;
}
@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}

.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}
.collapse.in {
  display: block;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition-property: height, visibility;
  transition-duration: 0.35s;
  transition-timing-function: ease;
}

.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel-body {
  padding: 15px;
}
.panel-body:before, .panel-body:after {
  content: " ";
  display: table;
}
.panel-body:after {
  clear: both;
}

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}

.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}

.list-group + .panel-footer {
  border-top-width: 0;
}

.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-left: 15px;
  padding-right: 15px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
.panel > .table-responsive {
  border: 0;
  margin-bottom: 0;
}

.panel-group {
  margin-bottom: 20px;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}
.panel-group .panel-footer {
  border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}

.panel-default {
  border-color: #ddd;
}
.panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #ddd;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333333;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}

.panel-primary {
  border-color: rgb(51.4340909091, 122.2772727273, 183.4159090909);
}
.panel-primary > .panel-heading {
  color: #fff;
  background-color: rgb(51.4340909091, 122.2772727273, 183.4159090909);
  border-color: rgb(51.4340909091, 122.2772727273, 183.4159090909);
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: rgb(51.4340909091, 122.2772727273, 183.4159090909);
}
.panel-primary > .panel-heading .badge {
  color: rgb(51.4340909091, 122.2772727273, 183.4159090909);
  background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: rgb(51.4340909091, 122.2772727273, 183.4159090909);
}

.panel-success {
  border-color: rgb(213.7777777778, 232.9166666667, 197.5833333333);
}
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: rgb(213.7777777778, 232.9166666667, 197.5833333333);
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: rgb(213.7777777778, 232.9166666667, 197.5833333333);
}
.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: rgb(213.7777777778, 232.9166666667, 197.5833333333);
}

.panel-info {
  border-color: rgb(187.5086956522, 231.9108695652, 240.7913043478);
}
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: rgb(187.5086956522, 231.9108695652, 240.7913043478);
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: rgb(187.5086956522, 231.9108695652, 240.7913043478);
}
.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: rgb(187.5086956522, 231.9108695652, 240.7913043478);
}

.panel-warning {
  border-color: rgb(249.5322580645, 234.6478494624, 203.9677419355);
}
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: rgb(249.5322580645, 234.6478494624, 203.9677419355);
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: rgb(249.5322580645, 234.6478494624, 203.9677419355);
}
.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: rgb(249.5322580645, 234.6478494624, 203.9677419355);
}

.panel-danger {
  border-color: rgb(234.7934782609, 203.7065217391, 208.8876811594);
}
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: rgb(234.7934782609, 203.7065217391, 208.8876811594);
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: rgb(234.7934782609, 203.7065217391, 208.8876811594);
}
.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: rgb(234.7934782609, 203.7065217391, 208.8876811594);
}/*# sourceMappingURL=cart.css.map */