.cart .chosen-container-single{
	width: 70px !important;
}

.account__head{
	border-left: 4px solid #000;
}

@-webkit-keyframes showOverlay {
  from {
    visibility: hidden;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
@keyframes showOverlay {
  from {
    visibility: hidden;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
@-webkit-keyframes hideOverlay {
  from {
    visibility: visible;
    opacity: 1;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
@keyframes hideOverlay {
  from {
    visibility: visible;
    opacity: 1;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
@-webkit-keyframes showModal {
  from {
    opacity: 0;
    -webkit-transform: translateY(75%);
            transform: translateY(75%);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes showModal {
  from {
    opacity: 0;
    -webkit-transform: translateY(75%);
            transform: translateY(75%);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@-webkit-keyframes hideModal {
  from {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(75%);
            transform: translateY(75%);
  }
}
@keyframes hideModal {
  from {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(75%);
            transform: translateY(75%);
  }
}
.overlay {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  -webkit-animation-duration: 200ms;
          animation-duration: 200ms;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  will-change: transform, opacity;
}
.overlay[data-backdrop] {
  background: rgba(0, 0, 0, 0.6);
}
.overlay[data-opened="true"] {
  pointer-events: auto;
  -webkit-animation-name: showOverlay;
          animation-name: showOverlay;
}
.overlay[data-opened="false"] {
  -webkit-animation-name: hideOverlay;
          animation-name: hideOverlay;
}
.overlay[data-opened="false"]:not([data-type="alert"]) {
  -webkit-animation-delay: 300ms;
          animation-delay: 300ms;
}

.modal {
  position: relative;
  display: -webkit-box;
  display: flex;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  width: 100%;
  height: 100%;
  text-align: left;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  opacity: 0;
  -webkit-animation-duration: 300ms;
          animation-duration: 300ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  will-change: transform, opacity;
}
@media (min-width: 640px) {
  .modal {
    max-width: 920px;
    height: auto;
    max-height: 100%;
    margin: 1.5rem;
    border-radius: 4px;
  }
}
[data-type="alert"] .modal {
  max-width: 360px;
  height: auto;
  margin: 1rem;
  text-align: center;
  border-radius: 4px;
}
.overlay[data-opened="true"] .modal {
  -webkit-animation-name: showModal;
          animation-name: showModal;
  -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
          animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.overlay[data-opened="true"]:not([data-type="alert"]) .modal {
  -webkit-animation-delay: 200ms;
          animation-delay: 200ms;
}
.overlay[data-opened="false"] .modal {
  -webkit-animation-name: hideModal;
          animation-name: hideModal;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
          animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.modal--header {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  flex-shrink: 0;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  color: rgba(0, 0, 0, 0.6);
}
.modal--title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: calc(1em + 0.5rem);
}
.modal--content {
  /*overflow-x: hidden;
  overflow-y: auto;*/
  -webkit-box-flex: 1;
          flex-grow: 1;
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.8);
  /*min-height: 500px;*/
}
.modal--footer {
  display: -webkit-box;
  display: flex;
  flex-shrink: 0;
  min-height: 3rem;
  padding: 1rem;
}
.modal--footer:before {
  -webkit-box-flex: 1;
          flex-grow: 1;
  -webkit-box-ordinal-group: 2;
          order: 1;
  content: "";
}
.modal--footer button:first-of-type {
  -webkit-box-ordinal-group: 1;
          order: 0;
}
.modal--footer button:last-of-type {
  -webkit-box-ordinal-group: 3;
          order: 2;
}

.button[data-modal-close] {
  position: absolute;
  z-index: 99999;
  top: 0;
  right: 0px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  background: none;
  border-radius: none;
  cursor: pointer;
  text-decoration: none;
  color: #999999;
  -webkit-transition: 200ms ease-out;
  transition: 200ms ease-out;
}
.button[data-modal-close]:hover {
  color: #cccccc;
}
.modal .button[data-modal-close] {
  align-self: stretch;
  color: #cccccc;
}
.modal .button[data-modal-close]:hover {
  color: #999999;
}
.button[data-modal-close] .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  pointer-events: none;
  fill: currentColor;
}

.chosen-container{
	margin-top: 0px;
}

div.topbar{
	z-index: 99;
}

div.sidebar{
	z-index: 9;
}


.max_width_img{
  max-width: 150px;
  max-height: 150px;
  min-width: 150px;
  min-height: 150px;
}

form.modal{
  overflow: scroll;
}

.chosen-container .chosen-results li.active-result{
    text-align: left;
}