﻿/* Orderform CSS */
.really-hide {
    display: none !important;
}
#nordsta #nb-form-search {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

    #nordsta #nb-form-search label {
        display: none;
    }

    #nordsta #nb-form-search select {
        max-width: 350px;
        width: auto;
        background: white;
        padding: 10px 14px;
        border-radius: 5px;
        border-color: white;
        color: #08356f;
        font-family: "Poppins", Sans-serif;
        font-size: 1em;
        font-weight: 600;
    }

        #nordsta #nb-form-search select:not(:first-of-type) {
            margin: 0px 0px 0px 10px;
        }

.nb-input-disabled {
    background-color: lightgray;
    opacity: 50%;
    cursor: pointer;
}

.nb-input-invalid {
    border: 2px solid #f16a6a !important;
}


/* select dropdown styling */
ul {
    list-style: none;
}

.facilityDropdown,
.sizeDropdown,
.datepickerDropdown {
    width: 210px;
    height: 55px;
    background: white;
    position: relative;
    border-radius: 10px;
    margin-right: 10px;
    margin-bottom: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

    .facilityDropdown::before,
    .sizeDropdown::before,
    .datepickerDropdown::before {
        content: "";
        position: absolute;
        right: 20px;
        z-index: 5;
        width: 12px;
        height: 12px;
        border: 2px solid #193153;
        border-top: transparent;
        border-right: transparent;
        transform: rotate(-45deg);
        pointer-events: none;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Poppins", sans-serif;
        margin-top: auto;
        margin-bottom: auto;
        top: -5px;
        bottom: 0;
    }

    .facilityDropdown input::placeholder,
    .sizeDropdown input::placeholder,
    .datepickerDropdown input::placeholder {
        color: black;
    }

#nordsta .facilityDropdown input,
#nordsta .sizeDropdown input,
#nordsta .date-input {
    max-width: 100%;
}

#nordsta .facilityDropdown input,
#nordsta .sizeDropdown input,
#nordsta .datepickerDropdown input {
    height: 100%;
    width: 100%;
    cursor: pointer;
    border: none;
    outline: none;
    position: absolute;
    user-select: none;
    background: white;
    padding: 10px 14px;
    border-radius: 5px;
    border-color: white;
    color: black;
    font-family: "Poppins", Sans-serif;
    font-size: 1em;
    font-weight: 600;
    z-index: 2;
    border-radius: 10px;
}

.facilityDropdown .options,
.sizeDropdown .options {
    width: 100%;
    border-radius: 6px;
    padding: 8px;
    cursor: pointer;
    background: white;
    border: none;
    outline: none;
    box-shadow: 0 10px 25px rgba(124, 130, 141, 0.2);
    font-size: 20px;
    overflow: hidden;
    position: absolute;
    top: 65px;
    transition: all 0.7s ease;
    opacity: 0;
    transform: translateY(-50px);
    visibility: hidden;
    backdrop-filter: blur(4.5px);
    -webkit-backdrop-filter: blur(4.5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    pointer-events: none;
}

    .facilityDropdown .options .option,
    .sizeDropdown .options .option {
        padding: 16px;
        border-radius: 9px;
        transition: all 0.2s ease;
        color: #292d34;
    }

        .facilityDropdown .options .option:not(:last-of-type),
        .sizeDropdown .options .option:not(:last-of-type) {
            margin-bottom: 8px;
        }

        .facilityDropdown .options .option:hover,
        .sizeDropdown .options .option:hover {
            color: white;
            background: #08356f;
            box-shadow: 0 6px 10px rgb(8 53 111 / 16%);
        }

.facilityDropdown.opened .options,
.sizeDropdown.opened .options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 10;
    pointer-events: auto;
}

.facilityDropdown.opened::before,
.sizeDropdown.opened::before {
    transform: rotate(-225deg);
    top: 25px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

#nb-button-search {
    border-width: 0px;
    padding: 15px 30px;
    margin-bottom: 15px;
}

    #nb-button-search,
    #nb-button-search:active,
    #nb-button-search:focus {
        outline: none;
        background: #08356f;
        background-color: #08356f;
        font-family: "Open Sans",sans-serif !important;
        font-weight: bold;
        border-radius: 7px;
        padding: 16px 35px;
        font-size: 16px;
    }


/*----------------------------------------*/
/* -----jQuery Datepicker Styling  -------*/
/*----------------------------------------*/


#ui-datepicker-div {
    margin-top: 7px;
    background: white;
    padding: 10px 20px 20px 20px;
    border-radius: 10px;
    z-index: 10 !important;
    padding: 20px;
    font-family: "Poppins", Sans-serif;
    font-size: 15px;
    display: none;
}

.ui-datepicker-header {
    display: flex;
    justify-content: space-between;
    padding: 20px 0px;
}

    .ui-datepicker-header .ui-state-disabled {
        opacity: 0.25;
        cursor: not-allowed;
    }

.ui-datepicker-next {
    order: 5;
    position: relative;
    cursor: pointer;
}

    .ui-datepicker-next span {
        margin-right: 23px;
        visibility: hidden;
    }

    .ui-datepicker-next::after {
        position: absolute;
        content: "";
        right: 10px;
        top: 0;
        bottom: 0;
        margin-bottom: auto;
        margin-top: auto;
        width: 13px;
        height: 13px;
        border: 3px solid #4a4a4a;
        border-top: transparent;
        border-right: transparent;
        transform: rotate(-135deg);
    }

.ui-datepicker-prev {
    position: relative;
    cursor: pointer;
}

    .ui-datepicker-prev span {
        margin-left: 23px;
        visibility: hidden;
    }

    .ui-datepicker-prev::before {
        position: absolute;
        content: "";
        left: 10px;
        top: 0;
        bottom: 0;
        margin-bottom: auto;
        margin-top: auto;
        width: 13px;
        height: 13px;
        border: 3px solid #4a4a4a;
        border-top: transparent;
        border-right: transparent;
        transform: rotate(45deg);
    }

.ui-datepicker-calendar {
    background: white;
    padding: 23px;
    border-radius: 0px 0px 10px 10px;
    border-width: 0px !important;
    padding: 0px;
    width: 100%;
}

.ui-datepicker-title {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 18px;
    color: #4a4a4a;
    letter-spacing: 1px;
}

#ui-datepicker-div th,
#nb-order-summary-part-two #nb-order-datepicker th {
    border-width: 0px;
    padding-bottom: 5px;
    text-align: center;
}

    #ui-datepicker-div th span,
    #nb-order-summary-part-two #nb-order-datepicker th span {
        margin: auto;
        text-decoration: none;
        color: #4a4a4a;
        text-transform: capitalize;
    }

#ui-datepicker-div td,
#nb-order-summary-part-two #nb-order-datepicker td {
    text-align: center;
    border: solid 1px #0000000a;
    border-width: 1px 1px 0px 0px;
    padding: 15px 20px;
    font-size: 17px;
    border-radius: 5px;
    background: white;
    cursor: pointer;
    font-weight: 500;
    border-color: rgb(0,0,0,0.1);
}

    #ui-datepicker-div td:not(.ui-datepicker-unselectable):hover,
    #nb-order-summary-part-two #nb-order-datepicker td:not(.ui-datepicker-unselectable):hover {
        background: rgb(8,53,111,0.01);
    }

    #ui-datepicker-div td *,
    #nb-order-summary-part-two #nb-order-datepicker td * {
        margin: auto;
        text-decoration: none;
        color: #4a4a4a;
    }

    #ui-datepicker-div td.ui-datepicker-unselectable,
    #nb-order-summary-part-two #nb-order-datepicker td.ui-datepicker-unselectable {
        cursor: not-allowed;
        opacity: 0.2;
        background: rgb(0,0,0,0.08);
    }

#ui-datepicker-div tbody,
#nb-order-summary-part-two #nb-order-datepicker tbody {
    border: solid 1px black;
    border-color: rgb(0,0,0,0.1);
}

/* Calendar in checkout */
.ui-datepicker-current-day {
    background: #08356f !important;
}

    .ui-datepicker-current-day a {
        color: white !important;
    }

#nb-order-summary-part-two #nb-order-datepicker {
    width: 100%;
    height: auto;
    background: none;
    box-shadow: none;
}

    #nb-order-summary-part-two #nb-order-datepicker:before {
        display: none;
    }

    #nb-order-summary-part-two #nb-order-datepicker #nb-form-date-input {
        background: white;
        box-shadow: 0 8px 24px rgba(0, 0, 0, .03);
        border-radius: 10px;
        padding: 20px;
    }

#nb-order-summary-part-two .ui-datepicker-header {
    padding: 20px 20px 15px;
}

.ui-datepicker-header {
    padding-left: 10px;
    padding-right: 10px;
}


/*----------------------------------------*/
/* ------- Search Results Styling --------*/
/*----------------------------------------*/
#wp-search-results {
    flex-wrap: wrap;
}

    #wp-search-results > div {
        width: 100%;
    }

#nb-spaces-available {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

#wp-search-results .nb-space {
    background: white;
    width: 31%;
    min-width: 310px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    margin-right: 3%;
    margin-top: 40px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

    #wp-search-results .nb-space img {
        max-width: 90%;
    }

    #wp-search-results .nb-space:nth-child(3n) {
        margin-right: 0%;
    }

#nb-space-header,
#nb-space-second-header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    background-color: #08356f;
    padding: 20px 20px 0px 20px;
}

#nb-space-second-header {
    padding: 0px 20px 20px 22px;
}

    #nb-space-header div,
    #nb-space-second-header div {
        font-family: 'Poppins';
        color: white;
        font-size: 23px;
        font-weight: 600;
    }

    #nb-space-second-header div {
        font-size: 12px;
    }

#nb-space-cta-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px 18px 20px;
}

    #nb-space-cta-header div {
        color: black;
        display: flex;
        align-items: center;
    }

    #nb-space-cta-header i,
    #nb-space-cta-header a {
        font-size: 14px;
        color: black;
        margin: 0px 3px 0px 0px;
    }

#nb-space-properties {
    padding: 0px 15px 5px;
    width: 90%;
    display: inline-block;
    margin-top: auto;
}

    #nb-space-properties hr {
        margin: 10px 5px;
        border-width: 1px 0px 0px 0px;
        border-color: #00000012;
    }

    #nb-space-properties i {
        font-size: 20px;
        margin-right: 10px;
    }

    #nb-space-properties li {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

#nb-space-button-book-container {
    padding: 10px;
    justify-content: center;
    display: inline-grid;
    margin-bottom: 20px;
}

    #nb-space-button-book-container button {
        border-width: 0px;
        padding: 10px 35px 10px 35px;
        font-size: 18px;
    }

        #nb-space-button-book-container button,
        #nb-space-button-book-container button:active,
        #nb-space-button-book-container button:focus {
            outline: none;
            background: #08356f;
            background-color: #08356f;
            font-family: "Open Sans",sans-serif !important;
            font-weight: bold;
            border-radius: 7px;
            padding: 16px 35px;
            font-size: 16px;
        }

    #nb-space-button-book-container .nb-space-available-from {
        color: red;
    }

/*----------------------------------------*/
/* ------- Checkout  Styling --------*/
/*----------------------------------------*/
#nordsta * {
    font-family: 'Poppins';
}

#nb-order-header {
    background: #08356f;
    color: white;
    padding: 20px 51px 20px 51px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    border-radius: 10px 10px 0% 0%;
    justify-content: space-between;
}

    #nb-order-header .changeBtn {
        text-decoration: none;
        background: white;
        color: black;
        padding: 6px 38px 9px;
        border-radius: 5%;
        display: inline-block;
        margin-top: 0px;
        font-weight: bold;
        border-radius: 7px;
        font-size: 16px;
    }

    #nb-order-header .leftHeader h2 {
        margin: 0;
        display: inline-block;
    }
        #nb-order-header .leftHeader h2:nth-child(2) {
            margin: 10px;
        }

    #nb-order-header .leftHeader {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: left;
    }

    #nb-order-header .rightHeader {
        max-width: 120px;
        position: relative;
    }

        #nb-order-header .rightHeader i {
            color: white;
            position: absolute;
            top: 0;
            right: -15px;
            font-size: 35px;
        }

    #nb-order-header img {
        display: block;
        max-width: 100%;
    }

#nb-order-summary {
    background: #fbfbfb;
    overflow: hidden;
    border-radius: 10px 10px 0px 0px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

#nb-form-container {
    background: #fbfbfb;
    padding: 0px 20px 20px 20px;
    overflow: hidden;
    border-radius: 0px 0px 10px 10px;
}

.nb-summary-part {
    background: #fbfbfb;
    padding: 0px 30px 0px 30px;
    margin: 0px 0px 10px;
    display: none;
    opacity: 0;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

#nb-order-summary-part-two.active {
    padding: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    display: flex;
}

#nb-order-summary-part-two #left,
#nb-order-summary-part-two #right {
    width: 48%;
}

#nb-order-summary-part-two h3 {
    color: #424242;
    font-size: 15px;
    font-weight: 600;
    margin: 15px 0px 12px;
    padding-left: 0px;
}

#nb-order-summary-part-two #left p {
    margin-bottom: 8px;
}

#nb-order-summary-part-two #left .nb-addOnParent {
    margin-bottom: 35px;
}

.nb-summary-part.active {
    display: flex;
    opacity: 1;
}

#nb-form-content .inputParent {
    width: 48%;
    margin-bottom: 23px;
    position:relative;
}

#nb-separate-email-parent {
    display: flex;
    align-items: center;
    margin-top: 5px;
    width: 100%;
    margin-bottom: 20px;
}

#nb-order-invoice-email {
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
    opacity: 1;
    display: block;
}

    #nb-order-invoice-email.hidden {
        opacity: 0;
        display: none;
    }

#nb-form-content #nb-separate-email-parent input {
    height: auto;
}

label[for="nb-separate-email-checkbox"] {
    color: #424242;
    font-size: 13px;
    font-weight: 600;
    padding-left: 5px;
}

#nb-form-content .inputParent input {
    border-width: 0px;
    height: 55px;
    font-size: 21px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .01);
    margin: 5px 0px 3px;
    color: #424242;
    position:relative;
}

#nb-form-content .inputParent.nb-child-input-invalid .ph-warning-circle {
    display: block !important;
    position: absolute;
    color: #f16a6a;
    right: 15px;
    top: 49px;
    font-size: 25px;
}

    #nb-form-content .inputParent input::placeholder {
        font-weight: 400;
        color: #e9e9e9;
        font-size: 21px;
    }

#nb-form-content .inputParent label {
    color: #424242;
    font-size: 13px;
    font-weight: 600;
    padding-left: 5px;
}

    #nb-form-content .inputParent label a {
        text-decoration: none;
        color: #424242;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

        #nb-form-content .inputParent label a i {
            margin-left: 5px;
            margin-top: 1px;
        }

#nb-summary-header {
    padding: 20px 52px 20px 52px;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
    opacity: 1;
    display: block;
}

    #nb-summary-header.hidden {
        display: none;
        opacity: 0;
    }

#nb-summary-header-buttons button {
    background: black;
    padding: 4px 20px;
    border-width: 0px;
    margin-right: 5px;
}

    #nb-summary-header-buttons button,
    #nb-summary-header-buttons button:active,
    #nb-summary-header-buttons button:focus {
        outline: none;
        background-color: #d1d1d1;
    }

        #nb-summary-header-buttons button:disabled,
        #nb-summary-header-buttons button[disabled] {
            background-color: black;
        }
/*//Nav buttons*/
#nb-summary-nav {
    padding: 0px 30px 30px 30px;
    display: flex;
    justify-content: flex-end;
}

#nb-nav-next {
    transition: none;
}

[id^="nb-nav-next"] {
    margin-left: auto;
}

#nb-summary-nav button {
    display: none;
    align-items: center;
    padding: 15px 0px;
    width: 48%;
    justify-content: center;
    border-width: 0px;
    opacity: 0;
    transition: all .3s ease-out;
}

    #nb-summary-nav button.active {
        opacity: 1;
        display: flex;
    }

    #nb-summary-nav button,
    #nb-summary-nav button:active,
    #nb-summary-nav button:focus {
        outline: none;
        background: #08356f;
        background-color: #08356f;
    }

        #nb-summary-nav button i {
            margin: 1px 5px 0px;
            font-size: 18px;
        }



#nb-eid-start-bankid-container {
    width: 100%;
    text-align: center;
}


/*----------------------------------------*/
/* ------- Receipt/Summary Styling --------*/
/* --------- Summary & Step 3  ----------*/
/*----------------------------------------*/

/*part 3 */
#nb-order-summary-part-three {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 40px 0px 80px;
    flex-direction: column;
}

#nb-order-summary-part-three #nb-confirmation-summary-container {
    width: 500px;
    max-width: 100%;
}
#nb-order-summary-part-three td {
    background: #fbfbfb !important;
    border-width: 0px !important;
}
.nb-order-summary-summary h3,
#nb-confirmation-summary-one h3 {
    padding: 0px !important;
}
.nb-order-summary-summary td,
#nb-confirmation-summary-one td{
    background: #fbfbfb !important;
    border-width: 0px !important;
    padding: 4px 15px !important;
}
.nb-order-summary-summary,
#nb-confirmation-summary-one {
    border-width: 0px !important;
}
#campaignTable {
    border-width: 0px !important;
}
#campaignTable td {
    background: #f1f1f1 !important;
    border-width: 0px !important;
    text-align: left;
    border-radius: 3px;
}
#nb-order-summary-firstMonth-cost-val span,
#nb-order-summary-monthly-cost-val span {
white-space:nowrap;
}

#nb-order-summary-part-three > h2::before {
    content: url(https://demo1.nordsta.se/wp-content/uploads/2022/10/Ditt-Forrad-copy-300x62.png);
    width: 300px;
    height: 62px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    overflow: hidden;
}




/*#nb-confirmation-buttons button {
    border-width: 0px;
    padding: 15px 30px;
    margin: 0px 5px;
}*/

/*#nb-confirmation-print {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    margin-bottom: 18px;
    margin-bottom: 12px !important;
}
    #nb-confirmation-print i {
        margin-left: 5px;
        
    }

#nb-confirmation-buttons button:active,
#nb-confirmation-buttons button:focus {
    outline: none;
    background: #08356f;
    background-color: #08356f;
}*/

table tbody > tr:nth-child(odd) {
    background-color: hsla(0, 0%, 90%, .0705882353) !important;
}

table tbody > tr:nth-child(even) {
    background-color: hsla(0, 0%, 85%, .0705882353) !important;
}

/*----------------------------------------*/
/* ------- Receipt/Summary Styling --------*/
/* ------------- Vipps ----------------*/
/*----------------------------------------*/

.nb-summary-part-vipps {
    background: #fbfbfb;
    padding: 0px 30px 0px 30px;
    margin: 0px 0px 10px;
    display: none;
    opacity: 0;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.nb-summary-part-vipps.active {
    display: flex;
    opacity: 1;
}

#nb-order-summary-vipps {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 40px 0px 80px;
    flex-direction: column;
}

#nb-order-summary-vipps #nb-vipps-confirmation-summary-container {
    width: 500px;
    max-width: 100%;
}

#nb-order-summary-vipps td {
    background: #fbfbfb !important;
    border-width: 0px !important;
}

.nb-order-space-summary h3,
#nb-vipps-confirmation-summary h3 {
    padding: 0px !important;
}

.nb-order-space-summary td,
#nb-vipps-confirmation-summary td {
    background: #fbfbfb !important;
    border-width: 0px !important;
    padding: 4px 15px !important;
}

.nb-order-space-summary,
#nb-vipps-confirmation-summary {
    border-width: 0px !important;
}

#campaignTable {
    border-width: 0px !important;
}

    #campaignTable td {
        background: #f1f1f1 !important;
        border-width: 0px !important;
        text-align: left;
        border-radius: 3px;
    }

#nb-order-summary-firstMonth-cost-val span,
#nb-order-summary-monthly-cost-val span {
    white-space: nowrap;
}

#nb-order-summary-vipps > h2::before {
    content: url(https://demo1.nordsta.se/wp-content/uploads/2022/10/Ditt-Forrad-copy-300x62.png);
    width: 300px;
    height: 62px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    overflow: hidden;
}


/*----------------------------------------*/
/* ------- Progress Bar Styling --------*/
/*----------------------------------------*/
#nb-summary-progress {
    display: flex;
    justify-content: space-between;
    margin: 0px 23px 0px 23px;
    position: relative;
}

    #nb-summary-progress > div {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    #nb-summary-progress .title {
        width: 100%;
        font-family: "Poppins";
        font-weight: 600;
        text-align: center;
        font-size: 12px;
        margin-bottom: 5px;
    }

    #nb-summary-progress .number {
        border-radius: 100%;
        width: 25px;
        height: 25px;
        text-align: center;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 13px;
        font-weight: 600;
        font-family: "Poppins";
        z-index: 1;
        background: #08356f;
        background: linear-gradient(to left, #e3e3e3 50%, #08356f 50%);
        background-size: 300% 120%;
        background-position: right bottom;
        transition: all .3s ease-out;
        transition-delay: 0s;
    }

    #nb-summary-progress:after,
    #nb-summary-progress:before {
        content: "";
        width: 47%;
        height: 2px;
        background: #e3e3e3;
        position: absolute;
        top: 35px;
        left: 40px;
        background: linear-gradient(to left, #e3e3e3 50%, #08356f 50%);
        background-size: 200% 100%;
        background-position: right bottom;
        transition: all 1s cubic-bezier(0.22, 0.61, 0.36, 1);
        transition-delay: 0.4s;
    }

    #nb-summary-progress:after {
        left: unset;
        right: 25px;
    }
    /*Active change*/
    #nb-summary-progress #progress-part-one.active .number,
    #nb-summary-progress #progress-part-two.active .number,
    #nb-summary-progress #progress-part-three.active .number {
        background-position: left bottom;
        transition-delay: 0.8s;
    }

    #nb-summary-progress.before-active:before,
    #nb-summary-progress.after-active:after {
        background-position: left bottom;
        transition-delay: 0s;
    }





/*----------------------------------------*/
/* ------- Animations --------*/
/*----------------------------------------*/
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*----------------------------------------*/
/* ------- Responsive Orderform --------*/
/*----------------------------------------*/
@media only screen and (max-width: 800px) {

    .sizeDropdown .options .option {
        padding: 12px 16px;
    }

    .facilityDropdown .options,
    .sizeDropdown .options {
        transition: none !important;
    }

    #nb-summary-progress:after,
    #nb-summary-progress:before {
        width: 45%;
    }

    .facilityDropdown,
    .sizeDropdown,
    .datepickerDropdown {
        width: 100%;
    }

    #wp-search-results .nb-space {
        width: 94%;
        margin: 20px auto;
    }

    .sizeDropdown .options .option {
        padding: 5px 16px;
    }

    #nb-order-summary {
        padding: 20px 0px 0px 0px;
    }

    #nb-summary-header {
        padding: 30px 25px;
    }

    .nb-summary-part {
        padding: 0;
    }

    #nb-summary-nav {
        padding: 0px 0px 30px 0px;
    }

        #nb-summary-nav button {
            width: 100%;
        }

    #nb-summary-nav {
        flex-wrap: wrap;
    }

    #nb-nav-prev {
        margin-bottom: 12px;
    }

    #nb-form-content .inputParent {
        width: 100%;
        margin-bottom: 10px;
    }

    #nb-order-summary-part-two #left,
    #nb-order-summary-part-two #right {
        width: 100%;
    }

    #nb-order-summary-part-two.active {
        padding: 15px 0px;
    }

    #ui-datepicker-div,
    #nb-order-summary-part-two #nb-order-datepicker {
        max-width: 85vw;
        width: 100%;
    }

        #ui-datepicker-div td,
        #nb-order-summary-part-two #nb-order-datepicker td {
            padding: 10px 0px;
        }

        #ui-datepicker-div th,
        #nb-order-summary-part-two #nb-order-datepicker th {
            padding: 15px 0px 5px 0px;
        }

        #nb-order-summary-part-two #nb-order-datepicker #nb-form-date-input {
            padding: 0px;
        }
}

@media only screen and (max-width: 600px) {
    #nb-order-header {
        padding: 5px 20px 5px 20px;
    }

        #nb-order-header .rightHeader {
            max-width: 75px;
        }

        #nb-order-header .changeBtn {
            display: none;

        }
}

@media only screen and (max-width: 485px) {
    #nb-summary-progress:after,
    #nb-summary-progress:before {
        width: 42%;
    }
}


/*print css*/
@media print {
    .elementor-location-header,
    .elementor-location-footer,
   /* #nb-confirmation-buttons,*/
    #nb-order-summary-part-three > hr,
    #nb-order-summary-part-three > p,
    #nb-order-summary,
    .page-content > .elementor > section {
        display: none;
    }

        .page-content > .elementor > section.elementor-element-7969352 {
            display: block;
        }

    #nb-order-summary-part-three .nb-confirmation-summary p,
    #nb-order-summary-part-three > h2,
    #nb-order-summary-part-three .nb-confirmation-summary h3 {
        margin-bottom: 0px;
    }
}

/* Daniel 20230520: Gråa ut knapparna när disabled. */
.nb-next-button:disabled {
    opacity: 0.4 !important;
    cursor: not-allowed;
    pointer-events: none;
}


/* ny css ian 20230705 */
.facilityDropdown .options, .sizeDropdown .options {
    margin-left: 0px;
}

#nb-order-summary {
    margin-top: 40px;
}

#nb-summary-header-buttons button, #nb-summary-header-buttons button:active, #nb-summary-header-buttons button:focus {
    border-radius: 4px;
    margin-top: 10px;
}

#nb-form-content .inputParent input {
    width: 100%;
}

#nb-link-get-personal-info {
    position: relative;
}

#nb-summary-nav button, #nb-summary-nav button:active, #nb-summary-nav button:focus {
    outline: none;
    background: #141414;
    font-weight: bold;
    font-size: 16px;
    border-radius: 5px;
}

label[for=nb-form-ssn] {
    display: block;
}

.nb-addOnParent select {
    width: 100%;
}

#nb-order-summary-part-three > h2::before {
    height: auto;
}

#nb-confirmation-print, #nb-confirmation-print:active, #nb-confirmation-print:focus {
    font-weight: bold;
    border-radius: 5px;
    font-size: 15px;
}

/* //Mobilanpassning Nordsta Orderform */
@media only screen and (max-width: 800px) {
    #wp-search-results .nb-space {
        margin: 20px auto !important;
    }
    #policy {
        bottom: -180px !important;
    }
}

@media only screen and (max-width: 500px) {
    .nb-order-summary-summary td, #nb-confirmation-summary-one td {
        padding: 4px 0px !important;
    }

    .nb-order-space-summary td, #nb-vipps-confirmation-summary td {
        padding: 4px 0px !important;
    }

    #nb-order-summary-part-two #left p {
        text-align: left;
    }

    #nb-order-summary-part-two h3 {
        margin-bottom: 10px;
    }

    

    #wp-search-results .nb-space img {
        max-width: 60%;
    }

    #nb-space-button-book-container {
        padding: 0;
    }

    #nb-space-properties {
        margin: 0;
        padding: 15px;
    }
   /* #nb-confirmation-buttons {
        display:none;
    }*/
    #nb-space-button-book-container {
        margin-bottom:30px;
    }
}


