.page[name="account"] {
    height: -webkit-fill-available;
    padding: 0 0 50px 0;
    overflow: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page[name="account"] .authen {
    width: 100%;
    height: 100%;
    padding: 0px 0px 0px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    background: white;
    z-index: 1;
}

.page[name="account"] .authen .text {
    font-size: 16px;
    font-weight: bold;
    margin-left: 10px;
}

.page[name="account"] .authen .contai {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    margin: 10px 0 5px 0;
    column-gap: 20px;
}

.page[name="account"] .authen .contai button[name="login"] {
    width: 150px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background-color: #0094F4;
    color: white;
    font-size: 16px;
}

.page[name="account"] .authen .contai button[name='register'] {
    width: 150px;
    height: 40px;
    border: none;
    background-color: #00C7BE;
    color: white;
    border-radius: 10px;
    font-size: 16px;
}

.page[name="account"] .authen .des {
    font-size: 14px;
    color: #787878;
    text-align: center;
}

.page[name="account"] .profile {
    width: -webkit-fill-available;
    max-width: 680px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    margin: 0 0 5px 0;
    background-color: white;
    position: relative;
    padding: 190px 0 20px 0px;
    border: solid var(--main-bg-color);
    border-width: 0 0 2px 0;
}

@media (min-width: 680px) {
    .page[name="account"] .profile {
        /* padding: 180px 0 40px calc(50% - 340px) !important; */
        /* transform: translate(10px, 10px); */
    }
}

.page[name="account"] .profile .picture {
    width: fit-content;
    height: fit-content;
    position: absolute;
    top: 0;
}

.page[name="account"] .profile .picture img {
    width: 170px;
    height: 170px;
    margin: 10px 0 0 15px;
    background-color: #EBEDF0;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: rgba(99, 99, 99, 0.5) 0px 2px 8px 0px;
    object-fit: cover;
}

.page[name="account"] .profile .picture button {
    padding: 5px;
    margin: 0;
    border-radius: 50%;
    border: solid 2px white;
    background: #EBEDF0;
    /* box-shadow: rgba(99, 99, 99, 0.5) 0px 2px 8px 0px; */
    position: absolute;
    right: 5px;
    bottom: 10px;
    display: flex;
    color: black;
}

.page[name="account"] .profile button[name="edit_picture"] {
    font-variation-settings: 'FILL' 1;
    position: absolute;
    top: 120px;
    /* left: 125px; */
    margin: 0 0 0 125px;
    padding: 5px;
    background-color: white;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 50%;
    border: 2px solid white;
}

.page[name="account"] .profile .name {
    width: -webkit-fill-available;
    margin: 0 0 0 20px;
    font-size: 24px;
    font-weight: bold;
}

.page[name="account"] .details {
    width: -webkit-fill-available;
    max-width: 680px;
    height: fit-content;
    padding: 10px 0 10px 0px;
    margin: 0 0 0 0;
    background-color: white;
}

@media (min-width: 680px) {
    .page[name="account"] .details {
        border: solid 1px #EBEBEB;
        border-radius: 10px;
    }
}

.page[name="account"] .details .text {
    width: -webkit-fill-available;
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 0 20px;
}

.page[name="account"] .details .field {
    width: -webkit-fill-available;
    display: flex;
    flex-direction: row;
    margin: 15px 0 0 20px;
    column-gap: 10px;
    align-items: center;
}

.page[name="account"] .details .field .icon {
    font-variation-settings: 'FILL' 1;
    color: rgb(0 0 0 / 50%);
    width: 22px;
    margin: 0 10px 0 0;
}

.page[name="account"] .details .field .des {
    font-size: 15px;
    /* font-weight: bold; */
    color: black;
    white-space: nowrap;
}

.page[name="account"] .details .field .value {
    font-size: 16px;
    /* font-weight: bold; */
}

.page[name="account"] .details button[name="edit"] {
    width: -webkit-fill-available;
    max-width: 360px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background-color: #E5E5EA;
    color: black;
    font-size: 14px;
    font-weight: bold;
    margin: 20px 0 0 calc(-20px + 50%);
    transform: translate(calc(-50% + 10px), 0);
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    box-shadow: rgb(99 99 99 / 20%) 0px 1px 5px 0px;
}

.page[name="account"] .account_menu {
    height: fit-content;
    width: -webkit-fill-available;
    max-width: 680px;
    padding: 10px 10px 10px 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    row-gap: 10px;
    column-gap: 10px;
    /* background: white; */
    /* border: solid var(--main-bg-color); */
    border-width: 2px 0 2px 0;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.page[name="account"] .account_menu .child {
    width: calc(50% - 17px);
    height: 55px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* box-shadow: rgb(99 99 99 / 20%) 0px 1px 5px 0px; */
    border: solid 1px #EBEBEB;
    border-radius: 10px;
    padding: 5px 0 5px 10px;
    justify-content: space-between;
    row-gap: 5px;
    cursor: pointer;
    position: relative;
}

.page[name="account"] .account_menu .child .icon {
    font-size: 24px;
    font-weight: 600;
}

.page[name="account"] .account_menu .child .pic {
    width: 24px;
}

.page[name="account"] .account_menu .child[name="promptpay"] .pic {
    width: 50px;
}

.page[name="account"] .account_menu .child .text {
    font-size: 14px;
    font-weight: bold;
}

.page[name="account"] .account_menu .child .notify {
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 12px;
    background-color: #34C759;
    color: white;
    border-radius: 0px 10px 0px 0px;
    overflow: hidden;
}

.page[name="account"] .account_menu .child .notify .label {
    height: 100%;
    padding: 5px 8px;
}

.page[name="account"] .account_menu .child .notify .label .effect {
    content: '';
    position: absolute;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg in hsl shorter hue, transparent, rgb(255 255 255 / 60%), transparent);
    animation: shimmer 1.5s infinite;
}

.page[name="account"] .loader {
    width: 100%;
    min-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page[name="account"] .loader span {
    display: block;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    position: relative;
    animation: loader_rotate 1s linear infinite
}

.page[name="account"] .loader span::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 4px solid #007AFF;
    animation: loader_prixClipFix 1s linear infinite;
}

@keyframes loader_rotate {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes loader_prixClipFix {
    0% {
        clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0)
    }

    25% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0)
    }

    50% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%)
    }

    75% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%)
    }

    100% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0)
    }
}

.page[name="account"] .editImg {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.page[name="account"] .editImg .close {
    font-size: 28px;
    color: white;
    position: absolute;
    top: 5px;
    right: 5px;
}

.page[name="account"] .editImg .contai_img {
    width: auto;
    height: auto;
    display: flex;
}

.page[name="account"] .editImg img {
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.page[name="account"] .editImg button.crop {
    width: 120px;
    min-height: 40px;
    border: none;
    border-radius: 10px;
    background-color: transparent;
    color: white;
    font-size: 16px;
    position: absolute;
    bottom: 5px;
    right: 10px;
    text-align: right;
}

@media (min-width: 680px) {
    .page[name="account"] .contai_feed .feed {
        border-radius: 10px;
        box-shadow: 0px 1px 4px rgb(0 0 0 / 20%);
        padding: 10px 0px 10px 0px !important;
        overflow: hidden;
    }

    .page[name="account"] .contai_feed {
        row-gap: 10px !important;
    }
}

.page[name="account"] .contai_feed {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 5px;
}

.page[name="account"] .contai_feed .feed {
    width: calc(100% - 0px);
    max-width: 680px;
    height: fit-content;
    padding: 10px 0px 10px 0px;
    background-color: white;
    position: relative;
}

.page[name="account"] .contai_feed .feed button[name="menu"] {
    width: fit-content;
    height: fit-content;
    padding: 10px 5px;
    margin: 0;
    border: none;
    background: transparent;
    position: absolute;
    top: 0;
    right: 0;
    color: black;
}

.page[name="account"] .contai_feed .feed[status="loading"] button[name="menu"] {
    display: none !important;
}

.page[name="account"] .contai_feed .feed .contact {
    width: 100%;
    height: 32px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin: 0 0 10px 0;
}

.page[name="account"] .contai_feed .feed .contact .icon {
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 10px;
}

.page[name="account"] .contai_feed .feed[status="loading"] .contact .icon {
    background: #F2F2F7;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    z-index: 0;
    background-image: unset !important;
}

.page[name="account"] .contai_feed .feed[status="loading"] .contact .icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg in hsl shorter hue, #F2F2F7, #ffffff, #F2F2F7);
    animation: shimmer 1.5s infinite;
}

.page[name="account"] .contai_feed .feed .contact .text {
    max-width: calc(100% - 60px);
    height: 30px;
    font-size: 14px;
    text-wrap: nowrap;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-weight: bold;
}

.page[name="account"] .contai_feed .feed .shop {
    width: -webkit-fill-available;
    margin: 0 10px 15px 10px;
    font-size: 14px;
}

.page[name="account"] .contai_feed .feed[status="loading"] .shop {
    color: transparent;
    background: #F2F2F7;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    z-index: 0;
}

.page[name="account"] .contai_feed .feed[status="loading"] .shop::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg in hsl shorter hue, #F2F2F7, #ffffff, #F2F2F7);
    animation: shimmer 1.5s infinite;
}

.page[name="account"] .contai_feed .feed[status="loading"] .contact .text {
    width: calc(100% - 60px);
    color: transparent;
    background: #F2F2F7;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    z-index: 0;
}

.page[name="account"] .contai_feed .feed[status="loading"] .contact .text::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg in hsl shorter hue, #F2F2F7, #ffffff, #F2F2F7);
    animation: shimmer 1.5s infinite;
}

/* .page[name="account"] .contai_feed .feed .data {} */

.page[name="account"] .contai_feed .feed .data .picture[number="1"] {
    width: 100%;
    height: auto;
    /* margin-top: 10px; */
}

.page[name="account"] .contai_feed .feed .data .picture[number="1"] .child {
    width: 100%;
    height: auto;
    display: flex;
}

.page[name="account"] .contai_feed .feed .data .picture[number="1"] .child img {
    width: 100%;
    height: auto;
}

.page[name="account"] .contai_feed .feed[status="loading"] .data .picture[number="1"] .child {
    width: calc(100% - 20px);
    margin: 0 10px;
    height: 180px;
    background: #F2F2F7;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    z-index: 0;
}

.page[name="account"] .contai_feed .feed[status="loading"] .data .picture[number="1"] .child::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg in hsl shorter hue, #F2F2F7, #ffffff, #F2F2F7);
    animation: shimmer 1.5s infinite;
}

.page[name="account"] .contai_feed .feed[status="loading"] .data .picture[number="1"] .child img {
    display: none;
}

.page[name="account"] .contai_feed .feed .data .video {
    width: 100%;
    height: auto;
}

.page[name="account"] .contai_feed .feed .data .video .child {
    width: 100%;
    height: fit-content;
    /* background-color: black; */
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: flex-end;
}

.page[name="account"] .contai_feed .feed .data .video .child video {
    width: 100%;
    height: auto;
    background-color: black;
}

.page[name="account"] .contai_feed .feed[status="loading"] .data .video .child .source_image {
    display: none !important;
}

.page[name="account"] .contai_feed .feed .data .video .child .source_image {
    width: 120px;
    height: 150px;
    position: absolute;
    bottom: 60px;
    right: 10px;
    border-radius: 10px;
    z-index: 1;
    box-shadow: rgb(0 0 0 / 30%) 0px 3px 19px 2px;
    overflow: hidden;
}

.page[name="account"] .contai_feed .feed .data .video .child .source_image .close {
    position: absolute;
    top: 5px;
    right: 5px;
    color: white;
    text-shadow: 1px 1px 3px dimgray;
}

.page[name="account"] .contai_feed .feed .data .video .child .source_image .text {
    font-size: 16px;
    color: white;
    text-shadow: 1px 1px 3px dimgray;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.page[name="account"] .contai_feed .feed .data .video .child .source_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page[name="account"] .contai_feed .feed[post_status="pending"] .data .video .child video {
    filter: contrast(0.4);
}

.page[name="account"] .contai_feed .feed[status="loading"] .data .video .child>img {
    display: none !important;
}

.page[name="account"] .contai_feed .feed .data .video .child>img {
    display: none;
}

.page[name="account"] .contai_feed .feed[post_status="pending"] .data .video .child>img {
    width: 100px;
    height: 130px;
    position: absolute;
    bottom: 10px;
    right: 10px;
    border-radius: 10px;
    z-index: 1;
    object-fit: cover;
    box-shadow: rgb(0 0 0 / 30%) 0px 3px 19px 2px;
    display: unset;
}

.page[name="account"] .contai_feed .feed[status="loading"] .data .video .child {
    width: calc(100% - 20px);
    margin: 0 10px;
    height: 180px;
    background: #F2F2F7;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    z-index: 0;
}

.page[name="account"] .contai_feed .feed[status="loading"] .data .video .child::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg in hsl shorter hue, #F2F2F7, #ffffff, #F2F2F7);
    animation: shimmer 1.5s infinite;
}

.page[name="account"] .contai_feed .feed[status="loading"] .data .video .child video {
    display: none !important;
}

.page[name="account"] .contai_feed .feed[status="loading"] .data .video .child .progress_circle {
    display: none !important;
}

.page[name="account"] .contai_feed .feed .data .video .child .progress_circle {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
}

.page[name="account"] .contai_feed .feed .data .video .child .progress_circle .bg {
    fill: none;
    stroke: #eee;
    stroke-width: 7px;
}

.page[name="account"] .contai_feed .feed .data .video .child .progress_circle .value {
    fill: none;
    stroke: #34C759;
    stroke-width: 7px;
    stroke-linecap: round;
    /* ประมาณ 2 * Math.PI * 45 */
    stroke-dasharray: 282.6;
    stroke-dashoffset: 282.6;
    transition: stroke-dashoffset 0.5s ease;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

.page[name="account"] .contai_feed .feed .data .video .child .progress_circle .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    color: white;
}

.page[name="account"] .contai_feed .feed[status="loading"] .data .video .child .des {
    display: none !important;
}

.page[name="account"] .contai_feed .feed .data .video .child .des {
    display: none;
}

.page[name="account"] .contai_feed .feed[post_status="pending"] .data .video .child .des {
    display: unset;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    font-size: 20px;
    color: white;
    transform: translate(-50%, calc(-50% + 70px));
}

.page[name="account"] .contai_feed .feed[status="loading"] .data .video .child button[name="create"] {
    display: none !important;
}

.page[name="account"] .contai_feed .feed[post_status="pending"] .data .video .child button[name="create"] {
    display: none;
}

.page[name="account"] .contai_feed .feed .data .video .child button[name="create"] {
    width: fit-content;
    height: fit-content;
    margin: 10px 10px 10px 0;
    border: none;
    font-size: 14px;
    background: transparent;
    color: black;
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 5px;
}

.page[name="account"] .contai_feed .feed .data .video .child button[name="create"] span {
    font-size: 30px;
    color: #FF2D55;
}

.page[name="account"] .contai_feed .feed .like {
    display: flex;
    /* column-gap: 5px; */
    margin: 10px 0 0 0;
    padding: 0 0 0 10px;
    align-items: center;
}

.page[name="account"] .contai_feed .feed[status="loading"] .like {
    margin: 5px 10px 0 10px;
    height: 20px;
    background: #F2F2F7;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    z-index: 0;
}

.page[name="account"] .contai_feed .feed[status="loading"] .like div {
    display: none;
}

.page[name="account"] .contai_feed .feed[status="loading"] .like::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg in hsl shorter hue, #F2F2F7, #ffffff, #F2F2F7);
    animation: shimmer 1.5s infinite;
}

.page[name="account"] .contai_feed .feed .like .icon {
    font-size: 32px;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
}

.page[name="account"] .contai_feed .feed .like .icon[status="1"] {
    font-variation-settings: 'FILL' 1;
    color: #EB3324;
}

.page[name="account"] .contai_feed .feed .like .value {
    font-size: 14px;
    font-weight: bold;
}

.page[name="account"] .contai_feed .feed .caption {
    margin: 0;
    padding: 10px 10px 0 10px;
    font-size: 14px;
    font-weight: 500;
}

.page[name="account"] .contai_feed .feed[status="loading"] .caption {
    width: 80%;
    padding: 0;
    margin: 5px 10px 0 10px;
    color: transparent;
    height: 20px;
    background: #F2F2F7;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    z-index: 0;
}

.page[name="account"] .contai_feed .feed[status="loading"] .caption::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg in hsl shorter hue, #F2F2F7, #ffffff, #F2F2F7);
    animation: shimmer 1.5s infinite;
}

.page[name="account"] .contai_feed .feed .datetime {
    margin: 5px 0 0 0;
    padding: 0 0 0 10px;
    font-size: 12px;
    font-weight: 500;
    color: #787878;
}

.page[name="account"] .contai_feed .feed[status="loading"] .datetime {
    width: 40%;
    margin: 5px 10px 0 10px;
    color: transparent;
    height: 20px;
    background: #F2F2F7;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    z-index: 0;
}

.page[name="account"] .contai_feed .feed[status="loading"] .datetime::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg in hsl shorter hue, #F2F2F7, #ffffff, #F2F2F7);
    animation: shimmer 1.5s infinite;
}

.page[name="account"] .contai_feed .feed .comment {
    height: 32px;
    display: flex;
    align-items: center;
    column-gap: 5px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, 0);
}

.page[name="account"] .contai_feed .feed[status="loading"] .comment {
    display: none;
}

.page[name="account"] .contai_feed .feed .comment .value {
    font-size: 14px;
    /* font-weight: bold; */
}

.page[name="account"] .contai_feed .feed .comment .icon {
    font-size: 28px;
    cursor: pointer;
}

.page[name="account"] .contai_feed .feed .pump_like {
    display: flex;
    align-items: center;
    column-gap: 5px;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.page[name="account"] .contai_feed .feed[status="loading"] .pump_like {
    display: none;
}

.page[name="account"] .contai_feed .feed .pump_like .text {
    font-size: 14px;
}

.page[name="account"] .contai_feed .feed .pump_like .icon {
    font-size: 32px;
    color: #00C7BE;
    font-variation-settings: 'FILL' 1;
    cursor: pointer;
}

@media (min-width: 680px) {
    .page[name="account"] .contai_feed {
        row-gap: 10px !important;
    }
}