:root {
    --global-header-background-color: #0B0F10;
    --global-content-background-color: #101618;
    --global-border-color-white: #CCCCCC;
    --global-border-color-gray: #808080;

}
.base-global-modal {
    width: 710px;
    position: fixed;
    z-index: 1000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.base-global-modal.sending {
    user-select:none;
    pointer-events: none;
}
.global-modal-close-button {
    user-select: none;
    cursor: pointer;
    position: absolute;
    top: 2px;
    right: 2px;
    background: #1F2223;
    width: 69px;
    height: 69px;
    clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 27%, 73% 0%);
    z-index: 1;
    align-items: center;
    justify-content: center;
    display: flex;
}
.global-modal-close-button:hover {
    background: #303536;
}
.global-modal-close-button:active {
    background: #050505;
}
.global-modal-close-button:hover path{
    fill: #BCC0C2;
}
.global-modal-header-top {
    height: 20px;
    display: flex;
    justify-content: center;
    position: relative;
}
.global-modal-angle {
    position: absolute;
    border-left: 2px solid var(--global-border-color-white);
    width: 28px;
    height: 28px;
    background: var(--global-header-background-color);
}
.global-modal-angle.top-left {
    top: 6.3px;
    left: 6px;
    transform: rotate(45deg);
}
.global-modal-angle.top-right {
    top: 6.3px;
    right: 6px;
    transform: rotate(135deg);
}
.global-modal-angle.bottom-left {
    bottom: 6.3px;
    left: 6px;
    transform: rotate(315deg);
    background: var(--global-content-background-color);
}
.global-modal-angle.bottom-right {
    bottom: 6.3px;
    right: 6px;
    transform: rotate(225deg);
    background: var(--global-content-background-color);
}
.global-modal-header-middle {
    background: var(--global-header-background-color);
    width: calc(710px - 40px);
    height: 20px;
    display: flex;
    gap: 24px;
}
.global-modal-header-title {
    letter-spacing: 1px;
    background: var(--global-header-background-color);
    font-family: var(--family-tektur);
    font-size: 24px;
    font-weight: 600;
    color: #F3F2F1;
    text-transform: uppercase;
    padding: 0px 0px 20px 40px;
    border-left: 2px solid var(--global-border-color-white);
    border-right: 2px solid var(--global-border-color-white);
}
.global-modal-addition-info {
    background: var(--global-content-background-color);
    width: 100%;
}
.global-modal-addition-text {
    font-family: var(--family-overpass);
    font-size: 18px;
    font-weight: 400;
    color: #D6DDE1;
    padding: 24px 40px;
    width: 560px;
}
.global-modal-content-base {
    display: grid;
    grid-template-columns: 1fr 630px 1fr;
    grid-template-rows: auto;
    background: var(--global-content-background-color);
}
.global-modal-content-offset {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 40px;
}
.global-modal-content {
    display: grid;
    gap: 20px;
    max-height: 75vh;
    overflow: auto;
}
.global-modal-content::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}
.global-modal-bottom-base {
    height: 20px;
    display: flex;
    justify-content: center;
}
.global-modal-bottom-middle {
    background: var(--global-content-background-color);
    width: calc(710px - 40px);
    height: 20px;
    display: flex;
    gap: 24px;
}
.global-modal-custom-scrollbar {
    position: absolute;
    width: 4px;
    height: 100px;
    background: #D9D9D9;
}
.global-custom-scrollbar {
    position: absolute;
    width: 4px;
    height: 100px;
    background: #D9D9D9;
    z-index: 1000;
}
.small-global-modal-base {
    min-width: 475px;
    position: fixed;
    z-index: 1000;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -20%);
}
.small-global-modal-header {
    background: #304249;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.small-global-modal-header-title {
    font-family: var(--family-tektur);
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FAFAF9;
    padding: 16px;
}
.small-global-modal-header-close {
    position: absolute;
    right: 16px;
    cursor: pointer;
}
.small-global-modal-content {
    min-width: 475px;
    background: #1B2529;
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
}
.small-global-modal-content-text {
    padding: 24px 40px 0px 40px;
    font-family: var(--family-overpass);
    font-size: 15px;
    font-weight: 400;
    color: #F3F2F1;
    max-width: 391px;
}
.small-global-modal-content-actions {
    display: flex;
    gap: 48px;
    justify-content: center;
    padding-bottom: 32px;
}
.small-global-modal-base.error .small-global-modal-header-title {
    color: #EB4755;
}
.small-global-modal-base.error .small-global-modal-content-actions {
    justify-content: end;
    padding: 0px 32px;
    padding-bottom: 32px;
}