@import "./variables/colors.css";
@import "./variables/badges.css";
@import "./components/badges.css";
@import "./components/messages.css";

*, *:before, *:after {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    min-height: 100%;
}

body {
    font-family: sans-serif;
    line-height: 1.5;

    /*background-image: url('../images/toolbox-background.png');*/
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
}

.nr-nobody {
    align-items: center;
    background:
        radial-gradient(circle at top left, rgba(74, 222, 128, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.16), transparent 30%),
        linear-gradient(135deg, #f6f8fb 0%, #eef4ff 45%, #f8fbff 100%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    padding: 2rem;
    position: relative;
}

.nr-nobody--withBackground {
    background-color: #f5f7fb;
}

.nr-nobody__overlay {
    background: linear-gradient(180deg, rgba(16, 24, 40, 0.28) 0%, rgba(16, 24, 40, 0.4) 100%);
    inset: 0;
    position: absolute;
}

.nr-nobody__content {
    position: relative;
    width: 100%;
    z-index: 1;
}

.nr-nobody__card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18);
    margin: 0 auto;
    max-width: 660px;
    padding: 2rem 2rem 1.75rem;
}

.nr-nobody__intro {
    margin-bottom: 1.5rem;
    text-align: center;
}

.nr-nobody__logo {
    margin-bottom: 1rem;
}

.nr-nobody__logo img {
    height: 41px;
    max-width: 100%;
    width: auto;
}

.nr-nobody__intro h1 {
    color: #1f2a44;
    font-size: 2rem;
    line-height: 1.15;
    margin: 0 0 0.75rem;
}

.nr-nobody__intro p {
    color: #526079;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 34rem;
}

.nr-nobody__login {
    margin: 0 auto;
    max-width: 460px;
}

.nr-nobody__login .quiqqer-fu-login-social {
    margin-top: 1.5rem;
}

.nr-nobody__login .quiqqer-fu-login-email {
    margin-top: 2rem;
}

.nr-nobody__login .quiqqer-auth-login__password-reset {
    display: flex;
    justify-content: flex-end;
    margin: 1rem auto 0;
    max-width: 460px;
    width: 100%;
}

.nr-nobody__login .quiqqer-auth-login__password-reset .password-reset-btn {
    background: rgba(47, 54, 95, 0.03);
    border: 1px solid rgba(47, 54, 95, 0.06);
    border-radius: 999px;
    color: #657187;
    display: inline-flex;
    line-height: 1.2;
    padding: 0.45rem 0.8rem;
    vertical-align: top;
}

.nr-nobody__login .quiqqer-auth-login__password-reset .password-reset-btn:hover {
    background: rgba(47, 54, 95, 0.05);
    color: #2f365f;
}

@media (max-width: 767px) {
    .nr-nobody {
        padding: 1rem;
    }

    .nr-nobody__card {
        border-radius: 18px;
        padding: 1.5rem 1rem;
    }

    .nr-nobody__intro h1 {
        font-size: 1.65rem;
    }
}

.grid-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    padding-left: 20px;
    padding-right: 20px;
}

.nr {
    display: flex;
    /*flex: 0 0 auto;*/
    height: 100%;
    max-height: 100vh;
    position: fixed;
    width: 100%;
}

h1, h2, h3, h4 {
    font-weight: 300;
}

.text-muted {
    color: #9ba3ad;
}

.btn,
button,
.qui-button.qui-button {
    --color: var(--qui-btn-color, inherit);
    --background-color: var(--qui-btn-bgColor, transparent);
    --border-color: var(--qui-btn-borderColor, transparent);
    --color--hover: var(--qui-btn-color--hover, inherit);
    --background-color--hover: var(--qui-btn-bgColor--hover, transparent);
    --border-color--hover: var(--qui-btn-borderColor--hover, transparent);
    --color--disabled: var(--qui-btn-color--disabled, inherit);
    --background-color--disabled: var(--qui-btn-bgColor--disabled, transparent);
    --border-color--disabled: var(--qui-btn-borderColor--disabled, transparent);

    color: var(--color);
    background-color: var(--background-color);


    border: 1px solid var(--border-color);
    font-family: inherit;
    border-radius: 0.25rem;
    cursor: pointer;
    line-height: 2.5rem;
    font-size: 0.8rem;
    padding: 0 2rem;
    display: inline-flex;
    gap: 0.5em;
    align-items: center;
    justify-content: center;
}

.btn:hover,
.qui-button.qui-button:hover,
.btn:active,
.qui-button.qui-button:active,
.qui-button.qui-button-active {
    color: var(--color--hover);
    background-color: var(--background-color--hover);
    border-color: var(--border-color--hover);
    outline: none;
    text-decoration: none;
}

.btn.btn:disabled,
button:disabled {
    cursor: not-allowed !important;
}

.btn.btn-primary {
    --qui-btn-color: #fff;
    --qui-btn-bgColor: #2F365F;
    --border-color: #2F365F;
    --qui-btn-color--hover: #fff;
    --qui-btn-bgColor--hover: #5661B3;
    --border-color--hover: #5661B3;
}

.btn.btn-secondary {
    --qui-btn-color: #fff;
    --qui-btn-bgColor: #2b2b2b;
    --border-color: #7a7a7a;
    --qui-btn-color--hover: #fff;
    --qui-btn-bgColor--hover: #2b2b2b;
    --border-color--hover: #2b2b2b;
}

.btn.btn-success {
    --qui-btn-color: #fff;
    --qui-btn-bgColor: #38C172;
    --border-color: #38C172;
    --qui-btn-color--hover: #fff;
    --qui-btn-bgColor--hover: #1F9D55;
    --border-color--hover: #1F9D55;
}

.btn.btn-danger {
    --qui-btn-color: #fff;
    --qui-btn-bgColor: #dc3545;
    --border-color: #dc3545;
    --qui-btn-color--hover: #fff;
    --qui-btn-bgColor--hover: #c82333;
    --border-color--hover: #c82333;
}

.btn.btn-light {
    --qui-btn-color: #393f46;
    --qui-btn-bgColor: #e5e5e5;
    --border-color: #e5e5e5;
    --qui-btn-color--hover: #393f46;
    --qui-btn-bgColor--hover: #d9d9d9;
    --border-color--hover: #d9d9d9;
}

.btn.btn-light-outline {
    --qui-btn-color: #393f46;
    --qui-btn-bgColor: transparent;
    --border-color: #e5e5e5;
    --qui-btn-color--hover: #393f46;
    --qui-btn-bgColor--hover: transparent;
    --border-color--hover: #f0f0f0;
}

a.btn-primary,
a.btn-secondary {
    display: inline-block;
    line-height: 1.5rem;
    text-decoration: none;
}

.btn-icon,
.btn-close {
    padding: 0;
    aspect-ratio: 1;
    border-radius: 0.5rem;
    width: 2.75em;
}

.btn-close {
    color: hsl(from currentColor h s l / 0.75);
    background-color: transparent;
    border-color: transparent;

    border-radius: var(--qui-btn-close-radius);
}

.btn-close:hover {
    color: currentColor;
    background-color: transparent;
    border-color: transparent;
}

.btn-icon svg,
.btn-close svg {
    width: 1em;
    height: 1em;
}

.btn-rounded {
    border-radius: var(--qui-radius-full);
}

select,
input[type="date"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="text"],
input[type="tel"],
textarea {
    border: 0;
    border-radius: 0.2rem;
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.21);
    line-height: 2.5rem;
    font-size: 0.8rem;
    padding: 0 1rem;
}

textarea {
    line-height: 1.5rem;
}

input:disabled {
    border-radius: 0.2rem;
    line-height: 2.5rem;
    padding: 0 1rem;
}

select {
    cursor: pointer;
    padding: 0.7rem 1rem;
}

/* Prevent the text contents of draggable elements from being selectable. */
[draggable] {
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: element;
}

.qui-background {
    backdrop-filter: blur(10px) saturate(180%);
    background: rgba(0, 0, 0, 0.75) !important;
    opacity: 1 !important;
}

/**
 * QUI Popup
 */
.qui-window-popup-title.qui-window-popup-title {
    background-color: transparent;
}

button.qui-window-popup-title-close {
    color: var(--qui-colors-muted);
    background: none !important;
}

button.qui-window-popup-title-close:hover {
    background: none !important;
    color: var(--qui-colors-body);
}

.qui-window-popup-buttons:after {
    display: none;
}

.qui-window-popup-buttons.box {
    background: transparent;
    display: flex;
    justify-content: center;
    gap: 0.5em;
}

.qui-window-popup-buttons button {
    margin: 0;
    box-shadow: none;
}

/* submit btn */
.qui-window-popup-buttons button[name="submit"] {
    background: var(--qui-colors-success);
    color: #fff;
    border-color: var(--qui-colors-success);
    order: 10;
}

.qui-window-popup-buttons button[name="submit"]:hover {
    background: var(--qui-colors-success-600);
    color: #fff;
    border-color: var(--qui-colors-success-600);
}

.qui-window-popup-buttons button[name="submit"]:disabled {
    background: var(--qui-colors-success-300);
    color: #fff;
    border-color: var(--qui-colors-success-300);
}

/* cancel btn */
.qui-window-popup-buttons button[name="cancel"] {
    background: var(--qui-colors-light);
    color: var(--qui-colors-dark);
    border-color: var(--qui-colors-light);
}

.qui-window-popup-buttons button[name="cancel"]:hover {
    background: var(--qui-colors-light-600);
    color: var(--qui-colors-dark);
    border-color: var(--qui-colors-light-600);
}

/**
 * 1. height of button
 */
.qui-select.qui-select {
    line-height: 2.5rem; /* 1 */
    height: 2.5rem; /* 1 */
}

/**
 * adapt height to "height of button"
 */
.qui-select.qui-select .icon,
.qui-select.qui-select .text {
    height: inherit;
    line-height: inherit;
}

.qui-select-no-icons .text.text {
    padding-block: 0;
    padding-left: 0.9rem !important;
    font-size: 0.8rem;
}

.qui-select .drop-icon.drop-icon {
    height: inherit;
}

.fa-close:before {
    content: '\00d7';
}

.nr-tool-box {
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, .11), 0 5px 15px 0 rgba(0, 0, 0, .08);
    border-radius: .2rem;
    border: 1px solid #dae1e7;
}

.no-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.namerobot-disable-container {
    cursor: wait;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}

.namerobot-disabled .nr-nav *,
.namerobot-disabled .nr-side-panel * {
    text-shadow: 0 0 10px rgba(51, 51, 51, 0.9);
    opacity: 0.8;
}

button[name="upgrade"] {
    border-radius: 0.25rem;
    display: block;
    line-height: 2rem;
    margin: 1rem auto;
    min-width: 13rem;
}

button[name="upgrade"] .fa,
button[name="upgrade"] .far {
    margin-right: 0.5rem;
}

button[name="upgrade"] span {
    display: inline-block;
    line-height: 2rem;
}

/** Scrollbar
 ============================================== */

::-webkit-scrollbar {
    height: 6px;
    width: 6px;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .26);
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #BBBBBB;
    font-size: 0.8rem;
}

::-moz-placeholder { /* Firefox 19+ */
    color: #BBBBBB;
    font-size: 0.8rem;
}

:-ms-input-placeholder { /* IE 10+ */
    color: #BBBBBB;
    font-size: 0.8rem;
}

:-moz-placeholder { /* Firefox 18- */
    color: #BBBBBB;
    font-size: 0.8rem;
}


/** messages
 ============================================== */

.message-info,
.message-error {
    display: flex;
    padding: 1rem;
}

.message-info {
    background: #e8fffe;
    color: #39948b;
}

.message-info span:first-child {
    color: #4dc0b5;
    flex-grow: 0;
    flex-shrink: 0;
    font-size: 1.25rem;
    width: 2rem;
}

.message-info span {
    display: inline-block;
    flex-grow: 1;
    max-width: calc(100% - 2rem);
}

.message-error {
    background: #fcebea;
    border-width: 0;
    border-color: #ef5753;
    border-left: 4px;
    color: #cc1f1a;
}

.nobody .messages-message {
    background: #fcebea !important;
    border-width: 0 !important;
    border-color: #ef5753 !important;
    border-left-width: 4px !important;
    color: #cc1f1a !important;
    font: 12px/16px sans-serif;
    flex-direction: column;
    padding: 1rem !important;
}

.nobody .message-error .messages-message-header {
    margin: 0 0 5px 0 !important;
}

.message-info span > * {
    max-width: 100%;

    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}

.namerobot-tool-message {
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .12);
    margin: 0.5rem 0;
    max-width: 100%;
    width: 100%;
    background-color: #e8fffe;
    border-left-color: #4dc0b5;
    color: #0d3331;
    border-radius: 0.25rem;
    border-left-width: 4px;
    border-left-style: solid;
    padding: 0.75rem 1.5rem 0.75rem 1rem;
    font-size: 0.9rem;
}

.namerobot-tool-message-text {
    flex-grow: 1;
    width: calc(100% - 2rem);
}

.namerobot-tool-message-icon {
    float: left;
    display: inline-block;
    color: #4dc0b5;
    font-size: 1.2rem;
    width: 2rem;
}

/** qui customizing
 ============================================== */

@media screen and (min-width: 768px) {
    .qui-window-popup {
        border-radius: 0.25rem;
    }
}

.qui-window-popup-title {
    font-size: 0.8rem;
}

.window-logout .textbody {
    width: 100% !important;
}

.qui-window-popup h1 {
    font-size: 1.75rem;
}

.qui-window-popup-title-close {
    line-height: 20px !important;
    padding: inherit;
}

.qui-loader-inner-fa-circle-o-notch {
    display: flex;
    justify-content: center;
}

/** NameRobot loader
 ============================================== */

.nr-loader {
    align-items: center;
    background: #fff;
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    position: fixed;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 100000;
}

.nr-loader-animation {
    display: block;
    font-size: 5rem;
    margin-bottom: 2rem;
}

.nr-loader-animation-tip {
    clear: both;
    display: block;
    max-width: 400px;
    width: 100%;
}

/** NameRobot left nav
 ============================================== */

.nr-nav {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    overflow: auto;
    width: 300px;

    -webkit-overflow-scrolling: touch;
}

.nr-nav nav {
    flex-grow: 1;
}

.nr-nav header {
    text-align: center;
    padding: 0;
    width: 100%;
}

.nr-nav header .fa {
    color: #fff;
    font-size: 24px;
    padding: 0 0 20px;
}

.nr-nav-title,
.nr-nav-title-description {
    clear: both;
    display: block;
    width: 100%;
}

.nr-nav-title {
    font-size: 20px;
}

.nr-nav-title-description {
    font-size: 12px;
}

.nr-nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.nr-nav ul li {
    font-size: 15px;
    width: 100%;
}

.nr-nav ul li .fa,
.nr-nav ul li .far {
    flex-shrink: 0;
    text-align: center;
    width: 30px;
}

.nr-nav ul a {
    border-left: 5px solid;
    padding: 10px;
    text-decoration: none;
}

.nr-nav footer {
    font-size: 12px;
    padding: 0 0 20px 0;
    text-align: center;
}

.nr-nav-section {
    margin-top: 20px;
}

.nr-nav-section header {
    text-align: left;
    margin-bottom: 10px;
    padding: 0 0.8rem;
}

.nr-nav-section header h2 {
    font-size: 12px;
    margin: 0;
    padding: 0;
}

/** NameRobot sub nav
 ============================================== */

.side-panel-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.side-panel-menu ul li {
    display: flex;
    font-size: 15px;
    width: 100%;
}

.side-panel-menu ul li a {
    border-left: 5px solid transparent;
    display: flex;
    color: #0c1e29;
    padding: 0.75rem 0;
    text-decoration: none;
    width: 100%;
}

.side-panel-menu ul li a.active {
    border-left: 5px solid #6574cd;
    color: #6574cd;
}

.side-panel-menu ul li a:hover {
    background: rgba(0, 0, 0, 0.1);
}

.side-panel-menu-entry-icon {
    padding-top: 0.1rem;
    text-align: center;
    width: 50px;
}

.side-panel-menu-entry-text {
    width: calc(100% - 50px);
}

/** NameRobot MAIN
 ============================================== */

.nr-desktop {
    display: flex;
    flex-grow: 1;
    flex-shrink: 1;
    flex-direction: column;
    overflow: auto;

    -webkit-overflow-scrolling: touch;
}

.nr-desktop-container {
    align-items: center;
    display: flex;
    overflow: auto;
    height: 100%;
    padding-bottom: 20px;
    justify-content: center;

    -webkit-overflow-scrolling: touch;
}

/** Media queries
 ============================================== */

.nr-desktop-header-buttons-subNav {
    display: none;
}

@media (max-width: 1000px) {
    .nr {
        display: flex;
    }

    .nr-nav,
    .nr-nav nav {
        width: 60px;
    }

    .nr-nav-section header h2 {
        font-size: 10px;
        text-align: center;
    }

    .nr-nav li a span:first-child {
        text-align: center !important;
    }

    .nr-nav-logo-slogan {
        display: none;
    }

    .nr-nav header {
        padding: 0;
    }

    .nr-nav-logo {
        padding: 0;
    }

    .nr-nav-avatar {
        width: 60px;
    }

    .nr-nav-title-description {
        display: none;
    }

    .nr-nav-menu-linkText {
        display: none;
    }

    .nr-nav .nr-nav-avatar {
        height: 40px;
        margin-top: 10px;
        width: 40px;
    }

    .nr-nav-footer {
        display: none;
    }
}

@media (max-width: 770px) {
    .nr {
        height: calc(100vh - 60px);
    }

    .nr-nav {
        display: none;
    }

    .nr-desktop-container {
        align-items: flex-start;
        justify-content: flex-start;
        overflow-x: hidden;
        padding: 0;
    }

    .nr-desktop-header-buttons-profile {
        display: none;
    }

    .nr-desktop-header-buttons-subNav {
        display: inline-block;
    }
}

/** Mobile footer menu
 ============================================== */

.nr-mobile-footer-menu {
    background: #242c3a;
    display: none;
    height: 3.5rem;
}

.nr-mobile-footer-menu button {
    color: #dedede;
    flex-grow: 1;
    padding: 0;
}

@media (max-width: 770px) {
    .nr-mobile-footer-menu {
        bottom: 0;
        display: flex;
        position: fixed;
        width: 100%;
    }
}


/** Login
 ============================================== */
.quiqqer-login {
    padding-inline: 1rem;
}

.quiqqer-auth-login-container label {
    display: block;
    margin-bottom: 10px;
    position: relative;
    width: 100%;
}

.quiqqer-auth-login-container label > span {
    display: block;
    padding-bottom: 5px;
    width: 100%;
}

.quiqqer-auth-login-container input {
    margin-left: 0;
    width: 100%;
}

.quiqqer-auth-login-container .btn.login {
    width: 100%;
    margin-top: 1rem;
}

.quiqqer-auth-login__password-reset {
    text-align: right;
    margin-top: 1rem;
}

/* passwort reset */
.quiqqer-auth-login-passwordreset__info {
    margin-bottom: 1rem;
}

.quiqqer-auth-login-passwordreset label,
.quiqqer-auth-login-passwordreset input {
    display: block;
    width: 100%;
}

.quiqqer-auth-login-passwordreset .btn {
    margin-top: 1rem;
    width: 100%
}

.quiqqer-fu-login-forget-password-link {
    font-size: 12px;
}

/** general word
 ============================================== */

.word {
    color: #606f7b;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
}

.word img {
    margin-right: 0.5rem;
}


/** word dragging
 ============================================== */

.dragging-word {
    background: #3f4975;
    border-radius: 0.25rem;
    color: #fff !important;
    float: left;
    overflow: hidden;
    padding: 0.5rem 1rem;
    position: absolute;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.nr-dropper {
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 4rem;
    height: 100%;
    justify-content: center;
    position: absolute;
    text-align: center;
    width: 100%;
    z-index: 10;
}

.nr-dropper .far {
    display: block;
    text-align: center;
    width: 100%;
}

.nr-dropper-text {
    clear: both;
    display: block;
    font-size: 1.5rem;
    margin-top: 1rem;
    text-align: center;
    width: 100%;
}

.nr-dropper-leaver {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 11;
}

/** tables
 ============================================== */

.namerobot-table tr:nth-child(odd) {
    background: #f1f5f8;
}

.namerobot-table td {
    padding: 0.5rem;
    vertical-align: top;
}

.namerobot-table td + td {
    padding: 0.5rem 0.5rem 0.5rem 1rem;
}

.namerobot-table--bold-first tr td:first-child {
    color: #3d4852;
    font-weight: bold;
}

@media (max-width: 770px) {
    .namerobot-table tr {
        display: flex;
        flex-direction: column;
    }

    .namerobot-table td,
    .namerobot-table td + td {
        padding: 0.5rem;
    }
}


/** FA workarounds
 ============================================== */

.fa.fa-facebook:before {
    content: "\f39e" !important;
    font-family: "Font Awesome 5 Brands";
}

.fa.fa-google:before {
    content: "\f1a0" !important;
    font-family: "Font Awesome 5 Brands";
}

/** Browser workarounds
 ============================================== */

.html5tooltip-text {
    font-size: 12px;
}

.mac .html5tooltip-text {
    font-weight: 300;
}

/** Order process
 ============================================== */

.quiqqer-order-basket-articles-header-quantity,
.quiqqer-order-basket-articles-unitPrice,
.quiqqer-order-basket-articles-article-quantity,
.quiqqer-order-basket-articles-article-price {
    display: none !important;
}

.quiqqer-payment-paypal-recurring-paymentdisplay-btn {
    border: none !important;
}

.quiqqer-payment-paymill-btn-pay button,
.quiqqer-payment-paypal-recurring-paymentdisplay-btn,
.quiqqer-payment-stripe-submit button {
    background-color: #1F9D55 !important;
    border: none !important;
    color: #fff !important;
    height: 50px !important;
    margin: 20px 0 !important;
}

.quiqqer-payment-paymill-btn-pay button:hover,
.quiqqer-payment-paypal-recurring-paymentdisplay-btn:hover,
.quiqqer-payment-stripe-submit button:hover {
    background: #1F9D55 !important;
}

.quiqqer-order-basket-articles-article-remove button {
    background: transparent;
    line-height: 1.5rem;
    margin-left: 10px;
    padding: 0 10px;
}

.quiqqer-order-customerData-edit label span {
    width: 39% !important;
}

/****************/
/* step payment */
/****************/
.quiqqer-order-step-payments-list {
    margin-top: 10px;
}

/*****************/
/* step checkout */
/*****************/
.quiqqer-order-step-checkout-deliveryAddress {
    display: none;
}

.quiqqer-order-step-checkout-payments {
    margin: 20px 0;
}

.quiqqer-order-ordering-step h2 {
    margin-bottom: 10px;
}

.quiqqer-order-step-checkout-article {
    margin-top: 20px;
}

.quiqqer-order-step-checkout-article .articles-article {
    border-bottom: 1px solid #DDDDDD;
    margin-bottom: 20px;
    padding: 0 20px;
    width: 100%;
}

.quiqqer-order-step-checkout-article .articles-article-header th {
    color: #999999;
    font-size: 12px;
    line-height: 30px;
}

.quiqqer-order-step-checkout-article .articles-article td {
    padding-bottom: 20px;
    font-weight: normal;
}

.articles-article-header-quantity,
.articles-article-header-unitprice,
.articles-article-header-price,
.articles-article-quantity,
.articles-article-unitprice,
.articles-article-price {
    text-align: right;
}

.quiqqer-order-step-checkout-article .articles-sum td {
    font-size: 14px;
}

.quiqqer-order-step-checkout .quiqqer-order-step-checkout-notice label {
    width: 100%;
    border: 1px solid #ddd;
    background: #fafafa;
    padding: 0.5rem 0.5rem;
}

/**
 * Register / Login for nobody
 */
