.ordercalc {
    margin-top: 50px;
    min-height: 500px;
    position: relative;
    /*scroll-margin-top: 150px;*/
}

.ordercalc-page {
    display: none;
}

.ordercalc-page.--active {
    display: block;
}

.ordercalc__cups {
    text-align: center;
}

.ordercalc__cupslist {
    text-align: left;
}


/* Ordercalc Item */

.ordercalc__item {
    position: relative;
    background: #E4F4FF;
    margin-bottom: 25px;
    border-radius: 10px;
}

.ordercalc__item__content {
    padding: 30px 30px 40px 30px;
}

.ordercalc__item__image {
    margin-top: 7px;
    padding-right: 28px;
}

.ordercalc__item__specs {
    font-size: 12px;
    color: #858585;
    margin-bottom: 8px;
    font-weight: 300;
}

.ordercalc__item__footer {
    padding: 20px;
    background: #bae3ff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.ordercalc__item__cupprice {
    font-size: 22px;
    font-weight: bold;
}

.ordercalc__item__cupprice__intro {
    font-size: 13px;
    font-weight: 500;
    color: #787878;
    display: block;
}

.ordercalc__item__cupprice__peritem {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.ordercalc__item__cupprice__bonus {
    position: absolute;
    top: -120%;
    left: 60%;
    background: #f3f54f;
    padding: 5px 7px;
    border-radius: 5px;
    font-size: 11px;
    line-height: 11px;
    font-weight: bold;
    text-transform: uppercase;
    white-space: nowrap;
}

.ordercalc__item__cupprice__bonus:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 10px;
    border-width: 7px;
    border-style: solid;
    border-color: #f3f54f transparent transparent transparent;
}

.ordercalc__item .row {
    margin: 0;
}

.ordercalc__qst {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}
.ordercalc__qst:last-of-type {margin-bottom: 0;}

.ordercalc__qst__title {
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 10px;
}

.ordercalc__qst__title-help {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: #bf8e8e;
    font-size: 13px;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    margin-left: 5px;
    cursor: pointer;
}

.ordercalc__qst__var {
    float: left;
    padding: 7px 10px;
    /*background: #c6e7ff;*/
    border: 1px solid grey;
    margin: 0 4px 5px 4px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
}

.ordercalc__qst__var:first-of-type { margin-left: 0; }
.ordercalc__qst__var:last-of-type { margin-right: 0; }

.ordercalc__qst__var.selected {
    background: #ef426f;
    border-color: #ef426f;
    color: #fff;
}

.ordercalc__qst__var.--disabled {
    opacity: .2;
    cursor: no-drop;
}

.count-slider {
    height: 4px !important;
    background-color: #e8e8e8;
    border: none;
    width: 100%;
    max-width: 250px;
    cursor: pointer;
}

.count-slider .noUi-connect {
    background-color: #ff2501;
}

.count-slider .noUi-handle {
    right: -9px !important;
    top: -7px;
    width: 16px;
    height: 16px;
    box-shadow: none;
    border: 2px solid #ff2701;
    border-radius: 50%;
    outline: none;
    box-sizing: border-box;
    cursor: grab;
}
.count-slider .noUi-handle:before, .count-slider .noUi-handle:after {
    content: none;
}
.count-slider .noUi-handle:focus {
    box-shadow: 0 0 0 5px rgba(255,39,1,.2);
    outline: none;
}
.count-slider .noUi-handle.noUi-active {
    cursor: grabbing;
}

.ordercalc__qst__count-caption {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 250px;
    padding: 5px 20px 8px 20px;
    text-align: center;
    font-size: 22px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.ordercalc__qst__count__boxes {
    display: block;
    font-size: 12px;
    margin-top: -5px;
    margin-bottom: 2px;
    color: #8d8d8d;
}

.ordercalc__qst__countbtn {
    display: block;
    position: absolute;
    border: 0;
    font-size: 26px;
    top: 9px;
    width: 30px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: none;
    cursor: pointer;
}

.ordercalc__qst__countbtn:before, .ordercalc__qst__countbtn:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background-color: #000;
}

.ordercalc__qst__countbtn:before {
    -webkit-transform: rotate(90deg) translateX(-50%);
    -ms-transform: rotate(90deg) translateX(-50%);
    transform: rotate(90deg) translateX(-50%);
    transform-origin: left;
}
.ordercalc__qst__countbtn:after {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.ordercalc__qst__countbtn--minus {left: 5px;}
.ordercalc__qst__countbtn--plus {right: 5px;}

.ordercalc__qst__countbtn--minus:before {
    display: none;
}

.ordercalc__item__btndelete {
    position: absolute;
    border-radius: 15px;
    background: #be8e8e;
    color: #fff;
    top: -15px;
    right: 40px;
    text-align: center;
    cursor: pointer;
    padding: 0 16px;
    font-size: 12px;
    height: 30px;
    line-height: 30px;
}

.ordercalc__item:first-of-type .ordercalc__item__btndelete {
    display: none;
}

/* Ordercalc Item Responsive */

@media (max-width: 767px) {
    .ordercalc__item__image {
        padding-right: 10px;
    }

    .ordercalc__qst__var {
        font-size: 13px;
        padding: 9px 10px;
    }

    .ordercalc__item__btndelete {
        right: 20px;
    }

    .ordercalc__qst__variants {
        display: flex;
    }
}

@media (max-width: 575px) {
    .ordercalc__item__content {
        padding: 20px 10px 30px 10px;
    }

    .ordercalc__item__image {
        display: block;
        width: 90%;
        max-width: 230px;
        margin: 7px auto;
        padding: 0 20px;
    }

    .ordercalc__qst {
        margin-bottom: 14px;
    }

    .ordercalc__qst__count-caption {
        max-width: none;
    }
    .count-slider {
        max-width: none;
    }

    .count-slider .noUi-handle {
        top: -8px;
        width: 18px;
        height: 18px;
    }

    .ordercalc__item__footer {
        padding: 15px 10px;
    }

}


.ordercalc__btnadd {
    position: relative;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    display: inline-block;
    margin-top: 7px;
}

.ordercalc__btnadd span {
    font-size: 32px;
    display: inline-block;
    font-weight: 500;
    background: #ebebeb;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 10px;
}

.ordercalc__accs__grouptitle {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 25px;
}

.ordercalc__accs__tabs .tabs-captions {
    display: flex;
    font-size: 20px;
    margin: 25px 0;
    justify-content: center;
}

.ordercalc__accs__tabs .tabs-captions > li {
    position: relative;
    margin-right: 20px;
    cursor: pointer;
}
.ordercalc__accs__tabs .tabs-captions > li:last-of-type { margin-right: 0; }

.ordercalc__accs__tabs .tabs-captions > li.active:before {
    display: block;
    content: '';
    position: absolute;
    bottom: -5px;
    left: calc(50% - 20px);
    width: 40px;
    height: 2px;
    background: #fd2019;
}

.ordercalc__accs__tabs .tabs-pane {
    display: none;
}

.ordercalc__accs__tabs .tabs-pane.active {
    display: block;
}


@media (max-width: 575px) {
    .ordercalc__accs__grouptitle {
        font-size: 16px;
    }

    .ordercalc__accs__tabs .tabs-captions {
        font-size: 16px;
        font-weight: 600;
    }
    
    .ordercalc__accs__tabs .tabs-captions > li {
        margin-right: 15px;
    }
}

.accs-item {
    background: #e4f4ff;
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 7px 25px;
    display: none;
}

.accs-item.compatible, .accs-item__content, 
.accs-item__content__second, .accs-item__content__second {
    display: flex;
    align-items: center;
}

.accs-item__image {
    width: 43px;
    height: 43px;
    flex-shrink: 0;
}

.accs-item__content {
    flex-grow: 1;
    justify-content: space-between;
}

.accs-item__name {
    font-size: 14px;
    padding: 0 20px;
    flex-grow: 1;
}

.accs-item__name__price {
    margin-left: 7px;
}

.accs-item__count {
    padding: 0 20px;
    text-align: center;
}

.accs-item__counter {
    width: 120px;
    padding: 7px;
    font-size: 15px;
    font-weight: bold;
    border: 1px solid grey;
    border-radius: 7px;
    text-align: center;
    background-color: #fff;
    color: #000;
    background-position-x: calc(100% - 5px);
}

.accs-item__price {
    font-size: 18px;
    font-weight: bold;
    min-width: 100px;
    text-align: center;
}

.ordercalc__accs {
    margin-top: 60px;
}

@media (max-width: 767px) {
    .accs-item.compatible {
        align-items: flex-start;
        padding-left: 15px;
        padding-right: 15px;
    }

    .accs-item__image {
        width: 45px;
        height: 45px;
    }

    .accs-item__content {
        flex-wrap: wrap;
    }

    .accs-item__name {
        padding-right: 0;
    }

    .accs-item__count {
        padding: 0;
        padding-right: 10px;
    }

    .accs-item__content__first, .accs-item__content__second {
        flex-grow: 1;
    }

    .accs-item__content__second {
        padding: 8px 8px 5px 20px;
    }
}

/* Design Block */

.ordercalc__design {
    margin-top: 70px;
}

.ordercalc__design h4 {
    margin-bottom: 20px;
}

.options-selector > [class*="col-"], .options-selector > div > [class*="col-"]  {
    margin-bottom: 10px;
}
.options-selector__item {
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    border: 2px solid #808080;
    height: 100%;
    padding: 15px 20px;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: space-between;
}
.options-selector__item.--active {
    background: #f9eded;
    color: #ef426f;
    border-color: #ef426f;
}
.options-selector__item.--disabled {
    filter: grayscale(1);
    opacity: .6;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuX3o0aE1rIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIiB3aWR0aD0iMTkiIGhlaWdodD0iMTkiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxsaW5lIHgxPSIwIiB5PSIwIiB4Mj0iMCIgeTI9IjE5IiBzdHJva2U9IiNFQkVCRUIiIHN0cm9rZS13aWR0aD0iMjIiLz48L3BhdHRlcm4+PC9kZWZzPiA8cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm5fejRoTWspIiBvcGFjaXR5PSIxIi8+PC9zdmc+');
    cursor: no-drop;
}

.options-selector__item__content {
    flex: 0 0 100%;
}
.options-selector__item__icon {
    position: relative;
    display: inline-block;
    height: 30px;
    margin-top: 3px;
    margin-bottom: 12px;
}
.options-selector__item__icon img {
    position: relative;
    height: 100%;
    width: auto;
    z-index: 2;
}
.options-selector__item__icon:before {
    display: block;
    position: absolute;
    content: '';
    width: 32px;
    height: 32px;
    background: #b5e1ff;
    border-radius: 30%;
    top: 5px;
    left: 5px;
    z-index: 1;
}
.options-selector__item__title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}
.options-selector__item__desc {
    font-size: 13px;
}
.options-selector__item__more {
    font-size: 12px;
    margin-top: 10px;
    display: inline-block;
    border-bottom-width: 1px;
    border-bottom-style: dashed;
}
.options-selector__item.--active .options-selector__item__icon:before {
    background: #fdd2d2;
}

@media (max-width: 767px) {
    .design-options .options-selector__item__more {
        position: absolute;
        right: 20px;
        bottom: 23px;
        font-size: 14px;
    }
}
.options-selector__item__price {
    font-size: 24px;
    font-weight: 300;
    margin-top: 15px;
    white-space: nowrap;
}
.options-selector__item__check {
    display: none;
    position: absolute;
    top: -12px;
    right: 15px;
    width: 25px;
    height: 25px;
    border: 2px solid #ef426f;
    border-radius: 50%;
    background: #fff;
    /*outline: 3px solid #fff; bug in Safari*/
    -webkit-box-shadow: 0px 0px 0px 3px rgba(255,255,255,1);
    -moz-box-shadow: 0px 0px 0px 3px rgba(255,255,255,1);
    box-shadow: 0px 0px 0px 3px rgba(255,255,255,1);
}
.options-selector__item.--active .options-selector__item__check {display: block;}
.options-selector__item__check:after {
    content: '';
    position: absolute;
    width: 7px;
    height: 11px;
    left: 7px;
    top: 4px;
    border: solid #ef426f;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.options-selector__item__notavailable {
    display: block;
    position: absolute;
    top: 0;
    right: 15px;
    font-size: 10px;
    color: #fff;
    text-transform: uppercase;
    border-radius: 15px;
    padding: 2px 8px;
    background: #808080;
    border: 3px solid #fff;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.options-selector__item--noprice {
    padding: 20px 15px;
}

@media (max-width: 767px) {
    .options-selector__item {
        padding-left: 25px;
        margin-left: 10px;
    }
    .options-selector__item__check {
        top: 20px;
        left: -12px;
        right: auto;
    }
    .options-selector__item__price {
        left: 25px;
    }
}

.design-options, .delivery-options, .payment-options {
    margin-top: 25px;
}

.design-options {
    margin-bottom: 30px;
}


/* Options List */

.options-selector.--list .options-selector__item {
    padding-left: 25px;
    margin-left: 10px;
    flex-wrap: nowrap;
    align-items: center;
}

.options-selector.--list .options-selector__item__check {
    top: 20px;
    left: -12px;
    right: auto;
}

.options-selector.--list .options-selector__item__content {
    flex: auto;
}

.options-selector.--list .options-selector__item__price {
    padding-left: 25px;
    margin: 0;
    text-align: right;
}

@media (max-width: 767px) {
    .options-selector.--list .options-selector__item.--our {
        flex-wrap: wrap;
    }
    .options-selector.--list .--our .options-selector__item__price {
        padding-left: 0;
        margin-top: 15px;
        text-align: left;
    }
}

.delivery-page-selector {
    text-align: center
}

.delivery-page-selector__inner {
    margin-top: 20px;
    background: #dbdbdb;
    padding: 4px;
    display: inline-block;
    border-radius: 7px;
    width: 90%;
    max-width: 350px;
}

.delivery-page-selector__inner span {
    float: left;
    width: 50%;
    height: 37px;
    line-height: 37px;
    text-align: center;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delivery-page-selector__inner span.--active {
    background: #fff;
    color: #1d1d1d;
    font-weight: bold;
}

.ordercalc h4 {
    font-size: 28px;
    font-weight: 300;
}
@media (max-width: 575px) {
    .ordercalc h4 { font-size: 24px; }
}

.service-item {
    margin-top: 30px;
}

.service-item__desc {
    margin-top: 0;
    padding-left: 38px;
    padding-right: 10px;
}

.ordercalc__uploader {
    background: #e4f4ff;
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
}

.ordercalc__dropzone {
    border-radius: 10px;
    border: 2px dashed #56b0ed;
    background: #fff;
    text-align: center;
    padding: 20px;
    cursor: pointer;
}
.ordercalc__dropzone:hover {
    background: #e4f4ff;
}
.ordercalc__dropzone.highlight{
    background: #e4f4ff;
    border-color: #fd2019;
}
.ordercalc__dropzone__icon {
    display: block;
    margin-bottom: 10px;
    background: url('../images/icon-add-image.svg') center no-repeat;
    height: 55px;
}
.ordercalc__dropzone__header {
    font-size: 14px;
}
.ordercalc__dropzone__text {
    font-size: 13px;
    font-weight: 300;
}

.ordercalc__dropzone__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
}

.dropzone-file-item {
    width: 130px;
    background: #5ab1eb;
    padding: 5px 10px;
    border-radius: 7px;
    margin: 7px;
    position: relative;
    color: #fff;
    font-size: 12px;
}

.dropzone-file-item__size {
    display: block;
    margin-top: 5px;
    font-size: 11px;
    font-weight: bold;
}

.btn--dropzone-file-item {
    position: absolute;
    right: -5px;
    top: -10px;
    width: 21px;
    height: 21px;
    border: 1px solid #4a4a4a;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.btn--dropzone-file-item:after{
    content: "\2715";
    font-size: 10px;
    font-weight: bold;
    line-height: 21px;
}

.ordercalc__design__comments {
    margin-top: 30px;
}


/* Delivery */

.ordercalc__delivery {
    margin-top: 30px;
}

.delivery-address {
    margin-top: 20px;
}

.delivery-adr {
    margin-bottom: 20px;
}

.delivery-adr__city, .delivery-adr__selector {
    display: flex;
    height: 50px;
    align-items: center;
}

.delivery-adr__selector {display: none;}
.delivery-adr.--selector .delivery-adr__city {display: none;}
.delivery-adr.--selector .delivery-adr__selector {display: flex;}

.delivery-adr__selector .delivery-adr__content{
    flex: auto;
}

.delivery-adr__name {
    font-size: 16px;
    font-weight: bold;
}

.delivery-adr__name:before{
    content: '';
    background: url('../images/icon-place.svg') no-repeat center center;
    height: 24px;
    width: 24px;
    float: left;
    background-position: center;
    background-size: contain;
    margin-right: 7px;
}

.delivery-adr__button {
    align-content: center;
}

.btn--change {
    background: none;
    margin-left: 20px;
    border: 0;
    padding: 0;
    cursor: pointer;
    text-decoration: underline dashed 1px;
    text-underline-offset: 3px;
    text-align: center;
}

.delivery-results {
    position: relative;
}

.delivery-results--mask:after {
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: calc(100% + 10px);
    top: -10px;
    left: 0;
    background: rgba(255,255,255,.9);
}

.suggestions-suggestions strong {
    font-weight: bold;
    color: #fd2019;
}
.suggestions-suggestions {
    padding: 0 10px;
}
.suggestions-promo {
    display: none;
}
@media (max-width: 767px) {
    .suggestions-suggestions {
        padding: 0 5px;
    }
}


.ordercalc__delivery__pickup, .ordercalc__delivery__adr {
    margin-top: 20px;
}

.ordercalc__delivery__lift {
    margin-top: 17px;
}

#delivery-map {
    width: 100%;
    height: 400px;
    margin-top: 25px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #dbdbdb;
}

ymaps[class*="-balloon "], ymaps[class$="-balloon__layout"] {
    border-radius: 10px;
}

.map-pickpoint {
    font-family: 'Roboto';
    padding: 3px 0 3px 5px;
}

.map-pickpoint > img {
    display: block;
    height: 12px;
    width: auto;
    margin-top: 5px;
    margin-bottom: 15px;
}

.map-pickpoint p {
    margin-top: 17px;
}

.map-pickpoint__title {
    font-size: 16px;
    font-weight: bold;
}

.map-pickpoint__btn {
    display: inline-block;
    padding: 7px 25px;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    background: #ef426f;
    cursor: pointer;
    margin-bottom: 5px;
}

.delivery-loader {
    text-align: center;
    margin-bottom: 30px;
}

.delivery-loader img {
    height: 45px;
    width: auto;
}

.delivery-pickup {
    display: flex;
    min-height: 50px;
    align-items: center;
}

.delivery-pickup:before {
    content: '';
    background: url('../images/icon-pickup.svg') no-repeat center center;
    height: 24px;
    width: 24px;
    min-width: 24px;
    float: left;
    background-position: center;
    background-size: contain;
    margin-right: 10px;
}

.delivery-pickup__name {
    font-size: 16px;
    font-weight: bold;
}


/* Payment */

.ordercalc__payment {
    margin-top: 60px;
}

.payment-option {
    text-align: center;
}

.payment-option .options-selector__item__title {
    margin-bottom: 0;
}

.ordercalc__payment__bank {
    margin-top: 30px;
}

.ordercalc__payment__bankinfo {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.7;
    color: #707070;
}

.ordercalc__payment__bankinfo b {
    font-size: 15px;
    color: #1d1d1d;
}


/* Promo Code */

.ordercalc__promocode {
    margin-top: 60px;
}

.ordercalc__promocode label {
    margin-top: 20px;
}

.ordercalc__promocode__message {
    margin-top: 10px;
    margin-left: 10px;
    font-size: 14px;
    color: #00bb00; 
}
.ordercalc__promocode__message.--error { color: #fd2019; }

.field-button-container {
    display: flex;
    align-items: center;
}
.field-button-container .input-container {
    flex: auto;
}
.field-button-container .field-button {
    position: relative;
    margin-left: 10px;
    text-align: center;
    height: 50px;
    background: #fff;
    border: 2px solid #fd2019;
    border-radius: 5px;
    color: #fd2019;
    font-weight: bold;
    padding: 5px 12px;
    cursor: pointer;
}
.field-button-container .field-button:focus {
    border-color: #e10700;
}
.field-button-container .field-button img {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 30px;
    width: auto;
}
.field-button-container.--process .field-button {
    color: #fff;
    color: rgba(255, 255, 255, 0);
}
.field-button-container.--process .field-button img {
    display: block;
}


/* Contacts */

.ordercalc__contacts {
    margin-top: 60px;
}

.ordercalc__contacts__form {
    margin-top: 25px;
}


/* Quiz Contacts */

.ordercalc-page--quizform h4 {
    margin-top: 20px;
}

.ordercalc-page--quizform h4 + .row {
    margin-top: 30px;
}

.ordercalc__form__header {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 300;
}

.ordercalc__form__intro {
    margin-bottom: 30px;
    font-size: 16px;
}

.ordercalc__form__terms {
    font-size: 12px;
    margin-top: 20px;
    text-align: center;
    padding: 0 20px;
    opacity: .8;
}

.ordercalc__form {
    margin-right: 70px;
    position: relative;
}

.ordercalc__form__bonuses {
    padding: 30px;
    background: #e4f4ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .ordercalc__form__bonuses {
        max-width: 480px;
        margin: 40px auto 0 auto;
    }
}

.ordercalc__form__bonuses img {
    width: 110px;
}

.ordercalc__form__bonuses p {
    margin-top: 0;
    padding-left: 25px;
}

.ordercalc__form.--process form, .ordercalc__form.--process .ordercalc__form__intro {
    /*filter: blur(1px);*/
}

.ordercalc__form.--process:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255,255,255,.8);
}

.ordercalc__form__process {
    display: block;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1000;
}

.ordercalc__form__process img {
    display: inline-block;
    width: 60px;
    height: 60px;
}

.ordercalc__form__process span {
    margin-top: 15px;
    display: block;
    font-weight: bold;
    font-size: 20px;
}

@media (max-width: 991px) {
    .ordercalc__form {
        margin-right: 0;
    }
}


/* Order Process */

.ordercalc.--process .ordercalc-maincol:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.8);
    z-index: 990;
}


/* Quiz Result */

.ordercalc-page--reqresult h4 {
    margin-top: 30px;
}

.ordercalc__resulticon svg {
    width: 70px;
    display: block;
    margin: 0 auto;
}
.ordercalc__resulticon svg .path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
}
.ordercalc__resulticon svg .path.circle {
    -webkit-animation: dash 0.9s ease-in-out;
    animation: dash 0.9s ease-in-out;
}
.ordercalc__resulticon svg .path.line {
    stroke-dashoffset: 1000;
    -webkit-animation: dash 0.9s 0.35s ease-in-out forwards;
    animation: dash 0.9s 0.35s ease-in-out forwards;
}
.ordercalc__resulticon svg .path.check {
    stroke-dashoffset: -100;
    -webkit-animation: dash-check 0.9s 0.55s ease-in-out forwards;
    animation: dash-check 0.9s 0.55s ease-in-out forwards;
}

.ordercalc__reqresult__text {
    text-align: left;
    font-size: 16px;
    margin-top: 30px;
}

.ordercalc__reqresult__text .link-back {
    font-size: 16px;
}

.ordercalc__reqresult__thanks {
    text-align: center;
    margin-top: 20px;
    font-weight: bold;
    font-size: 16px;
}


/* Quiz Navbar */

.ordercalc__navbar {
    display: flex;
    justify-content: flex-end;
    flex-wrap: nowrap;
    margin-top: 40px;
}

.ordercalc__navbar__btn {
    background: none;
    display: inline-flex;
    min-height: 48px;
    max-height: 100px;
    border-radius: 30px;
    text-align: center;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border: 1px solid #c7c7c7;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.ordercalc__navbar__btn--multiline {
    flex-direction: column;
}

.ordercalc__navbar__btn--prev {
    width: 48px;
    border-radius: 100%;
    margin-right: 15px;
}

.ordercalc__navbar__btn--next {
    border: 1px solid transparent;
    background: #ef426f;
    color: #fff;
    padding: 7px 25px;
    box-shadow: 0 7px 10px -3px rgba(254, 36, 0, 0.5);
}
.ordercalc__navbar__btn--next:hover, .ordercalc__navbar__btn--next:focus {
    color: #fff;
}

.ordercalc__navbar__btn--green {
    background: #5ab940;
    box-shadow: 0 7px 10px -3px rgb(203 225 193);
}

.ordercalc__navbar__btn--submit {
    min-height: 55px;
    min-width: 200px;
    margin-top: 15px;
    z-index: 995;
}
.ordercalc.--process .ordercalc__navbar__btn--submit {
    color: rgba(0,0,0,0);
    background: url('../images/loader-spinner-white.svg') no-repeat center center #df1b14;
    background-size: 60% 60%;
}
.ordercalc.--process .ordercalc__navbar__btn--submit:after { display: none; }

.order-summary .ordercalc__navbar__btn--submit {
    margin-top: 0;
}

@media (min-width: 992px) {
    .ordercalc-summarycol .ordercalc__navbar__btn--submit { display: none; }
}

@media (max-width: 991px) {
    .ordercalc-maincol .ordercalc__navbar__btn--submit { display: none; }
}


.ordercalc__navbar__btn--next:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    background: -webkit-gradient(linear,left top,right top,color-stop(10%,hsla(0,0%,100%,.1)),color-stop(20%,hsla(0,0%,100%,.2)),to(hsla(0,0%,100%,.6)));
    background: linear-gradient(90deg,hsla(0,0%,100%,.1) 10%,hsla(0,0%,100%,.2) 20%,hsla(0,0%,100%,.6));
    width: 20px;
    -webkit-transform: skewX(-45deg);
    transform: skewX(-45deg);
    left: -20%;
    -webkit-transition: all .8s ease;
    transition: all .8s ease;
    -webkit-animation-name: blick;
    animation-name: blick;
    -webkit-animation-duration: 6s;
    animation-duration: 6s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.ordercalc__navbar__btn--next.--disabled {
    filter: grayscale(1);
    opacity: .45;
    cursor: no-drop;
}
.ordercalc__navbar__btn--next.--disabled:after {
    display: none;
}

.ordercalc__navbar__btn .icon-btn svg {
    width: 20px;
    height: 20px;
    display: block;
}

.ordercalc__navbar__btn--prev .icon-btn svg {
    opacity: 0.65;
}

.ordercalc__navbar__btn--next .icon-btn svg {
    fill: #fff;
    stroke-width: 0;
    stroke: #fff;
    pointer-events: none;
    margin-left: 7px;
}

.ordercalc__navbar__btn__subtext {
    font-size: 13px;
    font-weight: normal;
    margin-top: -2px;
}


/* Order Summary */

.order-summary {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    margin-top: 40px;
}

@media (min-width: 992px) {
    .order-summary {
        position: -webkit-sticky;
        position: sticky;
        top: 80px;
        margin-top: 0;
    }
}
@media (max-width: 575px) {
    .order-summary {
        padding: 20px;
    }
}

.order-summary h4 {
    margin-bottom: 20px;
}

.order-summary__cart {
    padding-bottom: 15px;
    border-bottom: 1px solid #b5b5b5;
}

.order-summary__item {
    font-size: 13px;
    text-align: left;
    position: relative;
    overflow: hidden;
    text-align: left;
    margin-bottom: 12px;
}

.order-summary__item1:before {
    float: left;
    width: 0;
    white-space: nowrap;
    color: #000;
    content: ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .";
    font-size: 10px;
    margin-top: 3px;
}

.order-summary__item__name {
    display: inline-block;
    max-width: 70%;
}
.ordercalc--quiz .order-summary__item__name {max-width: 100%;}

.order-summary__item__name__comment {
    display: block;
    font-size: 11px;
    color: #858585;
    margin-top: 2px;
}

.order-summary__item > span + span {
    float: right;
    text-align: right;
    /*background-color: #f7ffcc;*/
    padding-left: 6px;
    padding-right: 0;
    position: absolute;
    top: 0;
    right: 0;
}

.order-summary__discounts {
    position: relative;
    padding-top: 22px;
    padding-bottom: 5px;
    border-bottom: 1px solid #b5b5b5;
}

.order-summary__discounts:before {
    display: block;
    content: '';
    position: absolute;
    top: -15px;
    left: 10px;
    background: #f5f5f5 url(../images/icon-discount2.svg) no-repeat center center;
    height: 30px;
    width: 45px;
    background-size: contain;
}

.order-summary__sum {
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
}

.order-summary__sum > span {
    float: right;
    text-align: right;
}

.order-summary__sum__manager {
    font-weight: normal;
    margin-top: 5px;
}

.order-summary__vat {
    font-size: 11px;
    color: #858585;
    text-align: right;
    margin-top: 10px;
}

.ordercalc__pdflink {
    margin-top: 30px;
    cursor: pointer;
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: center;
}

.ordercalc__pdflink .icon {
    display: inline-block;
    content: '';
    background: url('../images/icon-pdf-download.svg') no-repeat;
    min-width: 30px;
    width: 30px;
    height: 35px;
    margin-right: 10px;
    margin-top: 5px;
}

.ordercalc__pdflink span {
    align-self: center;
}


.ordercalc__checkoutlink {
    text-align: center;
}

.ordercalc__checkoutlink .ordercalc__navbar__btn {
    margin-top: 30px;
}


/* Benefits */

.order-benefits {
    padding-left: 50px;
    color: #000;
}

.order-benefits__item {
    margin-top: 25px;
}

.order-benefits__item:first-of-type {
    margin-top: 10px;
}

.order-benefits__item__phone {
    font-size: 16px;
}

.order-benefits__item__icon {
    width: 37px;
    height: auto;
    opacity: .9;
    margin-bottom: 10px;
}

.order-benefits__item__title {
    font-weight: bold;
    margin-bottom: 5px;
}

.order-benefits__item__description {
    font-size: 14px;
}

@media (max-width: 991px) {
    .order-benefits {
        padding-left: 0;
        margin-top: 50px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .order-benefits {
        padding-left: 30px;
    }
}

/* Quiz Bonus */

.quiz-bonus {
    display: block;
    max-width: 320px;
    background: linear-gradient(135deg, rgb(255 253 89) 0%, rgb(187 255 246) 100%);
    border-radius: 10px;
    padding: 15px;
    position: relative;
    padding-left: 110px;
    color: #000;
    text-decoration: none;
    margin-left: 65px;
}

.quiz-bonus:hover, .quiz-bonus:focus {
    color: #000;
    text-decoration: none;
}

.quiz-bonus--leadmode {
    margin-top: 60px;
}

.ordercalc__reqresult__bonus .quiz-bonus {
    margin: 40px auto 0 auto;
    text-align: left;
}

.quiz-bonus__title {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.quiz-bonus__image {
    position: absolute;
    width: 100px;
    height: auto;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
}

.quiz-bonus__desc {
    font-size: 13px;
}

.quiz-bonus__button {
    display: inline-block;
    padding: 5px 10px;
    background: #FD2019;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 7px;
    border-radius: 5px;
}

@media (min-width: 1200px) {
    .quiz-bonus {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .quiz-bonus__desc {
        font-size: 14px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .quiz-bonus--leadmode {
        padding-top: 140px;
        padding-left: 15px;
        margin-left: 30px;
    }

    .quiz-bonus--leadmode .quiz-bonus__image {
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 991px) {
    .order-benefits {
        display: flex;
        gap: 25px;
    }

    .order-benefits__item {
        width: 50%;
        margin-top: 0;
    }
    
    .order-benefits__item:first-of-type {
        margin-top: 0;
    }
    
    .order-benefits__item:last-of-type {
        display: none;
    }
    
    .order-benefits__item__icon {
        height: 37px;
        width: auto;
    }

    .quiz-bonus--leadmode {
        margin-left: auto;
        margin-right: auto;
    }

    .quiz-bonus {
        padding-left: 120px;
    }
    
    .quiz-bonus__image {
        width: 100px;
        left: 0;
    }
}


/* Quiz Mode */

.ordercalc--quiz .accs-item__price,
.ordercalc--quiz .accs-item__name__price {
    display: none;
}

.ordercalc--quiz .ordercalc__design, .ordercalc--quiz .ordercalc__delivery {
    margin-top: 0;
}

.ordercalc--quiz .accs-item__counter {
    width: 150px;
}


/* Form Elements */

.input-checkbox {
    display: block;
    position: relative;
    padding-left: 38px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.input-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.input-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 3px;
}

.input-checkbox:hover input ~ .checkmark {
    border-color: #fd2019;
}

.input-checkbox input:checked ~ .checkmark {
    background-color: #fd2019;
    border: 0;
}

.input-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    box-sizing: content-box;
}

.input-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.input-checkbox .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.field-label {
    display: block;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 12px;
}

.field-text, .field-textarea {
    display: block;
    width: 100%;
    border: 2px solid #9f9f9f;
    border-radius: 5px;
    padding: 10px 12px;
}

.field-text {
    height: 50px;
}

.field-text--search {
    background: #fff url('../images/icon-zoom.svg') 10px 14px no-repeat;
    background-size: 16px;
    padding-left: 40px;
}

.field-textarea {
    height: 100px;
    min-height: 60px;
}

.field-text::placeholder, .field-textarea::placeholder {
    font-size: 15px;
    color:#a3a3a3;
}

form .field-text {
    margin-bottom: 20px;
}

.input-container {
    position: relative;
}

.field-clear-btn {
    position: absolute;
    top: 50%;
    right: 5px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 28px;
    color: #9f9f9f;
    cursor: pointer;
    background: rgba(255, 255, 255, 0);
    padding: 0 10px;
    height: 25px;
    line-height: 25px;
}


.field-switch {
    cursor: pointer;
    display: inline-block;
}

.field-switch__base {
    position: relative;
    display: inline-block;
    background: #c7c7c7;
    border-radius: 16px;
    width: 48px;
    height: 28px;
    vertical-align: middle;
    transition: background 0.25s;
}
.field-switch__base:before, .field-switch__base:after {
    content: "";
}
.field-switch:hover .field-switch__base {
    background: #999;
}

.field-switch__base:before {
    display: block;
    background: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    margin-top: -10px;
    left: 4px;
    transition: left 0.25s;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 1px -1px, rgba(0, 0, 0, 0.14) 0px 1px 1px 0px, rgba(0, 0, 0, 0.12) 0px 1px 3px 0px;
}
.field-switch__checkbox:checked + .field-switch__base {
    background: #fd2019;
}
.field-switch__checkbox:checked + .field-switch__base:before {
    left: 24px;
    background: url('../images/icon-switch-check.svg') #fff center center no-repeat;
    background-size: 10px 10px;
    box-shadow: none;
}

.field-switch__checkbox {
    position: absolute;
    visibility: hidden;
}

.field-switch__label {
    position: relative;
    top: 2px;
    padding-left: 61px;
    display: block;
    margin-top: -27px;
}


/* Utilities */

[v-cloak] { display: none }

.link-back {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
}
.link-back svg {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 7px;
}


/* Hint for cups add button */
@media (min-width: 992px) {
    .ordercalc.--showhints .ordercalc__btnadd:after {
        display: block;
        position: absolute;
        bottom: -45px;
        left: -110px;
        content: '';
        background: url('../images/btnadd-comment.svg') no-repeat;
        width: 230px;
        height: 40px;
    }
    
    .ordercalc.--showhints .ordercalc__accs {
        margin-top: 90px;
    }
}

/* List Item remove animation */
.fade-leave-active { transition: all 0.2s ease; }
.fade-leave-to { opacity: 0; transform: scale(0.3); }

/* Blick Animation */
@-webkit-keyframes blick {
    15%,to { left: 110% }
}
@keyframes blick {
    15%,to { left: 110% }
}

/* Animation for checkmark and crossline icons */
@-webkit-keyframes dash {
    0% { stroke-dashoffset: 1000; }
    100% { stroke-dashoffset: 0; }
}
@keyframes dash {
    0% { stroke-dashoffset: 1000; }
    100% { stroke-dashoffset: 0; }
}
@-webkit-keyframes dash-check {
    0% { stroke-dashoffset: -100; }
    100% { stroke-dashoffset: 900; }
}
@keyframes dash-check {
    0% { stroke-dashoffset: -100; }
    100% { stroke-dashoffset: 900; }
}