form .action {
    display: flex;
    gap: 24px;
    flex-direction: column;
    width: 100%;
}

form .action .agree-col {
    box-sizing: border-box;
    width: 100%;
}

form .action .submit {
    width: 100%;
}

form .action .submit .btn {

}

/*filter-action*/
.filter-action  {
    width: 100%;
}

.filter-action .action .action-group {
    display: flex;
    gap: 10px;
}
@media only screen and (max-width: 1279px) {
    .filter-action .action .action-group {
        justify-content: space-between;
    }
}
@media only screen and (max-width: 766px) {
    .filter-action .action .action-group {
        justify-content: center;
        flex-direction: column;
        gap: 28px;
    }
}
.filter-action .action .action-group .submit {
    width: auto;
}
@media only screen and (max-width: 766px) {
    .filter-action .action .action-group .submit .btn {
        width: 100%;
    }
    .filter-action .action .action-group .submit .btn .btn-part.btn-text {
        width: calc(100% - 46px - 2px);
        text-align: center;
    }
}

.filter-action .action .action-group .reset {
    display: inline-block;
    width: auto;
}

@media only screen and (max-width: 766px) {
    .filter-action .action .action-group .reset {
        display: flex;
        justify-content: center;
    }
}

.filter-action .note-block {
    display: inline-block;
    width: 100%;
}

/*toggabale-form-group*/
.toggabale-form-group {
    width: 100%;
}

.toggabale-form-group .toggabale-form-group-holder {
    width: 100%;
}

.toggabale-form-group .toggabale-form-group-holder .toggle-container {
    width: 100%;
    position: relative;
    height: 58px;
}

.toggabale-form-group .toggabale-form-group-holder .toggle-container .toggle-group {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    transition: all 300ms;
}

.toggabale-form-group .toggabale-form-group-holder .toggle-container .toggle-group.inactive {
    opacity: 0;
    transition: all 300ms;
}

form .note-block .note {
    display: inline-block;
    width: 100%;
    position: relative;
    padding-top: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 23px;
}

@media only screen and (max-width: 1279px) {
    form .note-block .note {
        font-size: 14px;
        line-height: 20px;
    }
}

@media only screen and (max-width: 766px) {
    form .note-block .note {
        font-size: 12px;
        line-height: 17px;
    }
}

form .note-block .note.success {
    color: #5cb85c;
}

form .note-block .note.success:before {
    border-color: #5cb85c;
}

form .note-block .note.error {
    color: var(--brand-red-primary);
}

form .note-block .note.error:before {
    border-color: var(--brand-red-primary);
}

form .note-block .note.warning {
    color: #f0ad4e;
}

form .note-block .note.warning:before {
    border-color: #f0ad4e;
}

form .note-block .note:before {
    content: "";
    display: inline-block;
    width: 88px;
    height: 0;
    border-top: 2px solid #777;
    position: absolute;
    left: 0;
    top: 0;
}

form .form-group {
    display: inline-block;
    width: calc(100% + 2px);
    margin-left: -1px;
    vertical-align: top;
}

form .form-group .form-col {
    float: left;
    width: 100%;
    box-sizing: border-box;
    padding: 0 1px;
}

form .form-group .form-col.col-20 {
    width: 20%;
}

form .form-group .form-col.col-25 {
    width: 25%;
}

form .form-group .form-col.col-33 {
    width: 33.333%;
}

form .form-group .form-col.col-50 {
    width: 50%;
}

form .form-group .form-col.col-66 {
    width: 66.666%;
}

form .form-group .form-col.col-75 {
    width: 75%;
}

form .form-group .form-col.col-80 {
    width: 80%;
}

form .form-group .form-col.col-100 {
    width: 100%;
}

@media only screen and (max-width: 1279px) {
    form .form-group .form-col.col-20-sm {
        width: 20%;
    }

    form .form-group .form-col.col-25-sm {
        width: 25%;
    }

    form .form-group .form-col.col-33-sm {
        width: 33.333%;
    }

    form .form-group .form-col.col-50-sm {
        width: 50%;
    }

    form .form-group .form-col.col-66-sm {
        width: 66.666%;
    }

    form .form-group .form-col.col-75-sm {
        width: 75%;
    }

    form .form-group .form-col.col-80-sm {
        width: 80%;
    }

    form .form-group .form-col.col-100-sm {
        width: 100%;
    }
}

@media only screen and (max-width: 766px) {
    form .form-group .form-col.col-20-xs {
        width: 20%;
    }

    form .form-group .form-col.col-25-xs {
        width: 25%;
    }

    form .form-group .form-col.col-33-xs {
        width: 33.333%;
    }

    form .form-group .form-col.col-50-xs {
        width: 50%;
    }

    form .form-group .form-col.col-66-xs {
        width: 66.666%;
    }

    form .form-group .form-col.col-75-xs {
        width: 75%;
    }

    form .form-group .form-col.col-80-xs {
        width: 80%;
    }

    form .form-group .form-col.col-100-xs {
        width: 100%;
    }
}

form .form-field {
    display: flex;
    width: 100%;
    margin-bottom: 12px;
}

form.big-field-gap .form-field {
    margin-bottom: 12px;
}

/*form-field*/
form .form-field .select,
form .form-field .input,
form .form-field .checkcontainer,
form .form-field .file-upload {
    display: inline-block;
    width: 100%;
    position: relative;
}

form .form-field .select.error .name,
form .form-field .input.error .name,
form .form-field .file-upload.error .name {
    color: var(--brand-red-primary) !important;
}

form .form-field .select.success .name,
form .form-field .input.success .name,
form .form-field .checkcontainer.success .name,
form .form-field .file-upload.success .name {
    color: #5cb85c !important;
}

form .form-field .select.warning .name,
form .form-field .input.warning .name,
form .form-field .checkcontainer.warning .name,
form .form-field .file-upload.warning .name {
    color: #f0ad4e !important;
}

form .form-field .select .name,
form .form-field .input .name,
form .form-field .checkcontainer .name,
form .form-field .file-upload .name {
    display: inline-block;
    width: 100%;
    margin-bottom: 6px;
    font-size: var(--font-size-paragraph);
    line-height: var(--line-height-paragraph);
}

form .form-field .select .name mark,
form .form-field .input .name mark,
form .form-field .checkcontainer .name mark,
form .form-field .file-upload .name mark {
    color: #0057f8;
    background: none;
    font-weight: bold;
}

form .form-field .select .note,
form .form-field .input .note,
form .form-field .checkcontainer .note,
form .form-field .file-upload .note {
    display: inline-block;
    width: 100%;
    font-style: normal;
    font-weight: normal;
    font-size: var(--font-size-paragraph-small);
    line-height: var(--line-height-paragraph-small);
    color: #777;
    margin: 10px 0 0;
}

/*checkcontainer*/
form .checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

form .checkbox-list .form-field {
    margin: 0;
}

form .form-field .checkcontainer {
    width: 100%;
    display: inline-block;
    position: relative;
    cursor: pointer;
    font-style: normal;
    font-weight: normal;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

form .form-field .checkcontainer.error .checkmark {
    border-color: var(--brand-red-primary) !important;
}

form .form-field .checkcontainer.success .checkmark {
    border-color: #5cb85c;
}

form .form-field .checkcontainer.warning .checkmark {
    border-color: #f0ad4e;
}

form .form-field .checkcontainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

form .form-field .checkcontainer input:checked~.checkmark {
    border-color: var(--brand-orange-primary);
}
form .form-field .checkcontainer.error input:checked~.checkmark {
    border-color: var(--brand-red-primary);
}

form .form-field .checkcontainer.success input:checked~.checkmark {
    border-color: #5cb85c;
}

form .form-field .checkcontainer.warning input:checked~.checkmark {
    border-color: #f0ad4e;
}

form .form-field .checkcontainer input:checked~.checkmark::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(12);
    transition: all 500ms ease;
}

@media (hover: hover) {
    form .form-field .checkcontainer:hover input~.checkmark {
        border-color: var(--brand-orange-primary);
        transition: all 300ms;
    }
}

form .form-field .checkcontainer .checkmark {
    float: left;
    left: 0px;
    top: 0px;
    height: 20px;
    width: 20px;
    box-sizing: border-box;
    background-color: var(--brand-blue-primary-8);
    border-radius: 0;
    border: 1px solid var(--brand-blue-primary-8);
    position: relative;
    transition: all 300ms;
}
form .form-field .checkcontainer.radio .checkmark {
    border-radius: 50%;
}
form .form-field .checkcontainer.white .checkmark,
form.white .form-field .checkcontainer .checkmark {
    background-color: var(--brand-white-primary-8);
    border: 1px solid var(--brand-white-primary-8);
}

form .form-field .checkcontainer .checkmark::after {
    content: "";
    position: absolute;
    display: inline-block;
    opacity: 0;
    left: 50%;
    top: 50%;
    width: 1px;
    height: 1px;
    background-color: var(--brand-orange-primary);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: all 500ms ease;
}
form .form-field .checkcontainer.radio .checkmark::after {
    border-radius: 50%;
}

form .form-field .checkcontainer .name {
    margin: 0;
    float: left;
    width: calc(100% - 20px - 9px);
    margin-left: 9px;
    font-size: var(--font-size-paragraph-small);
    line-height: var(--line-height-paragraph-small);
    color: var(--brand-blue-primary);
}

form .form-field .checkcontainer.white .name,
form.white .form-field .checkcontainer .name {
    color: var(--brand-white-primary);
}

form .form-field .checkcontainer .name a {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-decoration-color: currentColor;
}

/*selectric*/
form .form-field .select.error .selectric-selectric-select .selectric {
    
}

form .form-field .select.error .note {
    color: #FA6626;
}

form .form-field .select.success .selectric-selectric-select .selectric {
    
}

form .form-field .select.success .selectric-selectric-select .selectric .label {
    color: #5cb85c;
}

form .form-field .select.warning .selectric-selectric-select .selectric {
    
}

form .form-field .select.warning .selectric-selectric-select .selectric .label {
    color: #f0ad4e;
}

form .form-field .select .selectric-selectric-select .selectric {
    width: 100%;
    height: 44px;
    display: flex;
    gap: 2px;
    border: none;
    background-color: transparent;
    box-sizing: border-box;
}
@media only screen and (max-width: 1279px) {
    form .form-field .select .selectric-selectric-select .selectric {
        height: 46px;
    }
}

form .form-field .select.alt .selectric-selectric-select .selectric {
    height: 36px;
    gap: 0;
}

form .form-field .select .selectric-selectric-select .selectric .label {
    display: inline-flex;
    background-color: var(--brand-blue-primary-8);
    height: 100%;
    align-items: center;
    font-family: "HSE_Sans", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: var(--font-size-tags);
    line-height: var(--line-height-tags);
    color: var(--brand-blue-primary);
    width: calc(100% - 2px - 44px);
    margin: 0;
    text-transform: uppercase;
    box-sizing: border-box;
    padding: 10px 14px;
}
@media only screen and (max-width: 1279px) {
    form .form-field .select .selectric-selectric-select .selectric .label {
        width: calc(100% - 2px - 46px);
    }
}

form .form-field .select.alt .selectric-selectric-select .selectric .label {
    width: calc(100% - 36px);
}

form .form-field .select.white .selectric-selectric-select .selectric .label,
form.white .form-field .select.white .selectric-selectric-select .selectric .label {
    background-color: var(--brand-white-primary);
}

form .form-field .select.orange .selectric-selectric-select .selectric {
    background-color: #FB8551;
}

form .form-field .select.orange .selectric-selectric-select .selectric .label {
    background-color: var(--brand-orange-primary);
    color: var(--brand-white-primary);
}

form .form-field .select select {
    color: black;
}

form .form-field .select .selectric-selectric-select .selectric .button {
    height: 44px;
    width: 44px;
    box-sizing: border-box;
    transition: all 300ms;
    background-color: var(--brand-blue-primary-8);
}
@media only screen and (max-width: 1279px) {
    form .form-field .select .selectric-selectric-select .selectric .button {
        height: 46px;
        width: 46px;
    }
}

form .form-field .select.alt .selectric-selectric-select .selectric .button  {
    height: 36px;
    width: 36px;
}

form .form-field .select.white .selectric-selectric-select .selectric .button,
form.white .form-field .select .selectric-selectric-select .selectric .button {
    background-color: var(--brand-white-primary);
}
form .form-field .select.orange .selectric-selectric-select .selectric .button {
    background-color: var(--brand-orange-primary);
}

@media (hover: hover) {
    form .form-field .select .selectric-selectric-select .selectric .button:hover {
        background-color: var(--brand-blue-primary-8);
        transition: all 300ms;
    }
}
@media (hover: hover) {
    form .form-field .select.white .selectric-selectric-select .selectric .button:hover,
    form.white .form-field .select .selectric-selectric-select .selectric .button:hover {
        background-color: var(--brand-white-primary);
        transition: all 300ms;
    }
}
@media (hover: hover) {
    form .form-field .select.orange .selectric-selectric-select .selectric .button:hover {
        background-color: var(--brand-orange-primary);
        transition: all 300ms;
    }
}

form .form-field .select .selectric-selectric-select .selectric .button:after {
    border: none;
    background-image: url(../img/selectric-shevron.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    background-clip: border-box;
    width: 100%;
    height: 100%;
}

form .form-field .select.orange .selectric-selectric-select .selectric .button:after {
    background-image: url(../img/selectric-shevron-white.svg);
}

form .form-field .select.alt .selectric-selectric-select .selectric .button:after {
    background-image: url(../img/selectric-shevron-alt.svg);
}

form .form-field .select .selectric-selectric-select .selectric-items {
    background: var(--brand-white-primary);
    border: 1px solid var(--brand-white-primary);
    box-sizing: border-box;
    box-shadow: 0 0 12px -9px;
    border-radius: 0;
    top: calc(100% + 2px);
}
form .form-field .select.orange .selectric-selectric-select .selectric-items {
    background: var(--brand-orange-primary);
    border: 1px solid var(--brand-orange-primary);
    border-top: 2px solid #FB8551;
}

form .form-field .select .selectric-selectric-select .selectric-items .selectric-scroll ul {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-sizing: border-box;
    padding: 14px;
}

form .form-field .select .selectric-selectric-select .selectric-items .selectric-scroll ul li {
    display: flex;
    align-items: start;
    font-family: "HSE_Sans", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: var(--font-size-paragraph-small);
    line-height: var(--line-height-paragraph-small);
    min-height: auto;
    padding: 4px 0px;
    box-sizing: border-box;
    color: var(--brand-blue-primary);
    background-color: transparent;
    transition: all 300ms;
    border-left: 1px solid transparent;
}
form .form-field .select.orange .selectric-selectric-select .selectric-items .selectric-scroll ul li {
    color: var(--brand-white-primary);
}

@media (hover: hover) {
    form .form-field .select .selectric-selectric-select .selectric-items .selectric-scroll ul li:hover {
        background-color: transparent;
        color: var(--brand-orange-primary);
        transition: all 300ms;
    }
}

@media (hover: hover) {
    form .form-field .select.orange .selectric-selectric-select .selectric-items .selectric-scroll ul li:hover {
        border-color: var(--brand-white-primary);
        color: var(--brand-white-primary);
        padding-left: 12px;
        transition: all 300ms;
    }
}

form .form-field .select .selectric-selectric-select .selectric-items .selectric-scroll ul li.selected {
    border-color: var(--brand-orange-primary);
    padding-left: 12px;
    transition: all 300ms;
}

form .form-field .select.orange .selectric-selectric-select .selectric-items .selectric-scroll ul li.selected {
    border-color: var(--brand-white-primary);
    transition: all 300ms;
}

form .form-field .select .selectric-selectric-select .selectric-items .selectric-scroll ul li.disabled {
    display: none;
}

/*input & textarea*/
form .form-field .input .side-line {
    display: inline-block;
    width: 100%;
    position: relative;
}

form .form-field .input .side-line::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 0%;
    background-color: var(--brand-orange-primary);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    transition: height 300ms;
}
form .form-field .input .side-line.disabled::before  {
    display: none;
}

form .form-field .input.error .side-line::before {
    height: 100%;
    background-color: var(--brand-red-primary);
}
form .form-field .input.success .side-line::before {
    height: 100%;
    background-color: #5cb85c;
}
form .form-field .input.warning .side-line::before {
    height: 100%;
    background-color: #f0ad4e;
}

form .form-field .input .side-line input {
    position: relative;
    z-index: 1;
}

form .form-field .input .side-line.focus::before {
    height: 100%;
    transition: height 300ms;
}

@media (hover: hover) {
    form .form-field .input .side-line:hover::before {
        height: 100%;
        transition: height 300ms;
    }
}

form .form-field .input .side-line .addon {
    position: absolute;
    right: 13px;
    top: 14px;
    z-index: 3;
}

form .form-field .input.date-input .side-line .addon {
    z-index: -1;
}

form .form-field .input .side-line .addon .addon-action {
    color: var(--brand-blue-primary-20);
    transition: all 300ms;
}
@media (hover: hover) {
    form .form-field .input .side-line .addon .addon-action:hover {
        color: var(--brand-blue-primary);
        cursor: pointer;
        transition: all 300ms;
    }
}
form .form-field .input.white .side-line .addon .addon-action,
form.white .form-field .input .side-line .addon .addon-action  {
    color: var(--brand-white-primary-20);
    transition: all 300ms;
}
@media (hover: hover) {
    form .form-field .input.white .side-line .addon .addon-action:hover,
    form.white .form-field .input .side-line .addon .addon-action:hover {
        color: var(--brand-white-primary);
        cursor: pointer;
        transition: all 300ms;
    }
}

form .form-field .input.date-input .side-line:hover .addon .addon-action {
    
}
@media (hover: hover) {
    form .form-field .input.date-input .side-line:hover .addon .addon-action {
        color: var(--brand-white-primary);
    }
}

form .form-field .input.date-input .side-line input {

}
@media (hover: hover) {
    form .form-field .input.date-input .side-line input:hover {
        cursor: pointer;
    }
}

form .form-field .input .side-line .clear {
    position: absolute;
    right: 13px;
    top: 14px;
    color: var(--brand-blue-primary);
    opacity: 0;
    cursor: text;
    transition: all 300ms;
    z-index: -1;
}
form .form-field .input.white .side-line .clear,
form.white .form-field .input .side-line .clear {
    color: var(--brand-white-primary);
}

form .form-field .input .side-line .clear.active {
    opacity: 1;
    z-index: 3;
}
@media (hover: hover) {
    form .form-field .input .side-line .clear.active:hover {
        color: var(--brand-orange-primary);
    }
}
@media (hover: hover) {
    form .form-field .input .side-line .clear.active:hover {
        color: var(--brand-orange-primary);
        cursor: pointer;
    }
}

form .form-field .input.error .note,
form .form-field .input.error .note {
    color: #FA6626;
}

form .form-field .input.success .note,
form .form-field .input.success .note{
    color: #5cb85c;
}


form .form-field .input.warning .note,
form .form-field .input.warning .note {
    color: #f0ad4e;
}


form .form-field .input input,
form .form-field .input textarea {
    display: inline-flex;
    float: left;
    width: 100%;
    height: 44px;
    align-items: center;
    padding: 10px 14px;
    font-family: "HSE_Sans", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: var(--font-size-paragraph-small);
    line-height: var(--line-height-paragraph-small);
    background: var(--brand-blue-primary-8);
    border: none;
    box-sizing: border-box;
    border-radius: 0;
    transition: all 300ms;
    color: var(--brand-blue-primary);
    caret-color: var(--brand-blue-primary-20)
}
@media only screen and (max-width: 1279px) {
    form .form-field .input input,
    form .form-field .input textarea {
        height: 46px;
    }
}

form .form-field .input.white input,
form .form-field .input.white textarea,
form.white .form-field .input input,
form.white .form-field .input textarea {
    color: var(--brand-white-primary);
    background: var(--brand-white-primary-8);
    caret-color: var(--brand-white-primary-20)
}   

form .form-field .input input:focus,
form .form-field .input textarea:focus {
    outline: none;
    transition: all 300ms;
}

form .form-field .input input:disabled,
form .form-field .input textarea:disabled {
    pointer-events: none;
    color: var(--brand-blue-primary-20);
}

form .form-field .input input::placeholder,
form .form-field .input textarea::placeholder {
    color: var(--brand-blue-primary-44);
    transition: all 300ms;
}

form .form-field .input input:focus::placeholder,
form .form-field .input textarea:focus::placeholder {
    color: var(--brand-blue-primary-32);
    transition: all 300ms;
}

form .form-field .input.white input::placeholder,
form .form-field .input.white textarea::placeholder,
form.white .form-field .input input::placeholder,
form.white .form-field .input textarea::placeholder  {
    color: var(--brand-white-primary-44);
    transition: all 300ms;
}

form .form-field .input.white input:focus::placeholder,
form .form-field .input.white textarea:focus::placeholder,
form.white .form-field .input input:focus::placeholder,
form.white .form-field .input textarea:focus::placeholder  {
    color: var(--brand-white-primary-32);
    transition: all 300ms;
}

form .form-field .input input:disabled::placeholder {
    color: var(--brand-blue-primary-20);
}
form .form-field .input.white input:disabled::placeholder,
form.white .form-field .input input:disabled::placeholder {
    color: var(--brand-white-primary-20);
}

form .form-field .input textarea {
    height: 160px;
    resize: none;
}
@media only screen and (max-width: 1279px) {
    form .form-field .input textarea {
        height: 140px;
    }
}
@media only screen and (max-width: 766px) {
    form .form-field{
        margin-bottom: 10px;
    }
    form .form-field .input textarea {
        height: 120px;
    }
}

/*file-upload*/
form .form-field .file-upload {
    display: flex;
    flex-direction: column;
}

form .form-field .file-upload.error .filename {
    color: var(--brand-red-primary);
}

form .form-field .file-upload.success .filename {
    color: #5cb85c;
}

form .form-field .file-upload.warning .filename {
    color: #f0ad4e;
}

form .form-field .file-upload input {
    display: none;
}

form .form-field .file-upload .file-btn {
    display: flex;
    gap: 6px;
    align-items: center;
    color: var(--brand-blue-primary);
    font-size: var(--font-size-tags);
    line-height: var(--line-height-tags);
    transition: all 300ms;
}
@media (hover: hover) {
    form .form-field .file-upload .file-btn:hover {
        cursor: pointer;
        color: var(--brand-orange-primary);
        transition: all 300ms;
    }
}
form .form-field .file-upload.white .file-btn,
form.white .form-field .file-upload .file-btn {
    color: var(--brand-white-primary);
}
@media (hover: hover) {
    form .form-field .file-upload.white .file-btn:hover,
    form.white .form-field .file-upload .file-btn:hover {
        color: var(--brand-orange-primary);
    }
}

form .form-field .file-upload .file-btn .icon {
    width: 12px;
    height: 12px;
}

form .form-field .file-upload .file-btn .icon svg {
    width: 100%;
}

form .form-field .file-upload .file-btn .text {
    
}

form .form-field .file-upload .filenames {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 0 0px;
}

form .form-field .file-upload .note{
    color: #FA6626;
}

form .form-field .file-upload .filenames .file {
    display: flex;
    align-items: center;
    gap: 6px;
}

form .form-field .file-upload .filenames .file .fileicon {
    width: 12px;
    height: 12px;
}

form .form-field .file-upload .filenames .file .fileicon svg {
    width: 100%;
    height: 100%;
}

form .form-field .file-upload .filenames .file .name {
    font-size: var(--font-size-tags);
    line-height: var(--line-height-tags);
    width: auto;
    color: var(--brand-blue-primary);
    margin: 0;
    max-width: 75%;
    display: flex;
}

form .form-field .file-upload .filenames .file .name .filename-string {
    -webkit-line-clamp: 1;
    line-clamp: 1;
}


form .form-field .file-upload.white .filenames .file .name,
form.white .form-field .file-upload .filenames .file .name {
    color: var(--brand-white-primary);
}

form .form-field .file-upload .filenames .file .action {
    width: 12px;
    height: 12px;
}
form .form-field .file-upload .filenames .file .action a {
    display: block;
    width: 100%;
    height: 100%;
    color: var(--brand-blue-primary);
}
@media (hover: hover) {
    form .form-field .file-upload .filenames .file .action a:hover {
        color: var(--brand-orange-primary);
    }
}

form .form-field .file-upload .filenames .file .action a svg {
    width: 100%;
    height: 100%;
}

form .form-field .file-upload.white .filenames .file .action a,
form.white .form-field .file-upload .filenames .file .action a {
    color: var(--brand-white-primary);
}
@media (hover: hover) {
    form .form-field .file-upload.white .filenames .file .action a:hover,
    form.white .form-field .file-upload .filenames .file .action a:hover {
        color: var(--brand-orange-primary);
    }
}

/*rating*/
form .form-field .rating {
    display: flex;
    align-items: center;
}

form .form-field .rating .name {
    color: var(--brand-blue-primary);
    font-size: var(--font-size-tags);
    line-height: var(--line-height-tags);
    margin-right: 10px;
}

form .form-field .rating .review-rating {
    margin: 0 -1.5px;
}

form .form-field .rating .review-rating .star {
    margin: 0 1.5px;
    float: left;
}

form .form-field .rating .review-rating .star.selected a {
    color: var(--brand-blue-primary);
}

form .form-field .rating .review-rating .star.focus a {
    color: var(--brand-blue-primary);
}

form .form-field .rating .review-rating .star a {
    color: var(--brand-blue-primary-20);
}

form .form-field .rating .review-rating .star a svg {
    width: 18px;
    height: auto;
}