.form-item {
    display: flex;

}

.form-item-row {
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
}

.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: 'proxima-nova', Helvetica, Arial, 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-header:hover {
    background-color: #f1f2f5;
}


.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;
}

.general-form-wrp .radio-input:checked + .radio-box {
    background-color: #37C2DD;
    border: 1px solid #37C2DD;
    background-image: url(/assets/filters/radio-button.svg);
}

.general-form-wrp .radio-input:checked + .radio-box--disabled {
    background-color: #bbbbbb;
    border: 1px solid #bbbbbb;
    background-image: url(/assets/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 24px;
    margin: 0 8px;
    white-space: nowrap;
    overflow: hidden;
    border: 1px solid #000000;
    border-radius: 0px;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    color: #000000;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.5s ease-in-out;

    font: normal 18px/30px  'proxima-nova-condensed', Helvetica, Arial, sans-serif;
    letter-spacing: 0px;
    font-weight: 600;
    border: 1px solid #37C2DD;
    color: #37C2DD;
}

.form-button:first-child {
    margin-left: 0;
}

.form-button:last-child {
    border: 1px solid #37C2DD;
    color: #37C2DD;
    margin-right: 0;
}
.form-button__print-quote-btn {
    border: 1px solid #37C2DD;
    color: #37C2DD;
    margin-right: 0;
}
.quote-number-label{
    margin: 0 0 0 20px;
}
.form-button:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.quote-notes-btn-wrap .quote-button__save-notes{
    text-decoration: none;
}
.quote-button__save-notes:before {
    background-color: transparent;
    color: transparent;
}
.quote-notes-btn-wrap .quote-button__save-notes:hover {
    color: white;
}
.quote-button__save-notes:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0;
    border-color: #37c2dd;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: .5s;
    transition: .5s;
    z-index: -1;
}
.quote-button__save-notes:after {
    border-color: #37c2dd transparent transparent transparent;
}

.form-button:hover:before {
    top: -400%;
    left: -100%;
    width: 300%;
    height: 900%;
}

.form-button:after {
    background-color: #fff;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}
.form-buttons .form-button-primary {
    color: white;
    border: 1px solid #37C2DD;
    background-color: #37C2DD;
    z-index: 1;
}

.form-button-primary {
    color: #37C2DD;
    border: 1px solid #37C2DD;
    z-index: 1;
}
.form-button-primary:hover {
    color: #37C2DD;
    background: #fff;
}
.form-button-primary:before {
    /*background-color: #ffffff;*/
    /*color: #37C2DD;*/
}
.quote-notes .form-button-primary:after {
    background-color: white;
}

.form-button-primary:after {
    background-color: #37C2DD;
}

.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: -0.5px;
    color: #707070;
    font-size: 16px;
    font-family: 'proxima-nova' , 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: #37C2DD;
    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);
    font-size: 14px;
}

.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: 25px;
    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: #808080;
}

.form-button.disabled:after {
    background-color: #bbbbbb;
}