/* 
Theme Name: 1800w Theme Child
Theme URI: #
Description: Custom theme.
Author: 1800w Team
Author URI: #
Template: 1800w-theme
Version: 1.0.0
Text Domain: 1800w-theme-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
body.no__scroll {
    overflow: hidden;
}
.elementor-widget-text-editor :is(.elementor-widget-container, .elementor-text-editor)>*:last-child {
    margin-bottom: 0;
}
.elementor-widget-text-editor .elementor-widget-container a {
    color: inherit;
}
.elementor-widget-icon .elementor-icon {
    display: block;
}
.elementor-widget-image {
    line-height: 0;
}
b, strong {
    font-weight: 500;
}
.elementor-location-header {
    position: sticky;
    top: 0;
    z-index: 999;
    transition: .35s;
}
.elementor-location-header.hidden__header {
    top: -500px !important;
}
.header__menu .elementor-nav-menu>li.accent-menu-item,
.header__menu .elementor-nav-menu>li.accent-menu-item a {
    background: var(--e-global-color-text) !important;
}
.header__menu .elementor-nav-menu>li.accent-menu-item a {
    color: #fff !important;
    font-weight: 500 !important;
}
.header__menu .elementor-nav-menu>li.accent-menu-item a:after {
    background: currentColor !important;
}
.menu_icon svg {
    transition: transform 0.3s ease;
}

.coverage_list.opened_list .menu_icon svg {
    transform: rotate(180deg);
}
@media(min-width:900px) {
.header__menu .elementor-nav-menu--layout-horizontal {
    height: 100%;
}
.header__menu .elementor-nav-menu--layout-horizontal .elementor-nav-menu>li {
    align-items: center;
}
.header__menu .elementor-nav-menu--layout-horizontal .elementor-nav-menu>li.accent-menu-item {
    margin-inline-start: var(--e-nav-menu-horizontal-menu-item-margin);
}
.header__menu .elementor-nav-menu--layout-horizontal .elementor-nav-menu>li.accent-menu-item a {
    margin: 0 30px;
}
}
@media(max-width:899px) {
.header__menu .elementor-menu-toggle {
    padding: 0;
}
.header__menu .elementor-menu-toggle svg {
    display: block;
}
.header__menu .elementor-menu-toggle .elementor-menu-toggle__icon--close svg {
    height: 24px;
    padding: 0 7px;
}
.header__menu .elementor-nav-menu--dropdown {
    box-shadow: inset 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .16);
}
.header__menu .elementor-menu-toggle.elementor-active:after {
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    top: 65px;
    left: 0;
    background: rgba(0, 0, 0, .6);
}
.header__menu .elementor-item.elementor-item-active {
    text-decoration: underline !important;
}
.coverage_list .current_item .menu_icon {
        width: 18px;
 }
.menu_icon svg
{
 width: 15px;
}
}

/* ------------------------------------------------------------------------------------------
Terms & Forms Layout Fix
--------------------------------------------------------------------------------------------- */
.gform_wrapper .gform_fields {
    gap: 20px;
}
.home__form .gform_wrapper .gform_fields {
    display: grid !important; /* Force layout context over Orbital theme flex */
    gap: 20px 50px !important;
    grid-template-areas:
            "name mess"
            "email mess"
            "phone mess"
            "recaptcha mess";
    grid-template-columns: repeat(2, 1fr) !important;
}

/* Clear sub-containers generated by newer Gravity Forms frameworks */
.home__form .gform_wrapper .gform_fields > * {
    grid-area: auto !important; 
}

.home__form .gform_wrapper .gform_fields .grid_name {
    grid-area: name !important;
}
.home__form .gform_wrapper .gform_fields .grid_email {
    grid-area: email !important;
}
.home__form .gform_wrapper .gform_fields .grid_phone {
    grid-area: phone !important;
}

.home__form .gform_wrapper .gform_fields .grid_name input{
    height: 60px !important;
}
.home__form .gform_wrapper .gform_fields .grid_email input{
    height: 60px !important;
}
.home__form .gform_wrapper .gform_fields .grid_phone input{
    height: 60px !important;
}

.gform_wrapper .gform_fields .gfield.gfield--type-consent{
    font-family: "Gotham", sans-serif;
    font-size: 12px;
    line-height: 15px;
    font-weight: 400;
    color: #fff;
}
.home__form .gform_wrapper .gform_fields .grid_recaptcha {
    grid-area: recaptcha !important;
}

/* Ensure full span control over terms/checkbox rows if needed */
.home__form .gform_wrapper .gform_fields .smsoptin-form-container {
    grid-column: span 2 !important;
}

.gform_wrapper .gform_fields .gfield.gfield--type-consent .ginput_container label {
    margin-top: -10px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #fff;
}
.gform_wrapper .gform_fields .gfield.gfield--type-consent input {
    display: none;
}
.gform_wrapper .gform_fields .gfield.gfield--type-consent input ~ label:before {
    content: '';
    width: 21px;
    height: 21px;
    display: block;
    background-image: url(icon/check.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #707070;
    transition: .5s;
}
.gform_wrapper .gform_fields .gfield.gfield--type-consent input:checked~label:before {
    border-color: #B455A0;
    background-color: #B455A0;
}
.home__form .gform_wrapper .gform_fields .grid_mess {
    grid-area: mess !important;
}
.home__form .gform_wrapper .gfield textarea.large {
    min-block-size: auto !important;
}
.gform_wrapper .gfield_required {
    display: none !important;
}
.gform_wrapper .gfield input,
.gform_wrapper .gfield textarea {
    padding: 20px 15px !important;
    background: #fff !important;
    border-radius: 5px !important;
    border: none !important;
    font-family: "Gotham", sans-serif !important;
    font-size: 18px !important;
    line-height: 20px !important;
    font-weight: 400 !important;
    color: #000 !important;
    outline: none !important;
}
.gform_wrapper .gfield textarea,
.gform_wrapper .gfield textarea.large {
    resize: none !important;
    display: block !important;
    height: 220px !important;
}
.gform_wrapper .gfield input::placeholder,
.gform_wrapper .gfield textarea::placeholder {
    color: #000 !important;
    opacity: 1 !important;
}
.gform_wrapper .gfield_description {
    padding-top: 10px;
    font-family: "Gotham", sans-serif;
    font-size: 12px;
    line-height: 15px;
    font-weight: 400;
    font-style: italic;
    color: #fff;
}
.gform_wrapper .gform_footer {
    padding: 0;
    margin-top: 34px;
}
.gform_wrapper .gform_footer input {
    margin: 0 !important;
    width: 200px !important;
    padding: 16px 20px !important;
    background-color: #fff !important;
    border-radius: 30px !important;
    border: 3px solid #FFF !important;
    font-family: "Gotham", sans-serif !important;
    font-size: 24px !important;
    line-height: 28px !important;
    font-weight: 500 !important;
    text-align: center !important;
    color: #144880 !important;
    transition: .35s !important;
}
.gform_wrapper .gform_footer input:hover {
    background-color: #144880 !important;
    color: #fff !important;
    border: 3px solid #FFF !important;
}
.gform_validation_errors {
    display: none;
}
.gform_wrapper .gfield_validation_message {
    background: no-repeat !important;
    border: none !important;
    padding: 0 !important;
    color: #c02b0a !important;
}
.gform_confirmation_message {
    font-family: "Gotham", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: #fff;
}
.form_htm_desc {
    margin-top: 16px;
    font-family: "Gotham", sans-serif;
    font-size: 14px;
    line-height: 18px;
    color: #fff;
    max-width: 100%;
}
.form_htm_desc > *:last-child {
    margin-bottom: 0;
}
.form_htm_desc a {
    color: #FFF;
    text-decoration: underline;
}
.search__icon input {
    background-image: url(./icon/search-icon.svg) !important;
    background-repeat: no-repeat !important;
    background-position: center right 12px !important;
    background-size: 18px !important;
    padding-right: 32px !important;
}

@media(max-width:899px) {
.gform_wrapper .gform_fields {
    gap: 15px;
}
.home__form .gform_wrapper .gform_fields {
    grid-template-columns: 1fr !important;
    grid-template-areas:
            "name"
            "email"
            "phone"
            "mess"
            "recaptcha" !important;
    gap: 15px !important;
}
.home__form .gform_wrapper .gform_fields .smsoptin-form-container {
    grid-column: span 1 !important;
}
.home__form .gform_wrapper .gform_fields .grid_recaptcha {
    margin-top: -20px;
}
.gform_wrapper .gfield input,
.gform_wrapper .gfield textarea {
    padding: 16px 15px !important;
    font-size: 16px !important;
    line-height: 18px !important;
}
.gform_wrapper .gfield textarea,
.gform_wrapper .gfield textarea.large {
    height: 310px !important;
}
.gform_wrapper .gfield_description {
    text-align: right;
}
.gform_wrapper .gform_footer {
    margin-top: 30px;
}
.gform_wrapper .gform_footer input {
    width: 150px !important;
    padding: 12px !important;
    font-size: 18px !important;
    line-height: 21px !important;
}
.form_htm_desc {
    margin-top: 0;
    line-height: 24px;
}
.search__icon input {
    background-image: none !important;
}
}


/* ------------------------------------------------------------------------------------------
Forms - SMS Opt-In Styling (Fixed Clickable Area Bug)
--------------------------------------------------------------------------------------------- */
/* Target the complete field fieldset wrapper */
.gform_wrapper .gfield.smsoptin-form-container {
    background-color: #fff !important;
    border-radius: 10px !important;
    padding: 15px 10px 0 15px !important;
    box-sizing: border-box !important;
    position: relative !important;
}

/* Flex container containing the columns */
.gform_wrapper .gfield.smsoptin-form-container > div {
    display: flex !important;
    align-items: flex-start !important;
    gap: 15px !important;
    flex-direction: row !important;
    width: 100% !important;
}

/* Set field options area column layout structure */
.gform_wrapper .gfield.smsoptin-form-container .ginput_container_checkbox {
    flex-shrink: 0 !important;
    z-index: 2 !important;
}

/* Explicitly hide the root Legend and native inline field labels */
.gform_wrapper .gfield.smsoptin-form-container legend.gfield_label,
.gform_wrapper .gfield.smsoptin-form-container .gchoice label {
    display: none !important;
}

/* Custom Checkbox Design matching image_eb2305.png */
.gform_wrapper .gfield.smsoptin-form-container input[type="checkbox"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    width: 21px !important;
    height: 21px !important;
    background-color: #fff !important;
    border: 1px solid #707070 !important;
    border-radius: 5px !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease, border-color 0.3s ease !important;
    margin: 3px 0 0 0 !important;
    display: block !important;
}

.gform_wrapper .gfield.smsoptin-form-container input[type="checkbox"]:checked {
    border-color: #B455A0 !important;
    background-color: #B455A0 !important;
    background-image: url(icon/check.svg) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 12px !important;
}

/* Format the custom notes layout container to wrap naturally */
.gform_wrapper .gfield.smsoptin-form-container .gfield_description {
/*     padding-bottom: 10px !important; */
    margin-bottom: -10px !important;
	margin-top:2px !important;
    text-align: left !important;
    flex-grow: 1 !important;
}

/* Direct style overrides for the custom text container tag */
.gform_wrapper .gfield.smsoptin-form-container label.smsoptin-notes {
    font-family: "Gotham", sans-serif !important;
    font-size: 13px !important;
    line-height: 20px !important;
    font-weight: 400 !important;
    font-style: italic !important;
    color: #000 !important;
    display: block !important;
    margin: 0 !important;
    /* Allows click selections to cleanly pass right through the label surface to elements below */
    pointer-events: none !important; 
}

/* Re-enable pointer interactions explicitly for anchor elements inside the description text */
.gform_wrapper .gfield.smsoptin-form-container label.smsoptin-notes a {
    color: #B455A0 !important;
    text-decoration: underline !important;
    pointer-events: auto !important; 
}

.smsoptin-form-container .ginput_container_checkbox .gfield-choice-input{
	padding:0px !important;
}

.gform-theme--framework input[type=checkbox]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::before{
	content: "" !important;
}

.gform-theme--api, .gform-theme--framework{
    --gf-form-spinner-fg-color: #fff !important;
    --gf-form-spinner-bg-color: rgba(var(--gf-color-primary-rgb), 0.1);
}


/* num_accordeon */
.num__tab {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.num__tab .item {
    display: flex;
    gap: 20px;
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
}
.num__tab .item .content {
    flex-grow: 1;
}
.num__tab .item .num, .num__tab .title {
    font-family: "Gotham", sans-serif;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    color: #20464e;
}
.num__tab .item .num {
    flex-shrink: 0;
}
.num__tab .title {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
}
.num__tab .title .icon {
    flex-shrink: 0;
    position: relative;
    color: #454545;
    width: 20px;
    height: 20px;
    margin: 2px 0;
    border: 2px solid currentColor;
    border-radius: 50%;
}
.num__tab .title .icon:before {
    content: '';
    width: 10.8px;
    height: 2px;
    border-radius: 6px;
    background-color: currentColor;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .5s;
}
.num__tab .title .icon:after {
    content: '';
    height: 10.8px;
    width: 2px;
    border-radius: 6px;
    background-color: currentColor;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .5s;
}
.num__tab .title .icon.active:after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.num__tab .text {
    display: none;
    padding-top: 10px;
    font-family: "Gotham", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    color: #000;
}
.num__tab .text > *:last-child {
    margin-bottom: 0;
}

/* ------------------------------------------------------------------------------------------
Coverage template
--------------------------------------------------------------------------------------------- */
.coverage_tpl .e-n-tabs-heading {
    background: #454545;
    padding: 0 35px;
}
.coverage_tpl .e-n-tab-title[aria-selected="true"] {
    text-decoration: underline !important;
	background: #454545 !important;
}

.coverage_tpl .e-n-tab-title:hover {
    background: #454545 !important;
}
.coverage_tpl .e-n-tab-title {
    position: relative;
}
.coverage_tpl .e-n-tab-title:not(:last-child):after {
    content: '';
    width: 1px;
    height: 14px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.coverage_tpl .e-n-accordion-item {
    border-bottom: 1px solid #979797;
}
.coverage_tpl .e-n-accordion-item-title .e-n-accordion-item-title-icon {
    transition: .5s;
}
.coverage_tpl .e-n-accordion-item-title[aria-expanded="true"] .e-n-accordion-item-title-icon {
    transform: rotate(180deg);
}
.coverage_tpl .e-n-accordion-item-title-header {
    gap: 10px;
    align-items: center;
}
.coverage_tpl .e-n-accordion-item-title-header:before {
    content: '';
    width: 15px;
    height: 15px;
    background: center/contain no-repeat url(/wp-content/uploads/2025/12/coverage-check.svg);
    flex-shrink: 0;
}
.coverage_tpl .e-n-accordion-item .elementor-widget-text-editor :is(strong, b) {
    font-weight: 700;
}
.coverage_list{
	min-height: 100%;
}
.loader{
    min-height: 100%;
    min-width: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 9;
    background: url(https://staging10.1800warranty.com/wp-content/uploads/2025/12/1800car-loader.gif) #ffffffb8 no-repeat 50% 60%;
    left: 0;
    font-family: "Gotham", sans-serif !important;
    background-size: 160px;
	display:none;
}
.coverage_list .header .dropdown {
    box-shadow: 0 8px 10px 0 rgba(0,0,0,.16);
    position: absolute;
    top: 66px;
    left: 0;
    width: 100%;
    z-index: 1;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: .5s;
}
.coverage_right .coverage_list .header .dropdown {
    left: unset;
    right: 0;
}
.coverage_list.opened_list .header .dropdown {
    opacity: 1;
    transform: scaleY(1);
}
.coverage_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 20px 23px;
    background-color: #fff;
    border-bottom: 1px solid #454545;
    transition: .5s;
    cursor: pointer;
}
.coverage_title:hover {
    background-color: #144880;
}
.coverage_title :is(.info, svg.arrow, .menu_icon) {
    display: none;
}
.coverage_title .title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Gotham", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 21px;
    color: #000;
    transition: .5s;
}
.coverage_title:hover .title {
    color: #fff;
}
.coverage_title .title svg {
    width: 23px;
    height: 23px;
    object-fit: contain;
    transition: .5s;
}
.coverage_title:hover .title svg {
    fill: #fff;
}
.coverage_title .title svg path {
    transition: .15s;
}
.coverage_title:hover .title svg path {
    fill: #144880;
}
.coverage_title .coverage_num {
    font-family: "Gotham", sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    line-height: 21px;
    color: #000;
    transition: .5s;
}
.coverage_title:hover .coverage_num {
    color: #fff;
}
.coverage_list .current_item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 19px 30px 18px 20px;
    background-color: #000;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    transition: .5s;
    position: relative;
}
.coverage_list .current_item .title {
    font-family: "Gotham", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    color: #fff;
}
.coverage_list .current_item .title svg, 
.coverage_list .current_item .coverage_num {
    display: none;
}
.coverage_list .current_item .info {
    width: 22px;
    height: 22px;
    padding: 2px;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
    z-index: 2;
}
.coverage_list .current_item .info .info_content {
    width: 350px;
    max-width: calc(100vw - 40px);
    padding: 20px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: -5px 0 20px 0 rgba(0,0,0,.25);
    position: absolute;
    top: -52px;
    left: 51px;
    font-family: "Gotham", sans-serif;
    font-size: 12px;
    line-height: 16px;
    color: #000;
    display: none;
}
.coverage_list .current_item .info .info_content .info_content_title {
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    color: #000 !important;
    margin-bottom: 17px;
}
.coverage_list .current_item .info .info_content :is(strong, b) {
    font-size: 16px;
    line-height: 20px;
}
.coverage_list .current_item .info .info_content > *:last-child {
    margin-bottom: 0;
}
.coverage_list .current_item .info svg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
}
.coverage_list .current_item svg.arrow {
    fill: #fff;
    width: 24px;
    height: auto;
    margin-left: auto;
}
.coverage_list .current_item .menu_icon {
    width: 20px;
    height: 20px;
    margin-left: auto;
    position: relative;
    cursor: pointer;
}
.coverage_list .current_item .menu_icon path{
	stroke:#ffffff;
}
.coverage_list .current_item .menu_icon span {
    width: 32px;
    height: 2px;
    border-radius: 2px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    transition: .5s;
    transform: translateX(-50%);
}
.coverage_list .current_item .menu_icon span:nth-child(1) {
    top: 0;
}
.coverage_list .current_item .menu_icon span:nth-child(2) {
    top: calc(50% - 1px);
}
.coverage_list .current_item .menu_icon span:nth-child(3) {
    bottom: 0;
}
.coverage_list .current_item .menu_icon.open span:nth-child(1) {
    width: 28px;
    bottom: unset;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.coverage_list .current_item .menu_icon.open span:nth-child(2) {
    width: 0;
}
.coverage_list .current_item .menu_icon.open span:nth-child(3) {
    width: 28px;
    bottom: unset;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}
.coverage_content {
    display: none;
}
.coverage_list > .content {
    transition: .5s;
}
.coverage_list.opened_list > .content {
    opacity: .5;
    pointer-events: none;
}
.coverage_list .e-n-accordion-item[id^="disable"] {
    pointer-events: none;
}
.coverage_list .e-n-accordion-item[id^="disable"] .e-n-accordion-item-title {
    background-color: #ECECEC !important;
    color: #979797 !important;
}
.coverage_tpl .e-n-accordion-item[id^="disable"] .e-n-accordion-item-title-header:before {
    background: center/contain no-repeat url(./icon/coverage-check-disable.svg);
}
.coverage_tpl .e-n-accordion-item[id^="disable"] .e-n-accordion-item-title-icon span>svg {
    fill: #979797;
}
.coverage_list .current_item .info .info_content svg.close {
    width: 20px;
    height: 20px;
    object-fit: contain;
    position: absolute;
    top: 10px;
    right: 10px;
    display: none;
}
.coverage_list{
min-height:500px;	
}
@media(max-width:1199px) {
.coverage_list .current_item .info .info_content {
    top: calc(100% + 16px);
    left: -64px;
}
.coverage_list .current_item .info .info_content .info_content_title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 15px;
}
}
@media(max-width:899px) {
.coverage_tpl .e-n-tabs-heading {
    padding: 0 25px;
}
.coverage_tpl .e-n-tab-title[aria-selected="true"] {
    font-weight: 700;
}
.coverage_tpl .e-n-tab-title:not(:last-child):after {
    height: 9px;
}
.coverage_tpl .e-n-accordion-item-title-header {
    gap: 8px;
}
.coverage_tpl .e-n-accordion-item-title-header:before {
    width: 12px;
    height: 12px;
}
.coverage_list .current_item {
    border-top-left-radius: 0;
    gap: 5px;
    padding: 7px 10px 8px 20px;
    height: 42px;
	border-top-left-radius: 0;
}
 #coverage_right .coverage_list .current_item {
        border-top-left-radius: 15px;
		border-top-right-radius: 0;
	}	
.coverage_right .coverage_list .current_item {
    border-top-left-radius: 15px;
    border-top-right-radius: 0;
}	
.coverage_list .current_item .title {
    font-size: 16px;
    line-height: 19px;
}
.coverage_list .current_item svg.arrow {
    width: 19px;
}
.coverage_list .header .dropdown {
    top: 42px;
}
.coverage_title {
    padding: 17px 20px 18px;
}
.coverage_title .title {
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
}
.coverage_title .title svg {
    width: 15px;
    height: 15px;
}
.coverage_title .coverage_num {
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
}
.coverage_list .current_item .info {
    width: 27px;
    height: 27px;
    padding: 7px;
}
.coverage_list .current_item .info .info_content svg.close {
    display: block;
}
.coverage_list .current_item .menu_icon {
    width: 18px;
    height: 11px;
}
.coverage_list .current_item .menu_icon span {
    width: 18px;
    height: 1px;
}
.coverage_list .current_item .menu_icon span:nth-child(2) {
    top: calc(50% - .5px);
}
.coverage_list .current_item .menu_icon.open span:nth-child(1), 
.coverage_list .current_item .menu_icon.open span:nth-child(3) {
    width: 14px;
}
}
@media(max-width:799px) {
.coverage_list .current_item .info {
    position: unset;
}
.coverage_list .current_item .info .info_content {
    top: 50px;
    left: 20px;
}
.coverage_right .coverage_list .current_item .info .info_content {
    left: unset;
    right: 20px;
}
}
@media(max-width:599px) {
.coverage_list .header .dropdown {
    width: 100vw;
}
.coverage_list.disable_list {
    opacity: .5;
    pointer-events: none;
}
}

/* custom form */
.custom_form .grid_wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.custom_form .grid_wrapper .col-1-1 {
    grid-column: span 4;
}
.custom_form .grid_wrapper .col-1-2 {
    grid-column: span 2;
}
.custom_form .grid_wrapper .col-1-4 {
    grid-column: span 1;
}
.custom_form .grid_wrapper :is(input, select) {
    outline: none !important;
    padding: 15px 14px 14px;
    border-radius: 10px;
    border: 1px solid #454545;
    background-color: #fff;
    font-family: "Gotham", Sans-serif;
    font-size: 16px;
    line-height: 19px;
    font-weight: 400;
    color: #000;
}
.custom_form .grid_wrapper :is(input, select)::placeholder {
    color: #000 !important;
}
.custom_form .grid_wrapper select {
    appearance: none;
    padding-right: 25px;
    background: center right 9px/12px no-repeat url(./icon/select_arrow.svg), #fff;
}
.custom_form .grid_wrapper input.search_icon {
    padding-right: 30px;
    background: center right 9px/18px no-repeat url(./icon/search-icon.svg), #fff;
}
.custom_form .description_input {
    margin: 5px 0 0;
    font-family: "Gotham", Sans-serif;
    font-size: 9px;
    line-height: 11px;
    font-weight: 400;
    font-style: italic;
    color: #fff;
}
.custom_form .form_description {
    margin-top: 24px;
    font-family: "Gotham", Sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #fff;
}
.custom_form .form_description a {
    color: #FFF;
    text-decoration: underline;
}
.custom_form .form_description > * {
    margin: 0 0 14px;
}
.custom_form .form_description>*:last-child {
    margin-bottom: 0;
}
.custom_form .form_submit {
    margin-top: 39px;
}
.custom_form .form_submit input {
    width: 215px;
    padding: 12px 20px;
    border-radius: 23px;
    border: none;
    background-color: #fff;
    font-family: "Gotham", Sans-serif;
    font-size: 18px;
    line-height: 21px;
    font-weight: 500;
    text-align: center;
    color: #000;
    transition: .5s;
}
.custom_form .form_submit input:hover {
    background-color: #B455A0;
    color: #fff;
}

/* faq */
.elementor-search-form__submit i {
    display: none;
}
.elementor-search-form__submit {
    background: center/18px no-repeat url(./icon/search-icon.svg) !important;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}


 /* Custom css start */
            .header-navlink-container {
                padding-right: 0;
            }

            .elementor-menu-toggle__icon--open svg line {
                stroke: #144880 !important;
                /* Blue for hamburger */
            }

            .elementor-menu-toggle__icon--close svg line {
                stroke: #144880 !important;
                /* Red for X icon */
            }

            .profit_contract_mob, .zero_invsm_mob, .streams_mob, .superior_slide_mob_container .branded_web, .superior_slide_mob_container .marketting_material {
                display: block;
            }

            /* get a quote, cancel form, file a claim */
            #gform_7 input::placeholder, #gform_9 input::placeholder, #quotemsform input::placeholder {
                color: #144880 !important;
            }

            #gform_7 input::-webkit-input-placeholder, #gform_9 input::-webkit-input-placeholder #quotemsform input::-webkit-input-placeholder {
                color: #144880 !important;
            }

            #gform_7 input::-moz-placeholder, #gform_9 input::-moz-placeholder, #quotemsform input::-moz-placeholder {
                color: #144880 !important;
                opacity: 1 !important;
            }

            #gform_7 input:-ms-input-placeholder, #gform_9 input:-ms-input-placeholder, #quotemsform input:-ms-input-placeholder {
                color: #144880 !important;
            }

            #gform_7 input:-moz-placeholder, #gform_9 input:-moz-placeholder, #quotemsform input:-moz-placeholder {
                color: #144880 !important;
                opacity: 1 !important;
            }

            form#quotemsform .input-container .quote-control::placeholder {
                color: #144880 !important;
                opacity: 1 !important;
            }

            button.swal2-confirm.swal2-styled:focus, button.swal2-confirm.swal2-styled:focus-visible {
                outline: none !important;
                box-shadow: none !important;
            }

            input#paymentinfull:hover, input#paymentplanmonthly:hover {
                background: #144880 !important;
            }

            .current_item {
                background-color: #144880 !important;
            }

            .coverage_title .title svg circle {
                fill: #B455A0 !important;
            }

            .coverage_title:hover .title svg circle {
                fill: #ffffff !important;
            }

            #paymentinfull:hover::after, #paymentplanmonthly:hover::after {
                content: url(/wp-content/uploads/2025/02/Path-4.svg);
                width: 12px;
                height: 12px;
                margin: auto;
                top: -6px;
                left: 4px;
                position: relative;
            }

            input#paymentinfull:hover #paymentinfull {
                content: url(/wp-content/uploads/2025/02/Path-4.svg);
                width: 24px;
                height: 26px;
                border-radius: 50%;
                position: absolute;
                top: 50%;
                left: 95%;
                transform: translate(-50%, -50%);
                max-width: 52px !important;
            }

            /* input#paymentinfull:hover, input#paymentplanmonthly:hover {
    border-color: #C29F5A !important;
} */
            .gfield--type-phone.gfield_error .validation_message {
                background: no-repeat !important;
                border: none !important;
                padding: 0px !important;
                color: #c02b0a !important;
            }

            .heading-cancel-form .elementor-heading-title, .heading-reachout-form .elementor-heading-title, .contactus-heading .elementor-heading-title {
                font-size: 40px !important;
            }

            .homepage_questionform form #gform_fields_5 {
                gap: 20px 0;
            }

            .sw-contactus-form form .gform_footer {
                margin-top: 30px !important;
            }

            .have_a_question_disclaimer .ginput_container_text, .contact_us_disclaimer_text .ginput_container_text, .contact_our_team_disclaimer_text .ginput_container {
                display: none;
            }

            .contact_us_disclaimer_text .gfield_description {
                text-align: left !important;
            }

            /* Custom css end -------------------------------------------------------------- */
            .header_quotebtn #getaquote-btn .elementor-button {
                border: none !important;
            }

            .header_quotebtn #getaquote-btn .elementor-button:hover {
                color: #FFF !important;
                background-color: #B455A0 !important;
                border: none !important;
                font-weight: 500 !important;
            }

            /* Home page start */
            /* .homepage_questionform .rc-anchor-logo-portrait {
    display: none !important;
} */
            #gform_5 .ginput_recaptcha {
                background: transparent;
                padding: 8px;
                border-radius: 6px;
            }

            /* .homepage_questionform .recaptcha-checkbox-border {
    border-radius: 5px !important;
} */
            .hero_main_heading .elementor-heading-title, .sub_heading_text .elementor-heading-title, .coverage_starts_box_heading .elementor-heading-title, .Why_choose_compare_heading .elementor-heading-title {
                font-family: "Gotham", sans-serif !important;
                font-weight: 700 !important;
                font-style: normal !important;
                text-transform: none !important;
                text-decoration: none !important;
                letter-spacing: 0 !important;
            }

            .hero_main_bodytext p, .stay_safe_bodytext p, .coverage_starts_bodytext p, .coverage_starts_box_heading_bodytext p, .Why_choose_bodytext p, .Free_ID_bodytext p {
                font-family: "Gotham", sans-serif !important;
                font-weight: 400 !important;
                font-style: normal !important;
                text-transform: none !important;
                text-decoration: none !important;
                letter-spacing: 0 !important;
            }

            /*HEADINGS*/
            /* .hero_main_heading .elementor-heading-title {
    font-size: 90px !important;
    line-height: 100px !important;
} */
            .sub_heading_text .elementor-heading-title {
                font-size: 2.5rem !important;
                line-height: 45px !important;
            }

            .coverage_starts_box_heading .elementor-heading-title {
                font-size: 1.375rem !important;
                line-height: 28px !important;
            }

            .Why_choose_compare_heading .elementor-heading-title {
                font-size: 1.5rem !important;
                line-height: 24px !important;
            }

            .why1800_sub_heading_text .elementor-heading-title {
                font-size: 2.5rem !important;
                line-height: 40px !important;
            }

            .hero_main_bodytext p {
                font-size: 1.5rem !important;
                font-weight: 400 !important;
                line-height: 30px !important;
            }

            .stay_safe_bodytext p {
                font-size: 1.125rem !important;
                line-height: 34px !important;
            }

            .coverage_starts_bodytext p {
                font-size: 20px !important;
                line-height: 34px !important;
            }

            .coverage_starts_box_heading_bodytext p {
                font-size: 18px !important;
                line-height: 26px !important;
            }

            .Why_choose_bodytext p {
                font-size: 1.25rem !important;
                line-height: 34px !important;
            }

            .Free_ID_bodytext p {
                font-size: 1.125rem !important;
                line-height: 34px !important;
            }

            .Why_choose_compare_heading_bodytext .elementor-icon-box-title>span {
                font-family: "Gotham", sans-serif !important;
                font-size: 1.125rem !important;
                font-weight: 400 !important;
                line-height: 24px !important;
            }

            .Why_choose_compare_cancel p {
                font-family: "Gotham", sans-serif !important;
                font-size: 0.75rem !important;
                font-weight: 300 !important;
                font-style: italic !important;
                line-height: 15px !important;
            }

            .Free_ID_cov_subhead p {
                font-family: "Gotham", sans-serif !important;
                font-size: 1.25rem !important;
                font-weight: 700 !important;
                line-height: 16px !important;
            }

            .Free_ID_cov_subhead_li ul li .elementor-icon-list-text {
                font-family: "Gotham", sans-serif !important;
                font-size: 18px !important;
                font-weight: 400 !important;
                line-height: 25px !important;
            }

            /* Home page end */
            /* Product page start*/
            .product_hero_heading, .reach_out_now, .post_sale, .maximize-text {
                display: block;
            }

            /* Product page end*/
            /* contact us page start*/
            .contact_form_container form .gform_body [name="input_1"], .contact_form_container form .gform_body [name="input_3"], .contact_form_container form .gform_body [name="input_4"] {
                padding: 18px 15px !important;
            }

            .contact_form_container form .gform_body [name="input_1"], .contact_form_container form .gform_body [name="input_3"], .contact_form_container form .gform_body [name="input_4"], .contact_form_container form .gform_body [name="input_5"] {
                border-radius: 10px !important
            }

            .contact_form_container form #validation_message_6_7 {
                text-align: left;
            }

            /* .contact_form_container form .elementor-widget-wp-widget-gform_widget .gform_wrapper.gravity-theme .gform_fields {
    gap: 10px !important;
} */
            .contact_form_container #gform_fields_6 {
                gap: 20px;
            }

            .contact_form_container form #validation_message_6_1, .contact_form_container form #validation_message_6_3, .contact_form_container form #validation_message_6_4, .contact_form_container form #validation_message_6_4 .validation_message, .contact_form_container form #validation_message_6_7, .contact_form_container form .gfield_description.instruction.validation_message, .homepage_questionform form #validation_message_5_1, .homepage_questionform form #validation_message_5_3, .homepage_questionform form #validation_message_5_4, .homepage_questionform form #validation_message_5_5, .homepage_questionform form .gfield_description.instruction.validation_message, .homepage_questionform form #validation_message_5_9 {
                color: #FF8A80 !important;
            }

            .contact_form_container form .elementor-widget-wp-widget-gform_widget .gform_wrapper.gravity-theme .gfield input, .elementor-widget-wp-widget-gform_widget .gform_wrapper.gravity-theme .gfield textarea {
                font-size: 18px;
                line-height: 21px;
            }

            .gform_wrapper .gf_full_width.form_htm_desc {
                width: 100% !important;
                max-width: 100% !important;
            }

            /* contact us page end*/
            /* became a dealer start ------------------------------ */
            .simplestway_text {
                display: block;
            }

            .capitalize_no_vsc_imgbox1 .elementor-image-box-title .novsc_title, .expiring_imgbox2 .elementor-image-box-title .expiring_title, .Out_pocket_imgbox3 .elementor-image-box-title .outofpocket_title {
                display: block;
            }

            p.capitalize_no_vsc_desc, p.expiring__desc, p.Out_pocket_desc {
                margin: auto;
                font-size: 18px;
                font-weight: 400;
            }

            p.capitalize_no_vsc_desc {
                width: 100%;
                max-width: 320px;
            }

            p.expiring__desc {
                width: 100%;
                max-width: 290px;
            }

            p.Out_pocket_desc {
                width: 100%;
                max-width: 320px;
            }

            .capitalize_no_vsc_imgbox1 p.capitalize_no_vsc_desc:nth-of-type(3), .expiring_imgbox2 p.expiring__desc:nth-of-type(3), .Out_pocket_imgbox3 p.Out_pocket_desc:nth-of-type(3) {
                margin-top: 25px !important;
            }

            .capitalize_no_vsc_imgbox1 .elementor-image-box-title, .expiring_imgbox2 .elementor-image-box-title, .Out_pocket_imgbox3 .elementor-image-box-title {
                margin-top: 0;
            }

            .capitalize_no_vsc_imgbox1 .elementor-image-box-title, .expiring_imgbox2 .elementor-image-box-title, .Out_pocket_imgbox3 .elementor-image-box-title {
                margin-bottom: 20px;
            }

            .expiring_imgbox2 .elementor-image-box-title {
                margin-top: -9px;
            }

            .how_wedoit_subtitle {
                font-family: "Gotham", Sans-serif;
                font-size: 1.125rem;
                color: #B455A0;
                font-weight: 900;
                text-transform: uppercase;
            }

            /* became a dealer end ------------------------------ */
            /* Global Button style start*/
            /* Global Button style end*/
            /* home white button */
            .hero_section_getaquote_btn .elementor-button-link, .productpage_getaquote_btn .elementor-button-link, .contact_form_container form #gform_submit_button_6 {
                font-family: "Gotham", Sans-serif !important;
                font-size: 1.5rem !important;
                font-weight: 500 !important;
                text-transform: none !important;
                font-style: normal !important;
                text-decoration: none !important;
                line-height: 29px !important;
                letter-spacing: 0px !important;
                background-color: #FFFFFF00 !important;
                transition-duration: 0.5s !important;
                border-style: solid !important;
                border-width: 3px !important;
                border-radius: 30px !important;
                padding: 13px 10px 12px 10px !important;
                width: 200px !important;
            }

            .hero_section_getaquote_btn .elementor-button-link:hover, .productpage_getaquote_btn .elementor-button-link:hover, .contact_form_container form #gform_submit_button_6:hover {
                color: #000 !important;
                background-color: #FFF !important;
                border-color: #FFF !important;
            }

            /* vehicle button */
            /* .quote-form-home-reachoutform .homepage_questionform .elementor-widget-wp-widget-gform_widget .gform_wrapper.gravity-theme .gform_footer input */
            .quote-form-home-reachoutform .homepage_questionform .elementor-widget-wp-widget-gform_widget .gform_wrapper.gravity-theme .gform_footer input#gform_submit_button_5 {
                background-color: #fff !important;
                color: #144880 !important;
                border: 3px solid #FFF !important;
                margin: 0;
                width: 200px;
                padding: 16px 20px;
                border-radius: 30px;
                font-family: "Gotham", sans-serif;
                font-size: 1.5rem;
                line-height: 28px;
                font-weight: 500;
                text-align: center;
                transition: .35s;
            }

            .quote-form-home-reachoutform .homepage_questionform .elementor-widget-wp-widget-gform_widget .gform_wrapper.gravity-theme .gform_footer input#gform_submit_button_5:hover {
                background-color: #144880;
                color: #fff;
                border: 3px solid #FFF;
            }

            .reachout-form .home__form.elementor-widget-wp-widget-gform_widget .gform_wrapper.gravity-theme .gform_fields {
                gap: 10px 0px;
            }

            .month-text {
                font-size: 1.875rem;
            }

            .dollar, .coverage-rate {
                font-size: 1.25rem;
            }

            .slash-size {
                font-size: 1.875rem;
            }

            /* footer section */
            .footer__menu .elementor-icon-list-item a {
                text-decoration: none;
            }

            .footer__menu .elementor-icon-list-item:hover .elementor-icon-list-text, .footer_navlink .elementor-icon-list-item a:hover .elementor-icon-list-text {
                text-decoration: underline !important;
            }

            .footer_navlink ul li:hover .elementor-icon-list-text {
                text-decoration: underline;
            }

            /* footer section end */
            /* 	@media screen and (min-width: 1201px){
    .monthto-month-subs {
        margin-left: 59px;
    }

    .coverage-for-older-high {
        margin-left: 57px;
    }

    .speedy-claims {
        margin-left: 57px;
    }

    .tie-back-sevice {
        margin-left: 57px;
    }

    .bills-handled-directpay {
        margin-left: 56px;
    }

    .complimentary-idtheft {
        margin-left: 55px;
    }

    .dedicated-team {
        margin-left: 49px;
    }
} */
            @media screen and (min-width: 900px) and (max-width: 1199px) {
                .contact_form_container {
                    padding-left: 0;
                }

                .contact_form_container form .gform-body>div {
                    gap: 20px 20px !important;
                    width: 100% !important;
                }

                .Out_pocket_imgbox3 {
                    grid-column: 1 / -1;
                    justify-self: center;
                    max-width: 59%!important;
                }
            }

            @media screen and (min-width: 1025px) and (max-width: 1200px) {
                .monthto-month-subs {
                    margin-left: 50px;
                }

                .coverage-for-older-high {
                    margin-left: 49px;
                }

                .speedy-claims {
                    margin-left: 50px;
                }

                .tie-back-sevice {
                    margin-left: 50px;
                }

                .bills-handled-directpay {
                    margin-left: 50px;
                }

                .complimentary-idtheft {
                    margin-left: 50px;
                }

                .dedicated-team {
                    margin-left: 45px;
                }
            }

            @media screen and (min-width: 950px) and (max-width: 1176px) {
                #gasolineengine-p-width {
                    width: 140px !important;
                }

                #gasolineengine-p-width-2 {
                    width: 170px !important;
                }
            }

            @media screen and (min-width: 900px) {
                .header-getaquote-btn {
                    display: block !important;
                }

                .home__form #input_5_1, .home__form #input_5_3, .home__form #field_5_4 {
                    width: 90%;
                }
            }

            @media screen and (min-width: 900px) and (max-width: 1200px) {
                .coverage_container_box {
                    display: grid !important;
                    grid-template-columns: repeat(auto-fit, 370px) !important;
                    justify-content: center !important;
                    gap: 24px;
                }

                /*     .four_level_box,
    .low_monthly_box,
    .pay_your_box,
    .roadside_ass_box,
    .tire_wheel_box,
    .id_theft_box {
        width: 370px;
    }
 */
                /*     .coverage_container_box {
        justify-items: center;
        gap: 38px 0px;
        width: 85%;       
    } */
            }

            /* @media screen and (min-width: 768px) and (max-width: 1199px) {
    .sub_heading_text .elementor-heading-title {
        font-size: 32px !important;
        line-height: 40px !important;
    }
    .hero_main_heading .elementor-heading-title {
        font-size: 40px !important;
        line-height: 55px !important;
    }

}
 */
            @media screen and (min-width: 900px) and (max-width: 1100px) {
                .direct_consumer_container .e-con-inner {
                    display: flex;
                    flex-direction: column-reverse;
                }

                .direct_consumer_img {
                    max-width: 450px !important;
                }

                .expiring_imgbox2 p.expiring__desc {
                    max-width: 290px;
                }

                .capitalize_no_vsc_imgbox1 p.capitalize_no_vsc_desc, .Out_pocket_imgbox3 p.Out_pocket_desc {
                    max-width: 320px;
                }
            }

            @media screen and (min-width: 900px) and (max-width: 1090px) {
                .product_idtheft_subtitle .elementor-heading-title {
                    min-height: 89px;
                }

                .product_emr_roadass_subtitle .elementor-heading-title {
                    min-height: 90px;
                }

                .product_idtheft_subtitle_p p, .product_emr_roadass_subtitle_p p {
                    min-height: 72px;
                }
            }

            @media screen and (min-width: 900px) and (max-width: 1024px) {
                .monthto-month-subs .elementor-image-box-title, .coverage-for-older-high .elementor-image-box-title, .speedy-claims .elementor-image-box-title, .tie-back-sevice .elementor-image-box-title, .bills-handled-directpay .elementor-image-box-title, .complimentary-idtheft .elementor-image-box-title, .dedicated-team .elementor-image-box-title {
                    font-size: 1.8rem !important;
                    line-height: 35px !important;
                }

                .monthto-month-subs {
                    margin-left: 40px;
                }

                .coverage-for-older-high {
                    margin-left: 41px;
                }

                .speedy-claims {
                    margin-left: 33px;
                }

                .tie-back-sevice {
                    margin-left: 35px;
                }

                .bills-handled-directpay {
                    margin-left: 44px;
                }

                .complimentary-idtheft {
                    margin-left: 45px;
                }

                .dedicated-team {
                    margin-left: 35px;
                }
            }

            @media screen and (min-width: 768px) and (max-width: 949px) {
                #gasolineengine-p-width {
                    width: 140px !important;
                }

                #gasolineengine-p-width-2 {
                    width: 140px !important;
                }
            }

            @media screen and (max-width: 899px) {
                .elementor-element.elementor-element-4947f64 {
                    padding-right: 0;
                    padding-left: 0;
                }

                .coverage-list-rightcontainer .coverage_list .current_item {
                    border-top-left-radius: 15px;
                    border-top-right-radius: 0;
                }

                .provider-features-heading>div {
                    background-color: #144880 !important;
                }

                .hero_main_bodytext p {
                    font-size: 1.125rem !important;
                    line-height: 23px !important;
                }

                .sub_heading_text .elementor-heading-title {
                    font-size: 1.5rem !important;
                    line-height: 30px !important;
                }

                .stay_safe_bodytext p, .coverage_starts_bodytext p, .Why_choose_bodytext p, .Free_ID_bodytext p {
                    line-height: 28px !important;
                }

                .why1800_sub_heading_text .elementor-heading-title {
                    font-size: 1.75rem !important;
                    line-height: 35px !important;
                }

                .contact_form_container {
                    padding-left: 0;
                }

                .contact_form_container form .gform-body>div {
                    gap: 20px 20px !important;
                    width: 100% !important;
                }

                p.capitalize_no_vsc_desc, p.expiring__desc, p.Out_pocket_desc {
                    font-size: 14px;
                }

                .the_fi_team {
                    display: flex;
                    flex-direction: column-reverse;
                }

                .contact_our_team_disclaimer_text .gfield_description, .have_a_question_disclaimer .gfield_description {
                    text-align: left !important;
                }

                .Free_ID_cov_subhead_li ul li .elementor-icon-list-text {
                    font-size: 15px !important;
                }
            }

            /* @media screen and (max-width: 899px) {
	.homepage_questionform textarea {
			width: 95% !important;
	}
}
 */
            @media screen and (min-width: 768px) and (max-width: 899px) {
                .simplestway_text {
                    display: block;
                }
            }

            @media screen and (min-width: 600px) and (max-width: 899px) {
                .contact_form_container form .gform-body>div {
                    gap: 20px 20px !important;
                    width: 80% !important;
                }

                .how_we_doit_img {
                    display: block;
                    margin-left: auto;
                    margin-right: auto;
                }
            }

            @media screen and (max-width: 767px) {
                .gap-p-container-mob, .gap-p-container-mob .e-con-inner {
                    gap: 0;
                }

                .heading-cancel-form .elementor-heading-title, .heading-reachout-form .elementor-heading-title, .contactus-heading .elementor-heading-title {
                    font-size: 25px !important;
                }

                .contactus-heading .elementor-heading-title {
                    line-height: 5px !important;
                }

                .tire-wheel-section-image {
                    align-self: start;
                }

                .tire-wheel-section-subheading .elementor-heading-title {
                    text-align: left;
                }

                /*     .hero_main_heading .elementor-heading-title {
        font-size: 32px !important;
        line-height: 40px !important;
    } */
                /*     .sub_heading_text .elementor-heading-title {
        font-size: 26px !important;
        line-height: 32px !important;
    } */
                /* .hero_main_bodytext p {
    font-size: 18px !important;
} */
                .hero_section_getaquote_btn .elementor-button-link, .productpage_getaquote_btn .elementor-button-link, .primary_get_a_quote_btn a, .productpage_getaquote_btn .elementor-button-link, .contact_form_container form #gform_submit_button_6 {
                    font-size: 18px !important;
                    padding: 9px 0px 8px 0px !important;
                    width: 160px !important;
                }

                .quote-form-home-reachoutform .elementor-heading-title {
                    line-height: 28px !important;
                }
            }

            @media screen and (min-width: 520px) and (max-width: 767px) {
                .simplestway_text {
                    display: block;
                }

                .swiper-horizontal, .white_label_slide2 {
                    width: 100%;
                    max-width: 500px;
                }
            }

            @media screen and (max-width: 599px) {
                .offer_valuable_text, .for_dealers, .post_sale {
                    display: inline;
                }
            }

            @media screen and (max-width: 519px) {
                .simplestway_text {
                    display: inline;
                }

                .communication_success, .marketting_material, .branded_web {
                    display: block;
                }
            }



textarea#g-recaptcha-response, textarea#g-recaptcha-response-1{
	    width: 250px;
    height: 40px;
    border: 1px solid rgb(193, 193, 193);
    margin: 10px 25px;
    padding: 0px;
    resize: none;
    display: none !important;
}