.caddie {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    width: 350px;
    height: 100vh;
    background-color: #FFFFFF;
    transform: translateX(400px);
    transition: all 0.3s ease-in-out;
}

.caddie.active {
    transform: translateX(0);
}

.caddie input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.caddie input[type=number] {
  -moz-appearance: textfield;
}

.caddie_header {
    display: flex;
    flex-direction: column;
    color: #FFFFFF;
    background-color: #155144;
    width: 100%;
    padding: 20px;
    text-align: center;
}

.caddie_items {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-left: 10px solid #D86018;
    color: #155144;
    overflow-y: auto;
}

.caddie_items_title {
    width: 80%;
    font-family: 'gotham';
    margin: 10px 0 5px 0;
    padding: 5px;
    border-bottom: 5px solid #FBEEE6;
}

.caddie_item {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 5px 15px;
}

.caddie_item_title {
    font-size: 14px;
    line-height: 14px;
}

.caddie_item_desc {
    font-family: 'montserrat';
    font-size: 14px;
    line-height: 14px;
    color: #969898; 
    margin-left: 7px;
}

.caddie_item + .caddie_item {
    border-top: 1px solid #b7b2b3;
}

.caddie_item_media {
    width: 30%;
    overflow: hidden;
    margin-right: 10px;
}

.caddie_item_media img {
    width: 100%;
    object-fit: contain;
}

.caddie_item_certifications {
    position: absolute;
    top: 15px;
    right: 10px;
    display: flex;
    flex-direction: row-reverse;
}

.caddie_item_certifications img {
    height: 12px;
    width: 12px;
    object-fit: contain;
}

.caddie_item_content {
    display: flex;
    flex-direction: column;
    width: 70%;
    position: relative;
}

.caddie_item_name, .caddie_item_price {
    font-weight: bold;
    font-size: 16px;
}

.caddie_item_desc {
    margin-top: 5px;
    font-size: 14px;
}

.caddie_item_quantite {
    display: flex;
    height: 15px;
    margin-right: 10px;
}

.caddie_item_quantite_btn {
    display: flex;
    justify-content: center;
    width: 15px;
    font-size: 15px;
    line-height: 15px;
    color: #FFFFFF;
    background-color: #39a58e;
    cursor: pointer;
}

.caddie_item_quantite_btn:hover {
    background-color: #155144;
}

.caddie_item_quantite_btn[data-quantity-plus]::before {
    content: '+';
}

.caddie_item_quantite_btn[data-quantity-minus]::before {
    content: '-';
}

.caddie_item_quantite_input {
    width: 25px;
    text-align: center;
    background-color: #f1eeee;
}

.caddie_item_select {
    display: flex;
    position: relative;
    margin-right: 10px;
    height: 15px;
}

.caddie_item_select::before {
    position: absolute;
    content: 'v';
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    background-color: #39a58e;
    width: 15px;
    height: 100%;
    font-size: 10px;
    top: 0;
    right: 0;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
}

.caddie_item_select:hover::before {
    background-color: #155144;
}

.caddie_item_select_input {
    background-color: #f1eeee;
    cursor: pointer;
    width: 60px;
}

.caddie_item_options {
    display: flex;
    align-items: center;
    align-self: flex-end;
}

.caddie_item_old_price {
    margin-right: 5px;
    font-size: 10px;
    text-decoration: line-through;
}

.caddie_item_delete {
    height: 15px;
}
.caddie_item_delete img:hover{cursor:pointer}
.caddie_item_delete img {
    max-height: 100%;
    object-fit: contain;
}

.caddie_footer {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 10px;
    border-left: 10px solid #D86018;
    margin-top: auto;
}

.caddie_footer::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #FBEEE6;
}

.caddie_footer .caddie_btn {
    width: 80%;
    margin: 10px 25px 0 25px;
    text-transform: uppercase;
}

.caddie_total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 18px;
    color: #155144;
}

.caddie_total--alt {
    font-size: 15px;
    color: #D86018;
}

.caddie_btns {
    display: flex;
    margin-top: 15px;
    font-size: 12px;
}

.caddie_btns .caddie_btn {
    width: 50%;
}

.caddie_btn {
    font-weight: bold;
    background-color: #39a58e;
}

.caddie_btn + .caddie_btn {
    margin-left: 10px;
}

.caddie_btn:hover {
    background-color: #D86018;
}