/** common.css **/
/* --------------------------------------------------------

Style Sheet for Hormone Consults

version: 1.0.0
last modified: 25.03.2020 by SHIJIN G
author: SHIJIN G
email: shijin@neovibe.in
website: https://www.hormoneconsults.com/

----------------------------------------------------------*/

/* --------------------------------------------------------

Style Sheet for Hormone Consults

version: 1.0.0
last modified: 25.03.2020 by SHIJIN G
author: SHIJIN G
email: shijin@neovibe.in
website: https://www.hormoneconsults.com/

----------------------------------------------------------*/

@import url("https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900&display=swap");

* {
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
*:focus {
    outline: none;
}

:root {
    --main-bg-color: #ffffff;
    --primary-bg-color: #222230;
    --main-color: #232a4b;
    --primary-color: #0062f3;
    --secondary-color: #f2a157;
    --green-color: #03ffea;
    --blue-color: #0697d1;
    --footer-bg-color: #f8fafc;
    --input-border-color: #c5cfd7;
    --action-color: #3c53c7;
    --alert-primary: #9461c8;
    --alert-secondary: #5191be;
    --alert-success: #42ac93;
    --alert-tertiary: #5157be;
    --alert-danger: #d9554f;
    --alert-warning: #d69541;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select {
    outline: none;
}
input[type="number"] {
    -moz-appearance: textfield;
}
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    color: var(--main-color);
    background-color: var(--main-bg-color);
}
body {
    font-family: "Montserrat", sans-serif;
}
img {
    width: 100%;
}
ul {
    list-style: none;
    padding: 0;
}
a,
button {
    color: var(--primary-color);
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
a:hover,
button:hover {
    color: var(--primary-color);
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
a:focus {
    text-decoration: none;
}

p {
    -moz-text-shadow: none;
    -ms-text-shadow: none;
    text-shadow: none;
}

/*------------------------------------------------- Header */

header.app_header {
    position: sticky;
    top: 0;
    z-index: 999;
}
.header_wrap {
    background-color: var(--main-bg-color);
    box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.1);
    height: 85px;
    width: 100%;
    position: relative;
    z-index: 99;
    display: flex;
    padding: 0 40px;
    align-items: center;
    justify-content: space-between;
}
.site_brand {
    display: flex;
    align-items: center;
}
.header_logo {
    width: 260px;
}
.header_phone {
    border-left: 1px solid rgba(0, 0, 0, 0.3);
    margin-left: 14px;
    padding-left: 14px;
    font-size: 16px;
    font-weight: 500;
    color: var(--main-color);
}
.header_phone:hover {
    color: var(--primary-color);
}
.help a {
    color: var(--blue-color);
    background-color: #e5f0ff;
    font-size: 14px;
    padding: 8px 18px;
    font-weight: 500;
    border-radius: 2px;
}

.header_alert {
    padding: 12px 20px;
    text-align: center;
    background-color: var(--primary-bg-color);
}
.header_alert p {
    font-size: 12px;
    color: var(--main-bg-color);
    margin: 0px;
    /* font-weight: 500; */
}
.header_alert p a {
    color: var(--green-color);
}
.spacer {
    flex: 1;
}
.nav-menu > li > a {
    color: var(--main-color);
    font-weight: 500;
    font-size: 16px;
    text-transform: none;
    padding: 14px 12px;
}
.nav-menu > li {
    padding: 0;
}
.nav_right {
    margin: 0 0 0 10px;
}
.login_btn {
    padding: 12px 20px !important;
}
/*------------------------------------------------- Footer */

footer.app_footer {
    background-color: var(--footer-bg-color);
    position: relative;
    z-index: 9;
}

.footer_top {
    display: grid;
    grid-template-columns: 25% auto 30%;
    grid-gap: 20px;
}
.footer_nav {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 15px;
    margin-bottom: 25px;
}
.footer_logo {
    padding-right: 100px;
    display: flex;
    align-items: center;
}
.footer_logo img {
    margin-bottom: 20px;
}
.nav_block ul li a {
    color: var(--main-color);
    font-size: 13px;
    font-weight: 500;
}
.nav_block ul li a:hover {
    color: var(--blue-color);
}
.nav_block ul {
    margin: 0px;
}
.nav_block ul li {
    padding: 10px 0;
}
.technology_logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}
.shadow_block {
    background-color: var(--main-bg-color);
    padding: 22px 30px;
    border-radius: 8px;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.tech_block label {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    opacity: 0.4;
    margin-bottom: 15px;
}
.tect_logo {
    display: flex;
    margin-bottom: 8px;
}
.amazone_pay {
    max-width: 140px;
    margin-right: 20px;
}
.stripe {
    max-width: 72px;
    margin-top: -6px;
}
.microsoft_azure {
    max-width: 180px;
}
.tect_logo.partner {
    margin-top: 6px;
}
.footer_address {
    margin: 0;
}
.footer_address p {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.7;
    margin: 0px 0px 15px;
}
.footer_address a {
    font-size: 13px;
    font-weight: 500;
    color: var(--main-color);
    margin: 0px 0px 15px;
    display: inline-block;
}
.footer_address a:hover {
    color: var(--blue-color);
}
.footer_address img {
    max-width: 160px;
    margin-top: 10px;
}
.footer_top {
    border-bottom: 1px solid #dcdcdc;
    padding: 70px 0 60px;
}
.footer_bottom {
    display: flex;
    padding: 30px 0;
    font-size: 14px;
}
.footer_bottom p {
    flex: 1;
    color: var(--main-color);
    font-weight: 500;
    margin: 0px;
}
.footer_bottom ul {
    margin: 0px;
    padding: 0px;
}
.footer_bottom ul li {
    display: inline;
    padding-left: 22px;
}
.footer_bottom ul li a {
    color: var(--main-color);
    font-weight: 500;
}

.inner_section {
    min-height: 62vh;
    position: relative;
}
.bg_shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.shape1 {
    position: absolute;
    right: 0;
    top: 0;
    width: 16%;
}
.shape2 {
    position: absolute;
    left: -8%;
    top: 0;
    width: 30%;
}
.main_content {
    position: relative;
    width: 100%;
    z-index: 99;
}

/* Banner */
.banner_fullsize {
    width: 100%;
    position: relative;
    overflow: hidden;
    min-height: 620px;
}
#video_viewport {
    width: 100%;
    height: 100%;
    position: absolute;
}
#video_viewport video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.viewport_overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(22, 22, 32, 0.77);
    display: flex;
    align-items: center;
    color: #fff;
}
.banner_content h1 {
    margin: 0px 0px 15px;
    line-height: normal;
    font-size: 2.85em;
    font-weight: 300;
}
.banner_content h1 b {
    font-weight: 800;
    display: block;
}
.banner_content p {
    font-size: 15px;
    max-width: 740px;
    margin: 0px 0px 35px;
}
.app_btn {
    border-radius: 3px;
    text-transform: uppercase;
    padding: 18px 30px;
    font-size: 13.5px;
    font-weight: 600;
    display: inline-block;
    margin-right: 5px;
}
.primary_btn {
    background-color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    color: #fff;
}
.outline_btn.white {
    background-color: transparent;
    border: 1.5px solid #fff;
    color: #fff;
}
.outline_btn.blue {
    background-color: transparent;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
}
.text_center {
    text-align: center;
}
.testimonial_btn .app_btn {
    margin-top: 30px;
    margin-right: 0px;
}
.primary_btn:hover,
.primary_btn:focus {
    color: #fff;
}
.block_section {
    padding: 4em 0;
}
.heading_block {
    margin-bottom: 3em;
    text-align: center;
}
.heading_block h2 {
    font-weight: 700;
    font-size: 2.5em;
    margin: 0px;
}
.heading_block h2 small {
    display: block;
    font-weight: 300;
    font-size: 100%;
}
.heading_block p {
    max-width: 660px;
    margin: 10px auto 0;
    font-size: 15px;
    opacity: 0.8;
}
.container {
    max-width: 1200px;
}
.work_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
    margin-bottom: 20px;
}
.work_box {
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0px 4px 9px -1px rgba(0, 0, 0, 0.08);
}
.work_box .icon {
    width: 120px;
    height: 120px;
    margin: 0px auto 25px;
    border-radius: 50%;
    padding: 20px;
    border: 2px solid var(--primary-color);
}
.work_box h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0px 0px 10px;
}
.work_box p {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 20px;
    min-height: 90px;
}
.readmore {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.readmore:hover,
.readmore:focus {
    color: var(--primary-color);
}
.readmore:hover svg {
    margin-left: 12px;
}
.readmore svg {
    width: 18px;
    height: 18px;
    transition: all 0.2s ease-in-out;
    margin-left: 8px;
}
.readmore svg path {
    fill: var(--primary-color);
}
.divider_section {
    color: #fff;
    display: flex;
    align-items: center;
    background: var(--primary-color);
    background: linear-gradient(
        0deg,
        rgba(5, 109, 212, 1) 0%,
        rgba(0, 132, 242, 1) 100%
    );
}
.divider_section.grey {
    background: #7f8696;
}
.divider_section .half {
    width: 50%;
}
.half.content {
    padding: 3.5em 8.5em 3.5em 3.5em;
}
.half.content h2 {
    font-size: 2em;
    margin-bottom: 12px;
}
.half.content p {
    font-size: 15px;
    margin-bottom: 22px;
}
.half.image img {
    min-height: 420px;
    max-height: 500px;
    object-fit: cover;
}
.bg_light {
    background-color: #f5f8fb;
}
.bg_dark {
    background-color: #2c2e3c;
}
.transparent_block {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    margin: 5em auto 5em;
    padding: 2em 0;
}

.transparent_content {
    margin-top: 0;
    max-width: 52%;
    min-height: 440px;
    padding: 3em 5em 3em 3em;
    text-align: left;
    flex-direction: column;
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 1;
    position: relative;
    background-color: #fff;
}
.transparent_img {
    height: 100%;
    left: 0;
    margin: 0;
    position: absolute;
    top: 0;
    width: 58%;
    z-index: 0;
}
.image_fill {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.image_fill img {
    height: 100%;
    object-fit: cover;
    vertical-align: middle;
    width: 100%;
}
.transparent_content h2 {
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 20px;
}
.transparent_content p {
    font-size: 15px;
    margin-bottom: 30px;
    opacity: 0.8;
}
.transparent_block:nth-child(even) {
    justify-content: flex-start;
}
.transparent_block:nth-child(even) .transparent_img {
    left: auto;
    right: 0;
}
.transparent_blocks {
    padding: 0 0em;
}
.transparent_block:last-child {
    margin-bottom: 0;
}
.about_block .heading_block {
    margin-bottom: 20px;
}
.about_content p {
    font-size: 15px;
    opacity: 0.8;
}
.about_content a {
    margin-top: 20px;
}
.about_block {
    display: flex;
    align-items: center;
    margin: 2em 0;
}
.about_content {
    width: 80%;
    padding-right: 4em;
    margin-right: 2em;
}
.bg_dark {
    color: #fff;
}
.bg_dark .heading_block h2,
.bg_dark .heading_block p {
    color: #fff;
}
.team_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
    margin: 60px 0px 20px;
}
.team_block h2 {
    font-size: 14px;
    margin: 0px 0px 10px;
    font-weight: 600;
}
.team_block p {
    font-size: 14px;
    opacity: 0.8;
}
.team_block .readmore {
    color: var(--green-color);
}
.team_block .readmore svg path {
    fill: var(--green-color);
}
.team_pic {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}
.testimonial_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
    margin: 60px 0px 20px;
}
.testimonial_block {
    padding: 25px 25px;
    border-radius: 8px;
    background-color: var(--main-bg-color);
    box-shadow: 0px 4px 20px -1px rgba(0, 0, 0, 0.08);
}
.testimonial_block p {
    font-size: 15px;
    opacity: 0.8;
    line-height: 28px;
}
.testimonial_block img {
    width: 70px;
    height: 70px;
    margin-right: 15px;
    border-radius: 50%;
}
.testimonial_block h2 {
    margin: 0px;
    font-size: 16px;
    font-weight: 600;
}
.testimonial_block .media {
    margin-bottom: 15px;
}
.quiz_block {
    display: flex;
    align-items: center;
}
.quiz_block .app_btn {
    min-width: 230px;
    text-align: center;
}
.quiz_content {
    flex: 1;
}
.quiz_block p {
    max-width: 620px;
    font-size: 15px;
    opacity: 0.8;
    margin: 0px;
    padding-right: 10px;
}
.quiz_block h2 {
    font-size: 2em;
    margin-bottom: 12px;
}
.accordion_block {
    border-bottom: 1px solid #dbdddf;
}
.accordion_title {
    font-size: 16px;
    font-weight: 500;
    padding: 20px 30px 20px 0px;
    cursor: pointer;
    position: relative;
    user-select: none;
}
.accordion_content p {
    opacity: 0.8;
    font-size: 15px;
}
.accordion_content {
    padding-bottom: 5px;
}
.faq_block {
    max-width: 760px;
    margin: 0px auto 50px;
}

.accordion_title.collapsed:after {
    content: "+";
    transform: rotate(0deg);
    font-size: 2.5em;
    right: 4px;
    top: 0;
}
.accordion_title::after {
    content: "+";
    color: var(--primary-color);
    display: inline-block;
    transform: rotate(45deg);
    position: absolute;
    right: 0;
    font-size: 3.2em;
    font-weight: 200;
    top: -9px;
}

.cd-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(27, 27, 38, 0.92);
    opacity: 0;
    overflow-y: auto;
    z-index: 9999;
    visibility: hidden;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s;
}
.cd-popup.is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s;
}

.cd-popup-container {
    /* padding: 20px 20px; */
    border-radius: 4px;
    position: relative;
    width: 90%;
    max-width: 620px;
    margin: 2em auto 2em;
    background: #fff;
    box-shadow: 0 10px 20px rgba(6, 10, 17, 0.2);
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
    /* Force Hardware Acceleration in WebKit */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.cd-modal-header {
    background-color: #f0f0f0;
    display: flex;
    padding: 20px 20px;
}
.cd-modal-header h2 {
    font-size: 15px;
    color: #25313b;
    margin: 0px;
    font-weight: 600;
}

.cd-popup-container .cd-buttons:after {
    content: "";
    display: table;
    clear: both;
}
.cd-popup-container .cd-buttons li {
    float: left;
    width: 50%;
}
.cd-popup-container .cd-buttons a {
    display: block;
    height: 60px;
    line-height: 60px;
    text-transform: uppercase;
    color: #fff;
    -webkit-transition: background-color 0.2s;
    -moz-transition: background-color 0.2s;
    transition: background-color 0.2s;
}

.cd-popup-container .cd-popup-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
}
.cd-popup-container .cd-popup-close::before,
.cd-popup-container .cd-popup-close::after {
    content: "";
    position: absolute;
    top: 18px;
    width: 14px;
    height: 3px;
    background-color: #8f9cb5;
}
.cd-popup-container .cd-popup-close::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 8px;
}
.cd-popup-container .cd-popup-close::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 8px;
}
.is-visible .cd-popup-container {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.video_modal iframe {
    display: block;
    width: 720px;
    height: 400px;
}
.video_modal .cd-popup-container {
    max-width: 720px;
    margin: 10em auto;
    background-color: transparent;
}
.video_modal .cd-popup-close {
    top: -10px;
    right: -40px;
    width: 40px;
    height: 40px;
    cursor: pointer;
}
.video_modal .cd-popup-close::before,
.video_modal .cd-popup-close::after {
    top: 18px;
    width: 24px;
    height: 1.7px;
    background-color: #fff;
}

.how_it_works,
.testimonials,
.faq {
    position: relative;
    overflow: hidden;
}
.how_it_works::before {
    content: "";
    background-image: url("../../img/app/nimbus_icon.svg");
    background-repeat: no-repeat;
    position: absolute;
    width: 20vw;
    height: 20vw;
    left: -8vw;
    top: -5vw;
    opacity: 0.08;
}
.faq::after {
    content: "";
    background-image: url("../../img/app/nimbus_icon.svg");
    background-repeat: no-repeat;
    position: absolute;
    width: 20vw;
    height: 20vw;
    right: -8vw;
    opacity: 0.08;
    top: 10vw;
}
.testimonials::before {
    content: "";
    background-image: url("../../img/app/test-_quote.svg");
    background-repeat: no-repeat;
    position: absolute;
    width: 12vw;
    height: 10vw;
    left: 11vw;
    opacity: 0.03;
    top: -0.5vw;
}
.nav_sticky {
    position: sticky;
    padding: 20px 0px;
    top: 84px;
}
.faq_main {
    display: grid;
    grid-template-columns: 250px auto;
    grid-gap: 50px;
}
.faq_nav_block h5 {
    font-size: 17px;
    margin: 0px 0px 15px;
}
.faq_nav_block ul li a {
    padding: 6px 0;
    display: block;
    font-size: 14px;
    opacity: 0.8;
    cursor: pointer;
}
.faq_content_block .heading_block {
    margin-bottom: 2em;
}
.faq_content_block {
    padding: 2em 0 2em;
}
.faq_nav_block li a {
    color: var(--main-color);
    position: relative;
    padding-left: 15px !important;
}
.faq_nav_block li a.current {
    color: var(--primary-color) !important;
    opacity: 1;
}
.faq_nav_block li a.current::before {
    content: "";
    position: absolute;
    left: 0;
    width: 7px;
    height: 7px;
    background-color: var(--primary-color);
    top: 14px;
}
.innder_banner {
    background-image: url("img/app/faq_bg.jpg");
    padding: 6em 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.inner_heading {
    max-width: 550px;
}
.inner_heading h1 {
    font-size: 3em;
    font-weight: 500;
    margin: 0px 0px 18px;
}
.inner_heading p {
    font-size: 14px;
    margin: 0px;
}
.text-left {
    text-align: left !important;
}
.pricing_main {
    display: grid;
    grid-template-columns: 200px auto;
    grid-gap: 50px;
}
.product_info {
    margin-top: 0;
    padding: 3em 3em;
    text-align: left;
    flex-direction: column;
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 1;
    position: relative;
    background-color: #fff;
    margin: 2em 0 2em -3em;
    max-width: inherit;
    min-height: auto;
}
.product_grid {
    display: flex;
    margin: 5em auto 5em;
}
.product_pic {
    padding: 20px 0;
    max-width: 40%;
    display: flex;
    align-items: center;
    border: 2px solid var(--primary-color);
}
.product_info h2 {
    font-size: 2.2em;
    margin-bottom: 10px;
}
.product_info h3 {
    font-size: 15px;
    color: #7b7f93;
    margin-bottom: 15px;
}
.product_info p {
    margin-bottom: 20px;
}
.product_info .readmore {
    margin-top: 20px;
}
.table_prescription table {
    width: 100%;
    margin-bottom: 12px;
    border: 1px solid #e1e1e1;
}
.table_prescription table thead {
    border-bottom: 1px solid #e1e1e1;
}
.table_prescription table tr td {
    color: rgba(44, 46, 60, 0.7);
}
.table_prescription table tr th,
.table_prescription table tr td {
    padding: 12px 15px;
    font-size: 15px;
    font-weight: 500;
}
.table_prescription table tr small {
    display: block;
}

.table_prescription table tr td:nth-child(2),
.table_prescription table tr th:nth-child(2) {
    background-color: #f9fbfd;
}
.table_prescription .common {
    border: 1px solid var(--secondary-color);
}
.inner_content .content_txt {
    padding: 2em 0;
}
.content_txt p {
    color: rgba(44, 46, 60, 0.8);
    font-size: 15px;
}
.content_txt li {
    color: rgba(44, 46, 60, 0.8);
    font-size: 15px;
    display: flex;
    margin-bottom: 12px;
}
.content_txt li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50px;
    background-color: var(--primary-color);
    margin-right: 15px;
    margin-top: 9px;
}
.content_txt li span {
    flex: 1;
}
.content_txt h3 {
    font-size: 22px;
    margin-bottom: 22px;
    margin-top: 20px;
}
.content_txt h6 {
    margin-bottom: 20px;
}
.nav_toggle {
    width: 30px;
    height: 30px;
    padding: 6px 2px 0;
    position: absolute;
    top: 50%;
    margin-top: -14px;
    right: auto;
    display: none;
    cursor: pointer;
}

.nav_toggle:before {
    content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #70798b;
    border-radius: 10px;
    box-shadow: 0 0.5em 0 0 #70798b, 0 1em 0 0 #70798b;
}
.logged_user {
    position: relative;
}
.logged_user .usr_ico {
    width: 42px;
    height: 42px;
    cursor: pointer;
    font-size: 14px;
    margin: 0px;
    overflow: hidden;
}
.usr_ico img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dd-menu {
    position: absolute;
    top: 62px;
    right: 0;
    z-index: 1000;
    font-size: 14px;
    text-align: left;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 4px;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.04);
    background-clip: padding-box;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    opacity: 0;
    -webkit-transform-origin: right top 0px;
    transform-origin: right top 0px;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.dd-menu ul {
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    position: relative;
}

.dd-menu.active {
    opacity: 1;
    -webkit-transform-origin: right top 0px;
    transform-origin: right top 0px;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.dd-menu li {
    color: #666;
    margin: 0;
    list-style: none;
    opacity: 0;
    transform: translateY(0px);
}
.dd-menu li {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transform: translateY(-30%);
}
.dd-menu.active li {
    opacity: 1;
    transform: translateY(0px);
}
.dd-menu .usr_body {
    padding: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.dd-menu ul {
    padding: 0px 15px 10px;
}
.dd-menu li a {
    font-size: 14px;
    padding: 10px 0px;
    color: var(--main-color);
    display: flex;
    align-items: center;
}
.dd-menu li a svg {
    width: 15px;
    height: 15px;
    fill: var(--main-color);
    margin-right: 10px;
}

/* lab-result-detail-start */
.lab_result_content .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    box-shadow: inset 0px -2px #0666f3;
    color: #0666f3 !important;
}
.lab_result_content .nav-tabs .nav-link {
    border: 0;
    padding: 10px 0 10px 0;
    color: var(--main-color);
    font-weight: 600;
    font-size: 14px;
}
.lab_result_content .nav-tabs .nav-item {
    padding-right: 30px;
}
.lab_result_content .nav-tabs {
    margin: 0 0 20px 0;
}
.lab_result_content .tab-content .sec_grp label {
    font-size: 12px;
    text-transform: uppercase;
    padding: 10px 0 0 0;
}
.lab_result_content .tab-content .sec_grp h5 {
    font-size: 14px;
    border-bottom: 1px solid #dee2e6;
    padding: 0 0 13px 0;
    font-weight: 600;
}
.lab_result_table table thead {
    background-color: #232a4b;
    border-bottom: 1px solid #e5eaed;
}
.lab_result_table table {
    width: 100%;
    border: 1px solid #e5eaed;
}
.lab_result_table table tbody td {
    font-size: 13px;
    padding: 15px 12px;
    font-weight: 600;
}
.lab_result_table table thead th {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 12px;
    color: #fff;
    white-space: nowrap;
}
.lab_result_table tr:nth-child(even) {
    background-color: #f8f9fa;
}
.lab_download {
    margin: 20px 0 0 0;
    display: flex;
    justify-content: flex-end;
}
.main_head a {
    color: #232a4b;
    font-weight: 700;
    font-size: 18px;
    border-left: 2px solid var(--primary-color);
    padding-left: 10px;
    line-height: 1;
}
.main_head a svg {
    fill: var(--primary-color);
    padding: 0 0 0 5px;
}
.main_head {
    padding: 0 0 20px 0;
}
.lab_result_table td button {
    text-decoration: underline;
    text-transform: uppercase;
    font-size: 11px;
    padding: 2px 0 0 0;
    border: 0;
    cursor: pointer;
    font-weight: 600;
}
.lab_result_table button {
    outline: none;
    background-color: transparent;
}
.lab_result_table button:focus {
    border-color: none;
}
.read-more-content {
    display: none;
}
.read-more {
    display: inline-block;
}
.lab_result_table td p {
    margin: 0;
}
.description {
    display: inline-flex;
    flex-wrap: wrap;
}
.lab_result_table td a.name {
    text-decoration: none;
    color: var(--main-color);
}
.lab_result_table label.same_btn {
    background-color: #eee;
    color: #000;
    border-radius: 50px;
    text-align: center;
    padding: 5px 0;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 600;
    width: 70px;
    margin: 0;
}
.lab_result_table label.same_btn.low {
    background-color: #9cdcc3;
    color: #275b47;
}
.lab_result_table label.same_btn.medium {
    background-color: #fde95e;
    color: #775b11;
}
.lab_result_table label.same_btn.high {
    background-color: #f7a3b9;
    color: #9e485f;
}
.lab_result_table {
    margin: 30px 0;
}

/* lab-result-detail */
section.inner-banner-detail .inner-banner {
    background-color: #222230;
}
.inner-banner-detail .breadcrumb {
    background-color: transparent;
    padding: 0;
}
.inner-banner-detail .inner-heading {
    padding: 50px 0 50px 0;
}
.inner-banner-detail li.breadcrumb-item a {
    color: #03ffea;
    font-weight: 500;
    font-size: 14px;
}
.inner-banner-detail li.breadcrumb-item.active {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}
.inner-banner-detail h1 {
    color: #fff;
    font-size: 30px;
}
.second-heading {
    margin: 50px 0;
    position: relative;
    z-index: 9;
}

.second-heading h2 {
    font-size: 27px;
    font-weight: 700;
}
.inner-banner-detail p {
    font-size: 13px;
    font-weight: 500;
}
.third-section h3 {
    font-size: 18px;
    border-left: 2px solid #0666f3;
    padding-left: 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
    color: #232a4b;
}

.third-section .order_item.single .item_header {
    border-bottom: 0;
    background-color: #f4f5f5;
}
.third-section .order_item.single .item_header h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}
.third-section .product_order_info p {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
    line-height: 20px;
}
.third-section ul {
    margin: 0;
}
.third-section ul.bullets li {
    position: relative;
    padding: 10px 0 10px 15px;
}
.bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    width: 7px;
    height: 7px;
    background-color: #006af6;
    border-radius: 50%;
}

/* lab-result-detail-end */
/* -------------------- RESPONSIVE  */
@media screen and (max-width: 1400px) {
    .half.image img {
        min-height: 500px;
    }
}
@media screen and (max-width: 1200px) {
    .header_wrap {
        padding: 0 20px;
        height: 70px;
    }
    .container {
        padding: 0 20px;
    }
    .header_logo {
        width: 240px;
    }
    .header_phone {
        font-size: 14px;
    }
    .help a {
        font-size: 12px;
        padding: 8px 16px;
    }
    .footer_top {
        padding: 40px 0 40px;
    }
    .nav_block ul li a {
        font-size: 14px;
    }
    .nav_block ul li {
        padding: 7px 0;
    }
    .footer_address p br {
        display: none;
    }
    .shadow_block {
        padding: 15px 20px;
    }
    .footer_logo {
        padding-right: 10px;
    }
    .footer_top {
        grid-template-columns: 20% auto 28%;
    }
    .footer_bottom p,
    .footer_bottom ul li a {
        font-size: 13px;
    }
    .nav-menu > li > a {
        font-size: 15px;
        padding: 12px 10px;
    }
    .login_btn {
        padding: 10px 18px !important;
    }
    .half.content {
        padding: 20px;
    }
    .about_content {
        width: 100%;
    }
    .pricing_main {
        grid-template-columns: 120px auto;
    }
}
@media screen and (max-width: 980px) {
    .testimonials::before,
    .faq::after,
    .how_it_works::before {
        display: none;
    }
    .footer_top {
        display: block;
    }
    .footer_logo img {
        max-width: 280px;
    }
    .footer_nav {
        max-width: 620px;
    }
    .nav_block {
        margin-right: 20px;
    }
    .technology_logos {
        max-width: 620px;
        margin-bottom: 20px;
    }
    .footer_address {
        max-width: 620px;
    }
    .header_phone {
        display: none;
    }
    .footer_address,
    .footer_nav,
    .technology_logos {
        max-width: 100%;
    }
    .footer_logo {
        display: none;
    }
}
@media screen and (max-width: 840px) {
    .nav-toggle {
        right: auto;
    }
    .header_logo {
        margin-left: 45px;
    }
    .work_grid {
        grid-template-columns: 1fr;
    }
    .divider_section {
        flex-direction: column;
    }
    .divider_section .half {
        width: 100%;
    }
    .about_block {
        display: block;
    }
    .about_image {
        display: none;
    }
    .divider_section.reverse {
        flex-direction: column-reverse;
    }
    .half.content {
        padding: 50px 20px;
        text-align: center;
    }
    .half.content .app_btn {
        margin-right: 0;
    }
    .half.image img {
        min-height: auto;
    }
    .banner_content {
        text-align: center;
    }
    .banner_content p {
        margin: 0 auto 35px;
    }
    .banner_content .outline_btn {
        margin-right: 0;
    }
    .about_block .heading_block {
        text-align: center !important;
    }
    .about_block {
        margin: 0;
    }
    .about_content {
        text-align: center;
        padding: 0;
        margin: 0;
    }
    .work_box .icon {
        width: 100px;
        height: 100px;
    }
    .work_box p {
        min-height: auto;
    }
    .transparent_block {
        flex-direction: column-reverse;
        margin: 0em auto 0em;
    }
    .transparent_content {
        max-width: 100%;
        min-height: auto;
    }
    .transparent_img {
        position: relative;
        width: 100%;
    }
    .image_fill {
        position: relative;
    }
    .image_fill img {
        max-height: 380px;
    }
    .transparent_content {
        padding: 30px;
        text-align: center;
    }
    .transparent_content .readmore {
        justify-content: center;
    }
    .team_grid {
        grid-template-columns: 1fr 1fr;
    }
    .testimonial_grid {
        grid-template-columns: 1fr;
    }
    .quiz_block {
        display: flex;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }
    .quiz_block p {
        max-width: 100%;
        margin: 0 0 30px;
        padding-right: 0px;
    }
    .faq_block {
        max-width: 100%;
    }
    .navigation-portrait .nav-menu > li > a {
        padding: 20px 20px;
        display: block;
    }
    .video_modal iframe {
        width: 520px;
        height: 300px;
    }
    .video_modal .cd-popup-container {
        max-width: 520px;
    }
    .faq_main {
        display: grid;
        grid-template-columns: 100%;
        grid-gap: 0;
    }
    .faq_nav ul {
        display: flex;
        white-space: nowrap;
        overflow: auto;
        padding: 0px 0px 15px;
    }
    .faq_nav_block li a {
        padding-right: 20px !important;
    }
    .nav_sticky {
        position: initial;
    }
    .inner_heading h1 {
        font-size: 2.5em;
    }
    .innder_banner {
        padding: 3em 0;
    }
    .nav_sticky {
        padding-bottom: 0;
    }
    .faq_nav_block:last-child ul {
        margin-bottom: 0;
    }
    .pricing_main {
        grid-template-columns: 100%;
        grid-gap: 0;
    }
    .product_nav ul {
        display: flex;
        white-space: nowrap;
        overflow: auto;
        padding: 0px 0px 15px;
    }
    .product_grid {
        display: block;
        margin: 3em auto 3em;
    }
    .product_pic {
        max-width: 100%;
        text-align: center;
    }
    .product_info {
        margin: 0px;
    }
    .product_pic img {
        max-height: 370px;
        width: auto;
        margin: auto;
    }
    .nav_toggle {
        display: block;
    }
}
@media screen and (max-width: 640px) {
    .video_modal .cd-popup-close {
        top: -42px;
        right: calc(50% - 20px);
    }
    .video_modal iframe {
        width: 378px;
        height: 220px;
    }
    .video_modal .cd-popup-container {
        max-width: 378px;
    }
}
@media screen and (max-width: 520px) {
    .header_phone {
        display: none;
    }
    .footer_nav {
        grid-template-columns: 1fr;
    }
    .technology_logos {
        grid-template-columns: 1fr;
    }
    .tech_block label {
        font-size: 12px;
    }
    .footer_bottom p {
        grid-area: 2;
        margin-top: 10px;
    }
    .footer_bottom {
        display: grid;
        justify-content: center;
    }
    .footer_bottom ul li {
        padding: 0;
    }
    .footer_bottom ul li:last-child {
        padding-left: 15px;
    }
    .footer_bottom ul {
        text-align: center;
    }
    .banner_content h1 {
        font-size: 2.4em;
    }
    .banner_content p {
        margin: 0 auto 30px;
        font-size: 14px;
    }
    .banner_fullsize {
        min-height: 520px;
    }
    .app_btn {
        padding: 15px 26px;
        font-size: 13px;
    }
    .heading_block h2 {
        font-size: 2.2em;
    }
    .heading_block p {
        font-size: 14px;
    }
    .work_box h3 {
        font-size: 16px;
    }
    .work_box p {
        font-size: 14px;
    }
    .work_box .icon {
        width: 90px;
        height: 90px;
    }
    .work_box {
        padding: 25px 15px;
    }
    .heading_block {
        margin-bottom: 2em;
    }
    .block_section {
        padding: 3em 0;
    }
    .half.content h2 {
        font-size: 1.8em;
        margin-bottom: 12px;
    }
    .half.content p {
        font-size: 14px;
    }
    .about_content p {
        font-size: 14px;
    }
    .about_content a {
        margin: 10px 0 0;
    }
    .transparent_content h2 {
        font-size: 1.6em;
    }
    .transparent_content p {
        font-size: 14px;
    }
    .team_grid {
        margin: 40px 0px 0px;
    }
    .testimonial_block p {
        font-size: 14px;
        line-height: 24px;
    }
    .quiz_block p {
        font-size: 14px;
    }
    .quiz_block h2 {
        font-size: 1.8em;
    }
    .accordion_content p {
        font-size: 14px;
    }
    .accordion_title {
        font-size: 15px;
    }
    .transparent_block {
        padding: 1em 0;
    }
    .nav_right {
        margin: 0 0 0 30px;
    }
    .team_block p {
        font-size: 13px;
    }
    .team_block h2 {
        font-size: 13px;
    }
    .table_prescription table tr th,
    .table_prescription table tr td {
        font-size: 13px;
        padding: 10px;
    }
    .footer_nav {
        grid-template-columns: 1fr 1fr;
    }
    .footer_logo {
        display: none;
    }
}
@media screen and (max-width: 420px) {
    .header_logo {
        width: 210px;
    }
    .help a {
        font-size: 11px;
        padding: 7px 12px;
    }
    .header_wrap {
        height: 60px;
        padding: 0 15px;
    }
    .container {
        padding: 0 15px;
    }
    .nav_block ul li a {
        font-size: 13px;
    }
    .footer_logo img {
        max-width: 240px;
    }
    .footer_nav {
        grid-gap: 5px;
    }
    .footer_address p {
        font-size: 13px;
    }
    .footer_address a {
        font-size: 13px;
    }
    .tech_block label {
        font-size: 11px;
    }
    .amazone_pay {
        max-width: 120px;
    }
    .stripe {
        max-width: 52px;
    }
    .microsoft_azure {
        max-width: 160px;
    }
    .footer_address img {
        max-width: 120px;
    }
    .footer_top {
        padding: 30px 0 30px;
    }
    .footer_bottom {
        padding: 25px 0;
    }
    .footer_bottom p,
    .footer_bottom ul li a {
        font-size: 12px;
    }
    .login_btn {
        padding: 8px 16px !important;
        font-size: 12px !important;
    }
    .banner_content .app_btn {
        width: 100%;
        text-align: center;
        margin: 0px 0px 10px;
    }
    .banner_content h1 {
        font-size: 2.2em;
    }
    .heading_block h2 {
        font-size: 2em;
    }
    .half.content h2 {
        font-size: 1.6em;
    }
    .testimonial_btn .app_btn {
        margin-top: 20px;
    }
    .header_alert p {
        font-size: 11px;
    }
    .video_modal iframe {
        width: 288px;
        height: 170px;
    }
    .video_modal .cd-popup-container {
        max-width: 288px;
    }
    .header_logo {
        max-width: 200px;
    }
}

/** forms.css**/
button:focus {
    outline: none;
}

.questionnaire {
    padding: 40px 20px 80px;
}
.quiz_container_sm {
    max-width: 600px;
    margin: 0px auto;
}
.quiz_container_lg {
    max-width: 100%;
}
.quiz_head {
    display: flex;
    margin-bottom: 25px;
}
.quiz_body {
    margin: 0;
    flex: 1;
}
.quiz_head h2 {
    font-weight: 700;
    font-size: 32px;
    margin: 0px 0px 5px;
}
.quiz_head p {
    font-size: 14px;
    margin: 0px;
    opacity: 0.9;
    line-height: 22px;
}
.choose_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
/*------------------------------------------------- Forms */

.formElement {
    width: 100%;
    margin: 0;
    position: relative;
}
.formElement input {
    width: 100%;
    padding: 24px 20px 6px;
    border-radius: 2px;
    border: solid 1px var(--input-border-color);
    font-size: 14px;
    font-weight: 500;
    color: var(--main-color);
    transition: all 0.2s ease-in-out;
}
.formElement select {
    width: 100%;
    padding: 24px 20px 6px;
    border-radius: 2px;
    border: solid 1px var(--input-border-color);
    font-size: 14px;
    font-weight: 500;
    color: var(--main-color);
    transition: all 0.2s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
}
.formElement textarea {
    width: 100%;
    padding: 10px 20px;
    border-radius: 2px;
    border: solid 1px var(--input-border-color);
    font-size: 13px;
    font-weight: 500;
    min-height: 100px;
    color: var(--main-color);
    transition: all 0.2s ease-in-out;
}
.formElement input:focus {
    border-color: var(--primary-color);
    transition: all 0.2s ease-in-out;
}
.formElement textarea:focus {
    border-color: var(--primary-color);
    transition: all 0.2s ease-in-out;
}
.formElement input:focus + label {
    color: var(--primary-color);
}
.formElement label {
    font-size: 14px;
    color: var(--main-color);
    position: absolute;
    top: calc(50% - 1px);
    right: 20px;
    left: 20px;
    transform: translateY(-50%);
    transition: transform 0.3s ease 0s, color 0.3s ease 0s;
    z-index: 4;
    transform-origin: 0px 50% 0px;
    pointer-events: none;
}
.formElement label.active {
    transform: translateY(calc(-50% - 10px)) scale(0.76);
}

.formElement label.inactive {
    margin: 0;
}
.formElement label.transition {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.form_group {
    margin-bottom: 15px;
}

.list_points {
    font-size: 12px;
    font-style: italic;
    margin-bottom: 25px;
}
.list_points .points {
    display: flex;
    align-items: baseline;
    margin-bottom: 4px;
}
.points .dot {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    border: 2px solid #f2a157;
    margin-right: 10px;
}
.points .txt {
    opacity: 0.8;
}

.btn_block {
    margin-top: 20px;
}
.btn_submit {
    color: #fff !important;
    background-color: var(--primary-color);
    border-radius: 2px;
    padding: 6px 24px;
    height: 62px;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    width: 100%;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    font-size: 15px;
    margin-bottom: 18px;
    box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn_submit:hover {
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
.btn_block label {
    font-size: 14px;
    text-align: center;
    width: 100%;
    font-weight: 500;
}
.btn_block label a {
    color: var(--primary-color);
}

.loadingspinner {
    pointer-events: none;
    width: 24px;
    height: 24px;
    border: 3px solid transparent;
    border-color: rgba(255, 255, 255, 0.5);
    border-top-color: #fff;
    border-radius: 50%;
    animation: loadingspin 0.7s linear infinite;
    margin-right: 12px;
}

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

.custom_label .formElement label.inactive {
    opacity: 0.5;
}

/*-------------------------------------- CUSTOM CHECKBOX */

.cbx {
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}
.cbx span {
    display: inline-block;
    vertical-align: middle;
    transform: translate3d(0, 0, 0);
}
.cbx_txt {
    font-size: 13px;
    opacity: 0.8;
}
.cbx .cbx_txt a {
    color: var(--main-color);
    text-decoration: underline;
}
.inp-cbx {
    display: none;
}
.cbx span:first-child {
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 2px;
    transform: scale(1);
    vertical-align: middle;
    border: 2px solid var(--input-border-color);
    transition: all 0.2s ease;
}
.cbx span:first-child svg {
    position: absolute;
    z-index: 1;
    top: 6px;
    left: 5px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
}
.cbx span:first-child:before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--action-color);
    display: block;
    transform: scale(0);
    opacity: 1;
    border-radius: 50%;
    transition-delay: 0.2s;
}
.cbx span:last-child {
    margin-left: 10px;
}

.cbx:hover span:first-child {
    border-color: var(--action-color);
}

.inp-cbx:checked + .cbx span:first-child {
    border-color: var(--action-color);
    background: var(--action-color);
    animation: check 0.6s ease;
}
.inp-cbx:checked + .cbx span:first-child svg {
    stroke-dashoffset: 0;
}
.inp-cbx:checked + .cbx span:first-child:before {
    transform: scale(2.2);
    opacity: 0;
    transition: all 0.6s ease;
}
.inp-cbx:checked + .cbx span:last-child {
    transition: all 0.3s ease;
}
.inp-cbx:checked + .cbx span:last-child:after {
    transform: scaleX(1);
    transition: all 0.3s ease;
}

@keyframes check {
    50% {
        transform: scale(1.2);
    }
}

/*---------------------------- CUSTOM RADIO  */

.radio {
    position: relative;
    cursor: pointer;
    line-height: 20px;
    font-size: 14px;
    width: 100%;
    display: flex;
    margin: 0px;
    padding: 20px 20px;
    border: 1px solid var(--input-border-color);
    background-color: var(--main-bg-color);
    border-radius: 2px;
    box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease-in-out;
}
.radio:hover {
    box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease-in-out;
}
.radio .label {
    position: relative;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    width: 24px;
    height: 24px;
    border: 2px solid var(--input-border-color);
    border-radius: 100%;
    -webkit-tap-highlight-color: transparent;
}
.radio .label:after {
    content: "";
    /* position: absolute; */
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background: var(--green);
    transform: scale(0);
    transition: all 0.2s ease;
    opacity: 0.08;
    pointer-events: none;
}
.radio:hover .label:after {
    transform: scale(3.6);
}
.radio input[type="radio"]:checked + span .label {
    border-color: var(--green);
}
.radio input[type="radio"]:checked + span .label:after {
    transform: scale(1);
    transition: all 0.2s cubic-bezier(0.35, 0.9, 0.4, 0.9);
    opacity: 1;
}
.radio input[type="checkbox"]:checked + span .label {
    border-color: var(--action-color);
}
.radio input[type="checkbox"]:checked + span .label:after {
    transform: scale(1);
    transition: all 0.2s cubic-bezier(0.35, 0.9, 0.4, 0.9);
    opacity: 1;
}
.hidden {
    display: none;
}

.quiz_back {
    background-color: var(--main-bg-color);
    border: none;
    display: flex;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.08);
    justify-content: center;
    margin-right: 18px;
    border: 1px solid #f7f7f7;
    cursor: pointer;
}
.quiz_back svg {
    width: 18px;
    height: 18px;
}

.quiz_back svg path {
    fill: #bec4c9;
}

.quiz_back.sm_back {
    width: 35px;
    height: 35px;
}
.quiz_back.sm_back svg {
    width: 14px;
    height: 14px;
}

/*---------- TRANSITION  */

.ques_transition {
    -webkit-animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1)
        both;
    -o-animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fade-in-right {
    0% {
        opacity: 0;
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@-o-keyframes fade-in-right {
    0% {
        opacity: 0;
        -o-transform: translateX(50px);
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes fade-in-right {
    0% {
        opacity: 0;
        -webkit-transform: translateX(50px);
        -o-transform: translateX(50px);
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

/*-------------------------STEP PROGRESS  */

#progressbar {
    margin-bottom: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    counter-reset: step;
}
#progressbar li {
    list-style-type: none;
    color: var(--main-color);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 500;
    width: 100%;
    text-align: center;
    position: relative;
}
#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 50px;
    height: 50px;
    display: block;
    font-size: 14px;
    color: var(--main-color);
    background: var(--main-bg-color);
    border: 1px solid var(--input-border-color);
    border-radius: 50%;
    margin: 0 auto 10px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*progressbar connectors*/
#progressbar li:after {
    content: "";
    width: 100%;
    height: 1px;
    background: var(--input-border-color);
    position: absolute;
    left: -50%;
    top: calc(50% - 10px);
    z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,
#progressbar li.active:after {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--main-bg-color);
}
#progressbar li.complete:before,
#progressbar li.complete:after {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--main-bg-color);
}
#progressbar li.complete:before {
    content: "";
    background-image: url("../../images/questionary/tick.svg");
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: 15px 16px;
}

.word_spacing {
    word-spacing: -3px;
}

.form_label {
    font-size: 12px;
    font-weight: 500;
    margin: 0px 0px 8px;
}
.form_label span {
    color: #ff056f;
}

.custom_check input[type="radio"] {
    display: none;
}
.custom_check img {
    padding: 0px;
    margin: 0px;
    width: 30px;
    margin-right: 20px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.gender_icon {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.custom_check input[type="radio"]:checked + .gender_icon {
    border-color: var(--secondary-color);
    background-color: #fef9f5;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.custom_check {
    width: 100%;
}
.custom_check .gender_icon {
    padding: 10px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-radius: 2px;
    background-color: var(--main-bg-color);
    border: 1px solid var(--input-border-color);
}
.gender_name {
    font-size: 13px;
    font-weight: 500;
}

.question {
    font-size: 17px;
    margin: 5px 0 0;
    line-height: 24px;
}

.sub_option {
    padding-left: 56px;
    margin-bottom: 30px;
}

.quiz_head .count {
    font-size: 13px;
    opacity: 0.6;
    padding: 8px 0px 8px 15px;
}
/*-------------------------------- FILE UPLOAD  */

.dropzone {
    border: none;
    background-color: #f6f7fd;
    border-radius: 4px;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dropzone .dz-message {
    width: 100%;
    margin: 0px;
    border: 2px dashed #bdc2d6;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}
.dropzone .dz-message span {
    opacity: 0.8;
    margin-bottom: 10px;
}
.dropzone .dz-message svg {
    width: 70px;
    height: 70px;
}
.dropzone .dz-message svg path {
    fill: #bdc2d6;
}
.flex_end.forgot_password {
    display: flex;
    justify-content: flex-end;
    font-size: 14px;
    font-weight: 500;
    margin-top: 12px;
}
.plan_block_grid {
    display: grid;
    gap: 2em;
    margin-bottom: 3em;
}
.plan_block_grid.plan_2 {
    grid-template-columns: repeat(2, 1fr);
}
.get_started {
    max-width: 680px;
    margin: 0em auto;
    padding: 5em 0;
}
.kit_box {
    background-color: #fff;
    box-shadow: 0px 6px 14px -8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
}
.kit_box a {
    display: flex;
    flex-direction: column;
    color: var(--main-color);
}
.kit_pic {
    background-color: #f5f8fb;
    padding: 1.5em;
    margin: 0px;
}
.kit_pic img {
    max-width: 220px;
}
.kit_content {
    padding: 1.5em 1.5em;
}
.kit_content h5 {
    text-transform: uppercase;
    font-size: 0.75em;
    opacity: 0.6;
    margin: 0px 0px 10px;
}
.kit_content h2 {
    font-size: 1.02em;
    margin: 0px 0px 10px;
    line-height: 1.3;
}
.kit_btn {
    display: inline-flex;
    border: 1px solid black;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 4px;
    margin-top: 12px;
    transition: all 0.2s ease-in-out;
}
.kit_box:hover {
    -webkit-transform: translate(0, -6px);
    -ms-transform: translate(0, -6px);
    transform: translate(0, -6px);
}
.kit_box:hover .kit_btn {
    background-color: black;
    color: #fff;
}

.auth_row h6 {
    font-size: 14px;
    text-align: center;
    margin-bottom: 1.2em;
}
.auth_row h6 a {
    text-decoration: underline;
}
@media screen and (max-width: 1200px) {
    .quiz_head h2 {
        font-size: 28px;
    }
    .quiz_head p {
        font-size: 13px;
    }
    .formElement input {
        font-size: 13px;
        padding: 20px 15px 6px;
    }
    .formElement label {
        font-size: 13px;
        right: 15px;
        left: 15px;
    }
    .formElement label.active {
        transform: translateY(calc(-50% - 9px)) scale(0.76);
    }
    .cbx span:first-child {
        width: 22px;
        height: 22px;
    }
    .cbx span:first-child svg {
        top: 5px;
        left: 3px;
    }
    .btn_submit {
        height: 55px;
        font-size: 14px;
    }
    .loadingspinner {
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 620px) {
    .main_content {
        overflow: hidden;
    }
}
@media screen and (max-width: 540px) {
    .questionnaire {
        padding: 40px 0px 40px;
    }
    .quiz_back {
        width: 44px;
        height: 44px;
    }
    #progressbar li::before {
        width: 40px;
        height: 40px;
    }
    #progressbar li.complete::before {
        background-size: 15px;
        background-position: 11px 12px;
    }
    #progressbar li {
        font-size: 9px;
    }
    .quiz_head h2 {
        font-size: 24px;
    }
    .inp-cbx:checked + .cbx span:last-child {
        width: 220px;
    }
    .custom_check img {
        width: 25px;
    }
    .radio {
        font-size: 13px;
        padding: 15px 15px;
    }
    .radio .label {
        width: 20px;
        height: 20px;
    }
    .radio .label::after {
        top: 3px;
        left: 3px;
        width: 10px;
        height: 10px;
    }
}

.box_radio {
    padding: 20px 20px;
    border-radius: 4px;
    border: 1px solid var(--input-border-color);
    background-color: var(--main-bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.box_radio img {
    max-width: 160px;
    margin: 0px 0px 12px;
    width: 100%;
}
.box_radio h5 {
    font-size: 13px;
    margin: 0px;
}
.grid_selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.grid_selection .custom_check {
    margin: 0;
    cursor: pointer;
}

.custom_check input[type="radio"]:checked + .box_radio {
    border-color: var(--secondary-color);
    background-color: #fef9f5;
}
.capture_sec {
    padding: 15px 20px;
    border-radius: 4px;
    border: 1px solid #eee;
    background-color: var(--main-bg-color);
    box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
}
.capture_sec .form_label {
    font-size: 15px;
}
.capture_screen {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}
.capture_screen img {
    max-width: 280px;
}
.capture_actions {
    display: grid;
    grid-template-columns: 1fr 50px 1fr;
    margin-bottom: 15px;
}
.outline_btn {
    border: 1.5px solid var(--main-color);
    color: var(--main-color);
    text-transform: uppercase;
    cursor: pointer;
    background-color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    padding: 15px 0px;
}
.outline_btn:hover {
    border-color: var(--primary-color);
}
.capture_actions .or {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-style: italic;
    opacity: 0.7;
}
#captureModal .cd-popup-container {
    padding: 20px;
    max-width: 600px;
}
.cd-popup .capture_actions {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cd-popup .capture_actions .primary_btn {
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    padding: 15px 0px;
    color: #fff;
    text-transform: uppercase;
}
.capture_live {
    min-height: 100px;
    background-color: #000;
    margin-bottom: 20px;
    position: relative;
}
/* .capture_live video {
    display: none;
}
.capture_live video,
.capture_live canvas {
    width: 100%;
    height: 326px;
} */
/* .capture_live #cont {
    width: 100%;
}
.capture_live #previewVideo {
    width: 100%;
} */
.capture_live video,
.capture_live canvas {
    width: 100%;
    display: block;
    /* -webkit-transform: scaleX(-1);
    transform: scaleX(-1); */
}
.capture_live #capture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* min-height: 420px; */
}
.capture_live #control {
    position: absolute;
    bottom: 20px;
    z-index: 99;
    display: none;
    width: 100%;
    justify-content: center;
}
.capture_live #vid {
    position: relative;
}
#retake {
    background-color: rgba(0, 0, 0, 0.6);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
}
#retake svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.treatment_plans {
    display: grid;
    grid-template-columns: 100%;
    gap: 30px;
}
.plan_box {
    border: 1px solid #f5f5f5;
    background-color: var(--main-bg-color);
    border-radius: 2px;
    box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease-in-out;
}
.plan_box .transparent_block {
    margin: 0px;
    padding: 0px;
    height: 100%;
}

.plan_box .transparent_content {
    max-width: 60%;
    min-height: 380px;
    padding: 30px;
    justify-content: flex-start;
}
.plan_box .transparent_img {
    max-width: 40%;
}
.pricing_content_header {
    margin-bottom: 20px;
}
.pricing_content_header h3 {
    margin: 0px 0px 8px;
    font-size: 15px;
}
.pricing_content_header h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0px 0px 15px;
}
.pricing_content_header h1 span {
    font-size: 62%;
    font-weight: 500;
    color: #bdc1cb;
}
.pricing_content_header p {
    font-size: 13px;
    opacity: 0.7;
}

.pricing_content_body .plan_option {
    display: flex;
}
.plan_option svg {
    width: 16px;
    height: 16px;
    fill: #dbdfe7;
    margin-right: 10px;
    margin-top: 2px;
}
.plan_option span {
    font-size: 13px;
    font-weight: 400;
}
.pricing_content_body {
    margin-bottom: 30px;
}
.choose_plan {
    border: 2px solid #232a4b;
    background: #fff;
    color: #232a4b;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    width: 100%;
    padding: 12px 0px;
    border-radius: 4px;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
}
.choose_plan:hover {
    background-color: #232a4b;
    color: #fff;
}
.choose_plan svg {
    display: none;
    width: 18px;
    height: 18px;
    fill: #fff;
    margin-right: 10px;
    align-items: center;
}

.choose_plan.selected svg {
    display: block;
}
.choose_plan.selected {
    background-color: #232a4b;
    color: #fff;
}
.pricing_content input[type="radio"]:checked ~ .choose_plan {
    border-color: var(--secondary-color);
    background-color: #fef9f5;
}
.treatment_plans {
    margin-bottom: 40px;
}
.gender {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.app_header.quiz .header_logo {
    margin-left: 0;
}
.height_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.shipping_cover {
    border: 1px solid #f5f5f5;
    background-color: var(--main-bg-color);
    border-radius: 20px;
    box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease-in-out;
    margin-bottom: 30px;
}
.icon_list {
    font-size: 14px;
}
.icon_list svg {
    width: 22px;
    height: 22px;
    margin-right: 12px;
    fill: #17c5df;
}
.cover_content {
    padding: 20px;
}
.cover_content .icon_list {
    display: flex;
    align-items: center;
}
.cover_content {
    display: grid;
    gap: 10px;
}
.align_center {
    align-items: center;
}
.mini_header {
    margin-bottom: 20px;
}
.mini_header h3 {
    font-weight: 600;
    font-size: 17px;
    margin: 0px 0px 4px;
}
.mini_header p {
    opacity: 0.7;
    font-size: 14px;
}
.grid_two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cart_item {
    border: 1px solid #f5f5f5;
    background-color: var(--main-bg-color);
    border-radius: 2px;
    box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease-in-out;
    padding: 20px;
    display: grid;
    grid-template-columns: 60px auto 70px;
    gap: 10px;
    margin-bottom: 15px;
}
.product_cart_info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.product_cart_info h2 {
    font-size: 16px;
    margin: 0px 0px 5px;
    font-weight: 600;
}
.product_cart_info p {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.7;
    line-height: 17px;
    margin: 0px;
}
.product_cart_price h1 {
    font-size: 17px;
    margin: 0px;
    text-align: right;
}
.product_cart_price h1 span {
    display: block;
    font-size: 13px;
    opacity: 0.7;
}
.cart_summary .summary_body {
    background-color: #fff;
    padding: 20px;
}
.cart_summary .summary_body.fill {
    background-color: #fbfbfc;
}
.summary_list {
    display: flex;
    margin-bottom: 5px;
}
.summary_list h4 {
    flex: 1;
    font-size: 14px;
    font-weight: 400;
    margin: 0px 0px 0px;
}
.summary_list h3 {
    font-size: 15px;
    margin: 0px 0px 10px;
}
.summary_list h3 b {
    font-weight: 600;
}
.summary_list:last-child {
    margin-bottom: 0;
}
h3.offer {
    color: #4db39e;
}
.cart_summary {
    margin-bottom: 20px;
}
.inline_flex {
    display: flex;
    align-items: center;
}
svg.paypal {
    width: 100px;
    height: 24px;
}
.card_no_iframe {
    border: 1px dashed #ddd;
    margin-top: 20px;
    cursor: auto;
}
.card_no_iframe p {
    text-align: center;
    padding: 20px 10px;
    margin: 0px;
}
.payment_method .custom_radio {
    flex-direction: column;
}
.without_gen h3 {
    font-size: 14px;
}
.without_gen button {
    background-color: transparent;
    border: none;
    text-decoration: underline;
    cursor: pointer;
}
.custom_checkbox .cbx {
    display: flex;
}
.custom_checkbox .cbx_txt {
    flex: 1;
}
.formElement select option {
    padding-left: 0;
}
.formElement select {
    padding-left: 12px;
}
@media screen and (max-width: 980px) {
    .treatment_plans {
        grid-template-columns: 100%;
    }
}
@media screen and (max-width: 840px) {
    .plan_box .transparent_block {
        flex-direction: row-reverse;
    }
    .plan_box .image_fill {
        position: absolute;
    }
    .plan_box .pricing_content {
        text-align: left;
    }
}
@media screen and (max-width: 767px) {
    #progressbar li {
        font-size: 0px;
    }
    #progressbar li::before {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }
    #progressbar li::after {
        top: calc(50% - 5px);
    }
    #progressbar {
        margin-bottom: 30px;
    }
    .questionnaire {
        padding: 20px 0px 40px;
    }
    #progressbar li.complete::before {
        background-size: 13px !important;
        background-position: 8px 8px !important;
    }
    .capture_actions .or {
        display: none;
    }
    .openCamera {
        display: none;
    }
}

@media screen and (max-width: 540px) {
    .plan_box .transparent_block {
        flex-direction: column-reverse;
    }
    .plan_box .transparent_content {
        max-width: 100%;
    }
    .plan_box .transparent_img {
        position: relative;
        min-height: 200px;
        max-width: 100%;
    }
    .question {
        font-size: 16px;
        margin-top: 6px;
        line-height: 20px;
    }
    .outline_btn {
        font-size: 13px;
        padding: 12px 0px;
    }
    .capture_actions {
        grid-template-columns: 100%;
    }
    .capture_actions .or {
        padding: 5px 0px;
        display: none;
    }
    .cart_item {
        grid-template-columns: 40px auto 70px;
    }
    #captureModal .cd-popup-container {
        padding: 0px;
        margin: 0px 0px;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    #captureModal .capture_live {
        margin: 0px;
        flex: 1;
        display: flex;
        align-items: center;
    }
    .capture_live #capture {
        display: flex;
        align-items: center;
    }
    #captureModal .capture_actions {
        padding: 15px;
        flex-direction: column-reverse;
        display: flex;
        gap: 0 !important;
    }
    #closeCamera {
        margin-top: 5px;
    }
    #card_no_iframe .inline_grid {
        grid-template-columns: 100%;
        gap: 0;
    }
    .grid_two {
        grid-template-columns: 100%;
        gap: 0;
    }
}
@media screen and (max-width: 420px) {
    #progressbar {
        margin-bottom: 10px;
    }
    .quiz_head h2 {
        font-size: 23px;
    }
    .quiz_head p {
        font-size: 13px;
        line-height: 20px;
    }
    .quiz_back {
        width: 45px;
        height: 45px;
        margin-right: 12px;
    }
    .quiz_back svg {
        width: 13px;
        height: 13px;
    }
}

/** admin.css **/

.user_admin {
    margin: 0px;
    padding: 30px 0px;
    min-height: 60vh;
    position: relative;
    z-index: 9;
}
.admin_wrapper {
    display: grid;
    grid-template-columns: 200px auto;
    gap: 30px;
}

.admin_page_title {
    border-bottom: 1px solid #e8eaef;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.admin_page_title h2 {
    font-weight: 700;
    font-size: 32px;
    margin: 0px 0px 3px;
}
.admin_page_title p {
    font-size: 14px;
    margin: 0px;
    opacity: 0.8;
    line-height: 22px;
}
.sidebar_nav {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease-in-out;
    position: sticky;
    top: 85px;
}
.sidebar_header {
    padding: 15px 20px;
    border-bottom: 1px solid #e8eaef;
}
.sidebar_user {
    display: flex;
}
.usr_ico {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    color: #fff;
    margin-right: 10px;
    overflow: hidden;
}
.usr_body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.usr_body h4 {
    line-height: normal;
    font-size: 13px;
    margin: 0px 0px 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 110px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: nowrap;
    font-weight: 500;
}
.usr_body h5 {
    line-height: normal;
    font-size: 12px;
    margin: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 110px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: nowrap;
    opacity: 0.7;
    font-weight: 400;
}
.sidebar_content ul {
    padding: 10px 0 0;
}
.sidebar_content ul li a {
    padding: 10px 20px;
    font-size: 13px;
    color: var(--main-color);
    display: block;
}
.sidebar_content ul li {
    position: relative;
}
.sidebar_content ul li.active a {
    color: var(--primary-color);
}
.sidebar_content ul li.active::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 3px;
    background-color: var(--primary-color);
    top: 0;
    border-radius: 0px 20px 20px 0px;
}
.sidebar_content ul li a:hover {
    color: var(--primary-color);
}
.logout_btn {
    border-radius: 2px;
    background-color: #fff;
    border: 1px solid var(--primary-color);
    text-transform: uppercase;
    font-weight: 500;
    width: 100%;
    text-align: center;
    font-size: 12px;
    padding: 7px 0px;
    cursor: pointer;
}
.logout_btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}
.sidebar_footer {
    padding: 0px 20px 15px 20px;
}
.grid_box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
.grid_shadow {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 30px;
    text-align: center;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.04);
}
.grid_ico {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.sub_head {
    margin-bottom: 20px;
}
.sub_head h3 {
    font-weight: 600;
    font-size: 17px;
    margin: 0px 0px 4px;
}
.grid_shadow h3 {
    font-size: 14px;
    margin-bottom: 8px;
}
.grid_shadow p {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 10px;
}
.grid_ico svg {
    width: 40px;
    height: 40px;
    fill: var(--primary-color);
}
.box_inline {
    background-color: #fff;
    border: 1px solid #e7ebef;
    display: grid;
    border-radius: 4px;
}
.grid_2 {
    grid-template-columns: 32% auto;
}
.grid_3 {
    grid-template-columns: 32% auto 220px;
}
.profile_area {
    padding-bottom: 15px;
}
.doc_pic {
    border-radius: 50%;
    padding: 5px;
    margin-bottom: 8px;
}
.doc_pic img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}
.profile_info {
    border-left: 1px solid #e7ebef;
    padding: 20px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.profile_area h4 {
    margin: 0px;
    font-size: 14px;
}
.profile_area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.profile_area.green {
    background-color: #f5feff;
}
.profile_area.blue {
    background-color: #fbfcff;
}

.profile_area.green .doc_pic {
    border: 1px solid #29b8cf;
}
.profile_area.blue .doc_pic {
    border: 1px solid var(--primary-color);
}
.info_block h5 {
    font-size: 11px;
    text-transform: uppercase;
    margin: 0px 0px 2px;
    font-weight: 600;
}
.info_block p {
    font-size: 13px;
    opacity: 0.7;
}
.info_block {
    margin-bottom: 10px;
}
.info_block:last-child {
    margin-bottom: 0;
}
.card_blocks {
    margin-bottom: 35px;
}
.profile_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.md_primary_btn,
.md_primary_btn:hover {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
    padding: 12px 22px;
    cursor: pointer;
}
.md_primary_btn_outline {
    background-color: #fff;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
    padding: 12px 22px;
    cursor: pointer;
}
.md_primary_btn_outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}
.order_item {
    border: 1px solid #e7ebef;
    background-color: var(--main-bg-color);
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
    padding: 20px;
    display: grid;
    grid-template-columns: 60px auto 70px;
    gap: 10px;
    margin-bottom: 15px;
}
.product_order_info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.product_order_info h2 {
    font-size: 16px;
    margin: 0px 0px 5px;
    font-weight: 600;
}
.product_order_info p {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.7;
    line-height: 17px;
    margin: 0px;
}
.product_order_price h1 {
    font-size: 17px;
    margin: 0px;
    text-align: right;
}
.product_order_price h1 span {
    display: block;
    font-size: 13px;
    opacity: 0.7;
}
.result_block {
    border: 1px solid #e7ebef;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.04);
    padding: 30px;
    border-left: 2px solid var(--primary-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
}
.result_txt_body {
    flex: 1;
    padding-right: 20px;
}

.result_txt_body {
    flex: 1;
    padding-right: 20px;
}

.result_txt_body h1 {
    font-size: 2em;
}
.result_txt_body p {
    font-size: 14px;
    max-width: 460px;
}
.form_group_action {
    display: flex;
    justify-content: flex-end;
}
.form_group_action .btn_submit {
    width: auto;
    height: auto;
    padding: 18px 40px;
}

.btn_submit.disabled {
    background-color: #ccced7;
    cursor: auto;
}
.order_accordion .accordion_block {
    border: 1px solid #dbdddf;
    border-radius: 4px;
    margin-bottom: 12px;
}
.order_accordion .accordion_title {
    font-size: 15px;
    font-weight: 600;
    padding: 15px 30px 15px 20px;
}
.order_accordion .accordion_title::after {
    right: 10px;
}
.order_accordion .accordion_title.collapsed::after {
    right: 12px;
    top: -2px;
}
.order_accordion .accordion_content {
    padding-bottom: 0;
}
.order_accordion .accordion_content .cart_summary {
    margin-bottom: 0;
}
.summary_list h4 b {
    font-weight: 600;
}
.summary_gap {
    border-bottom: 1px solid #eee;
    margin-bottom: 12px;
}
.order_accordion {
    max-width: 600px;
    margin: 0px auto;
}

.tracker_block {
    border: 1px solid #dbdddf;
    border-radius: 4px;
}
.progress_tracker {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
.tracker_head {
    background-color: #fafbfc;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    padding: 5px 0;
}
.tracker_body .placeholder {
    display: flex;
    justify-content: center;
    padding-top: 10px;
}
.tracker_body img {
    height: 165px;
    object-fit: cover;
}
.tracker_body .placeholder img {
    width: auto;
    height: 100px;
}
.tracker_footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
}
.tracker_footer .outline_btn {
    padding: 7px 0px;
    border: 1px solid #e5e6e8;
    font-size: 11px;
    width: 100%;
    font-weight: 500;
}
.tracker_footer .or {
    font-size: 9px;
    padding: 2px 0;
}
.remove_tracker {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 5px;
}
.remove_tracker svg {
    width: 100%;
    height: 100%;
    fill: #ff006c;
}
.sub_head.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.recomented_product .product_info {
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.04);
}

.recomented_product .product_info h2 {
    font-size: 1.7em;
    margin-bottom: 5px;
}
.recomented_product .product_info h3 {
    font-size: 13px;
}
.recomented_product .table_prescription table tr th,
.recomented_product .table_prescription table tr td {
    padding: 9px 15px;
    font-size: 13px;
}
.recomented_product .table_prescription table tr td {
    font-weight: 400;
    line-height: 24px;
}
.product_radio .custom_radio {
    padding: 0px;
    border: none;
    align-items: center;
    box-shadow: none;
    width: auto;
    margin-right: 12px;
}
.product_radio {
    display: flex;
    flex: 1;
}
.choose_price {
    display: flex;
    margin: 20px 0 30px;
}
.choose_price h1 {
    font-size: 26px;
    margin: 0px;
}
.pricing_content_block .product_grid {
    margin: 2em auto 4em;
}
.track_order_log table {
    width: 100%;
    border: 1px solid #e5eaed;
}
.track_order_log table thead {
    border-bottom: 1px solid #e5eaed;
    background-color: #fbfcfd;
}
.track_order_log table thead th {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 10px 12px;
}
.track_order_log table tbody td {
    font-size: 13px;
    padding: 10px 12px;
}
.order_item.single {
    display: flex;
    flex-direction: column;
    padding: 0;
}
.order_item.single .product_order_info {
    flex: 1;
}
.order_item.single .item_content {
    padding: 5px 20px 20px;
    display: flex;
}

.order_item.single .item_header {
    padding: 10px 20px 10px;
    display: flex;
    border-bottom: 1px solid #e7ebef;
    font-size: 13px;
    background-color: #fbfcfd;
}
#progressbar.track_status {
    align-items: flex-start;
    margin: 30px 0px 40px;
}
#progressbar.track_status li {
    padding: 0 5px;
    font-size: 10px;
}
#progressbar.track_status li span {
    display: block;
    font-size: 75%;
    opacity: 0.7;
}
#progressbar.track_status li::before {
    width: 30px;
    height: 30px;
    font-size: 10px;
}
#progressbar.track_status li::after {
    top: 15px;
}
#progressbar.track_status li.complete::before {
    background-size: 12px;
    background-position: 9px 9px;
}
.result_list {
    border: 1px solid #dbdddf;
    border-radius: 4px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    align-items: center;
}

.result_list h4 {
    font-size: 14px;
    margin: 0px;
    padding-right: 15px;
}

.result_list .readmore {
    font-size: 13px;
    margin: 0px;
    align-items: center;
}
.result_list .readmore svg {
    width: 14px;
    height: 14px;
}
.btn_group_input {
    display: flex;
}
.btn_group_input .form_group {
    flex: 1;
}
.btn_group_input .formElement input {
    height: 52px;
    border-radius: 2px 0px 0px 2px;
}

.btn_group_input .md_primary_btn {
    height: 52px;
    border-radius: 0px 2px 2px 0px;
}
.disable_share input {
    border: solid 1px var(--input-border-color);
    font-size: 14px;
    font-weight: 500;
    color: var(--main-color);
    transition: all 0.2s ease-in-out;
    width: 100%;
    padding: 10px 90px 10px 20px;
    height: 52px;
    border-radius: 2px;
    background-color: #f9fbfd;
}
.disable_share .form_group {
    position: relative;
}
.link_btn {
    border: none;
    background-color: transparent;
    font-size: 13px;
    color: var(--primary-color);
    position: absolute;
    top: 14px;
    right: 20px;
    cursor: pointer;
}
.social_share {
    display: flex;
}
.social_share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #f9fbfd;
    margin-left: 5px;
}
.social_share a:hover svg {
    fill: var(--primary-color);
    transition: all 0.2s ease-in-out;
}
.social_share svg {
    width: 20px;
    height: 20px;
    fill: var(--main-color);
    transition: all 0.2s ease-in-out;
}
.disable_share {
    display: grid;
    grid-template-columns: auto 240px;
}
.social_share {
    display: flex;
    justify-content: flex-end;
}
.form_group.copy {
    position: relative;
}
.form_group.copy .link_btn:before {
    content: "";
    display: none;
    position: absolute;
    top: 38px;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid var(--main-color);
}
.form_group.copy .link_btn:after {
    content: "Tap to Copy";
    display: none;
    position: absolute;
    z-index: 9999;
    top: 42px;
    right: -20px;
    width: 100px;
    padding: 5px 10px;
    color: #fff;
    font-size: 12px;
    text-align: center;
    background: var(--main-color);
    border-radius: 4px;
}

.form_group.copy .link_btn:hover:before,
.form_group.copy .link_btn:hover:after {
    display: block;
}
.form_group.copy .link_btn:active,
.form_group.copy .link_btn:focus {
    outline: none;
}
.form_group.copy .link_btn:active:after,
.form_group.copy .link_btn:focus:after {
    content: "Copied!";
}

.chat_media {
    display: flex;
    align-items: flex-start;
}
.chat_usr_ico {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    overflow: hidden;
    text-transform: uppercase;
}
.chat_usr_ico img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.chat_admin_usr_ico {
    width: 30px;
    height: 30px;
    background-color: var(--blue-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    overflow: hidden;
    text-transform: uppercase;
}
.chat_admin_usr_ico img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.chat_body {
    background-color: #ddd;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #f7f8f9;
    max-width: 70%;
}
.chat_media {
    margin-bottom: 20px;
}
.chat_media.chat_left .chat_usr_ico {
    margin-right: 10px;
}
.chat_media.chat_left .chat_body {
    background-color: #fbfcfd;
}
.chat_media.chat_right .chat_usr_ico {
    margin-left: 10px;
}
.chat_media.chat_right .chat_body {
    background-color: #fafcff;
}
.chat_body h2 {
    margin: 0px 0px 10px;
    font-size: 14px;
}
.chat_body h2 span {
    margin-right: 6px;
}
.chat_body h2 small {
    opacity: 0.7;
}
.chat_body p {
    font-size: 13px;
    margin-bottom: 8px;
    line-height: 22px;
}
.chat_body p a {
    word-break: break-all;
}
.chat_media.chat_right {
    flex-direction: row-reverse;
}
.chat_comment {
    background-color: #fff;
    border: 1px solid #e7ebef;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.04);
    padding: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    position: sticky;
    bottom: 0;
    display: flex;
}
.msg_area {
    flex: 1;
}
.msg_area textarea {
    border: none;
    padding: 0px;
    width: 100%;
    font-size: 13px;
    resize: none;
}
.chat_submit {
    width: 42px;
    height: 42px;
    border: none;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    cursor: pointer;
}
.chat_submit svg {
    width: 20px;
    height: 20px;
}
.side_nav_overlay {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(27, 27, 38, 0.92);
    z-index: 999;
    opacity: 1;
    visibility: hidden;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s;
}
.sidenav_close {
    padding: 10px 17px;
    font-size: 18px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    display: none;
}
.ignore {
    background-color: transparent;
    border-color: #ff6c00;
    color: #ff6c00;
}
.pay_now {
    background-color: transparent;
    border-color: #db3b13;
    color: #e93b10;
}
.product_info_action .md_primary_btn {
    margin-right: 5px;
}
.md_primary_btn.outline {
    background-color: transparent;
    color: var(--primary-color);
}
/* alert */
.alert_notification {
    color: #fff;
    border-radius: 0.8em;
    padding: 1.5em 1.5em;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}
.alert_notification::after {
    content: "";
    background-color: rgba(255, 255, 255, 0.08);
    width: 36%;
    height: 140%;
    position: absolute;
    right: 0;
    border-radius: 0px 0px 0px 50em;
}
.alert_notification.with_icon {
    display: grid;
    grid-template-columns: auto 100px;
    gap: 15px;
    align-items: center;
}
.alert_body h3 {
    margin: 0 0 5px;
    font-size: 20px;
    font-weight: 600;
}
.alert_body p {
    margin: 0 0 5px;
    font-size: 12px;
}
.alert_btn {
    background-color: #fff;
    padding: 10px 20px;
    display: inline-flex;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 0px;
}
.alert_btn:hover {
    background-color: transparent;
    color: #fff !important;
    box-shadow: 0px 0px 0px 2px inset rgba(255, 255, 255, 1);
}
.alert_ico {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 9;
    padding: 1.7em;
}
.alert_ico svg {
    width: 100%;
    height: 100%;
}
.alert_ico svg path {
    fill: #fff;
}
.unfill path {
    fill: none !important;
}
.alert_primary {
    background-color: var(--alert-primary);
}
.alert_primary .alert_btn {
    color: var(--alert-primary);
}
.alert_primary .alert_ico {
    background: var(--alert-primary);
}
.alert_secondary {
    background-color: var(--alert-secondary);
}
.alert_secondary .alert_btn {
    color: var(--alert-secondary);
}
.alert_secondary .alert_ico {
    background-color: var(--alert-secondary);
}
.alert_success {
    background-color: var(--alert-success);
}
.alert_success .alert_btn {
    color: var(--alert-success);
}
.alert_success .alert_ico {
    background-color: var(--alert-success);
}
.alert_tertiary {
    background-color: var(--alert-tertiary);
}
.alert_tertiary .alert_btn {
    color: var(--alert-tertiary);
}
.alert_tertiary .alert_ico {
    background-color: var(--alert-tertiary);
}
.alert_warning {
    background-color: var(--alert-warning);
}
.alert_warning .alert_btn {
    color: var(--alert-warning);
}
.alert_warning .alert_ico {
    background-color: var(--alert-warning);
}
.alert_danger {
    background-color: var(--alert-danger);
}
.alert_danger .alert_btn {
    color: var(--alert-danger);
}
.alert_danger .alert_ico {
    background-color: var(--alert-danger);
}
.alert_notification:last-child {
    margin-bottom: 20px;
}
.dashboard_alerts .alert_notification:last-child {
    margin-bottom: 25px;
}
.plan_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 30px 0 40px;
}
.plan_media {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0px 8px 17px -4px rgba(0, 0, 0, 0.1);
    border-radius: 0.5em;
}
.plan_title {
    text-transform: uppercase;
    display: flex;
    align-items: center;
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 8px;
}
.plan_title span {
    opacity: 0.7;
    margin-right: 8px;
}
.plan_title svg {
    width: 18px;
    height: 18px;
}
.plan_name h3 {
    margin: 0px 0px 10px;
    font-size: 0.95em;
    font-weight: 600;
}
.plan_progress {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.plan_progress .progress {
    flex: 1;
    background-color: #e8eaef;
    height: 4px;
}
.progress_value {
    display: flex;
    justify-content: flex-end;
    width: 40px;
    font-size: 10px;
    opacity: 0.7;
}
.plan_action a {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 11px;
}
.plan_action a:hover svg {
    margin-left: 6px;
}
.plan_action span {
    margin-right: 8px;
}
.plan_action svg {
    width: 16px;
    height: 16px;
    transition: all 0.2s ease-in-out;
}

.selected_plan .plan_title svg {
    fill: #55ccbf;
}
.selected_plan .progress-bar {
    background-color: #55ccbf;
}
.selected_plan .plan_action a {
    color: #55ccbf;
}
.selected_plan .plan_action svg {
    fill: #55ccbf;
}

.inprogress_plan .plan_title svg {
    fill: #e8a336;
}
.inprogress_plan .progress-bar {
    background-color: #e8a336;
}
.inprogress_plan .plan_action a {
    color: #e8a336;
}
.inprogress_plan .plan_action svg {
    fill: #e8a336;
}

.other_plan .plan_title svg {
    fill: #0666f3;
}
.other_plan .progress-bar {
    background-color: #0666f3;
}
.other_plan .plan_action a {
    color: #0666f3;
}
.other_plan .plan_action svg {
    fill: #0666f3;
}
.nimbus_app {
    display: grid;
    grid-template-columns: auto 30%;
    background-color: #fff;
    box-shadow: 0px 8px 17px -4px rgba(0, 0, 0, 0.1);
    border-radius: 0.5em;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    align-items: center;
}
.nimbus_app::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    background: rgb(48, 125, 231);
    background: linear-gradient(
        130deg,
        rgba(48, 125, 231, 1) 0%,
        rgba(58, 171, 226, 1) 100%
    );
    right: -8%;
    transform: skewX(-35deg);
}
.download_btn {
    display: flex;
}
.download_btn a {
    width: 120px;
    margin-right: 5px;
}
.mobile_app_content {
    padding: 2em 3em;
    position: relative;
    z-index: 1;
}
.mobile_app_content h2 {
    font-size: 1.4em;
    font-weight: 600;
    margin: 0 0 0.3em;
}
.mobile_app_content p {
    font-size: 13px;
    margin-bottom: 1.8em;
}
.app_screenshot {
    z-index: 9;
    max-width: 240px;
    position: absolute;
    right: 50px;
    bottom: -70px;
}
.payments_table {
    width: 100%;
}
.payments_table th {
    font-size: 12px;
    border-bottom: 1px solid #ddd;
    padding: 8px 12px 8px 0;
    opacity: 0.7;
    font-weight: 500;
}
.payments_table td {
    font-size: 13px;
    font-weight: 500;
    padding: 8px 12px 8px 0;
    border-bottom: 1px solid #ddd;
}
.edit_payment_btn {
    border: none;
    background-color: var(--primary-color);
    padding: 6px 12px;
    color: #fff;
    display: inline-flex;
    border-radius: 3px;
    font-size: 13px;
}
.edit_payment_btn:hover,
.edit_payment_btn:focus {
    color: #fff;
}
.with_card_icon {
    position: relative;
}
.with_card_icon #ccsingle {
    position: absolute;
    right: 12px;
    top: 10px;
}
.with_card_icon #ccsingle svg {
    width: 30px;
    height: 30px;
}
.mob_table_title {
    display: none;
}
@media screen and (max-width: 1200px) {
    .dd-menu {
        top: 55px;
    }
    .nimbus_app::after {
        width: 54%;
        right: -10%;
    }
}
@media screen and (max-width: 991px) {
    .plan_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .app_screenshot {
        max-width: 180px;
        right: 20px;
        bottom: -50px;
    }
    .nimbus_app::after {
        width: 320px;
        right: -70px;
    }
}
@media screen and (max-width: 840px) {
    .bg_shapes {
        display: none;
    }
    .user_admin {
        z-index: auto;
    }
    .admin_sidebar {
        position: fixed;
        left: -250px;
        top: 0;
        height: 100%;
        z-index: 999;
        width: 250px;
        -webkit-overflow-scrolling: touch;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: ease;
        transition-timing-function: ease;
    }
    .admin_sidebar.active {
        left: 0px;
        -webkit-overflow-scrolling: touch;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: ease;
        transition-timing-function: ease;
    }
    .admin_sidebar.active .side_nav_overlay {
        visibility: visible;
        opacity: 1;
    }
    .sidebar_nav {
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        z-index: 99999;
        padding: 50px 0px;
        overflow: auto;
    }
    .sidebar_header {
        display: none;
    }
    .sidenav_close {
        display: block;
    }
    .admin_wrapper {
        grid-template-columns: 100%;
        gap: 0;
    }
    .recomented_product .transparent_content.product_info {
        text-align: left;
        padding-left: 0;
        padding-right: 0;
        box-shadow: none;
    }
    .product_info_action .md_primary_btn {
        width: 100%;
        text-align: center;
        display: block;
    }
    .pricing_content_block .product_grid {
        margin: 2em auto 0em;
    }
    .chat_comment {
        margin: 0px -20px;
    }
    .chat_body {
        max-width: 80%;
    }
    #progressbar.track_status {
        z-index: 1;
        position: relative;
    }
    .get_started {
        padding: 3em 0;
    }
}
@media screen and (max-width: 640px) {
    .grid_box {
        grid-template-columns: 100%;
    }
    .box_inline.grid_2,
    .box_inline.grid_3 {
        grid-template-columns: 100%;
    }
    .profile_area {
        padding-bottom: 0;
        min-height: 200px;
        padding: 20px;
        align-items: flex-start;
    }
    .profile_btn {
        padding-top: 0;
        justify-content: flex-start;
    }
    .profile_info {
        min-height: auto;
    }
    .result_block {
        padding: 20px;
        align-items: flex-start;
        flex-direction: column;
    }
    .user_admin {
        padding: 15px 0px;
    }
    .progress_tracker {
        grid-template-columns: 100%;
    }
    .result_list {
        align-items: flex-start;
        flex-direction: column;
    }
    .result_list h4 {
        margin-bottom: 5px;
    }
    .disable_share {
        grid-template-columns: 100%;
    }
    .social_share {
        justify-content: center;
    }
    #progressbar.track_status {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
    .track_status li {
        margin-bottom: 10px;
    }
    .track_status li:nth-child(4)::after {
        display: none;
    }
    .track_order_log thead {
        display: none;
    }
    .track_order_log tbody tr {
        display: flex;
        flex-direction: column;
    }
    .track_order_log tbody tr td {
        padding: 0 20px;
    }
    .track_order_log tbody tr td:first-child {
        padding-top: 20px;
    }
    .track_order_log tbody tr:last-child td:last-child {
        padding-bottom: 20px;
    }
    .alert_ico {
        display: none;
    }
    .alert_body h3 {
        font-size: 20px;
    }
    .alert_body p {
        font-size: 12px;
    }
    .alert_notification {
        padding: 1.5em 1.5em;
    }
    .alert_notification.with_icon {
        grid-template-columns: 100%;
    }
    .nimbus_app::after {
        display: none;
    }
    .nimbus_app {
        grid-template-columns: 100%;
        min-height: auto;
    }
    .app_screenshot {
        display: none;
    }
    .mobile_app_content {
        padding: 1.5em 1.5em;
    }
    .admin_page_title h2 {
        font-size: 26px;
    }
    .payments_table thead {
        display: none;
    }
    .payments_table tbody tr {
        display: flex;
        flex-direction: column;
    }
    .mob_table_title {
        display: block;
        font-size: 12px;
        opacity: 0.7;
        font-weight: 500;
    }
    .payments_table td {
        border-bottom: none;
    }
}
@media screen and (max-width: 540px) {
    .order_items_list .order_item {
        grid-template-columns: 50px auto 70px;
        padding: 15px;
    }
    .plan_block_grid.plan_2 {
        grid-template-columns: 100%;
    }
    .kit_pic img {
        max-width: none;
    }
    .get_started {
        padding: 2em 0;
    }
}
@media screen and (max-width: 420px) {
    .dd-menu {
        top: 47px;
    }
    .logged_user .usr_ico {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
    .summary_list h4 {
        font-size: 13px;
        padding-right: 20px;
    }
    .summary_list h3 {
        font-size: 13px;
    }
    .product_pic img {
        width: 100%;
        max-height: inherit;
    }
    .chat_comment {
        margin: 0px -15px;
    }
    .plan_grid {
        grid-template-columns: 100%;
    }
}
