*{
    font-family: Roobert,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-size: 16px;
}

body{
    #background-color: tomato;
}

h1 {
    text-align: center;
}

.nav {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    text-align: center;
}
.nav-item {
    display: inline-block;
    margin: 0 10px;;
}

.image {
    width: 400px;
    height: 400px;
}

.small-image img {
    width: 200px;
    height: 200px;
}

aside {
    float: left;
    width: 200px;
}

main {
    float: left;
    display: flex;
    width: 1000px;
    //height: 500px;
    flex-wrap: wrap;
}

footer {
    clear: left;
    display: flex;
    justify-content: center;
}

.pagination {

}

.dropdown1{
    display: relative;
}
.dropdown-content1 {
    display: none;
    position: absolute;
    background-color: tomato;
}

.dropdown1:hover .dropdown-content1{
    display: block;
    color: blue;
}

.my-button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    will-change: transform;
}
.my-button:hover:not(.disabled){
    fill: tomato;
    //box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
    transform: translateY(-2px);
}

.my-button:focus {
    outline: none;}

.my-button > svg {
    width: 20px;
    height: 20px;
}

.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Item style*/

.buy-button {
    border: 1px solid pink;
    border-radius: 4px;
}

table {
    border-collapse: collapse;
    //border-spacing: 1; if -collapse: separate;
}
table, th, td {
    //border: 1px solid black;
    border-radius:6px;
}
th, td {
    padding: 8px;
    text-align: center;
}
th {
    background-color: #f2f2f2;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

td:hover {
    background-color: #d3d3d3;
}
/* END Item style*/

/* Order style*/
.order {
    padding: 5px;
    border-bottom: 1px solid blue;
    padding-bottom: 5px;
    width:638px;
    /*box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);*/
}

.orders-box{
    display: flex;
    overflow-x: auto;
}

.order-item{
    border: 1px dashed red;
    border-radius: 5px;
    margin: 3px;
    padding: 2px;
}
.order-item:hover {
    /*box-shadow: 10px 10px 5px red,
                -10px -10px 5px blue;*/

    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* END Order style*/

/* Cart style*/

.cartMain{
    width: 100%;
    max-width: 1000px;
    min-width: 365px;
}

.sticky-cart-line{
    display: flex;
    align-items: center;
    line-height: 50px;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    border-radius: 5px;
    position: sticky;
    top:0px;
    background-color: rgba(242, 121, 53, 0.5);
}

.cartItem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-shrink: 1;
    width: 100%;
    border: 1px dashed red;
    border-radius: 5px;
    margin: 3px 0;
    padding: 2px;
    box-sizing: border-box;
}

.cart_checkBox {
    margin: 0 15px;
}

.cart_image img{
    width: 128px;
    height: 128px;
}

.cart_infoBlock {
    width: 170px;
}
.cart_infoBlock p {
    margin: 2px;
}

.cart_interBlock {
    display: flex;
    gap: 5px;
}

.cart_removeBox {
    margin: 0 15px;
}

.button-cart {
    appearance: none;
    background-color: transparent;
    border: 2px solid #1A1A1A;
    border-radius: 12px;
    box-sizing: border-box;
    color: #3B3B3B;
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    line-height: normal;
    margin: 0 10px;
    min-height: 30px;
    min-width: 70px;
    outline: none;
    padding: 6px 12px;
    text-align: center;
    text-decoration: none;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    will-change: transform;
}

.button-cart:disabled {
  pointer-events: none;
}

.button-cart:hover {
  color: #fff;
  background-color: #1A1A1A;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.button-cart:active {
  box-shadow: none;
  transform: translateY(0);
}

.cart_checkBox .cartCheck {
    appearance: none;
    background-color: #dfe1e4;
    border-radius: 72px;
    border-style: none;
    flex-shrink: 0;
    height: 20px;
    margin: 0;
    position: relative;
    width: 30px;
}

.cart_checkBox .cartCheck::before {
    bottom: -6px;
    content: "";
    left: -6px;
    position: absolute;
    right: -6px;
    top: -6px;
}

.cart_checkBox .cartCheck,
.cart_checkBox .cartCheck::after {
    transition: all 100ms ease-out;
}

.cart_checkBox .cartCheck::after {
    background-color: #fff;
    border-radius: 50%;
    content: "";
    height: 14px;
    left: 3px;
    position: absolute;
    top: 3px;
    width: 14px;
}

.cart_checkBox input[type=checkbox] {
    cursor: default;
}

.cart_checkBox .cartCheck:hover {
    background-color: #c9cbcd;
    transition-duration: 0s;
}

.cart_checkBox .cartCheck:checked {
    background-color: #6e79d6;
}

.cart_checkBox .cartCheck:checked::after {
    background-color: #fff;
    left: 13px;
}

.cart_checkBox :focus:not(.focus-visible) {
    outline: 0;
}

.cart_checkBox .cartCheck:checked:hover {
    background-color: #535db3;
}

/* END Cart style*/