
#cart {
  top: 20px;
  right: 60px;
  position: fixed;
  z-index: 1040;
  font-size: 26px;
  padding: 12px;
  background-color: #2D348C;
  color: white;
  border-radius: 50%;
  cursor: pointer;
}
    
#cart-qty {
  position: absolute;
  top: 2px;
  right: -5px;
  padding: 3px 7px;
  font-size: 14px;
  background-color: orange;
  font-family: Verdana, sans-serif;
  color: white;
  border-radius: 50%;
  cursor: pointer;
}
    
#cart-tooltip {
  width: 120px;
  background-color: black;
  color: #fff;
  font-size: 18px;
  font-family: 'Nunito', 'Raleway', sans-serif;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  opacity: 0;
  top : 12px;
  right: 110%;
}

.cart-btn {
  font-size: 20px; 
  height: 34px; 
  margin-right: 15px; 
  margin-bottom: 20px;
  padding: 0 8px;
  border: 1px solid #ffc727;
  border-radius: 5px;
  color: #000;
  text-shadow: 1px 1px 1px #fff6e9;
  cursor: pointer;
	background-image: -webkit-linear-gradient(top, #fff6e9 0%,#ffaa00 100%);
	background-image: -moz-linear-gradient(top, #fff6e9 0%,#ffaa00 100%);
	background-image: -o-linear-gradient(top, #fff6e9 0%,#ffaa00 100%);
	background-image: -ms-linear-gradient(top, #fff6e9 0%,#ffaa00 100%);
	background-image: linear-gradient(top, #fff6e9 0%,#ffaa00 100%);
}

.popup-form {
  transform: none;
  position: fixed;
  z-index: 1040;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overfow: auto;
  background: rgba(0,0,0,0.4);
}

.popup-content {
  position: relative;
  background-color: #fefefe;
  font-family: Arial, Helvetica, sans-serif;
  margin: auto;
  padding: 8px 10px 14px 10px;
  border: 1px solid #888;
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  width: 80%;
  height: 70%;
  animation-name: modaldrop;
  animation-duration: 0.4s;
  animation-iteration-count: 1;
}

.popup-close {
  cursor: pointer;
  float: right;
  font-size: 28px;
  font-weight: bold;
  margin: -14px -2px 0;
  text-decoration: none;
}

.popup-header {
  padding: 2px 10px;
}

.popup-body {
  height: 64%;
  padding: 0px 6px;
  overflow: scroll;
}

.popup-footer {
  padding: 2px 10px;
}

@keyframes modaldrop {
  from {top: -300px; opacity: 0}
  to {top: 0; opacity: 1}
}
 