.custom-cart-page {
  background-color: var(--background-color);
}
.custom-cart-section {
  width: 100%;
  display: flex;
  justify-content: start;
  flex-direction: column;
  align-items: center;
  background-color: var(--background-color);
}
.cart-container-title-section{
    display: flex;
    justify-content: end;
    align-items: end;
    width: 100%;
    flex-direction: column;
    background-color: var(--background-color);
    z-index: 1 !important;
}
.cart-container-title{
    font-family: var(--font-main);
    font-size: 40px;
    font-weight: bold;
    color: var(--black-color);
    text-align: right;
}
.basket_main_item_section{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: row;
    height: 200px;
}
.basket_image_item_section{
    background-color:brown;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    flex-direction: row;
    height: 100%;
}
.basket_image{
    width: 200px;
    height: 200px;
    border-radius: 20px;
}
.basket_info_item_section{
    background-color:darkgoldenrod;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    flex-direction: row;
    height: 100%;
}
.basket-form-main-grid{
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    display: flex;
}
.cart-totals {
    align-items: end;
    text-align: right;
    margin-top: -120px;
}
.cart-totals h3{
    font-family: var(--font-main);
    font-weight: bold;
    font-size: 20px;
}
.basket-login-buttons-section{
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: start;
    flex-direction: row;
    gap: 20px;
}
.basket-login-button{
    padding: 10px 20px;
    border: 1px solid var(--black-color);
    background-color: var(--black-color);
    color: var(--white-color);
    font-family: var(--font-main);
    font-size: 20px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    height: 60px;
    min-width: 300px;
}
.basket-login-button:hover{
    background-color: var(--background-color);
    color: var(--black-color);
}
.separator-main-line{
    background-color: var(--background-color);
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}
.separator-main-line .box {
  height: 5px;
  background-color: var(--black-color);
}
.separator-main-line .box-selected{
  height: 5px;
  background-color: var(--green-color);
}
.cart-header-section {
  flex: 0 0 auto;
  position: sticky;
  top: 0;
  z-index: 10;
}
.basket-form-scroll {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 15px 0;
}