#cart-block {
  margin-top: 17px;
  margin-left: 40px;
  display: block;
  color: #fff;
}
#cart-block i{
    font-style: normal;
}
a.btn.add-to-cart-btn:hover{
    background: #e6e6e6 !important;
}

.cart-table{
	display: table;
	width: 100%;
}

.cart-item-row{
	display: table-row;
}
.cart-item-row:nth-child(even){
	background: #f2f2f2;
}
.cart-item{
	display: table-cell;
	padding: 10px 15px;
	/*border-right: 1px solid #ccc;*/
	/*border-bottom: 1px solid #ccc;*/
}

.cart-item.cart-item-total{
	border-right: 0;
}
.cart-main-form{
 	margin: 30px 0;
}
.cart-main-form label{
	width: 120px;
	display: inline-block;
}
.cart-main-form input{
	display:  inline-block;
	max-width: calc(100% - 130px);
}

.cart-full-total {
    font-weight: bold;
    text-align: right;
    font-size: 140%;
    margin-top: 20px;
}

.cart-main-form .form-actions{
	margin: 5px 0;
}

.cart-main-form .form-actions .form-submit{
	display: inline-block;
	padding: 5px 10px;
	background: #111419;
	color: #fff;
	border: none;
}

.checkout-message .message-text{
	text-align: center;
	margin: 0 0 30px;
	font-size: 20px;
	font-weight: bold;
}
.catalog .add-to-cart-btn.btn, .catalog .add-to-cart-btn.btn + .btn{
  padding: 15px 0;
}
.btn-group .btn.loading {
  color: #ccc !important;
  background: #323830 !important;
}
.cart-overlay {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}

#cart-message {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  padding: 50px 100px;
  text-align: center;
  transform: translateX(-50%) translateY(-50%);
}
.close-btn {
  position: absolute;
  font-size: 24px;
  top: 5px;
  right: 15px;
  line-height: 1;
  color: #000;
  transform: rotate(45deg);
}
.show-on-mobile{
  display: none;
}
.cart-change-count {
  display: inline-block;
  border: 1px solid #000;
  width: 20px;
  text-align: center;
  height: 20px;
  line-height: 16px;
  margin: 0 10px;
  color: #000;
}
.cart-delete-item{
  width: auto;
  height: auto;
  padding: 5px 20px;
}
.catalog .card .adv-btn-group.btn-group .btn:last-child{
  width: 100% !important;
}

@media screen and (max-width: 635px) {
  .cart-item-th{
    display: none;
  }
  .show-on-mobile{
    display: inline;
  }
  #cart-message {
    padding: 10px;
    width: 100%;
  }
  .cart-item{
    display: block;
  }
}
