.shopping-cart {
	width: 500px;
	height: 600px;
	background-color: white;
	position: fixed;
	right: 3%;
	margin-top: 3px;
	border: 1px solid grey;
	display: flex;
    justify-content: center;
}

.shopping-cart:hover {
	display: flex !important;
	margin-top: -4px;
}

.cart-content {
    width: 96%;
    height: 70%;
    margin-top: 10px;
}

.cart-item {
    width: 100%;
    height: 70%;
    margin-top: 10px;
    overflow-y: auto;
    
}

.remove-item {
    width: 100%;
    height: 100%;
    position: flex;
    margin-bottom: 55px;
}

.remove-item a {
    cursor: pointer;
    padding: 0px !important;
    color: black !important;
}

.remove-item a:hover {
    margin-top: 0px !important;
    background-color: transparent !important;
    color: black !important;
}

.cart-footer {
    width: 100%;
    height: 50px;
}

.shopping-cart table {
    width: 100%;
    border: none !important;
    cursor: auto;
}

.shopping-cart table td {
    border: none !important;
    text-align: left !important;
}

.shopping-cart table th {
    border: none !important;
}

.total {
    font-size: 22px;
    font-weight: bold;
}

.cart-footer button:hover{
	background: #04AA6D;
}

.to-cart-page {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
}

.to-cart-page button {
    width: 50%;
    height: 30px;
    background-color: #018051;
    color: white;
    border: none;
    
}

.to-payment {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
}

.to-payment button {
    width: 50%;
    height: 30px;
    background-color: #018051;
    color: white;
    border: none;
}

.to-cart-page a {
    text-decoration: none;
    color: white;
    font-size: 17px;
    padding: 0px !important;
}

.to-cart-page a:hover {
	margin: 0px !important;
    background-color: transparent !important;
}

.to-payment a {
    text-decoration: none;
    color: white;
    font-size: 17px;
    padding: 0px !important;
}

.to-payment a:hover {
	margin: 0px !important;
    background-color: transparent !important;
}

/* th {
    border: 1px solid green;
}

td {
    border: 1px solid blue;
} */

.content-gap {
    width: 100%;
    height: 5px;
    background-color: #018051;
}

.service-name {
    width: 100%;
    height: 30%;
    display: block;
    justify-content: left;
    overflow-y: auto;
}

.service-name p {
    font-size: 20px;
    margin: 0;
}

.service-pack {
    display: flex;
    justify-content: left;
    width: 100%;
    height: 20%;
    margin-top: 5px;
}

.service-pack p {
    margin: 0;
    font-size: 15px;
}

.price {
    width: 100%;
    height: 30%;
    display: flex;
    justify-content: left;
    font-size: 20px;
}

.price p {
    margin: 0;
    font-size: 20px;
}

.duration {
    display: flex;
    justify-content: left;
    width: 100%;
    height: 20%;
    margin-top: 5px;
}

.duration p {
    margin : 0;
    font-size: 15px;
}

.quantity {
    display: flex;
    justify-content: left;
    width: 100%;
    height: 20%;
    margin-top: 5px;
}

.quantity p {
    margin: 0;
    font-sỉze: 15px !important;
    padding-top: 3px;
}

.quantity button {
    width: 25px;
    background: #018051;
    cursor: pointer;
    text-align: center;
    padding: 0;
    border: 1px solid black;
    color: white;
}

.quantity button i {
	padding: 0px !important;
}

.quantity input {
	padding-top: 2px;
}



.minus {
    border-right: none;
}

.minus:hover {
    background: rgb(135, 205, 30);
}

.plus {
    border-left: none;
}

.plus:hover {
    background: rgb(135, 205, 30);
}

#quantity {
    width: 20px;
    border: 1px solid black;
    border-left: none;
    border-right: none;
    text-align: center;
}

.cart-table-title {
    font-weight: bold;
    font-size: 20px;
}

/*Custom scroll bar*/
/* width */
::-webkit-scrollbar {
    width: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: transparent; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #018051; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #018051; 
  }