/* popuper */
.popUpBody{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #00000091;
    z-index: 9999;
}

.popUpBody *::-webkit-scrollbar {
    width: 10px;
    /* height: 8px; */
    background-color: rgb(232 232 232);
}

.popUpBody *::-webkit-scrollbar-thumb {
    background: rgb(193 193 193);
    border-radius: 2px;
    width: 6px;
}
.popuper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--white);
    height: max-content;
    width: max-content;
    max-width: 500px;
    border-radius: 12px;
    padding: 20px;
}
.popuper__choises {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}
.popuper__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}
.popuper__title{
    font-weight: bold;
    font-size: 20px;
}
.popuper__text{
    max-height: 60vh;
    margin-bottom: 20px;
    flex-grow: 1;
    overflow: auto;
}

.popuper__body{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}
.popuper__close {
    cursor: pointer;
}
.popuper__close svg{
    width: 25px;
    height: 25px;
    fill: var(--ublue);
}
.body--fixed{
    overflow-y: hidden;
    padding-right: 10px;
}
.body--fixed header{
    padding-right: 30px;
}

@media (max-width: 800px) {
    .body--fixed{
        padding-right: 0;
    }
}

@media (max-width: 600px) {
    .popuper {
        height: 100%;
        min-height: -webkit-fill-available;
        max-height: 100vh;
        width: 100vw;
        border-radius: 0;
    }
    .popuper__body{
        overflow: auto;
    }
    .popuper__text{
        max-height: none;
        margin-bottom: 20px;
    }
 }
/* !popuper */