/* Minification failed. Returning unminified contents.
(449,22): run-time error CSS1033: Expected closing bracket, found 's'
(449,23): run-time error CSS1031: Expected selector, found ']'
(449,23): run-time error CSS1025: Expected comma or open brace, found ']'
 */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
html, html a {
    -webkit-font-smoothing: antialiased;
    font-size: 13px;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
}

body {
    background-color: #fff;
    font-family: "DM Sans", sans-serif;
    margin: 0;
    position: relative;
    min-height: 100vh;
}
    body * {
        box-sizing: border-box;
        font-family: "DM Sans", sans-serif;
    }
.top {
    display: none;
}
.container {
    margin: 0 auto;
    position: relative;
    padding: 150px 0 0;
    height: inherit;
    min-height: inherit;
}
    .container.home {
        padding: 0;
    }
#login, .blockquote {
    position: relative;
    width: 100%;
}
#content {
    display: flex;
    height: inherit;
    flex-direction: column;
    min-height: inherit;
}
.register-form {
    padding: 40px;
    width: 100%;
    max-width: 450px;
}
.blockquote {
    background-image: url('../Content/img/logowanie_small.webp');
    min-height: 500px;
    flex: 1;
}
.blockquote-desc {
    padding: 46px 0 0 30px;
}
    .blockquote-desc h2 span {
        font-size: 46px;
        display: block;
        line-height: 46px;
        font-weight: 800;
        color: #fff;
    }
.login-area {
    padding: 14px 0 38px;
}
.logo-mobile {
    width: 97px;
    height:50px;
    margin:0 auto;
    display: block;
}
.login-container {
    padding: 0 30px;
}
.login-container h2 {
    font-size: 30px;
}
.submit-check {
    flex-direction: column;
}
.submit-check .btn {
    margin: 0 0 30px;
}
.login,
.password {
    position: relative;
    margin: 0 30px;
}


    @media screen and (min-width:414px) {
        .login-container {
            max-width: 382px;
            padding: unset;
        }
    }
    @media only screen and (min-width : 1024px) {
        .logo-mobile {
            display: none;
        }

        #login, .blockquote {
            width: 50%;
        }

        .top {
            display: flex;
            width: 100%;
            height: 150px;
            align-items: center;
            padding: 0 80px 0 40px;
            justify-content: space-between;
        }

            .top div {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 40px;
            }

                .top div p {
                    color: #005537;
                    font-size: 24px;
                    font-weight: 800;
                }
        .container {
            padding:150px 0 0;
        }
        .container.home {
            padding:0;
        }
        #content {
            height: calc(100% - 150px);
            flex-direction: row;
        }
        .blockquote {
            background-image: url('../Content/img/logowanie_large.webp');
        }
        .blockquote-desc h2 span {
            font-size: 80px;
            line-height: 80px;
        }

        .login-area {
            padding: 136px 0 0;
        }
        .login-container h2 {
            font-size: 48px;
            margin: 0 0 64px;
        }
        .submit-check {
            flex-direction: row;
        }
        .submit-check .btn {
            order: 2;
            margin: unset;
        }
        .submit-check .remember {
            order: 1;
        }
        .login,
        .password {
            margin: unset;
        }
    }

    @media only screen and (min-width : 1120px) {
        .logo-mobile {
            display: none;
        }
    }

.login-area {
    display: flex;
    flex-direction: column;
    background-color: #005537;
}

.login-container {
    position: relative;
    margin: 0 auto;
}

.blockquote {
    background-size: cover;
    background-position: top left;
}

.blockquote-desc {
    padding: 55px 45px 0;
}

.remember {
    color: #fff;
    font-size: 14px;
}
    .remember.accept-terms {
        border-radius: 4px;
        border: 2px solid #96FF00;
        padding: 20px;
        margin: 0 0 30px;
    }
        .remember.accept-terms .validation {
            margin: 0 0 10px;
        }
            .remember.accept-terms .validation span {
                color: #96FF00;
                font-weight: bold;
            }
input.custom-checkbox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 24px;
    height: 24px;
    min-height: unset;
    border: 2px solid #96FF00;
    border-radius: 4px;
    background-color: transparent;
    display: inline-block;
    position: relative;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
}
    input.custom-checkbox:checked {
        background-color: #96FF00;
        border-color: #96FF00;
    }
    input.custom-checkbox::after {
        content: '';
        position: absolute;
        display: none;
        left: 7px;
        top: 2px;
        width: 5px;
        height: 10px;
        border: solid #005537;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }

    input.custom-checkbox:checked::after {
        display: block;
    }
    input.custom-checkbox:hover {
        border-color: #96FF00;
    }
    input.custom-checkbox:focus {
        outline: none;
        box-shadow: 0 0 4px rgba(76, 175, 80, 0.6);
    }

.remember label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    cursor: pointer;
    color: #fff;
    padding: 0;
}
.field-validation-error::after {
    clear: both;
    content: " ";
}

.field-validation-error, .validation {
    color: #52acfa;
    display: block;
    font-size: 14px;
    margin: 0 0 5px;
}
.register-form .validation {
    margin: 0 0 0 240px;
    display: inline-block;
}
.password .field-validation-error,
.login .field-validation-error {
    padding-left: 0px;
}
.buttons .field-validation-error {
    padding-left:0;
}
.validation-summary-errors {
    display: none;
}


h2 {
    margin-top: 0px;
}
.login input, .password input {
    font-size: 16px;
    background: #fff;
    border: 1px solid #C4C4C4;
    font-weight: 400;
    padding: 0 10px 0 15px;
    width: 100%;
    height: 40px;
    margin: 0 0 32px;
    border-radius: 4px;
}
    .login input.input-validation-error, .password input.input-validation-error {
        margin: 0 0 5px;
    }

.validation-summary-valid ul {
    margin: 0;
    padding: 0 0 0 72px;
}

h3 span {
    float: left;
    padding-left: 10px;
    padding-top: 13px;
}
h3 {
    color: #005537;
    font-size: 24px;
    font-weight: 900;
    margin: 0 0 20px;
}
label {
    color: #818181;
    padding-top: 11px;
    font-weight: normal;
    font-size: 18px;
    margin: 0 10px 0 0;
}
input, textarea, select, .btn.dropdown-toggle {
    background: transparent;
    border: 1px solid #C4C4C4;
    color: #595959;
    font-size: 16px;
    min-height: 40px;
    line-height: 22px;
    padding: 5px 10px;
    border-radius: 4px;
}
input[type="checkbox"] {
    margin: 0 5px 0 0;
}
p {
    font-size: 11px;
    color: #666667;
    line-height: 20px;
}

.red {
    color: #52acfb;
    font-size: 12px;
    font-weight: 400;
}

p small {
    font-size: 15px;
}

h2 {
    color: #575a5d;
    font-size: 20px;
    font-weight: bold;
}

.link {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

    .link a {
        color: #2DBEE1;
        font-size: 12px;
        text-decoration: underline;
    }
@media screen and (min-width:480px) {
    .link {
        justify-content: space-between;
    }
        .link a {
            font-size: 14px;
        }
}
.copyrights {
    margin: 90px auto 60px;
    padding: 0;
    position: relative;
}

    .copyrights p {
       color: #606060;
        font-size: 8px;
        margin: 0;
    }
.btn {
    color: #005537;
    border: 0;
    border-radius: 50px;
    line-height: 1.4;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 800;
    border: 2px solid #96FF00;
    background-color: #96FF00;
    transition: background-color 300ms;
}
    .btn:hover {
        background-color: #C0FF66;
        border: 2px solid #C0FF66;
        transition: background-color 300ms;
        cursor: pointer;
    }
    .btn:focus {
        border: 2px solid #767676;
    }
.send .btn {
    line-height: 1;
    margin: 20px 0 0;
}
@media only screen and (min-width: 1024px) {
    .btn {
        height: 50px;
        font-size: 18px;
    }
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #fff inset !important;
}
input:-webkit-autofill {
    -webkit-text-fill-color: #282828 !important;
    border: 1px solid #005537;
}
input:-webkit-input-placeholder,
input:-ms-input-placeholder,
input:placeholder {
    color: #629ed6;
}
input[type="text"]:focus,
input[type="password"s]:focus {
    outline: auto 0px -webkit-focus-ring-color;
    background-color: #fff !important;
    border: 1px solid #a1d0fa;
}
input:focus + .user {
    background-position: -255px -163px;
}

input:focus + .pass {
    background-position: -209px -166px;
}
.login-container h2 {
    color: #fff;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}
.submit-check {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 32px;
}
.footer {
    position: absolute;
    left: 81px;
    bottom: 30px;
    z-index: 1;
}
    .footer p {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.3);
    }
    .footer p a {
        font-size: inherit;
        color: inherit;
    }

.foot {
    bottom: 15px;
    position: absolute;
    z-index: 1;
    left: 83px;
}
.foot p, .foot a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.30);
}

.header {
    display: flex;
    width: 100%;
    background-color: #fff;
    height: 150px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.15);
}

    .header > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: unset;
    }

@media screen and (max-width:1199px) {
    .header {
        left: 0;
        right: auto;
        top: 0;
        z-index: 1;
        position: fixed;
    }

    #menuMob {
        top: 150px;
        position: absolute;
        right: 0;
        left: 0;
        z-index: 1;
        display: none;
    }
}

@media screen and (max-width: 1199px) {
    .mobile-ham {
        background: url("../Content/img/icons.png") no-repeat scroll -144px -99px rgba(0, 0, 0, 0);
        border: 0 none;
        display: block;
        height: 39px;
        right: 30px;
        position: absolute;
        top: 55px;
        width: 39px;
    }
}

@media screen and (min-width: 1200px) {
    .mobile-ham {
        display: none;
    }
    .container {
        padding: unset;
    }
}

    .navi .bg {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 0;
        left: -2000px;
        background-color: #005537;
        z-index: 0;
    }

    .navi .logo {
        position: relative;
        z-index: 1;
        margin: 27px 97px 57px 83px;
        padding: 0;
        height: 45px;
    }

    .navi ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
@media screen and (max-width:1200px) {
    .navi {
        display: none;
        position: absolute;
        top: 150px;
        left: 0;
        right: 0;
    }

        .navi ul li {
            width: 100%;
            height: 60px;
            margin: 0 0px 20px 0;
            padding: 0 0 0 20px;
        }
    .navi.open {
        display:block;
    }
    .hide {
        display: none !important;
        display: none !important;
    }
}
@media screen and (min-width:1201px) {
    .navi {
        position: relative;
        z-index: 0;
        padding: 5px 0 0;
    }
        .navi ul li {
            width: 303px;
            height: 60px;
            margin: 0 20px 20px 0;
            padding: 0 0 0 20px;
        }
}
#menuMob ul {
    background: #005537;
    padding: 50px 0;
}

    #menuMob ul li {
        margin: 0 0 20px;
        height: 70px;
    }

        #menuMob ul li a {
            margin: 0 0 0 20px;
            padding: 0 0 0 30px;
        }

.navi ul {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    z-index: 1;
}

    .navi ul li a {
        font-size: 16px;
        color: #fff;
        text-decoration: none;
        height: inherit;
        width: inherit;
        background: transparent;
        font-weight: 400;
        padding: 0 0 0 20px;
        transition: background 400ms;
        display: flex;
        align-items: center;
    }

            .navi ul li a:hover,
            .navi ul li a.active {
                border-radius: 30px 0px 0px 30px;
                background: linear-gradient(90deg, rgba(120, 204, 0, 0.50) 2%, rgba(0, 193, 229, 0.50) 83%);
                transition: background 400ms;
            }

            .navi ul li a [class*="icon-"] {
                width: 20px;
                height: 20px;
                background-image: url('../Content/img/icons.png');
                background-repeat: no-repeat;
                margin: 0;
            }

        .navi ul li:last-child a {
            margin-bottom: 0;
        }
.navi li a span {
    margin: 0 0 0 25px;
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    text-transform: lowercase;
}
@media only screen and (min-width: 1200px) {
    .navi ul li a {
        padding: 0 0 0 24px;
    }
}
.df {
    display: flex;
}
.hf {
    min-height: 100vh;
    height: auto;
}

.reset-password {
    display: flex;
    flex-direction: column;
    margin: 0 0 20px;
    gap: 20px;
}
    .reset-password .fi {
        display: flex;
        flex-direction: column;
    }
        .reset-password .fi label {
            padding: 0 0 5px;
        }

.mb-20 {
    margin-bottom: 20px;
    }

.line-height-0 input {
    line-height: 0;
}

.check-flex {
    display: flex;
    align-items: center;
}

.dropdown-menu {
  background-clip: padding-box;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
  display: none;
  float: left;
  font-size: 14px;
  left: 0;
  list-style: outside none none;
  margin: 2px 0 0;
  padding: 5px 0;
  position: absolute;
  top: 100%;
}

.bootstrap-select.btn-group .dropdown-menu.inner {
  border: 0 none;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  padding: 0;
  position: static;
}

.bootstrap-select.btn-group .dropdown-menu {
  box-sizing: border-box;
  min-width: 100%;
  width: 100%;
  overflow-x: hidden;
  z-index: 1035;
}

.open > .dropdown-menu {
  display: block;
}

.bootstrap-select.btn-group:not(.input-group-btn),
.bootstrap-select.btn-group[class*="col-"] {
  position: relative;
  float: right;
}

.dropdown-menu > li > a {
  clear: both;
  color: #282828;
  display: block;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.42857;
  padding: 3px 16px;
  white-space: preline;
  text-transform: uppercase;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  background-color: #EBEBEB;
  text-decoration: none;
}

.dropdown-menu > li > a span {
  color: inherit;
  font-size: 14px;
}

.bootstrap-select.btn-group .btn .caret {
  top: 5px;
  right: 5px;
}

.arrow-down,
.btn.dropdown-toggle .caret {
  background: url("../Content/img/icons.png") no-repeat scroll -109px -99px rgba(0, 0, 0, 0);
  cursor: pointer;
  display: inline-block;
  float: right;
  margin-right: 0 !important;
  margin-top: 0 !important;
  height: 29px;
  width: 29px;
}

.bootstrap-select > .btn {
  font-size: 12px;
  height: 30px;
  line-height: 15px;
  padding: 0 0 0 6px;
  width: 100%;
  color: #52acfb;
}

.bootstrap-select.btn-group .btn .filter-option {
  font-size: 16px;
  font-weight: normal;
  text-overflow: ellipsis;
  padding: 13px 20px 0px 6px;
  min-height: 40px;
  color: #282828;
  white-space: nowrap;
  line-height: 16px;
}

.bootstrap-select .btn:focus,
.btn.dropdown-toggle:hover {
  background: transparent;
  border: 1px solid #005537;
  color: #282828;
}

.open .dropdown-toggle.btn-default,
.bootstrap-select.btn .btn:focus {
  background-image: none;
  background: #fff;
  border: 1px solid #005537;
  color: #666667;
  border-radius: 3px 3px 0 0;
  border-bottom: 0;
}

.btn-group.bootstrap-select:focus,
.btn-group.bootstrap-select .btn:focus {
  outline: none;
}

input[type="text"]:focus,
.bootstrap-select.btn-group .dropdown-menu li a:focus,
.bootstrap-select.btn-group .dropdown-menu li:focus,
.btn-group.bootstrap-select .btn:focus {
  outline: none !important;
}

.dropdown-menu {
  border-radius: 0px;
  box-shadow: 0px 0px 0px;
  margin-top: -8px;
  background-color: #fff;
  border: 1px solid #005537;
  border-top-color: #fff;
}

.d-flex {
    display: flex;
}

.fi {
    display: flex;
    flex-direction: column;
}

.fi label {
    padding: 0 0 5px;
}

.fi input {
    width: 100%!important;
}

.check-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 40px;
}

.check-flex .field-validation-error {
    margin: 2px 0 15px 0;
}

input,
textarea,
select,
.btn.dropdown-toggle {
    background: transparent;
    border: 1px solid #C4C4C4;
    color: #595959;
    font-size: 16px;
    min-height: 40px;
    line-height: 22px;
    padding: 5px 10px;
    border-radius: 4px;
}

    input:hover,
    textarea:hover,
    select:hover,
    .btn.dropdown-toggle:hover {
        border: 1px solid #767676;
    }

    input[type="radio"],
    input[type="checkbox"] {
        height: auto;
        min-height: unset;
    }

textarea {
    resize: none;
}

.register-form .bootstrap-select button {
    display: flex;
    justify-content: space-between;
}
