.thanksModal {
    display: flex;
    width: min(90%, 50rem);
    padding: clamp(2rem, 5vw, 5rem);
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
    background: #1E1722;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

.thanksModalInnerContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 4vw, 5rem);
    align-self: stretch;
}

.thanksModalTitleContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 3rem);
    align-self: stretch;
}

.title {
    color: #FFF;
    text-align: center;
    font-family: "ZT Neue Ralewe";
    font-size: clamp(3rem, 6vw, 6rem);
    font-style: italic;
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.thxModalhorizontal_line {
    width: min(80%, 40rem);
    height: 1px;
    background: #FFF;
}

.thanksModalText {
    color: #FFF;
    text-align: center;
    font-family: Forum;
    font-size: clamp(1rem, 1.8vw, 1.5rem);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.02em;
}

.thanksModalSVG {
    width: clamp(1rem, 1.5vw, 1.5rem);
    height: clamp(1rem, 1.5vw, 1.5rem);
    aspect-ratio: 1/1;
    position: absolute;
    right: clamp(2rem, 3vw, 3.5rem);
    top: clamp(1.5rem, 2.5vw, 2.75rem);
    cursor: pointer;
}

.thanksModalOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
}