@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sarabun:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

:root {
    --main-color:       #9055fd;
    --main-color-hover: #824de4;
    --main-color-bg:    #eee6ff;
}
.menu .app-brand {
    height: 64px;
}
.dark-style .menu .app-brand {
    height: 64px;
}
.app-brand-logo svg {
    width: 30px;
    height: 24px;
}
.app-brand-text {
    font-size: 1.25rem;
}
.app-brand-logo > img {
    width: 40px;
}
.btn-upload-profile {
    position: absolute;
    bottom: 0;
    right: 0;
}
.profile-container {
    border: 5px solid var(--main-color-bg);
    border-radius: 10px;
    width: 100%;
    height: 500px;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
}
.profile-img {
    height: 100%;
    width: auto;
}
.card-member {
    /* background-image: url(../images/avatars/1.png); */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 100%;
    transition: 0.5s;
    min-height: 500px;
    color: #FFF;
    border-radius: 10px;
}
.card-member:hover {
    background-size: auto 110%;
}
.card-member > .card-body {
    display: flex;
    align-items: end;
    position: relative;
}
.card-member > .card-body p,
.card-member > .card-footer p {
    margin-bottom: 0;
}
.card-member > .card-footer {
    border-top: 4px solid var(--main-color-hover);
    background-color: var(--main-color-bg);
}
.text-shadow {
    text-shadow: 0px 0px 5px #1b1b1b;
}
.btn-price {
    position: absolute;
    bottom: 10px;
    right: 5px;
    background-color: var(--main-color-bg);
    color: var(--main-color);
    font-size: 20px;
    font-weight: bold;
    padding: 5px 10px;
    width: 80px;
    text-align: center;
    text-shadow: none;
    border-radius: 10px;
}
.detail-container {
    height: 120px;
    overflow-y: scroll;
    border: 2px solid var(--main-color);
    border-radius: 10px;
    background-color: var(--main-color-bg);
    padding: 10px;
}
.detail-container::-webkit-scrollbar {
    display: none;
}