  :root {
    --red: #e01a21;
    --yellow: #fdbf16;
}
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #FAFAFA;
    font: 12pt "Open Sans";
}
* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}
fieldset, img { 
    border:0;	
    max-width: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 8px 8px 0 0;
}
h2 {
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}
p.note {
    font-size: 13px;
    padding: 12px 16px;
    background-color: #caedca;
    border-radius: 8px;
    margin: 20px 0 -12px;
    color: #0b7c09;
    line-height: 1.6;
    text-align: center;
}
.stages.stretched {
    margin: 30px auto 4px;
    width: 300px;
}
.stagesAll {
    display: flex;
    justify-content: space-between;
}
.stagesAll a {
    display: inline-flex;
    background-color: #b4b4b4;
    color: #fff;
    width: 24px;
    aspect-ratio: 1;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    box-shadow: 0 0 7px #222;
}
.stagesAll a.active {
    background-color: #caedca;
    color: #0b7c09;
    box-shadow: 0 0 7px #0b7c09;
}
.line {
    background-color: #ddd;
    width: 98%;
    height: 2px;
    margin: -13px auto 0;
}
.stretched p {
    padding-bottom: 12px;
    margin-bottom: 40px;
    color: var(--red);
    font-weight: 400;
    border-bottom: 2px solid #e4e4e4;
}
.group {
    margin-bottom: 24px;
}
.group input, .group select {
    min-height: 30px;
    border: none;
    margin-bottom: 8px;
    border-radius: 4px;
    padding: 4px;
}
.group * {
    width: 100%;
}
.group p {
    margin: 0;
    color: var(--red);
    font-weight: 400;
    font-size: 14px;
}
.stretched.total {
    border-top: 2px solid #e4e4e4;
}
.total p {
    border: none !important;
    font-size: 24px;
    margin: 10px 0;
}
label {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
    font-weight: 500;
}
.wrapper {
    min-width: 360px;
    max-width: 900px;
    margin: 16px auto 20px;
}
form {
    padding: 10px 25px 44px;
    background-color: #f0f0f0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px 48px;
    margin-top: -5px;
    border-radius: 0 0 8px 8px;
}
.stretched, .action {
    grid-column: 1/-1;
}
.group select, .action input, .action .button {
    cursor: pointer;
}
.action input, .action .button, .action .button.active {
    padding: 6px 16px;
    font-size: 16px;
    color: #fff;
    border: 1px solid var(--red);
    background-color: var(--red);
    border-radius: 8px;
    margin: 0 4px 4px 0;
    box-shadow: 0 3px 5px #ccc;
    display: inline-block;
    height: 36px;
}
.action .button {
    color: var(--red);
    border-color: transparent;
    background-color: transparent;
    box-shadow: unset;
    text-decoration: none;
}
.action input:hover, .action .button:hover {
    color: #fff;
    background-color: var(--red);
    box-shadow: unset;
}
.stretched {
    margin-bottom: -24px;
}
.action {
    margin-top: -24px;
}
.abbrs {
    padding: 16px 10px;
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}
h4 {
    margin: 8px 0;
    text-transform: uppercase;
    font-size: 14px;
    grid-column: 1/-1;
    margin-bottom: -12px;
}
.abbrs b {
    display: block;
    font-weight: 500;
}
.abbrs div {
    font-size: 12px;
}
.abbrs p {
    margin: 4px 0 0;
    display: flex;
    gap: 8px;
}
.abbrs p span:first-child {
    font-weight: 500;
}
footer a {
    text-decoration: none;
    color: var(--red);
    display: block;
    text-align: center;
    margin: 20px auto;
    font-size: 13px;
    font-weight: 500;
}
.bottom {
    padding: 24px 10px 8px;
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}
.bottom .btn {
    text-decoration: none;
    background-color: var(--yellow);
    color: #000;
    display: inline-flex;
    padding: 10px 16px;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 3px 5px #ccc;
}
.bottom .btn:hover {
    box-shadow: unset;
}
.bottom img.weare30 {
    width: 200px;
}
@media only screen and (min-width: 420px) {
    .abbrs {
        grid-template-columns: 1fr 1fr;
    }
}
@media only screen and (min-width: 680px) {
    form {
        padding: 10px 60px 44px;
        grid-template-columns: 1fr 1fr;
        gap: 10px 48px;
    }
    .abbrs {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .bottom {
        flex-direction: row;
        align-items: flex-start;
    }
}