@media screen and (max-width: 400px){
    .FeedBack_Wrapper_Scene  { height: 100%; }
}

@media screen and (min-width: 400px) and (max-width: 800px){
    .FeedBack_Wrapper_Scene  {  }
}

@media screen and (min-width: 800px){
    .FeedBack_Wrapper_Scene  {  }
}





.FeedBack_Wrapper {
    position: fixed;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 99999;
}

.FeedBack_Wrapper_Background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--c-0);
    opacity: 0.6;
    z-index: 0;
}

.FeedBack_Wrapper_Scene {
    z-index: 2;
}

.FeedBack_Scene {
    width: 100%;
    padding: 20px 40px;

    border: 1px solid var(--c-2);
    border-radius: 5px;
    background: var(--c-0);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;

    box-shadow: 0 0 16px var(--c-2);
    z-index: 9;
}

.FeedBack_Scene_Image {
    display: flex;
    align-items: center;
}

.FeedBack_Scene > div {
    text-align: center;
}

.FeedBack_Scene_100 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.FeedBack_Scene_Buttons {
    margin-top: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.FeedBack_Additional {
    z-index: 1;

    width: 300px;
    position: absolute;
    margin: 0 auto;
    top: calc(50% + 10px);
    left: calc(50% - 150px);

    opacity: 0.9;
}