.mini_cart_wrapper {
  position: relative;
}
.mini_cart_wrapper > a:hover {
  color: #005B9F;
  text-decoration: none;
}
.mini_cart_wrapper > a i.ion-ios-arrow-down {
  margin-left: 4px;
}
.mini_cart_wrapper > a i.fa-shopping-bag {
  border: 2px solid #ebebeb;
  display: inline-block;
  height: 50px;
  line-height: 46px;
  text-align: center;
  width: 50px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  font-size: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mini_cart_wrapper > a i.fa-shopping-bag {
    height: 46px;
    width: 46px;
    line-height: 42px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mini_cart_wrapper > a i.fa-shopping-bag {
    height: 40px;
    line-height: 36px;
    width: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .mini_cart_wrapper > a i.fa-shopping-bag {
    height: 40px;
    line-height: 36px;
    width: 40px;
  }
}
.mini_cart_wrapper > a span.cart_count {
  background: #201d48;
  color: #fff;
  font-size: 13px;
  height: 22px;
  left: -12px;
  line-height: 22px;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translatey(-50%);
  width: 22px;
  z-index: 9;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mini_cart_wrapper > a span.cart_count {
    font-size: 12px;
    height: 20px;
    left: -16px;
    line-height: 20px;
    width: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .mini_cart_wrapper > a span.cart_count {
    font-size: 12px;
    height: 20px;
    left: -16px;
    line-height: 20px;
    width: 20px;
  }
}
.mini_cart_wrapper > a span.cart_price {
  font-size: 14px;
  font-weight: 500;
  margin-left: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mini_cart_wrapper > a span.cart_price {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .mini_cart_wrapper > a span.cart_price {
    font-size: 13px;
  }
}
.mini_cart_wrapper:hover .mini_cart {
  max-height: 532px;
  padding: 18px 30px 30px;
  visibility: visible;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mini_cart_wrapper:hover .mini_cart {
    padding: 10px 15px 15px;
    visibility: inherit;
  }
}
@media only screen and (max-width: 767px) {
  .mini_cart_wrapper:hover .mini_cart {
    padding: 10px 15px 15px;
    visibility: inherit;
  }
}

.mini_cart {
  position: absolute;
  min-width: 355px;
  padding: 0 30px 0;
  background: #fff;
  border: 0;
  z-index: 999;
  right: 0;
  top: 115%;
  max-height: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border: 1px solid #ebebeb;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mini_cart {
    display: none;
    transition: unset;
    max-height: 500px;
    min-width: 260px;
    border: 1px solid #ebebeb;
    left: -108px;
    visibility: inherit;
    padding: 10px 15px 15px;
  }
}
@media only screen and (max-width: 767px) {
  .mini_cart {
    display: none;
    transition: unset;
    max-height: 500px;
    min-width: 260px;
    border: 1px solid #ebebeb;
    left: -108px;
    visibility: inherit;
    padding: 10px 15px 15px;
  }
}

.cart_img {
  width: 90px;
  margin-right: 10px;
  border: 1px solid #ebebeb;
}
.cart_img:hover {
  border-color: #c40316;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cart_img {
    width: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .cart_img {
    width: 70px;
  }
}

.cart_info {
  width: 63%;
}
.cart_info a {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  display: block;
  margin-bottom: 6px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cart_info a {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .cart_info a {
    font-size: 13px;
  }
}
.cart_info a:hover {
  color: #c40316;
}
.cart_info p {
  font-size: 12px;
}
.cart_info p span {
  font-weight: 600;
}

.cart_remove a {
  font-size: 15px;
  border: 1px solid #ebebeb;
  width: 20px;
  height: 20px;
  display: block;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
}
.cart_remove a:hover {
  background: #c40316;
  border-color: #c40316;
  color: #ffffff;
}

.cart_item {
  overflow: hidden;
  padding: 11px 0;
  border-bottom: 1px solid #ebebeb;
  display: flex;
  justify-content: space-between;
}

.mini_cart_table {
  padding: 23px 0;
}

.cart_total {
  display: flex;
  justify-content: space-between;
}
.cart_total span {
  font-size: 14px;
  font-weight: 400;
}
.cart_total span.price {
  font-weight: 700;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cart_total span {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .cart_total span {
    font-size: 13px;
  }
}

.cart_button:first-child {
  margin-bottom: 15px;
}
.cart_button a {
  text-transform: uppercase;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
  background: #eef0f1;
  border: 1px solid #ebebeb;
  display: block;
  text-align: center;
  line-height: 20px;
  margin-bottom: 0;
  padding: 13px 0px 11px;
}
.cart_button a:hover {
  background: #c40316;
  border-color: #c40316;
  color: #ffffff;
}

span.shopping-cart {
    border: 2px solid #ebebeb;
    display: inline-block;
    height: 50px;
    //line-height: 46px;
    text-align: center;
    width: 50px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    font-size: 20px;
    color:#201d48;
}
.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}