/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/

/* 
    Created on : Apr 3, 2020, 2:38:40 PM
    Author     : Danny LEUNG
*/

html {
    position: relative;
    min-height: 100%;
}

body {
    font-family: "Microsoft YaHei", sans-serif;
    font-size: 14px;
    background-color: #ffe5f9;
    max-width: 100%;
    max-height: 100%;
    overflow-x: hidden;
}

button:focus,
button:active,
a:focus,
a:active {
    outline: none !important;
    box-shadow: none;
}

@media screen and (min-width: 768px) {
    body {
        font-size: 16px;
    }
}

#overlay {
    position: fixed;
    /* Sit on top of the page content */
    /*display: none;  Hidden by default */
    width: 100%;
    /* Full width (cover the whole page) */
    height: 100%;
    /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-color: #FFF; */
    /* background-color: #ffe5f9; */
        background-color: rgba(0, 0, 0, 0.7);
    /* Black background with opacity */
    z-index: 1099;
    /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer;
    /* Add a pointer on hover */
}

.rotate {
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
    -webkit-animation: rotate 2s linear infinite;
    -moz-animation: rotate 2s linear infinite;
    -o-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    width: 100%;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes rotate {
    0% {
        -moz-transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(360deg);
    }
}

@-o-keyframes rotate {
    0% {
        -o-transform: rotate(0deg);
    }

    100% {
        -o-transform: rotate(360deg);
    }
}

@-ms-keyframes rotate {
    0% {
        -ms-transform: rotate(0deg);
    }

    100% {
        -ms-transform: rotate(360deg);
    }
}

@-keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#spinner {
    /* width: 30%; */
    min-width: 350px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* background-image: url('../images/spinner_bg.png'); */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.visible {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s linear;
}

.hidden {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0.3s, opacity 0.3s linear;
}

/* change the background color */

.bg-navbar {
    background-color: rgba(255, 255, 255, 1);
}

/* change the brand and text color */

.bg-navbar .navbar-brand,
.bg-navbar .navbar-text {
    color: rgba(225, 0, 108, 0.7);
}

/* change the link color */

.bg-navbar .navbar-nav .nav-link {
    color: #fff
}

.navbar-nav {
    justify-content: flex-start !important;
    text-align: left !important;
}

.disabled-link {
    color: gray !important;
}

/* change the color of active or hovered links */

.bg-navbar .nav-item.active .nav-link,
.bg-navbar .nav-item:focus .nav-link,
.bg-navbar .nav-item:hover .nav-link {
    color: rgba(225, 0, 108, 1);
}

.bg-footer {
    background-color: white;
}

.navbar-toggler {
    border: none;
    padding: .25rem;
    color: #F4CAD6;
    outline: none !important;
}

.navbar-icon {
    font-size: 30px;
    color: #fff;
}

footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 60px;
    background-color: white;
    padding-top: 5px;
}

.modal-open {
    overflow-y: auto !important;
    padding-right: 0 !important;
}

.modal-scrollbar-measure {
    overflow: hidden;
}

.modal ol,
.ol-pl {
    padding-left: 17px;
}

.container-fluid {
    max-width: 850px;
}

.icon-social {
    font-size: 20px;
}

.a-social {
    color: initial;
    text-decoration: none;
}

.a-tnc {
    color: initial;
    text-decoration: none;
}

.a-tnc:link,
.a-tnc:visited,
.a-tnc:hover,
.a-tnc:active,
.a-tnc:focus {
    color: rgba(225, 0, 108, 1);
}

.title-11 {
    font-size: 27px;
    padding: 0 10px;
}

.title-1 {
    font-size: 23px;
    padding: 0 10px;
}

.title-2 {
    font-size: 18px;
    padding: 0 10px;
}



.title-3 {
    font-size: 15px;
    padding: 0 10px;
}

.title-4 {
    font-size: 14px;
    padding: 0 10px;
}

@media screen and (min-width: 768px) {

    .title-11 {
        font-size: 34px;
    }

    .title-1 {
        font-size: 30px;
    }

    .title-2 {
        font-size: 30px;
    }

    .title-3 {
        font-size: 22px;
    }

    .title-4 {
        font-size: 30px;
    }
}

.title-line {
    display: flex;
    align-items: center;
    text-align: center;
}

.title-line::before,
.title-line::after {
    content: '';
    flex: 1;
    border-bottom: 3px solid #5F3A16;
}

.title-line::before {
    margin-right: .25em;
}

.title-line::after {
    margin-left: .25em;
}

.title-line-2 {
    display: flex;
    align-items: center;
    text-align: center;
}

.title-line-2::before,
.title-line-2::after {
    content: '';
    flex: 1;
    height: 3px;
    width: 50%;
    background-position: bottom;
    background-size: 0.5rem 1px;
    background-repeat: repeat-x;
}

.title-line-2::before {
    background-image: linear-gradient(to right, #5F3A16 50%, rgba(255, 255, 255, 0) 0%);
    margin-right: .25em;
}

.title-line-2::after {
    background-image: linear-gradient(to left, #5F3A16 50%, rgba(255, 255, 255, 0) 0%);
    margin-left: .25em;
}

.title-line-3 {
    display: flex;
    align-items: center;
    text-align: center;
}

.title-line-3::before,
.title-line-3::after {
    content: '';
    flex: 1;
    border: 1px solid #D21477;
}

.title-line-3::before {
    margin-right: 1em;
}

.title-line-3::after {
    margin-left: 1em;
}

.gprize-container {
    font-size: 10px;
}

.staff-container {
    background-color: #254C7E;
}

.gprize-winner-container {
    background-color: #F4CAD6;
    border-image: url('../images/gp-bottom.png') 100 stretch;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin: 15px auto;
    margin-top: 15%;
}

.gp-winner-box {
    margin: 0 10px;
}

.channel-facebook {
    display: none;
}

@media screen and (min-width: 768px) {
    .gprize-container {
        font-size: 16px;
    }

    .gprize-winner-container {
        border-top: 20px solid transparent;
        border-bottom: 20px solid transparent;
    }

    /* .gp-winner-box {
        margin: 50px 20px 30px !important;
    } */
    /*    .prize-info-box {
            height: 80px;
        }*/
}

/*.prize-info-box {
    height: 70px;
}*/

.navbar-custom-height {
    min-height: 80px; /* Adjust as needed */
}
.navbar .navbar-brand,
.navbar .nav-link {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.gprize-box {
    /* background: url('../images/bg_cloud.png'); */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    /*    border: 2px solid white;
        background: rgba(255, 255, 255, 0.5);*/
    padding: 5px;
    margin: 5px;
}

.gprize-box-2 {
    margin: 5px;
}

.prize-box {
    /* background: rgba(255, 255, 255, 0.5); */
    margin: 5px;
}

.img-logo {
    max-width: 280px;
}

.ig-logo {
    max-width: 40px;
    min-width: 40px;
}

.ig-div {
    padding-right: 5px;
    padding-top: 6.5px;
}

@media screen and (min-width: 768px) {
    .ig-div {
        padding-right: 5px;
        padding-top: 4.5px;
    }
}

.wechat-logo {
    max-width: 20px;
    min-width: 20px;
}

.img-home-btn {
    max-width: 100%;
}

.img-max100 {
    max-width: 100%;
}

.img-number {
    max-width: 40px;
}

.img-prize {
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 450px;
    /* padding: 10% 10%; */
}

.img-prize-2 {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 110px;
    min-height: 60px;
    padding: 10px 10px;
}

.img-prize-2-grand {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 300px;
    min-height: 60px;
    padding: 10px 10px;
}

.g-prize {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 150px;
    min-height: 60px;
    padding: 10px 10px;
}

/* @media screen and (min-width: 400px) {
    .img-prize-2 {
        height: 110px;
    }
}

@media screen and (min-width: 460px) {
    .img-prize-2 {
        height: 110px;
    }
}

@media screen and (min-width: 500px) {
    .img-prize-2 {
        height: 130px;
    }
}

@media screen and (min-width: 576px) {
    .img-prize-2 {
        height: 110px;
    }
}

@media screen and (min-width: 768px) {
    .img-prize-2 {
        height: 100px;
    }
}

@media screen and (min-width: 992px) {
    .img-prize-2 {
        height: 110px;
    }
}

@media screen and (min-width: 1200px) {
    .img-prize-2 {
        height: 120px;
    }
} */

.img-coupon {
    max-width: 80%;
}

.img-gprize {
    max-width: 100%;
}

.img-gprize-2 {
    max-width: 100%;
    padding: 20px;
}

.img-invoice {
    max-height: 300px;
    max-width: 100%;
}

.img-order {
    max-height: 400px;
    max-width: 100%;
}

.img-wechatqr {
    max-width: 100%;
}

.img-btn {
    max-width: 50%;
}

.img-title {
    max-height: 80px;
    max-width: 80%;
}

.img-welcome {
    max-height: 90px;
    max-width: 80%;
}

.img-title-2 {
    /* max-height: 30px; */
    max-width: 100%;
}

.img-gp-1 {
    top: 0;
    left: 15px;
    max-width: 25%;
    transform: translateY(-50%);
}

.img-gp-3 {
    top: 0;
    left: 15px;
    max-width: 27%;
    transform: translateY(-50%);
}

.bg-container {
    background-color: #FAF4F7;
}

.bg-step-1 {
    /* background: url('../images/bg_cloud.png'); */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.bg-step-2 {
    /* background: url('../images/bg_cloud.png'); */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.bg-prize {
    /* background: url('../images/bg_cloud.png'); */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.bg-circle-white {
    /* background: url('../images/bg_cloud.png'); */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.bg-circle-pink {
    /* background: url('../images/bg_cloud.png'); */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.bg-gprize {
    /* background: url('../images/bg_cloud.png'); */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* .bg-prize-desc {
    background-color: #E3007F;
}

.bg-prize-desc-2 {
    background-color: gray;
} */

.row-step-1,
.row-step-2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.btn-style-1 {
    background-color: silver;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    margin: 10px 0;
}

.btn-style-2 {
    background-color: silver;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    margin: 10px 0;
}

.btn-style-3 {
    background-color: silver;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    margin: 10px 0;
}

.btn-style-4 {
    background-color: silver;
    border-radius: 5px;
    color: white;
    font-weight: bold;
}

.btn-style-5 {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fcfff4+0,dfe5d7+40,b3bead+100;Wax+3D+%233 */
    background: #fcfff4;
    /* Old browsers */
    background: -moz-linear-gradient(top, #CCC 0%, #999 40%, #999 80%, #CCC 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #CCC 0%, #999 40%, #999 80%, #CCC 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #CCC 0%, #999 40%, #999 80%, #CCC 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfff4', endColorstr='#b3bead', GradientType=0);
    /* IE6-9 */
    /*background-color: silver;*/
    border-radius: 5px;
    color: white;
    font-weight: bold;
    margin: 10px 0;
}

.font-weight-700 .ball-info {
    font-size: 12px;
    line-height: 24px;
}

.bird-blue {
    display: inline-block;
    background: url('../images/bird_blue.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.bird-yellow {
    display: inline-block;
    background: url('../images/bird_yellow.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.bird-black {
    display: inline-block;
    background: url('../images/bird_black.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.ball-small {
    height: 40px;
    width: 40px;
    max-width: 100%;
    max-height: 100%;
}

.ball-large {
    height: 80px;
    width: 80px;
    max-width: 100%;
    max-height: 100%;
}

@media screen and (min-width: 768px) {
    .ball-small {
        height: 50px;
        width: 50px;
    }

    .ball-large {
        height: 100px;
        width: 100px;
    }
}

.color-black {
    color: #000;
}

.color-red {
    color: #D12027;
}

.color-darkred {
    color: #C52228;
}

.color-purple {
    color: #E3007F;
}

.color-lightbrown {
    color: #6A3906;
}

.color-brown {
    color: #593113;
}

.color-darkbrown {
    color: #5A4651;
}

.color-white {
    color: #FFF;
}

.color-pink-font {
    color: #e1006c;
}

.color-pink-highlight {
    color: #ff00d2;
}

.color-yellow {
    color: #f6921e;
}

.color-darkpurple {
    color: #8E064A;
}

.color-pink {
    color: #E1147F;
}

.color-blue {
    color: #006aff;
}

.border-pink {
    border-color: #E1147F !important;
}

.bg-gray {
    background-color: #CFAFBD;
}

.bg-lpink {
    background-color: #F4CAD6;
}

.bg-pink {
    background-color: #F3ADC1;
}

.bg-white {
    background-color: #FFF;
}

.text-xsmall {
    font-size: x-small;
}

.text-small {
    font-size: 12px;
}

.text-small-2 {
    font-size: 13px;
}

.text-small-3 {
    font-size: 11px;
}

.text-small-4 {
    font-size: 14px;
}

.text-small-5 {
    font-size: 18px;
}


.text-large-1 {
    font-size: 24px;
    line-height: 26px;
}

.text-large-2 {
    font-size: 14px;
}

@media screen and (min-width: 768px) {
    .text-xsmall {
        font-size: small;
    }

    .text-small {
        font-size: 16px;
    }

    .text-small-2 {
        font-size: 16px;
    }

    .text-small-3 {
        font-size: 16px;
    }

    .text-small-4 {
        font-size: 18px;
    }

    .text-small-5 {
        font-size: 22px;
    }

    .text-large-1 {
        font-size: 40px;
        line-height: 42px;
    }

    .text-large-2 {
        font-size: 23px;
    }
}

.text-home {
    line-height: 1.5rem;
}

.text-home-1 {
    font-size: 0.9rem;
}

.text-home-2 {
    font-size: 1rem;
}

.text-home-3 {
    font-size: 1.6rem;
    padding: 0 10px;
}

@media screen and (min-width: 400px) {
    .text-home-1 {
        font-size: 1rem;
    }

    .text-home-2 {
        font-size: 1.2rem;
    }

    .text-home-3 {
        font-size: 1.7rem;
    }
}

@media screen and (min-width: 460px) {
    .text-home-1 {
        font-size: 1.1rem;
    }

    .text-home-2 {
        font-size: 1.3rem;
    }

    .text-home-3 {
        font-size: 1.8rem;
    }
}

@media screen and (min-width: 500px) {
    .text-home {
        line-height: 1.8rem;
    }

    .text-home-1 {
        font-size: 1.3rem;
    }

    .text-home-2 {
        font-size: 1.6rem;
    }

    .text-home-3 {
        font-size: 2.1rem;
    }
}

@media screen and (min-width: 576px) {
    .text-home {
        line-height: 2rem;
    }

    .text-home-1 {
        font-size: 1.4rem;
    }

    .text-home-2 {
        font-size: 1.6rem;
    }

    .text-home-3 {
        font-size: 2.4rem;
    }
}

@media screen and (min-width: 768px) {
    .text-home {
        line-height: 3rem;
    }

    .text-home-1 {
        font-size: 2rem;
    }

    .text-home-2 {
        font-size: 2.4rem;
    }

    .text-home-3 {
        font-size: 3rem;
    }
}

@media screen and (min-width: 992px) {}

@media screen and (min-width: 1200px) {}

#btn-bottom {
    visibility: visible;
    transition: visibility 0s, opacity 0.25s linear;
    position: fixed;
    bottom: 50px;
    right: 20px;
    z-index: 99;
    font-size: 24px;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 100px;
    line-height: 0;
    cursor: pointer;
}

.sasa-video {
    position: absolute;
    top: 23.65%;
    left: 19.25%;
    padding: 2.2% 0%;
    background-color: #000;
}

.img-scroll-down {
    max-width: 40px;
    width: 100%;
}

.floating {
    animation-name: floating;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    margin-left: 30px;
    margin-top: 5px;
}

@keyframes floating {
    from {
        transform: translate(0, 0px);
    }

    65% {
        transform: translate(0, 15px);
    }

    to {
        transform: translate(0, -0px);
    }
}

#modal-tnc li {
    margin-top: 10px;
}

.form-control-pink,
.form-control-pink:focus {
    background-color: #FFFFFF;
    border: none;
}

.fit-content-div {
    height: fit-content;
}

.bg-stamp-container {
    background-color: white;
}





/* .q-title-11 {
    font-size: 27px;
    padding: 0 10px;
}

.q-title-1 {
    font-size: 23px;
    padding: 0 10px;
}

.q-title-2 {
    font-size: 18px;
    padding: 0 10px;
}

.q-title-3 {
    font-size: 15px;
    padding: 0 10px;
}

@media screen and (min-width: 768px) {

    .title-11 {
        font-size: 34px;
    }

    .title-1 {
        font-size: 30px;
    }

    .title-2 {
        font-size: 30px;
    }

    .title-3 {
        font-size: 22px;
    }
} */

.main-body {
    background-image: url(../images/bg_mp.png);
    background-repeat: no-repeat;
    background-attachment: local;
    background-position: center center;
    background-size: cover;
    width: 100vw; 
    height: 90vh;
}

.inner-body {
    background-image: url(../images/bg_innerpage.png);
    background-repeat: no-repeat;
    background-attachment: local;
    background-position: center center;
    background-size: cover;
    width: 100vw;
}



.color-alert {
    color: #ED1C24;
}

.btn-register {
    background: url('/images/btn_register.png') no-repeat center center;
    background-size: contain;
    color: #fff;
    border: none;
    width: 300px;      
    height: 50px;      
    display: inline-block;
    padding: 0;
}

.btn-login {
    background: url('/images/btn_login.png') no-repeat center center;
    background-size: contain;
    color: #fff;
    border: none;
    width: 300px;      
    height: 50px;      
    display: inline-block;
    padding: 0;
}

.btn-ranking {
    background: url('/images/btn_ranking.png') no-repeat center center;
    background-size: contain;
    color: #fff;
    border: none;
    width: 300px;      
    height: 50px;     
    display: inline-block;
    padding: 0;
}

.btn-details {
    background: url('/images/btn_details.png') no-repeat center center;
    background-size: contain;
    color: #fff;
    border: none;
    width: 300px;      
    height: 50px;     
    display: inline-block;
    padding: 0;
}

.btn-record {
    background: url('/images/btn_record.png') no-repeat center center;
    background-size: contain;
    color: #fff;
    border: none;
    width: 300px;      
    height: 50px;      
    display: inline-block;
    padding: 0;
}


.btn-upload {
    background: url('/images/btn_upload.png') no-repeat center center;
    background-size: contain;
    color: #fff;
    border: none;
    width: 300px;      
    height: 50px;     
    display: inline-block;
    padding: 0;
}

.round-corner {
    border-radius: 25px;
}


.round-corner {
    border-radius: 25px;
}

.form-glass{
    background:rgba(255,255,255,.95);  
    border-radius:25px;           
    padding:35px 30px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    position: relative;
}


.btn-confirmregister {
    background: url('/images/btn_confirmregistration.png') no-repeat center center;
    background-size: contain;
    color: #fff;
    border: none;
    width: 350px;      
    height: 50px;      
    display: inline-block;
    padding: 0;
}

.btn-confirmLogin {
    background: url('/images/btn_confirmlogin.png') no-repeat center center;
    background-size: contain;
    color: #fff;
    border: none;
    width: 350px;      
    height: 50px;      
    display: inline-block;
    padding: 0;
}


.btn-submit {
    background: url('/images/btn_submit.png') no-repeat center center;
    background-size: contain;
    color: #fff;
    border: none;
    width: 350px;      
    height: 50px;      
    display: inline-block;
    padding: 0;
}

/* .line-text:after,
.line-text:before {
    content: "\00a0\00a0\00a0\00a0\00a0";
    text-decoration: line-through;
} */

.line-text {
    display: flex;
    flex-direction: row;
}

.line-text:before,
.line-text:after {
    content: "";
    flex: 1 1;
    border-bottom: 1px solid;
    margin: auto;
}

.line-text:before {
    margin-right: 10px
}

.line-text:after {
    margin-left: 10px
}

.table-glass{
    background:rgba(255,255,255,.95);  
    border-radius:10px;
    max-width:400px;           
    width:90%;
    padding:35px 30px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}


.ranking-card{
    background:rgba(255,255,255,.95);  
    border-radius:25px;
    max-width:400px;           
    width:100%;
    padding:35px 30px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.ranking-title{
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
}
.crown-text::before{
    content:'';
    background:url("../images/icon_ranking_1.png") center/contain no-repeat;
    width:28px;height:18px;
    position:absolute;
    top:-22px;left:50%;
    transform:translateX(-50%);
}

.leaf{height:38px;width:auto}

.my-rank{font-size:1rem}

.ranking-table{
     border-collapse: collapse;
    border: none;
}


.ranking-row > td, th {
  border: none;
}

.ranking-row > td {
    background:linear-gradient(180deg, #fffbea 0%, #FFF0B8  100%);
    background-size: 100% 50%; 
    background-position: center; 
    background-repeat: no-repeat;
}

.ranking-table td {
    /* padding-left: 16px;
    padding-right: 16px; */

    padding-left: 10px;
    padding-right: 10px;
}

.profile-glass{
    background:rgba(255,255,255,.95);  
    border-radius:25px;           
    padding:35px 30px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    position: relative;
    padding-bottom: 5rem;
}

.profile-table{
     border-collapse: collapse;
     border: none;
}

.profile-row > td, th {
    border: none;
    background-color: transparent !important;
}


.total-bar {
    position:absolute;
    left: 0;
    background: #ff5ea5;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.6rem;
    border-radius: 999px;         
    bottom: 0;
    width: 100%;
}