﻿.plus::after {
    content: "";
    position: absolute;
    top: 16px;
    left: 40%;
    width: 20%;
    height: 3px;
    transform: rotate(90deg);
    background-color: #575f68;
}

.plus, .minus {
    position: relative;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border: 1px solid #405763;
}

.quantity {
    white-space: nowrap;
}

.plus::after, .plus::before, .minus::before {
    content: "";
    width: 15px;
    height: 1px;
    background: #405763;
    position: absolute;
    left: 7px;
    top: 13px;
}

.plus::after, .plus::before, .minus::before {
    content: "";
    width: 15px;
    height: 1px;
    background: #405763;
    position: absolute;
    left: 7px;
    top: 13px;
}

.qty-input {
    width: 60px;
    border: 1px solid #405763;
    color: #405763;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    font-size: 16px;
    height: 30px;
    box-shadow: unset;
}

#table-data {
    border-bottom: none;
}

#categoryList {
    padding-top: 20px;
}

#button {
    display: block;
    margin: 20px auto;
    padding: 10px 30px;
    background-color: #eee;
    border: solid #ccc 1px;
    cursor: pointer;
}

#overlay {
    position: fixed;
    top: 100px;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(50,50,50,0.6);
}

.div-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 1s infinite linear;
}

@keyframes sp-anime {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#categoryList select option:disabled {
    color: #343a40;
    font-weight: bold;
}