#form-registration {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}
form label {
    width: auto;
}
.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}
.form-group.has-error input {
    border: 1px solid red;
}
.form-control {
    border: 1px solid #dae2f3;
    border-radius: 5px;
    background-color: transparent;
    padding: 10px 43px;
    outline: none;
    color: #212529;
    width: 100%;
}
.form-group:not(.field-registrationform-recaptchareg):not(.field-loginform-recaptcha):before {
    content: "";
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
}
.form-control:focus {
    border: 1px solid #171feb;
}
.field-registrationform-username:before {
    background: url(../images/form/login.png);
}
.field-registrationform-name:before {
    background: url(../images/form/user.png);
}
.field-registrationform-email:before {
    background: url(../images/form/mai.png);
}
.field-registrationform-password:before {
    background: url(../images/form/locked.png);
}
.field-registrationform-password_confirm:before {
    background: url(../images/form/locked.png);
}
.field-registrationform-geo:before {
    background: url(../images/form/geo.png);
    z-index: 1;
}
.field-registrationform-deal:before {
    background: url(../images/form/deal.png);
    z-index: 1;
}
.field-registrationform-locale:before {
    background: url(../images/form/lang.svg);
    z-index: 1;
    width: 16px !important;
    height: 16px !important;
}
.messenger-wrap {
    display: flex;
}
#registrationform-messenger {
    padding: 10px 43px 10px 20px;
}
.field-registrationform-messenger {
    width: 100%;
}
#registrationform-messenger_active_id {
    display: none;
}
.custom-select {
    position: relative;
}
.custom-select__dropdown {
    position: absolute;
    top: calc(100% + 10px);
    padding: 10px;
    background-color: #fff;
    border: 1px solid #171feb;
    border-radius: 4px;
    z-index: 1;
}
.custom-select__value {
    position: relative;
    padding: 18px 0;
    width: 70px;
    border: 1px solid #dae2f3;
    border-radius: 8px;
    color: #212529;
    cursor: pointer;
}
.custom-select__value:before, .custom-select__value:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    display: block;
    width: 10px;
    height: 2px;
    transition: all 0.3s ease-out;
    background-color: #333333;
}
.custom-select__value:before {
    transform: translate(-3px, -50%) rotate(45deg);
}
.custom-select__value:after {
    transform: translate(3px, -50%) rotate(-45deg);
}
.custom-select__value .social-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    background-size: 100% auto;
}
.custom-select__value[value="telegram"] .social-icon {
    background-image: url(../images/form/telegram.png);
}
.custom-select__value[value="skype"] .social-icon {
    background-image: url(../images/form/skype.png);
}
.custom-select__value[value="whatsapp"] .social-icon {
    background-image: url(../images/form/whatsapp.svg);
}
.custom-select__value:hover {
    border: 1px solid #171feb;
}
.custom-select__option {
    position: relative;
    cursor: pointer;
    padding: 6px 0 6px 34px;
}
.custom-select__option:before {
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
}
.custom-select__option[label="telegram"]:before {
    content: url('../images/form/telegram.png');
}
.custom-select__option[label="skype"]:before {
    content: url('../images/form/skype.png');
}
.custom-select__option[label="whatsapp"]:before {
    content: url('../images/form/whatsapp.svg');
}
.custom-select__option:hover {
    background: #f9fbff;
}
span.select2-container .select2-selection {
    border: 1px solid #dae2f3;
    border-radius: 5px;
    box-shadow: none;
    padding-left: 43px;
}
span.select2-container.select2-container--open .select2-selection {
    position: relative;
    border: 1px solid #171feb;
}
span.select2-container .select2-selection:focus {
    border: 1px solid #171feb;
    box-shadow: none;
}
span.select2-container .select2-dropdown {
    border-color: #171feb;
}
span.select2-container .select2-selection--single .select2-selection__placeholder {
    color: #555555;
    font-size: 13px;
}
span.select2-container .select2-selection--multiple .select2-search--inline .select2-search__field {
    padding: 0;
}
.form-group .select2-selection:before {
    content: "";
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
}
.field-registrationform-partner_type .select2-selection:before {
    background-image: url(../images/form/briefcase.png);
}
.field-registrationform-traffic_source .select2-selection:before {
    background-image: url(../images/form/pie_chart.png);
}
.field-registrationform-ftd_per_day .select2-selection:before {
    background-image: url(../images/form/trending_up.png);
}
.field-registrationform-locale {
    display: flex;
    column-gap: 6px;
    flex-direction: row;
    align-items: flex-start;
}
#registrationform-locale {
    display: flex;
    column-gap: 4px;
}
.form-check {
    display: flex;
    align-items: center;
    column-gap: 8px;
}
.help-block-error {
    position: absolute;
    top: 100%;
    font-size: 12px;
    color: red;
}
.radio label {
    cursor: pointer;
}