#е-stock .nav-tab-active{
    background-color: #fff;
}
#е-stock .tab-content{
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #fff;
    border-left: 1px solid #c3c4c7;
    border-right: 1px solid #c3c4c7;
    border-bottom: 1px solid #c3c4c7;
}
#е-stock .e-stock-error {
    color: red;
    font-size: 16px;
}
div.e-stock-error {
    font-size: 14px !important;
    padding-top: 5px;
}
#е-stock .e-stock-message{
    color: #009f00;
    font-size: 16px;
}
/*e-stock icons*/
.e-stock-icon {
    display: inline-block;
    border-radius: 50%;
    color:#fff;
    width: 14px;
    height: 14px;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    font-weight: bold;
}
.e-stock-icon.e-stock-icon-remove {
    border: 1px solid indianred;
    background-color: red;
}
.e-stock-icon.e-stock-icon-check {
    border: 1px solid green;
    background-color: limegreen;
}
.e-stock-icon.e-stock-external-link {
    background-size: contain !important;
    background: url("images/external_icon.png") no-repeat center center;
    width: 18px;
    height: 18px;
    margin-right: 4px;
}
/*e-Stock tooltips*/
.e-stock-tooltip {
    position: relative;
    display: inline-block;
    border: 1px solid #0660bb;
    border-radius: 50%;
    background-color: #2db1f1;
    color:#fff;
    width: 14px;
    height: 14px;
    font-size: 14px;
    line-height: 14px;
    text-align: center;
    font-weight: bold;
}

.e-stock-tooltip .tooltip-text {
    visibility: hidden;
    width: 300px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: -125%;
    left: 50%;
    margin-left: 20px;
    opacity: 0;
    transition: opacity 0.3s;
    font-weight: normal;
    font-size: 14px;
}

.e-stock-tooltip .tooltip-text::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.e-stock-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}
/*==================*/
/*global classes*/
.e-stock-center {
    text-align: center;
}
.no-border {
    border: none !important;
}
/*Primary button*/
.e-stock-form-btn {
    border: 1px solid #0660bb;
    border-radius: 3px;
    background-color: #0660bb;
    color:#fff !important;
    cursor: pointer;
    padding: 5px 7px;
}
.e-stock-form-btn:hover {
    background-color: #2db1f1 !important;
}
/*Grid*/
.e-stock-grid-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.e-stock-grid-col-6 {
    display: inline-block;
    width: 50%;
}
.e-stock-grid-col-12{
    display: inline-block;
    width: 100%;
}
.e-stock-form-btn-danger{
    border: 1px solid #bb0615 !important;
    background-color: #aa0512 !important;
}
.e-stock-form-btn-danger:hover {
    background-color: #f12d4a !important;
}
.e-stock-form-btn-secondary{
    border: 1px solid #8e8b8b !important;
    background-color: #797777 !important;
}
.e-stock-form-btn-secondary:hover {
    background-color: #aca9aa !important;
}
/*Form*/
.e-stock-form {
    width: 80%;
    display: inline-block;
    text-align: left;
    border: 3px double #c3c4c7;
    padding: 15px 30px;
}
.e-stock-form .e-stock-form-title-row{
    text-align: center;
    margin-bottom: 10px;
    color: #0660bb;
    font-weight: bold;
}
.e-stock-form .e-stock-form-row{
    width: 100%;
    margin-bottom: 15px;
}
.e-stock-form .e-stock-form-row label{
    width: 100%;
}
.e-stock-form .e-stock-form-row label > span{
    width: 100%;
    display: inline-block;
    margin-bottom: 5px;
}
.e-stock-form .e-stock-form-row label > input[type="text"],
.e-stock-form .e-stock-form-row label > input[type="email"],
.e-stock-form .e-stock-form-row label > input[type="password"],
.e-stock-form .e-stock-form-row label > select{
    width: 100%;
}
/*Tables*/
.e-stock-table{
    width: 100%;
    border: 3px double #c3c4c7;
}
.e-stock-table thead tr:last-child th{
    border-bottom: 3px double #c3c4c7;
    padding: 10px 10px;
}
.e-stock-table tbody tr td{
    border-bottom: 1px solid #c3c4c7;
    padding: 10px 5px;
}
.e-stock-table tfoot tr td{
    padding: 5px 5px;
}
.e-stock-table tfoot tr td button{
    margin-right: 10px;
}
/*Product list*/
#е-stock .e-stock-product-list{
    margin-bottom: 15px;
}