*,*:focus,*:hover {
    outline: 0
}

button {
    background: 0 0;
    border: none
}

h3 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

form {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    gap: 20px;
}

form label {
    margin-bottom: 0;
    width: 100%
}

form label .input_accept {
    display: none
}

form label .input_accept:checked+.label-accept::after {
    opacity: 1;
    visibility: visible;
    background-color: #fff
}

form label.checkbox {
    align-items: flex-start;
    cursor: pointer;
    display: flex;
    gap: 16px
}

form label.checkbox input {
    display: none
}

form label.checkbox input+span {
    align-items: center;
    border: 2px solid rgba(255, 255, 255, .4);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    padding: 8px;
    position: relative;
}

form label.checkbox input:checked+span:before {
    background-color: #fff;
    border-radius: 1px;
    content: '';
    height: 8px;
    position: absolute;
    width: 8px;
}

form label.checkbox a {
    color: rgba(255,255,255,.5);
    text-decoration: underline
}

form label.checkbox a:hover {
    color: inherit
}

form .label-name {
    display: block;
    font-weight: 500;
    margin-bottom: 8px
}

form .label-input {
    position: relative
}

form .label-image {
    align-items: center;
    background-color: #fbfbfb;
    border-radius: 80px;
    color: #332784;
    cursor: pointer;
    display: flex;
    font-size: 12px;
    font-weight: 500;
    gap: 1rem;
    justify-content: space-between;
    padding: 24px;
    position: relative;
}
form .label-image svg {
    flex-shrink: 0;
}

form .label-input button.calendar,
form .label-input button[data-click=calendar] {
    align-items: center;
    bottom: 0;
    display: flex;
    padding: 0 16px;
    position: absolute;
    right: 0;
    top: 0
}

form .label-input .select2-container--default .select2-selection--single {
    padding: 20px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,0)
}
form .label-input .select2-container--default .select2-selection--multiple {
    border: none;
    border-radius: 20px;
    height: 100%;
    min-height: unset;
}
form .label-input .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 20px;
    white-space: normal!important;
}
form .label-input .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    margin: 0!important;
    padding: 6px 10px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    color: #D4266E;
    float: none!important;
}
form .label-input .select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-search.select2-search--inline {
    display: none;
    height: 100%;
}

form label .label-input_date {
    position: relative;
    display: flex;
    align-items: center
}

form label .label-input_date svg {
    position: absolute;
    right: 20px
}

form label .label-accept {
    position: relative;
    display: flex;
    align-items: center
}

form label .label-accept p {
    margin: 0;
    max-width: 200px;
    font-weight: 500;
    line-height: 1.2;
    font-size: 12px;
    color: #fff
}

form label .label-accept p a {
    text-decoration: underline;
    color: rgba(255,255,255,.5)
}

form label .label-accept::before {
    content: '';
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    margin: 0 10px 0 0;
    border: 2px solid rgba(255,255,255,.16);
    border-radius: 6px
}

form label .label-accept::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background-image: url(../images/checkon.png);
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden
}

form label input:not([type=checkbox]):not([type=radio]):not([type=file]) {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,0);
    border-radius: 16px;
    color: rgba(255,255,255,.5);
    display: inline-block;
    padding: 20px;
    width: 100%
}

form label input:not([type=checkbox]):not([type=radio]):not([type=file])::placeholder {
    color: rgba(255,255,255,.5)
}

form label textarea {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,0);
    border-radius: 16px;
    color: rgba(255,255,255,.5);
    display: block;
    min-height: 64px;
    padding: 20px;
    resize: none;
    width: 100%;
}

form label textarea::placeholder {
    color: rgba(255,255,255,.5)
}

form label.OFFER_FILE {
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 16px;
    color: rgba(255,255,255,.5);
    display: flex;
    flex-direction: column;
    padding: 20px;
    text-align: center;
}
form label.OFFER_FILE input[type='file'] {
    display: none;
}
form label.OFFER_FILE span:not(:first-child) {
    font-size: 12px;
}

form .radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

form .radio-group__name {
    display: block;
    font-weight: 500;
    margin-bottom: 8px
}

form .radio-group__list,
form .radio-group__fields,
form .checkbox-group__fields {
    display: grid;
/*    grid-template-columns: repeat(2,1fr);*/
    gap: 4px
}

form .radio-group__list label {
    margin: 0
}

form .radio-group__list label input {
    display: none
}

form .radio-group__list label span {
    display: block;
    width: 100%;
    padding: 16px 10px;
    text-align: center;
    background: rgba(255,255,255,.08);
    border-radius: 16px
}

form .radio-group__list label input:checked+span {
    background: rgba(255,255,255,.24)
}

form .form-note {
    max-width: 260px;
    margin: 0 auto;
    font-weight: 500;
    font-size: 12px;
    text-align: center;
    color: rgba(255,255,255,.5)
}

@media (min-width: 768px) {
    form .radio-group__list {
        grid-template-columns:repeat(3,1fr)
    }
}

@media (min-width: 1024px) {
    form label .label-accept p {
        max-width:100%
    }

    form .form-note {
        max-width: 360px
    }
}

form input[type="submit"] {
    background: #D4266E;
    border: 0;
    border-radius: 80px;
    color: #fff;
    cursor: pointer;
    padding: 19px 20px;
    width: 100%;
}

select {
    pointer-events: none;
}

.enumeration,
.enumeration .select2,
.enumeration-select {
    display: inline-block;
    width: 100%!important
}

.select2-container--default {
    display: flex;
}

.select2-container--default .selection {
    width: 100%
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--single .select2-selection__rendered {
    background: 0 0;
    border: none;
    border-radius: 0;
    color: rgba(255,255,255,.5);
    height: auto;
    line-height: inherit
}

.select2-container--default .select2-selection--single {
    align-items: center;
    border-radius: 16px;
    color: rgba(255,255,255,.5);
    display: inline-flex;
    width: 100%
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    flex-grow: 1;
    padding: 0
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    position: relative;
    margin: 0 0 0 5px
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    position: absolute;
    top: calc(50% - 4px);
    border-color: #fff;
    border-width: 2px 2px 0 0;
    width: 8px;
    height: 8px;
    transform: rotate(135deg)
}

.select2-container--default .select2-results>.select2-results__options {
    padding: 10px
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
    width: 5px
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track {
    background-color: #f1f1f1
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
    background-color: #E72978;
    width: 10px
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: rgba(231,41,120,.5);
    border-radius: 50px;
    color: #1f1f1f
}

.select2-container--default .select2-results__option[aria-disabled],
.select2-container--default .select2-results__option[aria-selected] {
    padding: 10px 20px;
    margin: 0 0 10px
}

.select2-container--default .select2-results__option[aria-disabled]:last-child,
.select2-container--default .select2-results__option[aria-selected]:last-child {
    margin: 0
}

.select2-container--default .select2-results__option[aria-selected=true] {
    border-radius: 50px;
    background: rgba(51,39,132,.5)
}

.select2-container--default .select2-dropdown {
    border: none;
    box-shadow: 4px 16px 48px rgba(0,0,0,.16);
    border-radius: 24px
}

.select2-container--default.select2-container--open .select2-dropdown {
    background: #fff;
    color: #1f1f1f;
    overflow: hidden
}

.select2-container--default.select2-container--open .select2-dropdown--below {
    border-radius: 0 0 24px 24px
}

.select2-container--default.select2-container--open .select2-dropdown--above {
    border-radius: 24px 24px 0 0
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    top: calc(50% + 2px);
    border-color: #fff;
    border-width: 2px 2px 0 0;
    transform: rotate(-45deg)
}

.error {
    color: #DA4545;
    font-size: 12px;
    width: 100%;
}