/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

*, *::after, *::before {
    box-sizing: border-box;
}

/* Rest Ends */

:root {
    --red: #c8112f;
    --blue: #274ba0;
    --link: #4285f4;
    --orange: #ffad16;
    --gray: #666666;
    --green: rgb(36, 105, 36);
    --primary: var(--blue);
    --space-0: 0;
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 1rem;
    --space-4: 1.5rem;
    --space-5: 3rem;
}


body {
    display: flex;
    flex-direction: column;
}

html, body {
    min-height: 100%;
    height: 100%;
}

body, input, textarea {
    font-family: "Lexend", sans-serif;
    font-size: 18px;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

a {
    text-decoration: none;
    color: var(--link);
}

h6 {
    font-size: 20px;
}

h5 {
    font-size: 24px;
}

h4 {
    font-size: 28px;
}

h3 {
    font-size: 32px;
}

h2 {
    font-size: 36px;
}

h1 {
    font-size: 40px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
}

.container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding-left: 15px; 
    padding-right: 15px; 
}

.container-lg {
    max-width: 1000px;
    justify-items: center;
}

.flex-box, .single-row {
    display: flex;
}

.align-start {
    align-items: flex-start;
}

.center-content {
    justify-content: center;
}

.end-content {
    justify-content: end;
}

.single-row {
    flex-wrap: wrap;
}

.text-orange {
    color: var(--primary);
}

.text-center {
    text-align: center;
}

.heading {
    font-size: 32px;
    margin-bottom: 40px;
}

.heading small {
    display: block;
    font-weight: 400;
    font-size: 20px;
    margin-left: 5px;
}

.heading + p {
    color: #75787c;
}

label {
    cursor: pointer;
}

.bottom-space {
    margin-bottom: 20px;
}

.top-space {
    margin-top: 20px;
}

dl {
    display: flex;
    flex-wrap: wrap;
}

dl dt {
    flex-basis: 66%;
    margin-bottom: 20px;
}

dl dd {
    flex-basis: 33%;
    margin-left: auto;
    overflow: hidden;
    overflow-wrap: break-word;
    margin-bottom: 20px;
}

hr {
    border: 0;
    border-top: 1px solid #ccc;
}

strong {
    font-weight: 700;
}

img {
    max-width: 100%;
}



/* All sides */
.p-0 {
    padding: var(--space-0);
}

.p-1 {
    padding: var(--space-1);
}

.p-2 {
    padding: var(--space-2);
}

.p-3 {
    padding: var(--space-3);
}

.p-4 {
    padding: var(--space-4);
}

.p-5 {
    padding: var(--space-5);
}

/* X axis */
.px-0 {
    padding-left: var(--space-0);
    padding-right: var(--space-0);
}

.px-1 {
    padding-left: var(--space-1);
    padding-right: var(--space-1);
}

.px-2 {
    padding-left: var(--space-2);
    padding-right: var(--space-2);
}

.px-3 {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
}

.px-4 {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
}

.px-5 {
    padding-left: var(--space-5);
    padding-right: var(--space-5);
}

/* Y axis */
.py-0 {
    padding-top: var(--space-0);
    padding-bottom: var(--space-0);
}

.py-1 {
    padding-top: var(--space-1);
    padding-bottom: var(--space-1);
}

.py-2 {
    padding-top: var(--space-2);
    padding-bottom: var(--space-2);
}

.py-3 {
    padding-top: var(--space-3);
    padding-bottom: var(--space-3);
}

.py-4 {
    padding-top: var(--space-4);
    padding-bottom: var(--space-4);
}

.py-5 {
    padding-top: var(--space-5);
    padding-bottom: var(--space-5);
}

/* Padding Utilities */
.pt-0 {
    padding-top: var(--space-0);
}

.pt-1 {
    padding-top: var(--space-1);
}

.pt-2 {
    padding-top: var(--space-2);
}

.pt-3 {
    padding-top: var(--space-3);
}

.pt-4 {
    padding-top: var(--space-4);
}

.pt-5 {
    padding-top: var(--space-5);
}

.pb-0 {
    padding-bottom: var(--space-0);
}

.pb-1 {
    padding-bottom: var(--space-1);
}

pb-2 {
    padding-bottom: var(--space-2);
}

.pb-3 {
    padding-bottom: var(--space-3);
}

.pb-4 {
    padding-bottom: var(--space-4);
}

.pb-5 {
    padding-bottom: var(--space-5);
}

.ps-0 {
    padding-left: var(--space-0);
}

.ps-1 {
    padding-left: var(--space-1);
}

.ps-2 {
    padding-left: var(--space-2);
}

.ps-3 {
    padding-left: var(--space-3);
}

.ps-4 {
    padding-left: var(--space-4);
}

.ps-5 {
    padding-left: var(--space-5);
}

.pe-0 {
    padding-right: var(--space-0);
}

.pe-1 {
    padding-right: var(--space-1);
}

.pe-2 {
    padding-right: var(--space-2);
}

.pe-3 {
    padding-right: var(--space-3);
}

.pe-4 {
    padding-right: var(--space-4);
}

.pe-5 {
    padding-right: var(--space-5);
}

.mb-0 {
    margin-bottom: 0rem !important;
}

/* Header */

header {
    padding: 20px 0;
    background-color: #FFF;
    color: #000;
    box-shadow: 0px 0px 9px -1px #333;
}

header .container {
    max-width: 1200px;
}

header .tag-line {
    font-size: 20px;
    max-width: 350px;
    line-height: 26px;
    display: none;
}

header .tag-line span {
    font-size: 22px;
    display: block;
}

header a {
    text-decoration: none;
    color: #FFF;
}

header .single-row {
    justify-content: space-between;
    align-items: center;
    margin-left: -15px;
    margin-right: -15px;
    flex-wrap: nowrap;
    flex-direction: column-reverse;
}

header .single-row > * {
    padding-left: 15px;
    padding-right: 15px;
}

header h6 {
    max-width: 65px;
    margin-left: 5px;
    font-size: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

header h6 span {
    display: block;
    margin-bottom: 2px;
    font-weight: 200;
    font-size: 8px;
}

.header-right {
    justify-content: end;
    flex-basis: 50%;
}

.header-right img {
    width: 200px;
    align-self: center;
}

.process-steps-wrapper {
    max-width: 720px;
}

.process-steps {
    display: flex;
    position: relative;
    min-width: 100%;
}

main .process-steps {
    display: flex;
    margin-top: 20px;
    margin-bottom: 30px;
}

main .process-steps li a,
main .process-steps li.active.completed a {
    display: none;
}

main .process-steps li.active:not(:has(~ .active)) a {
    display: block;
}

main .process-steps li.completed:not(:has(~ .active)) a {
    display: block;
}

main .process-steps li::before {
    transition: ease background-color .3s;
}

main .process-steps li.active:not(.completed)::before {
    background-color: #FFF;
}

main .process-steps li.active a {
    display: block;
}

/* main .process-steps li.completed:first-child a {
    display: block;
} */

.process-steps a {
    color: #000;
    text-decoration: none;
}

header .process-steps a {
    color: #FFF;
}

header .process-steps {
    display: none;
}

.process-steps::after {
    content: "";
    display: block;
    width: calc(100% - (100% / 5));
    position: absolute;
    left: calc(20% - (50% / 5));
    top: 8px;
    background-color: var(--gray);
    height: 5px;
}

header .process-steps::after {
    width: calc(100% - (100% / 5) - 30px);
    left: calc(20% - (50% / 5) + 15px);
    background-color: #FFF;
}

.process-steps li::after {
    width: 0;
    content: "";
    position: absolute;
    left: -50%;
    height: 5px;
    top: 8px;
    z-index: 2;
    background: var(--primary);
    transition: cubic-bezier(0.65, 0.05, 0.36, 1) width .5s .3s;
}

.process-steps li.active::after {
    width: 100%;
}

.process-steps li:first-child.active::after {
    display: none;
}

/* 
.process-steps li.completed::after {
    background-color: var(--red);
}

.process-steps li.active::after {
    background-color: #FFF;
} */

.process-steps li::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-color: var(--gray);
    border-radius: 50%;
    margin: 0 auto 5px auto;
    position: relative;
    border-width: 0;
    border-color: var(--primary);
    border-style: solid;
    transition: cubic-bezier(0.075, 0.82, 0.165, 1) border .3s;
    z-index: 3;
}

header .process-steps li::before {
    background-color: #FFF;
}

.process-steps li.completed::before {
    background-color: var(--primary);
    z-index: 3;
}

.process-steps li.active::before {
    border-width: 2px;
    transition-delay: .7s;
}

.process-steps li {
    flex-grow: 1;
    width: calc(100% / 5);
    text-align: center;
    display: block;
    position: relative;
    width: 100%;
    font-size:16px;
}

.process-steps li a {
    display: block;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
    padding: 10px;
    font-size: 18px;
    display: block;
    border-radius: 5px;
    border: 1px solid #777;
    width: 100%;
}

/* Header Ends */

main {
    position: relative;
    padding: 20px 0;
    flex-grow: 1;
}

.animate {
    animation-timing-function: cubic-bezier(0.46, 0.03, 0.52, 0.96);
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-duration: 1s;
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-25%);
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.animate-fade-right {
    /* animation: 1s cubic-bezier(0.46, 0.03, 0.52, 0.96) 0s 1 slideInFromLeft; */
    animation-name: slideInFromLeft
}

.animate__animated{
    -webkit-animation-duration:1s;
    animation-duration:1s;
    -webkit-animation-duration:var(--animate-duration);
    animation-duration:var(--animate-duration);
    -webkit-animation-fill-mode:both;
    animation-fill-mode:both
}

.welcome {
    text-align: center;
}

.welcome h1 span {
    display: inline-block;
}

.button-panel {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
    /* flex-direction: column-reverse; */
}

.button-panel .field-checkbox.custom {
    flex-basis: 100%;
}
 
[data-slide="1"] .button-panel {
    flex-direction: column;
}

.button-panel .return + .start {
    margin-left: 10px;
}

.button-panel .button.return:not(.button-bordered):not(.button-solid) {
    color: var(--gray);
    font-weight: 500;
}

.button-panel.wide {
    max-width: 1200px;
}

.button-panel input[type="checkbox"] {
    margin-top: 5px;
    margin-right: 10px;
}

[data-slide="1"] .button-panel .button {
    min-width: 195px;
}

.button-panel .button {
    align-self: center;
}

.button-panel .field-checkbox {
    line-height: 25px;
}

.button {
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 100px;
    transition: cubic-bezier(0.45, 0.05, 0.55, 0.95) all .3s;
}

.button:disabled,
.button[disabled] {
    opacity: .5;
    cursor: default;
}

[data-slide="1"] .button-panel .return {
    margin-top: 20px;
}

.button-bordered {
    border: 2px solid #333;
    color: #333;
}

.button-bordered:hover {
    border-color: var(--primary);
    color: #FFF;
    background-color: var(--primary);
}

.button-solid {
    background-color: var(--primary);
    color: #fff;
}

/*.start:after, .return::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" fill="currentColor" class="bi bi-arrow-right-short" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8"/></svg>');
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: cubic-bezier(0.45, 0.05, 0.55, 0.95) all .3s;
    opacity: 0;
}*/

.return:not(.button-bordered):not(.button-solid)::before { 
    right: auto;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' fill='%23666666' class='bi bi-arrow-left-short' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M12 8a.5.5 0 0 1-.5.5H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5H11.5a.5.5 0 0 1 .5.5'/%3E%3C/svg%3E");
}

.return.button-solid::before { 
    right: auto;
    left: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" fill="%23FFF" class="bi bi-arrow-left-short" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M12 8a.5.5 0 0 1-.5.5H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5H11.5a.5.5 0 0 1 .5.5"/></svg>');
}

.start:not([disabled]):hover {
    padding: 15px 40px 15px 20px;
    cursor:pointer;
}

.start:not([disabled]):hover::after {
    right: 10px;
    filter: invert(100%) sepia(0%) saturate(2738%) hue-rotate(346deg) brightness(104%) contrast(97%);
    opacity: 1;
}

.return {
    padding: 15px 20px 15px 40px;
}

.return:not([disabled])::before {
    left: 10px;
    opacity: 1;
}

.radio-panel {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    width: 100%;
    /* height: 566px; */
    margin: 15px auto 0 auto;
}

.radio-panel input[type="radio"] {
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
    position: absolute;
}

.radio-panel label {
    background-color: white;
    border: 1px solid #777;
    padding: 20px;
    min-width: calc(25% - 10px);
    min-width: calc(50% - 10px);
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 5px;
    border-radius: 10px;
    max-width: 20%;
    /* height: 33.2%; */
    min-height: 33.2%;
    transition: ease all .3s;
}

.radio-panel input[type="radio"]:checked + label {
    box-shadow: 0px 3px 5px 3px #00000066;
    border: 3px solid #000;
    transform: scale(1.01);
}

.radio-panel label:hover {
    border: 3px solid #000;
}

.radio-panel label:last-of-type {
    flex: 1 1 auto;
    max-width: none;
}

.radio-panel label img {
    display: block;
    margin: 0 auto 10px auto;
}

.slider {
    position: relative;
}

.single-slide {
 /*   position: absolute;
    left: 50%;
    top: 0;*/
/*    max-width: 1200px;
*/    width: 100%;
    margin: 0;
/*    padding: 50px 15px;
*//*    transform: translateX(-50%);
*/    opacity: 0;
    visibility: hidden;
    transition: ease all .3s;
    height: 0;
    overflow: hidden;
    margin-top: 0px;
}

.single-slide.active {
    z-index: 9;
    background-color: #FFF;
    opacity: 1;
    visibility: visible;
    height: auto;
    /* overflow: unset; */
}

.sidebar {
    position: fixed;
    background: #FFF;
    border: 2px solid var(--primary);
    height: 0;
    width: 20%;
    min-width: 340px;
    right: 20px;
    z-index: 1;
    padding: 20px;
    border-radius: 10px;
    transition: ease opacity .3s;
    opacity: 0;
}

.sidebar .sticky-button {
    color: #FFF;
    position: absolute;
    right: 100%;
    width: 130px;
    background: var(--primary);
    transform: rotate(-90deg) translateX(-40px) translateY(45px);
    padding: 10px;
    border-radius: 5px 5px 0 0;
    transition: ease all .2s;
}

.single-slide.active + .sidebar {
    opacity: 1;
    z-index: 9;
    transform: translateX(calc(100% + 20px));
    transition: ease all .2s;
    height: 70vh;
}

.single-slide.active + .sidebar.active {
    transform: translateX(0);
}

.single-slide.active + .sidebar.active .sticky-button {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' fill='%23FFF' class='bi bi-x' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center center;
    background-color: var(--red);
    transform: none;
    font-size: 0;
    border-radius: 5px;
    width: 30px;
    height: 30px;
    top: 5px;
    left: 6px;
}

.sidebar .title {
    text-align: center;
    font-weight: 500;
    background: var(--primary);
    color: #FFF;
    padding: 10px 20px;
    margin: -20px -20px 0 -20px;
    border-radius: 5px 5px 0 0;
}

.sidebar .content {
    padding: 20px 0;
    height: 100%;
    overflow: scroll;
}

.sidebar .content h6 {
    margin-bottom: 20px;
}

.sidebar .content hr + dl {
    margin-top: 20px;
}

.sidebar .content dt {
    flex-basis: 56%;
    font-weight: 500;
}

.sidebar .content dd {
    flex-basis: 43%;
    text-align: right;
}

.clearable-input {
    border: 1px solid #777;
    border-radius: 5px;
    max-width: 100%;
    margin: 10px auto 0px auto;
    display: flex;
    align-items: center;
    position: relative;
}

.single-field.full-width .clearable-input {
    margin: 10px 0 0px 0;
}

.clearable-input.field-sm {
    max-width: 225px;
}

.clearable-input.focused {
    border-color: #002058;
    box-shadow: 0 0 0px 3px #2755a75e;
}

.clearable-input svg {
    vertical-align: middle;
    margin: 0 5px 0 7px;
}

.clearable-input input {
    min-width: 193px;
    padding: 10px 30px 10px 10px;
    border: none;
    font-size: 18px;
    border-radius: 7px;
}

.clearable-input svg + input {
    border-radius: 0 7px 7px 0;
}

.location-input input:focus-visible, .clearable-input input:focus-visible {
    outline: none;
}

.location-input .close, .clearable-input .close {
    position: absolute;
    right: 0;
    display: none;
    cursor: pointer;
}

.terms-conditions {
    line-height: 24px;
    max-width: 440px;
    margin-bottom: 0;
}

.business-info {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.business-info + .business-info {
    margin-top: 0;
}

.business-info .single-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    flex-basis: 100%;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
}

.business-info .single-field input[type="text"],
.business-info .single-field input[type="email"],
.business-info .single-field input[type="tel"],
.business-info .single-field select {
    margin-top: auto;
}

.business-info .single-field[data-id] {
    margin-bottom: 0;
}

.business-info .single-field[data-id].active {
    margin-bottom: 20px;
}

.business-info .single-field.hidden {
    display: none;
}

/* .business-info .single-field + label {
    margin-bottom: 20px;
} */

.business-info .single-field.one-third {
    flex-basis: 100%;
}

.business-info .single-field.full-width {
    flex-basis: 100%;
}

/* .business-info .single-field.full-width + .single-field {
    margin-right: 20px;
} */

.business-info .single-field + label {
    width: 100%;
    flex-basis: 100%;
    margin-bottom: 10px;
}

/* .business-info .single-field:nth-child(odd) {
    margin-right: 20px;
} */

.business-info .single-field label {
    margin-bottom: 5px;
    margin-top: auto;
}

.business-info .single-field textarea {
    width: 100%;
    resize: none;
    padding: 10px;
    border-radius: 5px;
}

.checkbox-switch {
    width: 2em;
    position: absolute;
    left: 10px;
    top: 0;
    margin: 0;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left center;
    border-radius: 2em;
    transition: background-position .15s ease-in-out;
    appearance: none;
    height: 1em;
    border: 1px solid #ccc;
}

.checkbox-switch + label {
    margin-left: 2.5em;
}

.checkbox-switch:checked {
    background-position: right center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
    border-color: var(--primary);
    background-color: var(--primary);
}

.radio-pill {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

/* .radio-pill + label {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #333;
    border-radius: 20px;
    margin-right: 10px;
    transition: ease all .3s;
} */

.radio-pill:checked + label {
    background-color: var(--primary);
    color: #FFF;
}

.radio-rect {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.radio-rect + label {
    display: inline-flex;
    margin-right: 5px;
    margin-left: 5px;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 10px;
    transition: ease all .1s;
    aspect-ratio: 4 / 1;
    text-align: center;
    margin-bottom: 10px;
}

.radio-rect + label:hover {
    border-color: var(--primary);
}

input[type="radio"].radio-rect:checked + label {
    border-color: var(--primary);
    box-shadow: 0px 0px 7px -2px var(--primary);
    transform: scale(1.02);
}

.radio-rect + label span {
    align-self: center;
    cursor: pointer;
}

.radio-rect + label + .inline-label {
    margin-right: 5px;
    margin-left: 5px;
    padding: 10px;
    aspect-ratio: 4 / 1;
    text-align: center;
    margin-bottom: 10px;
}

.radio-square {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 14px;
    max-width: 840px;
    margin-inline: auto;
    margin-top: 20px;
    position: relative;
}

.radio-square-2 {
    max-width: 350px;
}

.radio-square.three-col {
    max-width: 840px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.radio-square[data-id],
[data-id] {
    margin-top: 0px;
    /* display: none; */
    opacity: 0;
    visibility: hidden;
    height: 0;
    transition: ease all .3s;
}

.radio-square[data-id].active {
    margin-top: 20px;
    padding-top: 20px;
    display: grid;
    opacity: 1;
    visibility: visible;
    height: auto;
}

[data-id].active {
    height: auto;
    visibility: visible;
    opacity: 1;
}

.radio-square[data-id]::before {
    content: "";
    display: block;
    width: 50%;
    border-top: 1px solid #dfdfdf;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    
}

.radio-square label {
    aspect-ratio: 1/1;
    border: 1px solid #777;
    overflow: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
    transition: ease all .3s;
}

.radio-square label img {
    margin-bottom: 10px;
}

.radio-square .single-radio {
    position: relative;
}

.radio-square .single-radio input[type="radio"],
.radio-square .single-radio input[type="checkbox"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

    .radio-square .single-radio input[type="radio"]:checked + label,
    .radio-square .single-radio input[type="checkbox"]:checked + label {
        box-shadow: 0px 3px 5px 3px #244da84f;
        border: 3px solid var(--primary);
        transform: scale(1.01);
    }

/* .radio-square label:hover {
    border: 3px solid var(--primary);
} */

.pricing {
    font-size: 30px;
    font-weight: 600;
    display: inline-block;
    margin-top: 30px;
    margin-bottom: 20px;
}

.pricing h6 {
    margin-bottom: 10px;
}

.pricing span {
    color: var(--red);
}

.pricing small {
    font-weight: 400;
    font-size: 16px;
    display: block;
    text-align: right;
}

.single-trade {
    display: flex;
    justify-content: center;
    align-items: center;
}

.single-trade + p {
    margin: 30px;
    text-align: center;
}

.trade-selected {
    border: 3px solid var(--primary);
    border-radius: 10px;
    padding: 35px;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    box-shadow: 0px 1px 3px 3px #01205836;
    margin-right: 50px;
    position: relative;
    width: 167px;
}

.trade-selected:after {
    content: "";
    display: block;
    border-right: 1px solid #e7e7e7;
    height: 70%;
    position: absolute;
    right: -30px;
}

.trade-percentage {
    display: flex;
    align-items: center;
}

.trade-percentage .spinner {
    display: flex;
    flex-direction: column;
    padding: 0 5px;
}

.trade-percentage .spinner i {
    cursor: pointer;
}

.trade-percentage .spinner i + i {
    margin-top: 5px;
}

.trade-percentage input[type="text"] {
    font-size: 22px;
    font-weight: 600;
    width: 95px;
    color: var(--red);
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    border: 2px solid #b5b5b5;
}

.trade-popup {
    padding: 0px 20px;
    border: 0px solid #012058;
    border-radius: 10px;
    margin-bottom: 0px;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transition: ease all .3s;
    position: relative;
    height: 0;
    overflow: hidden;
}

.trade-popup.active {
    opacity: 1;
    max-height: 100%;
    visibility: visible;
    padding: 30px 20px;
    margin-bottom: 30px;
    border: 2px solid #012058;
    height: 100%;
    overflow: unset;
}

.trade-popup .close-trade-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px;
    background-color: var(--red);
    font-size: 0;
    line-height: 0;
    border-radius: 5px;
}

.trade-popup h5 {
    margin-bottom: 10px;
}

.trade-popup p {
    color: #777;
}

.pricing-panel {
    display: flex;
    /* justify-content: space-between; */
    justify-content: center;
    margin-top: 50px;
}

.single-pricing {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 2px solid var(--primary);
    padding: 40px 20px 20px;
    margin: 0 10px;
    border-radius: 10px;
    flex-basis: 100%;
    width:500px;
}

    .single-pricing.active {
        border: 4px solid var(--primary);
        box-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
        transition: box-shadow 0.2s ease;
        border-radius: 4px;
    }
.pricing-panel.single .single-pricing {
    flex-basis: 50%;
}

.single-pricing > *:last-child {
    margin-top: auto;
}

.single-pricing.recommended::before {
    content: "Recommended";
    position: absolute;
    top: -17px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #FFF;
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 15px;
    text-transform: uppercase;
}

.single-pricing h5 {
    margin-bottom: 25px;
    text-align: center;
}

.single-pricing h6 {
    text-align: center;
    margin-bottom: 20px;
}

.single-pricing p {
    margin-bottom: 15px;
}

.single-pricing .description {
    font-size: 14px;
    line-height: 18px;
    color: #777;
    margin: 25px 0;
    text-align: center;
}

.single-pricing dl {
    font-size: 12px;
    display: flex;
    flex-wrap: wrap;
}

.single-pricing dl + dl {
    margin-top: 20px;
}

.single-pricing dt {
    width: 75%;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
    line-height: 18px;
}

.single-pricing dt.indented {
    margin-left: 10px;
    padding-left: 25px;
}

.single-pricing dt svg {
    vertical-align: middle;
    fill: var(--green);
    position: absolute;
    left: 0;
    top: 2px;
}

.single-pricing .not-included dt svg {
    fill: #777;
}

.single-pricing dt.indented svg {
    left: 5px;
}

.single-pricing dd {
    margin-left: auto;
    flex-basis: 20%;
    margin-bottom: 15px;
    display: flex;
    align-self: flex-end;
    justify-content: flex-end;
}

.single-pricing dl .bold {
    font-weight: 500;
}

.single-pricing .button-bordered {
    color: var(--primary);
    border-color: var(--primary);
}

.single-pricing .button-bordered:hover {
    background-color: var(--primary);
    color: #FFF;
}

.single-pricing .button-solid {
    margin-top: 15px;
}

.pricing-panel.slider .single-pricing {
    position: absolute;
    top: 120px;
    transition: all 500ms ease;
    display: flex;
    flex-direction: column;
    max-width: 360px;
    background-color: #FFF;
    min-width: 300px;
}

.pricing-panel.slider .single-pricing p:last-of-type {
    margin-top: auto;
}

.pricing-panel.slider {
    position: relative;
    width: 240px;
    padding-top: 200px;
    margin: 0 auto;
    min-height: 880px;
}

.radio-group {
    border: 2px solid var(--gray);
    border-radius: 5px;
    display: inline-flex;
    position: relative;
    margin: 20px 0;
}

.radio-group input[type="radio"] {
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
    position: absolute;
}

.radio-group label {
    margin: 0;
    padding: 15px 20px;
    font-size: 20px;
    color: var(--gray);
}

.radio-group input[type="radio"]:checked + label {
    background-color: var(--gray);
    color: #FFF;
}

.slider-nav {
    display: none;
}

.pricing-panel.slider .slider-nav {
    display: block;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0;
}

.slider-nav .prev,
.slider-nav .next {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 0;
    margin-right: 5px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' fill='currentColor' class='bi bi-arrow-left-circle-fill' viewBox='0 0 16 16'%3E%3Cpath d='M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0m3.5 7.5a.5.5 0 0 1 0 1H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center center;
}

.slider-nav .next {
    margin-right: 0;
    margin-left: 5px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' fill='currentColor' class='bi bi-arrow-right-circle-fill' viewBox='0 0 16 16'%3E%3Cpath d='M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0M4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5z'/%3E%3C/svg%3E");
}

.c1 {
    transform: translateX(0) scale(1.1);
    z-index: 99;
}

.c2 {
    transform: translateX(40px) scale(.9);
}

.c3 {
    transform: translateX(0px) scale(1);
}

.customize-form {
    max-width: 900px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.customize-form h6 {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
    color: #777;
    font-weight: 700;
    margin-top: 40px;
}

.customize-form label.label {
    display: block;
    margin-bottom: 7px;
    line-height: 22px;
}

.customize-form .input-group {
    display: flex;
    margin-bottom: 25px;
    margin-left: -5px;
    margin-right: -5px;
    flex-wrap: wrap;
}

.field-checkbox {
    margin-bottom: 25px;
    position: relative;
}

.single-field .field-checkbox {
    margin-bottom: 0;
}

.field-checkbox.custom {
    padding-left: 30px;
    display: flex;
    flex-wrap: wrap;
}

.field-checkbox.custom input[type="checkbox"],
.field-checkbox.custom input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 3px;
    flex: 0 0 20px;
    transition: ease background .2s;
    position: absolute;
    left: 0;
    top: 5px;
}

.field-checkbox.custom.disabled input[type="checkbox"],
.field-checkbox.custom.disabled input[type="radio"] {
    border-color: #afafaf;
}

.field-checkbox.custom:not(.disabled) input[type="checkbox"]:not(:disabled):checked,
.field-checkbox.custom:not(.disabled) input[type="radio"]:not(:disabled):checked {
    background-color: var(--primary);
}

.field-checkbox.custom input[type="checkbox"]:after,
.field-checkbox.custom input[type="radio"]:after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FFF' class='bi bi-check-lg' viewBox='0 0 16 16'%3E%3Cpath d='M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425z'/%3E%3C/svg%3E");
}

.field-checkbox.custom.disabled input[type="checkbox"]::after,
.field-checkbox.custom.disabled input[type="radio"]::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23afafaf' class='bi bi-x' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
}

.field-checkbox.custom label {
    margin-top: 5px;
    margin-left: 5px;
    line-height: 26px;
}

.field-checkbox label span {
    color: var(--red);
    font-weight: 600;
    margin-right: 5px;
}

.field-checkbox.custom label + strong {
    flex: 1 1 100%;
    color: var(--red);
    font-weight: 600; 
    margin-left: 5px;
}

.field-checkbox.custom.disabled label {
    color: #afafaf;
}

.payment-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 10px;
}

.payment-content {
    display: flex;
    flex-direction: column;
    margin-left: -10px;
    margin-right: -10px;
}

.payment-method,
.payment-summary {
    flex-basis: 55%;
    margin-left: 10px;
    margin-right: 10px;
}

.payment-method {
    display: block;
    position: relative;
}

/* added fix */
.payment-method {
    flex-direction: column;
}

.payment-content .payment-summary {
    flex-basis: 45%;
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
    border: 1px solid var(--primary);
    display: flex;
    flex-direction: column;
}

.payment-content .payment-summary .button-bottom {
    margin-top: auto;
    text-align: center;
}

.payment-content .payment-summary p {
    text-align: center;
    color: #777;
    line-height: 24px;
    margin: 20px 0;
}

.payment-content .payment-summary p strong {
    color: var(--primary);
}

.payment-content .payment-summary dl dd {
    text-align: right;
}

.payment-content .payment-summary dl dt small {
    display: block;
    font-size: 12px;
}

.payment-content .payment-summary .title,
.imp-info .title {
    background-color: var(--primary);
    padding: 20px;
    color: #FFF;
    border-radius:  5px 5px 0 0;
    margin: -20px -20px 20px -20px;
    text-align: center;
}

.payment-method .radio-square {
    display: flex;
    max-width: 50%;
    flex-basis: 40%;
    padding: 0 20px;
    grid-template-columns: repeat(auto-fill, minmax(114px, 1fr));
}

/* Added fix */
.payment-method .radio-square {
    display: grid;
    flex-basis: 100%;
    max-width: 100%;
    padding: 0;
    margin-inline: unset;
}

.card-details {
    border: 1px solid #777;
    border-radius: 10px;
    transition: ease all .3s;
    padding: 0 20px;
    max-width: 60%;
    position: absolute;
    right: 0;
    width: 60%;
    display: none;
}

/* Added Fix */
.card-details {
    width: 100%;
    max-width: 100%;
}

.card-details.active {
    display: block;
    opacity: 1;
    visibility: visible;
    height: auto;
    margin-top: auto;
    padding: 20px;
    position: static;
}

.card-details .single-field {
    margin-bottom: 20px;
    position: relative;
}

.card-details label {
    margin-bottom: 10px;
    display: block;
    font-weight: 500;
}

.ccicon {
    height: 38px;
    position: absolute;
    right: 6px;
    top: calc(50% - 19px);
    width: 60px;
}

.tripple-field-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
}

.tripple-field-wrapper .single-field {
    padding-left: 5px;
    padding-right: 5px;
    flex-basis: 100%;
}

.mic-buttons {
    position: absolute;
    bottom: 0px;
    right: 0px;
}

.mic-buttons #start-microphone,
.mic-buttons #stop-microphone {
    width: 25px;
    height: 25px;
    font-size: 0;
    line-height: 0;
    border: 0;
    border-radius: 50%;
    background-color: var(--primary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' fill='%23FFF' class='bi bi-mic-fill' viewBox='0 0 16 16'%3E%3Cpath d='M5 3a3 3 0 0 1 6 0v5a3 3 0 0 1-6 0z'/%3E%3Cpath d='M3.5 6.5A.5.5 0 0 1 4 7v1a4 4 0 0 0 8 0V7a.5.5 0 0 1 1 0v1a5 5 0 0 1-4.5 4.975V15h3a.5.5 0 0 1 0 1h-7a.5.5 0 0 1 0-1h3v-2.025A5 5 0 0 1 3 8V7a.5.5 0 0 1 .5-.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.mic-buttons #start-microphone:not(:disabled) {
    cursor: pointer;
    z-index: 2;
}

.mic-buttons #stop-microphone {
    background-color: var(--red);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' fill='%23FFF' class='bi bi-stop-fill' viewBox='0 0 16 16'%3E%3Cpath d='M5 3.5h6A1.5 1.5 0 0 1 12.5 5v6a1.5 1.5 0 0 1-1.5 1.5H5A1.5 1.5 0 0 1 3.5 11V5A1.5 1.5 0 0 1 5 3.5'/%3E%3C/svg%3E");
}

.mic-buttons #stop-microphone:not(:disabled) {
    cursor: pointer;
    z-index: 2;
}

.imp-info {
    max-width: 300px;
    margin: 0 auto;
    border: 1px solid var(--primary);
    padding: 20px;
    border-radius: 10px;
}

.imp-info p {
    line-height: 22px;
    margin-bottom: 17px;
}

footer {
    font-size: 14px;
    line-height: 18px;
    padding: 20px 0 10px 0;
    border-top: 1px solid #eee;
}

footer .container {
    max-width: 1200px;
}

/* Custom select */

:root {
    --select-bg: #FFF; /* select background color*/
    --select-text-color: #333; /* select text color */
    --select-border-color: #333; /* select border color*/
    --select-list-background-color: #fff; /* select list background color*/
    --select-list-text-color: #333; /* select list text color*/
    --select-list-hover-color: #ccc; /* select list hover color*/
    --select-arrow-color: #333; /* select arrow color*/
    --select-default-width: 230px; /* select default width */
}

.iSelect {
    min-width: var(--select-default-width);
    position: relative;
    user-select: none;
    font-family: helvetica;
    font-size: 14px;
}

.iSelect.fixedWidth {
    width: var(--select-default-width);
}

.iSelect.rounded span.select-label {
    border-radius:3px;
}

.iSelect input[type="checkbox"] {
    height: 0;
    width: 0;
    display: none;
}

.iSelect label {
    position: relative;
    clear: both;
}

.iSelect label span.select-label {
    border: 1px solid #333;
    padding: 10px;
    width: 100%;
    display: inline-block;
    position: relative;
    cursor: pointer;
    box-sizing: border-box;
    background: var(--select-bg);
    color: var(--select-text-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    box-sizing: border-box;
    padding-right:25px;
}
.iSelect ul {
    padding: 0;
    margin: -3px 0 0 0;
    border-top: 0;
    width: 100%;
    display: none;
    position: absolute;
    z-index: 10;
}
.iSelect ul li {
    list-style: none;
    padding: 10px;
    border: 1px solid var(--select-border-color);
    border-top: 0;
    border-bottom: 1px solid var(--select-border-color);
    color: var(--select-list-text-color);
    cursor: pointer;
    background: var(--select-list-background-color);
}

.iSelect ul li:hover {
    background: var(--select-list-hover-color);
}

.iSelect label span:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--select-arrow-color);
    right: 10px;
    top: 16px;
}

.iSelect input[type="checkbox"]:checked + span ~ ul {
    display: block;
}

/* .iSelect.fixedWidth:before {
    content: "View Plan Details";
    position: absolute;
    top: -12px;
    left: 23px;
    background: #FFF;
    padding: 4px;
    z-index: 999;
    font-size: small;
} */

/* Custom select end */

.popup {
/*    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    background: #FFF;
    z-index: 10;
    transform: translate(-50%, -50%);
    padding: 30px;
    max-width: 770px;
    margin-top: 40px;
    border: 1px solid #ccc;
    border-radius: 15px;*/
}

.popup .close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #555;
}

.popup .header {
    align-items: center;
}

.popup .header img {
    display: none;
}

.popup .popup-content {
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
}

.popup .popup-content > div {
    /* flex-basis: 50%; */
    padding: 20px;
}

.popup .popup-content > div strong {
    display: block;
    margin-bottom: 15px;
}

.popup .popup-content > div p {
    font-size: 16px;
    color: #656565;
    line-height: 20px;
}

.popup .header-content h6 {
    line-height: 25px;
}

.popup .header-content p {
    line-height: 24px;
}

.popup .footer {
    padding-top: 20px;
    font-size: 14px;
}

.hidden {
    display: none;
}

.popup .scrollable {
    max-height: calc(70vh - 20px);
    overflow: scroll;
    margin: 20px 0;
    padding: 0 20px;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    z-index: 9;
}

.popover {
    position: absolute;
    bottom: 100%;
    background: #FFF;
    box-shadow: 0px 0px 7px 0px #00000038;
    padding: 20px;
    max-width: 240px;
    line-height: 23px;
    border-radius: 5px;
    left: 120px;
}

.popover:after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    top: calc(100% - 5px);
    position: absolute;
    left: 50%;
    transform: rotate(45deg) translateX(-50%);
    box-shadow: 3px 3px 5px -2px #00000029;
    background: #FFF;
}

@media (min-width: 376px) {

    .radio-square {
        grid-template-columns: repeat(auto-fill, minmax(146px, 1fr));
        gap: 24px;
    }
    
    .payment-method .radio-square {
        grid-template-columns: repeat(auto-fill, minmax(136px, 1fr));
    }

    .pricing-panel.slider {
        width: 320px;
    }

    .pricing-panel.slider .single-pricing {
        min-width: auto;
    }

    footer .footer-nav,
    .footer-address {
        flex-basis: 50%;
    }

    footer .footer-nav {
        text-align: left;
        margin-bottom: 0px;
    }

    .footer-address {
        justify-content: end;
    }
}

@media (min-width: 576px) {
    .heading {
        font-size: 38px;
    }

    header .tag-line {
        display: block;
    }

    [data-slide="1"] .button-panel {
        flex-direction: row;
    }

    [data-slide="1"] .button-panel .return {
        margin-top: 0px;
    }

    main .process-steps li:not(.completed) a {
        display: block;
    }

    .process-steps {
        min-width: 500px;
    }

    header .single-row {
        /* flex-wrap: wrap; */
        flex-direction: row;
    }

    header h6 {
        max-width: 110px;
        font-size: 16px;
    }

    header h6 span {
        font-size: 12px;
    }

    .header-right {
        flex-basis: auto;
        justify-content: unset;
    }

    .header-right img {
        width: 175px;
    }

    main .process-steps li a, main .process-steps li.active.completed a {
        display: block;
    }

    .button-panel {
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .button + .button {
        margin-top: 0;
        margin-left: 30px;
    }

    [data-slide="1"] .button-panel .button {
        min-width: 0;
    }

    .button-panel .button {
        align-self: auto;
    }

    .radio-panel label {
        min-width: calc(33.33% - 10px);
    }

    .button-panel .field-checkbox {
        padding-right: 20px;
    }

    .business-info .single-field {
        flex-basis: 50%;
    }

    .business-info .single-field.one-third {
        flex-basis: 33.33%;
    }

    .radio-square {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 24px;
    }

    .payment-method {
        display: flex;
        flex-direction: row;
    }

    .payment-method .radio-square {
        max-width: none;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        flex-basis: 40%;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .card-details {
        width: 60%;
        max-width: 60%;
    }

    .button-panel .field-checkbox.custom {
        flex-basis: auto;
    }

    .footer-logo {
        display: block;
    }

    footer .footer-nav,
    .footer-address {
        flex-basis: 38.33%;
    }

    .popup .popup-content > div {
        flex-basis: 50%;
        text-align: center;
    }

    .popup .header img {
        display: block;
    }

    .popup .scrollable {
        margin: 0;
    }

}

@media (min-width: 768px) {

    .return {
        padding: 15px 30px;
    }

    .return:not([disabled])::before {
        left: 0px;
        opacity: 0;
    }

    .return:hover {
        padding: 15px 20px 15px 40px;
    }
    
    .return:not([disabled]):hover::before {
        left: 10px;
        opacity: 1;
    }

    .heading {
        font-size: 42px;
    }

    .radio-panel label {
        min-width: calc(25% - 10px);
    }

    .radio-panel {
        height: 566px;
    }

    .heading small {
        display: inline-block;
    }

    .tripple-field-wrapper .single-field {
        flex-basis: 33.33%;
    }

    .payment-content {
        flex-direction: row;
    }

    .card-details {
        width: auto;
        max-width: none;
        position: static;
        display: block;
    }

    .payment-method .radio-square {
        display: grid;
        max-width: 100%;
        padding: 0;
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    }

    .payment-method {
        display: block;
    }

}

@media (min-width: 992px) {

    .heading {
        font-size: 58px;
    }

    header .process-steps {
        display: flex;
    }

    .radio-panel {
        width: 100%;
    }

    .single-pricing.recommended {
        transform: scale(1.07);
        position: relative;
        box-shadow: 0px 0px 8px -2px #002058;
    }

    .payment-method .radio-square {
        max-width: 100%;
        margin-bottom: 20px;
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

    .payment-method {
        display: flex;
        flex-direction: column;
    }

    .radio-square label:hover {
        border: 3px solid var(--primary);
    }
    
}


@media (min-width: 1200px) {

}

@media (min-width: 1600px) {

}


.home-4_hero-image {
    position: relative;
    max-width: 850px !important;
}

.coverage-descriptions {
    padding-bottom:2rem;
    border-bottom: 1px solid #ccc;
    margin-bottom:2rem;
}

.coverage-descriptions-last {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.logo-orange {
    color: #ffad16;
}

.coverage-list {
    margin-top: 1.7rem;
    margin-bottom: 1.7rem;
}

.coverage-description {
    display: none;
    padding-bottom: 1.5rem;
    font-size:16px;
    color:#333;
}

.coverage-title {
    display:flex;
    cursor: pointer;
    padding-bottom: 1rem;
    justify-content:space-between;
    font-weight: 500;
}

