[v-cloak] {
    display: none;
}

.fly_basket {
    position: absolute;
    z-index: 5000;
    right: -30px;
    top: 30px;
    width: 30rem !important;
}

#header_menu_runtec {
	position: relative;
}

.basket_items::-webkit-scrollbar {
  width: 4px; !important;           /* ширина всей полосы прокрутки */
}

.basket_items::-webkit-scrollbar-track  {
  background: #F1F1EF; !important;           /* цвет зоны отслеживания */
}

.basket_items::-webkit-scrollbar-thumb {
  background-color: #616568; !important;   /* цвет бегунка */
  border-radius: 0.875rem !important;     /* округлось бегунка */
  border: 3px solid #616568 !important;   /* отступ вокруг бегунка */
}



.basket_items {
    background: #464B4F;
    width: 30rem;
    border-radius: 0.625rem;
    margin-bottom: 0.62rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: auto;
    max-height: 23rem;
}

.basket_total {
    background: #464B4F;
    display: flex;
    flex-direction: column;
    width: 30rem;
    border-radius: 0.625rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.basket_items .basket_item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    height: 6.5rem;
}

.basket_items .basket_item:last-child {
    border-bottom: unset;
}

.basket_items .basket_item .image{
    height: 100%;
}

.basket_items .basket_item .image .no_image{
    border-radius: 0.625rem;
    background: #585D60;
    height: 100%;
    width: 4.5rem;
}

.basket_items .basket_item .image .image_b{
    border-radius: 0.625rem;
    width: 4.5rem;
}

.basket_items .basket_item .image .image_b img{
    border-radius: 0.625rem;
}

.basket_items .basket_item .content{
    display: flex;
    flex-direction: column;
    margin: 0px;
    justify-content: space-between;
    flex: 1;
}

.basket_items .basket_item .content .title{
    color: var(--White, #FFF);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin: 0px;

    -webkit-line-clamp: 2;
    line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.basket_items .basket_item .content .prices{

}

.basket_items .basket_item .content .prices .price{
    color: var(--White, #FFF);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; 
}

.basket_items .basket_item .actions {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.basket_items .basket_item .actions .quantity_controller{
    border-radius: 0.625rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #585D60;
    display: flex;
    padding: 0.625rem;
    gap: 0.88rem;
    align-items: center;
}

.basket_items .basket_item .actions .quantity_controller svg {
    cursor: pointer;
}

.basket_items .basket_item .actions .quantity_controller .quantity {
    color: #FFF;
    text-align: center;
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    background: transparent;
    width: 1rem;
}



.basket_total {
    padding: 1.25rem 1rem 1rem 1rem;
}

.basket_total .total_title{
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.88rem;
}

.basket_total .total_title .desc{
    color: var(--White, #FFF);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.basket_total .total_title .value{
    color: var(--White, #FFF);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

.basket_total .noti{
    border-radius: 0.625rem;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.10);
    padding: 1rem 2rem 1rem 1rem;
    gap: 0.75rem;
    display: flex;
    margin-bottom: 1.5rem;
}

.basket_total .noti_pic {
    width: 3rem;
    height: 3rem;
    padding: 0.625rem;
    border-radius: 1rem;
    background: #FFB61C;
    display: flex;
    align-items: center;
    justify-content: center;
}

.basket_total .noti_text{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.basket_total .noti_text .t{
    color: #FFF;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 123%;
}

.basket_total .noti_text .d{
    color: #FFF;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 123%;
    opacity: 0.7;
}

.basket_total .to_basket {
    border-radius: 0.625rem;
    background: var(--Yellow, #FFB61C);
    backdrop-filter: blur(4.5px);
    padding: 0.9375rem 2.5rem;
    text-align: center;
    cursor: pointer;
    margin-bottom: 0.62rem;
}

.basket_total .to_basket span {
    color: var(--Black, #000);
    text-align: center;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 123%
}

.basket_total .delete_all {
    border-radius: 0.625rem;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(4.5px);
    padding: 0.9375rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
}

.basket_total .delete_all span {
    color: #FFF;
    text-align: center;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    sline-height: 123%;
}

.button_coner {
    position: absolute;
    right: 0.75rem;
    top: 0.75rem;
}