.small-dropdown-base-button {
    font-family: var(--family-tektur);
    font-size: 13px;
    font-weight: 500;
    color: #EFEDEC;
    text-transform: uppercase;
    border: 1px solid #354951;
    background: #1B2529;
    padding: 10px 12px;
    display: flex;
    gap: 8px;
    width: fit-content;
    cursor: pointer;
    justify-content: space-between;
    user-select: none;
    letter-spacing: 1px;
}
.small-dropdown-arrow {
    font-weight: bold;
    color: #10BADB;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}
.small-dropdown-base-button.expanded {
    background: #0B0F10;
}
.small-dropdown-base-button.expanded .small-dropdown-arrow{
    transform: rotate(270deg);
}
.small-dropdown-base-button.expanded ~ .small-dropdown-base-list{
    display: block;
}
.small-dropdown-status-icon {
    width: 20px;
    height: 20px;
    background: #fff;
}
.small-dropdown-status-icon.pending{
    background: var(--status-color-pending);
}
.small-dropdown-status-icon.in-progress{
    background: var(--status-color-in-progress);
}
.small-dropdown-status-icon.done{
    background: var(--status-color-done);
}
.small-dropdown-status-icon.reject{
    background: var(--status-color-reject);
}
.small-dropdown-base-list {
    font-family: var(--family-tektur);
    display: none;
    color: #EFEDEC;
    text-transform: uppercase;
    position: fixed;
    background: #1B2529;
    border: 1px solid #808080;
    font-family; var(--family-tektur);
    font-size: 13px;
    font-weight: 500;
    z-index: 100;
    letter-spacing: 1px;
}
.small-dropdown-list-item {
    cursor: pointer;
    user-select: none;
    padding: 10px 12px;
}
.small-dropdown-list-item.flex {
    display: flex;
    justify-content: space-between;
}
#small-dropdown-selector.flex {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    align-items: center;
}
.small-dropdown-list-item.selected {
    color: #0654EF;
}
.small-dropdown-list-item:hover {
    background: #0654EF;
    color: #EFEDEC;
}
.global-dropdown-label,
.global-file-input-label,
.global-textarea-label {
    color: #F3F2F1;
    font-family: var(--family-overpass);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}
.global-component.disabled .global-textarea-base {
    background: #101618;
    pointer-events: none;
}
.global-component.disabled .global-textarea-label-required {
    display: none;
}

.global-dropdown-label-required,
.global-textarea-label-required {
    color: #F70201;
}
.global-dropdown-button {
    margin-top: 8px;
    border: 1px solid #354951;
    background: #1B2529;
    display: flex;
    justify-content: space-between;
    height: fit-content;
    user-select: none;
    cursor: pointer;
}
.global-error-description {
    position: relative;
    color: #EB4755;
    font-family: var(--family-overpass);
    font-size: 13px;
    font-weight: 400;
}
.global-dropdown-button:hover {
    background: #202C31;
}
.global-dropdown-button.expanded {
    background: #0B0F10;
}
.global-dropdown-button.expanded .global-dropdown-select{
    color: #A2B8C3;
}
.global-dropdown-button.expanded .global-dropdown-arrow{
    transform: rotate(270deg);
}
.global-dropdown-button.expanded ~ .global-dropdown-list-base{
    display: block;
}
.global-dropdown-button.error {
    border-color: #EB4755;
}
.global-dropdown-button.error .global-dropdown-select{
    color: #EB4755;
}
.global-dropdown-select {
    color: #E9E8E8;
    font-family: var(--family-overpass);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 16px;
}
.global-dropdown-arrow-base {
    display: flex;
    background: #1B2529;
    width: 50px;
    height: 46px;
    justify-content: center;
    align-items: center;
}
.global-dropdown-arrow {
    font-weight: bold;
    color: #10BADB;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}
.global-dropdown-list-base {
    display: none;
    height: 0;
    width: 100%;
}
.global-dropdown-list-grid {
    display: grid;
    grid-template-columns: 20px 1fr 20px;
    grid-template-rows: 1fr;
    background: #1B2529;
}
.global-dropdown-list-grid-offset {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 20px;
    gap: 40px;
}
.global-dropdown-option-list {
    width: 100%;
    background: #1B2529;
}
.global-dropdown-option-item {
    position: relative;
    user-select: none;
    cursor: pointer;
    font-family: var(--family-overpass);
    font-size: 16px;
    font-weight: 400;
    color: #E9E8E8;
    padding: 10px 16px;
    z-index: 1;
}
.global-dropdown-option-item.selected {
    color: #709EF5;
}
.global-dropdown-option-item:hover {
    color: #FDFCFC;
    background: #0654EF4D;
}
.global-dropdown-angel {
    position: absolute;
    width: 28px;
    height: 28px;
    border-top: 2px solid #CCCCCC;
    background: #1B2529;
}
.global-dropdown-angel.bottom-left {
    bottom: 6px;
    left: 7px;
    transform: rotate(228deg);
}
.global-dropdown-angel.bottom-right {
    bottom: 6px;
    right: 7px;
    transform: rotate(132deg);
}
.global-dropdown-bottom-base {
    display: flex;
    justify-content: center;
    position: relative;
}
.global-dropdown-bottom {
    background: #1B2529;
    height: 20px;
    width: calc(100% - 40px);
    border-bottom: 2px solid #CCCCCC;
}
.global-textarea-base {
    margin-top: 8px;
    border: 1px solid #354951;
    background: #1B2529;
    height: 134px;
    display: flex;
}
.global-textarea {
    padding: 12px 0px 12px 12px;
    resize: none;
    background: unset;
    border: none;
    outline: none;
    width: calc(100% - 45px);
    height: 107px;
    color: #D4DEE3;
    font-family: var(--family-overpass);
    font-size: 16px;
    font-weight: 400;
}
.global-textarea::-webkit-scrollbar {
    background: unset;
    width: 0px;
}
.global-textarea-base.error {
    border-color: #EB4755;
}
.global-textarea-base.error .global-textarea::placeholder{
    color: #EB4755;
}
.global-textarea::placeholder {
    color: #BBCBD3;
    font-family: var(--family-overpass);
    font-size: 16px;
    font-weight: 400;
}
.global-textarea-clear {
    background-image: url('data:image/svg+xml,<svg width="18" height="17" viewBox="0 0 18 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.33341 5.34167H15.6667V16.175C15.6667 16.396 15.579 16.608 15.4227 16.7643C15.2664 16.9205 15.0544 17.0083 14.8334 17.0083H3.16675C2.94573 17.0083 2.73377 16.9205 2.57749 16.7643C2.42121 16.608 2.33341 16.396 2.33341 16.175V5.34167ZM4.00008 7.00834V15.3417H14.0001V7.00834H4.00008ZM6.50008 8.67501H8.16675V13.675H6.50008V8.67501ZM9.83342 8.67501H11.5001V13.675H9.83342V8.67501ZM4.83342 2.84167V1.17501C4.83342 0.953994 4.92121 0.742033 5.07749 0.585752C5.23377 0.429472 5.44573 0.341675 5.66675 0.341675H12.3334C12.5544 0.341675 12.7664 0.429472 12.9227 0.585752C13.079 0.742033 13.1667 0.953994 13.1667 1.17501V2.84167H17.3334V4.50834H0.666748V2.84167H4.83342ZM6.50008 2.00834V2.84167H11.5001V2.00834H6.50008Z" fill="%23587886"/></svg>');
    user-select: none;
    cursor: pointer;
    width: 18px;
    height: 18px;
    margin-top: 12px;
}
.global-textarea-clear.disabled {
    display: none;
}
.global-textarea-count {
    color: #9BAEB5;
    font-family: var(--family-tektur);
    font-size: 12px;
    font-weight: 400;
    display: flex;
    justify-content: end;
    gap: 8px;
}
.global-file-input-area {
    margin: 8px auto;
    background: #1B2529;
    border: 2px dashed #52E3FF;
    width: 99%;
    height: 194px;
    display: grid;
    user-select: none;
    cursor: pointer;
    justify-content: center;
    gap: 14px;
    align-items: baseline;
    grid-template-rows: repeat(3, max-content);
    align-content: center;
}
.global-file-input-area.drag-over {
    background: #2ED8FA33;
}
.global-file-input-area.error {
    background: #CE031433;
    border-color: #EB4755;
    color: #EB4755;
}
.global-file-input-main-message {
    color: #F3F2F1;
    font-family: var(--family-overpass);
    font-size: 15px;
    font-weight: 500;
}
.global-file-input-span-message {
    color: #52E3FF;
    font-family: var(--family-tektur);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}
.global-file-input-list-message {
    color: #9BAEB5;
    font-family: var(--family-overpass);
    font-size: 13px;
    font-weight: 400;
}
.global-file-input-preview {
    display: flex;
    gap: 14px;
    margin: 14px auto;
}
.global-image-base {
    position: relative;
}
.global-image:hover,
.global-image-base:has(.global-image-remove:hover) .global-image {
    filter: brightness(0.5);
}
.global-image {
    width: 200px;
    height: 150px;
}
.global-image-name {
    padding: 4px 0px 0px 0px;
    font-family: var(--family-overpass);
    font-size: 13px;
    font-weight: 400;
    color: #D4DEE3;
    width: 200px;
    word-break: break-word;
}
.global-image-remove {
    cursor: pointer;
    position: absolute;
    top: 8px;
    right: 8px;
}
.global-image-preload {
    border: 1px solid #354951;
    background: #1B2529;
    width: 198px;
    height: 148px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.global-image-preload svg {
    animation: spin 1s linear infinite;
}
.modal-button.submit.sending {
    padding: 0px;
    width: 135px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #5CE5FF;
}
.modal-button.submit svg {

    animation: spin 1s linear infinite;
}
.global-image-error-text {
    width: 200px;
    height: 150px;
    color: #FF5765;
    border: 1px solid #FF5765;
    background: #3B0819;
    font-family: var(--family-tektur);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    display: grid;
    align-items: center;
    grid-template-rows: 65px 44px 41px;
}
.global-image-remove-error {
    background: #FF5765;
    color: #060809;
    padding: 12px 0px;
    cursor: pointer;
    user-select: none;
}
.global-modal-error-message-base {
    display: flex;
    color: #FF5765;
    border: 1px solid #FF5765;
    background: #320111;
    font-family: var(--family-overpass);
    font-size: 15px;
    font-weight: 500;
    padding: 12px;
    gap: 8px;
    align-items: center;
    width: fit-content;
}
.global-modal-error-message-base.disabled {
    display: none;
}