/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.3.6,
* Autoprefixer: v10.3.1
* Browsers: last 4 version
*/

:root {
    --color-hover: rgba(60, 64, 67, .06);
    --color-dark-text: #202124;
}

body {
    background-color: #F1F3F4;
}

.nowrap {
    white-space: nowrap;
}

.widjet {
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: 60px;
    margin-top: 14px;
}

.widjet__big {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
}

.section-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.section-header__link:not([href]):not([tabindex]),
.section-header__link {
    padding: 8px;
    border-radius: 25px;
    line-height: 1;
    color: #b0b0b0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.section-header__link:first-of-type {
    margin-left: auto;
}

.section-header__link:hover {
    background-color: var(--color-hover);
    color: #808493;
}

.section-header__link:not([href]):not([tabindex]).active,
.section-header__link.active {
    color: var(--color-dark-text);
}

.search-tabs {
    margin-bottom: -1px;
    position: relative;
}

.content-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.content-tabs__item {
    margin: 0 10px;
}

.content-tabs__btn {
    font-size: 14px;
    color: #697386;
    padding: 8px 0 0;
    border: none;
    background-color: transparent;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.content-tabs__btn:hover {
    color: #103540;
}

.content-tabs__btn.current {
    color: #5469D4;
    border-bottom: 2px solid #5469D4;
}

.content-tabs__item:first-of-type {
    margin-left: 15px;
}

.pagination {
    padding: 8px 5px;
    font-size: 14px;
    background-color: #FFFDFD;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 0 0 3px 3px;
    border: 1px solid #DADCE0;
    border-top: 0;
    position: relative;
    min-height: 42px;
    align-items: center;
}

.pagination a:hover {
    color: #000;
    text-decoration: none;
}

.pagination a.active {
    font-weight: 500;
}

.pagination span {
    margin-left: 1rem;
}

.pagination__btn:last-of-type {
    margin: 0 1rem 0 0.5rem;
}

.pagination__btn.disabled {
    border: 1px solid #DADCE0;
    background-color: transparent;
    cursor: default;
    pointer-events: none;
    opacity: 0.5;
    color: #404040;
}

.action__btn,
.pagination__btn {
    border: 1px solid #DADCE0;
    background-color: transparent;
    cursor: pointer;
    color: rgb(60, 66, 87);
    border-radius: 4px;
    padding: 4px 8px;
    font-weight: 500;
    -webkit-box-shadow: 0 1px 1px 0 rgb(0 0 0 / 8%);
    box-shadow: 0 1px 1px 0 rgb(0 0 0 / 8%);
}

.btn-orange .action__btn {
    border-color: #E69E19;
}

.btn-orange .action__btn:hover {
    border-color: #ff771c;
}

.action__btn:hover,
.pagination__btn:hover {
    -webkit-box-shadow: -2px 2px 7px 0 rgb(0 0 0 / 4%);
    box-shadow: -2px 2px 7px 0 rgb(0 0 0 / 4%);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

table.grid_account {
    border: 1px solid #DADCE0;
    color: #36393C;
    font-size: 14px;
    background-color: #fff;
    border-radius: 3px 3px 0 0;
    border-collapse: separate;
    border-spacing: 0;
}

table.grid_account th {
    font-weight: normal;
    text-align: left;
    cursor: pointer;
    color: #828282;
    border-bottom: 1px solid #DADCE0;
    border-top: none;
    white-space: nowrap;
    padding: 8px 7px;
}

table.grid_account th.sortable {
    cursor: pointer;
}

table.grid_account td {
    border-bottom: 1px solid #DADCE0;
    padding: 8px 7px;
}

.col-details {
    position: relative;
    min-width: 40px;
}

.col-details svg {
    display: flex;
    margin: auto;
}

.open .col-details svg {
    transform: rotate(-180deg);
}

table.grid_account .col-rfq a {
    padding: 5px 10px;
    display: block;
    border-radius: 35px;
}

table.grid_account .col-rfq a:hover {
    background-color: var(--color-hover);
}

.sortable__text {
    position: relative;
}

table.grid_account .dirUp,
table.grid_account .dirDown {
    color: var(--color-dark-text);
    text-shadow: 0 0 1px var(--color-dark-text);
}

th.dirUp .sortable__text::after,
th.dirDown .sortable__text::after {
    content: '';
    padding: 7px;
    height: auto;
    background: url(/assets/modules/cabinet_quotes/icons/arrow-left.svg) no-repeat 50% 50%/contain;
    position: absolute;
    top: 50%;
    right: -18px;
    transform: translateY(-50%);
}

th.dirDown.state .sortable__text::after {
    -webkit-transform: rotate(-90deg) translate(50%, 0%);
    -ms-transform: rotate(-90deg) translate(50%, 0%);
    transform: rotate(-90deg) translate(50%, 0%);
    right: -20px;
}

th.dirUp.state .sortable__text::after {
    -webkit-transform: rotate(90deg) translate(-50%, 0% );
    -ms-transform: rotate(90deg) translate(-50%, 0% );
    transform: rotate(90deg) translate(-50%, 0% );
    right: -20px;
}

th.dirDown .sortable__text::after {
    -webkit-transform: rotate(-90deg) translateX(50%);
    -ms-transform: rotate(-90deg) translateX(50%);
    transform: rotate(-90deg) translateX(50%);
}

th.dirUp .sortable__text::after {
    -webkit-transform: rotate(90deg) translateX(-50%);
    -ms-transform: rotate(90deg) translateX(-50%);
    transform: rotate(90deg) translateX(-50%);
}

table.grid_account tbody tr {
    line-height: 16px;
    cursor: pointer;
}

table.grid_account tr:last-child td {
    border-bottom: 0px;
}

.grid_account th.dirUp.state::before,
.grid_account th.dirDown.state::before {
    border-color: var(--color-dark-text);
}

.grid_account__tr:hover {
    background-color: #F7F8F9;
}

table.grid_account .state {
    position: relative;
}

.load-label:hover::before {
    display: block;
}

.col-details::before,
.load-label:hover::before,
.dots::before,
.dots::after,
.state::before {
    content: '';
    border-radius: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.load-label::before {
    padding: 10px;
    background-color: var(--color-hover);
}

table.grid_account th.state::before {
    border: 2px solid #828282;
}

tr.active .state.state-select::before {
    background-color: #32cd32;
}

tr.remove .state.state-select::before {
    background-color: #d74a4a;
}

tr.premium .state.state-select::before {
    background-color: #E69E19;
}

tr.canceled .state.state-select::before {
    background-color: #afafaf;
}

tr.wait .state.state-select::before {
    background-color: #32cd32;
    opacity: 0.3;
}

.state-alert::after {
    content: '';
    width: 20px;
    height: 20px;
    background: url("/assets/modules/cabinet_quotes/icons/bell-alert.svg") no-repeat 50% 50%/contain;
}

.state-alert {
    margin-left: 6px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border-radius: 25px;
}

.load-label,
.grid_account__tr .image img {
    border: 1px solid #DADCE0;
}

.grid_account__tr .image img {
    width: 50px;
    height: auto;
    max-width: 50px;
    max-height: 30px;
    -o-object-fit: cover;
    object-fit: cover;
}

.load-label  {
    width: 50px;
    height: 30px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    cursor: pointer;
}

.offers,
.new-offer {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 25px;
}

.offers:hover,
.new-offer:hover {
    background-color: var(--color-hover);
}

.new-offer {
    margin-right: -25px;
}

.count-offers {
    color: #36393C;
    position: relative;
}

.grid_account__tr .new-offer:hover .count-offers:before {
    bottom: 0;
}

.grid_account .checkbox {
    min-width: 2rem;
    line-height: 16px;
}

.grid_account .checkbox__label {
    width: 15px;
    height: 15px;
    border: 1px solid #BDBDBD;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    border-radius: 2px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    cursor: pointer;
}

.grid_account .not-all .checkbox__input + .checkbox__label,
.grid_account .checkbox__input:checked + .checkbox__label {
    background-color: #008d81;
    border-color: #008d81;
}

.grid_account .checkbox__input:checked + .checkbox__label::before {
    content: '';
    color: #fff;
    margin: auto;
    background: url("/assets/wide/icons/check.svg") no-repeat 50% 50%/contain;
    width: 10px;
    height: 10px;
}

.grid_account .not-all .checkbox__input + .checkbox__label::before {
    content: '';
    margin: auto;
    width: 7px;
    height: 2px;
    background: #fff;
}

.col-number a {
    padding: 5px 10px;
}

.col-number .number {
    margin-left: 3px;
}

.col-number a:hover {
    background-color: var(--color-hover);
    border-radius: 50px;
}

.col-max {
    width: 100%;
}

.prod {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-weight: 500;
    color: var(--color-dark-text);
    text-align: left;
}

.prod__description {
    font-size: 14px;
    font-weight: normal;
    line-height: 0.75rem;
    color: #36393C;
    margin-top: 5px;
}

.volume__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: center;
}

.volume__wrap .nowrap {
    display: flex;
    width: 100%;
}

.volume__wrap span {
    flex-basis: 50%;
    text-align: left;
    flex-shrink: 0;
}

.volume__wrap span:first-of-type {
    text-align: right;
    margin-right: 5px;
}

.dots {
    position: relative;
    cursor: pointer;
}

.dots::after {
    background-color: #7F868B;
    -webkit-box-shadow: 0 6px 0 0 #7F868B, 0 -6px 0 0 #7F868B;
    box-shadow: 0 6px 0 0 #7F868B, 0 -6px 0 0 #7F868B;
    width: 4px;
    height: 4px;
}

.col-details::before,
.dots::before {
    display: none;
    padding: 20px;
    border-radius: 25px;
    background-color: var(--color-hover);
}

.open .col-details::before,
.col-details:hover::before,
.dots.open::before,
.dots:hover::before {
    display: block;
}

.dots:hover::after {
    background-color: #5f6368;
    -webkit-box-shadow: 0 6px 0 0 #5f6368, 0 -6px 0 0 #5f6368;
    box-shadow: 0 6px 0 0 #5f6368, 0 -6px 0 0 #5f6368;
}

.dots__menu {
    display: none;
    padding: 4px 0;
    background: #FFF;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    border-radius: 6px 0 6px 6px;
    position: absolute;
    top: 50%;
    right: 90%;
    -webkit-transform: translate(0%, 10px);
    -ms-transform: translate(0%, 10px);
    transform: translate(0%, 10px);
    z-index: 1000;
    cursor: default;
}

.open.dots .dots__menu {
    display: block;
}

.dots__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    color: #3c4043;
    padding: 6px 20px;
    line-height: 14px;
    cursor: pointer;
}

.dots__item:hover {
    background-color: var(--color-hover);
}

.dots__item.disabled {
    color: #DADCE0;
    pointer-events: none;
    cursor: default;
}

table.grid_account a:hover {
    color: inherit;
    text-decoration: none;
}

table.grid_account tr.open {
    -webkit-box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.1);
}

table.grid_account tr.details {
    cursor: default;
}

table.grid_account .state {
    min-width: 2.5rem;
}

table.grid_account .dots {
    min-width: 40px;
}

.action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 42px;
}

.not-margin {
    margin: 0;
}

.search {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 370px;
}

.search__field::-webkit-input-placeholder {
    color: #989898;
}

.search__field::-moz-placeholder {
    color: #989898;
}

.search__field:-ms-input-placeholder {
    color: #989898;
}

.search__field::-ms-input-placeholder {
    color: #989898;
}

.search__field,
.search__field::placeholder {
    color: #989898;
}

.search__field {
    font-size: 14px;
    line-height: 16px;
    border: none;
    padding-right: 0;
    border-radius: 5px;
}

.search__label {
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    -o-transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    border-radius: 3px;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: 100%;
}

.search__field:focus {
    color: var(--color-dark-text);
}

.search__reset:hover .search__svg,
.search__field:focus + .search__btn .search__svg,
.search__field:focus + .search__btn + .search__btn .search__svg{
    fill: #676767;
}

.search__svg {
    width: 16px;
    height: 16px;
}

.search__btn {
    margin: 0;
    border: 0;
    background-color: transparent;
    padding: 8px 12px 8px 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.search__reset {
    cursor: pointer;
}

.hide.search__btn {
    display: none;
}

.search__reset .search__svg {
    -webkit-transform: scale(0.6);
    -ms-transform: scale(0.6);
    transform: scale(0.6);
}

.new-item {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-left: 20px;
    font-size: 14px;
    min-width: 160px;
}

.new-item__icon {
    position: relative;
    padding: 8px;
    margin-right: 10px;
}

.load-add::before,
.load-add::after,
.new-item__icon::before,
.new-item__icon::after {
    content: '';
    background-color: #fff;
    position: absolute;
    border: none;
}

.load-add::before,
.new-item__icon::before {
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 14px;
    height: 2px;
}

.load-add::after,
.new-item__icon::after {
    top: 50%;
    left: 6px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 14px;
    width: 2px;
}

.new-item.hide {
    display: none;
}

.load-add::after,
.load-add::before {
    background-color: #828282;
}

.load-add::after {
    width: 2px;
    height: 10px;
    left: 23px;
}

.load-add::before {
    width: 10px;
    height: 2px;
    left: 19px;
}

.action__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 15px;
    line-height: 16px;
}

.action__wrap.hide {
    display: none;
}

.action__wrap > * {
    margin-left: 20px;
}

.action__count {
    color: #828282;
}

.action__count::after {
    content: attr(data-text);
    margin-left: 5px;
}

.action__cancel {
    background-color: transparent;
    color: #216FDB;
    font-size: 15px;
    line-height: 16px;
    border: none;
    cursor: pointer;
}

.action__cancel:hover {
    color: #2141db;
}

.action__btn {
    font-size: 14px;
    background-color: #FFFDFD;
    padding: 6px 10px;;
}

.action__btn:last-of-type {
    margin-left: 10px;
}

.modal-alert {
    position: fixed;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    z-index: 50;
    background-color: rgba(0,0,0,0.502);
}

.show.modal-alert {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.bbl_content > .bbl_inner,
.modal-alert__popup {
    padding: 16px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: right;
    max-width: 430px;
    margin: 10px;
    overflow-y: auto;
    max-height: 100vh;
    background-color: #fbfafa;;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    border: 1px solid rgb(207 207 207 / 20%);
}

.modal-alert__text {
    font-size: 16px;
    line-height: 22px;
    text-align: left;
    color: #000;
}

.bbl_content > .bbl_inner {
    font-size: 14px;
    line-height: 22px;
    color: #3E425C;
    text-align: center;
}

.modal-alert__text {
    margin-bottom: 16px;
}

.bbl_inner .but,
.modal-alert__btn {
    cursor: pointer;
}

.modal-alert__btn,
.bbl_inner .but:first-child {
    background-color: #008d81;
    color: #fff;
    border: none;
    border-radius: 0.125rem;
    padding: 0.475rem 0.75rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5rem;
    min-width: 5rem;
}

.bbl_inner .but:first-child:hover {
    background-color: #00a193;
}

.bbl_inner .but:last-child {
    border: none;
    background-color: transparent;
    color: #008D81;
    font-size: 14px;
}

.bbl_inner .but:hover:last-child {
    color: #00a193;
}

.bbl_inner > .bbl_inner {
    padding: 0;
    margin-top: 20px;
}

.bbl_body {
    border: none;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.bbl-header {
    color: #3E425C;
    font-weight: 500;
    font-size: 19px;
    letter-spacing: .25px;
    margin-bottom: 20px;
}

#dv_bubble {
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    right: 0 !important;
    width: auto !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 50;
    background-color: rgba(0,0,0,0.502);
}

.not-result {
    padding: 50px 5px;
    color: #828282;
    line-height: 1;
    text-align: center;
}

.not-result p:last-child {
    margin-bottom: 0;
}

.not-result p:first-child {
    font-size: 20px;
    color: #202124;
    margin-bottom: 7px;
    font-weight: 700;
}

.search-tabs,
.scroll .table-box {
    overflow-x: auto;
    scrollbar-width: thin;
}

.scroll .table-box {
    padding-bottom: 41px;
    margin-bottom: -51px;
}

@-moz-document url-prefix() {
    .scroll .table-box {
        padding-bottom: 41px;
        margin-bottom: -49px;
    }
}

.scroll .table-box::-webkit-scrollbar {
    height: 10px;
    width: 10px;
}

.search-tabs::-webkit-scrollbar-thumb,
.scroll .table-box::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: #dadce0;
}

.scroll .table-box::-webkit-scrollbar-thumb:hover {
    background-color: #bdc1c6;
}

.scroll .table-box::-webkit-scrollbar-thumb:active {
    background-color: #80868b;
}

.scroll .grid_account__tr .dots__menu {
    top: 50%;
    right: 120%;
    transform: translate(0%, -50%);
    border-radius: 6px;
}

.scroll .grid_account__tr .dots__menu::after {
    content: '';
    border: 5px solid transparent;
    border-left-color: #fff;
    border-top-color: #fff;
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%) rotate(135deg);
    box-shadow: -5px -5px 10px -2px rgb(0 0 0 / 40%);
}

.btn.focus, .btn:focus {
    box-shadow: none;
}

@media screen and (max-width: 1000px) {
    .dots {
        min-height: 30px;
        width: auto;
        padding: 0;
    }

    .state-alert {
        margin-right: 5px;
    }
}

@media screen and (min-width: 1001px) {
    [data-tooltip] {
        position: relative;
    }

    [data-tooltip]::after {
        content: attr(data-tooltip);
        display: none;
        padding: 5px 10px;
        -webkit-box-shadow: 1px 1px 4px 0 rgb(0 0 0 / 20%);
        box-shadow: 1px 1px 4px 0 rgb(0 0 0 / 20%);
        background-color: #fff;
        position: absolute;
        top: 50%;
        right: 0;
        -webkit-transform: translate(100%, 30%);
        -ms-transform: translate(100%, 30%);
        transform: translate(100%, 30%);
        border-radius: 0 4px 4px 4px;
        white-space: nowrap;
        z-index: 1;
    }

    .col-state[data-tooltip]::after {
        transform: translate(110%, 30%);
        right: 50%;
    }

    [data-tooltip]:hover::after {
        display: block;
    }
}

@media screen and (max-width: 660px) {
    .action {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        justify-content: flex-end;
    }

    .search {
        margin-bottom: 15px;
        max-width: none;
    }

    .action__wrap {
        flex-wrap: wrap;
        margin-bottom: 10px;
        min-height: 42px;
        width: 100%;
        justify-content: flex-end;
    }

    .action__count {
        margin-left: 0;
    }

    .action__btn:first-of-type {
        margin-left: 0;
    }

    .new-item {
        font-size: 18px;
        margin-left: 0;
    }

    .btn {
        min-width: auto;
        font-size: 1.2rem;
        margin-bottom: 10px;
        width: 100%;
    }

    .action__wrap > *:not(.action__count) {
        margin: 5px 0 5px 15px;
    }
}

@media screen and (max-width: 1100px) {
    .widjet__table {
        padding: 20px;
    }

    .prod__description {
        display: none;
    }

    .scroll .table-box {
        padding-bottom: 41px;
        margin-bottom: -44px;
    }

    @-moz-document url-prefix() {
        .scroll .table-box {
            padding-bottom: 41px;
            margin-bottom: -49px;
        }

        .search-tabs {
            margin-bottom: -10px;
            padding-bottom: 9px;
        }
    }

    .search-tabs::-webkit-scrollbar,
    .scroll .table-box::-webkit-scrollbar {
        height: 3px;
        width: 3px;
    }
}

@media screen and (min-width: 901px) {
    body {
        padding-right: calc(10px - (100vw - 100%));
        margin-right: -10px;
        overflow-x: hidden;
    }
}



/* STEPPER HINT */


.stepper_hint {
    cursor: default;
}


.stepper_hint:before {
    content: attr(data-text);
    position: absolute;
    top: 5%;
    transform: translateY(-50%);
    right: 15.4%;
    margin-right: 85px;
    width: 280px;
    padding: 16px;
    border-radius: 10px;
    background: #5469D4;
    color: #fff;
    text-align: center;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.stepper_hint:after {
    content: "";
    position:absolute;
    left:78%;
    margin-left:-5px;
    top:5.5%;
    transform:translateY(-50%);
    border: 10px solid #5469D4;
    border-color: transparent transparent transparent #5469D4;
}



