#cartfooter {
  background-color: #ffe500;
  width: 100%;
}
html, body {
  height: 100%;
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  font-size:16px;
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #c8181f;
  border-color: rgba(0,0,0,0.3);
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0,0,0,0.3);
  margin-bottom: 1px;
}
.list-group-item+.list-group-item {
  border-top-width: thin;
}
@media (min-width: 992px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 720px;
  }
}

.item-style {
  padding: 10px;
}

.zpad {
  padding: 0px;
  margin: 0;
  border: 1px solid #BBB;
}

.item-img {
  border: none;
}

.item-name{
  padding: 5px;
  height: 50px;
  border-top: 1px solid #BBB;
  font-size: .9em;
}

.item-price{
  font-size: .85em;
}

.modal-row-border-top {
  border-top: 1px solid #BBB;
}

.modal-order-datetime-sel{
    border: solid 2px cornflowerblue;
    width: 80%;
    margin: auto;
    color: cornflowerblue;
    font-size: 1.4em;
    margin-top: 10px;
}

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

a {
  color: #ababab;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:hover {
  color: #707070;
  text-decoration: underline;
}

#preloader {
    position: fixed;
    background: #000;
    opacity:0.4;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index:99999;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #9370DB;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #BA55D3;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}
#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #FF00FF;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}