@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&display=swap");

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Lato, sans-serif;
}

body {
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    background-image: radial-gradient(rgba(163, 188, 213, 0.58) 36%, rgba(62, 104, 137, 0.56) 100%);
}

#header {
    font-size: large;
    padding: 0.3em;
    background: rgb(255, 255, 255);
    margin-bottom: 90px;
}

.headerinner {
    position: relative;
    margin: auto;
    max-width: 1200px;
    width: 100%;
    background: rgb(255, 255, 255);
    padding: 20px;
}

.logo {
    max-width: 250px;
}

#footer {
    font-size: large;
    padding: 0em;
    background: rgb(89, 89, 97);
    bottom: 0px;
    width: 100%;
    margin-top: 90px;
}

.footerinner {
    margin: auto;
    max-width: 1200px;
    width: 100%;
    padding: 0px;
}

.logo-footer {
    max-width: 150px;
    display: block;
    margin: auto;
    width: 50%;
}

.container {
    position: relative;
    margin: auto;
    max-width: 800px;
    width: 100%;
    background: rgb(255, 255, 255);
    padding: 25px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 15px;
}

.container header {
    font-size: 1.5rem;
    color: rgb(51, 51, 51);
    font-weight: 500;
    text-align: center;
}

.container .form {
    margin-top: 30px;
}

.progressbar {
    position: relative;
    display: flex;
    justify-content: space-between;
    counter-reset: step 0;
    margin: 30px;
}

.progressbar::before, .progress {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    width: 100%;
    background-color: rgb(220, 220, 220);
    z-index: 1;
}

.progress {
    background-color: rgb(238, 238, 238);
    width: 0%;
    transition: 0.3s;
}

.progress-step-active {
    color: rgb(243, 243, 243);
    background-color: rgb(5, 88, 165) !important;
}

.progress-step {
    width: 50px;
    height: 50px;
    background-color: rgb(238, 238, 238);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.progress-step::before {
    counter-increment: step 1;
    content: counter(step);
}

.progress-step::after {
    content: attr(data-title);
    position: absolute;
    top: calc(100% + 0.5rem);
    font-size: 0.85rem;
    color: rgb(102, 102, 102);
}

.form .input-box {
    width: 100%;
    margin-top: 20px;
}

.input-box label {
    color: rgb(51, 51, 51);
}

.form :where(.input-box input, .select-box) {
    position: relative;
    height: 50px;
    width: 100%;
    outline: currentcolor;
    font-size: 1rem;
    color: rgb(112, 112, 112);
    margin-top: 8px;
    border: 1px solid rgb(221, 221, 221);
    border-radius: 6px;
    padding: 0px 15px;
}

.input-box input:focus {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 0px;
}

.form .column {
    display: flex;
    column-gap: 15px;
}

.form .gender-box {
    margin-top: 20px;
}

.gender-box h3 {
    color: rgb(51, 51, 51);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.form :where(.gender-option, .gender) {
    display: flex;
    align-items: center;
    column-gap: 50px;
    flex-wrap: wrap;
}

.form .gender {
    column-gap: 5px;
}

.gender input {
    accent-color: rgb(130, 106, 251);
}

.form :where(.gender input, .gender label) {
    cursor: pointer;
}

.gender label {
    color: rgb(112, 112, 112);
}

.address :where(input, .select-box) {
    margin-top: 15px;
}

.select-box select {
    height: 100%;
    width: 100%;
    outline: currentcolor;
    border: medium;
    color: rgb(112, 112, 112);
    font-size: 1rem;
}

.form button {
    height: 55px !important;
    width: 100% !important;
    color: rgb(255, 255, 255);
    font-size: 1rem;
    font-weight: 400;
    margin-top: 30px;
    border: medium;
    cursor: pointer;
    transition: 0.2s;
    background: rgb(5, 88, 165);
}

.form button:hover {
    background: rgb(88, 56, 250);
}

[type="checkbox"] {
    position: relative;
    left: 30px;
    top: 0px;
    z-index: 0;
    appearance: none;
}

[type="checkbox"] + label {
    display: block;
    cursor: pointer;
    font-family: sans-serif;
    font-size: 13px;
    line-height: 1.3;
    padding-left: 50px;
    position: relative;
    color: rgb(153, 153, 153);
}

.p-block {
margin-top: -33px;
margin-left: 30px;
line-height: 24px;
}

[type="checkbox"] + label::before {
    width: 30px;
    height: 15px;
    border-radius: 30px;
    border: 2px solid rgb(221, 221, 221);
    background-color: rgb(238, 238, 238);
    content: "";
    margin-right: 15px;
    transition: background-color 0.5s linear;
    z-index: 5;
    position: absolute;
    left: 0px;
}

[type="checkbox"] + label::after {
    width: 15px;
    height: 15px;
    border-radius: 30px;
    background-color: rgb(255, 255, 255);
    content: "";
    transition: margin 0.3s linear;
    box-shadow: rgb(170, 170, 170) 0px 0px 5px;
    position: absolute;
    left: 2px;
    top: 2px;
    z-index: 10;
}

[type="checkbox"]:checked + label::before {
    background-color: rgb(43, 135, 24);
}

[type="checkbox"]:checked + label::after {
    margin: 0px 0px 0px 15px;
}

.footer {
}

h1.sektor {
    padding-top: 50px;
    color: rgb(5, 88, 165);
}

h2.sektor {
    padding-top: 30px;
}

h3.sektor {
    padding-top: 30px;
}

h1.report {
    padding-top: 50px;
    color: rgb(5, 88, 165);
}

h2.report {
    padding-top: 30px;
}

p.report {
    padding-top: 20px;
}

.dpx {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

label {
    display: block;
    line-height: 40px;
}

.option-input {
    appearance: none;
    inset: 4.33333px 0px 0px;
    height: 20px;
    width: 20px;
    transition: 0.15s ease-out;
    background: rgb(203, 209, 216);
    border: medium;
    color: rgb(255, 255, 255);
    cursor: pointer;
    display: inline-block;
    margin-right: 0.5rem;
    outline: currentcolor;
    position: relative;
    z-index: 1000;
}

.option-input:hover {
    background: rgb(159, 170, 183);
}

.option-input:checked {
    background: rgb(5, 88, 165);
}

.option-input:checked::before {
    width: 40px;
    height: 40px;
    display: flex;
    content: "";
    font-size: 25px;
    font-weight: bold;
    position: absolute;
    align-items: center;
    justify-content: center;
    font-family: "Font Awesome 5 Free";
}

.option-input:checked::after {
    animation: 0.65s click-wave;
    background: rgb(64, 224, 208);
    content: "";
    display: block;
    position: relative;
    z-index: 100;
}

.option-input.radio {
    border-radius: 50%;
}

.option-input.radio::after {
    border-radius: 50%;
}

@keyframes click-wave {
    0% {
        height: 40px;
        width: 40px;
        opacity: 0.35;
        position: relative;
    }

    100% {
        height: 200px;
        width: 200px;
        margin-left: -80px;
        margin-top: -80px;
        opacity: 0;
    }
}

.gauge-img {
    width: 400px;
    margin: auto;
    display: block;
}

p.copyright {
    text-align: center;
    padding-top: 30px;
}

@media screen and (max-width: 500px) {
    .form .column {
        flex-wrap: wrap;
    }

    .form :where(.gender-option, .gender) {
        row-gap: 15px;
    }
}
