.lighter-text {
  color: #abb0be;
}

.main-color-text {
  color: #6394f8;
}

.shopping-cart-badge {
  background-color: rgb(34, 97, 244);
  border-radius: 10px;
  color: white;
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  padding: 3px 7px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

.shopping-cart {
  float: right;
  background: white;
  width: 400px;
  position: relative;
  border-radius: 3px;
  padding: 20px;
  color: black;
}
.shopping-cart .shopping-cart-header {
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 15px;
}
.shopping-cart .shopping-cart-header .shopping-cart-total {
  float: right;
}
.shopping-cart .shopping-cart-items {
  padding-top: 20px;
  max-height: 450px;
  overflow-y: auto;
}
.shopping-cart .shopping-cart-items li {
  margin-bottom: 18px;
}
.shopping-cart .shopping-cart-items img {
  float: left;
  margin-right: 12px;
}
.shopping-cart .shopping-cart-items .item-name {
  display: block;
  padding-top: 10px;
  font-size: 16px;
}


.shopping-cart .shopping-cart-items .item-name a {
  padding: 0px!important;
}

.shopping-cart .shopping-cart-items a {
  overflow: hidden;
  text-overflow: ellipsis;
  color: #09f;
  font-weight: 500;
  line-height: 21px;
  transition: all 0.2s ease-in-out;
  font-size: 0.8em;
}

.shopping-cart .shopping-cart-items a:hover {
  color: #004c7f;
}

.shopping-cart .shopping-cart-items .item-price {
  color: #6394f8;
  margin-right: 8px;
}
.shopping-cart .shopping-cart-items .item-quantity {
  color: #abb0be;
}

.shopping-cart:after {
  bottom: 100%;
  left: 89%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-bottom-color: white;
  border-width: 8px;
  margin-left: -8px;
}

.cart-icon {
  color: #515783;
  font-size: 24px;
  margin-right: 7px;
  float: left;
}

.button-go-cart{
  background: #6394f8;
  color: white;
  text-align: center;
  padding: 12px!important;
  text-decoration: none;
  display: block;
  border-radius: 3px;
  font-size: 16px;
  margin: 25px 0 15px 0;

  color: #fff;
  background-color: #007791;
  border: 1px solid transparent;
}
/* .button:hover {
  background: #19849c;
  color: white;
} */

.button-go-cart:hover {
  color: #007acc;
  border: 1px solid #007acc;
}
/* .clearfix:after {
  content: "";
  display: table;
  clear: both;
} */


/* shopping cart */
.shopping-cart-container {
  position:absolute;z-index:100; right: 15%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.btn-cart-container { 
  margin-top:5px;
  width: 100%;
  display: flex;
}

button.add-to-cart {
  margin-left: 2px;
}

.btn-cart-container button {
  flex: auto;
}

.add-to-cart{
    background-color: transparent;
    color: #fff;    
    font-size: 18px;
    border-radius: 5px;
    border: 1px solid rgb(34, 97, 244);
    transition: all .2s ease-in-out;
    /* height: 48px; */
}

.add-to-cart:hover .text-cart{
    color: white;
    /* transform: scale(1.1); */
}

.add-to-cart:hover {
    background-color: rgb(34, 97, 244);
}

.add-to-cart:active, .add-to-cart:focus {
    border: 1px solid rgb(34, 97, 244);
    outline: none;
}

.text-cart {
    color: rgb(34, 97, 244);
}

.shopping-cart-button:hover:after, .shopping-cart-button:focus:after, .shopping-cart-button:active:after   {
  background: none;
  opacity: 0;
}
.shopping-cart-button {
  padding: 0px!important;
}


.cart-course-price {
  color: rgb(34, 97, 244);
  font-size: 19px;
  font-weight: bold; 
}