* {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    align-items: center;
    background-color: #121212;
    justify-content: center;
}

.body {
    max-width: 800px;
    width: 100%;
}

.logo {
    height: 30px;
    padding: 20px;
}

.content {
    display: flex;
    flex-direction: column;
    padding-bottom: 30%;
    align-items: start;
}

.info {
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-size: 24px;
    margin-top: 40px;
    position: relative;
    width: 100%;
    font-weight: bold;
    text-align: center;
    color: white;
}

.info .img {
    width: 100%;
}

.list {
    display: flex;
    align-items: flex-end;
    margin-top: 15px;
    justify-content: start;
    width: 100%;
}

.list-me {
    display: flex;
    align-items: flex-end;
    justify-content: end;
    width: 100%;
}

.left {
    margin-left: 15px;
    margin-right: 8px;
    display: flex;
}

.right {
    margin-right: 15px;
    display: flex;
    font-size: 16px;
    width: 100%;
    flex-direction: column;
    align-items: start;
}


@keyframes scaleAnimation {
    0% {
        scale: 0;
    }

    100% {
        scale: 1;
    }

}

.item {
    background-color: #414141;
    border-radius: 15px;
    margin-top: 10px;
    display: flex;
    padding: 10px 20px;
    color: white;
    justify-content: center;
    align-items: center;
    position: relative;
    transform-origin: top left;
    animation: scaleAnimation 400ms ease-out;
}

.item-right {
    background-color: white;
    height: 40px;
    border-radius: 15px;
    margin-top: 10px;
    display: flex;
    color: #121212;
    margin-right: 15px;
    align-items: center;
    padding: 0 20px;
    transform-origin: right bottom;
    animation: scaleAnimation 300ms ease;
}

.age_choose {
    display: flex;
    width: calc(100% - 15px);
    margin-top: 10px;
    flex-direction: row;
    justify-content: end;
    transform-origin: right bottom;
    animation: scaleAnimation 300ms ease;
    gap: 10px;
}

.age_cell {
    background-color: white;
    border-radius: 15px;
    padding: 0 15px;
    height: 40px;
    font-size: 16px;
    display: flex;
    position: relative;
    cursor: pointer;
    align-items: center;
}

@media screen and (max-width: 800px) {
    .age_choose {
        flex-direction: column;
        justify-content: start;
        align-items: end;
    }
}



.ask_cell {
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 10px;
    display: flex;
    gap: 8px;
    position: relative;
    flex-direction: row;
    align-items: end;
    justify-content: center;
}

.qp {
    position: absolute;
    bottom: 0;
    left: -10px;
    width: 24px;
    height: 24px;
}

.qp1 {
    position: absolute;
    bottom: 0;
    right: -10px;
    width: 24px;
    height: 24px;
}


.ask_cell img {
    margin-top: 10px;
}

.circle_layout {
    display: flex;
    gap: 4px;
    height: 20px;
    align-items: center;
}

@keyframes loadAnimation {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(40%);
    }

    100% {
        transform: translateY(0);
    }

}

.circle_cell0 {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 6px;
    animation: loadAnimation 1s ease infinite;
}

.circle_cell1 {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 6px;
    animation: loadAnimation 1s ease infinite 200ms;
}

.circle_cell2 {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 4px;
    animation: loadAnimation 1s ease infinite 400ms;
}