/*==================================================================================
    Custom Stylesheet (Any custom styling you want to apply should be defined here).
====================================================================================*/

[ng\:cloak],
[ng-cloak],
.ng-cloak {
    display: none;
}

/*body {
    box-shadow: inset 0 0 5em #000;
}*/

* {
    box-sizing: border-box;
}

.app-container {
    border-radius: 4px;
    overflow: hidden;
    width: auto;
    height: auto;
    max-width: 100%;
    position: inherit;
    left: 0;
    right: 0;
    margin: auto;
}

/* Datepicker Stuff */
.datepicker {
    position: relative;
    width: 100%;
    display: block;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-family: "Roboto", sans-serif;
    overflow: hidden;
    transition: background 0.15s ease;
}

.datepicker.am {
    background: white;
}

.datepicker.pm {
    background: #ea871f;
}

.datepicker-header {
    width: 100%;
    color: white;
    overflow: hidden;
}

.datepicker-title {
    width: 50%;
    float: left;
    height: 60px;
    line-height: 60px;
    padding: 0 15px;
    text-align: left;
    font-size: 20px;
}

.datepicker-subheader {
    width: 50%;
    float: left;
    height: 60px;
    line-height: 60px;
    font-size: 14px;
    padding: 0 15px;
    text-align: right;
}

.datepicker-calendar {
    width: 50%;
    float: left;
    padding: 20px 15px 15px;
    max-width: 400px;
    display: block;
    text-align: justify;
}

.calendar-header {
    color: black;
    font-weight: bolder;
    text-align: center;
    font-size: 18px;
    padding: 10px 0;
    position: relative;
}

.current-month-container {
    display: inline-block;
    height: 30px;
    position: relative;
}

.goback,
.goforward {
    height: 30px;
    width: 30px;
    border-radius: 30px;
    display: inline-block;
    cursor: pointer;
    position: relative;
    top: -4px;
}

.goback path,
.goforward path {
    transition: stroke 0.15s ease;
}

.goback {
    float: left;
    margin-left: 3.8%;
}

.goforward {
    float: right;
    margin-right: 3.8%;
}

.calendar-day-header {
    width: 100%;
    position: relative;
}

.day-label {
    color: #8a8a8a;
    padding: 5px 0;
    width: 14.2857142%;
    display: inline-block;
    text-align: center;
}

.datecontainer {
    width: 14.2857142%;
    display: inline-block;
    text-align: center;
    padding: 4px 0;
}

.datenumber {
    max-width: 35px;
    max-height: 35px;
    line-height: 35px;
    margin: 0 auto;
    color: #8a8a8a;
    position: relative;
    text-align: center;
    cursor: pointer;
    z-index: 1;
    transition: all 0.25s cubic-bezier(0.7, -0.12, 0.2, 1.12);
}

.no-hover .datenumber,
.no-hover .datenumber:hover,
.no-hover .datenumber:before,
.no-hover .datenumber:hover::before {
    cursor: default;
    color: #8a8a8a;
    background: transparent;
    opacity: 0.5;
}

.no-hover .datenumber.day-selected {
    color: white;
}

.datenumber:hover {
    color: white;
}

.datenumber:before {
    content: "";
    display: block;
    position: absolute;
    height: 35px;
    width: 35px;
    border-radius: 100px;
    z-index: -1;
    background: transparent;
    transform: scale(0.75);
    transition: all 0.25s cubic-bezier(0.7, -0.12, 0.2, 1.12);
    transition-property: background, transform, color, border;
}

.datenumber:hover::before {
    background: #ffab91;
    transform: scale(1);
}

.day-selected {
    color: white;
}

.datenumber.day-selected:before {
    background: #ff6e40;
    transform: scale(1);
    -webkit-animation: select-date 0.25s forwards;
    animation: select-date 0.25s forwards;
}

@-webkit-keyframes select-date {
    0% {
        background: #ffab91;
    }
    100% {
        background: #ff6e40;
    }
}
@keyframes select-date {
    0% {
        background: #ffab91;
    }
    100% {
        background: #ff6e40;
    }
}
/* timepicker styles */
.timepicker-container-outer {
    width: 50%;
    max-width: 700px;
    float: left;
    display: block;
    padding: 40px 30px 30px;
    position: relative;
    top: 50px;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.15s ease;
}

.timepicker-container-inner {
    width: 100%;
    height: 100%;
    max-width: 320px;
    margin: 0 auto;
    position: relative;
    display: block;
}

.timeline-container {
    display: block;
    float: left;
    position: relative;
    width: 100%;
    height: 36px;
}

.current-time {
    display: block;
    position: absolute;
    z-index: 1;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    top: -25px;
    left: -20px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.current-time::after {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    background: #ff6e40;
    transition: all 0.15s ease;
    transform: rotate(45deg);
    border-radius: 20px 20px 3px 20px;
    z-index: -1;
    top: 0;
}

.actual-time {
    color: white;
    line-height: 40px;
    font-size: 12px;
    text-align: center;
    transition: all 0.15s ease;
}

.timeline {
    display: block;
    z-index: 1;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
}

.timeline::before,
.timeline::after {
    content: "";
    display: block;
    width: 2px;
    height: 10px;
    top: -6px;
    position: absolute;
    background: #ea871f;
    left: -1px;
    transition: background 0.15s ease;
}

.timeline::after {
    left: auto;
    right: -1px;
}

.hours-container {
    display: block;
    z-index: 0;
    width: 100%;
    height: 10px;
    position: absolute;
    top: 31px;
    left: 1px;
}

.hour-mark {
    width: 2px;
    display: block;
    float: left;
    height: 4px;
    background: #ea871f;
    position: relative;
    margin-left: calc((100% / 12) - 2px);
    transition: background 0.15s ease;
}

.hour-mark:nth-child(3n) {
    height: 6px;
    top: -1px;
}

.display-time {
    width: calc(60% - 30px);
    display: block;
    margin-top: 30px;
    height: 36px;
    line-height: 36px;
    overflow: hidden;
    float: left;
    position: relative;
    font-size: 20px;
    text-align: center;
    transition: color 0.15s ease;
}

.decrement-time,
.increment-time {
    cursor: pointer;
    position: absolute;
    display: block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    top: 6px;
    font-size: 20px;
}

.decrement-time {
    left: 0;
    text-align: left;
}

.increment-time {
    right: 0;
    text-align: right;
}

.increment-time path,
.decrement-time path {
    transition: all 0.15s ease;
}

.time {
    width: calc(100% - 48px);
    position: relative;
    left: 24px;
    height: 36px;
}
.time:after {
    content: "";
    height: 2px;
    width: 100%;
    position: absolute;
    bottom: 0;
    background: white;
    left: 0;
    right: 0;
    opacity: 0.5;
    transition: all 0.15s ease;
}

.time.time-active:after {
    display: none;
}

.time-input {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 34px;
    line-height: 34px;
    bottom: 2px;
    width: 100%;
    border: none;
    background: none;
    text-align: center;
    color: white;
    font-size: inherit;
    opacity: 0;
    transition: all 0.15s ease;
    cursor: pointer;
}
.time-input:focus, .time-input:active {
    outline: none;
}

.formatted-time {
    cursor: pointer;
}

.time-input:focus {
    cursor: auto;
}
.time-input:focus ~ .formatted-time {
    border-radius: 2px;
    background: #ea871f;
    color: white;
    cursor: default;
}

.am-pm-container {
    width: 40%;
    padding-left: 15px;
    float: right;
    height: 36px;
    line-height: 36px;
    display: block;
    position: relative;
    margin-top: 30px;
}

.am-pm-button {
    width: calc(50% - 5px);
    height: 36px;
    line-height: 36px;
    background: #2196f3;
    text-align: center;
    color: white;
    border-radius: 4px;
    float: left;
    cursor: pointer;
}

.am-pm-button:first-child {
    background: #ea871f;
    color: white;
}

.am-pm-button:last-child {
    background: white;
    color: #ea871f;
    margin-left: 10px;
}

@-webkit-keyframes select-date-pm {
    0% {
        background: rgba(255, 255, 255, 0.5);
    }
    100% {
        background: #fff;
    }
}
@keyframes select-date-pm {
    0% {
        background: rgba(255, 255, 255, 0.5);
    }
    100% {
        background: #fff;
    }
}
.datepicker.am .datepicker-header {
    color: white;
    background: #ea871f;
}
.datepicker.am .current-time::after {
    background: #ea871f;
}
.datepicker.am .actual-time {
    color: white;
}
.datepicker.am .display-time {
    color: #ff6e40;
}
.datepicker.am .time-input {
    color: #ff693c;
}
.datepicker.am .time:after {
    background: #ff693c;
}
.datepicker.am .increment-time path,
.datepicker.am .decrement-time path {
    stroke: #ff693c;
}

.datepicker.pm .datepicker-header {
    background: white;
    color: #ff693c;
}
.datepicker.pm .datepicker-subheader {
    color: #ea871f;
}
.datepicker.pm .goback:before,
.datepicker.pm .goback:after,
.datepicker.pm .goforward:before,
.datepicker.pm .goforward:after {
    background: white;
}
.datepicker.pm .day-label {
    color: white;
}
.datepicker.pm .datenumber {
    color: white;
}
.datepicker.pm .datenumber:hover::before {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1);
}
.datepicker.pm .datenumber.day-selected {
    color: #ff693c;
}
.datepicker.pm .datenumber.day-selected:before {
    background: white;
    -webkit-animation: select-date-pm 0.25s forwards;
    animation: select-date-pm 0.25s forwards;
}
.datepicker.pm .current-month-container {
    color: white;
}
.datepicker.pm .current-time::after {
    background: white;
}
.datepicker.pm .actual-time {
    color: #ff6e40;
}
.datepicker.pm .display-time {
    color: white;
}
.datepicker.pm .timeline::before,
.datepicker.pm .pm .timeline::after {
    background: white;
}
.datepicker.pm .hour-mark {
    background: white;
}
.datepicker.pm .am-pm-button:last-child {
    color: #ff6e40;
}
.datepicker.pm .cancel-button {
    background: none;
    color: white;
}
.datepicker.pm .save-button {
    background: white;
    color: #ff693c;
}
.datepicker.pm .goback path,
.datepicker.pm .goforward path {
    stroke: white;
}
.datepicker.pm .time-input:focus ~ .formatted-time {
    background: white;
    color: #ff693c;
}

.datepicker.compact .datepicker-title,
.datepicker.compact .datepicker-subheader {
    width: 100%;
    text-align: center;
}
.datepicker.compact .datepicker-title {
    height: 50px;
    line-height: 50px;
}
.datepicker.compact .datepicker-subheader {
    height: 30px;
    line-height: 30px;
}
.datepicker.compact .display-time {
    width: 60%;
    font-size: 20px;
    line-height: 36px;
}
.datepicker.compact .app-container {
    width: 100%;
}
.datepicker.compact .datepicker-calendar {
    width: 100%;
    margin: 0 auto;
    float: none;
}
.datepicker.compact .timepicker-container-outer {
    width: 100%;
    margin: 0 auto;
    float: none;
    top: -15px;
}
.datepicker.compact .buttons-container {
    position: relative;
    float: right;
}

/*!*type input animation*!
.input_animate {
    position: relative;
}

input[type=text] {
    border: 2px solid rgba(255,105,60, 0.5);
    font-size: 1.75em;
    padding: 0.25em 0.5em 0.3125em;
    color: rgba(255,105,60, 0.5);
    border-radius: 0.25em;
    background: transparent;
    transition: all 0.1s;
}

.input_animate span{
    border: 2px solid rgba(255,105,60, 0.5);
    font-size: 1.75em;
    padding: 0.25em 0.5em 0.3125em;
    color: rgba(255,105,60, 0.5);
    border-radius: 0.25em;
    background: transparent;
    transition: all 0.1s;
}
.input_animate span:focus,
input[type=text] :focus {
    outline: none;
    color: rgba(255,105,60, .75);
    border-color: rgba(255,105,60, 0.75);
}
.input_animate span.keyup,
input[type=text] .keyup {
    color: darkorange;
    border-color: darkorange;
    text-shadow: 0 0 0.125em darkorange;
    box-shadow: 0 0 0.25em darkorange, inset 0 0 0.25em darkorange;
}

canvas {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    pointer-events: none;
}

input[type=text]  {
    font-family: "Arial Rounded MT Bold", "Helvetica Rounded", Arial, sans-serif;
}

::-webkit-input-placeholder {
    color: rgba(255,105,60, 0.5);
    text-shadow: 0 0 0.125em transparent;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

input:focus::-webkit-input-placeholder {
    opacity: 0.5;
}

::-moz-placeholder {
    color: rgba(255,105,60, 0.5);
    text-shadow: 0 0 0.125em transparent;
    -moz-transition: all 0.25s;
    transition: all 0.25s;
}

input[type=text] :focus::-moz-placeholder {
    opacity: 0.5;
}

:-ms-input-placeholder {
    color: rgba(255,105,60, 0.5);
    text-shadow: 0 0 0.125em transparent;
    -ms-transition: all 0.25s;
    transition: all 0.25s;
}

input[type=text] :focus:-ms-input-placeholder {
    opacity: 0.5;
}

html, body {
    height: 100%;
    overflow: hidden;
}

!*html {*!
!*    background: #333 url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/68397/forest-fly-agaric-fog-moss-fliegenpilz.jpg) no-repeat center bottom;*!
!*    background-size: cover;*!
!*}*!

!*body {
    box-shadow: inset 0 0 5em #000;
}*!

input[type=text]  {
    !*position: absolute;*!
    box-sizing: border-box;
    bottom: 4em;
    !*left: 50%;*!
    width: 11em;
    margin-left: -5.5em;
}*/

/*body {
    background-color: #E6E6FA;
}*/


/*span {
    !*border: 2px solid rgba(255, 255, 255, 0.5);*!
    font-size: 1.75em;
    padding: 0.25em 0.5em 0.3125em;
    !*color: rgba(255, 255, 255, 0.5);*!
    !*border-radius: 0.25em;*!
    !*background: transparent;*!
    !*transition: all 0.1s;*!
}*/
input {
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-size: 1.75em;
    padding: 0.25em 0.5em 0.3125em;
    color: rgba(255, 255, 255, 0.5);
    border-radius: 0.25em;
    background: transparent;
    transition: all 0.1s;
}
span:focus,
input:focus {
    outline: none;
    color: rgba(255, 255, 255, 0.75);
    border-color: rgba(255, 255, 255, 0.75);
}
span.keyup,
input.keyup {
    color: white;
    border-color: white;
    text-shadow: 0 0 0.125em white;
    box-shadow: 0 0 0.25em white, inset 0 0 0.25em white;
}

canvas {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    pointer-events: none;
}

input {
    font-family: "Arial Rounded MT Bold", "Helvetica Rounded", Arial, sans-serif;
}

::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
    text-shadow: 0 0 0.125em transparent;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

input:focus::-webkit-input-placeholder {
    opacity: 0.5;
}

::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
    text-shadow: 0 0 0.125em transparent;
    -moz-transition: all 0.25s;
    transition: all 0.25s;
}

input:focus::-moz-placeholder {
    opacity: 0.5;
}

:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
    text-shadow: 0 0 0.125em transparent;
    -ms-transition: all 0.25s;
    transition: all 0.25s;
}

input:focus:-ms-input-placeholder {
    opacity: 0.5;
}


input {
    /*position: absolute;*/
    box-sizing: border-box;
    bottom: 4em;
    left: 50%;
    width: 11em;
    /*margin-left: -5.5em;*/
}


.typeSelectContainer {
    position: relative;
    width: 100%;
    display: block;
    -webkit-tap-highlight-color: rgba(255,105,60,.75);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-family: "Roboto", sans-serif;
    overflow: hidden;
    transition: background 0.15s ease;
}

.app-container-common {
    border-radius: 4px;
    overflow: hidden;
    width: 100%;
    /* width: 720px; */
    height: auto;
    /* max-width: 100%; */
    position: relative;
    /* top: 120px; */
    /* left: 0;
    right: 0; */
    margin: auto;
}

.common-picker {
    position: relative;
    width: 100%;
    display: block;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-family: "Roboto", sans-serif;
    overflow: hidden;
    transition: background 0.15s ease;
    background: #ea871f;
}

.common-picker-header {
    width: 100%;
    color: white;
    overflow: hidden;
}
.common-picker-body {
    height: 100%;
    background-color: white;
    overflow: hidden;
    /* padding: 28px 30px 28px; */
}

.common-picker-quote-header {
    width: 100%;
    color: white;
    overflow: hidden;
}

.common-picker-body-quote {
    height: 100%;
    background-color: white;
    overflow: hidden;
    /*padding: 28px 30px 28px;*/
}

.common-picker-body-quote img{
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: auto;
    opacity: 0.1;
     /*padding: 28px 30px 28px;*/
}

.common-picker-body-quote .quoteText{
    z-index: 2;
    position: relative;
    top: 190px;
    left: 50%;
    transform: translate(-50%, -50%);
    color: darkorange;
    font-size: 18px;
    font-weight: bold;
}

.common-picker-body-quote .quoteTextIkeaQuote{
    z-index: 2;
    position: relative;
    height: 450px;
    top: 235px;
    left: 50%;
    transform: translate(-50%, -50%);
    color: darkorange;
    font-size: 18px;
    font-weight: bold;
}

.common-picker-quote-title {
    height: 60px;
    line-height: 60px;
    padding: 0 15px;
    text-align: center;
    font-size: 20px;
}

.common-picker-title {
    width: 50%;
    float: left;
    height: 60px;
    line-height: 60px;
    padding: 0 15px;
    text-align: left;
    font-size: 20px;
}

.common-picker-subheader {
    width: 50%;
    float: left;
    height: 60px;
    line-height: 60px;
    font-size: 14px;
    padding: 0 15px;
    text-align: right;
}

/*final page display box for quote*/

.common-picker-body-quote-last {
    height: 100%;
    background-color: white;
    overflow: hidden;
    /*padding: 28px 30px 28px;*/
}

.common-picker-body-quote-last img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 300px;
    height: 300px;
    padding: 28px 30px 28px;
}

.common-picker-body-quote-last .quoteText{
    z-index: 2;
    position: relative;
    top: 235px;
    left: 50%;
    transform: translate(-50%, -50%);
    color: darkorange;
    font-size: 18px;
    font-weight: bold;
}

.common-picker-body-quote-last .quoteTextIkeaQuote{
    z-index: 2;
    position: relative;
    height: 450px;
    top: 235px;
    left: 50%;
    transform: translate(-50%, -50%);
    color: darkorange;
    font-size: 18px;
    font-weight: bold;
}


/*select room type and floor box*/

.select {
    position: relative;
    overflow: hidden;
    display: block;
    margin: auto;
    width: 330px;
    height: 100%;
    border-bottom: 0px;
    border-radius: 3px;
    font-size: 12px;
    box-shadow: 0px 1em 2em -1.5em rgba(0, 0, 0, 0.5);
}
.select > i.toggle {
    position: absolute;
    z-index: 4;
    right: 1.5em;
    top: 1.6em;
    color: #ccc;
}
.select .title,
.select .placeholder {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 1.5em 2em;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
}
.select > input {
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0;
    cursor: pointer;
}
.select > input:checked ~ i.toggle.icon-arrow-down {
    display: none;
}
.select > input:checked ~ i.toggle.icon-arrow-up {
    display: block;
}
.select > input:checked div.options label.option .title {
    display: none !important;
}
.select > input:not(:checked) {
    z-index: 4;
}
.select > input:not(:checked) ~ label.option > span.title {
    display: none;
}
.select > input:not(:checked) ~ i.toggle.icon-arrow-up {
    display: none;
}
.select > input:not(:checked) ~ i.toggle.icon-arrow-down {
    display: block;
}
.select > input:disabled {
    cursor: no-drop;
}
.select > span.placeholder {
    position: relative;
    z-index: 0;
    display: inline-block;
    width: 100%;
    color: #999;
    border-top: 0px;
}
.select label.option {
    display: block;
    overflow: hidden;
    z-index: 1;
    width: 100%;
    transition: all 1s ease-out;
}
.select label.option span.title {
    position: relative;
    z-index: 2;
    transition: background 0.3s ease-out;
}
.select label.option span.title i.icon {
    padding-right: 8px;
    color: #92a8d1;
}
.select label.option span.title:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: inset 0px 1px 0px rgba(0, 0, 0, 0.1);
}
.select label.option input {
    display: none;
}
.select label.option input:checked ~ span.title {
    position: absolute;
    display: block;
    z-index: 3;
    top: 0px;
    font-size: 12px;
    background: #fff;
    border-top: 0px;
    box-shadow: none;
    color: inherit;
    width: 100%;
}
.select label.option input:disabled ~ span.title {
    background: #f9f9f9 !important;
    color: #aaa;
}
.select label.option input:disabled ~ span.title:hover {
    color: #aaa;
    background: none;
    cursor: no-drop;
}

.select2 {
    position: relative;
    overflow: hidden;
    display: block;
    margin: auto;
    width: 330px;
    height: 100%;
    border-bottom: 0px;
    border-radius: 3px;
    font-size: 12px;
    box-shadow: 0px 1em 2em -1.5em rgba(0, 0, 0, 0.5);
}
.select2 i.toggle {
    position: absolute;
    z-index: 4;
    right: 1.5em;
    top: 1.6em;
    color: #ccc;
}
.select2 .title,
.select2 .placeholder {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 1.5em 2em;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
}
.select2 > label > input {
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0;
    cursor: pointer;
}
.select2 > label > input:checked {
    z-index: 2;
}
.select2 > label > input:checked ~ i.toggle.icon-plus {
    display: none;
}
.select2 > label > input:checked ~ i.toggle.icon-minus {
    display: block;
}
.select2 > label > input:not(:checked) ~ i.toggle.icon-minus {
    display: none;
}
.select2 > label > input:not(:checked) ~ i.toggle.icon-plus {
    display: block;
}
.select2 > label > input:not(:checked) ~ label.option input:not(:checked) ~ .title {
    display: none !important;
}
.select2 > label > input:disabled {
    cursor: no-drop;
}
.select2 label > span.placeholder {
    position: relative;
    z-index: 0;
    display: inline-block;
    width: 100%;
    color: #999;
    border-top: 0px;
}
.select2 label.option {
    display: block;
    overflow: hidden;
    z-index: 1;
    width: 100%;
    transition: all 1s ease-out;
}
.select2 label.option span.title {
    position: relative;
    z-index: 2;
    transition: background 0.3s ease-out;
}
.select2 label.option span.title i.icon {
    padding-right: 8px;
    color: #92a8d1;
}
.select2 label.option span.title:hover {
    color: #fff;
    background: rgba(146, 168, 209, 0.5);
    box-shadow: inset 0px 1px 0px rgba(0, 0, 0, 0.1);
}
.select2 label.option input {
    display: none;
}
.select2 label.option input:checked ~ span.title {
    position: absolute;
    display: block;
    z-index: 1;
    top: 0px;
    font-size: 12px;
    background: #fff;
    border-top: 0px;
    box-shadow: none;
    color: inherit;
    width: 100%;
}
.select2 label.option input:disabled ~ span.title {
    background: #f9f9f9 !important;
    color: #aaa;
}
.select2 label.option input:disabled ~ span.title:hover {
    color: #aaa;
    background: none;
    cursor: no-drop;
}

/*radio button - 1 for room type selection*/
.option-group {
    width: 90%;
    max-width: 300px;
    height: 112px;
    position: relative;
    overflow: hidden;
    border-radius: 0.25em;
    font-size: 3rem;
    margin: 0.2em auto;
    transform: translateZ(0);
}

.option-group span{
    color: rgba(255, 255, 255, 0.5);
}

.option-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 120%;
    height: 100%;
    margin: 0 -10%;
}
.option {
    overflow: hidden;
    flex: 1;
    display: block;
    padding: 0.5em;
    background: linear-gradient(298deg, var(--red), var(--yellow));
    position: relative;
    margin: 0em;
    margin-right: 0.2em;
    border-radius: 0.25em;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    cursor: pointer;
    opacity: 0.5;
    transition-duration: 0.8s, 0.6s;
    transition-property: transform, opacity;
    transition-timing-function: cubic-bezier(0.98, 0, 0.22, 0.98), linear;
    will-change: transform, opacity;
}
.option:last-child {
    margin-right: 0;
}
.option__indicator {
    display: block;
    transform-origin: left bottom;
    transition: inherit;
    will-change: transform;
    position: absolute;
    top: 0.5em;
    right: 0.5em;
    left: 0.5em;
}
/*.option__indicator:before,
.option__indicator:after {
    content: '';
    display: block;
    border: solid 2px #64D6EE;
    border-radius: 50%;
    width: 0.25em;
    height: 0.25em;
    position: absolute;
    top: 0;
    right: 0;
}
.option__indicator:after {
    background: #64D6EE;
    transform: scale(0);
    transition: inherit;
    will-change: transform;
}*/
.option-input {
    position: absolute;
    top: 0;
    z-index: -1;
    visibility: hidden;
}
.option__label {
    display: block;
    width: 100%;
    text-transform: uppercase;
    font-size: 1.2em;
    font-weight: bold;
    transform-origin: left bottom;
    transform: translateX(20%) scale(0.7);
    transition: inherit;
    will-change: transform;
}
.option__label sub {
    margin-left: 0.25em;
    font-size: 0.4em;
    display: inline-block;
    vertical-align: 0.3em;
}
/*.option__label:after {
    content: '';
    display: block;
    border: solid 2px #64D6EE;
    width: 100%;
    transform-origin: 0 0;
    transform: scaleX(0.2);
    transition: inherit;
    will-change: transform;
}*/
.option:last-child .option__label {
    transform: translateX(0%) scale(0.7);
}
.option:last-child .option__indicator {
    transform: translateX(-20%);
}
.option-input:checked ~ .option {
    transform: translateX(-20%) translateX(0.2em);
}
.option-input:checked ~ .option .option__indicator {
    transform: translateX(0%);
}
.option-input:checked ~ .option .option__label {
    transform: translateX(40%) scale(0.7);
}
.option-input:first-child:checked ~ .option {
    transform: translateX(20%) translateX(-0.2em);
}
.option-input:first-child:checked ~ .option .option__indicator {
    transform: translateX(-40%);
}
.option-input:first-child:checked ~ .option .option__label {
    transform: translateX(0%) scale(0.7);
}
.option-input:nth-child(1):checked ~ .option:nth-of-type(1),
.option-input:nth-child(2):checked ~ .option:nth-of-type(2) {
    opacity: 1;
}
.option-input:nth-child(1):checked ~ .option:nth-of-type(1) .option__indicator,
.option-input:nth-child(2):checked ~ .option:nth-of-type(2) .option__indicator {
    transform: translateX(0);
}
.option-input:nth-child(1):checked ~ .option:nth-of-type(1) .option__indicator::after,
.option-input:nth-child(2):checked ~ .option:nth-of-type(2) .option__indicator::after {
    transform: scale(1);
}
.option-input:nth-child(1):checked ~ .option:nth-of-type(1) .option__label,
.option-input:nth-child(2):checked ~ .option:nth-of-type(2) .option__label,
.option-input:nth-child(1):checked ~ .option:nth-of-type(1) .option__label::after,
.option-input:nth-child(2):checked ~ .option:nth-of-type(2) .option__label::after {
    transform: scale(1);
}

/*floor form radio button for floor select*/

@import url("https://fonts.googleapis.com/css?family=Roboto");

.floor_form input[type=radio] {
    position: absolute;
    visibility: hidden;
    display: none;
}

.floor_form label {
    color: #9a929e;
    display: inline-block;
    margin-bottom: .0rem;
    cursor: pointer;
    font-weight: bold;
    padding: 5px 20px;
}

.floor_form input[type=radio]:checked + label {
    color: #ccc8ce;
    background: linear-gradient(298deg, var(--red), var(--yellow));
}

.floor_form label + input[type=radio] + label {
    /*border-left: solid 3px #ea871f;*/
}

.floor_form {
    border: solid 3px #ea871f;
    display: inline-block;
    margin: 20px;
    border-radius: 10px;
    overflow: hidden;
}

/*ikea budget form radio button for budget value select*/

@import url("https://fonts.googleapis.com/css?family=Roboto");

.ikea_budget_form input[type=radio] {
    position: absolute;
    visibility: hidden;
    display: none;
}

.ikea_budget_form label {
    color: #9a929e;
    display: inline-block;
    margin-bottom: .0rem;
    cursor: pointer;
    font-weight: bold;
    padding: 5px 20px;
}

.ikea_budget_form input[type=radio]:checked + label {
    color: #ccc8ce;
    background: linear-gradient(298deg, var(--red), var(--yellow));
}

.ikea_budget_form label + input[type=radio] + label {
    /*border-left: solid 3px #ea871f;*/
}

.ikea_budget_form {
    border: solid 3px #ea871f;
    display: inline-block;
    margin: 20px;
    border-radius: 10px;
    overflow: hidden;
}

ul.thumbnails.image_picker_selector {
    overflow: auto;
    list-style-image: none;
    list-style-position: outside;
    list-style-type: none;
    padding: 0px;
    margin: 0px; }
/* line 15, source/sass/image-picker.scss */
ul.thumbnails.image_picker_selector ul {
    overflow: auto;
    list-style-image: none;
    list-style-position: outside;
    list-style-type: none;
    padding: 0px;
    margin: 0px; }
/* line 25, source/sass/image-picker.scss */
ul.thumbnails.image_picker_selector li.group_title {
    float: none; }
/* line 30, source/sass/image-picker.scss */
ul.thumbnails.image_picker_selector li {
    margin: 0px 12px 12px 0px;
    float: left; }
/* line 35, source/sass/image-picker.scss */
ul.thumbnails.image_picker_selector li .thumbnail {
    padding: 6px;
    border: 1px solid #DDD;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none; }
/* line 42, source/sass/image-picker.scss */
ul.thumbnails.image_picker_selector li .thumbnail img {
    -webkit-user-drag: none;
    /*max-width: 10%;*/
    /*max-height: 10%;*/
}
/* line 48, source/sass/image-picker.scss */
ul.thumbnails.image_picker_selector li .thumbnail.selected {
    background: #08C; }

/*truck select*/
.popover {
    max-width: 100%;
}

.truckSelect input[type="radio"] {
    position: fixed;
    opacity: 0;
}
.truckSelect label {
    cursor: pointer;
}

.truckSelect input[type="radio"]:checked ~ * {
    background-color: #ea871f;
}

/*.truckSelect span {
    display: block;
    text-align: center;
    color: #363636;
}*/

.truck-type-label {
    padding-bottom: 5px;
}

/*quote result container*/

.quoteResultContainer{
    position: relative;
    text-align: center;
    color: white;
    background-image: url('../img/deluxe_move.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
}

.textCentered {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*beatiful button*/
:root {
    --bg: rgb(243, 243, 243);
    --green: rgb(185, 255, 129);
    --transition-easing: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

input[type=checkbox] {
    display: none;
}
input[type=checkbox]:checked + label.checkbox .checkbox__inner .green__ball {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    transition-delay: 150ms;
}
input[type=checkbox]:checked ~ .checkbox__text {
    opacity: 1;
}
input[type=checkbox]:checked ~ .checkbox__text .checkbox__text--options span.off {
    transform: translateY(150%);
    opacity: 0;
}
input[type=checkbox]:checked ~ .checkbox__text .checkbox__text--options span.on {
    transform: translateY(0%);
    opacity: 1;
}

.checkbox {
    position: absolute;
    left: 42%;
    border: solid 3px #ea871f;
    display: inline-block;
    margin: 20px;
    /*border-radius: 10px;*/
    overflow: hidden;
    --size: 80px;
    /*display: block;*/
    position:  relative;
    width: var(--size);
    height: var(--size);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30%;
    background: var(--bg);
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.12), 2px 2px 6px rgba(0, 0, 0, 0.05), 2px 2px 10px rgba(0, 0, 0, 0.025), inset -2px -2px 3px rgba(0, 0, 0, 0.05), inset -2px -2px 8px rgba(0, 0, 0, 0.02), inset 1px 3px 3px rgba(255, 255, 255, 0.45), inset 3px 8px 25px rgba(255, 255, 255, 0.35), inset 3px 2px 3px rgba(255, 255, 255, 0.35), inset 3px 2px 5px rgba(255, 255, 255, 0.2), inset 2px 3px 8px rgba(255, 255, 255, 0.085), inset 3px 2px 18px rgba(255, 255, 255, 0.05), inset 2px 3px 25px rgba(255, 255, 255, 0.025), inset 8px 8px 18px rgba(255, 255, 255, 0.1), inset 8px 8px 25px rgba(255, 255, 255, 0.05);
    cursor: pointer;
}
.checkbox .checkbox__inner {
    position: relative;
    width: calc(var(--size) / 1.75);
    height: calc(var(--size) / 1.75);
    border-radius: 50%;
    background: var(--bg);
    box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.12), inset 2px 2px 5px rgba(0, 0, 0, 0.08), inset 3px 3px 12px rgba(0, 0, 0, 0.05), inset 4px 5px 16px rgba(0, 0, 0, 0.035), inset 0px -1px 2px rgba(255, 255, 255, 0.45), inset -1px -1px 3px rgba(255, 255, 255, 0.45), inset -1px -1px 2px rgba(255, 255, 255, 0.2), inset -1px -1px 2px rgba(255, 255, 255, 0.12), 2px 2px 2px rgba(255, 255, 255, 0.12), 2px 2px 3px rgba(255, 255, 255, 0.1), 2px 2px 5px rgba(255, 255, 255, 0.08), 6px 6px 15px rgba(0, 0, 0, 0.014), 8px 8px 18px rgba(0, 0, 0, 0.08), 12px 12px 28px rgba(0, 0, 0, 0.04);
}
.checkbox .checkbox__inner .green__ball {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(298deg, var(--red), var(--yellow));
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.12), inset -4px -5px 12px rgba(0, 0, 0, 0.12), inset -5px -6px 12px rgba(0, 0, 0, 0.08), inset 0px -6px 18px rgba(0, 0, 0, 0.06), 2px 1px 8px rgba(152, 255, 112, 0.32), 3px 2px 12px rgba(152, 255, 112, 0.15), 4px 4px 18px rgba(152, 255, 112, 0.08);
    transition: transform 250ms var(--transition-easing), opacity 300ms var(--transition-easing);
    transition-delay: 120ms;
}
.checkbox .checkbox__inner .green__ball::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 25%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 35%;
    height: 15%;
    filter: blur(4px);
}

.checkbox__text {
    position: absolute;
    left: 35%;
    top: 81%;
    margin-left: 2rem;
    font-size: 1.0rem;
    font-family: sans-serif;
    color: transparent;
    color: black;
    display: flex;
    user-select: none;
    pointer-events: none;
    opacity: 0.5;
    transition: opacity 250ms var(--transition-easing);
    transition-delay: 150ms;
}
.checkbox__text--options {
    position: absolute;
    width: 35%;
    left: 97%;
    margin: 0 0.5rem;
}
.checkbox__text--options span {
    position: absolute;
    left: 0%;
    top: 0%;
    transition: transform 250ms var(--transition-easing), opacity 150ms var(--transition-easing);
    transition-delay: 150ms;
}
.checkbox__text--options span.off {
    transform: translateY(0%);
    opacity: 1;
}
.checkbox__text--options span.on {
    transform: translateY(-150%);
    opacity: 0;
}

/*red cirecle checkbox changes to green right confirmation for terms*/

.common-picker-body-quote input[type=checkbox] + label {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 5px solid #C35817;
    border-radius: 100%;
    top: 360px;
    left: 100px;
    transform: translate(-50%, -50%);
    transition: all ease-out 200ms;
    text-indent: 35px;
    line-height: 120%;
    /*font: normal normal 30px/60px "Helvetica";*/
    white-space: nowrap;
    color: #99A3BA;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.common-picker-body-quote input[type=checkbox] + label:after {
    content: "";
    position: absolute;
    width: 0px;
    height: 12.5px;
    border-bottom: 5px solid #22b573;
    border-left: 5px solid #22b573;
    top: 25%;
    left: 50%;
    transform-origin: bottom left;
    transform: rotate(-45deg);
    opacity: 0;
    transition: all ease-out 200ms;
}

.common-picker-body-quote input[type=checkbox]:checked + label {
    border: 5px solid #22b573;
}
.common-picker-body-quote input[type=checkbox]:checked + label:after {
    opacity: 1;
    width: 35px;
}

#chk {
    z-index: 2;
    position: relative;
    top: 235px;
    left: 50%;
    transform: translate(-50%, -50%);
    color: darkorange;
    font-size: 18px;
    font-weight: bold;
}

/*common-picker-body-quote special input*/
:root {
    --input-color: #99A3BA;
    --input-border: #EFB261;
    --input-background: #fff;
    --input-placeholder: #CBD1DC;
    --input-border-focus: #ea871f;
    --group-color: var(--input-color);
    --group-border: var(--input-border);
    --group-background: #F5DEB3;
    --group-color-focus: #fff;
    --group-border-focus: var(--input-border-focus);
    --group-background-focus: #FF8400;
}

.common-picker-body-quote .form-field {
    display: block;
    width: 100%;
    padding: 8px 16px;
    line-height: 25px;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    border-radius: 6px;
    -webkit-appearance: none;
    color: var(--input-color);
    border: 1px solid var(--input-border);
    background: var(--input-background);
    transition: border 0.3s ease;
}
.common-picker-body-quote .form-field::-moz-placeholder {
    color: var(--input-placeholder);
}
.common-picker-body-quote .form-field:-ms-input-placeholder {
    color: var(--input-placeholder);
}
.common-picker-body-quote .form-field::placeholder {
    color: var(--input-placeholder);
}
.common-picker-body-quote .form-field:focus {
    outline: none;
    border-color: var(--input-border-focus);
}

.common-picker-body-quote .form-group {
    position: center;
    display: flex;
    width: 200px;
    left: 27%;
}
.common-picker-body-quote .form-group > span,
.common-picker-body-quote .form-group .form-field {
    white-space: nowrap;
    display: block;
}
.common-picker-body-quote .form-group > span:not(:first-child):not(:last-child),
.common-picker-body-quote .form-group .form-field:not(:first-child):not(:last-child) {
    border-radius: 0;
}
.common-picker-body-quote .form-group > span:first-child,
.common-picker-body-quote .form-group .form-field:first-child {
    border-radius: 6px 0 0 6px;
}
.common-picker-body-quote .form-group > span:last-child,
.common-picker-body-quote .form-group .form-field:last-child {
    border-radius: 0 6px 6px 0;
}
.common-picker-body-quote .form-group > span:not(:first-child),
.common-picker-body-quote .form-group .form-field:not(:first-child) {
    margin-left: -1px;
}
.common-picker-body-quote .form-group .form-field {
    z-index: 1;
    flex: 1 1 auto;
    width: 200px;
    margin-top: 0;
    margin-bottom: 0;
}
.common-picker-body-quote .form-group > span {
    text-align: center;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 25px;
    color: var(--group-color);
    background: var(--group-background);
    border: 1px solid var(--group-border);
    transition: background 0.3s ease, border 0.3s ease, color 0.3s ease;
}
.common-picker-body-quote .form-group:focus-within > span {
    color: var(--group-color-focus);
    background: var(--group-background-focus);
    border-color: var(--group-border-focus);
}

/*faq css only start*/
.accordion .accordion-item {
    border-bottom: 1px solid #e5e5e5;
}
.accordion .accordion-item button[aria-expanded=true] {
    border-bottom: 1px solid darkorange;
}
.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: #7288a2;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}
.accordion button:hover, .accordion button:focus {
    cursor: pointer;
    color: darkorange;
}
.accordion button:hover::after, .accordion button:focus::after {
    cursor: pointer;
    color: darkorange;
    border: 1px solid darkorange;
}
.accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
}
.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
}
.accordion button .icon::before {
    display: block;
    position: absolute;
    content: "";
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}
.accordion button .icon::after {
    display: block;
    position: absolute;
    content: "";
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}
.accordion button[aria-expanded=true] {
    color: darkorange;
}
.accordion button[aria-expanded=true] .icon::after {
    width: 0;
}
.accordion button[aria-expanded=true] + .accordion-content {
    opacity: 1;
    max-height: 36em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}
.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}
.accordion .accordion-content p {
    font-size: 1rem;
    font-weight: 300;
    margin: 2em 0;
}

.room-sample-dics {
    padding-top: 30px;

}

/*faq css only end*/
