/*http://dimox.name/examples/checkboxes-radio-buttons-using-css/demo-2/*/
.inner-center-column {
    margin-top: 1rem;
}

body.no-scroll {
    overflow-y: initial;
}

header .hamburger-menu {
    min-width: 45.6953px;
}

.search-title {
    font-weight: 300;
    font-size: 2.2rem;
    color: #333;
    margin-top: 2rem;
    margin-bottom: 0.2rem;
    letter-spacing: -0.03em;
}

.search-title-small {
    font-size: 1.8rem;
}

.panel-info {
    margin-bottom: 1rem;
}

.panel-info .dropdown-item {
    font-size: 0.9em;
    padding: .5rem 1.5rem;
}

.dropdown-toggle {
    font-size: 1rem;
}

.panel-info .dropdown-menu.show {
    margin: 0;
    padding: 0;
    box-shadow: 0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12),0 2px 4px -1px rgba(0,0,0,.2);
}

.mobile-filters {
    display: none;
}

#frm_filters {
    display: flex;
    flex-direction: column;
}

.filter_block {
    margin-bottom: 1.5rem;
}

.filter_head H2 {
    font-size: 1.6rem;
    border-bottom: 3px solid #008c44;
    margin-bottom: 1.2rem;
    padding-bottom: 0.2rem;
}

.filter_head ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9em;
}

.filter_block H3 {
    font-size: 1.26rem;
}

.filter_block ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9em;
    max-height: 20rem;
    overflow-y: auto;
}

.filter_block ul::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

.filter_block ul::-webkit-scrollbar {
    width: 8px;
    background-color: #F5F5F5;
    padding-bottom: 5px;
}

.filter_block ul::-webkit-scrollbar-thumb {
    background-color: #F90;
    background-image: -webkit-linear-gradient(45deg,
    rgba(255, 255, 255, .2) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, .2) 50%,
    rgba(255, 255, 255, .2) 75%,
    transparent 75%,
    transparent)
}

.filter_block ul li, .filter_head ul li {
    margin-bottom: 0.25rem;
    padding-right: 2rem;
    position: relative;
    font-size: 1.1em;
    font-weight: 200;
    color: #000;
}

.filter_block ul.normal li:nth-child(n+6) {
    display: none;
}

.filter_block ul.normal.opened li:nth-child(n+6) {
    display: inherit;
}

.filter_block ul.sort li:nth-child(n+8) {
    display: none;
}

.filter_block ul.sort.opened li:nth-child(n+8) {
    display: inherit;
}

.filter_block ul li.subhead {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.filter_block ul li label {
    display: block;
}

.filter_block ul input[type=checkbox] {
    margin-right: 5px;
}

.filter_block ul li a, .filter_block ul li a:visited {
    display: block;
    color: #000 !important;
}

.filter_block ul li .cnt, .filter_head ul li .cnt {
    position: absolute;
    right: 2px;
    color: #888;
    font-weight: 300;
    font-size: 0.80em;
    padding-top: 5px;
}

.filter_head ul li.active {
    font-weight: 500;
}

.filter_block h3 .info {
    color: #808080;
    margin-left: 0.5em;
    font-weight: normal;
}

.filter_head ul a,.filter_head ul a:visited {
    color: #4a7596 !important;
}

.filter_head ul li.active a, .filter_head ul li.active a:visited {
    color:#000 !important;
}

.filter_head ul li {
    margin-bottom: 0.5rem;
}

.filter_head .back {
    font-size: 0.8em;
    margin-top: 0.5rem;
}

.filter_head .back a, .filter_head .back a:visited {
    color: #ff771c !important;
}

.filter_block .see-all {
    display: none;
    font-size: 0.8em;
    margin-top: 0.5rem;
}

.filter_block .see-all a, .filter_block .see-all a:visited {
    color: #ff771c !important;
}

.filter_block .see-all i {
    font-size: 0.8em;
}

.filter_block .btn-search {
    cursor: pointer;
}

.search-layout {
    margin-top: 2rem;
}

.filter-active {
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 0.9em;
}

.filter-active span {
    display: inline-block;
    background: #ededed;
    border-radius: 10px;
    font-weight: normal;
    padding: 0 1em;
    margin-left: 0.5rem;
    cursor: pointer;
}

.filter-active span:after {
    content: "x";
    display: inline-block;
    margin-left: 5px;
    font-weight: bold;
    color: #cf0b28;
}

.checkbox input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.checkbox__text {
    position: relative;
    padding: 0 0 0 1.7rem;
    cursor: pointer;
    line-height: 20px
}

.checkbox__text:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border: 2px solid #989898;
    width: 20px;
    height: 20px;
    background: #fff;
}

.checkbox__text:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    opacity: 0;
    background: url('/assets/wide/icons/check.png') center center no-repeat;
}

.checkbox input:checked + .checkbox__text:before {
    background: #ff771c;
    border-color: #ff771c;
}

.checkbox input:checked + .checkbox__text:after {
    opacity: 1;
}

.pricingReg .no-price {
    font-size: 1.5em;
}

.fa-search::before {
    color: #808080;
}

.w-content {
    font-size: 0.9em;
}

.btn-outline-danger {
    color: #ff771c;
    border-color: #ff771c;
}

.btn-outline-danger:hover {
    color: #fff;
    background-color: #ff771c;
    border-color: #ff771c;
}

.btn-outline-danger:not(:disabled):not(.disabled).active, .btn-outline-danger:not(:disabled):not(.disabled):active, .show>.btn-outline-danger.dropdown-toggle {
    color: #fff;
    background-color: #ff771c;
    border-color: #ff771c;
}

#btn_add,#btn_rfq {
    font-size: 1rem;
    font-weight: bold;
    border-width: 2px;
    padding-left: 3rem;
    padding-right: 3rem;
}

#btn_add:focus, #btn_rfq:focus , .trade-offer .button:focus {
    box-shadow: none;
    outline: none;
    background-color: #ff771c;
    color: #fff !important;
}

#btn_order,#btn_filter {
    border-color: #ccc;
    background-color: #fff;
    min-width: 14rem;
}

#btn_order:hover,#btn_filter:hover {
    background-color: #f0f0f0;
}

.btn-filter {
    display: none;
}

.panel-info #btn_order {
    min-width: 15rem;
}

.btn-order .dropdown-menu {
    min-width: 15rem;
}

.fields {
    margin-bottom: 1rem;
}

.fields input[type=text] {
    width: 100%;
    padding: .625rem .75rem .325rem .75rem;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 2px solid rgb(205, 205, 205);
}

.fields input[type=text]:focus::placeholder {
    color: transparent;
}

.desktop-section-navigation {
    position: absolute !important;
    z-index: 1 !important;
}

.filter_renew {
    text-align: center;
    margin-bottom: 50px;
    align-self: center;
}

.pay-container {
    position: relative;
    padding: 6px 40px;
    margin-top: -66px;
}

.pay-container:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0
}

.pay-container-shaded:before {
    content: '';
    background-color: rgba(255, 255, 255, 0);
    background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), #fff);
    background-image: linear-gradient(rgba(255, 255, 255, 0), #fff);
    height: 250px;
    display: block;
    position: absolute;
    top: -250px;
    left: 0;
    width: 100%;
    pointer-events: none
}

.paywall-archive {
    padding: 20px 38px;
    border-radius: 5px;
    -webkit-box-shadow: 0 1px 3px 0 rgb(0 0 0 / 8%), 0 5px 26px 0 rgb(67 94 131 / 15%);
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 8%), 0 5px 26px 0 rgb(67 94 131 / 15%);
    background-color: #fff;
    margin-left: auto;
    margin-right: auto;
    max-width: 480px;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}

.lang-ru .paywall-archive {
    padding: 20px 40px;
}

.paywall-archive.unlogged {
    min-height: 235px;
}

.lang-de .paywall-archive.unlogged, .lang-en .paywall-archive.unlogged, .lang-zh .paywall-archive.unlogged {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.paywall-archive.unlogged div {
    line-height: 24px;
}

.pay-container.pay-container-shaded div {
    align-items: center;
}

.pay-container.pay-container-shaded div div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}



.paywall-archive.unlogged .sign-in-note {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: rgb(32 33 36 / 60%);
    margin-top: 22px;
}

a.sign-in {
    color: #5469D4;
    border-bottom: unset;
    font-weight: 400;
}

a.sign-in:hover {
    text-decoration: underline !important;
    background-color: unset;
    color: #5469D4;
}

.pay-container .warn {
    padding: 40px 0;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    border-top: 2px solid #221f30
}

.paywall-archive .btn {
    border-radius: 25px;
    font-size: 16px;
    padding: 8px 24px;
    width: fit-content;
}

#dv_news_list .pay-container-shaded div:nth-child(2) {
    margin: 40px 0 0;
}

.gj-datepicker-md [role=right-icon] {
    color: rgb(205, 205, 205);
    -webkit-transition: all .2s ease .1s;
    transition: all .2s ease .1s;
}

.gj-datepicker-md:hover [role=right-icon] {
    color: rgb(169 169 169);
}

.footer-container {
    margin-left: 350px;
}

@media screen and (min-width:1440px)	{
    .desktop-section-navigation {
        min-width: 350px !important;
        font-size: 18px !important;
    }
}

@media screen and (min-width: 1600px) {
    .trade-offer {
        overflow: hidden;
        flex: 0 0 20%;
        max-width: 20%;
    }

    #main_content {
        max-width: 1440px;
    }
}

@media screen and (max-width: 1599px) {
    .trade-offer .image {
        min-height: 9rem;
    }
}

@media screen and (max-width: 1470px) {
    #main_content_layout {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media screen and (min-width: 1300px) {
    #main_content {
        max-width: 1440px;
    }

    .container.main-fixed {
        position: static;
    }
}

@media screen and (max-width: 1299px) {
    .nav-chain, .search-title {
        padding-left: 20px;
    }

    .search-layout {
        padding-left: 20px;
        padding-right: 15px;
    }

    .search-layout .col-3 {
        padding-left: 0;
    }

    .search-layout .col-9 {
        padding-right: 0;
    }
}

@media screen and (max-width: 1024px) {
    #main_content.container.main-fixed {
        max-width: unset;
    }

    .main-fixed .dropdown-menu-cont {
        margin-top: -.1rem;
    }

    .trade-offer {
        flex: 0 0 33.333%;
        max-width: 33.333%;
        text-align: center;
    }

    .nav-chain, .search-title {
        padding-left: 5px;
    }

    .nav-chain {
        margin: 0 0 .5rem 0;
    }

    .main-fixed {
        padding-top: 6rem;
    }

    .search-title {
        font-size: 1.5rem;
        margin-top: 0;
    }

    .search-layout {
        margin-top: 1rem;
    }
}

@media screen and (max-width: 940px) {
    #main_content .container {
        max-width: unset;
    }

    .trade-offer {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 900px) {
    #main_content.container.main-fixed {
        padding-left: 0;
    }

    .trade-offer .pricingReg {
        font-size: 1rem;
        margin-top: -2.5rem;
    }

    .search-layout {
        padding-left: 15px;
    }

    .trade-offer h2 {
        margin-top: 1rem;
    }
}

@media screen and (max-width: 768px) and (orientation:portrait){
    .trade-offer .pricingReg {
        margin-top: -.6rem;
    }
}

@media screen and (max-width: 768px) {
    html, body {
        height: 100%;
    }
    body.hidden {
        overflow: hidden;
    }

    #main_content .search-layout .col-9 {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 1%;
        padding-left: 1%;
        transition: all .5s ease;
    }

    .nav-chain, .search-title {
        text-align: center;
    }

    .trade-offer {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    #main_content .search-layout .col-3 {
        padding-right: 0;
        display: none;
    }

    #main_content .search-layout.hidden .col-9 {
        transform: translateX(50%);
    }

    #main_content .search-layout.hidden .col-9:after {
        content: " ";
        position: absolute;
        z-index: 10;
        background: #000;
        opacity: 0.7;
        top: -50%;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .panel-info {
        margin-left: 0;
        margin-right: 0;
    }

    .panel-info .col-6 {
        flex: 0 0 32%;
        max-width: 32%;
        padding-left: 0;
        padding-right: 0;
    }

    #main_content .search-layout .col-9.text-right {
        padding-left: 0;
        padding-right: 0;
    }

    .panel-info .col-6:nth-child(2) {
        margin-left: 2%;
        margin-right: 2%;
    }

    #btn_filter, .btn-group, .panel-info #btn_order, #btn_add {
        min-width: unset;
        width: 100%;
    }

    .btn-filter {
        display: block;
    }

    .panel-info #btn_add, .panel-info #btn_rfq {
        min-width: 15rem;
        padding: .5rem .95rem;
        font-size: 1.4rem;
    }

    .col-6 .btn-order, .panel-info #btn_add, .panel-info #btn_rfq {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        margin-left: 0 !important;
    }

    .search-layout .panel-info .btn-filter, .panel-info #btn_rfq {
        margin-bottom: .325rem;
        max-width: 100%;
        flex: 100%;
    }

    #btn_filters_mobile_apply {
        width: 100%;
        padding: 15px 0;
        color: #ffffff;
        background-color: #E69E19;
        border-radius: 0;
        font-size: 1.5rem;
    }

    .filter-buttons {
        text-align: center;
        padding: 1rem 0;
    }

    .btn-filter {
        display: block;
    }

    #btn_filter {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        font-size: 1.5rem;
    }

    #btn_add {
        padding-bottom: .325rem;
        padding-top: .325rem;
    }

    .mobile-filters {
        display: block;
        position: absolute;
        background: #fff;
        left: 0;
        right: 50%;
        top: 1rem;
        bottom: 0;
        padding: 5rem 1rem 1rem 1rem;
        height: 100%;
        transition: all .5s ease;
        transform: translateX(-100%);
    }
    .mobile-filters.opened {
        transform: translateX(0);
    }
    .mobile-filters .widjet {
        display: none;
    }

    #frm_filters_mobile {
        max-height: calc(100% - 4.5rem);
        overflow-y: auto;
    }

    .filter_head H2 {
        font-size: 1.3rem;
        margin-bottom: .5rem;
    }

    .filter_block H3 {
        font-size: .975rem;
    }

    .filter_block ul li, .filter_head ul li {
        font-size: .85rem;
        line-height: 1rem;
    }

    .filter_block .fields .fldr {
        width: 35% !important;
        line-height: 1rem;
        font-size: .925rem;
    }

    .filter_block {
        margin-bottom: 1rem;
    }
}

@media (max-width: 740px) and (orientation:landscape) {
    .panel-info .col-6 {
        flex: 0 0 32%;
        max-width: 32%;
    }

    #frm_filters_mobile {
        max-height: calc(100% - 3rem) !important;
    }

    .panel-info .col-6:nth-child(2) {
        margin-left: 2%;
        margin-right: 2%;
    }

    .panel-info .col-6.btn-filter {
        text-align: left !important;
    }

    .btn-group, .panel-info #btn_order, #btn_add {
        min-width: unset;
        width: 100%;
    }

    .trade-offer h2 {
        height: 7rem;
    }
}

@media screen and (min-width: 660px) and (max-width: 670px) {
    .col-6.text-right {
        margin-right: 0;
        margin-left: 0;
    }

    .search-layout .col-3 {
        flex: 0 0 26%;
        max-width: 26%;
    }

    .search-layout .col-9 {
        padding-right: 0;
        padding-left: 2%;
    }

    .nav-chain {
        font-size: 1rem;
    }

    .panel-info #btn_order {
        min-width: unset;
        padding: .375rem 1.29rem;
    }

    #btn_add {
        padding: .3rem 2.5rem;
    }
}

@media screen and (min-width: 550px) and (max-width: 570px) {
    .search-layout .col-3 {
        flex: 0 0 40%;
        max-width: 37.5%;
        padding-right: 0;
    }

    .search-layout .col-9 {
        padding-right: 0;
        flex: 0 0 60%;
        max-width: 60%;
    }

    .search-layout .panel-info {
        display: inline-block;
    }

    .search-layout .panel-info .col-6:first-child {
        display: inline-block;
        width: 100%;
        margin-bottom: 2%;
        text-align: center;
        max-width: unset;
    }

    .col-6.text-right {
        max-width: 100%;
        display: inline-block;
        text-align: center !important;
    }

    .trade-offer {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .trade-offer {
        height: 28rem;
    }

    .trade-offer .pricingReg, .trade-offer h2, .trade-offer .benefits {
        text-align: center;
    }

    .trade-offer .benefits {
        position: relative;
        right: unset;
        left: unset;
        bottom: unset;
    }

    .trade-offer .button {
        position: relative;
        left: 0;
        bottom: 0;
    }
}

@media screen and (max-width: 450px) {

    .pay-container {
        position: relative;
        padding: 6px 0;
    }

    .paywall-archive {
        padding: 20px;
    }

    .paywall-archive .btn {
        min-width: 96px;
    }

}

@media screen and (max-width: 450px) {
    header .search-form.opened {
        left: 0rem;
    }

    #main_content .search-layout .col-9 {
        padding-left: 0;
        padding-right: 0;
    }

    .banner-top {
        display: none;
    }

    .offer-banner {
        text-align: center;
        overflow: hidden;
        height: auto !important;
        min-height: unset !important;
        padding-bottom: 1rem;
    }

    #main_content {
        padding-left: 0;
    }

    .nav-chain {
        margin: 0 0 .5rem 0;
        padding: .5rem 3%;
        text-align: center;
    }

    .nav-chain li {
        display: inline;
    }

    .search-title {
        padding: 0 3%;
        text-align: center;
    }

    .search-title strong {
        font-weight: 300 !important;
    }

    .panel-info {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: .5rem;
    }

    .panel-info .col-6 {
        padding-right: 0;
        padding-left: 0;
        display: flex;
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 0;
    }

    .search-layout {
        margin-right: 0;
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .panel-info #btn_order {
        padding: .5rem .95rem;
        min-width: 15.1rem;
        width: 100%;
        font-size: 1.5rem;
        display: none;
    }

    .btn-order .dropdown-menu {
        min-width: 15.1rem;
    }

    .panel-info .dropdown-menu.show {
        width: 100%;
    }

    .panel-info .dropdown-item {
        font-size: 1.5rem;
        text-align: center;
    }

    .main-fixed {
        padding-top: 7rem;
    }

    .navbar-light .navbar-brand {
        display: none;
    }

    .search-layout .col-3 {
        display: none;
    }
    .search-layout .col-3.opened {
        display: block;
        flex: 0 0 100%;
        max-width: 100%;
        position: inherit;
    }
    .search-layout .col-3.opened #frm_filters {
        background: #fff;
        display: block;
        max-width: 100%;
        overflow-y: auto;
        max-height: 22rem;
        padding: 0 1rem;
    }

    .search-layout .col-9 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }

    .mobile-filters {
        position: absolute;
        background: #fff;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        padding: 5rem 1rem 1rem 1rem;
        height: 100%;
    }

    .mobile-filters.opened {
        display: block;
    }

    .mobile-filters .widjet {
        display: none;
    }

    body.hidden footer {
        display: none;
    }

    #main_content .search-layout.hidden {
        display: none;
    }

    .filter-buttons {
        text-align: center;
        padding: 0;
        border-top: 1px solid #008c44;
        margin-left: -16px;
        margin-right: -16px;
    }

    #frm_filters_mobile {
        max-height: calc(100% - 3rem);
        overflow-y: auto;
    }

    .trade-offer {
        flex: 0 0 100%;
        max-width: 100%;
        min-height: 28rem;
        height: 34.5rem;
        padding-left: .5rem;
        padding-right: .5rem;
        border-bottom: 3px solid #ededed;
    }

    .trade-offer .image {
        height: auto;
    }

    /*.trade-offer .image img {
        border: 1px solid lightgray;
    }*/

    .trade-offer h2 {
        height: auto;
        margin-bottom: 1rem;
        padding: 0 10px;
        font-size: 1.5rem;
    }

    .trade-offer .pricingReg, .trade-offer h2, .trade-offer .benefits {
        text-align: center;
    }

    .trade-offer .price__dollars {
        font-size: 1.8rem;
    }

    .trade-offer .pricingReg {
        margin-top: 0rem;
        font-weight: 500;
        font-size: 1.4rem;
    }

    .trade-offer .price__currency {
        font-size: 1.3rem;
    }

    .trade-offer .benefits {
        font-size: 1.2rem;
        bottom: 5.5rem;
    }

    .trade-offer .benefits .avail, .trade-offer .benefits .quant_min {
        display: inline-block;
    }

    .trade-offer .button {
        padding: 0.4rem 0;
        font-size: 1.1rem;
        bottom: .9rem;
        margin-left: 1%;
        margin-right: 2%;
        min-width: unset !important;
        padding: .75rem .5rem !important;
        width: 90% !important;
    }
}

@media screen and (max-width: 340px) {
    .page-nav a, .page-nav span {
        padding: 0.25em .5em;
    }
}
