
#commonPopup {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(0, 0, 0, 0.5);
        justify-content: center;
    align-items: center;
    display: none;
}

.sym-popup__overlay {
    width: 300px;
    height: auto;
    background: var(--color-white);
    position: relative;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
        align-items: center;
    padding: 50px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease-in-out;
}
.sym-popup__overlay .sym-popup__button {
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
}
.sym-popup__overlay .sym-popup__cancle-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
}
.sym-popup__content {
    width: 100%;
}
.sym-popup__content-input {
    display: none;
    height: 62px;
    border: var(--border-primary);
    width: 100%;
    text-align: center;
    border-radius: 10px;
}
.sym-popup__content-input:focus {
    outline: none;
}
.sym-popup__button button {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    border-radius: 5px;
    width: 140px;
}
.sym-popup__button .sym-popup__trash-btn {
    background: var(--color-error);
    color: var(--color-white);
    width: 140px;
}
.sym-popup__button .sym-popup__trash-btn img {
    margin-right: 5px;
}
.sym-popup__button--outline {
    border: var(--border-primary);
    background: var(--color-white);
    color: var(--color-primary);
}
.sym-popup__button--warning4 {
    background: var(--color-yellow1);
    color: var(--color-black);
}
.sym-popup__button--primary {
    background: var(--color-while);
    color: var(--color-yellowGray);
    border: 1px solid var(--color-yellowGray);
}
.sym-popup__title {
    font-size: var(--heading1);
    font-weight: bold;
    color: var(--color-primary);
}
.sym-popup__space {
    height: 40px;
}
.sym-popup__custom-content {
    text-align: center;
}
.sym-popup__message {
    color: var(--color-black);
    font-size: var(--heading6);
}