/*
 * Component: Info Box
 * -------------------
 */
.basket-box {
  display: block;
  min-height: 50px;
  /* background: #fff; */
  width: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  margin-bottom: 15px;
   -moz-border-radius: 5px 0px 0px 5px;
  -webkit-border-radius: 5px 0px 0px 5px;
  border: 1px solid #000000;
}
.basket-box small {
  font-size: 14px;
}
.basket-box .progress {
  background: rgba(0, 0, 0, 0.2);
  margin: 5px -10px 5px -10px;
  height: 2px;
}
.basket-box .progress,
.basket-box .progress .progress-bar {
  border-radius: 0;
}
.basket-box .progress .progress-bar {
  background: #fff;
}
.basket-box-icon {
  border-top-left-radius: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 2px;
  display: block;
  float: left;
  height: 50px;
  width: 50px;
  text-align: center;
  font-size: 25px;
  line-height: 50px;
  background: rgba(0, 0, 0, 0.2);
}
.basket-box-icon > img {
  max-width: 100%;
}
.basket-box-content {
  padding: 0px 0px;
  margin-left: 50px;
}
.basket-box-number {
  display: block;
  font-weight: bold;
  font-size: 18px;
  margin-left:10px;
} 
.progress-description,
.basket-box-text {
  margin-left:10px;
  display: block;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.basket-box-text {
  text-transform: uppercase;
}
.basket-box-more {
  display: block;
}
.progress-description {
  margin: 0;
}


.basket-container{
    position:fixed;
    right:-175px;
    top:70px;
    transition:right 300ms linear;
}
.basket-container:hover{
  /* right: 0px; */
  cursor:pointer;
}

.basket-container .basket-box{
    
    width:225px;
    position: relative;
}
.basket-container .basket-box:hover{
    
}

.basket-container .item-counter.badge{
    position: absolute;
    top: 5px;
    left: 25px;
}
.basket-container .basket-box .basket-box-item-container{
    padding-top: 5px;
    padding-bottom: 5px;
}
.basket-container .basket-box .basket-box-items{
    display: none;
    margin-left: -60px;
    height: 100px;
    overflow: auto;
}

.basket-container .basket-box .basket-box-items::-webkit-scrollbar {
    width: 20px;
	  background-color: #F5F5F5;
}
 
/* .basket-container .basket-box .basket-box-items::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
	border-radius: 10px;
}
 
.basket-container .basket-box .basket-box-items::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-image: -webkit-gradient(linear,
									   left bottom,
									   left top,
									   color-stop(0.44, rgb(122,153,217)),
									   color-stop(0.72, rgb(73,125,189)),
									   color-stop(0.86, rgb(28,58,148)));
} */
.basket-container .basket-box .basket-box-items::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: linear-gradient(left, #96A6BF, #63738C);
  box-shadow: inset 0 0 1px 1px #5C6670;
}

.basket-container .basket-box .basket-box-items::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #eee;
  box-shadow: 0 0 1px 1px #bbb, inset 0 0 7px rgba(0,0,0,0.3)
}

.basket-container .basket-box .basket-box-items::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(left, #8391A6, #536175);
}