body > .container {
    min-height: calc(100vh - 128px - 260px);
}

.support-page {
    padding: 40px 0;
}

.support-page .page-name {
    font-size: 36px;
    text-align: center;
}



.support-page .row-alert  {
    border-radius: 8px;
    padding: 20px;
    background-color: rgba(236, 58, 58, 0.2);
    color: var(--theme-light-text-color);
}

.support-page .row-alert > .row-alert-center {
    text-align: center;
    padding-top: 8px;
    font-weight: 500;
}

.support-page .row-alert > .row-alert-center span {
    padding: 4px;
    border-radius: 4px;
    background-color: var(--theme-light-background-color);
    display: inline-block;
    max-width: calc(100% - 20px);
}

.support-page .row-alert > .row-alert-center a {
    margin-left: 4px;
    vertical-align: top;
}




.support-page .support-form-sended {
    display: none;
    padding: 40px;
    width: 440px;
    margin: auto;
    max-width: 100%;
}

.support-page .support-form-sended #support-form-sended {
    margin: auto;
}

.support-page .support-form-sended > .desc {
    padding-top: 40px;
    text-align: center;
}

.support-page .support-form {
    width: 620px;
    max-width: 100%;
    margin: auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.support-page .support-form > .form-submit-wrapper {
    display: flex;
    justify-content: center;
}

.support-page .input-block.prepend > .prepend,
.support-page .input-block.append > .append {
    opacity: 0.16;
    font-size: 18px;
    top: auto;
    bottom: 2px;
}

.support-page input[type="text"],
.support-page input[type="email"],
.support-page input[type="date"] {
    padding-top: 10px;
    padding-bottom: 10px;
}

.support-page .input-block select {
    padding-top: 0;
    padding-bottom: 0;
}

.support-page .input-block textarea {
    height: 208px;
}


.support-page .radio-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    padding-top: 4px;
}




.support-page .input-checkbox,
.support-page .input-radio {

}

.support-page .input-checkbox input[type="checkbox"],
.support-page .input-radio input[type="radio"] {
    height: 16px;
    width: 16px;
    vertical-align: top;
}



.checkbox-custom,
.radio-custom {
    display: inline-flex;
    position: relative;
    cursor: pointer;
    align-items: center;
    gap: 8px;
}

.checkbox-custom:before,
.radio-custom:before {
    content: "";
    display: inline-block;
    vertical-align: top;
    width: 32px;
    height: 20px;
    border-radius: 10px;
    background-color: rgba(0,0,0, 0.2);
    transition: all 200ms linear 0ms;
}

.radio-custom:before {
    width: 20px;
    background-color: rgba(0,0,0, 0.08);
}

.checkbox-custom:has(input:checked):before {
    background-color: rgba(78, 133, 15, 1);
}

.checkbox-custom:after,
.radio-custom:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    position: absolute;
    top: 2px;
    left: 2px;
    transition: all 200ms linear 0ms;
}

.radio-custom:after {
    opacity: 0;
    background-color: rgba(155, 234, 61, 1);
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
}

.radio-custom:has(input:checked):after {
    opacity: 1;
}

.checkbox-custom:has(input:checked):after {
    background-color: rgba(155, 234, 61, 1);
    left: calc(32px - 18px);
}

.checkbox-custom input[type="checkbox"],
.radio-custom input[type="radio"] {
    position: fixed;
    top: -9999px;
    left: -9999px;
    z-index: -9999;
    opacity: 0;
}