﻿

#dDBasket {
    position: absolute;
    top: 101%;
    right: 0;
    padding: 30px 30px 30px 45px;
    border: 1px solid darkgrey;
    border-top: 0;
    border-radius: 5px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-color: white;
    z-index: 3;
    box-shadow: 3px 4px 6px -3px #0000007a;
}

#dDBasket > b {
    display: block;
    margin-bottom: 18px;
    margin-left: 25px;
    font-size: 20pt;
}



#dDBasket table {
    border-spacing: 0;
    font-size: 11pt;
    overflow: hidden;
    max-height: 260px;
    overflow-y: auto;
    display: flex;
}

#dDBasket table tbody{
    width: 450px;
}

#dDBasket table::-webkit-scrollbar {
    width: 5px;
}

#dDBasket table::-webkit-scrollbar-thumb, .TooltipWin::-webkit-scrollbar-thumb {
    background-color: lightslategrey;
    border-radius: 15px;
}


#dDBasket table::-webkit-scrollbar-button:single-button, .TooltipWin::-webkit-scrollbar-button:single-button {
    display: none;
}

    #dDBasket tr {
        display: flex;
        height: 65px;
    }

#dDBasket td {
    display: flex;
    align-items:center;
    justify-content: center;
}

#dDBasket td:first-child{
    width:17%;
}

#dDBasket td:nth-child(2){
    width:40%;
}

#dDBasket td:nth-child(3){
    width:19%;
}

#dDBasket td:nth-child(4){
    width:14%;
}

#dDBasket td:nth-child(5){
    width:10%;
}

#dDBasket td:first-child a {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

#dDBasket td:first-child img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


#dDBasket td:nth-child(2) a {
    color: black;
    text-decoration: none;
}

#dDBasket td:nth-child(2) a:hover {
    text-decoration:underline;
}

#dDBasket td:nth-child(5) img{
    height: 15px;
    padding:5px;
    cursor:pointer;
}

#dDBasket > text {
    display: block;
    font-size: 18pt;
    padding-left: 10px;
    border-top: 1px solid darkgray;
}

#dDBasket > div{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#dDBasket > div b {
    font-size: 20pt;
    padding-left: 35px;
}

#dDBasket > div a {
    border-radius: 3px;
    border: 1px solid gray;
    padding: 6px 13px;
    color: black;
    font-weight: 500;
    font-size: 11.5pt;
}

#dDBasket > div a:hover {
    background-color: lightskyblue;
}