a,
.link {
    color: #2b5f60;
    color: var(--primary);
    background-color: transparent;
    border: none;
    box-shadow: none;
    font-size: 14px;
    text-decoration: none;
    transition: all .5s;
}

a:hover,
.link:hover {
    transition: all .5s ease-in;
}

a:active,
a:hover,
.link:hover,
.link:active {
    outline-width: 0;
}

a:hover,
.link:hover {
    color: var(--dark-primary)
}

a:focus {
    color: var(--light-primary)
}

.btn {
    font-size: 14px;
}

.login-container .link {
    position: absolute;
    right: 0;
    top: 10px;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateZ(0);
    box-shadow: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    border-radius: 5px;
    padding: 6px 15px;
}

.btn-primary:hover {
    background-color: var(--dark-primary);
    border-color: var(--dark-primary);
    box-shadow: none;
}

.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled):active {
    background-color: var(--light-primary);
    border-color: var(--light-primary);
    box-shadow: none !important;
}

.btn-secondary {
    background-color: var(--white);
    border-color: var(--white);
    transform: translateZ(0);
    box-shadow: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    border-radius: 5px;
    padding: 6px 15px;
}

.btn-secondary:hover {
    background-color: var(--light-gray);
    border-color: var(--light-gray);
    box-shadow: none;
      color: var(--dark-primary);
}

.btn-secondary:focus,
.btn-secondary:not(:disabled):not(.disabled):active {
    background-color: #ececec;
    border-color:#ececec;
    box-shadow: none !important;
          color: var(--light-primary);
}

.btn-light-login {
    align-items: center;
    display: flex;
    justify-content: center;

    transform: translateZ(0);
    background-color: #2b5e5e0f !important;
    border-color: #2b5e5e0f !important;
}

.btn-light-login:hover {
    background-color: #2b5e5e1a !important;
    border-color: #2b5e5e1a !important;
}

.btn-light {
    align-items: center;
    display: flex;
    justify-content: center;

    transform: translateZ(0);
    background-color: #ffffff0f !important;
    border-color: #ffffff0f !important;
    color: white;
    padding: 6px 15px;
    font-size: 14px;
    font-weight: 500;
}

.btn-tertiary {
    background-color: transparent;
    border-color: transparent;

    transform: translateZ(0);
    box-shadow: none;
    color: var(--primary);
    padding: 6px 15px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
}

.btn-red {
    background-color: var(--yellow);
    padding: 8px 10px;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    border: 1px solid var(--yellow);
    color: #162b16;
    border-radius: 0;
    padding: 6px 15px;
    border-radius: 5px;
}

.btn-nalog {
    width: 100%;
    background-color: transparent;
    border-color: transparent;

    transform: translateZ(0);
    box-shadow: none;
    color: var(--primary);
    text-align: left;
    padding: 6px 15px;
    border-radius: 5px;
}

.btn-nalog:hover {

    transform: translateZ(0);
    background-color: #2b5e5e0f !important;
    border-color: #2b5e5e0f !important;
    color: var(--primary);
    text-align: left;
}

.btn-nalog.active {
    background-color: var(--primary);
    border-color: var(--primary);

    transform: translateZ(0);
    box-shadow: none;
    font-size: 14px;
    color: white;
    padding: 6px 15px;
    text-align: left;
    border-radius: 5px;
}

.button-icon i {
    background-color: transparent;
    border: none;
    box-shadow: none;
    color: var(--icon-color);
    font-size: 12px;
}

.button-icon:hover i {
    color: var(--primary);
    text-decoration: none !important;
}

.buttons-group {
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
    margin: 5px;
    margin-top: 20px !important;
}

.quantity {
    width: 30%;
    display: flex;
}

.element {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.button {
    background-color: var(--white);
    border: var(--border);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 38px;
    width: 30px;
    position: relative;
}

.button-minus {
    border-right: none;
    border-radius: 5px 0 0 5px;
}

.button-plus {
    border-left: none;
    border-radius: 0 5px 5px 0;
}

.quantity-field {
    position: relative;
    height: 38px;
    text-align: center;
    width: 85px;
    display: inline-flex;
    font-size: 14px;
    resize: vertical;
    background: #fff;
    color: var(--dark-text);
    padding: 5px;
    border: var(--border);
    border-left: none !important;
    border-right: none !important;
}

#list .buttons-group .btn-primary {
    width: 30%;
}

.spinner-border {
    border: 0.25em solid var(--primary);
}

.view-buttons {
    display: inline-flex;
}

td .buttons-group {

    margin: 0;
    margin-top: 0px;
    margin-top: 0px !important;
}


td .buttons-group .btn-primary {
    padding: 5px;
}

td .quantity-field {
    width: 55px;
}