a.ii_button,
button.ii_button,
.ii_button {
	font-weight: 600;
	border: 1px solid #444;
	padding-left: 6px !important;
	padding-right: 6px !important;
	padding-top: clamp(1rem, 1.2rem, 2rem) !important;
	padding-bottom: clamp(1rem, 1.2rem, 2rem) !important;
	margin: 10px 1px 1px 1px;
	text-align: right;
	clear: both;
	text-decoration: none !important;
	background-color: #888;
	color: white;
	border-radius: 6px;
	box-shadow: 1px 1px 4px rgba(44, 44, 44, 0.5);
	display: inline-block;
}

a.ii_button:hover,
button.ii_button:hover,
.ii_button:hover {
	font-weight: 600;
	border: 1px solid #444;
	margin: 11px 2px 0 0;
	text-align: right;
	text-decoration: none !important;
	background-color: #aaa;
	color: white;
	border-radius: 6px;
	box-shadow: 1px 1px 3px rgba(24, 24, 24, 0.6);
}

#propdb-cart-container {
    position: fixed;
    right: -250px;
    top: 5vh;
    width: 250px;
    background-color: #f9f9f9;
    border-left: 1px solid #ccc;
    z-index: 9999;
    transition: right 0.3s ease;
}

#propdb-cart-container.open {
    right: 0;
}

#propdb-cart-tab {
    position: absolute;
    left: -38px;
    top: 84px;
    background: #ffffee;
    padding: 4px 8px 4px 8px;
    padding-bottom: 4px;
    border: 1px solid rgba(128, 128, 128, 0.5);
    box-shadow: -4px 0px 4px rgba(128, 128, 128, 0.25);
    border-radius: 6px 6px 0 0;
    transform: rotate(-90deg);
    transform-origin: top left;    
}

#propdb-cart-content {
    padding: 10px;
    z-index: 30;
    min-height: 84px;
    max-height: 400px;
    overflow-y: auto;
}

#propdb-cart-content ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#propdb-cart-content li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

#propdb-cart-content li a {
    flex-grow: 1;
}

.propdb-remove-from-cart-button {
    background-color: red;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 2px 5px;
}

.propdb-checkout-link {
    display: block;
    margin-top: 10px;
    text-align: center;
    background-color: #0073aa;
    color: #fff;
    padding: 5px;
    text-decoration: none;
}

.propdb-checkout-link:hover {
    background-color: #005177;
}

#propdb-checkout-form label {
    display: inline-block;
    width: 12.5vw;
    min-width: 180px;
}

#propdb-checkout-form input,
#propdb-checkout-form textarea {
    width: 20vw;
    min-width: 240px;
}


/*
#propdb-cart-tab {
  position: absolute;
  left: -48px;
  top: 4;
  z-index: 20;  
  background: #ffffee;
  padding: 4px 8px 4px 8px;
  border: 1px solid rgba(128, 128, 128, 0.5);
  box-shadow: -4px 4px 5px rgba(128, 128, 128, 0.25);
  border-radius: 6px;
}

#propdb-cart-content {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 30;
  background: white;
  padding: 4px 18px 4px 8px;
  border: 1px solid rgba(128, 128, 128, 0.5);
  box-shadow: -4px 4px 5px rgba(128, 128, 128, 0.25);
}
*/


