@font-face {
    font-family: 'FuturaPT';
    src: url(../fonts/FuturaPTLight.otf);
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'FuturaPT';
    src: url(../fonts/FuturaPTBook.otf);
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'FuturaPT';
    src: url(../fonts/FuturaPTMedium.otf);
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'FuturaPT';
    src: url(../fonts/FuturaPTHeavy.otf);
    font-weight: 800;
    font-style: normal;
}

.app-header {
    position: relative;
    min-height: 72px;
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 0px 40px;
}

body {
    font-family: 'FuturaPT', sans-serif;
    background: rgb(249, 248, 247);
    margin: 0px;
    letter-spacing: 0.8px;
    color: rgb(64, 62, 61);
    overflow-x: hidden;
    overflow-y: auto;
}

*,
:after,
:before {
    box-sizing: border-box;
}

.app-header .logo img {max-height: 40px;}

.app-header .logo {
    margin-right: 20px;
}

.step-info {}

.step-info .js-step-number {
    color: rgb(202, 199, 196);
}

.step-info .js-step-title {
    font-weight: 500;
    color: rgb(64, 62, 61);
}

.app-body {
    padding: 50px 30px;
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

.section-title {
    font-size: 34px;
    font-family: FuturaPT, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0px;
}

.section-subtitle {
    font-weight: 500;
    margin-top: 0px;
}

.questionnaire-title {
    margin-bottom: 30px;
    color: rgb(230, 157, 0);
    margin-top: 40px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    font-size: 28px;
    line-height: 19px;
}

.questionnaire-title .icon-svg svg {
    width: 55px;
    height: 55px;
}

.questionnaire-title .icon-svg {
    margin-left: 30px;
}

.questionnaire-listing {
    padding: 0px;
    margin-top: 50px;
}

.questionnaire-listing .selection-box {
    display: none;
}

.questionnaire-listing li .item {
    padding: 0px 24px;
    display: flex;
    align-items: center;
    min-height: 70px;
    background-color: #fff;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
}

.questionnaire-listing {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 30px;
    border: 1px solid #ececec;
    overflow: hidden;
}

.questionnaire-listing li {
    list-style: none;
}

.questionnaire-listing li .item .item-title {
    margin: 0px;
    font-weight: 500;
    font-size: 16px;
}

.questionnaire-listing li:hover .item {
    background-color: rgba(230, 157, 0, 0.01);
}

.questionnaire-listing:not(.checkout-list) li:active .item,
.questionnaire-listing:not(.checkout-list) li > input:checked + .item {
    background-color: #fab131;
    color: #fff;
}

.quantity-box {
    position: absolute;
    top: 0;
    right: -150px;
    height: 100%;
    transition: all 0.3s;
}

.quantity-box > input {
    height: 100%;
    border: 0px;
    background-color: rgba(255, 255, 255, 0.18);
    padding: 0px 0px 0px 0px;
    width: 60px;
    font-size: 20px;
    font-family: inherit;
    color: #fff;
    text-align: center;
}

.questionnaire-listing:not(.checkout-list) li:active .item .quantity-box,
.questionnaire-listing:not(.checkout-list) li > input:checked + .item .quantity-box {
    right: 0px;
}

.questionnaire-listing li > input {
    visibility: hidden;
    position: absolute;
    top: -70px;
    left: -70px;
}

*:focus {
    outline: none;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

.quantity-box .lbl-qty {
    font-weight: 300;
    margin-right: 10px;
    opacity: 0.6;
    transition: all 0s;
}

.questionnaire-listing:not(.checkout-list) li:active .item .quantity-box .lbl-qty, .questionnaire-listing:not(.checkout-list) li > input:checked + .item .quantity-box .lbl-qty {
    color: #fff;
}

.next.nav-item {
    box-shadow: 0px -2px 7px rgb(230, 157, 0, 0.5);
    transform: rotate(180deg);
    right: 50px;
    background-color: #e69d00;
}

.nav-item {
    position: absolute;
    top: 139px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 32px;
    cursor: pointer;
}

.tab {
    position: absolute;
    display: none;
    width: 100%;
    top: 100px;
    left: 0;
}

.tab.active {
    display: block;
}

.prev.nav-item {
    left: 50px;
}

.nav-item svg {
    width: 24px;
    height: 24px;
}

.next.nav-item svg,
.next.nav-item path,
.next.nav-item polygon,
.next.nav-item g {
    stroke: #fff;
}


.prev.nav-item:hover {
    background-color: #ececec;
}

.disabled.nav-item {
    opacity: 0.5;
    pointer-events: none;
}

.step-counter {
    margin-left: auto;
    color: rgb(202, 199, 196);
    font-size: 22px;
}

.step-counter .js-current-step {
    min-width: 13px;
    display: inline-block;
    text-align: center;
    font-weight: 500;
    color: #403e3d;
}

.steps-loader {
    position: absolute;
    bottom: 0px;
    width: calc(100% + 40px);
    height: 5px;
    margin-left: -40px;
}

.steps-loader .loader-progress {
    background-color: #e69d00;
    width: 0%;
    height: 100%;
    box-shadow: 4px -1px 7px 0px rgb(230, 157, 0, 0.6);
    transition: all 0.6s ease;
}

.price-lbl {
    margin-right: 15px;
    color: #7cb7b6;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.price-symbol {
    color: rgb(202, 199, 196);
    margin-right: 4px;
}

.questionnaire-listing:not(.checkout-list) li:active .item .price-symbol, .questionnaire-listing li > input:checked + .item .price-symbol {
    color: #fff;
    opacity: 0.6;
}

.questionnaire-listing:not(.checkout-list) li:active .item .price-lbl, .questionnaire-listing li > input:checked + .item .price-lbl {
    color: #986100;
}

.checkout--info {
    display: flex;
    margin-left: auto;
    align-items: center;
}

.checkout--info .quantity-input input {
    background-color: #f5f5f5;
    border: 1px solid #dcdada;
    width: 30px;
    height: 30px;
    text-align: center;
    margin: 0 14px;
}

.quantity-input .minus svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: #7cb7b6;
}

.quantity-input .minus {
    display: block;
}

.quantity-input {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.quantity-input .add svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: #7cb7b6;
}

.quantity-input .add:hover svg,
.quantity-input .minus:hover svg {
    opacity: 0.8;
}

.checkout--action svg {
    fill: #ff3737;
    width: 20px;
    height: 20px;
    display: block;
}

.checkout--action:hover svg {
    opacity: 0.8;
}

.questionnaire-title .lbl-total {
    color: #403e3d;
}

.chk-total .lbl-total {
    color: #403e3d;
}

.chk-total.questionnaire-title {
    max-width: 470px;
    margin-left: auto;
    margin-right: auto;
    justify-content: end;
}

.chk-total strong {
    margin-left: auto;
}

.checkout.nav-item {
    display: none;
}

.checkout.nav-item.show {
    display: flex;
}

.checkout.nav-item.show .chk-nav-lbl {
    left: 70px;
    transform: rotate(180deg);
    display: block;
    position: absolute;
    font-weight: 600;
    color: #e69d00;
}


/* Modal */

.card {
    position: relative;
    font-size: 14px;
    background-color: #fff;
    border-radius: 3px;
    margin-bottom: 20px;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.07);
}

.card .section.no-border, .card .section:last-child {
    border-bottom: none;
}

.centered-form-container.no-margin {
    margin: 0 auto;
}

.h2-sans {
    font-size: 36px;
    line-height: 40px;
    font-weight: 600;
    margin-top: 20px;
}

.login-wizard .login-container .login-form {
    margin: 44px 0;
}

.form-input-text {
    font-family: FuturaPT;
    font-weight: 300;
    background: #fff;
    border: 1px solid #ddd;
    color: #000;
    display: block;
    font-size: 16px;
    margin-bottom: 15px;
    margin-top: 0;
    padding: 13px 15px;
    width: 100%;
}

.form-input-text {
    font-size: 18px;
    padding: 18px 20px;
}

.form-input-text {
    border-radius: 3px;
}

.button.size-md {
    font-size: 16px;
    height: 48px;
    line-height: 48px;
    padding: 0 22px;
}

.button.primary-action {
    background-color: #fab131;
    color: #fff;
    font-family: FuturaPT;
    font-weight: 500;
}

.login-container .login-form {
    margin: 22px 0;
}

.login-wizard .login-container .password-signup a {
    display: inline-block;
}

.modal {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}

.modal.modal-open {
    pointer-events: all;
    opacity: 1;
}

.modal .login-container {
    max-width: 580px;
    margin: 80px auto;
}

.modal .login-container .section {
    padding: 40px;
    text-align: center;
}

.sr-only {
    display: none;
}

button.button {
    border-radius: 30px;
    border: 0px;
    min-width: 140px;
}

.password-signup {
}

.modal .login-container .password-signup a {
    color: #000;
    text-decoration: none;
}

.modal .login-container .button {
    margin-top: 10px;
}

.login-container.card-container {
}

.card.with-logo:before {
    content: "";
    position: absolute;
    background-image: url(../images/logo.png);
    width: 80px;
    height: 80px;
    background-size: 60px;
    background-color: #fff;
    border-radius: 80px;
    padding: 10px;
    top: -40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-position: 10px 12px;
    background-repeat: no-repeat;
}

.bg-input-group {
    margin-top: 70px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

.form-input-text:hover {
    border-color: #b5b5b5;
}

.form-input-text {
    transition: all 0.3s;
}

.delivery-wrapper {
    margin-top: 70px;
    margin-left: auto;
    margin-right: auto;
    max-width: 620px;
    display: none;
}

.delivery-msg {
    font-size: 21px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.delivery-msg .d-date {
    font-weight: 500;
    display: block;
    margin-top: 9px;
    color: #e69d00;
}

.delivery-wrapper > img {
    max-width: 100%;
    display: block;
    margin-bottom: 60px;
}

.input-wrapper {
    position: relative;
}

svg {}

.input-wrapper > svg {
    position: absolute;
    top: calc(50% - 20px);
    transform: rotate(180deg);
    right: 12px;
    padding: 10px;
    width: 40px;
    height: 40px;
    border-radius: 30px;
    stroke: #e69d00;
    cursor: pointer;
    transition: all 0.3s;
}

.input-wrapper > svg:hover {
    background-color: #00000012;
}

.input-wrapper > svg path {
    stroke: #e69d00;
}

.input-wrapper > svg polyline {
    stroke: #e69d00;
}

.or-row {
    display: block;
    margin: 7px 0px;
    position: relative;
}

.sgnp-or {
    margin-bottom: 30px;
    max-width: 130px;
    margin-left: auto;
    margin-right: auto;
}

.or-row:after {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: rgb(193, 193, 193);
    top: 7px;
    right: 11px;
}

.or-row:before {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: rgb(193, 193, 193);
    top: 7px;
    left: 11px;
}

.or-option {
    font-weight: 600;
    color: #fab131;
    cursor: pointer;
}

.or-option:hover {
    color: rgba(0, 0, 0, 0.4);
    text-decoration: underline;
}
