.gridItem {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.input {
    width: 100%;
    font-size: 16px;
    outline: none;
    color: #000000;
    border-radius: 10px;
    padding: 10px 20px;
    background: #f0f4f8;
    border: none;
}
.select {
    font-size: 16px;
    outline: none;
    background: #f0f4f8;
    color: #000000;
    border: none;
    padding: 10px 0;
}
.ss-main:focus{
    outline: none;
    box-shadow: none;
}
.inputGroup {
    display: flex;
    align-items: center;
    border: 1px solid #d9d9d9;
    border-radius: 2px;
    padding: 0 12px;
}
.inputGroup input {
    border: none;
}
.label {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    color: #000;
    display: flex;
    gap: 10px;
    flex-direction: column;
}
.labelGroup {
    display: flex;
    align-items: center;
    gap: 10px;
}
.checkboxLabel {
    font-size: 14px;
}
.checkboxWrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkboxContainer {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
}

.checkboxInput {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.customCheckbox {
    width: 16px;
    height: 16px;
    border: 1px solid #ccc;
    border-radius: 2px;
    background-color: #fff;
    transition: background-color 0.2s ease;
    position: relative;
}

.customCheckbox::after {
    content: '';
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 3px;
    height: 6px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkboxInput:checked + .customCheckbox {
    background-color: #22c55e;
    border-color: #22c55e;
}

.checkboxInput:checked + .customCheckbox::after {
    display: block;
}

.checkboxLabel {
    font-size: 14px;
}
.checkboxError .customCheckbox {
    background: red !important;
}

.radioWrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    user-select: none;
}

.radioInput {
    display: none;
}

.customRadio {
    width: 16px;
    height: 16px;
    border: 1px solid #ccc;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
    transition: all 0.2s ease;
}

.radioInput:checked + .customRadio {
    border-color: #22c55e;
    background-color: #fff;
}

.radioInput:checked + .customRadio::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
}
.inputDisabled {
    background-color: #f9f9f9;
    color: #999;
    cursor: not-allowed;
}
.inputError {
    border-color: red;
}

.formWrapper {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.button {
    width: max-content;
}
.textarea {
    max-width: 800px;
    max-height: 300px;
}
.textareaSupport {
    max-width: 450px;
    max-height: 300px;
}
.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.inputErrorStars {
    padding-bottom: 5px;
    border-bottom: 1px solid red;
    width: max-content;
}
.selectWrapper {
    border: 1px solid transparent;
}

.selectWrapper.error {
    border: 1px solid red;
    border-radius: 6px;
}
.ss-content .ss-list .ss-option.ss-highlighted,
.ss-content .ss-list .ss-option:not(.ss-disabled).ss-selected {
    color: #000000;
    background-color: #39e667;
}
.ss-content .ss-list .ss-option {
    color: #000000;
}
.ss-content .ss-list .ss-option:hover {
    color: #000000;
    background-color: rgba(20, 175, 9, 0.563);
}
.ss-option {
    padding: 5px 0 !important;
    padding-left: 12px !important;
}
.ss-single {
    color: #000000 !important;
    padding-left: 12px !important;
}
@media (max-width: 798px) {
    .gridItem {
        width: 100%;
    }
}
