.support-request-pop-up-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(247, 247, 247, 1);
}

.support-request-pop-up {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 588px;
    margin: 10px;
    padding: 34px 32px;
    background: #fff;
    border-radius: 8px;
}

.support-request-close {
    display: flex;
    width: 100%;
    justify-content: end;
}

.support-request-close img {
    cursor: pointer;
}

.support-request-title {
    height: 22px;
    left: calc(50% - 184px / 2);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 22px;
    color: #363430;
    margin-top: 6px;
    margin-bottom: 40px;
    text-align: center;
}

.support-request-input-flex-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.support-request-textarea-wrapper {
    margin-top: 18px;
}

.support-request-textarea-wrapper p {
    margin-bottom: 0px;
}

.support-request-textarea-wrapper textarea {
    width: 524px;
    height: 64px;
    resize: none;
    border-radius: 4px;
    border: 1px solid #d3dae6;
}

.support-request-textarea-wrapper textarea:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 2px solid #096dd9;
}

.support-request-textarea-wrapper textarea::placeholder {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #69707D;
}

.support-request-textarea-wrapper textarea {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #262626;
    padding-top: 5px;
    padding-left: 12px;
    font-style: normal;
}

.support-message-error {
    color: #F5222D;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    height: 20px;
}

.support-request-send-button {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.support-captcha-wrapper {
    height: 173px;
    border: 1px dashed;
    border-radius: 6px;
}

.support-captcha-title {
    text-align: center;
    height: 18px;
    margin-top: 16px;
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
}

.support-captcha-title span {
    text-align: center;
    color: #000000;
    height: 18px;
}

.support-captcha-current-item {
    text-align: center;
    height: 18px;
    margin-top: 12px;
}

.support-captcha-current-item span {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #096DD9;
}

.support-captcha-container-items {
    display: flex;
    justify-content: space-around;
}

.support-captcha-item {
    justify-content: center;
    align-items: center;
    display: flex;
    width: 72px;
    height: 72px;
    margin-top: 16px;
}

.support-captcha-item img {
    cursor: pointer;
}

.support-captcha-item-select {
    border-radius: 50%;
    border: 1px solid;
}

.support-captcha-container-error-message-error {
    color: #F5222D;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    height: 20px;
}

.support-request-checkbox-wrapper {
    width: 100%;
}

.support-request-status {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 95px;
    margin-bottom: 200px;
    top: 200px;
}

.support-request-status img {
    height: 96px;
}

.support-request-status-message {
    margin: 30px 10px 32px 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
}

@media (max-width: 480px) {
    .support-request-input-flex-container {
        flex-direction: column;
        gap: 0px;
    }

    .support-request-pop-up {
        padding: 10px;
    }

    .support-request-status {
        margin-top: 0px;
        margin-bottom: 121px;
    }

    .support-request-status-message {
        font-size: 14px;
    }

}

@media (max-height: 480px) {
    .support-request-pop-up-wrapper {
        height: max-content;
    }
}

