@import 'custom/dropdown.css';

.color-primary .select2-results__option[aria-selected=true] {
    background-color: #2196F3;
    color: #fff;
}

.color-danger .select2-results__option[aria-selected=true] {
    background-color: #F44336;
    color: #fff;
}

.color-warning .select2-results__option[aria-selected=true] {
    background-color: #FF5722;
    color: #fff;
}

.color-success .select2-results__option[aria-selected=true] {
    background-color: #4CAF50;
    color: #fff;
}

.color-info .select2-results__option[aria-selected=true] {
    background-color: #00BCD4;
    color: #fff;
}

.text-muted {
    color: #707070;
}

.popover .arrow {
    display: block;
}

.companyPopover {
    min-width: 400px;
}


.select2-container--focus .color-primary:not([class*=bg-]):not([class*=border-]) {
    border-bottom-color: #2196F3;
    -webkit-box-shadow: 0 1px 0 #2196F3;
    box-shadow: 0 1px 0 #2196F3;
}

.select2-container--open .color-primary:not([class*=bg-]):not([class*=border-]) {
    border-bottom-color: #2196F3;
    -webkit-box-shadow: 0 1px 0 #2196F3;
    box-shadow: 0 1px 0 #2196F3;
}

.select2-container--focus .color-danger:not([class*=bg-]):not([class*=border-]) {
    border-bottom-color: #F44336;
    -webkit-box-shadow: 0 1px 0 #F44336;
    box-shadow: 0 1px 0 #F44336;
}

.select2-container--open .color-danger:not([class*=bg-]):not([class*=border-]) {
    border-bottom-color: #F44336;
    -webkit-box-shadow: 0 1px 0 #F44336;
    box-shadow: 0 1px 0 #F44336;
}

.select2-container--focus .color-success:not([class*=bg-]):not([class*=border-]) {
    border-bottom-color: #4CAF50;
    -webkit-box-shadow: 0 1px 0 #4CAF50;
    box-shadow: 0 1px 0 #4CAF50;
}

.select2-container--open .color-success:not([class*=bg-]):not([class*=border-]) {
    border-bottom-color: #4CAF50;
    -webkit-box-shadow: 0 1px 0 #4CAF50;
    box-shadow: 0 1px 0 #4CAF50;
}

.select2-container--focus .color-warning:not([class*=bg-]):not([class*=border-]) {
    border-bottom-color: #FF5722;
    -webkit-box-shadow: 0 1px 0 #FF5722;
    box-shadow: 0 1px 0 #FF5722;
}

.select2-container--open .color-warning:not([class*=bg-]):not([class*=border-]) {
    border-bottom-color: #FF5722;
    -webkit-box-shadow: 0 1px 0 #FF5722;
    box-shadow: 0 1px 0 #FF5722;
}

.select2-container--focus .color-info:not([class*=bg-]):not([class*=border-]) {
    border-bottom-color: #00BCD4;
    -webkit-box-shadow: 0 1px 0 #00BCD4;
    box-shadow: 0 1px 0 #00BCD4;
}

.select2-container--open .color-info:not([class*=bg-]):not([class*=border-]) {
    border-bottom-color: #00BCD4;
    -webkit-box-shadow: 0 1px 0 #00BCD4;
    box-shadow: 0 1px 0 #00BCD4;
}


.select2-selection--multiple:not([class*=bg-]):not([class*=border-]) {
    border-bottom-color: #ddd;
}

.color-primary:not([class*=bg-]) .select2-selection__choice:hover {
    background-color: #03A9F4;
}

.color-primary:not([class*=bg-]) .select2-selection__choice:focus {
    background-color: #03A9F4;
}

.color-danger:not([class*=bg-]) .select2-selection__choice:hover {
    background-color: #F44336;
}

.color-danger:not([class*=bg-]) .select2-selection__choice:focus {
    background-color: #F44336;
}

.color-warning:not([class*=bg-]) .select2-selection__choice:hover {
    background-color: #FF5722;
}

.color-warning:not([class*=bg-]) .select2-selection__choice:focus {
    background-color: #FF5722;
}

.color-info:not([class*=bg-]) .select2-selection__choice:hover {
    background-color: #00BCD4;
}

.color-info:not([class*=bg-]) .select2-selection__choice:focus {
    background-color: #00BCD4;
}

.color-success:not([class*=bg-]) .select2-selection__choice:hover {
    background-color: #4CAF50;
}

.color-success:not([class*=bg-]) .select2-selection__choice:focus {
    background-color: #4CAF50;
}

.break-word {
    word-wrap: break-word;
}

.btn-xxs {
    padding: 5px 10px;
    font-size: 10px;
}

.btn-xxs i {
    font-size: 10px;
}

.btn-xxs b {
    font-size: 10px;

}

.btn-labeled.btn-xxs {
    padding-left: 36px;
}

.btn-labeled.btn-xxs b {
    padding: 8px 8px;
}

.empty-value {
    color: #b2b2b2
}

.editable-textarea {
    height: 100px;
    overflow: hidden;
    padding: 10px;
    padding-right: 40px;
    position: relative;
    color: #707070;

}

.editable-textarea-box {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
    opacity: 0;
    -webkit-transition: opacity 200ms ease-in 0ms;
    transition: opacity 200ms ease-in 0ms;
}

.editable-textarea:hover .editable-textarea-box {
    opacity: 1;
}


.editable-textarea-icon {
    width: 30px;
    padding: 7px;
    position: absolute;
    top: 0;
    right: 0;
    background: #ddd;
    height: 100%;
    color: white;


}

.editable-textarea-icon i {
    top: 35%
}

.textarea {
    min-height: 100px
}

.form-control:focus {
    border-bottom-color: #2196F3;
    -webkit-box-shadow: 0 1px 0 #2196F3;
    box-shadow: 0 1px 0 #2196F3;
}

.btnSpan {
    position: relative;
}

.btnSpan .badge {
    position: absolute;
    top: auto;
    bottom: -16px;
    right: 3px;
    padding: 1px 5px;

}

.badge-primary {
    background-color: #2196F3 !important;
    border-color: #2196F3;
}

.document-img {
    padding: 5px 5px !important;
}

.dms-textarea {
    min-height: 125px;
    resize: vertical;
}

.word-break {
    word-break: break-all;
}

@media (max-width: 1024px) {
    .mobile-hide {
        display: none;
    }
}

.navbar-nav span[role=button] > a {
    padding: 15px;
    display: inline-block;
    line-height: 20px;
    color: #333333;
}

.navbar-nav > .start-nav.active {
    border-bottom: 2px solid #7986CB;
}

a {
    color: rgb(51, 51, 51);
}

button.bg-transparent {
    background: none;
    padding: 2px;
}

button.bg-transparent:hover {
    background: none;
    color: initial;
}

.btn[class*=bg-transparent]:hover, .btn[class*=bg-transparent]:focus, .btn[class*=bg-transparent].focus {
    color: #333;
}

.align-left {
    text-align: left;
}

.align-right {
    text-align: right;
}

.table thead .sortable {
    cursor: pointer;
    position: relative;
    outline: 0;
}

.table thead .sortable:before, .table thead .sortable:after {
    content: '';
    font-family: 'icomoon';
    position: absolute;
    top: 50%;
    right: 20px;
    font-size: 12px;
    margin-top: -6px;
    display: inline-block;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.table thead .sortable:before {
    content: '\e9c1';
    margin-top: -2px;
    color: #999999;
}

.table thead .sortable:after {
    content: '\e9c2';
    margin-top: -10px;
    color: #999999;
}

.table thead .sortedASC:after {
    content: '\e9c1';
    color: #333;
    margin-top: -6px;
}

.table thead .sortedASC:before {
    content: '';
}

.table thead .sortedDESC:after {
    content: '\e9c2';
    color: #333;
    margin-top: -6px;
}

.table thead .sortedDESC:before {
    content: '';
    color: #333;
}

.center {
    text-align: center;
}

.simple-form-group {
    margin-top: 15px;
}

.simple-form-group .checkbox {
    margin: 0;
}

.checkbox-col .checkbox {
    margin: 0;
}

.nav-tabs {
    margin-bottom: -1px;
}

td[role=leftlink] {
    padding: 0 0 !important;
}

td[role=leftlink] > a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 12px 20px;

}

.navbar-brand {
    height: auto;
    padding: 5px 20px;
}

.navbar-brand .portal-logo {
    height: 80px;
}

.portal-topmenu {
    padding-top: 20px;
}

.portal-topmenu a:hover {
    color: rgb(51, 51, 51);
}

.portal-topmenu li a {
    font-size: 20px;
}

.portal-topmenu li.active {
    border-bottom: 2px solid #1565c0;
}

.portal-footer {
    background-color: #303030;
    margin-top: 20px;
    color: silver;
}

.portal-second-footer {
    background-color: #101010;
    color: silver;
}

.portal-second-footer a {
    color: silver;
}

.portal-footer a {
    color: silver;
}

.portal-footer-black a {
    color: black;
}

.panel-title {
    border-bottom: 1px solid #cecece;
    padding-bottom: 5px;
}

.document-sidebar {
    display: block;
    padding-right: 0;
    width: auto;
}

.media-logo {
    width: 60px;
    padding: 5px
}

.chat-logo {
    width: 40px;
    padding: 5px
}

.media {
    padding-top: 10px;
}

.category-title span {
    font-size: 13px !important;
}

.chat .media {
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #ddd;
}

.new-message {
    margin-top: 20px !important;
    border-bottom: none !important;
}


.items-table tbody tr td.text-muted:hover {
    color: #333333;
}

.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
    padding: 12px 10px;
}

.items-table > tbody + tbody {
    border-top: none;
}

.items-table tbody tr:nth-child(n+1) td {
    border: none;
    padding-top: 0px
}

.items-table tbody tr:first-child td {
    padding-bottom: 0px;
    padding-top: 5px;
    vertical-align: top;
}

.items-table tbody tr:first-child {
    border-top: 2px solid #ddd;
}

.items-table tbody.dotted tr:first-child {
    border-top: 1px solid #eee;
}

.summary-list {
    margin-top: 12px;
}

.summary-list > tbody > tr > td {
    padding: 5px 10px;
    border-top: none;
}

.subcount {
    background-color: #CDE7CD;
}

.summary-finalPrices > tbody > tr > td {
    padding: 5px 10px;
    border-top: none;
    /*background-color: #FFF3E0;*/
    /*background-color: #DCFFE2;*/
}

.head-border-dashed {
    border-top: dashed 1px;
}

@media (min-width: 768px) {
    .head-border-left-dashed {
        border-left: dashed 1px;
    }
}

.head-title {
    font-size: 15px;
    font-weight: 500;
}

.same-col-height {
    display: flex;
}


.quotation-menu {
    background-image: url(../images/menu/menu-quotation-background.png);
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    height: 200px;
}

.product-menu {
    background-image: url(../images/menu/menu-product-background.png);
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
}

.dashboard-tile > .panel-heading > h6 {
    border-bottom: none;
    font-size: 20px;
}

.task-menu {
    background-image: url(../images/menu/menu-task-background.png);
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    height: 200px;
}

.contact-menu {
    background-image: url(../images/menu/menu-contact-background2.png);
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    height: 200px;
}

.order-menu {
    background-image: url(../images/menu/menu-order-background.png);
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    height: 200px;
}

.invoice-menu {
    background-image: url(../images/menu/menu-invoice-background.png);
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    height: 200px;
}

.warehouse-menu {
    background-image: url(../images/menu/menu-warehouse-background.png);
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    height: 200px;
}

.other-menu {
    background-image: url(../images/menu/menu-other-background.png);
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    height: 200px;
}


.document-end-state {
    background-color: rgb(0, 128, 0);
    color: white;
    font-weight: normal;
    margin-bottom: 4px;
    margin-top: 4px;
}

.document-progress-state {
    background-color: rgb(255, 255, 196);
    font-weight: normal;
    margin-bottom: 4px;
    margin-top: 4px;
}

.stateBox {
    display: inline-block;
    margin-left: 4px;
    margin-right: 4px;
    padding: 8px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.page-selected {
    margin: 3px;
    background-color: #C1BFB7;
    padding: 6px;
    -webkit-border-radius: 1px;
}

.product-toolbox {
    padding-bottom: 5px;
    margin-bottom: 5px;
}
.input-group.inline{
    display: inline-table;
    margin-left: 50px;
}
.input-group.inline label{
    display: table-cell;
    padding-right: 15px;
}

.product-thumb {
    height: 280px;
    position: relative;
}

.product-thumb img {
    max-width: 100% !important;
    max-height: 100%;
    height: auto;
    width: auto !important;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.product-name {
    height: 2.5em;
    line-height: 1.3;
    overflow: hidden;
}

.product-info {
    height: 18px;
    overflow: hidden;
}

.pagination li {
}

.pagination li .btn-sm {
    padding: 5px 10px;
    border-radius: 0;
    background: #eee;
    color: #333;
}

.search-icon {
    width: 13px;
    margin-right: 8px;
    margin-left: 0;
}

.login-form {
    margin: 0 auto 0 auto;
    max-width: 400px;
}

.type-tile > .row {
    border: 3px solid #aaa;
    padding: 10px;
    margin: 8px;
    cursor: pointer;
    height: 90%;
}

.type-tile {
    float: left;
    width: 250px;

}

.type-tile > .row.active {
    border: 3px solid black;
}

.product-pictures img {
    width: 100%;
}

.product-pictures > div[class*=col-] {
    padding-left: 5px;
    padding-right: 5px;
}

.product-pictures {
    position: relative;
    margin-top: 5px;
}

.product-pictures > .ril__navButtons {
    z-index: 1;
    padding: 35px 20px;
}

.product-pictures > .ril__navButtonPrev {
    left: -7px;
}

.product-pictures > .ril__navButtonNext {
    right: -7px;
}

.contact-name {
    white-space: nowrap;
}

.company-name {
    white-space: nowrap;
    font-size: 10px;
    line-height: 12px;
}

.sidebar-category {
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.cat-thumb {
    height: 40px;
}

.cat-title {
    padding-left: 20px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

}

.cat-thumb img {
    max-width: 100% !important;
    max-height: 100%;
    height: auto;
    width: auto !important;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.topbar {
    z-index: 1000;
}

.rbt {
    background: white;
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
    min-width: 320px;
}

.navbar-nav > .dropdown-user img {
    max-height: 40px;
    background: white;
}

.material-input {
    padding: 0 10px;
    border-width: 1px;
    background: white;
    border-color: #ddd;
}

.form-group-material {
    margin-bottom: 0;
}

.material-input:focus {
    border-bottom-color: #ddd;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.breadcrumb-line {
    border-bottom: 1px solid #ddd;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.product-carousel .slide div {
    height: 400px;
    position: relative;
}

.product-carousel .slide div img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.product-carousel .thumb {
    height: 50px;
    position: relative;
}

.product-carousel .thumb img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.carousel .slide {
    background: white !important;
}

.carousel .thumb.selected, .carousel .thumb:hover {
    border: 1px solid #ddd !important;
}

.carousel.carousel-slider .control-arrow {
    top: 40% !important;
    bottom: 40% !important;
}

.carousel .control-arrow, .carousel.carousel-slider .control-arrow {
    background: #929191 !important;
}

.nav.nav-tabs.product-tabs {
    margin-bottom: 20px;
}

.nav.nav-tabs.product-tabs:before {
    display: none;
}



@media (min-width: 769px) {
    .sidebar-fixed .sidebar-content {
        position: fixed;
        width: 260px;
        max-height: 100%;
        overflow: auto;
        padding-top: 60px;
        top: 0px;
        bottom: 50px;
        margin-bottom: -50px;
        height: 100%;
    }

    .sidebar-xs .sidebar-fixed.sidebar-main .sidebar-content {
        width: 56px;
    }

    .sidebar-fixed.sidebar-default .sidebar-content {
        width: 260px;
    }

    .sidebar-fixed-expanded .sidebar-fixed.sidebar-main {
        position: fixed;
        display: block;
        height: 100%;
        z-index: 1001;
    }

    .sidebar-fixed-expanded .sidebar-fixed.sidebar-main .sidebar-content {
        position: fixed;
    }

    .sidebar-xs .sidebar-fixed-expanded .sidebar-fixed.sidebar-main {
        width: 260px;
    }

    .sidebar-fixed-expanded .content-wrapper {
        padding-left: 56px;
    }
}

.sidebar-xs-indicator .sidebar-fixed .sidebar-content {
    top: 0 !important;
}

.price {
    margin-top: 20px;
}

.main-price {
    font-size: 20px;
    font-weight: 600;
}

.dms-table-link {
    display: inline-block;
    height: 100%;
    width: 100%;
    padding: 20px 0;
    min-height: 50px;
}

.basketPopover {
    min-width: 500px;
}

.modal {
    text-align: center;
    padding: 0 !important;
}

.modal:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -4px;
}

.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}

.basket-pop {
    left: unset !important;
    right: 9px;
    top: 59px;
    border-top-right-radius: 0;
    width: 550px;
    padding: 20px;
    position: absolute;
    background: white;
    z-index: 9999;
    border: 1px solid #bbb;
    border-radius: 6px;
    border-top-right-radius: 0;
    webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);

}

.type-select {
    height: 18px;
    border-color: #ddd;
    width: 100%
}

.sidebar-fix {
    position: fixed;
    height: 100%;
    width: 280px;
    margin-bottom: -48px;
    padding-bottom: 35px;
}

.speech-bubble-left {
    position: relative;
    border-radius: .4em;
    padding: 5px 10px 5px 10px;
    max-width: 100%;
    overflow-wrap: break-word;
}

.speech-bubble-left:after {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-right-color: inherit;
    border-left: 0;
    margin-top: -8px;
    margin-left: -8px;
}

.speech-bubble-right {
    position: relative;
    border-radius: .4em;
    padding: 5px 10px 5px 10px;
    max-width: 100%;
    overflow-wrap: break-word;
}

.no-wrap {
    white-space: nowrap;
}
.breadcrumb-line {
    z-index: 50!important;
}
.speech-bubble-right:after {
    content: '';
    position: absolute;
    right: 0;
    top: 15px;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-left-color: inherit;
    border-right: 0;
    margin-top: -8px;
    margin-right: -8px;
}

.form-control[disabled], fieldset[disabled] .form-control {
    border-bottom-style: solid;
    color: #333;
}

.form-control[disabled], fieldset[disabled] .form-control {
    cursor: auto;
}

.search-dropdown {
    display: table;
    margin-top: -5px;
}
.top-basket{
    font-size: 15px;
}

.rbt-aux {
    display: table-cell;
}

button.close {
    width: 15px;
    display: flex;
}

@media (max-width: 768px) {
    .search-dropdown ul {
    width: fit-content !important;
    left: unset !important;
    min-width: inherit !important;right: 15px;
        max-width: 100vw;
    }
}
@media (min-width: 769px){
    .search-dropdown ul{
        width: fit-content!important;
        left: unset!important;
        min-width: inherit!important;
    }
}

.search-dropdown ul li {
    width: 100%;
}
.search-dropdown input{
    height: 30px;
}

.modal-open {
    overflow: scroll !important;
    padding-right: unset !important;
}

.z-index999 {
    z-index: 999;
}

.payment-modal .modal-dialog {
    width: 750px;
}
.search-popup{
    position: absolute;
    margin-top: 18px;
    right: -100px;
    webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.search-popup input{
    border-bottom: 0;
}

@media (min-width: 768px) {
    .flexCol {
        display: flex;
        display: -webkit-flex;
        flex-wrap: wrap;
    }
}

@media (min-width: 768px) {
    .cs-align-right {
        text-align: right;
    }
}


.product-autocomplete .rbt{
    min-width:100px;
}

@media (max-width: 768px) {
    .nav-tabs:before {
        display:none
    }
}

.equal-heights{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}
.td-main{
    position:relative;
    padding-left: 30px!important;
}
.picture-wrapper{
    position:relative;
    min-height: 100px;
 }
.discount {
    position: absolute;
    left: -5px; top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 75px; height: 75px;
    text-align: right;
}
.discount span {
    font-size: 10px;
    font-weight: bold;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    width: 100px;
    display: block;
    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
    position: absolute;
    top: 19px; left: -21px;
}
.discount span::before {
    content: "";
    position: absolute; left: 0px; top: 100%;
    z-index: -1;
    border-left: 3px solid black;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid black;
}
.discount span::after {
    content: "";
    position: absolute; right: 0px; top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid black;
    border-bottom: 3px solid transparent;
    border-top: 3px solid black;
}

.mobile-homepage-card {
    -webkit-box-shadow: 3px 3px 5px 0px rgba(140,140,140,1);
    -moz-box-shadow: 3px 3px 5px 0px rgba(140,140,140,1);
    box-shadow: 3px 3px 5px 0px rgba(140,140,140,1);
    background-color: white;
    border-radius: 5px;
    margin-bottom: 5px;
    width: 100%
}

.mobile-qr-button {
    -webkit-box-shadow: 3px 3px 5px 0px rgba(140,140,140,1);
    -moz-box-shadow: 3px 3px 5px 0px rgba(140,140,140,1);
    box-shadow: 3px 3px 5px 0px rgba(140,140,140,1);
    background-color: white;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 0;
}

.mobile-homepage-card-button {
    -webkit-box-shadow: 3px 3px 5px 0px rgba(140,140,140,1);
    -moz-box-shadow: 3px 3px 5px 0px rgba(140,140,140,1);
    box-shadow: 3px 3px 5px 0px rgba(140,140,140,1);
    background-color: white;
    border-radius: 5px;
    margin-bottom: 10px;
    width: 100%
}

.scan-barcode {
    background-image: url("icons/svg/barcode.svg");
    background-size: contain;
    background-position: center;
    height: 150px;
    background-repeat: no-repeat;
    width: 150px!important;
}

.panel[class*=bg-] .table-striped > tbody > tr:nth-child(odd),
.table-striped > tbody > tr:nth-child(odd) {
     background-color: #f5f4f4 !important;
 }

.floating-label-container{
    padding-top: 5px;
}

.floating-label-container > span {
    position: absolute;
    left: 10px;
    top: 15px ;
    font-size: 13px;
    color: #6e6e6e;
    -webkit-transition: top 0.5s, font-size 0.5s, color 0.5s;
    -moz-transition: top 0.5s, font-size 0.5s, color 0.5s;
    -ms-transition: top 0.5s, font-size 0.5s, color 0.5s;
    -o-transition: top 0.5s, font-size 0.5s, color 0.5s;
    transition: top 0.5s, font-size 0.5s, color 0.5s;
}
.floating-label-container > span.active {
    position: absolute;
    left: 10px;
    top: 2px ;
    font-size: 10px;
    color: #000;
    -webkit-transition: top 0.5s, font-size 0.5s, color 0.5s;
    -moz-transition: top 0.5s, font-size 0.5s, color 0.5s;
    -ms-transition: top 0.5s, font-size 0.5s, color 0.5s;
    -o-transition: top 0.5s, font-size 0.5s, color 0.5s;
    transition: top 0.5s, font-size 0.5s, color 0.5s;
}
@media (max-width: 1024px) {
    .modal-lg {
        width: 90%;
    }
    .media-list .link {
        margin: 10px 0;
        font-size: 16px;
        padding:2px 5px;
        border: 1px solid #dddddd;
        border-radius: 5px;
        background: #dddddd5c;
    }
    .order-menu {
        height: 250px;
    }
    .warehouse-menu {
        height: 250px;
    }
}

.ean-camera {
    font-size: 25px;
    top: 0;
    bottom: 0;
    margin: auto;
    margin-right: 20px;
    margin-bottom: 9px;
}

.heading-elements-icons {
    position: absolute;
    top: 40%;
    right: 20px;
}

@media (min-width: 770px) {
    .heading-elements-icons {
        display: none;
    }
    .language-flag{
        font-size: 20px;
    }

}

#comgate-container {
    display: none;
    position:absolute;
    z-index: 9999;
    left: 50%;
    top: 30px;
    overflow: auto;
    margin-left: -250px;
}
#comgate-iframe {
    width: 504px;
    height: 679px;
}
@media (max-height: 700px) {
    #comgate-iframe {
        top: 0px
    }
}
.form-control-bordered{
    padding-left: 16px;
    padding-right: 16px;
    border-width: 1px 1px;
    border-color: #868686;
    border-radius: 3px;
    max-width: 100%;
}

.form-control-bordered:focus{
    border-color: #868686;
}

.obadge{
    padding: 5px 8px 3px 8px;
    font-size: 13px;
    border-radius: 9px;
}
.has-error{
    border-color: #D84315;
}
.has-error.help-block{
    color:#D84315;
}
.mobile-icon i{
    font-size: 20px;
}
.mobile-icon a{
    font-size: 16px;
}
@media (max-width: 768px) {
    .page-container {
        top: 50px;
    }
}

.navbar-top .navbar-header {
    float: left;
}
.navbar-top  .navbar {
    padding-left: 20px;
    padding-right: 20px;
}
.navbar-top  .navbar-nav > li {
    float: left;
}
.navbar-top  .secondary-menu {
    padding-top: 5px;
}
@media (min-width: 769px) {
    .navbar-top .secondary-menu > ul {
        padding-top: 10px;
    }
}
@media (min-width: 1025px) {
    .navbar-top  .secondary-menu li{
        margin-left: 20px;
    }
}
.navbar-top  .secondary-menu li{
    margin-left: 15px;
}

.navbar-header .navbar-nav > li > a {
    padding-left: 0px;
    padding-right: 15px;
}
.navbar-top .navbar {
    padding-left: 14px;
    padding-right: 0px;
}
@media (min-width: 769px) {
    .navbar-top .navbar {
        padding-left: 15px;
        padding-right: 15px;
    }
}

input[type=number]{
    min-width: 60px;
}
.search-dropdown ul {
    right: 0;
}