.cart-product-lightbulb {
    border-top: 0px solid #d7dbdd;
    grid-area: lightbulb;
    text-align: center;

}
.cart-product-lightbulb .select-bulb {
    color: #191919;
    padding: 0.5em 1.5em; 
    display: inline-flex;
    align-items: center;
    background: #ecebe9;
    width: auto;
    border-radius: 10px;
    border: 1px solid #bec4c8;
}
.cart-product-lightbulb .no-missing-bulbs {
    background: #e5f1e4;
}
.cart-product-lightbulb .choose-lightbulb {
    cursor: pointer;
}

/* make header sticky & body scrollable */
body.lang-rtl.classicCartOpen2 .lightbulb-show-dropdown-right {
    right: auto;
    left: 0;
}
body.classicCartOpen2 .full-wrapper-backdrop {
    opacity: 1;
    visibility: visible;
}

.lightbulb-show-dropdown-right {
    width: calc(100% - 50px);
    max-width: 380px;
    position: fixed;
    top: 0;
    bottom: 0;
    background-color: #ffffff;
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, .05);
    z-index: 999;
    visibility: hidden;
    text-align: left;
    right: -90%;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    overflow-y: auto;
}

body.classicCartOpen2 .lightbulb-show-dropdown-right {
    right: 0;
    visibility: visible;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.lightbulb-show-dropdown-right .ttvclose-cart {
    height: 40px;
    width: 40px;
    background-image: url(../../themes/v1_lacausa_2/assets/img/themevolty/sprite.png);
    background-position: -105px -805px;
    padding: 0;
    background-color: transparent;
    border: none;
    /*border-right: 1px solid #e1e1e1;*/
    cursor: pointer;
}
.lightbulb-show-dropdown-right .ttvclose-cart:focus {
    outline: none;
    background-color: transparent;
}
.lightbulb-show-dropdown-right .tvcart-product-content {
    max-width: 213px;
}
.lightbulb-show-dropdown-right .ttvcart-close-title-count {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*border-bottom: 1px solid #e1e1e1;*/
    height: 40px;
}

.lightbulb-show-dropdown-right .ttvcart-top-title h4 {
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    padding-bottom: 0;
    margin-bottom: 0px;
    text-align: center;
    font-size: 15px;
}

.lightbulb-show-dropdown-right .ttvcart-scroll-container {
    height: calc(100vh - 1px);
    max-height: 100%;
    overflow-y: auto;
}
.lightbulb-show-dropdown-right .ttvcart-product-content-box {
    position: relative;
}
.lightbulb-show-dropdown-right .ttvcart-product-wrapper {
    padding: 20px 0 20px 20px;
    /*border-bottom: 1px solid #eee;*/
    display: -webkit-flex;
    display: flex;
    position: relative;
}
.lightbulb-show-dropdown-right .ttvcart-product-wrapper:after,
.lightbulb-show-dropdown-right .ttvcart-product-label-value:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #eee;
    height: 0px;
    width: 90%;
    margin: 0 auto;
}

/* Make the row wrapper a positioned container */
.cart-grid {
  position: relative;
}

.cart-grid-right {
  /* existing styles… */
  position: relative;
  transition: top 0.3s ease-in-out,
  bottom 0.3s ease-in-out;
}

.cart-grid-right.fixed {
  position: fixed;
  top: 70px;    
  right: 20px;
  /*z-index: 1000;*/
  /* bottom:auto is implicit */
}

.cart-grid-right.bottom {
  position: absolute;
  bottom: 27px; 
  top: auto;
  right: 0;
}

