@charset "utf-8";

/*
    Author: Filip Todorov - www.filiptodorov.com
    Project: JomPrEP App
    All rights reserved
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
* {
    box-sizing: border-box;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
  }

body,
html {
    font-family: 'Poppins', sans-serif;
    position: relative;
    font-size: calc(0.85 * 5vw);
    min-height: calc(100% + env(safe-area-inset-top));
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

body {
    background-color: #fdbd50!important;
    overflow-x: hidden;

    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Old versions of Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */
}
a {
    -webkit-user-select: none !important;
}

/* Basic */

/* .row {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.row div[class^='col'] {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
} */


/* Welcome Screen */

.welcome-screen {
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5.0rem 2.5rem 5rem 2.5rem;
    text-align: center;
    min-height: 100vh;
    height: auto;
}

.welcome-screen img.logo {
    display: block;
    width: 124px;
    margin: auto auto auto auto;
}

.welcome-screen h1 {
    font-weight: 700;
    color: #1f1f1f;
    margin: 0rem 0 1rem 0;
    font-size: 1rem;
}

.new-welcome-screen h1 {
    font-weight: 600;
    color: #1f1f1f;
    margin: 0rem 0 1rem 0;
    font-size: 1rem;
}

.welcome-screen p {
    font-size: 0.85rem;
    color: #333;
}

.welcome-screen p.small {
    font-size: 0.7rem;
    margin-top: 1rem;
    color: #aaa;
}

.welcome-screen p a,
.welcome-screen p.small a {
    color: inherit;
}

.welcome-screen .btn {
    margin-top: auto;
    display: block;
}


/* Buttons */
.btn:hover {
    color: #FFF !important;
}
.btn.btn-primary {
    /* background: #004BA8;
    border-color: #004BA8; */
            background-color: #14538a !important;
            border-color: #14538a !important;
    color: #fff;
    border-radius: 35px;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 1rem;
    position: relative;
}

.btn.btn-primary img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1rem;
    width: 1rem;
    height: 1rem;
    margin: auto;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active {
    /* background: #39A0ED !important;
    border-color: #39A0ED !important; */
    color: #fff !important;
    box-shadow: none !important;
    outline: none !important;
}

.btn.btn-secondary {
    /* background: #39A0ED;
    border-color: #39A0ED; */
    color: #fff;
    border-radius: 35px;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 1rem;
    position: relative;
}

.btn.btn-secondary img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1rem;
    width: 1rem;
    height: 1rem;
    margin: auto;
}

.btn.btn-secondary:hover,
.btn.btn-secondary:focus,
.btn.btn-secondary:active {
    /* background: #07070A !important;
    border-color: #07070A !important; */
    /* background: #6bb8f3 !important;
    border-color: #6bb8f3 !important; */
    color: #fff !important;
    box-shadow: none !important;
    outline: none !important;
}

.btn.btn-danger {
    background: #ff0000;
    border-color: #ff0000;
    color: #fff;
    border-radius: 35px;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 1rem;
    position: relative;
}

.btn.btn-danger img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1rem;
    width: 1rem;
    height: 1rem;
    margin: auto;
}

.btn.btn-danger:hover,
.btn.btn-danger:focus,
.btn.btn-danger:active {
    background: #ff0000 !important;
    border-color: #ff0000 !important;
    color: #fff !important;
    box-shadow: none !important;
    outline: none !important;
}

.btn.btn-link {
    padding: 5px 10px;
    margin: -5px -10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #004ba8;
    border-radius: 6px;
    transition: 0.15s ease all;
    text-decoration: none;
}

.btn.btn-link:focus,
.btn.btn-link:hover,
.btn.btn-link:focus {
    background: #f2f3f4;
    box-shadow: none;
    outline: none;
}

.btn.loading,
.btn.btn-primary.loading,
.btn.btn-secondary.loading,
.btn.btn-danger.loading,
.btn.btn-link.loading {
    position: relative;
    color: transparent !important;
}

.btn.loading img {
    opacity: 0;
}

.btn.loading:after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    content: ' ';
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    border: 2px solid #fff;
    border-right-color: transparent;
    margin: auto;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
}

.btn.loading .info {
    opacity: 0;
}


/* Footer Menu */

.footer .menu {
    position: fixed;
    z-index: 99;
    bottom: -2px;
    left: 0;
    width: 100%;
    /* background: #fff; */
    /* box-shadow: rgba(10, 10, 10, 0.05) 0 -5px 10px; */
    margin: 0;
    padding: 0 1rem;
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.footer .menu li {
    width: calc(100% / 5);
    position: relative;
}

/* .footer .menu li+li:before {
    width: 1px;
    height: 80%;
    top: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    margin: auto;
    content: ' ';
    border-left: 1px solid #f2f3f4;
} */

.footer .menu li a {
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5px 5px;
    transition: 0.1s ease all;
    text-decoration: none !important;
    position: relative;
    height: 40px;
    border-right: solid 1px #FFF;
    margin-top: -0.65rem;
}
.footer .menu li:nth-child(2) a {
    border-right: unset;
}
.footer .menu li:last-child a {
    border-right: unset!important;
}


.footer .menu li a:hover,
.footer .menu li a:focus,
.footer .menu li a:active {
    background: #072040;
}

.footer .menu li img {
    display: block;
    /* width: 2.7rem; */
    height: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    filter: grayscale(1);
    opacity: 0.25;
    padding: 2px;
}

.footer .menu li span {
    display: block;
    font-size: 0.55rem;
    color: #333;
    margin-top: -0.25rem;
}

.footer .menu li.active img {
    filter: none;
    opacity: 1;
}

.footer .menu li.active span {
    color: #004BA8;
}

.footer .menu li a .notification-badge {
    position: absolute;
    top: 2px;
    right: 18px;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    text-align: center;
    line-height: 0.85rem;
    font-size: 0.55rem;
    font-style: normal;
    font-weight: 600;
    background: #dc0000;
    color: #FFFFFF;
}


/* Home Screen */

.home-screen {
    display: block;
    position: relative;
    padding: 0 2.5rem 0rem 2.5rem;
}

.hello-section {
    position: relative;
    padding: 2.5rem 2.5rem 3.5rem 2.5rem;
    width: calc(100% + 5rem);
    margin: 0 -2.5rem;
    /* background: #004ba8; */
}

.hello-section:after {
    position: absolute;
    top: 0;
    right: 0;
    width: 10%;
    height: 100%;
    content: ' ';
    z-index: 0;
    /* background: #fff; */
    opacity: 0.1;
}

.hello-section:before {
    position: absolute;
    top: 0;
    right: 0;
    width: 20%;
    height: 100%;
    content: ' ';
    z-index: 0;
    /* background: #fff; */
    opacity: 0.1;
}

/* .hello-section img.avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 25px; */
    /* box-shadow: rgba(255, 255, 255, 0.2) 0 0 0 5px; */
    /* position: relative;
    z-index: 1;
    display: block;
} */

.hello-section h3 {
    font-size: 1.25rem;
    /* margin: 3rem 0 0 0; */
    position: relative;
    z-index: 1;
    color: #fff;
}

.hello-section h3 strong {
    /* display: block; */
}

.hello-section .hello-earnings {
    display: inline-block;
    position: relative;
    color: #111111;
    line-height: 1;
    transition: 0.15s ease all;
    border-radius: 10px;
    padding: 0.5rem 3.25rem 0.5rem 0.5rem;
    text-decoration: none;
}

.hello-section .hello-earnings:active {
    background: rgba(255, 255, 255, 0.15);
}

.hello-section .hello-earnings img {
    width: 2.7rem;
    height: 2.7rem;
    position: absolute;
    top: 0px;
    bottom: 0;
    right: -0.2rem;
    margin: auto;
}

.hello-section .hello-earnings strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
}

.hello-section .hello-earnings i {
    display: block;
    font-style: normal;
    font-size: 0.8rem;
    opacity: 0.5;
}

.hello-section .hello-level {
    position: absolute;
    /*bottom: -0.5rem;*/
    left: 1.5rem;
    display: inline-block;
    z-index: 1;
    border-radius: 6px;
    padding: 0.15rem 0.5rem;
    font-size: 0.6rem;
    background: #999;
    color: #fff;
    font-weight: 600;
}

.hello-section .hello-level.level-gold {
    background: goldenrod;
    color: #fff;
}

.home-content {
    padding: 1.5rem 2.5rem 5rem 2.5rem;
    width: calc(100% + 5rem);
    margin: -2.5rem -2.5rem 0 -2.5rem;
    border-top-left-radius: 45px;
    z-index: 1;
    position: relative;
}

.notifications {
    display: block;
    position: relative;
    z-index: 1;
    margin-top: -3.5rem;
    margin-bottom: 1.5rem;
}

.notifications .notification-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: #14548a;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    box-shadow: rgba(10, 10, 10, 0.1) 0 3px 15px;
}

.notifications .notification-item .notification-icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    filter: grayscale(1);
}

.notifications .notification-item .notification-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    width: calc(100% - 4rem);
    padding-left: 1rem;
    padding-bottom: 1rem;
    padding-right: 0.4rem;
}

.notifications .notification-item .notification-content strong {
    font-size: 0.9rem;
    color: #feffff;
    display: block;
}

.notifications .notification-item .notification-content span {
    color: #feffff;
    font-size: 0.6rem;
    display: block;
}

.notifications .notification-item .btn {
    padding: 0.5rem;
    width: 2rem;
    height: 2rem;
    line-height: 1;
}

.notifications .notification-item .btn img {
    filter: brightness(0) invert(1);
    width: 1rem;
    height: 1rem;
    object-fit: contain;
    position: relative;
    right: 0.15rem;
}

.notifications .notification-item.v2 .notification-content {
    width: calc(100% - 2rem);
}

.notifications.notifications-page {
    margin-top: 0;
    margin-bottom: 0;
}

.notifications.notifications-page .notification-item {
    padding: 1rem 1.5rem;
}

.notifications.notifications-page .notification-item+.notification-item {
    margin-top: 0.5rem;
}

.notifications.notifications-page .notification-item .btn.disabled {
    background: #999;
    border-color: #999;
    padding: 0.4rem 0;
}

.notifications.notifications-page .notification-item .btn .spinner-border {
    width: 1rem;
    height: 1rem;
    right: 0;
    left: 0;
    margin: 0;
    border-width: 2px;
}

.notifications.notifications-page .notification-item .notification-content span.late {
    color: #ff0000;
    font-weight: 600;
}

.resources-list {
    display: block;
    position: relative;
}

.resources-list h4 {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.resources-list .items {
    overflow-y: hidden;
    white-space: nowrap;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    width: calc(100% + 0.7rem);
    margin: 0 -0.35rem;
    padding-top: 0.35rem;
}

.resources-list .items .item {
    background: #f1f1f1;
    /*box-shadow: rgba(10,10,10,0.075) 0 3px 12px;*/
    border-radius: 12px;
    width: calc((100% / 3) - 0.7rem);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-decoration: none !important;
    margin: 0.35rem;
    padding: 1rem 0;
    transition: 0.15s ease all;
    border: 1px solid #eee;
    box-shadow: rgb(10 10 10 / 10%) 0 3px 3px;
}

.resources-list .items .item:hover {
    /* background: #ddd; */
}

.resources-list .items .item img {
    width: 2rem;
    height: 2.8rem;
    margin-bottom: 0.5rem;
    /* filter: grayscale(1); */
    object-fit: contain;
}

.resources-list .items .item:hover img {
    filter: none;
}

.resources-list .items .item strong {
    font-weight: normal;
    color: #333;
    font-size: 0.65rem;
}

.resources-list .items .item:hover strong {
    /* color: #004BA8; */
}

.earnings {
    margin-top: 1rem;
}

.earnings h4 {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.earnings .box {
    background: #fff;
    box-shadow: rgba(10, 10, 10, 0.075) 0 3px 12px;
    border-radius: 12px;
    padding: 1.5rem 1rem 1rem 1rem;
    position: relative;
}

.earnings .box img {
    position: absolute;
    top: 2rem;
    right: 1rem;
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
}

.earnings .box strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #424242;
    margin: 0;
    line-height: 1.25;
}

.earnings .box i {
    display: block;
    margin: -0.5rem 0 0 0;
    font-style: normal;
    text-transform: uppercase;
    font-weight: 600;
}

.earnings .box span {
    display: block;
    margin-top: 1rem;
    font-size: 0.8rem;
}

.earnings.smaller .box {
    padding: 1rem 0.75rem 1rem 3.5rem;
    background: #f9f9f9;
    box-shadow: none;
    position: relative;
}

.earnings.smaller .box img {
    display: none;
}

.earnings.smaller .box strong {
    font-size: 1.3rem;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 1.3rem;
    margin: auto;
    line-height: 1.5rem;
    height: 1.5rem;
}

.earnings.smaller .box i {
    font-size: 0.9rem;
    margin-top: 0;
}

.earnings.smaller .box span {
    font-size: 0.8rem;
    margin-top: 0;
}

.recommended {
    /* margin-top: 1.5rem; */
}

.recommended h4 {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.recommended .recommend-box {
    display: block;
    position: relative;
    margin-top: 0.5rem;
    background: #fff;
    border-radius: 0 20px 20px 0;
    padding: 1.5rem 2.5rem 1.5rem 1.5rem;
    width: calc(100% + 3.6rem);
    margin-left: -2.5rem;
    transition: 0.15s ease all;
    text-decoration: none;
    color: #333;
}

.recommended .recommend-box.v2 {
    background: #fff;
}

.recommended .recommend-box:hover,
.recommended .recommend-box:focus,
.recommended .recommend-box:active {
    filter: brightness(120%);
}

.recommended .recommend-box h5 {
    display: block;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
}

.recommended .recommend-box p {
    margin: 0;
    font-size: 0.7rem;
    color: #333;
}

.home-resources {
    /* background: #f2f3f4; */
    padding: 0 2.5rem 0rem 2.5rem;
    width: calc(100% + 5rem);
    margin: -2.5rem -2.5rem 0 -2.5rem;
    border-top-left-radius: 45px;
    z-index: 1;
    position: relative;
}

.home-resources h4 {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.home-resources .resources-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: stretch;
    width: calc(100% + 4.2rem);
    margin: 1rem -2.5rem 0 -28px;
    background: #fff;
    padding: 1rem 0.5rem 1rem 1rem;
    border-radius: 15px 0 0 15px;
    box-shadow: rgb(10 10 10 / 5%) 0 4px 8px;
    user-select: none;
}

.home-resources .resources-item:hover,
.home-resources .resources-item:focus,
.home-resources .resources-item:active {
    background: #ddd;
}

.home-resources .resources-item img {
    width: 3.5rem;
    height: 3.5rem;
    flex-shrink: 0;
    object-fit: cover;
    /* object-fit: unset; */
    border-radius: 10px;
}

.home-resources .resources-item .item-info {
    width: calc(100% - 3.9rem);
    flex-shrink: 0;
    padding-left: 1rem;
}

.home-resources .resources-item .item-info h4 {
    font-size: 1rem;
    margin: 0 0 0.25rem 0;
    color: #1f1f1f;
}

.home-resources .resources-item .item-info p {
    font-size: 0.7rem;
    margin: 0;
    color: #333;
}


/* Page Header */

.page-header-button {
    background-color: #072040;
    border-radius: 35px;
    padding: 15px;
    width: 100%;
    /* margin: 0px 15px 5px; */
    box-shadow: rgba(0, 0, 0, 0.5) 4px 4px 3.2px;
    display: flex;
    align-items: center;
    align-content: space-between;
}

.page-header-button h1 {
    font-weight: 600;
    color: #FFFFFF;
    font-size: 1.8rem;
    width: 100%;
    line-height: 0;
    padding-top:10px;
}

.page-header img {
    width: 25px;
    height: 30px;
    transform-origin: center;
    filter: brightness(0) invert(1);
}

.page-header {
    position: relative;
    /* padding: 1rem 1rem 3.5rem 1rem; */
    /* display: flex; */
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
    margin-top: 2rem;
    padding: 0 1rem;
    width: 100%;
}

/* .page-header:after {
    position: absolute;
    top: 0;
    right: 0;
    width: 10%;
    height: 100%;
    content: ' ';
    z-index: 0;
    background: #fff;
    opacity: 0.1;
} */
.page-header{
    /* background-image: url('../new_design/homepage_background.jpg');
    background-size: cover; */
}

/* .page-header:before {
    position: absolute;
    top: 0;
    right: 0;
    width: 20%;
    height: 100%;
    content: ' ';
    z-index: 0;
    background: #fff;
    opacity: 0.1;
} */

/* .page-header h1 {
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
    margin: 0;
    color: #fff;
} */

.page-header .page-header-link {
    /* position: absolute; */
    top: 1.1rem;
    bottom: 3.5rem;
    left: 1.8rem;
    /* width: 2.5rem; */
    /* height: 2.5rem; */
    /* line-height: 2.5rem; */
    text-align: center;
    /* margin: auto; */
    z-index: 1;
    border-radius: 10px;
    transition: 0.15s ease all;
    z-index: 999;
    /* float: left;

}
.h-bt{
    /* height: 1.5rem !important; */
}

/* .page-header .page-header-link.link-left {
    left: 2.5rem;
    right: auto;
} */

.page-header .page-header-link.link-right {
    right: 1.5rem;
    left: auto;
}

.page-header .page-header-link:hover,
.page-header .page-header-link:focus,
.page-header .page-header-link:active {
    background: rgba(255, 255, 255, 0.15);
}

.page-header .page-header-link.link-left img {
    /* transform: rotate(-180deg); */
}

.page-header .page-header-link-new {
    position: absolute;
    top: 19px;
    bottom: 2.5rem;
    left: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    text-align: center;
    margin: auto;
    z-index: 1;
    border-radius: 10px;
    transition: 0.15s ease all;
}

.page-header .page-header-link-new.link-left {
    left: 1.5rem;
    right: auto;
}

.page-header .page-header-link-nwe.link-right {
    right: 1.5rem;
    left: auto;
}

.page-header .page-header-link-new:hover,
.page-header .page-header-link-new:focus,
.page-header .page-header-link-new:active {
    background: rgba(255, 255, 255, 0.15);
}

.page-header .page-header-link-new img {
    width: 1.5rem;
    transform-origin: center;
    filter: brightness(0) invert(1);
}

.page-header .page-header-link-new.link-left img {
    transform: rotate(-180deg);
}


/* Page Body */

.page-body {
    background: #fff;
    padding: 2.5rem 1.5rem 6.5rem 1.5rem;
    width: 100%;
    margin: -2.5rem 0 0 0;
    border-top-left-radius: 45px;
    border-top-right-radius: 45px;
    z-index: 1;
    position: relative;
    max-width: 100% !important;
    overflow-x: hidden !important;
}
.pb-pd-pf{
    padding: 2.5rem 2.5rem 0rem 2.5rem !important;
}

.page-body.body-with-actions {
    padding-bottom: 9.5rem;
}

.page-body .page-actions.multiple-buttons {
    gap: 0.5rem;
}

.page-body .page-actions.multiple-buttons .btn {
    margin: 0;
    font-size: 0.8rem;
}

.page-body .page-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    position: fixed;
    left: 2rem;
    right: 2rem;
    bottom: 5.5rem;
}

/* Profile */

.profile-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
    position: relative;
}

.profile-header img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    flex-shrink: 0;
    transition: 0.1s ease all;
}

.profile-header:active img {
    opacity: 0.75;
}

.profile-header input.form-control {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    /*width: 15rem;*/
    /*height: 15rem;*/
    z-index: 1;
    border-radius: 50%;
    opacity: 0;
    outline: none;
}

.profile-header img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    box-shadow: #4581cd 0 0 0 5px!important;
    position: relative;
    display: block;
    object-fit: cover!important;
}

.profile-header .info {
    width: calc(100% - 3rem);
    padding-left: 1rem;
}

.profile-header .info h2 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f1f1f;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-header .info span {
    font-size: 0.8rem;
    color: #aaa;
    margin: 0;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-links .item {
    background: #fff;
    box-shadow: rgba(10, 10, 10, 0.075) 0 3px 12px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    flex-shrink: 0;
    text-decoration: none !important;
    margin-top: 1rem;
    height: calc(100% - 1rem);
    transition: 0.1s ease all;
}

.profile-links .item:active {
    background: #eee;
    transform: scale(0.98);
}

.profile-links .item img {
    width: 2.5rem;
    height: 2.5rem;
}

.profile-links .item:hover img {
    filter: none;
}

.profile-links .item strong {
    font-weight: normal;
    color: #333;
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

.profile-links .item:hover strong {
    color: #004BA8;
}

.profile-links .links-box {
    display: block;
    border-radius: 10px;
    padding: 15px 15px 10px 15px;
    border: 1px solid #eee;
    box-shadow: rgba(10, 10, 10, 0.1) 0 3px 3px;
    margin-top: 15px;
}

.profile-links .links-box h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f1f1f;
    margin: 0 0 5px 0;
}

.profile-links .links-box ul {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}

.profile-links .links-box ul li {
    display: block;
}

.profile-links .links-box ul li a {
    display: block;
    width: calc(100% + 30px);
    margin: 0 -15px;
    padding: 7px 15px 7px 40px;
    transition: 0.15s ease all;
    text-decoration: none;
    position: relative;
}

.profile-links .links-box ul li a:active {
    background: #f1f1f1;
}

.profile-links .links-box ul li a:after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    width: 0.45rem;
    height: 0.45rem;
    border-right: 1px solid #1f1f1f;
    border-bottom: 1px solid #1f1f1f;
    opacity: 0.5;
    transform-origin: center;
    transform: rotate(-45deg);
    content: ' ';
    margin: auto;
}

.profile-links .links-box ul li a img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    width: 16px;
    height: 16px;
    filter: brightness(0);
    margin: auto;
}

.profile-links .links-box ul li a strong {
    display: block;
    font-size: 0.85rem;
    color: #333;
    font-weight: 600;
}

.profile-links .links-box ul li a span {
    display: block;
    font-size: 0.7rem;
    color: #999;
    margin: 0;
}

.profile-actions .btn-primary,
.profile-actions .btn-default {
    padding: 10px 20px !important;
    width: auto;
}


/* Messages */

.chat-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1rem 0.5rem 1rem 0.5rem;
    width: calc(90% + 2rem);
    /* margin: 0 -1rem; */
    /* border-radius: 10px; */
    transition: 0.15s ease all;
    text-decoration: none !important;
    border-bottom: solid 1px #e4af50;
}

.chat-box-img {
    width: 60px;
    height: 60px;
    position: relative;
}

.chat-box-txt {
     width: 245px;
}

.chat-box:hover {
    /* background: #f2f3f4; */
    background: #e4af50;
}

.chat-box+.chat-box {
    margin-top: 1rem;
}

/* .chat-box+.chat-box:after {
    position: absolute;
    top: -0.5rem;
    left: 0;
    width: 100%;
    height: 1px;
    background: #FFFFFF;
    content: ' ';
    opacity: 0.5;
} */

.chat-box img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    z-index: 1;
    filter: brightness(0) invert(1);
}

.chat-box-clinic img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 51px;
    height: 51px;
    border-radius: 50%;
    z-index: 1;
    filter: brightness(0) invert(1);
}

.chat-box-img:before {
    border: solid 3px #FDBD50;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    margin: auto;
    background: #004ba8;
    content: ' ';
    border-radius: 50%;
    z-index: 1;
}
.chat-box-img:after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    margin: auto;
    background: #FDBD50;
    content: ' ';
    border-radius: 50%;
    z-index: 0;
    background-image: linear-gradient(50deg, transparent 50%, #FFFFFF 50%), linear-gradient(-110deg, #FFFFFF 50%, transparent 50%);
}

.chat-box-clinic:before {
    /* background: text-transform !important; */
    border: solid 1px #004ba8;
}

.chat-box strong {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    position: relative;
}

.chat-box strong.online:before {
    position: absolute;
    left: -1.5rem;
    width: 1rem;
    height: 1rem;
    background: green;
    content: ' ';
    border-radius: 50%;
    border: 0.25rem solid #fff;
    z-index: 1;
}

.chat-box span {
    font-size: 0.8rem;
    color: #2e230d;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.chat-box span.read-status {
    float: right;
    color: #253540;
    font-size: 0.7rem;
}
.chat-box span.un-read-status {
    float: right;
    color: #d12e13;
    font-size: 0.7rem;
}

.chat-box i,
.chat-box div.date {
    /* position: absolute; */
    /* top: 1.5rem; */
    /* right: 0.5rem; */
    font-size: 0.7rem;
    color: #434743;
    font-style: normal;
    margin-top: 8px;
}

.chat-messages {
    height: calc(100vh - 8.62rem);
    width: calc(100% + 3.5rem);
    margin-top: -2.5rem;
    margin-left: -1rem;
    margin-right: -2.5rem;
    padding-right: 1.5rem;
    overflow-x: hidden;
    display: flex;
    flex-direction: column-reverse;
    padding-bottom: 100px;
    position: relative;
}

.chat-messages .chat-message {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    margin-top: 1.5rem;
    align-items: last baseline;
}

.chat-messages .chat-message .person-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: #004ba8;
    border: solid 2px #FDBD50;
    border-radius: 50%;
    text-align: center;
    line-height: 3rem;
    flex-shrink: 0;
    position: relative;
    display: block;
    align-self: flex-end;
}

.chat-messages .chat-message .person-avatar:before,
.chat-messages .chat-message .user-avatar:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -0.26rem;
    width: 2.8rem;
    height: 2.8rem;
    margin: auto;
    /* background: #FDBD50; */
    content: ' ';
    border-radius: 50%;
    z-index: -1;
    background-image: linear-gradient(50deg, transparent 50%, #FFFFFF 50%), linear-gradient(-110deg, #FFFFFF 50%, transparent 50%);
}

.chat-messages .chat-message .person-avatar img {
    width: 2rem;
    /* z-index: 1; */
    position: absolute;
    top: 6px;
    left: 2px;
}

.chat-messages .chat-message .person-message {
    /* width: calc(100% - 3rem); */
    padding-left: 0.5rem;
    position: relative;
}

.chat-messages .chat-message .person-message .person-details strong {
    font-size: 0.8rem;
    color: #1f1f1f;
    display: block;
}

.chat-messages .chat-message .person-message .person-details span {
    display: block;
    font-size: 0.6rem;
    color: #999;
}

.chat-messages .chat-message .person-message .person-details .user-avater-info {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 10px;
}


.chat-messages .chat-message .user-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: #FDBD50;
    border: solid 2px #FDBD50;
    border-radius: 50%;
    text-align: center;
    line-height: 3rem;
    flex-shrink: 0;
    position: relative;
    display: block;
    align-self: flex-end;
}

.chat-messages .chat-message .user-avatar img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: -2px;
    left: -2px;
    border: solid 2px #FDBD50;
}

.chat-messages .chat-message .person-message .message {
    background: #14548a;
    position: relative;
    color: #dee7ef;
    padding: 0.75rem 1.25rem;
    border-radius: 20px 20px 20px 0;
    margin-top: 0.25rem;
    font-size: 0.8rem;
    display: inline-block;
    word-break: break-word;
}

.chat-messages .chat-message .person-message .message:after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 0;
    height: 0;
    bottom: 0;
    left: -9px;
    border: 5px solid #14548a;
    border-left-color: transparent;
    border-top-color: transparent;
}

.chat-messages .chat-message.my-message {
    align-items: flex-end;
    flex-direction: row-reverse;
    align-items: last baseline;
}

.chat-messages .chat-message.my-message .person-message {
    text-align: right;
    align-items: last baseline;
}

.chat-messages .chat-message.my-message .person-message .message {
    border-radius: 20px 20px 0 20px;
    background: #FFF;
    color: #949494;
    width: auto;
    text-align: left;
    margin-right: 1em;
}

.chat-messages .chat-message.my-message .person-message .message:after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 0;
    height: 0;
    bottom: 0;
    left: unset;
    right: -9px;
    border: 5px solid #fff;
    border-right-color: transparent;
    border-top-color: transparent;
}

.chat-form {
    position: fixed;
    bottom: 3px;
    left: 0;
    width: 95%;
    height: 90px;
    margin-left: 10px;
    border: solid 3px #FFF;
    border-radius: 10px;


    /* position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    border-top: 1px solid #eee;
    box-shadow: rgba(10, 10, 10, 0.05) 0 -5px 15px;
    background: #fff; */
}

.chat-form textarea {
    margin: 5px 5px;
    line-height: normal;
    border-radius: 5px;
    font-size: 0.9rem;
    background: white;
    width: 78%;
    height:75px;
    border: none;
    box-shadow: none;
    resize: none;
}

.chat-form .attach {
    width: 25px;
    padding-top: 10px;
    text-align: right;
}

.chat-form .send {
    width: 25px;
    position: relative;
}

.chat-form .send img {
    position: absolute;
    top: 10px;
    left: 0;
}

.chat-form .btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    padding: 0 0.5rem;
}

.register-form {
    text-align: left;
    padding: 2rem;
    justify-content: flex-start;
}

.register-form-center {
    text-align: center;
    padding: 2rem;
    justify-content: flex-start;
}

.register-form .form-group label {
    display: block;
    font-size: 0.8rem;
    color: #333;
    margin: 0 0 2px 0;
}

.register-form .form-group .form-control {
    height: auto;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    color: #1f1f1f;
    background: #fff;
    box-shadow: rgba(10, 10, 10, 0.15) 0 2px 6px;
    border: none;
    transition: 0.15s ease all;
}

.register-form .form-group .form-control:focus {
    box-shadow: rgba(10, 10, 10, 0.1) 0 0.25rem 0.8rem;
    background: #fff;
    border-color: #ddd;
}

.register-form .form-group .form-control.large-input {
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 5px;
}

.register-form .avatars {
    /* display: flex;
    flex-direction: row; */
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 1rem;
    align-items: center;
    text-align: center;
    justify-content: center;
    overflow-y: hidden;
    width: calc(100% + 4rem);
    margin: 0 -2rem 1.5rem -2rem;
    padding: 1rem 2rem;
}

.register-form .avatars img {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    margin: 0 1rem 0 0;
    transition: 0.15s ease all;
}

.register-form .avatars img:active {
    filter: brightness(120%);
}

.register-form .avatars img.active {
    box-shadow: #004ba8 0 0 0 5px;
}

.register-form .btn.btn-right {
    width: auto;
    display: inline-block;
    padding-right: 2rem;
    padding-left: 2rem;
    margin-left: auto;
}

.register-form .btn.btn-left {
    width: auto;
    display: inline-block;
    padding-right: 2rem;
    padding-left: 4rem;
    margin-right: auto;
}

.register-form .btn.btn-left img {
    left: 2rem;
    right: auto;
}

.register-form .btn.btn-choice {
    display: block;
    width: 100%;
    height: auto;
    padding: 0.5rem 1rem;
    text-align: center;
    background: rgba(0, 75, 168, 0.1);
    color: #004ba8;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.15s ease all;
}

.register-form .btn.btn-choice:hover,
.register-form .btn.btn-choice:focus,
.register-form .btn.btn-choice:active {
    background: rgba(0, 75, 168, 0.25);
    box-shadow: none;
    outline: none;
}

.register-form .btn.btn-choice+.btn {
    margin-top: 0.5rem;
}

.register-form .btn.btn-choice.btn-box {
    text-align: left;
    padding-left: 35%;
    position: relative;
    padding-right: 10px;
    overflow: hidden;
}

.register-form .btn.btn-choice.btn-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.register-form .btn.btn-choice.btn-box .info p {
    font-size: 0.7rem;
    font-weight: normal;
    color: rgba(10, 10, 10, 0.75);
    margin: 0;
}

.register-form .btn.btn-select {
    display: block;
    width: 100%;
    height: auto;
    padding: 0.5rem 1rem;
    text-align: center;
    background: rgba(0, 75, 168, 0.1);
    color: #004ba8;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.15s ease all;
}

.register-form .btn.btn-select:hover,
.register-form .btn.btn-select:focus,
.register-form .btn.btn-select:active {
    background: rgba(0, 75, 168, 0.25);
    box-shadow: none;
    outline: none;
}

.register-form .btn.btn-select+.btn {
    margin-top: 0.5rem;
}

.register-form .btn.btn-select.btn-box {
    text-align: left;
    /* padding-left: 35%; */
    position: relative;
    padding-right: 10px;
    overflow: hidden;
}

.register-form .btn.btn-select.btn-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.register-form .btn.btn-select.btn-box .info p {
    font-size: 0.7rem;
    font-weight: normal;
    color: rgba(10, 10, 10, 0.75);
    margin: 0;
}

.register-form .step-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    /* background-color: #FFF; */
    /* padding-bottom: 2.5rem;
    padding-top: 0.5rem; */
    padding: 0.5rem 0.5rem 2.5rem 0.5rem;
}
.register-form .step-actions2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    position: sticky;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    /* background-color: #FFF; */
    /* padding-bottom: 2.5rem;
    padding-top: 0.5rem; */
    padding: 0.5rem 0.5rem 2.5rem 0.5rem;
}

.register-form .register-step {
    display: none;
}

.register-form .register-step.active {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.register-form.account-form {
    width: calc(100% + 4rem);
    margin-left: -2rem;
    margin-right: -2rem;
    padding-top: 0;
    padding-bottom: 1rem;
    min-height: auto;
}

.register-form.account-form .register-step .step-actions,
.register-form.account-form .preview-test-results .step-actions {
    gap: 0.5rem;
    /* bottom: 4.5rem; */
    margin-bottom: 20px;
}

.register-form.account-form .register-step .btn {
    width: 99%;
}

.register-form.account-form .register-step .btn.btn-right {
    padding-left: 4rem;
    padding-right: 2rem;
}

.register-form.account-form .register-step .btn.btn-right img {
    filter: brightness(0) invert(1);
    left: 2rem;
    right: auto;
}

.register-form.account-form .register-step .btn.btn-left img {
    filter: brightness(0) invert(1);
}

.register-form .finish-step>img {
    width: 5rem;
    height: 5rem;
}

.register-form .finish-step>h4 {
    font-size: 1rem;
    color: #999;
    margin: -0.5rem 0 1.5rem 0;
}

.register-form .preview-test-results {
    display: none;
}

.register-form .preview-test-results.active {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


/* Offers */

.orders+.orders {
    margin-top: 3rem;
}

.orders.appointments+.orders.appointments {
    margin-top: 2rem;
}

.orders h4 {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.orders .order-item {
    position: relative;
    margin-top: 0.75rem;
    background: #f2f3f4;
    padding: 1rem 2.5rem 1rem 1rem;
    width: calc(100% + 2.5rem);
    border-radius: 20px 0 0 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.orders .order-item .icon {
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    flex-shrink: 0;
}

.orders .order-item .icon img {
    width: 2rem;
    height: 2rem;
}

.orders .order-item .info {
    display: block;
    width: calc(100% - 8rem);
    flex-shrink: 0;
}

.orders .order-item .info strong {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.85rem;
    color: #1f1f1f;
}

.orders .order-item .info span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.6rem;
    color: #333;
}

.orders .order-item .days {
    width: 5.5rem;
    text-align: center;
    font-size: 0.7rem;
    color: #aaa;
    flex-shrink: 0;
}

.orders .appointment-item {
    position: relative;
    margin-top: 0.75rem;
    background: #f2f3f4;
    padding: 1rem 2.5rem 1rem 1rem;
    /* width: calc(100% + 2.5rem); */
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    transition: 0.15s ease all;
    text-decoration: none;
}

.orders .appointment-item:active {
    background: #ddd;
}

.orders .appointment-item .date {
    display: block;
    width: 4rem;
    flex-shrink: 0;
}

.orders .appointment-item .date span {
    display: block;
    font-size: 0.6rem;
    color: #004ba8;
}

.orders .appointment-item .date strong {
    display: block;
    font-size: 1.75rem;
    font-weight: bold;
    line-height: 1;
    color: #004ba8;
}

.orders .appointment-item .info {
    display: block;
    width: calc(100% - 4rem);
    flex-shrink: 0;
}

.orders .appointment-item .info strong {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.85rem;
    color: #1f1f1f;
}

.orders .appointment-item .info span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.6rem;
    color: #333;
}

.orders .tracking_link {
    color: #fff;
    text-decoration: underline;
}


/* Settings */

.switch-toggle {
    position: relative;
    margin: 0;
    display: block;
}

.switch-toggle+.switch-toggle {
    margin-top: 15px;
}

.switch-toggle input {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
}

.switch-toggle input+div {
    display: block;
    position: relative;
    padding: 1rem;
    border-radius: 10px;
    background: #f2f3f4;
    transition: 0.15s ease all;
}

.switch-toggle:active input+div {
    background: #ddd;
}

.switch-toggle input+div strong {
    font-weight: 700;
    color: #1f1f1f;
}

.switch-toggle input+div span {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1rem;
    width: 3rem;
    height: 1.5rem;
    background: #fff;
    content: ' ';
    border-radius: 30px;
    margin: auto;
    transition: 0.15s ease all;
}


.switch-toggle input+div span:before {
    position: absolute;
    top: 0.25rem;
    left: 0.25rem;
    bottom: 0.25rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #999;
    content: ' ';
    transition: 0.15s ease all;
}

.switch-toggle input:checked+div span {
    background: #fff;
}

.switch-toggle input:checked+div span:before {
    transform: translateX(1.5rem);
    background: #14548a;
}


/* Resources */

.resource-item-new2 {
    display: block;
    position: relative;
    background: #fff;
    box-shadow: rgba(10, 10, 10, 0.1) 0 2px 5px;
    border-radius: 10px;
    padding: 0.3rem 1rem 0.5rem 1rem;
    transition: 0.1s ease all;
    text-decoration: none !important;
    overflow: hidden;
}

.resource-item-new {
    display: block;
    position: relative;
    background: #fff;
    box-shadow: rgba(10, 10, 10, 0.1) 0 2px 5px;
    border-radius: 10px;
    padding: 1.5rem 1rem 1.5rem 1rem;
    transition: 0.1s ease all;
    text-decoration: none !important;
    overflow: hidden;
}

.resource-item {
    display: block;
    position: relative;
    background: #fff;
    box-shadow: rgba(10, 10, 10, 0.1) 0 2px 5px;
    border-radius: 10px;
    padding: 1.5rem 6.5rem 1.5rem 1rem;
    transition: 0.1s ease all;
    text-decoration: none !important;
    overflow: hidden;
}

.resource-item:active {
    background: #eee;
    box-shadow: rgba(10, 10, 10, 0.2) 0 2px 5px;
    transform-origin: center;
    transform: scale(0.98);
}

.resource-item+.resource-item {
    margin-top: 1rem;
}

.resource-item strong {
    display: block;
    color: #1f1f1f;
    font-size: 1rem;
    line-height: 1.15;
}

.resource-item p {
    display: block;
    font-size: 0.7rem;
    color: #7a7a7a;
    margin: 0;
}

.resource-item img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 5.5rem;
    object-fit: cover;
}


/* Blog */

.blog-post {
    padding-bottom: 5rem;
    word-wrap: break-word;
}

.blog-post h1 {
    font-size: 1rem;
    font-weight: bold;
    color: #1f1f1f;
}

.blog-post p {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 1rem;
    /* word-spacing: -2px; */
}

.blog-post .blog-thumb {
    width: 100%;
    margin: 1.5rem 0;
    border-radius: 10px;
    box-shadow: rgba(10, 10, 10, 0.1) 0 7px 15px;
}

.blog-post .blog-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    position: fixed;
    left: 2rem;
    right: 2rem;
    bottom: 5rem;
}

.blog-post .blog-actions .btn {
    margin-left: auto;
    padding-left: 3rem;
    padding-right: 3rem;
}

.blog-points {
    text-align: center;
}

.blog-points img {
    width: 64px;
    display: block;
    margin: auto;
}

.blog-points h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f1f1f;
    margin: 1.5rem 0 0.5rem 0;
}

.blog-points p {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 3rem;
}

.blog-points .btn {
    padding-left: 3rem;
    padding-right: 3rem;
}


/* Calendar */

.mental-calendar {
    display: block;
    position: relative;
    border-radius: 15px;
}

.mental-calendar .calendar-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 1rem 0;
}

.mental-calendar .calendar-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f1f1f;
    margin: 0 auto;
}

.mental-calendar .calendar-header .calendar-left,
.mental-calendar .calendar-header .calendar-right {
    width: 2.1rem;
    height: 2.1rem;
    line-height: 2.1rem;
    text-align: center;
    margin: -0.5rem -0.5rem;
    transition: 0.1s ease all;
    border-radius: 6px;
}

.mental-calendar .calendar-header .calendar-left:active,
.mental-calendar .calendar-header .calendar-right:active {
    background: #ddd;
}

.mental-calendar .calendar-header .calendar-left img {
    transform: rotate(-180deg);
    width: 1.1rem;
    filter: grayscale(1);
}

.mental-calendar .calendar-header .calendar-right img {
    width: 1.1rem;
    filter: grayscale(1);
}

.mental-calendar .calendar-days .days-header {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: center;
}

.mental-calendar .calendar-days .days-header span {
    width: calc(100% / 7);
    flex-shrink: 0;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.8rem;
    color: #999;
}

.mental-calendar .calendar-days .days-body {
    display: flex;
    flex-direction: column;
}

.mental-calendar .calendar-days .days-body .week {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: center;
    gap: 3px;
    margin-bottom: 3px;
}

.mental-calendar .calendar-days .days-body .week .day {
    width: calc((100% / 7) - (21px / 7));
    flex-shrink: 0;
    text-align: left;
    padding: 0.25rem 0.25rem 1.35rem 0.25rem;
    font-size: 0.8rem;
    color: #333;
    position: relative;
    background: #f2f3f4;
    border-radius: 5px;
}

.mental-calendar .calendar-days .days-body .week .day img {
    position: absolute;
    width: 50%;
    top: 8px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.mental-calendar .calendar-days .days-body .week .day.disabled {
    color: #aaa;
    opacity: 0.5;
}

.mental-calendar .calendar-days .days-body .week .day.today {
    color: #fff;
    background: #004ba8;
}

.mental-calendar .calendar-days .days-body .week .day.hit {
    color: #fff;
    background: #004ba8;
    position: relative;
}

.mental-calendar .calendar-days .days-body .week .day.hit:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 10px;
    width: 50%;
    height: 100%;
    background: url('../img/icons/check.svg') center no-repeat;
    background-size: contain;
    content: ' ';
    margin: auto;
    filter: brightness(0) invert(1);
}

.mental-calendar .calendar-days .days-body .week .day.miss {
    color: #aaa;
}

.mental-calendar .calendar-days .days-body .week .day.miss:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 10px;
    width: 50%;
    height: 30%;
    background: url('../img/icons/close.svg') center no-repeat;
    background-size: contain;
    content: ' ';
    margin: auto;
    filter: grayscale(1);
    opacity: 0.25;
}

.mental-feeling {
    position: relative;
    margin-top: 1.5rem;
}

.mental-feeling strong {
    display: block;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: rgba(10, 10, 10, 0.15) 0 3px 6px;
    background: #fff;
    text-align: center;
    transition: 0.1s ease all;
}

.mental-feeling:hover strong {
    background: #f2f3f4;
    transform: scale(0.98);
}

.mental-feeling strong span {
    display: block;
    font-size: 0.8rem;
    color: #999;
    font-weight: normal;
}

.mental-feeling .feelings {
    top: -70%;
    left: 0;
    width: 100%;
    height: auto;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
}

.mental-feeling:hover .feelings {
    opacity: 1;
    visibility: visible;
}

.mental-feeling .feelings .feeling-item {
    display: block;
    width: 2rem;
    height: 2rem;
    margin: 0 5px;
    transform: translateY(15px);
    transition: 0.15s ease all;
}

/* .mental-feeling .feelings .feeling-item:nth-child(2) {
    transition-delay: 0.025s;
}

.mental-feeling .feelings .feeling-item:nth-child(3) {
    transition-delay: 0.05s;
}

.mental-feeling .feelings .feeling-item:nth-child(4) {
    transition-delay: 0.1s;
}

.mental-feeling .feelings .feeling-item:nth-child(5) {
    transition-delay: 0.125s;
}

.mental-feeling .feelings .feeling-item:nth-child(6) {
    transition-delay: 0.15s;
} */

.mental-feeling .feelings .feeling-item img {
    width: 2rem;
}

.mental-feeling:hover .feelings .feeling-item {
    transform: translateY(0);
}

.mental-feeling:hover .feelings .feeling-item:active {
    transform: scale(1.2);
}

.mental-feeling .feelings .feeling-item.button-item {
    width: auto;
    height: auto;
}

.mental-feeling .feelings .feeling-item.button-item .btn {
    padding: 0.5rem 1.5rem;
}


/* PrEP Express */

.register-form.prep-express .register-step {
    padding-bottom: 5rem;
}

.register-form.prep-express img.prep-thumb {
    border-radius: 35px;
    max-width: 60%;
}

.register-form.prep-express .register-step .inline-items .form-control {
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

.booking-details {
    text-align: center;
    padding: 2rem;
    margin: 0rem 0;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: rgb(10 10 10 / 10%) 0 3px 3px;
}


/* .new-booking-details {
    text-align: center;
    padding: 2rem;
    margin: 0rem 0;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: rgb(10 10 10 / 10%) 0 3px 3px;
} */

.booking-details img {
    width: 64px;
    display: block;
    margin: auto;
}

.booking-details h1 {
    font-size: 0.9rem;
    color: #1f1f1f;
    font-weight: 400;
}

.booking-details h4 {
    color: #1f1f1f;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 1rem;
}

.prep-express-info {
    margin-bottom: 20px;
}

.prep-express-info img {
    width: 100%;
    height: 7.5rem;
    object-fit: cover;
}

.booking-confirm {
    width: 2.5rem !important;
    /* margin: 0 !important; */
    /* display: inline !important; */
}


/* HIV Self-Test */

.test-results h4 {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.test-results span {
    display: block;
    padding: 1rem;
    font-size: 0.8rem;
    font-family: sans-serif;
    margin-top: 0.25rem;
    border: 1px solid #eee;
    border-radius: 6px;
}

.test-results-upload {
    position: relative;
    background: #f2f3f4;
    padding: 1rem 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: 0.15s ease all;
    box-shadow: rgb(10 10 10 / 10%) 0 3px 3px;
}

.test-results-upload:active {
    background: #fff;
    box-shadow: rgba(10, 10, 10, 0.1) 0 2px 6px;
    transform-origin: center;
    transform: scale(0.95);
}

.test-results-upload img {
    width: 48px;
    flex-shrink: 0;
}

.test-results-upload strong {
    width: calc(100% - 48px);
    flex-shrink: 0;
    font-size: 0.85rem;
    padding-left: 0.5rem;
    user-select: none;
}


/* Radio */

.radio {
    display: block;
    position: relative;
    margin: 0 0 0.5rem 0;
}

.radio input {
    position: absolute;
    top: 0;
    z-index: -1;
    opacity: 0;
}

.radio input+div {
    display: block;
    position: relative;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 1.0rem 1rem 1.0rem 2.5rem;
    background: rgba(0, 75, 168, 0.1);
    color: #004ba8;
    border-radius: 6px;
    transition: 0.15s ease all;
}

.radio input:checked+div,
.radio input+div:hover,
.radio input+div:focus,
.radio input+div:active {
    background: rgba(0, 75, 168, 0.25);
    box-shadow: none;
    outline: none;
}

.radio input+div:before {
    position: absolute;
    top: 0;
    left: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    bottom: 0;
    content: ' ';
    background: #fff;
    margin: auto;
    border-radius: 10px;
    z-index: 0;
}

.radio input:checked+div:after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0.75rem;
    width: 1rem;
    height: 1rem;
    margin: auto;
    background: url('../img/icons/check.svg') center no-repeat;
    background-size: contain;
    content: ' ';
    z-index: 1;
}

.radio input+div span {
    display: block;
}

.upload-step h4 {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.upload-step .switch-toggle input+div {
    background: #14548a;
    color: #FFF;
}

.upload-step .switch-toggle input+div strong {
    color: #FFF;
    margin-left: 65px;
}

.prep-express .switch-toggle input+div {
    background: #fdbd50;
    color: #FFF;
    padding: 10px 10px;
}

.prep-express .switch-toggle input+div strong {
    color: black;
    margin-left: 50px;
    max-width: 80%;
    display: inline-block;
    font-size: 12px;
    font-weight: normal;
    line-height: 1rem;
}

.prep-express .switch-toggle+.switch-toggle {
    margin-top: 7px;
}

.prep-express .switch-toggle input+div span {
    left: 0.8rem;
    width: 40px;
}

.prep-express .switch-toggle input:checked+div span:before {
    transform: translateX(0.9rem);
}

.prep-express .switch-toggle input+div span:before {
    background: red;
}

.prep-express .switch-toggle input:checked+div span {
    background: white;
}

.prep-express .switch-toggle input:checked+div span:before {
    background: green;
}

.self-test .switch-toggle input+div span,
.prep-express .switch-toggle input+div span {
    left: 1rem;
    right: unset;
}



.file-upload {
    display: block;
    padding: 2.5rem;
    background: #f9f9f9;
    border-radius: 15px;
    text-align: center;
    position: relative;
}

.file-upload input {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0;
}

.file-upload img {
    display: block;
    width: 64px;
    margin: auto;
}

.file-upload strong {
    display: block;
    font-weight: 600;
    color: #1f1f1f;
}

.file-upload p {
    font-size: 0.8rem;
    color: #999;
}


/* Medicine Buttons */

.medicine-buttons .btn.btn-link {
    margin: -1.5rem 0 1.5rem 0;
}


/* Medicine Tracker */

.medicine-tracker {
    display: block;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f2f3f4;
    border-radius: 10px;
}

.medicine-tracker .item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.medicine-tracker .item+.item {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #ddd;
}

.medicine-tracker .item span {
    font-size: 1.5rem;
}

.medicine-tracker .item strong {
    font-weight: 600;
    color: #fff;
    background: #004ba8;
    font-size: 1rem;
    padding: 0.25rem 1rem;
    border-radius: 6px;
}

.medicine-tracker .item:last-child strong {
    background: #1f1f1f;
}


/* Alarm */

.alarm .form-group label {
    display: block;
    font-size: 0.9rem;
    color: #333;
    margin: 0 0 5px 0;
}

.alarm .form-group .form-control {
    height: auto;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    color: #1f1f1f;
    background: #fff;
    box-shadow: rgba(10, 10, 10, 0.15) 0 2px 6px;
    border: none;
    transition: 0.15s ease all;
}

.alarm .form-group .form-control:focus {
    box-shadow: rgba(10, 10, 10, 0.1) 0 0.25rem 0.8rem;
    background: #fff;
    border-color: #ddd;
}

.alarm .form-group.inline-items .form-control {
    width: auto;
    display: inline-block;
    vertical-align: middle;
}


/* PrEP Steps */

.prep-steps {
    display: block;
    list-style: none;
    /* margin: 1rem 0 -1rem 0; */
    padding: 0;
}

.prep-steps li {
    display: block;
    position: relative;
    font-weight: 600;
    color: #1f1f1f;
    padding-left: 2rem;
    margin: 0.5rem 0;
    font-weight: 400 !important;
}

.prep-steps li:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1.5rem;
    height: 1.5rem;
    background: #f2f3f4;
    border-radius: 50%;
    content: ' ';
}

.prep-steps li.completed:before {
    background: #03b103;
}

.prep-steps li.completed:after {
    content: ' ';
    position: absolute;
    top: 0;
    bottom: 0.15rem;
    left: 0.4rem;
    width: 0.7rem;
    height: 0.4rem;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    transform-origin: center;
    transform: rotate(-45deg);
    margin: auto;
}


/* Account page */
.account-page input[type='date'] {
    color-scheme: dark;
}

.account-page .form-group label {
    display: block;
    font-size: 0.9rem;
    color: #333;
    margin: 0 0 2px 0;
}

.account-page .form-group .form-control {
    height: auto;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    color: #1f1f1f;
    background: #fff;
    box-shadow: rgba(10, 10, 10, 0.15) 0 2px 6px;
    border: none;
    transition: 0.15s ease all;
}

.padding-date {
    padding: 1.5rem 1.5rem !important;
}

.account-page .form-group .form-control:focus {
    box-shadow: rgba(10, 10, 10, 0.1) 0 0.25rem 0.8rem;
    background: #fff;
    border-color: #ddd;
}

.account-page .form-group .form-control.large-input {
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 5px;
}

.account-page .form-group p.small {
    margin-top: 5px;
    font-size: 0.6rem;
    font-weight: 600;
    color: #666;
}


/* Appointment details */

.appointment-details {
    display: block;
    background: #f2f3f4;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.appointment-details img {
    display: block;
    width: 64px;
    margin: auto;
}

.appointment-details>strong {
    display: block;
    color: #004ba8;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 15px 0 5px 0;
}

.appointment-details>span {
    display: block;
    color: #333;
    font-size: 0.8rem;
}

.appointment-details .appointment-time {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.appointment-details .appointment-time strong {
    display: block;
}

.appointment-details .appointment-time span {
    background: #fff;
    border-radius: 6px;
    padding: 0.25rem 1rem;
    margin-top: 5px;
    margin-bottom: -10px;
    font-weight: 600;
    color: #333;
    display: inline-block;
}

.appointment-booking-confirm {
    width: 15px !important;
    margin-left: 15px !important;
    display: block !important;
    filter: opacity();
}


/* Labs table */

.labs-table {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    position: relative;
    width: calc(100% + 2.5rem);
    margin-right: -2.5rem;
}

.labs-table .labs-tests {
    width: 35%;
}

.labs-table .labs-tests h4 {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #1f1f1f;
    height: 3rem;
    line-height: 1.5rem;
    margin: 0;
}

.labs-table .labs-tests ul {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}

.labs-table .labs-tests ul li {
    font-size: 0.8rem;
    display: block;
    height: 2rem;
    line-height: 2rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: calc(100% + 1rem);
    margin-left: -1rem;
    padding-left: 1rem;
    border-radius: 10px 0 0 10px;
}

.labs-table .labs-tests ul li:nth-child(2n+1) {
    background: #f2f3f4;
}

.labs-table .labs-results {
    width: 65%;
    position: relative;
}

.labs-table .labs-results:after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 75px;
    height: 100%;
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1);
    content: ' ';
    z-index: 1;
}

.labs-table .labs-results h4 {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #1f1f1f;
    height: 1.5rem;
    line-height: 1.5rem;
    margin: 0;
    text-align: center;
}

.labs-table .labs-results .lab-items {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-y: hidden;
    /* width: calc(100% + 10px); */
    position: relative;
    /* margin-left: -10px; */
    /* padding-right: 25px; */
}

.labs-table .labs-results .lab-items .lab-item {
    display: block;
    position: relative;
    text-align: center;
}

.labs-table .labs-results .lab-items .lab-item strong {
    height: 1.5rem;
    line-height: 1.5rem;
    font-size: 0.6rem;
    color: #333;
    font-weight: 600;
    padding-left: 10px;
    padding-right: 10px;
}

.labs-table .labs-results .lab-items .lab-item .status {
    height: 2rem;
    line-height: 2rem;
    font-size: 0.7rem;
    width: 100%;
    display: block;
    font-weight: 600;
}

.labs-table .labs-results .lab-items .lab-item .status:nth-child(2n) {
    background: #f2f3f4;
}

.labs-table .labs-results .lab-items .lab-item .status.status-negative {
    color: green;
}

.labs-table .labs-results .lab-items .lab-item .status.status-positive {
    color: #ff0000;
}

.labs-chart {
    margin-top: 0rem;
}


/* Earnings */

.earnings-info {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    align-items: center;
}

.earnings-info img.avatar {
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 50%;
    object-fit: cover;
}

.earnings-info .earnings-status {
    display: inline-block;
    border-radius: 4px;
    padding: 0.1rem 1rem;
    font-size: 0.6rem;
    /* background: #999; */
    color: #111111;
    font-weight: 600;
    background-position: center;
    background-size: 120%;
}

/* .status-bronze {
    background: #fcae19!important;
    color: #000;
} */

.sborder-radius {
    border-radius: 6px;

}
.margin_bt2{
    margin-bottom: 2%;
}
.margin_bt5{
    margin-bottom: 5px;
    line-height: 1.27rem;
}
.status-bronze {
    background-image: url("../img/bg_bronze.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.status-silver {
    background-image: url("../img/bg_silver.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.status-gold {
    background-image: url("../img/bg_gold.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.status-platinum {
    background-image: url("../img/bg_platinum.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.status-diamond {
    background-image: url("../img/bg_diamond.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.earnings-points {
    display: inline;
    position: relative;
    color: #1f1f1f;
    line-height: 1;
    transition: 0.15s ease all;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
}

.earnings-points strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
}

.earnings-points span {
    display: block;
    font-style: normal;
    font-size: 0.8rem;
    opacity: 0.75;
}

.earnings-progress .progress {
    border-radius: 35px;
    box-shadow: rgba(10, 10, 10, 0.15) 0 1px 8px;
    background: #fff;
    overflow: visible;
    margin-bottom: 0.5rem;
}

.earnings-progress .progress .progress-bar {
    border-radius: 25px;
    background: rgb(0, 75, 168);
    background: -moz-linear-gradient(left, rgba(0, 75, 168, 1) 0%, rgba(48, 109, 185, 1) 100%);
    background: -webkit-linear-gradient(left, rgba(0, 75, 168, 1) 0%, rgba(48, 109, 185, 1) 100%);
    background: linear-gradient(to right, rgba(0, 75, 168, 1) 0%, rgba(48, 109, 185, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#004ba8', endColorstr='#306db9', GradientType=1);
    /* box-shadow: rgba(0, 75, 168, 0.5) 0 1px 10px; */
}

.earnings-progress span {
    font-size: 0.6rem;
    /* color: #999; */
}

.earnings-progress span.float-right {
    text-align: right;
}

.earnings-progress span b {
    font-size: 0.8rem;
    font-weight: 600;
    /* color: #666; */
    display: block;
    margin-bottom: -2px;
    line-height: 0.6rem;
    margin-top: 8px;
}

.earnings-progress span i {
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 500;
    display: block;
}

.earnings-earn {
    width: calc(100% + 5rem);
    margin: 1.5rem -2.5rem 0 -2.5rem;
    background: #f2f3f4;
    border-radius: 45px 45px 0 0;
    padding: 2.0rem 2.5rem 4rem 2.5rem;
}

.earnings-earn h4 {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.earnings-history {
    width: calc(100% + 5rem);
    margin: -2.5rem -2.5rem 0 -2.5rem;
    background: #e5e5e5;
    border-radius: 45px 45px 0 0;
    padding: 2.0rem 2.5rem 6rem 2.5rem;
}

.earnings-history h4 {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.history-list {
    display: block;
    list-style: none;
    margin: 0;
    padding: 5px 0 0 0;
}

.history-list li {
    display: block;
    position: relative;
    padding: 5px 0 5px 0;
}

.history-list li strong {
    display: inline-block;
    vertical-align: middle;
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.75rem;
    text-align: center;
    line-height: 2.25rem;
    background: rgba(10, 10, 10, 0.1);
    border-radius: 50%;
}

.history-list li span {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 2.25rem - 5px);
    padding-left: 5px;
    font-size: 0.8rem;
    color: #333;
    line-height: 1.1;
}

.earn-list {
    display: block;
    list-style: none;
    margin: 0;
    padding: 5px 0 0 0;
}

.earn-list li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: stretch;
    position: relative;
    padding: 5px 10px 5px 10px;
    transition: 0.15s ease all;
    width: calc(100% + 20px);
    margin: 0 -10px;
    border-radius: 10px;
}

.earn-list li:active {
    background: rgba(10, 10, 10, 0.15);
}

.earn-list li .icon {
    width: 2.25rem;
    height: 2.25rem;
    background: #004ba8;
    border-radius: 50%;
    text-align: center;
    line-height: 2rem;
}

.earn-list li .icon img {
    width: 1rem;
    height: 1rem;
    filter: brightness(0) invert(1);
}

.earn-list li strong {
    color: #004ba8;
    font-weight: 600;
    display: block;
    width: 3rem;
    text-align: right;
    font-size: 0.8rem;
}

.earn-list li span {
    flex-shrink: 0;
    display: block;
    width: calc(100% - 5.25rem);
    padding-left: 5px;
    font-size: 0.8rem;
    color: #333;
    line-height: 1.1;
    font-weight: 600;
}


/* Bottom popup */

.bottom-popup {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: rgba(10, 10, 10, 0.65);
    opacity: 0;
    visibility: hidden;
    transition: 0.15s ease all;
}

.bottom-popup.active {
    opacity: 1;
    visibility: visible;
}

.bottom-popup .popup-content {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    padding: 1.5rem 2.5rem;
    background: #fff;
    border-radius: 45px 45px 0 0;
    transition: 0.3s ease all;
    transform: translateY(30px);
}

.bottom-popup.active .popup-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.bottom-popup .popup-content h4 {
    font-size: 1rem;
    color: #1f1f1f;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.bottom-popup .popup-content a {
    display: block;
    position: relative;
    border-radius: 10px;
    width: calc(100% + 20px);
    padding: 10px 10px;
    margin: 0 -10px;
    text-decoration: none;
    transition: 0.15s ease all;
}

.bottom-popup .popup-content a:after {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 1px solid #1f1f1f;
    border-bottom: 1px solid #1f1f1f;
    content: ' ';
    right: 1rem;
    margin: auto;
    transform-origin: center;
    transform: rotate(-45deg);
    opacity: 0.75;
}

.bottom-popup .popup-content a:active {
    background: #ddd;
}

.bottom-popup .popup-content a img {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
}

.bottom-popup .popup-content a span {
    display: inline-block;
    vertical-align: middle;
    font-size: 0.9rem;
    padding-left: 5px;
    font-weight: 400;
    color: #1f1f1f;
}

.list-item {
    padding-inline-start: 20px;
}

.wrap-content {
    background-color: #14538A;
    color: white;
    border-radius: 30px;
}

.wrap-content-light {
    background-color: #316973;
    color: white;
    border-radius: 30px;
}

.wrap-content-white {
    background-color: white;
    border-radius: 10px;
}

.wrap-content a {
    color: white;
    text-decoration: underline;
}

.input-rounded {
    border-bottom-left-radius: 30px !important;
    border-bottom-right-radius: 30px !important;
    border-top-left-radius: 30px !important;
    border-top-right-radius: 30px !important;
}

.input-right-rounded {
    border-bottom-left-radius: unset !important;
    border-bottom-right-radius: 30px !important;
    border-top-left-radius: unset !important;
    border-top-right-radius: 30px !important;
}

.input-left-rounded {
    border-bottom-left-radius: 30px !important;
    border-bottom-right-radius: unset !important;
    border-top-left-radius: 30px !important;
    border-top-right-radius: unset !important;
}


/* Alerts */

.alert.alert-danger {
    font-weight: 600;
    font-size: 0.8rem;
    color: #F3372E;
    background: none;
    padding: 0.5rem 0 0.5rem 1.5rem;
    border: none;
    position: relative;
}

.alert.alert-danger:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1rem;
    height: 1rem;
    margin: auto;
    content: ' ';
    background: url("../img/icons/warning.svg") center no-repeat;
    background-size: contain;
}

.alert.alert-success {
    font-weight: 600;
    font-size: 0.8rem;
    color: #28a745;
    /* background: none; */
    /* padding: 0.5rem 0 0.5rem 1.5rem; */
    border: none;
    /* position: relative; */
}

/* .alert.alert-success:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1rem;
    height: 1rem;
    margin: auto;
    content: ' ';
    background: url("../img/icons/check.svg") center no-repeat;
    background-size: contain;
} */

.alert-loader {
    padding: 0.5rem 0 0.5rem 1.5rem;
}

.loader {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 2s linear infinite;
    margin: auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn.btn-primary.liked {
    background: #28a745;
    border-color: #28a745;
    cursor: none;
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ellipsis-second-line,
.ellipsis-third-line,
.ellipsis-fourth-line {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box !important;
    /* -webkit-line-clamp: 2; */
    -webkit-box-orient: vertical;
}

.ellipsis-second-line {
    -webkit-line-clamp: 2;
}

.ellipsis-third-line {
    -webkit-line-clamp: 3;
}

.ellipsis-fourth-line {
    -webkit-line-clamp: 4;
}

.notification-ringing {
    animation-name: ring;
    transform-origin: 70% 1em;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

.notification-ringing span {
    font-weight: bold;
    color: red!important;
}

@keyframes ring {
    0% {
        transform: rotate(0deg);
    }
    5% {
        transform: rotate(45deg);
    }
    15% {
        transform: rotate(-40deg);
    }
    25% {
        transform: rotate(20deg);
    }
    35% {
        transform: rotate(-15deg);
    }
    45% {
        transform: rotate(10deg);
    }
    55% {
        transform: rotate(-5deg);
    }
    60% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.content-resources>p>img {
    width: 100%;
    height: inherit;
    margin: 1.5rem 0;
    border-radius: 10px;
    box-shadow: rgb(10 10 10 / 10%) 0 7px 15px;
}

.modal {
    text-align: center;
    padding: 0!important;
}

.modal:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -4px;
}

.modal-dialog {
    width: 300px;
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.form-control {
    -webkit-appearance: none;
    -webkit-box-shadow: 0px 2px 6px 0px rgb(10 10 10 / 15%) !important;
}

.home-resources a:hover {
    text-decoration: none;
}

.blog-post img {
    width: 100%;
}

#frmMessage {
    background-color: #fcbe51;
    border: none;
    /* width: 75%;
    box-shadow: none!important;
    border: none;
    outline: unset; */
}

.text-blue {
    color: #004BA8 !important;
}

.pr-20 {
    padding-right: 20px;
}

.text-success {
    color: #28a745 !important;
}

.f-s-1rem {
    font-size: 1rem !important;
}

.f-s-09rem {
    font-size: 0.9rem !important;
}

.f-s-075rem {
    font-size: 0.75rem !important;
}

.f-s-20 {
    font-size: 20px !important;
}

.f-s-24 {
    font-size: 24px !important;
}
.f-s-08rem{
    font-size: 0.8rem !important;
}

.f-w-b {
    font-weight: 600 !important;
}

.f-normal {
    font-weight: lighter !important;
    font-style: normal;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-10 {
    margin-top: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-2-rem {
    margin-bottom: 2rem !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.type-services-links .links-box {
    display: block;
    border-radius: 10px;
    padding: 15px 15px 10px 15px;
    border: 1px solid #eee;
    box-shadow: rgb(10 10 10 / 10%) 0 3px 3px;
    margin-top: 0px;
    background: rgba(255,255,255,0.2);
}

.type-services-links-left .links-box {
    display: block;
    border-radius: 10px;
    padding: 15px 15px 10px 15px;
    border: 1px solid #eee;
    box-shadow: rgb(10 10 10 / 10%) 0 3px 3px;
    margin-top: 0px;
    text-align: left;
}

.actions-backgroud {
    background-color: #FFF;
    padding: 1rem;
    width: 100%;
    margin: auto 0;
}

.card ul {
    padding-inline-start: 10px;
}

.more-health-news {
    font-size: 0.8rem;
    color: #E2CCB2  !important;
    /* color: red !important; */
}

.border-top {
    /* border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem; */
    border-left: 0;
    border-top: 1px solid #8c8b8b;
}

.page-header-back .page-header-link img {
    width: 1.5rem;
    transform-origin: center;
    /* filter: brightness(0) invert(1); */
}

.page-header-back {
    position: relative;
    /* padding: 1rem 2.5rem 3.5rem 2.5rem; */
    /* background: #004ba8; */
    /* display: flex; */
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.page-header-back .page-header-link.link-left img {
    transform: rotate(-180deg);
}

.pp {
    width: 3.5rem;
    height: 3.5rem;
    flex-shrink: 0;
    /* object-fit: cover; */
    object-fit: unset;
    border-radius: 10px;
    display: flex;
    padding: -2rem 2.5rem 1rem 1rem;
    width: calc(100% + 1.5rem);
    margin: 0rem -2.5rem 0 0;
}

.img22 {
    margin: 0rem 1rem 0rem 0;
    border-radius: 10px;
}

.ppmood {
    width: 3.5rem;
    height: 3.5rem;
    flex-shrink: 0;
    /* object-fit: cover; */
    object-fit: unset;
    border-radius: 10px;
    display: flex;
    padding: -2rem 2.5rem 1rem 1rem;
    width: calc(100% + 1.5rem);
    margin: 0rem -2.5rem 0 0;
}

.img22mood {
    margin: 0rem 1rem 0rem 0;
    border-radius: 10px;
}

.confirm-lap li {
    font-size: 0.9rem;
    text-align: left;
}

.hiv-test-confirm {
    position: absolute;
    top: 60px;
    right: 60px;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    text-align: center;
}

img.logo-center {
    display: block;
    width: 165px;
    margin: auto auto auto auto;
}

a:hover {
    color: #0056b3;
    text-decoration: none;
}

.color-red {
    color: red;
}

/* img {
    pointer-events: none !important;
} */

.msg-delivered{
    margin-right: 2.5rem;
}
.msg-seen, .msg-delivered{
    margin-top: 8px;
    font-size: 0.6rem;
    color: #B5B5C3;
}

.my-message .msg-seen,
.my-message .msg-delivered{
    color: #7E8299;
}

.sheeping-address-wraper .selected {
    background: #C7F9E1;
}
.sheeping-address {
    margin-top: 0.75rem;

    padding: 1rem;
    /* width: calc(100% + 2.5rem); */
    border-radius: 20px;
    background: #f2f3f4;
}
.sheeping-address .address-item {
    position: relative;

    display: grid;
    grid-template-columns: 1.5rem 1fr 1.5rem;
    grid-gap: 1rem;
    /* flex-direction: row; */
    align-items: center;
    justify-content: space-between;
    transition: 0.15s ease all;
    text-decoration: none;
}

.sheeping-address .address-item .info {
    /* display: block; */
    /* width: calc(100% - 3rem); */
    flex-shrink: 0;
}
.sheeping-address .address-item .info strong {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.85rem;
    color: #1f1f1f;
}
.sheeping-address .address-item .info span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.6rem;
    color: #333;
}

.sheeping-address .address-item .default li {
    display: block;
    position: relative;
    font-weight: 600;
    color: #1f1f1f;
    padding-left: 2rem;
    margin: 0.5rem 0;
    font-weight: 400 !important;
}
.sheeping-address .address-item .default li.completed:before {
    background: #03b103;
}
.sheeping-address .address-item .default li:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1.5rem;
    height: 1.5rem;
    background: #ddd;
    border-radius: 50%;
    content: ' ';
}

.sheeping-address .address-item .default li.completed:after {
    content: ' ';
    position: absolute;
    top: 0;
    bottom: 0.15rem;
    left: 0.4rem;
    width: 0.7rem;
    height: 0.4rem;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    transform-origin: center;
    transform: rotate(-45deg);
    margin: auto;
}
.sheeping-address .address-item .default {
    display: block;
    list-style: none;
    margin: 1rem 0 -1rem 0;
    padding: 0;
}
.icon-pencil {
    width: 1.5rem;
    height: 1.5rem;
    margin: auto;
    cursor: pointer;
}

.address-item .icon:after {
    /* content: "\2212"; */
    content: "";
    color: #004ba8;
    background-image: url("../img/icons/diskette.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    font-size: 25px;
    width: 1.5rem;
    height: 1.5rem;
}

.address-item .collapsed .icon:after {
    /* content: '\002B'; */
    content: '';
    color: #004ba8;
    background-image: url("../img/icons/pencil.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    font-size: 25px;
    width: 1.5rem;
    height: 1.5rem;
}

.address-new .icon:after {
    content: "";
    background-image: url("../img/icons/diskette.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    font-size: 25px;
    width: 1.5rem;
    height: 1.5rem;
    transition: all .05s;
}
.address-new .collapsed .icon:after {
    content: '';
    background-image: url("../img/icons/add.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    font-size: 25px;
    width: 1.5rem;
    height: 1.5rem;
}

.sheeping-address .img-add {
    height: 1.5rem;
    width: auto;
    opacity: 0.75;
}

.sheeping-address .text-success {
    cursor: pointer;
}

.bg-dark-light {
    background-color: #316973;
}


.report-circle {
    border-radius: 50%;
    width: 95px;
    height: 95px;
    position: absolute;
    top: 25%;
    left: 36%;
    text-align: center;
    z-index: 9999;
    background: #fff;
}

.report-circle span {
    font-weight: bold;
    font-size: 1.2em;
    display: inline-block;
    width: 100%;
    margin-top: 15px;
}
.menu-logout h4.txt-logout {
    font-size: 1.4rem;
    font-weight: 600;
}
.btn-default,
.btn-primary,
.btn.btn-secondary {
    border-radius: 2rem !important;
    padding: 15px 10px !important;
}


@media only screen and (min-device-width: 768px) and (max-device-width: 1240px) {
    /* your css rules for ipad portrait */
    .page-header {
        margin-top: 0.6rem;
        margin-bottom: 3rem;
    }
    .page-header-button {
        width: 85%;
        margin: auto;
    }
    .page-header-button h1 {
        font-size: 1.2rem;
        padding-top: 18px;
    }
    .page-body {
        padding: 1rem 2rem 1rem 2rem !important;
    }
    .self-test .switch-toggle input+div span, .prep-express .switch-toggle input+div span {
        left: 0.3rem;
    }
    .prep-express .switch-toggle input+div span {
        width: 2.0rem;
        border-radius: 2rem;
        height: 1rem;
    }
    .switch-toggle input+div span:before {
        width: 0.8rem;
        height: 0.8rem;
        top: 0.1rem;
    }
    .prep-express .switch-toggle input:checked+div span:before {
        transform: translateX(0.75rem);
    }
    .btn.btn-primary {
        border-radius: 2rem;
        padding: 0.4rem;
    }
    .btn.btn-primary span {
        font-size: 0.8rem;
    }
    .f-s-1rem {
        font-size: 1rem !important;
    }
    .f-s-08rem,
    .f-s-08rem li {
        font-size: 0.6rem !important;
    }
    .f-s-08rem iframe {
        height: 10rem;
    }
    .new-welcome-screen h1 {
        font-size: 0.8rem !important
    }
    .report-circle {
        width: 115px;
        height: 115px;
        top: 19.5%;
        left: 41.5%;
        font-size: 0.7rem;
    }
    .report-circle span {
        font-size: 1.4em;
        line-height: 1rem;
    }
    .register-form.prep-express .register-step p {
        font-size: 0.8rem;
    }
    .alert.alert-danger {
        font-size: 0.6rem;
        font-weight: 600;
        padding-left: 0.8rem;
        margin: 0;
    }
    .alert.alert-danger:before {
        width: 0.6rem;
        height: 0.6rem;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1240px) and (orientation:landscape) {
    /* your css rules for ipad landscape */
    .page-header {
        margin-top: 0.6rem;
        margin-bottom: 3rem;
    }
    .page-header-button {
        width: 85%;
        margin: auto;
    }
    .page-header-button h1 {
        font-size: 0.8rem;
        padding-top: 18px;
    }
    .page-body {
        padding: 1rem 2rem 1rem 2rem;
    }
    .self-test .switch-toggle input+div span, .prep-express .switch-toggle input+div span {
        left: 0.3rem;
    }
    .prep-express .switch-toggle input+div span {
        width: 2.0rem;
        border-radius: 2rem;
        height: 1rem;
    }
    .switch-toggle input+div span:before {
        width: 0.8rem;
        height: 0.8rem;
        top: 0.1rem;
    }
    .prep-express .switch-toggle input:checked+div span:before {
        transform: translateX(0.75rem);
    }
    .btn.btn-primary {
        border-radius: 2rem;
        padding: 0.2rem;
    }
    .btn.btn-primary span {
        font-size: 0.8rem;
        font-weight: 600;
    }
    .f-s-1rem {
        font-size: 0.65rem !important;
    }
    .f-s-08rem,
    .f-s-08rem li {
        font-size: 0.6rem !important;
    }
    .f-s-08rem iframe {
        height: 10rem;
    }
    .fs-5 {
        font-size: 1rem !important;
    }
    .f-s-09rem {
        font-size: 0.6rem !important;
    }

    .register-form.account-form .register-step .step-actions,
    .register-form.account-form .preview-test-results .step-actions {
        padding: 0 0.5rem 2.5rem 0.5rem;
    }
    .btn-default,
    .btn-primary,
    .btn.btn-secondary {
        border-radius: 2rem !important;
        font-size: 0.6rem !important;
    }
    .btn-default span,
    .btn-primary span,
    .btn.btn-secondary span {
        font-size: 0.6rem !important;
    }
    .register-step h5.mb-5 {
        margin-bottom: 1rem;
    }
    .register-form.account-form {
        padding: 0 4rem;
    }
    .register-form.prep-express .register-step p {
        font-size: 0.6rem;
    }
    .register-form.account-form.prep-express .register-step .step-actions {
        padding: 0 2rem 1rem 2rem !important;
    }
}
