/****************************************Core: General Layout Style******************************************/
html {
    height: 100%;
}

body {
    min-height: 100%;
}

textarea {
    resize: none;
}

    /* Styling specific to textareas with auto-expand feature */
    textarea.t-auto-expand {
        display: block;
        box-sizing: padding-box;
        overflow: hidden;
    }


    /* Chrome */
    input[type=text]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=date]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
        color: #dfdfdf !important;
        transition: opacity 250ms ease-in-out;
    }

:focus::-webkit-input-placeholder {
    opacity: 0.5;
}

input[type=text]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=date]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, textarea:-ms-input-placeholder { /* IE 10+ */
    color: #dfdfdf !important;
    transition: opacity 250ms ease-in-out;
}

:focus:-ms-input-placeholder {
    opacity: 0.5;
}

input[type=text]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=number]::-moz-placeholder, textarea::-moz-placeholder { /* Firefox 19+ */
    color: #dfdfdf !important;
    opacity: 1;
    transition: opacity 250ms ease-in-out;
}

:focus::-moz-placeholder {
    opacity: 0.5;
}

input[type=text]:-moz-placeholder, input[type=password]:-moz-placeholder, input[type=email]:-moz-placeholder, input[type=date]:-moz-placeholder, input[type=number]:-moz-placeholder, textarea:-moz-placeholder { /* Firefox 4 - 18 */
    color: #dfdfdf !important;
    opacity: 1;
    transition: opacity 250ms ease-in-out;
}

:focus:-moz-placeholder {
    opacity: 0.5;
}

.field-validation-error {
    display: none;
}

.dropdown-backdrop {
    position: static;
}

/*width*/
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

/*Track*/
::-webkit-scrollbar-track {
    background: #ddd;
}


/*Handle*/
::-webkit-scrollbar-thumb {
    background: #00bd90;
}

    /*Handle on hover*/
    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }


/****************************************Wrapper******************************************/
.wrapper {
    height: 100%;
    position: relative;
    overflow-x: hidden;
    /*overflow-y: scroll;*/
    -webkit-overflow-scrolling: touch;
}

    .wrapper:before,
    .wrapper:after {
        content: " ";
        display: table;
    }

    .wrapper:after {
        clear: both;
    }

    .wrapper:before,
    .wrapper:after {
        content: " ";
        display: table;
    }

    .wrapper:after {
        clear: both;
    }


/****************************************Content Wrapper******************************************/

.content-wrapper,
.main-footer {
    -webkit-transition: -webkit-transform 0.3s ease-in-out, margin 0.3s ease-in-out;
    -moz-transition: -moz-transform 0.3s ease-in-out, margin 0.3s ease-in-out;
    -o-transition: -o-transform 0.3s ease-in-out, margin 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out;
    z-index: 820;
}


.buyer-view.gradient {
    background: linear-gradient(to top right, #2B4A79, #0D82B1);
    color: #ffffff;
}



/* IE10+ CSS styles go here */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .landing > .wrapper > .content-wrapper > .gradient-bg.content {
        display: block !important;
    }
}

@media (min-width: 768px) {
    .sidebar-collapse .content-wrapper,
    .sidebar-collapse .main-footer {
        margin-left: 0;
    }

    .main-header {
        background: #001c2d;
        padding: .3rem 0rem;
    }
}

@media (max-width: 767px) {

    .main-header a.logo {
        background-color: #1E2B3A;
    }

    .content-wrapper,
    .main-footer {
        margin-left: 0;
    }

    .sidebar-open .content-wrapper,
    .sidebar-open .main-footer {
        -webkit-transform: translate(230px, 0);
        -ms-transform: translate(230px, 0);
        -o-transform: translate(230px, 0);
        transform: translate(230px, 0);
    }
}

.content-wrapper {
    min-height: 100vh;
    background-color: #F4F7FA;
    z-index: 800;
    /*display:flex;*/
}


    .content-wrapper .dropdown-menu {
        z-index: 90;
    }

.main-footer {
    /*background: #fff;
    padding: 15px;
    color: #444;
    border-top: 1px solid #d2d6de;*/
}
/* Fixed layout */
.fixed .main-header,
.fixed .main-sidebar,
.fixed .left-side {
    position: fixed;
}

.fixed .main-header {
    top: 0;
    right: 0;
    left: 0;
}

.fixed .content-wrapper,
.fixed .right-side {
    padding-top: 50px;
}

@media (max-width: 767px) {
    .fixed .content-wrapper,
    .fixed .right-side {
        padding-top: 100px;
    }
}


.fixed .wrapper {
    overflow: hidden;
}

.hold-transition .content-wrapper,
.hold-transition .right-side,
.hold-transition .main-footer,
.hold-transition .main-sidebar,
.hold-transition .left-side,
.hold-transition .main-header .navbar,
.hold-transition .main-header .logo,
.hold-transition .menu-open .fa-angle-left {
    /* Fix for IE */
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}
/* Content */
.content {
    /*min-height: 250px;*/
    /*padding: 15px;*/
    margin-right: auto;
    margin-left: auto;
    /*padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 100px;*/
}

/* Page Header */
.page-header {
    margin: 0 0px 10px 0px;
    font-size: 24px;
}

    .page-header > small {
        color: #666;
        display: block;
        margin-top: 5px;
    }



body.landing .gradient-bg, .auctions_overview {
    overflow: auto;
    color: #fff;
}

.landing a {
    transition: all .2s linear;
}

/*--------------------------------------------------------------------*/
/*------------- Header -----------------------------------------------*/
/*--------------------------------------------------------------------*/
.landing .mazree_logo {
    width: 100%;
    height: 87px;
    padding: 0 5vw;
}

.landing .headerNavButton {
    background-position: center;
    background-repeat: no-repeat;
    height: 50px;
    width: 50px;
    top: 0px;
    position: absolute;
    cursor: pointer;
}

#mobileMenuButton {
    background-color: #1E2B3A;
    background-size: 21px 16px;
    background-image: url(../images/icon_menu.png);
    left: 0px;
}


#mobileNavIconMazree {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 120px 33px;
    background-image: url(../images/landing/logo_talin.png);
    height: 50px;
    width: 120px;
    position: inherit;
    margin: 0 auto;
}

.landing .mazree_logo .logo {
    width: 100%;
    height: 87px;
    background-image: url('../images/landing/logo_talin.png');
    background-position: 10px center;
    background-size: auto 50px;
    background-repeat: no-repeat;
}

/*.landing .container-fluid {
    padding-left: 0;
    padding-right: 0;
}*/

.nav_color_bar {
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, #78BE43, #018DBC);
}

/*    Main Navigation
----------------------------------*/
.landing header .container-fluid {
    width: 100%;
    min-height: 50px;
    background-color: #0C1C2A;
    padding: 0 5vw;
}

.landing header nav.navbar {
    min-height: 50px;
    background-color: #0C1C2A;
    padding: 0 5vw;
}

.landing header .nav-item {
    position: relative;
}

.landing .header_nav {
    margin-bottom: 0;
    height: 100%;
}

    .landing .header_nav li {
        list-style-type: none;
    }

.landing .navbar-nav .nav-item > a, .landing .footer_nav .nav-item > a {
    color: #fff;
    font-size: 14px;
    padding-right: .65rem;
    padding-left: .65rem;
}

    .landing .navbar-nav .nav-item > a:hover, .landing .footer_nav .nav-item > a:hover {
        color: #00BD90;
    }

.landing .nav-item.active a {
    color: #00BD90;
}

.landing .navbar-nav .nav-item > a:active, .landing .footer_nav .nav-item > a:active {
    color: #00BD90;
}

.active_indicator {
    opacity: 0;
    width: 8px;
    position: absolute;
    left: calc(50% - 4px);
    bottom: -3px;
    transition: opacity .2s linear;
}

.landing .nav-item.active .active_indicator {
    opacity: 1;
}

.landing .navbar .navbar-nav {
    flex-direction: row;
}

    .landing .navbar .navbar-nav .nav-item {
        padding-left: 0.68rem;
        padding-right: 0.68rem;
    }

.landing .navbar .navbar-collapse > .row {
    width: 100%;
}

.landing .nav-item > ul.buyer-menu, .landing .nav-item > ul.seller-menu {
    width: 200px;
}

.nav-item > .login-dropdown {
    min-width: 300px;
}

.landing .nav-item > .login-dropdown, .landing .nav-item > .register-dropdown {
    min-width: 330px;
}

.landing .nav-item > .dropdown-menu .card {
    border: 0;
}

.landing .nav-item > .dropdown-menu-form .custom-control-indicator {
    top: 2px;
}

/*    Mobile Navigation
----------------------------------*/
#mobileMenuLanding {
    background-color: #0C1C2A;
    height: 50px;
    width: 100%;
    display: none;
}

#mobileMenuButton {
    background-color: #1E2B3A;
    background-size: 21px 16px;
    background-image: url('../images/landing/icon_menu.png');
    left: 0px;
}

#mobileLeftNavLanding {
    position: absolute;
    top: 50px;
    left: -276px;
    background-color: #0C1C2A;
    width: 150px;
    overflow: hidden;
    padding: 5vw;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    z-index: 999;
    border: 1px solid #444;
    text-align: left;
    /*overflow: hidden;*/
}

#mobileMenuLanding.open #mobileLeftNavLanding {
    left: 0;
    width: 100%;
}

.navbar-mobile {
    padding-left: 0;
}

    .navbar-mobile .nav-item {
        list-style: none;
        padding-top: 0.3rem;
        padding-bottom: 0.3rem;
    }

        .navbar-mobile .nav-item a {
            text-decoration: none;
        }

        .navbar-mobile .nav-item .active_indicator {
            position: static;
            margin-left: 10px;
            transform: rotate(-90deg);
        }

.navbar-nav.navbar-mobile .dropdown-menu {
    position: static;
    float: none;
}

.navbar-nav.navbar-mobile > li.dropdown > .login-dropdown, .navbar-nav.navbar-mobile > li.dropdown > .register-dropdown {
    min-width: 300px;
}

.navbar-mobile #FirstName, .navbar-mobile #Password {
    margin-bottom: 1rem;
}

/*--------------------------------------------------------------------*/
/*------------- Footer -----------------------------------------------*/
/*--------------------------------------------------------------------*/
.main-footer {
    width: 100%;
    min-height: 50px;
    background-color: #0C1C2A;
    padding: 0 5vw;
    display: grid;
    /*display: flex !important;*/
}

    .main-footer .container-fluid {
        width: 100%;
    }

    .main-footer .footer_nav .nav-item {
        display: inline-block;
    }

    .main-footer ul {
        padding-left: 0;
        margin-bottom: 0;
    }

/*.main-footer ul {
        height: 100%;
        margin-bottom: 0;
    }*/

.nav-item.social a {
    padding-right: 0.2rem;
    padding-left: 0.2rem;
}

/* footer social icons */
ul.social-network {
    list-style: none;
    display: inline;
    margin-left: 0 !important;
    padding: 0;
}

    ul.social-network li {
        display: inline;
        margin: 0 5px;
    }


/* footer social icons */

.social-network a.ico-facebook:hover {
    background-color: #3B5998;
}

.social-network a.ico-twitter:hover {
    background-color: #33ccff;
}


.social-network a.ico-linkedin:hover {
    background-color: #007bb7;
}

    .social-network a.ico-facebook:hover i, .social-network a.ico-twitter:hover i,
    .social-network a.ico-linkedin:hover i {
        color: #fff;
    }

a.socialIcon:hover, .socialHoverClass {
    color: #44BCDD;
}

.social-circle li a {
    display: inline-block;
    position: relative;
    margin: 0 auto 0 auto;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    width: 30px;
    height: 30px;
    font-size: 20px;
}

.social-circle li i {
    margin: 0;
    line-height: 30px;
    text-align: center;
}

.social-circle li a:hover i, .triggeredHover {
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -ms--transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}

.social-circle i {
    color: #0C1C2A;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
}

ul.social-network a {
    background-color: #D3D3D3;
}

/*---------------------------------------------------------------------*/
/*------------- Content & containers ----------------------------------*/
/*---------------------------------------------------------------------*/
.landing > .wrapper > .content-wrapper > .gradient-bg.content {
    /*background: linear-gradient(to top right, #2B4A79, #0D82B1);*/
    display: flex;
    justify-content: center;
    padding: 75px 100px;
    overflow: hidden;
    width: 100%;
}

.content-container {
    min-height: 100%;
}

.landing > .wrapper .gradient {
    background: linear-gradient(to top right, #2B4A79, #0D82B1);
}

/*.landing .auctions_overview {
    background: linear-gradient(to top right, #2B4A79, #0D82B1);
}*/

.landing .auctions_features {
    background-color: #EAEAEA;
    padding: 8vw 0;
    width: 100%;
}

    .landing .auctions_features > .row {
        max-width: 1220px;
        margin: 0 auto;
        justify-content: space-around;
    }

.auctions_features h2 {
    text-align: center;
    font-size: 30px;
    border-bottom: 1.5px solid #C1C1C1;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.auctions_features p {
    color: #000;
    padding: 0 10px;
}

.auctions_features .buyers h2 {
    color: #008FBE;
}

.auctions_features .sellers h2 {
    color: #77BF43;
}

.landing .auctions_process {
    background-color: #ffffff;
    color: #000000;
    padding: 8vw;
    width: 100%;
}

    .landing .auctions_process h2.auctions_process_title {
        color: #1CB68D;
        text-align: center;
        width: 415px;
        margin: 0 auto;
        font-size: 27px;
        border-bottom: 1.5px solid #C1C1C1;
        padding-bottom: 16px;
    }

.row.auctions_steps {
    justify-content: space-around;
    margin: 8vw 0;
}

    .row.auctions_steps .auctions_step_number {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        font-size: 36px;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -60px;
    }

.auctions_step_number.step_number_one {
    background-color: #77BF43;
}

.auctions_step_number.step_number_two {
    background-color: #1CB68D;
}

.auctions_step_number.step_number_three {
    background-color: #008FBE;
}

.row.auctions_steps {
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
}

    .row.auctions_steps p {
        color: #000;
        text-align: center;
        margin-top: 30px;
        width: 100%;
    }

    .row.auctions_steps > div {
        text-align: center;
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
    }

.auctions_process .auctions_steps img {
    min-height: 400px;
    max-height: 448px;
    padding: 0;
}

.row.auctions_done img {
    width: 100%;
    max-width: 475px;
}

.row.auctions_done {
    margin-bottom: 30px;
}

    .row.auctions_done > div:first-child {
        text-align: right;
    }

    .row.auctions_done > div:last-child {
        text-align: left;
    }

    .row.auctions_done h2 {
        font-size: 102px;
        line-height: .8;
        letter-spacing: 6px;
    }

    .row.auctions_done p {
        max-width: 435px;
        margin-top: 30px;
        margin-bottom: 50px;
    }

.row.auctions_current_listings .button.current_listings {
    padding: 20px 30px;
    background-color: #77BF43;
    color: #fff;
}

.card-wrapper.white-box {
    color: #000000;
    max-width: 550px;
}


/*    Images/Icons
-----------------------------*/
.landing_badge_icon {
    position: absolute;
    width: 550px;
    left: -378px;
    top: -182px;
    z-index: 0;
}

#contact_badge_icon {
    width: 625px;
    left: -325px;
    top: -154px;
}

.landing_icon {
    width: 30%;
    min-width: 100px;
    padding-right: 20px;
}

    .landing_icon img {
        height: 75px;
        max-width: 110px;
    }

.social_icon {
    width: 25px;
}

#to_top {
    width: 35px;
}

.better_value .landing_icon {
    padding-right: 0;
    padding-left: 20px;
}

.auctions_features .mobile_phone_1 {
    background-image: url(../images/landing/mobile_phone_1.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 400px;
    max-height: 448px;
    padding: 0;
}


/*    Buttons
-----------------------------*/
.landing_call_to_action {
    background-color: #77BF43;
    color: #ffffff !important;
    text-align: center;
    font-size: 15px;
    padding: 1px 46px;
    min-width: 235px;
    cursor: pointer;
    position: absolute;
    z-index: 1;
    top: 185px;
    left: 46px;
}

.row.app_badges {
    padding-left: 4%;
}

.app_badges .app_badge {
    margin: 0 10px 20px 10px;
}

    .app_badges .app_badge img {
        height: 35px;
    }

.auctions_features .auctions_learn_more {
    padding: 13px;
    margin: 0 auto;
    margin-top: 40px;
    width: 225px;
    text-align: center;
    color: #fff;
}

.auctions_features .buyers .auctions_learn_more {
    background-color: #008FBE;
}

.auctions_features .sellers .auctions_learn_more {
    background-color: #77BF43;
}

.auctions_learn_more a {
    color: #ffffff;
}

.landing .terms-conditions p, .landing .faqs p, .landing .privacy-policy p {
    width: 100%;
}

.landing .gradient-bg a {
    color: #64de42;
}

/*    Text
-----------------------------*/
.title {
    font-family: 'OpenSans-SemiBold';
    font-size: 30px;
}

    .title + p {
        font-size: 14px;
        max-width: 392px;
    }

.icon_with_text .text_block {
    width: 60%;
    display: inline;
    max-width: 240px;
}

.text_block > h3 {
    font-size: 14px;
    color: #8AE64D;
    font-weight: 600;
}

.text_block > p {
    font-size: 13px;
    color: #fff;
}


/*    Form
-----------------------------*/

#landing_contact_us {
    margin-bottom: 100px;
}

    #landing_contact_us label {
        color: #64de42;
    }

    #landing_contact_us .form-control {
        font-size: 14px;
    }

    #landing_contact_us textarea {
        min-height: 175px;
        max-height: 350px;
        padding: 8px;
    }


/*   Other Elements
-----------------------------*/
.title_block {
    margin-bottom: 140px;
}

.contact_title_block p {
    max-width: 300px;
}

.icon_with_text {
    margin-bottom: 40px;
}

.landing .side_info {
    border: 3px solid #fff;
    font-size: 14px;
    padding: 20px;
    text-align: center;
    font-family: 'OpenSans-SemiBold';
}

    .landing .side_info label:nth-child(1) {
        color: #64de42;
    }

    .landing .side_info h2 {
        font-size: 3em;
    }

#go_to_faq {
    width: 100%;
    height: 20px;
    background-image: url("../images/landing/icon_right_arrow_green.png");
    background-position: right center;
    background-size: auto 100%;
    background-repeat: no-repeat;
    cursor: pointer;
}





/*--------------------------------------------------------------------*/
/*------------- Queries ----------------------------------------------*/
/*--------------------------------------------------------------------*/
@media (max-width: 1400px) and (min-width: 1200px) {
    .icon_with_text .text_block {
        padding-right: 20px;
    }
}



@media (max-width: 1250px) and (min-width: 992px) {
    .landing_call_to_action {
        top: 215px;
    }

    .landing_badge_icon {
        top: -152px;
    }

    #contract_manager_call_to_action {
        top: 245px;
    }

    #contract_manager_badge_icon {
        top: -107px;
    }

    #auctions_badge_icon {
        top: -120px;
    }

    #auctions_call_to_action {
        top: 246px;
    }
}


@media (max-width: 1250px) and (min-width: 576px) {
    #auctions_call_to_action {
        padding: 1px 22px;
    }
}

@media (max-width: 1199px) {
    .row.app_badges {
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .better_value .text_block p {
        max-width: 195px;
    }

    .auctions_features p {
        min-height: 288px;
    }
}

@media (max-width: 991px) {
    .title_block {
        margin-bottom: 120px;
    }

    .icon_with_text .landing_icon {
        justify-content: center !important;
    }

    .icon_with_text .text_block {
        max-width: none;
    }

        .icon_with_text .text_block.roi_text {
            padding-left: 4%;
            width: 65%;
        }

    .icon_with_text .landing_icon.roi_icon {
        justify-content: flex-end !important;
        width: 25%;
    }

    .auctions_features .mobile_phone_1 {
        margin: 75px 0;
    }
}

@media (max-width: 767px) {
    .landing > .wrapper > .content-wrapper > .gradient-bg.content {
        padding: 75px 30px;
    }

    .row.auctions_steps > div {
        display: block;
        margin: 20px 0;
    }

    .row.auctions_steps .auctions_step_number {
        position: absolute;
        left: calc(50% - 35px);
    }

    .row.auctions_steps p {
        margin-top: 15px;
    }

    .landing .auctions_process h2.auctions_process_title {
        width: unset;
    }
}

@media (max-width: 700px) {
    footer.main-footer {
        padding: 5vw;
    }

    .main-footer .col-lg-8 > ul {
        display: block !important;
    }

        .main-footer .col-lg-8 > ul li {
            width: 100%;
            display: block;
        }

    nav.navbar,
    header > .mazree_logo {
        display: none;
    }

    #mobileMenuLanding {
        display: block;
    }
}

@media (max-width: 700px) and (min-width: 576px) {
    #contract_manager_call_to_action {
        top: 255px;
    }

    #contract_manager_badge_icon {
        top: -112px;
    }

    #auctions_call_to_action {
        top: 221px;
    }

    #auctions_badge_icon {
        top: -148px;
    }
}

@media (min-width: 576px) {
    .container {
        max-width: none !important;
    }
}

@media (max-width: 575px) {
    .title_block {
        margin-bottom: 50px;
    }

    .landing_badge_icon {
        display: none;
    }

    .landing_icon {
        width: 24%;
        min-width: 85px;
        padding-right: 10px;
    }

        .landing_icon img {
            height: 60px;
        }

    .landing_call_to_action {
        position: static;
        margin-top: 20px;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        padding: 1px 30px;
        min-width: 0;
    }

    .icon_with_text .text_block {
        width: 70%;
        max-width: calc(100% - 85px);
    }
}


/*************************Landing Auction Pages****************************/
.landing-page-wrapper {
    padding: 0px 5vw;
}

    .landing-page-wrapper .content-header {
        padding: 2em 0em 0 0em;
    }

/*************************BS Customizations****************************/

.btn {
    cursor: pointer;
}

.navbar-expand-lg .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
}

.navbar-collapse {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-align: center;
    align-items: center;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
    text-align: center;
}

.auctions-content .dropdown-toggle::after {
    border-style: none;
}


#buttonHome {
    background-size: 21px 20px;
    background-image: url("../images/icon_home.png");
}

.buttonConnect {
    background-size: 23px 21px !important;
    background-image: url("../images/icon_connections.png");
}

#buttonRFP {
    background-size: 18px 23px;
    background-image: url("../images/icon_rfp.png");
}

#buttonChecklist {
    background-size: 18px 23px;
    background-image: url("../images/icon_checklist.png");
}

.buttonUsers {
    background-size: 22px 19px !important;
    background-image: url("../images/icon_contacts.png");
}

.buttonAuction {
    background-size: 24px 24px !important;
    background-image: url("../images/icon_auction.png");
}

#buttonInsight {
    background-size: 20px 21px;
    background-image: url("../images/icon_insight.png");
}

#buttonContractManager {
    background-size: 18px 23px;
    background-image: url("../images/icon_contract_manager.png");
}

#buttonSalesHub {
    background-size: 18px 21px;
    background-image: url("../images/icon_sales_hub.png");
}


.navButton {
    background-position: 15px 5px;
    background-repeat: no-repeat;
    background-size: auto 24px;
    max-height: 35px;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}


.search-box {
    background-size: 17px;
    background-position: 8px center;
    background-repeat: no-repeat;
    background-image: url(../images/messages/Search@2x.png);
    color: #a0a0a0;
    font-size: 11px;
    height: 28px;
    padding-left: 29px;
    padding-right: 10px;
}

.content-header, .auctions-content {
    color: #000000;
}

.content-header {
    position: relative;
    padding: 2em 1em 0 1em;
}


.navbar-nav > li > .dropdown-menu {
    position: absolute;
    right: 0;
    left: auto;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}


.landing .navbar-nav .nav-item > .dropdown-menu {
    margin-top: 8px;
    font-size: 12px;
}

    .landing .navbar-nav .nav-item > .dropdown-menu li {
        position: relative;
        margin: 0;
        padding: 0;
        height: 35px;
    }

        .landing .navbar-nav .nav-item > .dropdown-menu li:hover {
            background: #f4f4f4;
        }


        .landing .navbar-nav .nav-item > .dropdown-menu li > a {
            display: block;
            position: relative;
            height: 35px;
            color: #444444;
            line-height: 35px;
        }

            .landing .navbar-nav .nav-item > .dropdown-menu li > a > div > span {
                padding: 0 10px 0 55px;
            }

.actions .dropdown {
    align-self: center;
}

.actions .fal {
    cursor: pointer;
    margin: 0px 10px;
}


.content-header .icon {
    display: inline-block;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    vertical-align: text-bottom;
    width: 22px;
    height: 28px;
}

.sectionHeader {
    width: 100%;
    height: 36px;
    padding: 8px;
    font-size: 14px;
    background-color: #008FBE;
    color: #ffffff;
    text-align: left;
}

.margin-bottom {
    margin-bottom: 20px;
}

.margin-top {
    margin-top: 20px;
}



/*---------- drop search ---------*/

.drop-search-container {
    position: relative;
}

.drop-search-text.active-company {
    background-image: url('/Content/images/icons/link.png');
    background-position: right center;
    background-repeat: no-repeat;
}

.drop-search {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 1;
    width: 251px;
}

    .drop-search.deselectable {
        position: relative;
    }

        .drop-search.deselectable ul {
            padding: 0;
        }

    .drop-search.drop-knockout {
        display: block;
    }

    .drop-search ul {
        list-style: none;
        margin: 0;
        padding: 2px 0;
        border: 1px solid rgba(7,28,44,.15);
        background: #fff;
    }

    .drop-search li {
        min-height: 32px;
        padding: 10px 10px 10px 45px;
        position: relative;
        float: none !important;
    }

        .drop-search li:hover {
            background: #f4f4f4;
            cursor: pointer;
        }


    .drop-search.deselectable li:hover {
        background: #f4f4f4;
        cursor: pointer;
    }

    .drop-search li img {
        display: block;
        height: 32px;
        width: 32px;
        position: absolute;
        left: 6px;
        top: 13px;
    }

    .drop-search li .title,
    .drop-search li .sub-title {
        font-size: .8em;
        display: block;
        padding-bottom: 2px;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .drop-search li .title {
        color: #000;
        font-weight: bold;
        line-height: 1.5em;
    }

    .drop-search li .sub-title,
    .drop-search .see-more {
        line-height: 1em;
        color: #878787;
    }

    .drop-search .see-more {
        padding: 5px 10px;
        text-align: center;
        min-height: 0;
    }

        .drop-search .see-more a {
            color: #96c100;
        }


/*---------- Steps ---------*/

.f1-steps {
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
    text-align: center;
}

.f1-progress {
    position: absolute;
    top: 24px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ddd;
}

.f1-progress-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    background-color: #008fbe;
}

.f1-step {
    position: relative;
    float: left;
    width: 33.333333%;
    padding: 0 5px;
}

    .f1-step p {
        color: #ddd;
        font-size: 14px;
        margin-top: 5px;
    }

    .f1-step.active p {
        color: #008fbe;
    }

    .f1-step.active .f1-step-icon {
        width: 48px;
        height: 48px;
        font-size: 22px;
        margin-top: 0;
        background-color: #008fbe;
    }

.f1-step-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-top: 4px;
    background: #ddd;
    font-size: 16px;
    color: #fff;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

    .f1-step-icon i {
        line-height: 40px;
    }

.f1-step.active i {
    line-height: 48px;
}

/*---------- Scroll to top ---------*/

#return-to-top {
    position: fixed;
    bottom: 25px;
    right: 5px;
    background: #00bd90;
    width: 35px;
    height: 35px;
    display: block;
    text-decoration: none;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

    #return-to-top i {
        color: #fff;
        margin: 0;
        position: relative;
        font-size: 19px;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }


/**********Start - Huddles Landing Pages*********/
i.feature-dot {
    display: flex;
    justify-content: center;
}

    i.feature-dot.others {
        color: #818b94;
    }

    i.feature-dot.huddles {
        color: #00bd90;
    }
/**********End - Huddles Landing Pages*********/


.order-1 {
    -ms-flex-order: 1;
    order: 1;
}

.order-2 {
    -ms-flex-order: 2;
    order: 2;
}

/*   Home Slider
                    -----------------------------*/
#sliderContainer,
.container.home_auctions,
.container.home_huddles,
.container.home_connect {
    width: 100%;
    font-family: "Gotham-Light";
}

#sliderContainer {
    background-image: url("../../../V2Stuff/Content/images/landing/home_slider/Background.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    max-height: 500px;
    padding: 50px 10%;
}

#slider {
    position: relative;
    max-width: 1220px;
    margin: 0 auto;
}

    #slider .slide {
        width: 100%;
        height: 100%;
    }

        #slider .slide img {
            /*
                        width: 100%;
                        height: auto;
                    */
            /*    display: block;*/
            max-width: 100%;
            max-height: 481px;
            width: auto;
            height: auto;
        }

.nav_arrow {
    width: 31px;
    height: 100%;
    position: absolute;
    background-size: 90% auto;
    background-repeat: no-repeat;
    background-position: center;
    top: 0;
    cursor: pointer;
}

    .nav_arrow.arrow_left {
        background-image: url("../../../V2Stuff/Content/images/landing/home_slider/arrow_over_green_left.png");
        left: -5%;
    }

    .nav_arrow.arrow_right {
        background-image: url("../../../V2Stuff/Content/images/landing/home_slider/arrow_over_green_right.png");
        right: -5%;
    }

.container.home_auctions {
    background-color: #EAEAEA;
    padding: 100px 0;
}

.container.home_huddles {
    background-color: #FFFFFF;
    padding: 100px 0;
}

.container.home_connect {
    background-color: #EAEAEA;
    padding: 100px 0;
}

.textbox_with_icon .textbox {
    color: #000;
    position: absolute;
    line-height: 1.45;
}

.container.home_auctions .textbox_with_icon .textbox {
    left: 205px;
    top: 0;
}

.container.home_huddles .textbox_with_icon .textbox {
    left: 222px;
    top: 0;
}

.container.home_connect .textbox_with_icon .textbox {
    left: 217px;
    top: 0;
}

.container.home_auctions > .row,
.container.home_huddles > .row,
.container.home_connect > .row {
    max-width: 1220px;
    margin: 0 auto;
}

.container.home_huddles .textbox_with_icon .textbox p {
    max-width: 280px;
}

.container.home_connect .textbox_with_icon .textbox p {
    max-width: 350px;
}

.textbox_with_icon .textbox h2 {
    font-family: "Gotham-Medium";
    font-size: 30px;
    text-transform: uppercase;
}

.textbox_with_icon .textbox p {
    font-size: 14px;
    max-width: 300px;
}

.textbox_with_icon .icon {
    width: 203px;
    height: 203px;
    margin-right: auto;
    position: relative;
}

.textbox_with_icon .call_to_action {
    color: #77BF43;
    position: absolute;
    bottom: 2px;
    white-space: nowrap;
    z-index: 1;
}

.home_auctions .textbox_with_icon .call_to_action {
    left: 238px;
}

.home_huddles .textbox_with_icon .call_to_action {
    left: 260px;
}

.home_connect .textbox_with_icon .call_to_action {
    left: 260px;
}

.textbox_with_icon .call_to_action a {
    color: #77BF43;
    text-decoration: none;
    font-family: "Gotham-Medium";
}


.overflowingImage {
    position: absolute;
    height: 210%;
    top: -153px;
    left: calc(50% - 143px);
}

    .overflowingImage img {
        height: 100%;
    }

.home_image {
    position: absolute;
}

.home_huddles .home_image {
    height: 177%;
    left: -45px;
    top: -45px;
}

.home_image img {
    height: 100%;
}


.home_connect .home_image {
    left: 0;
    top: -66px;
    height: 170%;
}

#myBtn {
    cursor: pointer;
}

.modal-dialog {
    max-width: 800px;
    margin: 30px auto;
}

.modal-body {
    position: relative;
    padding: 0px;
}


@media (min-width: 1281px) {
    .order-lg-1 {
        -ms-flex-order: 1 !important;
        order: 1 !important;
    }

    .order-lg-2 {
        -ms-flex-order: 2 !important;
        order: 2 !important;
    }
}

@media (max-width: 1280px) and (min-width: 992px) {
    .order-lg-1 {
        -ms-flex-order: 1 !important;
        order: 1 !important;
    }

    .order-lg-2 {
        -ms-flex-order: 2 !important;
        order: 2 !important;
    }

    .container.home_huddles .textbox_with_icon .textbox {
        width: 281px;
    }
}

@media (max-width: 1199px) {
    .home_huddles .home_image {
        left: 0;
    }

    .home_connect .home_image {
        left: -70px;
    }
}

@media (max-width: 1100px) {
    .call_to_action a {
        display: block;
        width: 100%;
    }

    .call_to_action span {
        display: none;
    }

    .home_huddles .textbox_with_icon .call_to_action,
    .home_connect .textbox_with_icon .call_to_action {
        left: 238px;
        bottom: -10px;
    }
}

@media (min-width: 575px) and (max-width: 991px) {
    .order-md-1 {
        -ms-flex-order: 1 !important;
        order: 1 !important;
    }

    .order-md-2 {
        -ms-flex-order: 2 !important;
        order: 2 !important;
    }
}

@media (max-width: 991px) {
    .home_image_container {
        max-height: 200px;
        text-align: center;
        margin: 10px 0;
    }

    .container.home_auctions .overflowingImage,
    .container.home_huddles .home_image,
    .container.home_connect .home_image {
        height: 100%;
        position: static;
    }

    .call_to_action a {
        display: inline;
        width: 100%;
    }

    .call_to_action span {
        display: inline;
    }

    .home_huddles .textbox_with_icon .call_to_action,
    .home_connect .textbox_with_icon .call_to_action {
        left: 260px;
        bottom: 2px;
    }

    .textbox_with_icon .icon {
        margin-left: 0;
    }

    .container.home_auctions .textbox_with_icon .textbox {
        position: static;
    }

    .container.home_huddles .textbox_with_icon .textbox {
        position: static;
    }

    .container.home_connect .textbox_with_icon .textbox {
        position: static;
    }

    .container.home_auctions {
        padding: 8vw 0;
    }
}

@media (max-width: 850px) {
    #sliderContainer {
        padding: 20px 15%;
    }
}

@media (max-width: 640px) {
    #sliderContainer {
        padding: 20px 15%;
    }
}

@media (max-width: 575px) {

    .order-sm-1 {
        -ms-flex-order: 1 !important;
        order: 1 !important;
    }

    .order-sm-2 {
        -ms-flex-order: 2 !important;
        order: 2 !important;
    }

    .textbox_with_icon .call_to_action {
        position: static;
        margin-top: 15px;
        text-align: center;
    }

    .textbox_with_icon .icon {
        width: 100%;
        height: auto;
        margin-right: 0;
    }

        .textbox_with_icon .icon img {
            display: none;
        }

    .container.home_auctions .textbox_with_icon .textbox,
    .container.home_huddles .textbox_with_icon .textbox,
    .container.home_connect .textbox_with_icon .textbox {
        text-align: center;
    }

        .container.home_auctions .textbox_with_icon .textbox p,
        .container.home_huddles .textbox_with_icon .textbox p,
        .container.home_connect .textbox_with_icon .textbox p {
            max-width: none;
        }

    .container.home_auctions,
    .container.home_huddles,
    .container.home_connect {
        padding: 8vw 0;
    }
}