:root {
    --color-background: #FFFFFF;
    --color-secondary: #14A0DB;
    --color-gray: #B7B7B7;
    --margin-small: .35rem;
    --margin-regular: .7rem;
    --font-size-big: 17px;
    --font-size-large: 19px;
}

body, html {
    padding: 0;
    margin: 0;
    width: 100%;
    min-height: 100%;
    background-color: var(--color-background);
    font-family: 'Montserrat', sans-serif !important;
    font-style: normal;
}

.page {
    margin: 0 auto;
}

.page.large {
    max-width: 1280px;
}

.page.small {
    max-width: 768px;
}

.app-bar {
    display: flex;
    justify-content: space-between;
}

.app-bar > .back-button {
    cursor: pointer;
    height: 32px;
}

.app-bar > .title {
    flex-grow: 1;
}

.app-bar, .page-content {
    padding: var(--margin-regular) var(--margin-regular) 0 var(--margin-regular);
}

.content-section {
    padding: var(--margin-regular) 0;
}

.content-section-title {
    font-weight: bold;
    font-size: var(--font-size-large);
    color: #142458;
}

.main-padding-margin {
    padding: 15px 15px 15px 1px;
    margin: 20px 10px 10px 10px;
}

.main-margin-r {
    margin-right: 10px;
}

.main-margin {
    margin: 20px 10px 10px 10px;
}

.input-login {
    border-radius: 6px;
    position: relative;
}

.input-login > label {
    padding-left: 5px;
    padding-right: 5px;
    position: absolute;
    top: -10px;
    left: 10px;
    color: var(--color-secondary);
    background-color: white;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
}

.input-login > input, .input-login > input:active, .input-login > input:focus .input-login > input:hover, .input-login > select {
    border: none;
    color: #142458 !important;
    font-size: 16px;
    font-weight: 700;
    line-height: 17px;
    letter-spacing: -0.0009em;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

.form-actions > button {
    height: 49px;
    width: calc(100% - 20px);
    margin: 10px;
    border: none;
    background-color: #FA6A2E;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    border-radius: 4px;
    line-height: 15px;
}

.form-actions > button.btn-secondary {
    background-color: #FFFFFF !important;
    border: 2px solid var(--color-gray) !important;
    color: #FA6A2E !important;
}

.form-actions > button:hover, .form-actions > button:active, .form-actions > button:focus-visible, .default-button:hover {
    background-color: #FFFFFF !important;
    border: 2px solid #FA6A2E !important;
    color: #FA6A2E !important;
}

.button-wrapper {
    display: flex;
    justify-content: center;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.title {
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
    text-align: left;
    letter-spacing: -0.0014em;
    color: #142458;
}

.subtitle {
    display: block;
    font-weight: 700;
    font-size: 16px;
    line-height: 32px;
    text-align: left;
    letter-spacing: -0.0014em;
    color: #142458;
}

.close-button {
    color: #F9692D;
    cursor: pointer;
    float: right;
    height: 100%;
    padding: 8px;
}

.flatpickr-day.selected {
    background: #F9692D !important;
    border-color: #F9692D !important;
}

.show-hide-button {
    z-index: 2;
    right: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: .375rem .75rem;
    cursor: pointer;
}

.mh-24 {
    max-height: 24px;
}

.form-wrapper {
    height: calc(100% - 124px);
    position: relative;
}

.lbl:valid {
    display: block;
}

.border-grey {
    border: 2px solid #D4CCCC;
}

.border-blue {
    border: 2px solid var(--color-secondary);
}

.border-red {
    border: 2px solid #EE0039;
}

.input-login input:valid:not([type='number']) + .input-placeholder,
.input-login input:disabled:not([value='']) + .input-placeholder,
.input-login input:-webkit-autofill + .input-placeholder,
.input-login input:focus + .input-placeholder,
.input-login.border-blue input.date-picker + .input-placeholder {
    display: none;
}

.input-placeholder {
    position: absolute;
    font-weight: 700 !important;
    font-size: 16px !important;
    line-height: 17px !important;
    letter-spacing: -0.0009em !important;
    color: #142458 !important;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 28%;
    right: 20%;
    white-space: nowrap;
    padding-left: 0.1em;
}

.step-table {
    width: 100%;
    margin-top: 16px;
}

.step-table tr th {
    width: 50%;
    letter-spacing: -0.0009em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    line-height: 15px;
    padding-bottom: 10px;
    padding-left: 10px;
    text-align: left;
}

.active-step {
    border-bottom: 4px solid #FA6A2E;
    color: var(--color-secondary);
    font-size: .8rem !important;
    white-space: nowrap;
}

.inactive-step {
    border-bottom: 4px solid var(--color-gray);
    color: var(--color-gray);
    font-size: .8rem !important;
    white-space: nowrap;
}

.requirements-table {
    margin-left: 10px;
    font-weight: 500;
    font-size: 14px;
    line-height: 12px;
    letter-spacing: -0.0009em;
    color: #142458;
}

.requirements-table td {
    padding: 5px 5px 5px 0;
}

.requirements-table img {
    width: 16px;
    margin-right: 5px;
    margin-bottom: 4px;
}

.required-note {
    line-height: 17px;
    letter-spacing: -0.0009em;
}

.required-star {
    color: #EE0039;
}

.required-field > .input-placeholder::after, .required-field > label::after, .required-consent > label::before {
    content: ' * ';
    color: #EE0039;
}

.disabled-required-star > .input-placeholder::after, .disabled-required-star > label::after {
    content: '' !important;
}
.disabled-btn {
    background-color: var(--color-gray) !important;
}

.disabled-input, .disabled-input > input {
    background-color: #e9ecef !important;
}

.big-text {
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.0011em;
    color: #142458;
}

.main-title {
    font-size: var(--font-size-large) !important;
    line-height: 23px !important;
}

.normal-text {
    font-weight: 700;
    font-size: 12px;
    line-height: 17px;
    letter-spacing: -0.0009em;
    color: #142458;
}

.required-option-placeholder {
    font-weight: bold;
    position: absolute;
    left: 13px;
    top: 17px;
}

.huge-text {
    font-weight: 700;
    font-size: var(--font-size-large);
    line-height: 23px;
    letter-spacing: -0.0014em;
    color: #142458;
}

.thin-text {
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: -0.0009em;
    color: #142458;
}

.mail {
    width: 24px;
    margin-right: 10px;
}

.info-container div {
    margin: 16px;
}

.bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.checkbox-wrapper input {
    border: 2px solid #142458;
    border-radius: 4px;
    min-width: 18px;
    height: 18px;
    cursor: pointer;
    outline: none;
    appearance: none !important;
    -moz-appearance: none !important;
    -webkit-appearance: none !important;
    -o-appearance: none !important;
}

.checkbox-wrapper {
    margin-top: 16px;
    display: flex;
    align-items: center;
}

.checkbox-wrapper label {
    margin-left: 16px;
}

.checkbox-wrapper input:checked {
    background-image: url("../images/check.png");
    background-position: center;
    -webkit-background-size: 16px;
    -moz-background-size: 16px;
    -o-background-size: 16px;
    background-size: 16px;
    background-repeat: no-repeat;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 22px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #FA6A2E;
}

input:focus + .slider {
    box-shadow: 0 0 1px #FA6A2E;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.switch-wrapper {
    display: flex;
    align-items: start;
}

.switch-wrapper span {
    width: 110%;
}

.switch-wrapper div {
    width: 100%;
    padding-left: 20px;
}

.ml-16 {
    margin-left: 16px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.arrow-back {
    color: #F9692D;
    cursor: pointer;
    float: left;
    padding: 5px;
}

.info-wrapper {
    padding: 40px;
    border: 1px solid #D4CCCC;
    border-radius: 4px;
}

.default-button {
    margin: 0 !important;
    height: 49px;
    width: calc(100% - 20px);
    border: none !important;
    background-color: #FA6A2E !important;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    border-radius: 4px;
    line-height: 15px;
}

.description {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #142458;
}

.inner-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #142458;
}

.main-margin-l {
    margin-left: 10px;
}

.two-buttons {
    width: calc(50% - 25px) !important;
}

.orange-text-button, .orange-text-button:hover {
    text-decoration: none;
    color: #FA6A2E;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 125% */
    letter-spacing: -0.014px;
    text-transform: uppercase;
    display: block;
}

.underline-text-button, .underline-text-button:hover {
    text-decoration: underline;
    color: #142458;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.014px;
    display: block;
}

.grey-border {
    border-radius: 4px;
    border: 1px solid #D4CCCC;
}

.admin-info {
    float: right;
    text-align: justify;
}

.clearfix {
    clear: both;
}

#show-admin-info {
    cursor: pointer;
    float: right;
    margin: 10px 10px 30px 10px;
}

#show-admin-info img {
    width: 24px;
    padding: 5px;
}

#show-admin-info div {
    display: inline-block;
    font-size: 14px;
}

.radio input {
    border: 2px solid #142458;
    border-radius: 100%;
    padding: 5px;
}

.radio input:checked {
    background-image: url("../images/radio.png");
    background-size: 10px;
    border-color: #FA6A2E;
}

#load-gus-btn {
    background-color: var(--color-secondary) !important;
}

#load-gus-btn:hover {
    color: var(--color-secondary) !important;
    border-color: var(--color-secondary) !important;
    background-color: transparent !important;
}

.modal-title {
    text-align: center;
}

.gus-item {
    cursor: pointer;
    border: 2px solid var(--color-secondary);
    padding: 10px;
    margin: 10px;
    border-radius: 4px;
}

.gus-item:hover {
    border: 2px solid #FA6A2E;
    background-color: rgba(250, 106, 46, 0.1);
}

#gus-success, #gus-error {
    text-align: center;
}

#gus-success div {
    display: inline-block;
    text-transform: uppercase;
    font-size: 16px;
}

#gus-success img, #gus-error img {
    padding: 5px;
}

#gus-error div {
    color: #EE0039 !important;
    display: inline-block;
    font-size: 16px;
}

#not-in-ue {
    background-color: #ede025;
    padding: 1rem;
    border-radius: 6px;
}

#nip-form {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.nip-normal {
    width: 100%;
}

.ue-nip {
    width: 75%;
}

.ue-country-code {
    width: 15%;
    background-color: #e9ecef;
}

.ue-country-code .input-placeholder {
    width: 20%;
    color: gray !important;
    transform: translate(0%, -50%);
}

.header-with-trailing {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.d-none {
    visibility: hidden
}

.two-per-row {
    width: calc(50% - 23px) !important;
    display: inline-block;
}

#invoice-data-wrapper label, .dark-blue {
    color: #142458;
}

.readonly {
    -webkit-filter: grayscale(100%);
}

.error {
    margin-left: 24px;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: -0.0009em;
    color: #EE0039;
    margin-bottom: 10px;
}

.error > img {
    width: 14px;
    height: 14px;
}

.red {
    color: #EE0039 !important;
}

.p-l-10 {
    padding-left: 10px;
}

.center-w-100 {
    width: 100%;
    text-align: center;
}

.iframe {
    width: 100% !important;
    position: fixed;
    z-index: 30;
    left: 0;
    top: 0;
    height: 100%;
    overflow: auto;
}

.iframe-content-container {
    height: 100% !important;
    position: relative;
}

.iframe-content-container > .row {
    left: 0;
    right: 0;
    position: absolute;
    top: 10%;
    padding: 30px;
}

.iframe-content-container > .row > div:first-child {
    padding: 30px 30px 0 30px;
}

.iframe-content-container > .row > div:last-child {
    padding: 0 15px 15px 15px;
}

.float-left {
    float: left;
}

.orange-button, .orange-button:hover {
    text-decoration: none;
    background-color: #FA6A2E;
    color: #FFFFFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 125% */
    letter-spacing: -0.014px;
    text-transform: uppercase;
    display: block;
    border: none !important;
    border-radius: 4px;
}

.info-container > button {
    width: 100%;
    margin: 0 auto;
}

.orange-link {
    color: #FA6A2E;
}

.inherit-link, .inherit-link:hover {
    color: inherit;
}

.collapse-arrow {
    transform: rotate(180deg);
}

.collapsed > .collapse-arrow {
    transform: none;
}

.padding-5 {
    padding: 5px;
}

footer {
    position: fixed;
    bottom: 0;
    right: 0;
    padding-right: 15px;
}


@media only screen and (max-width: 600px) {
    .admin-info {
        width: 90%;
        float: none;
        text-align: justify;
    }

    .info-container > button {
        width: 100%;
    }

    .arrow-back {
        padding: 5px 0;
    }

    .title-wrapper {
        display: flex;
        justify-content: center;
    }

    .show-hide-button {
        right: 0;
    }

    .subtitle {
        line-height: unset;
    }

    .row > .main-padding-margin {
        margin-left: 0;
    }

    .description {
        display: inline-block;
        margin-top: 0;
    }

    .bottom-mobile {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .iframe-content-container > .row > div {
        padding: 0 !important;
    }

    .iframe-content-container > .row {
        position: initial;
        display: block;
        padding: 10px;
    }

    .iframe-content-container {
        background-color: #FFFFFF;
    }

    .iframe-content-container button {
        padding: 15px;
        margin: auto auto 15px auto;
        width: calc(100% - 20px);
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .two-per-row-25 {
        width: calc(40% - 23px) !important;
        display: inline-block;
    }

    .two-per-row-75 {
        width: calc(60% - 23px) !important;
        display: inline-block;
    }

    .info-wrapper, .frame {
        padding: 0 !important;
        border: none !important;
    }

    .two-buttons {
        width: calc(100% - 25px) !important;
    }
    .mt-16-mobile {
        margin-top: 16px !important;
    }
    .mobile-bottom {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: calc(100% - 16px) !important;
        z-index: 9999;
        margin: 0 8px 8px;
    }
}

.mb-30 {
    margin-bottom: 30px !important;
}

.h-auto {
    height: auto !important;
}

.two-per-row-25 {
    width: calc(25% - 23px);
    display: inline-block;
}

.two-per-row-75 {
    width: calc(75% - 23px);
    display: inline-block;
}

.grey-placeholder {
    color: var(--color-gray) !important;
    text-transform: lowercase;
}

.error-title {
    font-weight: 600;
    font-size: var(--font-size-large);
    line-height: 23px;
    color: #142458;
    letter-spacing: -0.0014em;
}

.error-message {
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    color: #142458;
    letter-spacing: -0.0009em;
}

.error-button {
    padding: 20px 48px 20px 48px;
    font-size: 12px;
    font-weight: 700;
    line-height: 15px;
    letter-spacing: -0.0009em;
}

@media (min-width: 768px) {
    .mobile-only {
        display: none;
    }

    .error-title {
        font-weight: 700;
        font-size: 22px;
        line-height: 32px;
        color: #142458;
    }

    .error-message {
        font-weight: 600;
        font-size: 16px;
        line-height: 22px;
        color: #142458;
    }

    .error-button {
        padding: 20px 48px 20px 48px;
        font-weight: 700;
        font-size: 16px;
        line-height: 20px;
    }

    .logo-container {
        margin-left: 25px;
        padding-bottom: 25px;
        padding-top: 25px;
        display: flex !important;
        align-items: center;
        justify-content: start;
    }

    .logo-title {
        margin-left: 16px;
        font-size: 16px;
        font-weight: 600;
        line-height: 22px;
        text-align: left;
        color: #142458;
    }

    .logo-image {
        width: 64px;
        height: 24px;
    }
}

.logo-container {
    display: none;
}

.orange-border-button, .orange-border-button:hover {
    text-decoration: none;
    color: #FA6A2E !important;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.014px;
    text-transform: uppercase;
    background: #fff !important;
    border: 1px solid var(--color-gray) !important;
    display: inline-block;
}

.w-100 {
    width: 100%;
}


.frame {
    padding: 40px;
    border: 1px solid #D4CCCC;
    border-radius: 4px;
}