@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap');

/* GLOBAL */
html, body {
    font-family: 'Ubuntu', sans-serif;
}

body {
    background: #F8FAFA;
    font-size: 16px;
}

@media screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }
}

a {
    color: #000;
    transition: ease color 0.3s;
}

    a:hover {
        color: #0097FF;
        text-decoration: none;
    }

.row {
    margin: 0;
    flex-wrap: nowrap;
}

main {
    padding: 15px 0;
    position: relative;
}

section {
    padding: 15px 0;
}

.margin-top {
    margin-top: 20px;
}

.margin-bottom {
    margin-bottom: 20px;
}

.no-paddings {
    padding: 0 !important;
}

.no-padding-left {
    padding-left: 0 !important;
}

.no-padding-right {
    padding-right: 0 !important;
}

.btn {
    font-size: 13px;
    padding: 10px 25px;
    border-width: 1px;
    border-style: solid;
    border-color: #0097FF;
    border-radius: 25px;
    font-weight: 700;
    display: inline-block;
    height: auto;
    width: auto;
    margin: auto 0;
}

    .btn.active {
        background: #0097FF;
        color: #fff;
    }

    .btn.btn-custom-small {
        padding: 5px 12px;
    }

.btn-main {
    color: #fff;
    background: #0097FF;
}

    .btn-main:hover {
        background: #fff;
        color: #0097FF;
    }

.btn-outline {
    color: #0097FF;
    background: #fff;
}

    .btn-outline:hover {
        background: #0097FF;
        color: #fff;
    }

@media screen and (max-width: 768px) {
    .btn {
        padding: 8px 15px;
    }
}

.row-full {
    width: 100%;
}

.col-flex {
    display: flex;
    flex-direction: column;
}

.v-center {
    align-items: center;
}

.h-center {
    justify-content: center;
}

.v-space {
    align-items: stretch;
}

.h-space {
    justify-content: space-between;
}

.v-end {
    align-items: flex-end;
}

.h-end {
    justify-content: flex-end;
}

.self-v-center {
    align-self: center;
}

.self-h-center {
    justify-self: center;
}

.self-v-space {
    align-self: stretch;
}

.self-h-space {
    justify-self: stretch;
}

.self-v-end {
    align-self: end;
}

.self-h-end {
    justify-self: end;
}

.self-v-start {
    align-self: start;
}

.self-h-start {
    justify-self: start;
}

.flex-wrap {
    flex-wrap: wrap;
}

.box {
    padding: 25px 20px;
    background: #fff;
    border-radius: 30px;
}

.box-title {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 420px) {
    .uczestnicy .box-title {
        flex-direction: column;
        text-align: center;
    }

    .uczestnicy .btn-add {
        margin-top: 10px;
    }

    .uczestnicy .box-title .row {
        padding: 0 !important;
    }
}

.uczestnicy .btn-add {
    white-space: nowrap;
}

.box-title img {
    height: 30px;
    width: auto;
}

.box-title h2 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    margin-left: 25px;
}

.box-info {
    padding: 15px 20px;
    border: 1px solid #E3E3E3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: ease all 0.3s;
    border-radius: 25px;
    font-size: 11px;
    margin: auto auto 10px auto;
    cursor: pointer;
}

    .box-info:last-child {
        margin-bottom: 0;
    }

    .box-info.danger {
        border-color: #DD0024 !important;
        color: #DD0024;
        background: rgba(221,0,36,0.15);
    }

        .box-info.danger p {
            max-width: 100% !important;
        }

        .box-info.danger:hover {
            cursor: default;
        }

        .box-info.danger.active {
            border-color: #DD0024 !important;
            color: #DD0024 !important;
            background: rgba(221,0,36,0.15) !important;
        }

    .box-info.warning {
        border-color: #DB6E00 !important;
        color: #DB6E00;
        background: rgba(219, 110, 0, 0.15);
    }

        .box-info.warning p {
            max-width: 100% !important;
        }

        .box-info.warning:hover {
            cursor: default;
        }

        .box-info.warning.active {
            border-color: #DB6E00 !important;
            color: #DB6E00;
            background: rgba(219, 110, 0, 0.15);
        }

    .box-info.info {
        border-color: #17A2B8 !important;
        color: #0F5C66;
        background: rgba(23, 162, 184, 0.2);
    }

        .box-info.info p {
            max-width: 100% !important;
        }

        .box-info.info:hover {
            cursor: default;
        }

        .box-info.info.active {
            border-color: #17A2B8 !important;
            color: #0F5C66;
            background: rgba(23, 162, 184, 0.25);
        }

    .box-info:hover {
        border-color: #0097FF;
    }

    .box-info.active {
        border-color: #0097FF;
        background-color: #0097FF;
        color: #fff;
    }

        .box-info.active p.price {
            /*display: none;*/
        }

.box input[type=text], .box input[type=tel], .box input[type=number], .box input[type=email], .box textarea, .box select {
    padding: 8px 20px;
    border: 1px solid #E3E3E3;
    border-radius: 25px;
    font-size: 12px;
    width: 100%;
}

.box input[type=password], .box input[type=tel], .box input[type=number], .box input[type=email], .box textarea, .box select {
    padding: 8px 20px;
    border: 1px solid #E3E3E3;
    border-radius: 25px;
    font-size: 12px;
    width: 100%;
}

.box input, .box textarea, .box select {
    outline: none;
}

.box .select-btn-list {
    overflow: auto !important;
}

.box-info p {
    margin-bottom: 0;
}

.box input[type=checkbox] {
    margin-right: 15px;
}

.box label {
    font-size: 12px;
}

/* TOPBAR */
.topbar {
    background: #EAF8FF;
    padding: 12px 0;
    position: relative;
}

.topbar-links {
    justify-content: flex-end;
    font-size: 10px;
}

    .topbar-links a {
        font-size: 10px;
    }

        .topbar-links a:first-child {
            padding-right: 15px;
        }

/* HEADER */
.site-header {
    background: #fff;
    position: relative;
    padding: 12px 0;
}

    .site-header .nav-btns {
        text-align: right;
        padding-right: 0;
        align-content: middle;
    }

        .site-header .nav-btns .btn {
            margin-right: 10px;
            display: flex;
            align-items: center;
        }

            .site-header .nav-btns .btn:last-child {
                margin-right: 0
            }

        .site-header .nav-btns img {
            margin-right: 6px;
            height: 15px;
            width: auto;
        }

        .site-header .nav-btns .btn:hover img {
            filter: brightness(0) invert(1);
        }

    .site-header .logo {
        padding-left: 0;
    }

@media screen and (max-width: 1024px) {
    .site-header .navigation .col-4 {
        max-width: none;
        width: auto;
        flex: auto;
    }

    .site-header .navigation .col-8 {
        width: 100%;
        max-width: 100%;
        flex: auto;
    }
}

@media screen and (max-width: 768px) {
    .site-header .nav-btns .btn {
        line-height: 1.2;
        padding: 8px 12px;
        margin-right: 7px;
        font-size: 12px;
    }

    .site-header .btn img {
        display: none;
    }
}

@media screen and (max-width: 520px) {
    .site-header .navigation {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .site-header .col-4 {
        width: 100%;
        padding: 0;
        padding-bottom: 10px;
    }

    .site-header .nav-btns {
        width: 100%;
        justify-content: center;
        padding: 0;
        padding-bottom: 10px;
    }

    .site-header .btn {
        margin: 5px 3px !important;
    }

        .site-header .btn:first-child {
            margin-left: 0 !important;
        }

        .site-header .btn:last-child {
            margin-right: 0 !important;
        }
}

@media screen and (max-width: 360px) {
    .site-header .btn {
        min-height: 50px;
    }
}

/* FOOTER */
footer {
    color: #fff;
}

.site-footer {
    background: #2F363E;
    padding: 60px 0;
}

    .site-footer ul {
        margin: 0;
        padding: 0;
        list-style: none
    }

    .site-footer .footer-col p {
        margin-bottom: 0;
    }

footer a {
    color: #fff;
}

    footer a:hover {
        color: #bbb;
    }

.site-footer h4 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 700;
}

.copyrights {
    background: #39424C;
    padding: 40px 0;
}

    .copyrights p {
        margin-bottom: 0;
    }

    .copyrights .col-6:last-child {
        text-align: right;
    }

@media screen and (max-width: 768px) {
    .site-footer .row .col-md-4:nth-child(2) {
        margin: 25px 0;
    }

    .site-footer {
        padding: 35px 0;
    }

    .copyrights {
        padding: 20px 0;
    }

    .site-footer .row {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 420px) {
    footer .footer-col, footer .col-6 {
        padding: 0;
    }
}

/* HOME PAGE - REZERWACJA */
section.title .btn {
    min-width: 215px;
    margin-right: 20px;
}

section.title .subtitle {
    margin-bottom: 0;
    color: #0097FF;
    font-size: 17px;
    text-align: center;
}

section.title .site-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    line-height: 1.4;
    text-align: center;
}

.rezerwacja .rez-col:first-child {
    padding-left: 0;
}

.rezerwacja .apartamenty p {
    max-width: 220px;
}

    .rezerwacja .apartamenty p.price {
        font-weight: 700;
        text-align: right;
        white-space: nowrap;
    }

.rezerwacja .rabat .btn-main {
    margin-left: 15px;
}

.rezerwacja .uwagi .btn-main {
    margin-top: 15px;
}

.box textarea {
    width: 100%;
}

.btn-add {
    color: #0097FF;
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
}

    .btn-add span {
        font-size: 16px;
        padding-right: 8px;
    }

.col-transport {
    position: relative;
}

input.btn-transport {
    visibility: hidden !important;
    position: absolute !important;
}

.col-transport .btn, .col-transport label {
    width: 100%;
    font-size: 12px;
}

.btn-transport:checked + label .btn {
    background: #0097FF;
    color: #fff;
}

.user-inputs {
    background: #fff;
    border-radius: 0 0 25px 25px;
    color: #000;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.2s, opacity 0.1s;
}

.user.box-info {
    background: none;
}

    .user.box-info.active .user-title {
        background: #0097FF;
        border-radius: 25px 25px 0 0;
    }

    .user.box-info.active .user-inputs {
        max-height: 5000px;
        opacity: 1;
        padding: 25px;
        transition: max-height 0.2s, opacity 0.1s;
    }

.user {
    padding: 0;
}

    .user .user-title {
        padding: 20px 25px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0 !important;
    }

        .user .user-title h3 {
            margin: 0;
            font-size: 12px;
            font-weight: 700;
        }

    .user h4 {
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .user .user-row {
        margin-bottom: 20px;
    }

    .user.box-info.active {
        border-color: #E3E3E3;
    }

    .user.box-info .user-title .close-unactive {
        display: block;
    }

    .user.box-info.active .user-title .close-active {
        display: block;
    }

    .user.box-info .user-title .close-active {
        display: none;
    }

    .user.box-info.active .user-title .close-unactive {
        display: none;
    }

    .user .user-row label {
        margin-bottom: 0;
    }

    .user .user-row .row {
        margin-bottom: 10px;
    }

        .user .user-row .row .col-sm-6 {
            padding-right: 5px;
            padding-left: 5px;
        }

.checkbox-list .checkbox-list-title {
    align-items: center;
}

    .checkbox-list .checkbox-list-title .list-active {
        width: 13px;
        height: 13px;
        display: none;
    }

    .checkbox-list .checkbox-list-title .list-unactive {
        width: 17px;
        height: 17px;
        display: block;
    }

    .checkbox-list .checkbox-list-title h4 {
        margin-bottom: 0;
    }

    .checkbox-list .checkbox-list-title.active .list-active {
        display: block;
    }

    .checkbox-list .checkbox-list-title.active .list-unactive {
        display: none;
    }

.checkbox-list .checkbox-list-item .checkbox-item {
    display: flex;
    margin-bottom: 10px;
    width: 100%;
}

    .checkbox-list .checkbox-list-item .checkbox-item input {
        margin-right: 5px;
    }

    .checkbox-list .checkbox-list-item .checkbox-item label {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

        .checkbox-list .checkbox-list-item .checkbox-item label .platnosc-z-gory {
            background: #FAD9DE;
            font-weight: 600;
            display: flex;
            font-size: 10px;
            max-width: 140px;
            align-items: center;
            justify-content: center;
            padding: 1px 0;
            color: #000;
        }

.checkbox-list .checkbox-list-item p.price {
    display: block;
    margin-left: 10px;
    white-space: nowrap;
    font-weight: 600;
}

.checkbox-list .checkbox-list-item .checkbox-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.checkbox-list input[type=checkbox]:checked + label, .checkbox-list input[type=checkbox]:checked ~ p.price {
    color: #0097FF !important;
    font-weight: 600;
}

.user .btn-main {
    float: right;
}

.checkbox-list .checkbox-list-item {
    border: 1px solid #E3E3E3;
    border-radius: 25px;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s, opacity 0.2s;
    overflow: hidden;
}

.checkbox-list .checkbox-list-title.active ~ .checkbox-list-item {
    max-height: 2500px;
    transition: max-height 0.3s, opacity 0.2s;
    opacity: 1;
    padding: 15px;
}

/* REZERWACJA SIDEBAR */
.rez-sidebar {
    padding: 25px;
    border-radius: 25px 0 0 25px;
    background: #0097FF;
    color: #fff;
    right: 0;
    z-index: 998;
    height: auto;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

    .rez-sidebar .rez-danger {
        background: #DD0024;
        font-size: 11px;
        padding: 15px;
        border-radius: 25px;
        margin-bottom: 15px;
    }

        .rez-sidebar .rez-danger p {
            margin: 0;
        }

.rez-row {
    margin: 15px 0;
}

.rez-divider {
    margin: 20px 0;
    border-bottom: 1px solid #000;
}

.rez-row .rez-title {
    font-size: 15px;
    font-weight: 500;
    margin-right: 5px;
}

.rez-row .rez-price {
    font-size: 20px;
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
}

.rez-row .rez-detail {
    font-weight: 600;
    font-size: 15px;
    text-align: right;
}

.rez-row .rez-title img {
    margin-right: 10px;
}

.rez-checkbox .item {
    display: flex;
    width: 100%;
    line-height: 1.5;
}

    .rez-checkbox .item label {
        font-size: 11px;
        margin-left: 8px;
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .rez-checkbox .item-ub label {
        font-size: 11px;
        margin-left: 0 !important;
        display: flex;
        flex-direction: column;
        width: 100%;
    }

.rez-umowa input[type=text] {
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 12px;
    width: 100%;
    outline: none;
    background: rgba(0,0,0,0.1);
    color: #fff;
    border: none;
}

    .rez-umowa input[type=text]::placeholder {
        color: #fff;
    }

.rez-umowa .btn {
    background: #fff;
    color: #0097FF;
    margin-left: 10px;
    padding: 9px 20px;
}

    .rez-umowa .btn:hover {
        background: #0097FF;
        color: #fff;
    }

.rez-sidebar .btn-rez {
    width: 100%;
    background: #DD0024;
}

    .rez-sidebar .btn-rez:hover {
        background: #fff;
    }

.rez-sidebar {
    max-width: 21%;
    width: 100%;
}

.rez-col-left {
    max-width: 40%;
    width: 100%;
    margin-right: 15px;
}

.rez-col-center {
    max-width: 55%;
    width: 100%;
}

@media screen and (max-width: 1750px) {
    .rez-col-left {
        max-width: 35%;
    }

    .rez-col-center {
        max-width: 50%;
    }
}

@media screen and (max-width: 1350px) {
    .rez-col-left {
        max-width: 30%;
    }

    .rez-col-center {
        max-width: 45%;
    }

    .rez-sidebar {
        max-width: 25%;
    }

    section.title .row-full {
        width: 50%;
    }
}

@media screen and (max-width: 1024px) {
    .rez-container .rez-row {
        flex-wrap: wrap;
    }

    .rez-container .rez-umowa .rez-row {
        flex-wrap: nowrap;
    }

    .rez-col-left, .rez-col-center, section.title .row {
        max-width: 68%;
    }

    .rez-sidebar {
        max-width: 31%;
    }

    .rez-col-left {
        margin-bottom: 15px;
        margin-right: 0;
    }

    section.title .row {
        flex-wrap: wrap;
        justify-content: center;
    }

        section.title .row .btn {
            margin-bottom: 20px;
        }

        section.title .row .row-full {
            width: 100%;
        }

    .rez-row .rez-title {
        font-size: 14px;
    }

    .rez-row .rez-detail {
        font-size: 14px;
    }

    .rez-row .rez-price {
        font-size: 16px;
    }

    section.title {
        padding-bottom: 0;
    }
}

@media screen and (max-width: 768px) {
    .rez-container, section.title .container {
        width: 100%;
        max-width: 100%;
    }

    .rez-col-left, .rez-col-center, section.title .row {
        max-width: 60%;
    }

    .rez-sidebar {
        max-width: 39%;
    }

    .rez-sidebar {
        padding: 20px 15px;
    }

    .box {
        padding: 20px 15px;
    }

    .user .user-title {
        padding: 20px 15px;
    }

    .user.active .user-inputs {
        padding: 20px 8px !important;
    }

    .user .user-inputs .row {
        flex-wrap: wrap;
    }

        .user .user-inputs .row .col-sm-6 {
            width: 100%;
            padding: 0;
        }

            .user .user-inputs .row .col-sm-6:nth-child(1) {
                margin-bottom: 10px;
            }
}

@media screen and (max-width: 600px) {
    .rez-container > .rez-row {
        flex-direction: column-reverse;
    }

    .rez-sidebar .rez-container > .rez-row {
        flex-direction: row;
    }

    .rez-col-left, .rez-col-center, section.title .row {
        max-width: 100%;
        width: auto;
    }

    .rez-sidebar {
        max-width: 100%;
        width: auto;
        margin: 0 10px 25px 10px;
        border-radius: 25px;
    }
}

/* OTHERS */
.main-navigation .box .box-title {
    margin-bottom: 0;
}

.main-navigation .box:hover img, .main-navigation .box.active img {
    filter: brightness(0) invert(1);
}

.main-navigation .box img {
    margin-right: 13px;
    width: auto;
    height: 30px;
}

.main-navigation .box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: ease all 0.3s;
    cursor: pointer;
    padding: 25px 13px;
}

    .main-navigation .box:last-child {
        margin-right: 0;
    }

    .main-navigation .box:hover, .main-navigation .box.active {
        background: #0097FF;
    }

        .main-navigation .box:hover a, .main-navigation .box.active a {
            color: #fff;
        }

        .main-navigation .box:hover .box-title, .main-navigation .box.active .box-title {
            color: #fff;
        }

    .main-navigation .box .box-title {
        font-size: 14px;
        font-weight: 700;
        line-height: 1.2;
    }

.wintertable table {
    width: 100%;
}

    .wintertable table.counter-table tbody {
        counter-reset: rowNumber;
    }

        .wintertable table.counter-table tbody tr::before {
            display: table-cell;
            counter-increment: rowNumber;
            content: counter(rowNumber) ".";
            padding-right: 0.3em;
            text-align: center;
            margin: auto;
            vertical-align: middle;
        }

    .wintertable table tr {
        border-bottom: 1px solid #E3E3E3;
        font-size: 12px;
        text-align: center;
    }

        .wintertable table tr td, .wintertable table tr th {
            padding: 15px;
        }

.wintertable thead {
    font-weight: 600;
}

.wintertable {
    padding-bottom: 30px;
}

    .wintertable h1 {
        font-size: 20px;
        padding: 15px 15px 25px 15px;
    }

    .wintertable .table-pagination .btn {
        padding: 9px 15px;
        color: #000;
        border-radius: 12px;
        margin-right: 7px;
    }

        .wintertable .table-pagination .btn :last-child {
            margin-right: 0;
        }

        .wintertable .table-pagination .btn:hover, .wintertable .table-pagination .btn.active {
            color: #fff;
        }

    .wintertable .table-pagination {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 25px;
        font-size: 14px;
    }

@media screen and (max-width: 992px) {
    .main-navigation .box {
        padding: 10px 7px;
        margin-right: 10px;
    }

        .main-navigation .box .box-title {
            font-size: 12px;
            line-height: 1.4;
            flex-direction: column;
            text-align: center;
        }

            .main-navigation .box .box-title img {
                margin-right: 0;
                margin-bottom: 7px;
            }

    .wintertable table tr td, .wintertable table tr th {
        padding: 10px 5px;
    }

    .wintertable table .btn {
        padding: 5px 8px;
        border-radius: 15px;
        font-size: 12px;
    }
}

@media screen and (max-width: 768px) {
    .wintertable .container {
        position: relative;
        overflow: hidden;
    }

    .wintertable .table-container {
        position: relative;
        overflow-x: auto;
    }

    .wintertable table {
        white-space: nowrap;
    }

    .main-navigation .row {
        flex-wrap: wrap;
    }

        .main-navigation .row .col {
            flex: auto;
            width: auto;
            max-width: none;
            border-radius: 15px;
            padding: 10px 7px;
            margin: 5px 10px;
            min-width: 100px;
        }

    .main-navigation .box-title img {
        height: 25px;
    }
}

.change-password-container {
    padding-bottom: 35px;
}

    .change-password-container form {
        max-width: 520px;
        margin: 10px auto;
    }

        .change-password-container form input {
            margin-bottom: 10px;
        }

            .change-password-container form input:last-child {
                margin-bottom: 0;
            }

        .change-password-container form .btn {
            width: 100%;
        }

.forgot-password {
    font-size: 12px;
    padding-top: 3px;
}

    .forgot-password:after {
        content: ' \00BB';
    }

.checkbox-round {
    width: 1.3em;
    height: 1.3em;
    background-color: white;
    border-radius: 50%;
    vertical-align: middle;
    border: 1px solid #ddd;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
}

    .checkbox-round:checked {
        background-color: gray;
    }

.top-baggage-list {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    background-color: #f8fafa;
    font-weight: bold;
    font-size: 14px;
}

    .top-baggage-list img {
        padding: 25px 10px 25px 0;
    }

    .top-baggage-list span {
    }

.list-info-baggage ul {
    padding: 20px 0 0 10px;
    font-size: 14px;
}

    .list-info-baggage ul li {
        list-style: none;
        margin-left: 10px;
        color: #3f93db;
        padding: 20px 0 0 0;
    }

        .list-info-baggage ul li span {
            padding: 10px 0 0 10px;
            color: #000;
            font-family: 'Ubuntu', sans-serif;
            font-weight: normal;
        }
.bottom-baggage-list {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    background-color: #f8fafa;
    text-align: center;
    padding:20px 0 20px 0;
}

.frontend-dropdown {
    border: 1px solid #E3E3E3;
    background-color: #fff;
}