@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    box-sizing: border-box;
}

:root {
    --main-bg: #99cce4;
    --main-text: #444444;

    --color-primary: #005DAA;
    --text-primary: #ffffff;

    --color-secondary: #8761B0;
    --text-secondary: #ffffff;

    --color-tertiary: #E1062C;
    --text-tertiary: #ffffff;

    --slide-bg: #ffffff;
    --slide-text: #444444;

    --input-bg: #ddd;
    --input-border: #bbb;
    --input-text: #444;

    --even-row-bg: color-mix(in oklab, var(--color-primary), white 90%);

    --step-off: #cccccc;
    --step-completed: #005DAA;
    --step-active: #8CC544;
}


html, body {
    /* height: 100%; */
    /* overflow: hidden; */
}
body {
    display: flex;
    align-items: center;
    justify-content: center;
    position:relative;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    margin:0px;
    padding:0px;
    background:var(--main-bg);
    color: var(--main-text);
}

.container {
    width: 100%;
    max-width:1400px;
    margin:0px auto;
}

#header {
    height:90px;
    position:fixed;
    top:0px;
    left:0px;
    right:0px;
    z-index:10;
}
#header_title {
    white-space:nowrap;
    overflow: hidden;
    color: var(--text-primary);
}
#header_title .container {
    background: var(--color-primary);
    color: var(--text-primary);
}

#header_title h1 {
    margin:0px;
    padding:5px 15px;
}

#stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--slide-bg);
    color: var(--slide-text);
    padding: 10px 15px;
    position:relative;
}

.stepper_btn {
    width:80px;
    height:26px;
    display:flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-primary);
    color: var(--text-primary);
    font-weight:bold;
    border-radius:15px;
    cursor:pointer;
}
.stepper_btn i {
    width:22px;
    height: 22px;
    background:var(--text-primary);;
    content:'';
    border-radius:50%;
    display:flex;
    align-items: center;
    justify-content: center;
    margin:2px;
    color: var(--color-primary);
    font-size: 17px;
}
#stepper_prev {
    padding-right:15px;
}
#stepper_prev i {
    padding-right:2px;
}
#stepper_next {
    padding-left:15px;
}
#stepper_next i {
    padding-left:2px;
}

.stepper-wrapper {
    /* margin-top: auto; */
    width: calc(100% - 200px);
    display: inline-flex;
    justify-content: space-between;
    line-height:16px;
    overflow: hidden;
}
.stepper-wrapper.off {
    visibility: hidden;
    pointer-events: none;
}
.stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}
  
.stepper-item::before {
    position: absolute;
    content: "";
    border-bottom: 5px solid var(--step-off);
    width: 100%;
    top: 8px;
    left: -50%;
    z-index: 2;
}

.stepper-item::after {
    position: absolute;
    content: "";
    border-bottom: 5px solid var(--step-off);
    width: 100%;
    top: 8px;
    left: 50%;
    z-index: 2;
}

.stepper-item .step-counter {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border:3px solid var(--step-off);
    background: var(--step-off);
    font-size:0px;
    cursor:pointer;
}

.stepper-item .step-name {
    font-size:12px;
    margin-top:6px;
    display:none;
}

.stepper-item.active {
    font-weight: bold;
}
.stepper-item.active .step-counter {
    border:3px solid var(--step-completed);
    background-color: var(--step-active);
}

.stepper-item.completed .step-counter {
    border:3px solid var(--step-completed);
    background-color: var(--step-completed);
}

.stepper-item.completed::after {
    position: absolute;
    content: "";
    border-bottom: 5px solid var(--step-completed);
    width: 100%;
    top: 8px;
    left: 50%;
    z-index: 3;
}
.stepper-item.completed::after {
    position: absolute;
    content: "";
    border-bottom: 5px solid var(--step-completed);
    width: 100%;
    top: 8px;
    left: 50%;
    z-index: 3;
}

.stepper-item:first-child::before {
    content: none;
}
.stepper-item:last-child::after {
    content: none;
}






#main_wrapper {
    position:absolute;
    /* top:120px; */
    top:0px;
    padding-top:120px;
    /* min-height: calc(100% - 120px); */
    /* bottom:0px; */
    left:0px;
    right:0px;
    width: 100%;
    /* overflow:hidden; */
}

.slider {
    /* height:100%; */
    overflow: auto;
}

.slides {
    /* height:100%; */
    display: flex;
    overflow: hidden;
    /* overflow-x: hidden; */
    /* overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; */

    -ms-overflow-style: none;
    scrollbar-width: none;
}
.slides::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    display: none;
}
.slides::-webkit-scrollbar-thumb {
background: black;
border-radius: 10px;
display: none;
}
.slides::-webkit-scrollbar-track {
background: transparent;
display: none;
}
.slide {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 100%;
    max-width: min(100vw, 1400px);
    height: 100%;
    min-height:calc(100vh - 120px);
    padding: 30px;
    background: var(--slide-bg);
    color: var(--slide-text);
    transform-origin: center center;
    transform: scale(1);
    transition: transform 0.5s;
    position: relative;
    overflow:auto;
}
.slide-buttons {
    margin-top:30px;
    display:flex;
    align-items: center;
    justify-content: space-between;
}

.main-slide {
    display:flex;
    align-items: start;
    justify-content: center;
}
.main-slide > div {
    padding:60px;
    text-align:center;
}
.main-heading {
    font-size: 32px;
    font-weight:bold;
    margin-bottom: 30px;
}
.main-text {
    font-size:18px;
    font-weight:bold;
    line-height:1.5em;
    margin-top:30px;
}


.heading {
    font-size: 21px;
    font-weight:bold;
    margin-bottom: 30px;
}
.tbl_form {
    margin:30px 0px;
}
/* .tbl_form th {
    text-align:left;
} */
input.tbl_form_input,
select.tbl_form_input {
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    color: var(--input-text);
    padding: 3px 8px;
    border-radius: 7px;
    font-size: 14px;
    font-family: 'Roboto';
    width: 100%;
    min-width: 50px;
    max-width: 200px;
    font-weight:500;
}
textarea.tbl_form_input {
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    color: var(--input-text);
    padding: 3px 5px;
    border-radius: 3px;
    font-size: 13px;
    font-family: 'Roboto';
    width: 100%;
    min-height:150px;
    font-weight:500;

}
/* .tbl_form tr:nth-child(2n) th, */
.tbl_form tr:nth-child(2n) td {
    background: var(--even-row-bg);
}
/* .tbl_form tr:first-child:not(:has(input, select, textarea)) th, */
.tbl_form tr:first-child:not(:has(input, select, textarea)) td {
    background: var(--color-primary);
    color: var(--text-primary);
    font-weight:bold;
}



/* .btn-page {
    width:60px;
    height:120px;
    position:absolute;
    top:50%;
    margin-top:-60px;
    background:#cff;
    font-size:48px;
    content: '';
    z-index:10;
    display: flex;
    align-items: center;
    justify-content: center;
}
#btn-page-prev {
    left:0px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}
#btn-page-next {
    right:0px;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
} */

#helpalert {
    font-size: 1em;
    padding:15px;
    margin-bottom:30px;
}
#helpalert i {
    color: var(--color-tertiary);
}
#helpalert a {
    color: inherit;
}
.helpalert-firm {
    font-size: 1.35em;
    font-weight: 700;
    padding-bottom:15px;
}
.helpalert-name {
    font-size: 1.25em;
    font-weight: 400;
    line-height: 1.5em;
}
.helpalert-phone {
    font-size: 1em;
    font-weight: 900;
    line-height: 1em;
}
.helpalert-mail {
    font-size: 1em;
    font-weight: 700;
    color: var(--color-tertiary);
}
.helpalert-mail strong {
    margin: 0px 2px;
}
.helpalert-address {
    font-size: 1em;
    font-weight: 700;
}
.helpalert-difference {
    color: #bbb;
    mix-blend-mode: difference;
}

.btn-xs {
    display:inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: var(--text-primary);
    font-weight:bold;
    border-radius:7px;
    padding:2px 25px;
    font-size:18px;
    cursor:pointer;
    line-height:2em;
}
.btn-xs:hover {
    opacity:.85;
}
.btn-active {
    background: var(--color-tertiary);
    border: 1px solid var(--text-tertiary);
    color: var(--text-tertiary);
}

#success_icon {
    padding:30px;
    text-align:center;
}
#success_icon img {
    width:75px;
}


#footer {
    height:30px;
    position:absolute;
    bottom:0px;
    left:0px;
    right:0px;
    display:none;
}

#footer .container {
    height:30px;
    /* background:#aaa; */
    display:flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow:hidden;
    font-size:12px;
    color:#fff;
}

.visible0 {
    visibility:hidden;
}
