@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


#leadgeneration-form-trigger {
    font-family: 'Poppins', Arial;
    color: black;
    font-weight: bold;
    font-size: 16px;
    position: fixed;
    background-color: #FFE957;
    height: 60px;
    -moz-box-shadow: 0px 5px 6px 1px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 5px 6px 1px rgba(0, 0, 0, 0.25);
    -o-box-shadow: 0px 5px 6px 1px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 5px 6px 1px rgba(0, 0, 0, 0.25);
    filter:progid:DXImageTransform.Microsoft.Shadow(color=#cfcfcf, Direction=180, Strength=6);
    min-width: 20px;
    z-index: 2000;
    cursor: pointer;
    border: 0;
    text-align: left;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

.leadgeneration-form {
    z-index: 2002;
    height: 100%;
    background-color: white;
    text-align: center;
    overflow: auto;
    font-family: 'Roboto Condensed';
}

#leadgeneration-overlay {
    z-index: 9000;
    display: none;
    background-color: black;
    position: fixed;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    top: 0;
    right: 0;
}

#leadgeneration-close {
    z-index: 9003;
    position: absolute;
    right: -15px;
    top: -15px;
    width: 30px;
    margin: 5px;
    background-color: white;
    border-radius: 50%;
    padding: 4px;
    border: 1px solid black;
}

#leadgeneration-popin {
    display: none;
    z-index: 9001;
    position: fixed;
    width: 350px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    background-color: white;
    padding-bottom: 20px;

}

#leadgeneration-popin .g-recaptcha div {
    margin: auto;
}

.leadgeneration-loader {
    border: 30px solid #f3f3f3;
    border-radius: 50%;
    border-top: 30px solid #3498db;
    width: 200px;
    height: 200px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    margin: auto;
    top: 30%;
    right: 30%;
    z-index: 9002;
}

.leadgeneration-row-block {
    display: table-cell;
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
}

.leadgeneration-row-block > div {
    margin: auto;
}

.leadgeneration-quote-container.main {
    background-color: #fff;
    padding: 20px;
}

.leadgeneration-quote-container.choice {
    display: flex;
}

.leadgeneration-quote-container.choice {
    display: flex;
}

.leadgeneration-quote-container-row {
    min-height: 20px;
    display: table;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    table-layout: fixed;
}

.leadgeneration-quote-container-row label {
    font-family: 'Roboto Condensed';
    margin-left: 10px;
    margin-right: 10px;
}

.leadgeneration-quote-title {
    font-family: 'Poppins', Arial;
    font-weight: 700;
    line-height: 1.1;
    color: #232323;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 32px;
    margin: 0;
}

.leadgeneration-quote-subtitle {
    font-family: 'Poppins', Arial;
    font-weight: 700;
    line-height: 1.1;
    color: #232323;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 24px;
    margin: 0;
}

.leadgeneration-quote-p {
    font-family: 'Poppins', Arial;
    font-size: 16px;
    line-height: 20px;
    color: #706d6e;
    margin: 0;
}

.leadgeneration-quote-input-range-container{
    width: 100%;
}

/* START CSS RANGE */
.leadgeneration-quote-input-range {
    -webkit-appearance: none;
    width: calc(100% - (73px));
    height: 5px;
    background: #d6d2d3;
    outline: none;
    padding: 0;
    margin: 0;
}

.leadgeneration-quote-input-range::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #781744;
    cursor: pointer;
    transition: background .15s ease-in-out;
}

.leadgeneration-quote-input-range::-webkit-slider-thumb:hover {
    background: #0d9988;
}

.leadgeneration-quote-input-range:active::-webkit-slider-thumb {
    background: #0d9988;
}

.leadgeneration-quote-input-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border: 0;
    border-radius: 50%;
    background: #781744;
    cursor: pointer;
    transition: background .15s ease-in-out;
}

.leadgeneration-quote-input-range::-moz-range-thumb:hover {
    background: #0d9988;
}

.leadgeneration-quote-input-range:active::-moz-range-thumb {
    background: #0d9988;
}

.leadgeneration-quote-input-range::-moz-range-track {
    background: #bdc3c7;
    border: 0;
}

/** FF*/
.leadgeneration-quote-input-range::-moz-range-progress {
    height: 5px;
    background-color: #cc2e85;
}

/* IE*/
.leadgeneration-quote-input-range::-ms-fill-lower {
    background-color: #cc2e85;
    height: 5px;
}
.leadgeneration-quote-input-range::-ms-fill-upper {
    background-color: #cc2e85;
    height: 5px;
}

.leadgeneration-quote-input-range-value {
    display: inline-block;
    position: relative;
    width: 34px;
    color: #fff;
    line-height: 20px;
    text-align: center;
    border-radius: 18px;
    background: #706d6e;
    padding: 1px 8px;
    margin-left: 8px;
    font-size: 11px;
}

/* END CSS RANGE */

.leadgeneration-quote-input-button, .leadgeneration-quote-button-step {
    font-family: 'Poppins', Arial;
    width: 200px;
    height: 60px;
    padding: 4px 15px;
    font-size: 15px;
    font-weight: 400;
    line-height: 45px;
    border: 1px solid #706d6e;
    -webkit-transition: color .25s linear,background-color .25s linear, font-weight .25s linear;
    transition: color .25s linear,background-color .25s linear, font-weight .25s linear;
    -webkit-font-smoothing: subpixel-antialiased;
    color: #706d6e;
    background-color: #fff;
    text-align: center;
    /*white-space: nowrap;*/
    cursor: pointer;
    display: block;
}

.leadgeneration-quote-input-button.button-icon .leadgeneration-quote-input-button-content {
margin-bottom: 20px;
position: absolute;
top: 66px;
right: -38px;
width: 200%;
}

.leadgeneration-quote-input-button.button-icon {
    margin-bottom: 40px;
    position: relative;
    width: 75px;
}

.leadgeneration-quote-input-button-content {
    display: inline-block;
    margin: 0;
    line-height: normal;
    vertical-align: middle;

    -webkit-transition: color .25s linear, font-weight .25s linear;
    transition: color .25s linear, font-weight .25s linear;
    -webkit-font-smoothing: subpixel-antialiased;
}

#leadgeneration-quote-form-navigation {
    position: relative;
    height: 60px;
}

.leadgeneration-quote-button-step {
    position: absolute;
}

.leadgeneration-quote-button-step.next {
    right: 0;
}

.leadgeneration-quote-button-step.last {
    left: 0;
}

.leadgeneration-quote-input-button:hover, .leadgeneration-quote-button-step:hover,
.leadgeneration-quote-input-button:focus, .leadgeneration-quote-button-step:focus {
    background-color: #d6d2d3;
}

.leadgeneration-quote-input-button.selected {
    background-color: #781744;
    color: #fff;
    font-weight: bold;
}

.leadgeneration-quote-input-button.selected .leadgeneration-quote-input-button-content {
    color: #fff;
    font-weight: bold;
}

.leadgeneration-quote-input-button.button-icon.selected .leadgeneration-quote-input-button-content {
    color: #781744;
    font-weight: bold;
}

.leadgeneration-quote-button-step:hover {
    background-color: #781744;
}

/* START CHECKBOX */
.leadgeneration-quote-input-checkbox{
    display:none;
}

.leadgeneration-quote-checkbox-label {
    -webkit-transition: font-weight .25s linear, color .25s linear;
    transition: font-weight .25s linear, color .25s linear;
}

.leadgeneration-quote-input-checkbox + .leadgeneration-quote-checkbox-label {
    color: #706d6e;
}

.leadgeneration-quote-checkbox-label:hover {
    cursor: pointer;
}

.leadgeneration-quote-input-checkbox:checked+.leadgeneration-quote-checkbox-label {
    color: #781744;
    font-weight: bold;
}

.leadgeneration-quote-input-checkbox + .leadgeneration-quote-checkbox-label div{
    width:18px;
    height:18px;
    display:inline-block;
    text-align:center;
    line-height:20px;
    margin-right:6px;
    border-radius:3px;
    cursor:pointer;
    background-color: #d6d2d3;

    -webkit-transition: background-color .25s linear, border-color .25s linear;
    transition: background-color .25s linear, border-color .25s linear;
}

.leadgeneration-quote-input-checkbox + .leadgeneration-quote-checkbox-label i{
    font-size:16px;
    opacity:0;
    color: #fff;

    -webkit-transition: opacity .25s linear;
    transition: opacity .25s linear;
}

.leadgeneration-quote-input-checkbox + .leadgeneration-quote-checkbox-label:hover i{
    opacity: 1;
}

.leadgeneration-quote-input-checkbox:checked+.leadgeneration-quote-checkbox-label i{
    opacity:1;
}

.leadgeneration-quote-input-checkbox:checked+.leadgeneration-quote-checkbox-label div{
    background-color: #781744;
    border-color: #781744;
}
/* END CHECKBOX */

/* START RADIO */
.leadgeneration-quote-input-radio {
    position: absolute;
    opacity: 0;
}

.leadgeneration-quote-input-radio + .leadgeneration-quote-radio-label:before {
    content: '';
    border-radius: 100%;
    border: 3px solid #d6d2d3;
    display: inline-block;
    width: 1.4em;
    height: 1.4em;
    top: -0.2em;
    margin-right: 1em;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    -webkit-transition: all 250ms ease;
    transition: all 250ms ease;
}

.leadgeneration-quote-radio-label:hover {
    cursor: pointer;
}

.leadgeneration-quote-input-radio:checked + .leadgeneration-quote-radio-label:before {
    background-color: #781744;
    box-shadow: inset 0 0 0 4px #f4f4f4;
}

.leadgeneration-quote-input-radio:hover + .leadgeneration-quote-radio-label:before {
    background-color: #bdc3c7;
    border-color: #bdc3c7;
    box-shadow: inset 0 0 0 4px #f4f4f4;
}

.leadgeneration-quote-input-radio:focus + .leadgeneration-quote-radio-label:before {
    outline: none;
    border-color: #781744;
    background-color: #781744;
}

.leadgeneration-quote-input-radio + .leadgeneration-quote-radio-label:empty:before {
    margin-right: 0;
}

.leadgeneration-quote-input-radio:checked+.leadgeneration-quote-radio-label {
    color: #781744;
    font-weight: bold;
}

.leadgeneration-quote-input-radio:focus+.leadgeneration-quote-radio-label {
    color: #781744;
    font-weight: bold;
}

/* END RADIO */

/* START SELECT */
.leadgeneration-quote-input-select-new {
    width: 300px;
    display: inline-block;
    background-color: #fff;
    box-shadow: 0 0 2px rgb(204, 204, 204);
    transition: all .5s ease;
    position: relative;
    font-size: 14px;
    color: #474747;
    height: 100%;
    text-align: left
}
.leadgeneration-quote-input-select-new .select {
    cursor: pointer;
    display: block;
    padding: 10px
}
.leadgeneration-quote-input-select-new .select i {
    font-size: 13px;
    color: #888;
    cursor: pointer;
    transition: all .3s ease-in-out;
    float: right
}
.leadgeneration-quote-input-select-new:hover {
    box-shadow: 0 0 4px #69AFE3;
}
.leadgeneration-quote-input-select-new:active {
    background-color: #f8f8f8
}
.leadgeneration-quote-input-select-new.active:hover,
.leadgeneration-quote-input-select-new.active {
    box-shadow: 0 0 4px #69AFE3;
    border-radius: 5px 5px 0 0;
    background-color: #f8f8f8
}
.leadgeneration-quote-input-select-new.active .select i {
    transform: rotate(180deg)
}
.leadgeneration-quote-input-select-new .dropeddown {
    position: absolute;
    background-color: #fff;
    width: 100%;
    left: 0;
    margin-top: 1px;
    box-shadow: 0 1px 2px rgb(204, 204, 204);
    border-radius: 0 1px 5px 5px;
    overflow: hidden;
    display: none;
    max-height: 144px;
    overflow-y: auto;
    z-index: 9
}
.leadgeneration-quote-input-select-new .dropeddown li {
    padding: 10px;
    transition: all .2s ease-in-out;
    cursor: pointer
}
.leadgeneration-quote-input-select-new .dropeddown {
    padding: 0;
    list-style: none
}
.leadgeneration-quote-input-select-new .dropeddown li:hover {
    background-color: #bdc3c7
}
.leadgeneration-quote-input-select-new .dropeddown li:active {
    background-color: #A2C9E5
}

.select2 {
    font-family: 'Poppins', Arial !important;
}

.select2-results__option--highlighted {
    background-color: #A1C9E5 !important;
}

[class^='select2'] {
    border-radius: 0px !important;
    z-index: 9003;
}

/* END SELECT */

/* START INPUT TEXT */
.leadgeneration-quote-input-text {
    font-family: 'Poppins', Arial;
    border: 1px solid #706d6e;
    color: #706d6e;
    font-size: 15px;
    padding: 6px 12px;
    height: 32px;
    box-shadow: none;
    -webkit-transition: border 0.25s linear, color 0.25s linear, background-color 0.25s linear;
    transition: border 0.25s linear, color 0.25s linear, background-color 0.25s linear;
    width: 100%;
}

.leadgeneration-quote-input-text:focus {
    border-color: #cc2e85;
    outline: 0;
    box-shadow: none;
}

.leadgeneration-quote-input-text::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #b2bcc5;
    opacity: 1;
}

.leadgeneration-quote-input-text::-moz-placeholder { /* Firefox 19+ */
    color: #b2bcc5;
    opacity: 1;
}

.leadgeneration-quote-input-text:-ms-input-placeholder { /* IE 10+ */
    color: #b2bcc5;
    opacity: 1;
}

.leadgeneration-quote-input-text:-moz-placeholder { /* Firefox 18- */
    color: #b2bcc5;
    opacity: 1;
}

.leadgeneration-quote-input-label {
    display: block;
    text-align: center;
    font-family: 'Roboto Condensed';
}

/* END INPUT TEXT */

.leadgeneration-form textarea {
    width: 100%;
    height: 100px;
}

.leadgeneration-submit {
    text-transform: uppercase;
    margin: auto;
    color: #706d6e;
    border-color: #706d6e;
}

.leadgeneration-submit p {
    font-weight: bold;
    line-height: 50px;
}

*.leadgeneration-submit:hover {
    background-color: #d6d2d3;
    cursor: not-allowed;
}

.leadgeneration-submit.valid {
    color: #fff;
    border-color: #0d9988;
    background-color: #0d9988;
    cursor: pointer;
}

.leadgeneration-submit.valid p {
    color: #fff;
}

.leadgeneration-submit.valid:hover {
    color: #0d9988;
    border-color: #0d9988;
    background-color: #fff;
}

.leadgeneration-submit.valid:hover p {
    color: #0d9988;
}

.leadgeneration-submit.valid.selected {
    background-color: #0d9988;
    color: #fff;
}

#leadgeneration-open {
    color: #fff;
    background-color: #5C7259;
    border: none;
    font-size: 16px;
    font-family: 'Roboto Condensed';
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 15px;
    width: 100%;
    height: 33px;
    text-transform: uppercase;
}