/* Задаём границы для таблицы, строк и ячеек */
.unused-discount-products {
    border-collapse: collapse;
    width: 100%;
    font-size: 14px;
}

.unused-discount-products, .unused-discount-products td {
    border: 1px solid grey; 
}

table.unused-discount-products > tbody > tr > td{
    text-align: center !important;
    padding: 5px;
    min-width: 50px;
}

td.discount-product-td{
    font-weight: bold;
}

.discount-product-image{
    width: 100px;
    position: relative;
}

.promo-title-w100 {
    width: 100%;
    margin: 10 auto;
    text-align: center;
}

.promo-title-w80 {
    width: 80%;
    margin: 10 auto;
    text-align: center;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
  }
  
.box {
    /* flex: 1; */ 
    /* margin: 0 5px; */
    /* text-align: justify; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.box1 {
    flex: 0 0 100%;
}

.box2 {
    flex: 0 0 100%;
    height: auto;
    margin-top: 20px;
    font-weight: bold;
}

.box3 {
    flex: 0 0 100%;
    height: auto;
    margin-top: 20px;
    text-align: left;
    color: red;
    text-align: justify;
}

.ol-list {
    margin: 0; 
    padding: 0;
}

.img {
    width: 80px;
}

* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
    margin: 0;
    background-color: #f1f3f4;
    font-family: Roboto,sans-serif;
}
button:focus {
    outline: none;
}
.layout-login {
    min-height: 100vh;
    background-image: url(/images/mainBackgroundLogin.png);
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
}
a {
    text-decoration: none;
}
.layout-login .login-container {
    min-height: 100vh;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
            align-items: center;
}
.layout-login .login-container .main {
    margin-bottom: 5%;

}
.login-form {
    max-width: 425px;
    margin: 0 auto;
    display: block;
    padding: 60px 50px 65px 50px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}
input[type="number"]:hover,
input[type="number"]:focus {
    -moz-appearance: number-input;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/*scrollbar*/

/* width */
::-webkit-scrollbar {
    width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #ebedee;
    border-radius: 3px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #cbd0d3;
    border-radius: 3px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #aab1b5;
}

/* sweetalert Z index */
.swal2-container {
    z-index: 20000 !important;
}

