/*
.b2b-contact .contact {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    color: #ccc;
    background: #29363C;
    padding: .4rem 1rem;
    margin-top: 30px;
}

.b2b-contact .contact .title {
    width: 100%;
}

.b2b-contact .contact .title h2 {
    font-size: 16px;
    text-align: center;
    margin-bottom: 15px;
}

.b2b-contact .contact .items {
    display: inherit;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 12px;
}

.b2b-contact .contact .items span {
    margin: 5px 0;
}

.b2b-contact .contact .items span:not(:first-of-type) {
    margin-left: 0;
}

.b2b-contact .contact .items span a,
.b2b-contact .contact .items span a:visited {
    color: #ccc;
}

.b2b-contact .contact .items span a:hover {
    color: #ccc;
}

@media screen and (min-width: 768px) {
    .b2b-contact .contact {
        width: 100%;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: baseline;
    }

    .b2b-contact .contact .title {
        width: 15%;
    }

    .b2b-contact .contact .title h2 {
        text-align: left;
        margin: 0;
    }

    .b2b-contact .contact .items {
        flex-flow: row nowrap;
        justify-content: flex-end;
        align-items: center;
        width: 85%;
    }

    .b2b-contact .contact .items span {
        margin: 0;
    }

    .b2b-contact .contact .items span:not(:first-of-type) {
        margin-left: 4rem;
    }
}

/** 
* when Positova/B2bregistration/Block/Contact.php is enabled override some styles
* for customer_account_login, b2b_account_request & customer_account_forgotpassword 
**/

/** customer_account_login */
/*
.b2b-contact.customer-account-login .page-main-inner .columns .column.main {
    padding: 2rem 0 0;
}

.b2b-contact.customer-account-login .page-main-inner .columns .column.main .login-container {
    padding: 3rem 2rem 0 1rem;
}

.b2b-contact.customer-account-login .page-main-inner .columns .column.main .login-info-block {
    padding: 1rem 0 0 1rem;
}

@media screen and (min-width: 768px) {
    .b2b-contact.customer-account-login .page-main-inner .columns .column.main {
        flex-flow: row wrap;
    }

    .b2b-contact.customer-account-login .page-main-inner .columns .column.main .login-container {
        max-width: 49%;
        padding: 1rem 2rem 0 0;
    }

    .b2b-contact.customer-account-login .page-main-inner .columns .column.main .login-info-block {
        max-width: 49%;
    }
}

/** b2b_account_request */
/*
.b2b-contact.b2b-account-request #maincontent .column.main {
    padding: 0;
}

.b2b-contact.b2b-account-request #maincontent .column.main #form-validate {
    padding: 2rem;
}

.b2b-contact.b2b-account-request #maincontent .column.main {
    display: flex;
    flex-flow: column wrap;
}

.b2b-contact.b2b-account-request #maincontent .column.main .register-company-info-box {
    width: 100%;
    padding: 2rem;
}

.b2b-contact.b2b-account-request #maincontent .column.main #form-validate {
    width: 100%;
}

@media screen and (min-width: 768px) {
    .b2b-contact.b2b-account-request #maincontent .column.main {
        display: flex;
        flex-flow: row wrap;
    }

    .b2b-contact.b2b-account-request #maincontent .column.main #form-validate {
        width: 75%;
    }

    .b2b-contact.b2b-account-request #maincontent .column.main .register-company-info-box {
        padding: 15px 0px;
    }
}


/** customer_account_forgotpassword */
/*
.b2b-contact.customer-account-forgotpassword #maincontent .column.main {
    padding: 0;
}

.b2b-contact.customer-account-forgotpassword #maincontent .column.main .form.password.forget {
    padding: 2rem;
}
*/

.form.forget {
    max-width: 100% !important; 
}