body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #373737;
    background-color: #fff;
    text-align: left;
    margin: 0
}

body a[rel=nofollow] {
    position: fixed !important
}

body button {
    font-family: "Poppins", sans-serif
}

body:not(.iti-mobile) .iti__country-list {
    white-space: normal;
    width: 315px;
    right: 0
}

.logo-wrapper-color {
    background-color: #fff
}

@media screen and (min-width: 1200px) {
    .logo-wrapper-color .logo-wrapper {
        max-width: 1170px;
        margin: 0 auto
    }
}

section {
    margin: 2rem auto;
    max-width: 90%
}

@media screen and (min-width: 1200px) {
    section {
        max-width: 1170px
    }
}

.logo-section {
    display: flex;
    justify-content: center
}

header section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px
}

@media screen and (min-width: 1200px) {
    header section {
        flex-direction: row;
        justify-content: center;
        align-items: stretch
    }
}

@media screen and (max-width: 575px) {
    header .header-images {
        width: 100%
    }
    header .header-images img {
        width: 100%
    }
}

header img {
    border-radius: 20px;
    overflow: hidden
}

p {
    color: #707070;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    margin: 0
}

main section {
    margin: 0 auto;
    padding: 40px 0
}

main .calculator-section {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 40px
}

main .calculator-section h3 {
    color: #21272a;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    margin: 0
}

@media screen and (min-width: 576px) {
    main .calculator-section h3 {
        font-size: 34px;
        line-height: 40.8px
    }
}

main .calculator-section .calculator {
    display: grid;
    border-radius: 20px;
    background: #f2f4f8;
    padding: 30px;
    gap: 1rem
}

@media screen and (min-width: 768px) {
    main .calculator-section .calculator {
        grid-template-columns: repeat(2, 1fr)
    }
}

main .calculator-section .calculator .entered-price-container {
    border-radius: 20px;
    background: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px
}

main .calculator-section .calculator .entered-price-container p {
    color: #21272a
}

main .calculator-section .calculator .entered-price-container .input-container {
    display: flex;
    gap: 1rem;
    width: 100%;
    flex-direction: column
}

@media screen and (min-width: 576px) {
    main .calculator-section .calculator .entered-price-container .input-container {
        flex-direction: row
    }
}

@media screen and (min-width: 768px) {
    main .calculator-section .calculator .entered-price-container .input-container {
        flex-direction: column
    }
}

@media screen and (min-width: 992px) {
    main .calculator-section .calculator .entered-price-container .input-container {
        flex-direction: row
    }
}

main .calculator-section .calculator .entered-price-container .input-container .input-wrapper {
    position: relative;
    flex: 1;
    align-items: center
}

main .calculator-section .calculator .entered-price-container .input-container #err_msg_calculator {
    text-align: left
}

main .calculator-section .calculator .entered-price-container .input-container .input-wrapper input {
    width: 100%;
    padding: 0px 0px 0px 60px;
    font-size: 16px;
    height: 100%;
    min-height: 48px;
    border-radius: 5px;
    border: none;
    border-bottom: 1px solid #c1c7cd;
    background: #f2f4f8
}

main .calculator-section .calculator .entered-price-container .input-container input[type=number]::-webkit-inner-spin-button,
main .calculator-section .calculator .entered-price-container .input-container input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

main .calculator-section .calculator .entered-price-container .input-container input[type=number] {
    -moz-appearance: textfield
}

main .calculator-section .calculator .entered-price-container .input-container .line {
    width: 1px;
    height: 70%;
    background: #707070;
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%)
}

main .calculator-section .calculator .entered-price-container .input-container .prefix {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #697077;
    pointer-events: none;
    font-size: 14px;
    line-height: 19.6px
}

main .calculator-section .calculator .entered-price-container .input-container .calc-button {
    flex: 1;
    border-radius: 60px;
    background: #ffca05;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .25);
    border: none;
    padding: 14px 0;
    color: #21272a;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 19.6px
}

main .calculator-section .calculator .final-price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: #21272a;
    padding: 30px
}

main .calculator-section .calculator .final-price-container p {
    color: #fff
}

main .calculator-section .calculator .final-price-container h2 {
    color: #fff;
    font-size: 44px;
    font-weight: 500;
    line-height: 61.6px;
    margin: 0
}

main .section-1 .cards-contanier {
    display: grid;
    gap: 1.5rem
}

@media screen and (min-width: 576px) {
    main .section-1 .cards-contanier {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media screen and (min-width: 992px) {
    main .section-1 .cards-contanier {
        grid-template-columns: repeat(4, 1fr)
    }
}

main .section-1 .cards-contanier .card {
    border-radius: 10px;
    border: 1px solid #dde1e6;
    background: #f2f4f8;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .1);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px
}

main .button-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

main .button-container .cta-button {
    border: 2px solid #ffca05;
    background: #ffca05;
    border: none;
    padding: 24px 10px;
    border-radius: 500px;
    width: 90%;
    max-width: 385px;
    color: #21272a;
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: .5px
}

footer {
    padding: 70px 0;
    text-align: center;
    color: #464646
}

@media screen and (min-width: 768px) {
    footer {
        margin-top: 0
    }
}

footer .nav-row p {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem
}

footer .nav-row p a {
    color: #464646 !important;
    font-size: 15px;
    display: block;
    text-decoration: underline;
    max-width: -moz-fit-content;
    max-width: fit-content
}

@media screen and (min-width: 768px) {
    footer .nav-row p a {
        max-width: -moz-max-content;
        max-width: max-content
    }
    footer .nav-row p a:first-of-type {
        margin-top: 0
    }
    footer .nav-row p a:last-of-type {
        margin-bottom: 0
    }
}

footer .disclaimer {
    line-height: 18px;
    font-size: 15px;
    text-align: center;
    color: #464646
}

footer .disclaimer a {
    color: #464646;
    text-decoration: underline
}

#mainForm {
    z-index: 10
}

@media screen and (min-width: 992px) {
    #mainForm {
        margin-top: 0
    }
}

.lp-action {
    cursor: pointer
}

.form-container {
    background: #fff;
    border-radius: 16px;
    /* border: 1px solid #d2d2d2;
    box-shadow: 0px 8px 36px 0px rgba(0, 0, 0, .16); */
    max-width: 370px;
    z-index: 10;
    scroll-margin-top: 15px;
    max-width: initial;
    padding: 2rem 0
}

@media screen and (min-width: 1200px) {
    .form-container {
        max-width: 370px
    }
}

.form-container h2 {
    color: #21272a;
    text-align: center;
    font-weight: 500;
    font-size: 24px;
    line-height: 26.4px;
    margin-bottom: 24px;
    padding: 0 15px
}

.user-inputs {
    padding: 0 15px
}

@media screen and (max-width: 1199px) {
    .user-inputs {
        flex-direction: column
    }
}

@media screen and (min-width: 768px)and (max-width: 992px) {
    .user-inputs {
        padding: 0 5rem
    }
}

@media screen and (min-width: 992px)and (max-width: 1199px) {
    .user-inputs {
        padding: 0 10rem
    }
}

.user-inputs div {
    max-width: 100%
}

.form-wrapper .form-group {
    position: relative;
    margin-bottom: 24px
}

.form-wrapper .form-control {
    border: none;
    border-radius: 5px;
    border-bottom: 1px solid #c1c7cd;
    background: #f2f4f8;
    height: 48px;
    margin-bottom: 0px
}

.form-wrapper .form-control:focus {
    border: 1px solid #ffca05;
    box-shadow: none
}

.form-wrapper .form-control[readonly] {
    background: #f2f2f2;
    border: 1px solid #c4c4c4;
    color: #464646
}

.form-wrapper .form-control-lg {
    font-size: 14px;
    height: 48px;
    line-height: 1.5;
    min-width: 243px;
    padding-left: 15px;
    text-align: left
}

@media screen and (min-width: 768px)and (max-width: 991px) {
    .form-wrapper .form-control-lg {
        min-width: 200px
    }
}

.form-wrapper .cfd {
    color: #707070;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 19.6px;
    margin-top: 0
}

.form-wrapper hr {
    border-top: 1px solid #dde1e6;
    margin-bottom: 2rem
}

.form-wrapper .country {
    margin-bottom: 0
}

@media screen and (min-width: 768px) {
    .form-wrapper .country {
        margin-bottom: 20px
    }
}

@media screen and (min-width: 1200px) {
    .form-wrapper .country {
        margin-bottom: 0
    }
}

.form-wrapper .reg-btn {
    border: 0;
    background: #ffca05;
    color: #21272a;
    cursor: pointer;
    display: block;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    margin: auto;
    margin-bottom: 0;
    padding: 24px 5px;
    white-space: normal;
    width: 100%;
    border-radius: 500px;
    box-shadow: 0px 3px 9px 0px hsla(0, 0%, 80%, .4)
}

.form-wrapper .reg-btn:hover {
    transition: .1s all linear;
    transform: scale(1.03)
}

.form-wrapper .form-group label {
    position: absolute;
    z-index: 200;
    left: 15px;
    top: 13px;
    transition: .1s all;
    font-size: 14px;
    margin: 0
}

.form-wrapper .selected.form-group label {
    top: -16px;
    left: 0px;
    transition: .1s all;
    font-size: 12px
}

.form-wrapper .selected.form-group label[for=mobile] {
    left: 0
}

.form-wrapper .active.form-group label {
    top: -16px;
    left: 0px;
    transition: .1s all;
    font-size: 12px
}

.form-wrapper .active.form-group label[for=mobile] {
    left: 0
}

.form-wrapper .custom-select-lg {
    font-size: 14px;
    height: 45px;
    line-height: 1.5;
    padding-top: .375rem;
    padding-bottom: .375rem;
    padding-left: 15px
}

.form-wrapper .nxreg-sign-up-phone-number-wrapper label {
    left: 60px
}

.form-wrapper .invalid-feedback {
    margin-top: 0;
    font-size: 14px
}

.form-wrapper .custom-control {
    padding-left: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1rem;
    flex-direction: row
}

@media screen and (min-width: 576px)and (max-width: 1199px) {
    .form-wrapper .custom-control {
        margin-top: 0
    }
}

.form-wrapper .custom-checkbox .custom-control-label {
    position: relative !important;
    left: 0;
    font-size: 13px;
    font-weight: 400;
    padding-left: 25px;
    padding-bottom: 15px
}

.form-wrapper .custom-checkbox .custom-control-label a {
    font-size: 13px;
    font-weight: 400;
    text-decoration: underline
}

.form-wrapper .custom-checkbox .custom-control-label:before {
    width: 18px;
    height: 18px;
    top: 0;
    left: 0
}

.form-wrapper .custom-checkbox .custom-control-label:after {
    left: 0, 5px;
    width: 18px;
    height: 18px;
    top: 0;
    left: 0
}

.form-wrapper #msgContainer {
    color: red;
    padding: 0 15px;
    text-align: center;
    font-size: 14px
}

.form-wrapper #msgContainer a {
    color: red;
    text-decoration: underline
}

.focusForm {
    animation: focusForm .7s ease-in-out 2
}

@keyframes focusForm {
    0% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.03)
    }
    100% {
        transform: scale(1)
    }
}

input[type=checkbox] {
    display: none
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 18px;
    margin: 0;
    margin-right: 5px;
    vertical-align: middle
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: dimgray;
    transition: .4s
}

.advertorial {
    text-decoration: underline;
    color: gray;
    padding-top: 40px;
    padding-bottom: 33px
}

@media screen and (min-width: 576px) {
    .advertorial {
        padding-bottom: 0px
    }
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 2px;
    background-color: #fff;
    transition: .4s
}

input:checked+.switch .slider {
    background-color: #ffca05
}

input:checked+.switch .slider::before {
    background-color: #fff;
    transform: translateX(20px)
}

input:checked+.switch .slider::after {
    content: "";
    color: #fff;
    left: 20%;
    top: 30%;
    transform: translate(-50%, -50%);
    display: block;
    position: absolute;
    width: 10px;
    height: 5px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(-45deg)
}

input:focus+.switch .slider {
    box-shadow: 0 0 1px #008dde
}

.slider.round {
    border-radius: 34px
}

.slider.round:before {
    border-radius: 50%
}

.check-box label {
    margin-bottom: 10px;
    position: absolute;
    top: 38%;
    transform: translateY(-50%)
}

.switch {
    position: relative
}

.check-box span:not(.slider) {
    display: inline-block;
    color: #fff;
    width: calc(92% - 45px);
    text-align: left;
    margin-left: 65px;
    vertical-align: top;
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 20px
}

.form-wrapper .form-group label.switch {
    position: relative;
    left: 0;
    top: 0;
    padding-right: 40px
}

.terms-link {
    padding-top: 5px;
    color: #4f4f4f;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 16px;
    padding-left: 15px;
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%
}

.terms-link a {
    color: #4f4f4f;
    font-weight: 300;
    text-decoration: underline
}

.check-box span:not(.slider) {
    display: inline-block;
    width: calc(92% - 45px);
    text-align: left;
    margin-left: 65px;
    font-size: 15px;
    vertical-align: top;
    font-size: .8125em;
    margin-bottom: 20px
}

textarea:focus,
input:focus,
button:focus {
    outline: none
}

button:hover {
    cursor: pointer
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .7);
    z-index: 999999;
    color: #585858;
    display: none
}

.overlay .container {
    height: 100%;
    display: flex;
    align-items: center
}

.overlay .container .thank-you-msg {
    background-color: #fff;
    margin: 0 auto;
    width: 100%;
    max-width: 650px;
    border-radius: 25px;
    padding: 35px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-direction: column
}

@media screen and (min-width: 992px) {
    .overlay .container .thank-you-msg {
        padding: 35px;
        text-align: left;
        flex-direction: row
    }
}

.overlay .container .thank-you-msg .img-wrapp {
    padding: 0
}

.overlay .container .thank-you-msg .img-wrapp img {
    width: 150px;
    margin-top: 30px;
    margin-bottom: 30px
}

@media screen and (min-width: 576px) {
    .overlay .container .thank-you-msg .img-wrapp img {
        width: 150px
    }
}

@media screen and (min-width: 992px) {
    .overlay .container .thank-you-msg .img-wrapp img {
        width: 180px
    }
}

.overlay .container .thank-you-msg h3 {
    text-transform: uppercase;
    font-size: 26px;
    color: #06a2e4;
    font-weight: 700;
    margin: 0 auto
}

@media screen and (min-width: 576px) {
    .overlay .container .thank-you-msg h3 {
        font-size: 30px
    }
}

.overlay .container .thank-you-msg p {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.5em;
    text-align: center
}

@media screen and (min-width: 576px) {
    .overlay .container .thank-you-msg p {
        font-size: 20px
    }
}

@media screen and (min-width: 992px) {
    .overlay .container .thank-you-msg p {
        text-align: left
    }
}

.overlay .container .thank-you-msg .confirm {
    background: #06a2e4;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    padding: 5px 80px;
    font-weight: 100;
    text-shadow: none;
    opacity: 9;
    line-height: 1.5em
}

@media screen and (min-width: 576px) {
    .overlay .container .thank-you-msg .confirm {
        padding: 10px 100px
    }
}

.overlay .container .thank-you-msg .confirm:hover {
    color: #fff;
    text-decoration: none;
    cursor: pointer
}

#msgContainer {
    color: red
}

.respond-card {
    padding: 0 35px;
    background: #fff;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, .25)
}

.card-respond-wrapper {
    text-align: center;
    padding-top: 30px
}

.respond-header {
    font-size: 20px;
    padding: 12px 0px !important
}

.respond-body {
    display: inline-block;
    padding: 15px !important;
    font-size: 18px;
    border-style: groove
}

.card-body {
    padding: 0 !important;
    word-break: break-all !important
}

.respond-btn {
    width: 100% !important;
    max-width: 360px !important;
    display: inline-block !important;
    background: #00d1ff !important;
    font-weight: 700 !important;
    font-size: 20px !important;
    color: #fff !important;
    margin: 20px 0 !important;
    color: #fff !important;
    text-transform: uppercase !important;
    padding: 10px 0 !important;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !important;
    transition: .3s all ease-in-out !important;
    transform-origin: 50% 50% 50% !important;
    backface-visibility: hidden !important
}

@media(min-width: 576px) {
    .respond-btn {
        width: auto !important;
        padding: 10px 65px !important
    }
}

@media(min-width: 992px) {
    .respond-card {
        min-height: 480px
    }
    .respond-btn {
        width: 100% !important;
        padding: 10px 0px !important
    }
}

.nxreg-form-loader-ctr {
    width: 370px;
    height: 548px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto
}

.nxreg-form-loader-ctr .nxreg-form-loader {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border-left: 5px solid #ff066e;
    animation: rightrotate 900ms linear infinite
}

.nxreg-form-loader-ctr .nxreg-form-loader::before,
.nxreg-form-loader-ctr .nxreg-form-loader::after {
    content: "";
    width: 120px;
    height: 120px;
    display: block;
    position: absolute;
    top: calc(50% - 60px);
    left: calc(50% - 60px);
    border-radius: 50%;
    border-right: 4px solid #3853de;
    animation: leftrotate 900ms linear infinite
}

.nxreg-form-loader-ctr .nxreg-form-loader::after {
    width: 90px;
    height: 90px;
    top: calc(50% - 45px);
    left: calc(50% - 45px);
    border: 0;
    border-left: 3px solid #efc000;
    animation: none
}

@keyframes leftrotate {
    from {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(720deg)
    }
}

@keyframes rightrotate {
    from {
        transform: rotate(360deg)
    }
    to {
        transform: rotate(0deg)
    }
}

/*# sourceMappingURL=style.min.css.map */