﻿.fixed-box {
    height: 0px;
    width: 100%;
    transition: 1s;
    position: absolute;
    top: 47px;
    background-color: white;
    z-index: 1000;
    border-radius: 10px;
}

.suggested-main-box {
    width: auto;
    height: auto;
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    padding: 10px;
}

.text-box {
    width: auto;
    display: flex;
    flex-direction: column;
    font-size: 20px;
}

.suggested-word1 {
    color: red;
}

.suggested-word2 {
    color: var(--primary1);
}

.warning-img {
    height: 40px;
    width: 40px;
}

.close-box {
    position: absolute;
    top: 5px;
    right: 5px;
}

.close-img {
    width: 16px;
    height: 16px;
}

@media (max-width: 600px) {
    .text-box {
        font-size: 16px;
    }

    .warning-img {
        width: 20px;
        height: 20px;
    }
}