@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

.konkurspm {
    --maincolor: #7FBC03;
    --bgcolor: #F8F9FB;

    background-color: var(--bgcolor);
    font-family: "Inter", sans-serif;
    font-weight: 300;
}
.konkurspm p,
.konkurspm li {
    font-size: 16px !important;
}
.konkurspm strong,
.konkurspm b {
    font-weight: 600;
}
.img-visual {
    width: 100%;
    height: auto;
    display: block;
}

.konkurspm .font-light {
    font-weight: 300;
}
.konkurspm .font-16 {
    font-size: 16px;
}
.konkurspm input[type="checkbox"] {
    accent-color: var(--maincolor);
}
.konkurspm .underline {
    text-decoration: underline;
}

.konkurspm h1 {
    color: var(--maincolor);
    font-weight: 300;
}
.konkurspm h2 {
    font-weight: 300;
    color: inherit;
}
.konkurspm h1:after,
.konkurspm h2:after {
    margin-top:2rem;
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background-color: var(--maincolor);
}
.konkurspm .green-bg {
    background-color: var(--maincolor);
}
.konkurspm .green-bg h2:after {
    background-color: white;
}
.green-bg * {
    color: white !important;
}

.konkurspm .shadow {
    box-shadow: 1px 1px 14px rgba(0,0,0,.15);
}

.green-bg .number-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem 6rem;
}

@media screen and (min-width:768px) {
    .green-bg .number-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.green-bg .number-grid li {
    counter-increment: step-counter;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.green-bg .number-grid li:before {
    content: counter(step-counter);
    background-color: white;
    width: 48px;
    height: 48px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: var(--maincolor);
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* nominees */

.nominees {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.75rem 2rem;
}

@media screen and (min-width:768px) {
    .nominees {
        grid-template-columns: repeat(2, 1fr);
    }
}

.nominees label {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: white;
    font-size: 16px;
    font-weight: 300;
    padding: 1rem;
    justify-content: space-between;
}
.nominees input[type="radio"]:not(:disabled) + label {
    cursor: pointer;
}

.nominees label span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f1f1f1;
    color: var(--maincolor);
}
.nominees label span svg {
    display: none;
}

.nominees input[type="radio"] {
    display: none;
}

.nominees input[type="radio"]:not(:disabled) + label:hover {
    background-color: #e7ecf0;
}
.nominees input[type="radio"]:not(:disabled) + label:hover span {
    background-color: #fff;
}

.nominees input[type="radio"]:checked + label,
.nominees input[type="radio"]:checked + label:hover {
    background-color: var(--maincolor);
    color: white;
}

.nominees input[type="radio"]:checked + label span {
    background-color: #fff;
}

.nominees input[type="radio"]:checked + label svg {
    display: block;
}

.konkurspm .btn {
    background-color: var(--maincolor);
    color: white;
    padding: 1.25rem 3rem;
    font-size: 16px;
    font-weight: 600;
}

.konkurspm .check-row {
    display: flex;
    gap:10px;
    align-items: flex-start;
}

.error-form{
    color: red;
}