.container {
    width: 100%;
    max-width: 1033px;
    padding: 0 30px;
    margin: 0 auto;
    height: auto;
    overflow: visible;
}

.container.container--error_modal {
    max-width: 800px;
    max-height: 500px;
}

.hidden {
    display: none !important;
}

.transparent {
    opacity: 0 !important;
}

.modal__blur--container {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1000;

    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modal__blur--container.modal__blur--active {
    backdrop-filter: blur(5px);
}

.modal__overflow {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    background-color: var(--color-form-bg-alpha-85);

    transition: all 200ms linear;
}

.modal__blur--container .modal__overflow {
    width: 100%;
    height: 100%;
}

.modal__overflow * {
    box-sizing: border-box;
}

.modal__overflow.modal__overflow--transparent {
    background-color: transparent;
}

.modal__inner {
    position: relative;
    background-color: var(--color-form);
    color: var(--color-white);
    padding: 45px 40px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.modal__inner.modal__inner--error {
    background-color: var(--color-form-bg);
    padding: 67px;
    max-height: 100%;
    height: 100%;
}

.modal__inner .button__icon {
    position: absolute;
    top: 0;
    right: -95px;
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 17px;
}

.modal__header img {
    height: 50px;
}

.modal__logos {
    display: flex;
    gap: 17px;
}

.modal__copy {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--color-blue);
    border-radius: 10%;

    transition: background-color .2s ease;
}

.modal__copy:hover {
    background-color: var(--color-blue-2);
}

.modal__copy img {
    pointer-events: none;
    height: 35px;
}

.modal__title,
.modal__content,
.modal__content p {
    padding: 0;
    margin: 0;
    color: var(--color-white);
    width: 100%;
    font-family: "Jost", sans-serif;
    line-height: 1.2;
}

.modal__title {
    font-size: 26px;
    margin: 17px 0;
    font-weight: 600;
}

.modal__content {
    max-height: 235px;
    height: max-content;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 17px;
    flex: 1;
    padding: 2px 0;
}

.modal__content p {
    font-size: 21px;
    white-space: pre-wrap;
}

.modal__content p:empty {
    display: none !important;
}
