.trial-tool-screen{
    top: 0;
    left: 0;
    width: 100svw;
    height: 100svh;
    background-color: #0000002e;
    backdrop-filter: blur(8px);
    position: absolute;
    display: none;
    justify-content: center;
    align-items: flex-start;
    z-index: 30;
}
.trial-tool-effective-screen{
    width: 100svw;
    height: 100svh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.trial-tool-modal{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    background-color: white;
    width: min(65.429svw, 670px);
    border-radius: min(6.476svw, 5.232svh);
    font-size: 1rem;
    padding: min(4.857svw, 3.9245svh);
    border: min(1.0383svw, 0.839svh) solid #264AF4;
    max-height: 100svh;
}
.trial-tool-title{
    width: 100%;
    font-size: 2.3rem;
    font-weight: bold;
    margin-bottom: 1%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #E9ECFE;
    box-sizing: border-box;
    border: 1px solid #707070;
    border-radius: min(7.125svw, 72.96px);
}
.trial-tool-discription{
    margin-top: min(2.165svw, 1.832svh);
    font-size: 1.5rem;
    width: 100%;
    max-height: min(49.504svw, 20svh);
    overflow-y: auto;
}
.trial-tool-image{
    margin-top: min(2.165svw, 1.832svh);
    height: min(21svw, 215px);
    max-height: min(49.504svw, 20svh);
}
.trial-tool-image>img{
    height: 100%;
}
.trial-tool-dialogue{
    width: 100%;
    margin-top: auto;
    display: flex;
    flex-direction: column;
}
.trial-tool-dialogue>button {
    width: 100%;
    font-size: 2rem;
    padding-top: min(1.25svw, 1.01svh);
    padding-bottom: min(1.25svw, 1.01svh);
    padding-right: min(2.5svw, 2.02svh);
    padding-left: min(2.5svw, 2.02svh);
    border-radius: min(1.295svw, 1.046svh);
    border: 0;
    margin-top: min(2.165svw, 1.832svh);
    font-weight: bold;
    box-shadow: 0 0 5px gray;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: #264AF4;
    color: white;
}
@media screen and (max-width: 768px) {
    .trial-tool-title{
        font-size: 1.15rem;
    }
    .trial-tool-discription{
        font-size: 0.75rem;
    }
    .trial-tool-dialogue>button {
        font-size: 1rem;
    }
}