.form-item {
    display: flex;

}

.form-item-row {
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-end;
}

.form-item-col {
    flex-direction: column;
    margin: 0 15px;
    width: 100%;
}

.form-item-col:first-child {
    margin-left: 0;
}

.form-item-col:last-child {
    margin-right: 0;
}

.form-item-col20 {
    width: calc(20% - 30px);
}

.form-item-col25 {
    width: calc(25% - 30px);
}

.form-item-col33 {
    width: calc(33% - 30px);
}

.form-item-col40 {
    width: calc(40% - 30px);
}

.form-item-col50 {
    width: calc(50% - 30px);
}

.form-item-col60 {
    width: calc(60% - 30px);
}

.form-item-col66 {
    width: calc(66% - 30px);
}

.form-item-col75 {
    width: calc(75% - 30px);
}

.h3-title {
    font-size: 24px;
    margin: 0 0 30px 0;
    padding: 0;
    font-weight: 400;
    position: relative;
    align-self: flex-start;
    width: 100%;
}


/*.options__tab {*/
/*    border: none;*/
/*    width: 100%;*/
/*    margin: 15px 0 30px 0;*/
/*}*/

/*.active .options__tab-header {*/
/*    border: 1px solid #c4c4c4;*/
/*    border-left: none;*/
/*}*/

/*.options__tab-header {*/
/*    font-size: 16px;*/
/*    background-color: #fff;*/
/*    color: #707070;*/
/*    font-weight: 400;*/
/*    position: relative;*/
/*    width: 100%;*/
/*    height: 34px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    padding-left: 20px;*/
/*    cursor: pointer;*/
/*    transition: .3s;*/
/*    font-family: 'Raleway', sans-serif;*/
/*    border: 1px solid #c4c4c4;*/
/*    margin-bottom: 0;*/
/*}*/

/*.options__tab.active > .options__tab-header:after {*/
/*    transform: rotate(180deg);*/
/*}*/
/*.options__tab-header:after {*/
/*    position: absolute;*/
/*    display: inline-block;*/
/*    content: '';*/
/*    background-image: url(/assets/img/accordeon-arrow-up.png);*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*    transform: rotate(0deg);*/
/*    opacity: 0.3;*/
/*    width: 22px;*/
/*    height: 22px;*/
/*    right: 8px;*/
/*    top: 4px;*/
/*    transition: .3s;*/
/*}*/

/*.options__tab.active {*/
/*    border-left: 1px solid #c4c4c4;*/
/*}*/

/*.options__tab-header:hover {*/
/*    background-color: #f1f2f5;*/
/*}*/

.general-form-wrp {
    padding: 10px 0 0 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-items: flex-start;
    align-items: flex-start;
    position: relative;
}

.general-form-wrp .general-form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.general-form-wrp .form-item-label {
    margin: 0;
    position:relative;
    display:flex;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    transition: all linear 0.6s;
}

.general-form-wrp .item-placeholder {
    pointer-events: none;
    position: absolute;
    left: 15px;
    bottom: 1px;
    z-index: 1;
    transition: 0.2s;
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
    color: #6b6b6b;
    font-size: 18px;
    line-height: 51px;
    letter-spacing: 1px;
}

.general-form-wrp .textarea-label .item-placeholder {
    bottom: auto;
}

.item-placeholder.required:after {
    content: '\f069';
    color: #E96758;
    font-size: 8px;
    padding-left: 6px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    top: -1.2em;
    position: relative;
    transform: rotate(60deg);
    display: inline-block;
    transition: all linear 0.3s;
}

.general-form-wrp .text-input {
    height: 55px;
    border: 1px solid #b7b7b7;
    border-radius: 5px;
    width: 100%;
    padding: 25px 15px 10px;
    letter-spacing: 1px;
    color: #545454;
    font-size: 18px;
    font-family: Raleway, Helvetica, Arial, sans-serif;
    outline: none;
    box-sizing: border-box;
    order: 2;
}

.general-form-wrp .text-input:focus {
    border-color: #c1c1c2;
    box-shadow: 5px 0 16px 0 rgba(0, 0, 0, 0.04);
}

.general-form-wrp .text-input:focus + span.item-placeholder {
    transform: translateY(-12px);
    font-size: 14px;
    color: #b1b1b1;
}

.general-form-wrp .text-input:not(:placeholder-shown) + span.item-placeholder {
    transform: translateY(-12px);
    font-size: 14px;
    color: #b1b1b1;
}

.general-form-wrp .text-input:not(:-ms-input-placeholder) + span.item-placeholder {
    transform: translateY(-12px);
    font-size: 14px;
    color: #b1b1b1;
}

.showroom-sample-form .form-item-row {
    align-items: flex-start;
}

/*only for Edge */
@supports (-ms-ime-align:auto) {
    .general-form-wrp .text-input:not(-webkit-input-placeholder) + span.item-placeholder {
        transform: translateY(-12px);
        font-size: 14px;
    }
}

.general-form-wrp .text-input:focus + span.item-placeholder {
    color: #419afd;
    font-weight: 500;
}

.general-form-wrp .text-input:focus:not(:placeholder-shown) + span.item-placeholder {
    color: #419afd;
    font-weight: 500;
}

.general-form-wrp .text-input:focus:not(:-ms-input-placeholder) + span.item-placeholder {
    color: #419afd;
    font-weight: 500;
}

/*only for Edge */
@supports (-ms-ime-align:auto) {
    .general-form-wrp .text-input:focus:not(-webkit-input-placeholder) + span.item-placeholder {
        color: #419afd;
        font-weight: 500;
    }
}

.general-form-wrp .radio-label {
    padding-left: 28px;
    font-size: 18px;
    line-height: 24px;
    position: relative;
}

.general-form-wrp .radio-input {
    position: absolute;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    visibility: hidden;
}

.general-form-wrp .radio-input:checked + .radio-box {
    background-color: #E96758;
    border: 1px solid #E96758;
    background-image: url(/images/filters/radio-button.svg);
}

.general-form-wrp .radio-input:checked + .radio-box--disabled {
    background-color: #bbbbbb;
    border: 1px solid #bbbbbb;
    background-image: url(/images/filters/radio-button.svg);
}

.radio-box {
    position: absolute;
    margin-top: -2px;
    width: 20px;
    height: 20px;
    overflow: hidden;
    border-radius: 50%;
    background-color: #f7f7f7;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    border: 1px solid #bbbbbb;
    left: 0;
    margin-left: 0;
    top: 4px;
}

.form-item__text {
    font-size: 18px;
    line-height: 24px;
}

.form-item__text--centered {
    width: 100%;
    text-align: center;
}

.form-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
}

.form-button {
    display: inline-flex;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    padding: 0 20px;
    margin: 0 8px;
    overflow: hidden;
    border: solid 1px #5E6572;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 400;
    line-height: 32px;
    color: #5E6572;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}
.form-button:hover {
    border: solid 1px #E96758;
    color: #E96758;
}
.form-button:first-child {
    margin-left: 0;
}

.form-button:last-child {
    margin-right: 0;
}



.form-button-primary, .j-modal .form-button-primary {
    color: #fff;
    box-shadow: inset 0 0 0 1px #E96758;
    z-index: 1;
    background-color: #E96758;
    cursor: pointer;
}



.general-form-wrp .textarea-label {
    padding: 0 0 10px;
    font-size: 18px;
    line-height: 24px;
    position: relative;
    max-width: 500px;
}

.textarea-item {
    height: 55px;
    border: 1px solid #d7d7d7;
    border-radius: 5px;
    width: 100%;
    padding: 10px;
    letter-spacing: 1px;
    color: #707070;
    font-size: 16px;
    font-family: Raleway, Helvetica, Arial, sans-serif;
    outline: none;
    resize:vertical;
}

@media all and (max-width: 430px) {
    .form-item-row {
        flex-direction: column;
    }

    .form-item-col {
        margin: 0 0 40px 0;
    }

    .form-item-row {
        padding-left: 15px;
        padding-right: 15px;
    }
    .form-item-col20,
    .form-item-col25,
    .form-item-col33,
    .form-item-col40,
    .form-item-col50,
    .form-item-col60,
    .form-item-col66,
    .form-item-col75 {
        width: 100%;
    }

    .h3-title {
        margin-bottom: 20px;
    }

    .options__tab-header {
        padding: 10px 35px 10px 15px;
        height: auto;
        width: calc(100% - 30px);
    }

    .options__tab-header:after {
        top: calc(50% - 11px);
    }
}

.general-form-wrp .text-detail-wrp {
    flex-direction: column}
.general-form-wrp .form-item-label__search {
    width: 300px}
.general-form-wrp .cta-sitemap {
    text-align: center;
    position: relative;
    margin-top: 20px;
}
.general-form-wrp .cta-sitemap a{
    text-align: center;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: #007ab9;
    text-decoration: none; }

.search-form .form-item {justify-content: center}

.push-footer-bottom-wrp {
    min-height: calc(100% - 286px);

}

.form-items-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
}

.form-items-row--centered {
    justify-content: center;
}

.form-items-row--wrap {
    flex-wrap: wrap;
}

.general-form-wrp .textarea-item:focus + span.item-placeholder {
    transform: translateY(-12px);
    font-size: 14px;
}

.general-form-wrp .textarea-item:not(:placeholder-shown) + span.item-placeholder {
    transform: translateY(-12px);
    top: 4px;
}

.general-form-wrp .textarea-item:not(:-ms-input-placeholder) + span.item-placeholder {
    transform: translateY(-12px);
    font-size: 14px;
}

/*only for Edge */
@supports (-ms-ime-align:auto) {
    .general-form-wrp .textarea-item:not(-webkit-input-placeholder) + span.item-placeholder {
        transform: translateY(-12px);
        font-size: 14px;
    }
}

.general-form-wrp .textarea-item:focus + span.item-placeholder {
    color: #419afd;
    font-weight: 500;
}

.general-form-wrp .textarea-item:focus:not(:placeholder-shown) + span.item-placeholder {
    color: #419afd;
    font-weight: 500;
}

.general-form-wrp .textarea-item:focus:not(:-ms-input-placeholder) + span.item-placeholder {
    color: #419afd;
    font-weight: 500;
}

/*only for Edge */
@supports (-ms-ime-align:auto) {
    .general-form-wrp .textarea-item:focus:not(-webkit-input-placeholder) + span.item-placeholder {
        color: #419afd;
        font-weight: 500;
    }
}

.jc-flex-end {
    justify-content: flex-end;
}

.jc-flex-start {
    justify-content: flex-start;
}

.form-button-thin {
    line-height: 24px;
    font-size: 15px;
}

.form-button-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
    cursor: auto;
}

.form-button-success:after {
    background-color: #28a745;
}

.form-button-success:before {
    background-color: #218838;
}

.form-button-info {
    color: #419afd;
    border-color: #419afd;
}

.form-button-info:after {
    background-color: #fff;
}

.form-button-info:before {
    background-color: #D3F1FD;
}

.form-button.disabled {
    color: #fff;
}

.form-button.disabled:after {
    background-color: #bbbbbb;
}

.form-item__text-required:after {
    content: '\f069';
    color: #E96758;
    font-size: 8px;
    padding-left: 6px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    top: -1.2em;
    position: relative;
    transform: rotate(60deg);
    display: inline-block;
    transition: all linear 0.3s;
}

.progress {
    height: 22px;
    max-width: 600px;
    width: 100%;
    box-shadow: none;
    display: flex;
    overflow: hidden;
    font-size: 0.9231rem;
    background-color: #f5f5f5;
    border-radius: 2px;
    margin-top: 10px;
}

.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #FFFFFF;
    text-align: center;
    white-space: nowrap;
    background-color: #4285f4;
    transition: width 0.6s ease;
}

.progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 3.077rem 3.077rem;
}

.progress-bar-animated {
    animation: progress-bar-stripes 2s linear infinite;
}

.bg-primary {
    background-color: #4285f4 !important;
}

.progress-bar {
    box-shadow: none;
    line-height: 22px;
    background-color: #4285f4;
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
    }
}

.g-recaptcha.error {
    animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.form-select {
    border: 1px solid #dddddd;
    line-height: 30px;
    font-size: 16px;
    padding: 0 18px;
    border-radius: 5px;
    color: #707070;
    height: 30px;
    margin-left: 8px;
    background-color: #f7f7f7;
    outline: none;
}

.selectric-state-select {
    max-width: 155px;
    width: 100%;
    box-sizing: border-box;
}

.selectric-wrapper.selectric-open {
    border-color: #c1c1c2;
    box-shadow: 5px 0 16px 0 rgba(0, 0, 0, 0.04);
}

.selectric-wrapper.selectric-open + span.item-placeholder, .selectric-wrapper.selectric-checked + span.item-placeholder  {
    transform: translateY(-12px);
    font-size: 14px;
    z-index: 10000;
}

.selectric-wrapper.selectric-open + span.item-placeholder, .selectric-wrapper.selectric-focus + span.item-placeholder{
    color: #419afd;
    font-weight: 500;
}

.selectric-wrapper .selectric {
    padding: 4px;
    color: #575757;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    background-color: #fff;
    border-radius: 5px;
    height: 55px;
    outline: none;
}

.selectric-wrapper .selectric .label {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #707070;
    line-height: 23px;
    height: 22px;
    margin-top: 23px;
}

.selectric-wrapper .selectric .button {
    height: 32px;
    width: 32px;
    top: 10px;
    background-color: #fff;
}

.selectric-wrapper .selectric-items li {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: #575757;
    padding-left: 14px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
}

.selectric-wrapper .selectric-items li i {
    margin-right: 4px;
}

.selectric-wrapper .selectric-items li.selected .fa-square:before {
    content: "\f14a";
}

.selectric-wrapper .selectric-items {
    top: calc(100% - 1px);
}

.selectric-wrapper.selectric-below .selectric.isOpen {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.selectric-wrapper.selectric-above .selectric.isOpen {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.selectric-wrapper.selectric-above .selectric-items {
    bottom: calc(100% - 1px);
    top: unset;
}

.general-form-wrp .checkbox-wrp {
    padding-left: 37px;
    font-size: 18px;
    line-height: 24px;
    width: auto;
    height: 55px;
    position: relative;
}

.general-form-wrp .checkbox-input {
    width: 20px;
    height: 20px;
}

.general-form-wrp .checkbox-input-mark {
    width: 20px;
    height: 20px;
    overflow: hidden;
    border-radius: 5px;
    background-color: #f7f7f7;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    border: 1px solid #bbbbbb;
}

.general-form-wrp .checkbox-input:checked + .checkbox-input-mark {
    background-color: #E96758;
    border: 1px solid #E96758;
    background-image: url(/images/filters/check-mark.svg);
}

.form-item-label.error-validation .custom-error-wrapper-class {
    width: 100%;
    position: relative;
    color: #E96758;
    font-size: 13px;
    white-space: unset;
    display: flex;
}

.form-item-label.error-validation input {
    border-bottom: 2px solid #E96758;
}

.form-item-label.error-validation .text-input:focus {
    border-bottom: 2px solid #E96758;
}

.form-item-label.error-validation .selectric-wrapper .selectric {
    border-bottom: 2px solid #E96758;
}

.general-form-wrp .form-item-label .textarea-input {
    width: 100%;
    height: 155px;
    border: 1px solid #d7d7d7;
    border-radius: 5px;
    padding: 10px 15px;
    letter-spacing: 1px;
    color: #707070;
    font-size: 18px;
    font-family: Raleway, Helvetica, Arial, sans-serif;
    outline: none;
    box-sizing: border-box;
}

.form-item-hint {
    margin: 0 0 20px 0;
    font-size: 14px;
    line-height: 18px;
    color: #707070;
    font-weight: 400;
    width: 100%;
    box-sizing: border-box;
}

.fieldrow .my-account__edit_link {
    margin: 0 0 0 20px;
    padding: 0;
    line-height: 18px;
    cursor: pointer;
}

.form-action-link {
    color: #007ab9;
    text-decoration: none;
    font: 400 16px/18px 'Raleway', sans-serif;
    border-bottom: 1px dashed transparent;
    outline-width: 0;
    display: inline-block;
    cursor: pointer;
}

.form-action-link:hover, .form-action-link:visited, .form-action-link:focus {
    outline-width: 0;
}

.form-action-link:hover {
    border-bottom: 1px dashed #007ab9;
}

.form-item-text {
    font-size: 16px;
    line-height: 20px;
}

.form-item-label.hidden {
    height: 0;
    opacity: 0;
    margin: 0;
}

.selectric {
    border: 1px solid #b7b7b7;
}
.core-result {
    justify-content: center;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
}

.textarea-label.error-validation textarea {
    border-bottom: 2px solid #E96758;
}