body {
    background-color: black;
}

.pasuca_logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

h1 {
    font-size: 50px;
    color: yellow;
    text-align: center;
}

.DropDown_Menu {
    
    max-width: 550px;
    margin: 15px auto;

}

.DropDown_Menu .Style_Menu {
    background-color: white;
    position: relative;
    border-radius: 5px;
    width: 100%;
    box-shadow: 0px 1px 5px 3px yellow;

}

.Style_Menu input {
    height: 55px;
    outline: none;
    width: 85.5%;
    border: none;
    border-radius: 5px;
    padding: 0 60px 0 20px;
    font-size: 18px;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
}

.Style_Menu .search_icon {
    height: 55px;
    width: 55px;
    line-height: 55px;
    position: absolute;
    top: 0;
    right: 0;
    text-align: center;
    font-size: 20px;
}

.Style_Menu .Style_For_productOptions {
    padding: 0px;
    max-height: 280px;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    
}

.Style_For_productOptions li {
    list-style: none;
    padding: 8px 12px;
    width: 100%;
    cursor: default;
    border-radius: 3px;
    display: none;
    font-size: 20px;

}

.Style_For_productOptions li:hover {
    background: #efefef;
    cursor: pointer;
}


.Style_Menu.active .Style_For_productOptions {
    padding: 10px 8px;
    opacity: 1;
    pointer-events: auto;
}

.Style_Menu.active .Style_For_productOptions li{
    display: block;
}

.products_selected {
    background-color: white;
    max-width: 900px;
    margin: auto;
    margin-top: 60px;
    border: 3px solid yellow;
    border-radius: 5px;
    
}

.products_selected caption {
    background-color: rgb(250, 250, 9); 
    text-align: left;
    padding-bottom: 5px;
    font-weight: bold;
    font-size: 20px;
}

.products_selected .table {
    width: 100%;
    overflow-y: auto;
}

.products_selected .table_height {
    height: 600px;
    overflow-y: auto;
}

.products_selected table, th {
    text-align: left;
    border: 1px solid black;
    border-collapse: collapse;
    font-size: 17px;
    padding: 5px;
}

.products_selected th {
    background-color: #efefef;
}

.products_selected td {
    border: 1px solid black;
    border-collapse: collapse;
    padding: 5px;
}

.products_selected .products_quantity {
    width: 70px;
    font-size: 15px;
    cursor: pointer;
}

.products_selected #trashBin {
    color: red;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width:  50%;
    cursor: pointer;
}

.products_selected tr td:hover {
    background-color: rgb(247, 247, 129);
}

.products_selected .total {
    background-color: yellow;
    top: 500px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    
}

.products_selected .total #total_field {
    font-size: 20px;
    font-weight: bold;
}

.products_selected .total #total_value {
    font-size: 18px;
    font-weight: bold;
    margin-left: 10px;
    padding-right: 10px;
}