/* ===============Global Style Start ==============*/

:root {
    --color-primary: #990000;
    --color-danger: #FF0060;
    --color-success: #1B9C85;
    --color-warning: #ffff1a;
    --color-white: #fff;
    --color-info-dark: #c9d2cf;
    --color-dark: #000000;
    --color-light: rgba(132, 139, 200, 0.18);
    --color-dark-variant: #677483;
    --color-background: #f6f6f9;
    --card-border-radius: 2rem;
    --border-radius-1: 0.4rem;
    --border-radius-2: 1.2rem;
    --card-padding: 1.8rem;
    --padding-1: 1.2rem;
    --box-shadow: 0 2rem 3rem var(--color-light);
    --slider-handle-size: 14px;
    --slider-handle-border-radius: 50px;
    --slider-handle-margin-top: -4px;
    --slider-track-height: 6px;
    --slider-track-border-radius: 4px;
}

.dark-mode-variables {
    --color-background: #181a1e;
    --color-white: #202528;
    --color-dark: #edeffd;
    --color-dark-variant: #a3bdcc;
    --color-light: rgba(0, 0, 0, 0.4);
    --box-shadow: 0 2rem 3rem var(--color-light);
}

* {
    margin: 0;
    padding: 0;
    outline: 0;
    appearance: 0;
    border: 0;
    text-decoration: none;
    box-sizing: border-box;
    list-style: none;
}

html {
    font-size: 14px;
}

body {
    width: 100vw;
    height: 100vh;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    user-select: none;
    overflow-x: hidden;
    color: var(--color-dark);
    background-color: var(--color-background);
    position: relative;
}

a {
    color: var(--color-dark);
}

img {
    display: block;
    width: 100%;
    object-fit: cover;
}

h1 {
    font-weight: 400;
    font-size: 1.8rem;
}

h2 {
    font-weight: 300;
    font-size: 1.4rem;
}

h3 {
    font-weight: 300;
    font-size: 0.87rem;
}

small {
    font-size: 0.76rem;
}

p {
    color: var(--color-dark-variant);
}

b {
    color: var(--color-dark);
}

.text-muted {
    color: var(--color-info-dark);
}

.primary {
    color: var(--color-primary);
}

.danger {
    color: var(--color-danger);
}

.success {
    color: var(--color-success);
}

.warning {
    color: var(--color-warning);
}

.center {
    text-align: center;
}

.online::before {
    content: '';
    background: #02bb18;
    height: 10px;
    width: 10px;
    position: absolute;
    border-radius: 50px;
}

.btn {
    background: var(--color-primary);
    padding: 8px;
    border-radius: var(--border-radius-1);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-white);
}

.d-none {
    display: none;
}

.hidden {
    display: none;
}

video {
    width: 100%;
}

.active_left_sidebar_menu {
    transition: all 0.5s ease;
    background: var(--color-primary);
    box-shadow: var(--box-shadow);
    color: var(--color-white);
    fill: var(--color-white);
}

@media (min-width: 767px) {
    .sticky {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        overflow: hidden;
    }
}

.input {
    padding: 10px;
    margin: 8px 2px;
}

input[type="checkbox"],
button {
    cursor: pointer;
}

.mt_1 {
    margin-top: 10px;
}

.flex_column {
    display: flex;
    flex-direction: column;
}

.form_group {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 10px 0px;
}

.dropdown {
    position: relative;
}

.dropdown_menu {
    position: absolute;
    z-index: 99;
    right: 10px;
    top: 5px;
}

.container {
    width: 96%;
}

.col_3 {
    display: grid;
    margin: 0 auto;
    gap: 1.8rem;
    grid-template-columns: 16vw auto 23vw;
}

.col_2 {
    display: grid;
    margin: 0 auto;
    gap: 1.8rem;
    grid-template-columns: 16vw auto;
}

.card {
    background-color: var(--color-white);
    box-shadow: var(--box-shadow);
    padding: 15px;
    margin: 10px;
    border-radius: var(--border-radius-1);
    -webkit-border-radius: var(--border-radius-1);
    -moz-border-radius: var(--border-radius-1);
    -ms-border-radius: var(--border-radius-1);
    -o-border-radius: var(--border-radius-1);
}

.border {
    border: 1px solid var(--color-info-dark);
}

@media only screen and (min-width: 1200px) {
    .container {
        width: 80%;
    }
}

.name {
    color: var(--color-primary);
    font-weight: 500;
    text-transform: capitalize;
}

.profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile_picture img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
}


/* ===============Global Style End ==============*/


/*  ============Login Page Css Start============= */

.login_page {
    height: 100vh;
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
}

.login_form {
    position: relative;
    filter: var(--box-shadow);
    border-radius: 5px;
    width: 580px;
    height: 420px;
    background-color: var(--color-white);
    padding: 40px;
    -webkit-filter: var(--box-shadow);
}

.login_form img {
    position: absolute;
    top: 217px;
    right: 59px;
    cursor: pointer;
    height: 20px;
    width: 20px;
}

.login_form input[type="email"],
.login_form input[type="password"],
.login_form input[type="text"] {
    outline: 0;
    background: var(--color-white);
    border-radius: 4px;
    width: 100%;
    border: 0;
    margin: 15px 0;
    padding: 15px;
    font-size: 14px;
}

.login_form input[type="email"]:focus,
.login_form input[type="password"]:focus,
.login_form input[type="text"] {
    box-shadow: 0 0 5px 0 var(--color-primary);
}

.login_form span {
    color: red;
    margin: 10px 0;
    font-size: 14px;
}

.login_form .action {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.login_form button {
    outline: 0;
    background: var(--color-primary);
    width: 100%;
    border: 0;
    margin-top: 10px;
    border-radius: 3px;
    padding: 15px;
    color: var(--color-white);
    font-size: 15px;
    -webkit-transition: all 0.3 ease;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

.login_form button:hover,
.login_form button:active,
.login_form button:focus {
    background: black;
    color: var(--color-white);
}

.login_form .message {
    margin: 15px 0;
    text-align: center;
}

.login_form .message a {
    font-size: 14px;
    color: var(--color-primary);
    text-decoration: none;
}


/*  ============Login Page Css End============= */


/*  ============Home Page Css Start============= */


/* ======== Loader Css =========== */

.loader-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: var(--color-white);
    position: fixed;
    z-index: 999;
    width: 100%;
}

.loader {
    border: 8px solid var(--color-white);
    /* Light gray border */
    border-top: 8px solid var(--color-primary);
    /* Blue border */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    /* Rotate animation */
}

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


/*  header top */

.header {
    position: relative;
}

#homePageHeader {
    position: relative;
    z-index: 990;
}

.header_top {
    background: var(--color-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 2%;
    height: 42px;
}

.header_top_title p {
    font-size: 1.2rem;
    color: var(--color-white);
    font-weight: 500;
}

.header_top_title p sup {
    font-size: .75rem;
}

.header_top_action {
    font-size: 1.2rem;
}

.header_top_action a {
    color: var(--color-white);
    padding: 5px;
    font-size: 12px;
    border-radius: var(--border-radius-1);
    -webkit-border-radius: var(--border-radius-1);
    -moz-border-radius: var(--border-radius-1);
    -ms-border-radius: var(--border-radius-1);
    -o-border-radius: var(--border-radius-1);
}


/*  header middle */

.header_middle {
    height: 50px!important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-primary);
    padding: 0px 2%;
}

.logo img {
    margin-top: 10%;
    width: 185px;
    height: 100%;
    max-width: 100%;
}

.social_icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.social_icons .item {
    background-color: var(--color-white);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.social a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 37px;
    text-align: center;
    font-size: 16px;
}

.menu_container {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    align-items: center;
    position: absolute;
    top: 80px;
    right: 2%;
    z-index: -1;
}

.menu_container li {
    background: var(--color-primary);
    margin-top: 3%;
    padding: 10px 15px;
    border-radius: 0 0 15px 15px;
    /* -webkit-border-radius: 0 0 15px 15px; */
    -moz-border-radius: 0 0 15px 15px;
    -ms-border-radius: 0 0 15px 15px;
    -o-border-radius: 0 0 15px 15px;
}

.menu_container li a {
    font-size: 1rem;
    color: var(--color-white);
}

.nav_toggle {
    cursor: pointer;
    display: none;
}


/*  ============Home Page Css Start============= */

.main_container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

.main_container_wrapper {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    height: 100%;
}

.main_container_inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    display: flex;
    justify-content: start;
}

.main_container_inner .section {
    flex: none;
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: rgb(255, 224, 224);
    display: flex;
    justify-content: center;
    align-items: center;
}


/*  ============== Heru section ===========*/

.heru_section .description {
    background-color: rgba(0, 0, 0, 0.50);
    color: var(--color-primary);
    text-shadow: 4px 4px 26px rgb(0 0 0 / 74%);
    padding: 3%;
    margin-left: 20%;
    margin-top: 30vh;
}

.heru_section .description h1 {
    font-size: 60px;
    font-weight: 400;
}

.heru_section .description h2 {
    color: #ff918f;
    text-shadow: 4px 4px 26px rgb(0 0 0 / 74%);
    font-size: 2.5rem;
}


/*=============== Section One ===============*/

.section_one {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
}

.section_one_wrapper {
    background-color: rgba(0, 0, 0, 0.50);
    /* text-align: center; */
    padding: 7%;
    border: solid 1px var(--color-white);
}

.section_one_wrapper h1 {
    font-size: 2.5rem;
}

.section_one_wrapper .free {
    font-family: 'Cookie', Helvetica, sans-serif;
    color: var(--color-primary);
    text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1);
    font-size: 3rem;
    text-decoration: underline;
}

.section_one_wrapper p {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.section_one_wrapper .title {
    color: #97970d;
    font-size: 1.7rem;
    font-weight: 550;
}

.section_one_wrapper span {
    color: var(--color-primary);
    font-size: 1.7rem;
}

.section_one_wrapper a {
    color: var(--color-warmth);
    text-decoration: underline;
}

.section_one_wrapper .action {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.section_one_wrapper .action button {
    width: 50%;
    padding: 10px;
    font-size: 1.5rem;
    border-radius: 10px;
    background-color: var(--color-warmth);
    cursor: pointer;
    border: 1px solid var(--color-white);
}


/*================= Section Two ====================*/

.section_two {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    width: 95%;
    margin: 0 auto;
    margin-top: 10%;
}

.section_two .left {
    border: 2px solid;
    background-color: rgba(0, 0, 0, 0.75);
}

.section_two .left .title {
    margin-top: 10%;
    padding: 4% 0;
    background: #fff8f624;
    color: #990000;
    text-align: center;
    text-shadow: 4px 4px 26px rgb(0 0 0 / 74%);
}

.section_two .left h1 {
    font-size: 4.5rem;
}

.section_two .left h3 {
    font-size: 3rem;
}

.section_two .left ul {
    margin-top: 3%;
    padding-left: 4%;
    font-size: 2rem;
    color: var(--color-warmth);
}

.section_two .left .learn_more {
    text-align: right;
    margin-right: 5%;
    margin-bottom: 2%;
}

.section_two .left button {
    text-align: right;
    background: var(--color-primary);
    padding: 2% 10%;
    font-size: 1rem;
    border: 2px solid #000;
    border-radius: 10px;
    color: var(--color-warmth);
    cursor: pointer;
    margin-top: 10%;
}

.section_two .right {
    background: #990000;
    /* border: coral; */
    border-radius: 15px;
    margin: 0px 10%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-shadow: 4px 4px 26px rgb(0 0 0 / 74%);
    border: 2px solid var(--color-white);
}

.section_two .right h1 {
    text-align: center;
    font-size: 3.8rem;
}

.section_two .right p {
    color: var(--color-warmth);
    margin: 7px 0px;
    font-size: 2rem;
}

.section_two .right .right_container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 15px;
}

.section_two .right select {
    padding: 10px;
    border: 1;
    border-radius: 16px;
    font-size: 1.25rem;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #E0AC57 url(../img/home/arrow.png) no-repeat 95% center;
    background-size: 30px 30px;
    cursor: pointer;
    line-height: 32px;
    text-indent: 4px;
}

.section_two .right button {
    width: 100%;
    background: transparent;
    font-size: 1.2rem;
    color: var(--color-warmth);
    border: 2px solid var(--color-white);
    padding: 13px;
    cursor: pointer;
}

.section_two .right .agree_btn {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
}

.section_two .right input[type="checkbox"] {
    width: 21px;
    height: 20px;
    cursor: pointer;
}


/* ============= Section Three ==============*/

.section_three {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    gap: 1.8rem;
}

.section_three .left {
    color: var(--color-primary);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section_three .left h1 {
    font-size: 4rem;
}

.section_three .left h2 {
    font-size: 3rem;
}

.section_three .left .models img {
    width: 55%;
    margin: 0 auto;
}

.section_three .right .chat_box {
    padding: 18px;
    background-color: var(--color-white);
    box-shadow: var(--box-shadow);
    height: 95vh;
    margin: 0px 10px;
    position: relative;
}

.chat_box_main {
    display: flex;
}

.chat_box_main .chat_body {
    display: flex;
    flex-direction: column;
    gap: 13px;
    align-items: center;
    justify-content: right;
    max-height: calc(100vh - 100px);
    overflow: auto;
}

.talk_bubble {
    display: inline-block;
    position: relative;
    height: auto;
    background-color: var(--color-primary);
    margin-bottom: 20px;
    z-index: 1;
    padding: 10px;
    border-radius: 10px;
    color: var(--color-white);
    font-size: 1rem;
}

.talk_bubble p {
    color: var(--color-white);
    font-size: 1.2rem;
}

.talk_bubble:after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: 0px;
    right: auto;
    top: auto;
    bottom: -20px;
    border: 22px solid;
    z-index: -1;
    border-color: transparent transparent transparent var(--color-primary);
}

.user_reply {
    padding: 6px 20px;
    border: 2px solid #d8d6d6;
    background: #f7b9b9;
    border-radius: 10px;
    align-self: end;
    font-size: 1rem;
}

.section_three .right {
    flex-shrink: 2;
}

.chat_box_header .sophia_pic img {
    height: 100px;
    width: 100px;
}

.chat_box_header {
    display: flex;
    gap: 2rem;
}

.chat_box_footer {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 0 10%;
}

.chat_box_footer input[type="text"] {
    padding: 10px;
    width: 100%;
    border: 1px solid var(--color-primary);
    font-size: 1rem;
}

.chat_box_footer button {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
}


/*==================== Section Four body modeler css start============= */

.section_four {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 10px;
    width: 100%;
    background: var(--color-white);
}

.section_four .modeler_container {
    width: 100%;
    height: 100vh;
}

.section_four .modeler_container .body_modeler {
    text-align: center;
}

.section_four .modeler_container .body_modeler h1 {
    color: var(--color-primary);
    font-size: 2.5rem;
}

.section_four .modeler_container .body_modeler h5 {
    color: #ce5f00;
    font-size: 1.5rem;
    font-weight: 200;
    text-align: center;
}


/* =============== Modeler Controler ===============*/

.section_four .modeler_controller {
    height: 100vh;
    border: solid 2px var(--color-primary);
}

.section_four .modeler_controller p {
    font-size: 14px;
    text-align: center;
    padding: 5px;
    margin-top: 10px;
    color: var(--color-primary);
}
.modeler_controller {
    height: 100vh;
    overflow: scroll;
}
.feature_group_wrap {
    display: flex;
    padding: 2px 16px;
    align-items: center;
    justify-content: center;
    margin: -2%;
}
.feature_group_wrap label {
    flex-basis: 177px;
}

.tick-slider {
    position: relative;
    width: 100%;
}

.tick-slider-value {
    position: absolute;
    top: 0;
    font-weight: bold;
    color: var(--blue);
    border-radius: var(--slider-handle-border-radius);
    display: none;
}

.tick-slider-value>div {
    animation: bulge 0.3s ease-out;
}

.tick-slider-background,
.tick-slider-progress,
.tick-slider-tick-container {
    position: absolute;
    bottom: 5px;
    left: 0;
    height: var(--slider-track-height);
    pointer-events: none;
    border-radius: var(--slider-track-border-radius);
    background-color: #dee2e6;
    z-index: 0;
}

.tick-slider-background {
    width: 100%;
    background-color: var(--light-gray);
    background-color: #dee2e6;
}

.tick-slider-progress {
    background-color: var(--yellow);
    z-index: 1;
}

.tick-slider-tick-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 0 calc(var(--slider-handle-size) / 2);*/
    background-color: #dee2e6;
}

.tick-slider-tick {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #900;
}

input[type="range"] {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    width: calc(100% + 10px);
    background: transparent;
    outline: none;
    margin: 10px 0;
}

@-moz-document url-prefix() {
    input[type="range"] {
        position: relative;
        --webkit-appearance: none;
        width: 100%;
        background: transparent;
        outline: none;
        margin: -5px -5px;
        z-index: 100;
    }
}

input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border: none;
}

input[type="range"]:focus {
    outline: none;
}

input[type="range"]::-moz-focus-outer {
    border: 0;
}


/*

    HANDLE

*/

input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    width: var(--slider-handle-size);
    height: var(--slider-handle-size);
    background: #900;
    border-radius: var(--slider-handle-border-radius);
    cursor: pointer;
    -webkit-transform: scale(1);
    text-align: center;
    transform: scale(1);
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

input[type="range"]:hover::-webkit-slider-thumb,
input[type="range"]:focus::-webkit-slider-thumb {
    transform: scale(1.2);
}

input[type="range"]::-moz-range-thumb {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    width: var(--slider-handle-size);
    height: var(--slider-handle-size);
    background: var(--orange);
    border: none;
    border-radius: var(--slider-handle-border-radius);
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

input[type="range"]:hover::-moz-range-thumb,
input[type="range"]:focus::-moz-range-thumb {
    transform: scale(1.2);
}


/*

    TRACK

*/

input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: var(--slider-track-height);
    cursor: pointer;
    background: none;
    border-radius: var(--slider-track-border-radius);
}

input[type="range"]::-moz-range-track {
    width: 100%;
    height: var(--slider-track-height);
    cursor: pointer;
    background: none;
    border-radius: var(--slider-track-border-radius);
}

input[type="range"]:focus::-webkit-slider-runnable-track {
    background: none;
}

input[type="range"]:active::-webkit-slider-runnable-track {
    background: none;
}

.body_modeler_canvases {
    position: relative;
    top: -92px;
    scale: 0.9;
}

.canvas_head,
.canvas_neck,
.canvas_breast,
.canvas_shoulders,
.canvas_stomach,
.canvas_legs {
    position: absolute;
    right: 50%;
    transform: translate(50%, -50%);
    -webkit-transform: translate(50%, -50%);
    -moz-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    -o-transform: translate(50%, -50%);
}

.canvas_head {
    top: 222px;
    width: 500px;
    height: 100px;
    z-index: 1000;
}

.canvas_head_rear {
    top: 224px;
    width: 500px;
    height: 100px;
    z-index: 1000;
}

.canvas_neck {
    top: 271px;
    width: 500px;
    height: 100px;
    z-index: 900;
}

.canvas_neck_rear {
    top: 271px;
    width: 500px;
    height: 100px;
    z-index: 900;
}

.canvas_shoulders {
    top: 364px;
    width: 500px;
    height: 236px;
    z-index: 500;
}

.canvas_shoulders_rear {
    top: 364px;
    width: 500px;
    height: 236px;
    z-index: 500;
}

.canvas_breast {
    top: 347px;
    width: 500px;
    height: 195px;
    z-index: 800;
}

.canvas_stomach {
    top: 398px;
    width: 500px;
    height: 266px;
    z-index: 200;
}

.canvas_back {
    top: 401px;
    width: 500px;
    height: 266px;
    z-index: 200;
}

.canvas_legs {
    top: 554px;
    width: 500px;
    height: 460px;
    z-index: 1px;
}

.canvas_bottom {
    top: 561px;
    width: 500px;
    height: 460px;
    z-index: 1px;
}

.body_modeler_action_btn {
    display: flex;
    justify-content: space-between;
    margin: 10px;
}


/*==================== Section Four body modeler css End============= */


/*==================== Section Five============= */

.section_five {
    width: 90%;
    margin: 0 auto;
}

.section_five .header_content {
    text-align: center;
    margin-bottom: 20px;
}

.section_five .user_register_form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
}

.user_register_form .right {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: space-around;
}

.user_register_form .form_group {
    display: flex;
    gap: 10px;
    flex-direction: column;
    margin-bottom: 10px;
}

.user_register_form input[type="text"] {
    width: 100%;
    padding: 10px;
}

.section_five .user_register_btn {
    background: var(--color-primary);
    padding: 10px;
    width: 105px;
    margin-top: 10px;
    color: var(--color-white);
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: var(--border-radius-1);
    -webkit-border-radius: var(--border-radius-1);
    -moz-border-radius: var(--border-radius-1);
    -ms-border-radius: var(--border-radius-1);
    -o-border-radius: var(--border-radius-1);
}


/*==================== Section six============= */

.section_six {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    width: 95%;
}

.section_six .left {
    border: 3px solid #fff;
    background: #0000015f;
}

.section_six .left .learn_more {
    text-align: right;
    margin-right: 5%;
    margin-bottom: 2%;
}

.section_six .left .learn_more a {
    background: var(--color-primary);
    padding: 10px 25px;
    font-size: 18px;
    cursor: pointer;
    color: var(--color-warmth);
    border-radius: var(--border-radius-1);
    -webkit-border-radius: var(--border-radius-1);
    -moz-border-radius: var(--border-radius-1);
    -ms-border-radius: var(--border-radius-1);
    -o-border-radius: var(--border-radius-1);
}

.section_six .left .content {
    font-size: 2rem;
    text-align: center;
    color: #fff;
    padding: 20px;
    line-height: 3rem;
}

.section_six .left .content h1 {
    font-size: 2.5rem;
    color: var(--color-warmth);
}

.section_six .left .content p {
    color: var(--color-white);
    font-size: 1.5rem;
    line-height: 2.25rem;
    margin-top: 3%;
}

.section_six .left .content a {
    color: var(--color-warmth);
}

.section_six .right {
    background: var(--color-white);
    /* border: coral; */
    border-radius: 15px;
    margin: 0px 10%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-shadow: 4px 4px 26px rgb(0 0 0 / 74%);
    border: 2px solid var(--color-white);
}

.section_six .right h1 {
    text-align: center;
    color: var(--color-primary);
    margin: 12px 0px;
}

.section_six .right .registation_form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section_six .right .registation_form input[type="text"] {
    padding: 12px;
    border: solid 1px #990000;
}

.section_six .right .registation_form button {
    width: 100%;
    background: var(--color-primary);
    font-size: 1.25rem;
    color: var(--color-warmth);
    border-radius: var(--border-radius-1);
    border: 2px solid var(--color-white);
    padding: 10px;
    cursor: pointer;
    -webkit-border-radius: var(--border-radius-1);
    -moz-border-radius: var(--border-radius-1);
    -ms-border-radius: var(--border-radius-1);
    -o-border-radius: var(--border-radius-1);
}


/*  ============Section Seven Css Start============= */

.section_seven .retailer_registration_form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
}

.section_seven .retailer_registration_form .webstore_info {
    background-color: rgba(0, 0, 0, 0.5);
    border: solid 2px #fff;
    padding: 0px 5%;
}

.section_seven .retailer_registration_form .webstore_info .webstore_info_blurb h1 {
    color: var(--color-primary);
    margin-bottom: 2%;
}

.section_seven .retailer_registration_form .webstore_info .webstore_info_blurb h3 {
    color: #ff918f;
}

.section_seven .retailer_registration_form .webstore_info .webstore_info_blurb li {
    color: var(--color-primary);
    font-size: 1rem;
    line-height: 23px;
}

.section_seven a {
    color: #edeffd;
}

.section_seven .retailer_registration_form .shop_info {
    padding: 5%;
}

.section_seven .retailer_registration_form .shop_info div h1 {
    color: var(--color-primary);
    font-weight: 600;
}

.retailer_registration_form .form-group {
    margin: 10px;
    padding: 5px;
}

.retailer_registration_form input {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
}

.section_seven .retailer_register_btn {
    background: var(--color-primary);
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
    color: var(--color-white);
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: var(--border-radius-1);
    -webkit-border-radius: var(--border-radius-1);
    -moz-border-radius: var(--border-radius-1);
    -ms-border-radius: var(--border-radius-1);
    -o-border-radius: var(--border-radius-1);
}

.section_seven .webstore_agree_btn {
    font-size: 16px;
    padding-left: 1.5%;
    color: #ffe0e0;
}


/*  ============Section Seven Css Start============= */


/*  ============Home Page Css End============= */


/*  ============Profile Page Css Strat============= */
/* ====================Not Found section ===================== */
.notification-placeholder,
.message-placeholder,
.friend-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin: 2rem;
  animation: fadeIn 1s ease-in-out;
  height: 50vh;
}

.notification-placeholder .icon,
.message-placeholder .icon,
.friend-placeholder .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.notification-placeholder .message,
.message-placeholder .message,
.friend-placeholder .message {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.notification-placeholder .subtext,
.message-placeholder .subtext,
.friend-placeholder .subtext {
  font-size: 1rem;
  color: #666;
  margin: 0.5rem 0 0;
}

/* Notification Page Specific Styles */
.notification_page .notification-placeholder {
  background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
}

.notification_page .notification-placeholder .icon {
  animation: bounce 2s infinite;
}

/* Message Page Specific Styles */
.message_page .message-placeholder {
  background: linear-gradient(135deg, #e0eafc, #cfdef3);
}

.message_page .message-placeholder .icon {
  animation: float 3s infinite ease-in-out;
}

/* Friend Page Specific Styles */
.friend_page .friend-placeholder {
  background: linear-gradient(135deg, #f6d365, #fda085); /* Warm gradient */
}

.friend_page .friend-placeholder .icon {
  animation: pulse 2s infinite ease-in-out; /* New animation */
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-10px);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.sender-placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f6d365, #fda085); /* Warm gradient */
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin: 2rem;
    animation: fadeIn 1s ease-in-out;
    height: 50vh;
  }

  .sender-placeholder .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite ease-in-out;
  }

  .sender-placeholder .message {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin: 0;
  }

  .sender-placeholder .subtext {
    font-size: 1rem;
    color: #666;
    margin: 0.5rem 0 0;
  }

  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
  }

/*===============Left Section start =====================*/

.left_side {
    height: auto;
    max-height: 100vh;
    overflow-y: scroll;
}

.left_side_warpper {
    display: flex;
    flex-direction: column;
    background-color: var(--color-white);
    box-shadow: var(--box-shadow);
    position: relative;
    top: 1.5rem;
    font-size: 1.1rem;
    align-items: center;
    padding: 20px 0px;
    transition: all 0.3s ease;
    border-radius: var(--border-radius-1);
    -webkit-border-radius: var(--border-radius-1);
    -moz-border-radius: var(--border-radius-1);
    -ms-border-radius: var(--border-radius-1);
    -o-border-radius: var(--border-radius-1);
}

.left_side_warpper .left_side_bar {
    margin-left: 28px;
    margin-top: 9px;
}

.left_side_bar .item .icon {
    height: 30px;
    width: 30px;
}

.left_side_bar a.item {
    display: flex;
    gap: 6px;
    margin: 10px 5px;
    padding: 5px;
    border-radius: 5px;
}

.left_side_bar a.item:hover {
    transition: all 0.5s ease;
    background: var(--color-primary);
    box-shadow: var(--box-shadow);
    color: var(--color-white);
    fill: var(--color-white);
}


/* ===============Left Section End ==============*/



/* ===============Middle Section Start ==============*/


/*Middle menu */

.aiz-main-wrapper .middle_menu .nav {
    margin: 6% 0 2%;
    width: 100vw;
    text-align: center;
}

.aiz-main-wrapper .middle_menu .nav a {
    border: solid 1px #EEEEEE;
    border-radius: 11px;
    padding: 10px 2%;
    margin-right: 1%;
    background-color: #990000;
    color: #ffffff;
}

 .middle_side .middle_menu {
    margin-top: 10%;
}

 .middle_side .middle_menu a {
    border: solid 1px #EEEEEE;
    border-radius: 11px;
    padding: 10px 2%;

    background-color: #C8E6C9;
    color: #5915008f;
    font-weight: 600;
}
.middle_menu {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    font-weight: 500;
    /* position: relative; */
    /* top: 1.5rem; */
    gap: 14px;
}

.middle_menu .active {
    background: #ffff;
    padding: 10px;
    border-bottom: 2px solid #990000;
}


/*Create Post */
/*
.post_box {
    border: solid 2px #9E9E9E;
    height: 100vh;
    background: var(--color-white);
    border-radius: var(--border-radius-2);
    transition: height 0.2s ease;
    box-shadow: var(--box-shadow);
    margin-top: 2rem;
    padding: 10px;
}

.post_box_title {
    font-size: 22px;
    font-weight: 600;
    padding: 17px 0;
    text-align: center;
    border-bottom: 1px solid var(--color-info-dark);
}

.post_box_form {
    width: 90%;
    margin: auto;
}

.post_box_form form :where(textarea, button) {
    width: 100%;
    outline: none;
    border: none;
}

.post_box_form form textarea {
    resize: none;
    font-size: 18px;
    margin-top: 30px;
    min-height: 100px;
}

.post_box_form form textarea::placeholder {
    color: var(--color-info-dark);
}

.post_box_form form textarea:focus::placeholder {
    color: var(--color-info-dark);
}

.post_box_form .post_action_box {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.post_box_form .post_type {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 57px;
    margin: 15px 0;
    padding: 0 15px;
    border-radius: 7px;
    font-size: 1.05rem;
    border: 1px solid var(--color-info-dark);
    box-shadow: var(--box-shadow);
    cursor: pointer;
}

.post_box_form .create_post_btn {
    padding: 14px;
    font-size: 1.5rem;
} */
/* Post Box Container */
/* Post Box Container */
.post_box {
    background: var(--color-white);
    border-radius: var(--border-radius-2);
    box-shadow: var(--box-shadow);
    margin-top: 2rem;
    padding: 20px;
    transition: all 0.3s ease;
}

.post_box:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Profile Section */
.post_box .profile {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.post_box .profile_picture {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.post_box .profile_picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post_box .name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-dark);
}

/* Textarea */
.post_box_form textarea {
    width: 100%;
    resize: none;
    font-size: 1rem;
    padding: 15px;
    border: 1px solid var(--color-info-light);
    border-radius: var(--border-radius-1);
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

.post_box_form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(42, 206, 130, 0.2);
}

.post_box_form textarea::placeholder {
    color: var(--color-info-dark);
    font-size: 1rem;
}

/* Post Action Box */
.post_action_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* File Input Section */
.post_type {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.file_input_label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-dark);
    font-size: 1rem;
    cursor: pointer;
}

.file_input_label svg {
    width: 24px;
    height: 24px;
}

.file_input {
    display: none; /* Hide the default file input */
}

/* Create Post Button */
.create_post_btn {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 10px 20px;
    border: none;
    border-radius: var(--border-radius-1);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.create_post_btn:hover {
    background: #1fa568; /* Darker shade of primary color */
}
/* Preview Container */
.preview_container {
    margin-bottom: 20px;
}

.preview_container img,
.preview_container video {
    max-width: 100%;
    border-radius: var(--border-radius-1);
    margin-top: 10px;
}

.preview_container img {
    max-height: 300px;
    object-fit: cover;
}

.preview_container video {
    max-height: 300px;
    background: #000;
}

/* =====================Feed section ==============*/
/* Individual Feed Post */
.feed {
    background: #fff;
    border: 1px solid #dddfe2;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Feed Header */
.feed_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile_picture img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.description .name a {
    font-weight: 600;
    color: #365899;
    text-decoration: none;
}

.description .name a:hover {
    text-decoration: underline;
}

.published {
    color: #90949c;
    font-size: 12px;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.action {
    cursor: pointer;
    padding: 5px;
}
/*
.action:hover {
    background-color: #f2f2f2;
    border-radius: 50%;
} */

.dropdown_menu {
    position: absolute;
    right: 0;
    top: 30px;
    background: #fff;
    border: 1px solid #dddfe2;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 100;
}

.dropdown_menu a {
    display: block;
    padding: 8px 16px;
    color: #1d2129;
    text-decoration: none;
}

.dropdown_menu a:hover {
    background-color: #f2f2f2;
}

/* Feed Description */
.feed_description {
    margin-top: 10px;
}

.feed_media img,
.feed_media video {
    max-width: 100%;
    border-radius: 8px;
    margin-top: 10px;
}

.feed_text {
    color: #1d2129;
    font-size: 14px;
    margin-top: 10px;
}

/* Feed Footer */
.feed_footer {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid #dddfe2;
    margin-top: 10px;
}

.engagement_link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #606770;
    text-decoration: none;
    font-size: 14px;
}

.engagement_link:hover {
    text-decoration: underline;
}

.engagement_link svg {
    fill: #606770;
}

.engagement_link span {
    font-weight: 500;
}

/* Comment Section */
.new_comment {
    margin-top: 10px;
}

.comment_box {
    display: flex;
    align-items: center;
    background: #f0f2f5;
    border-radius: 20px;
    padding: 8px 12px;
}

.comment_box input[type="text"] {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
}

.comment_box input[type="text"]::placeholder {
    color: #606770;
}

.comment_btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #606770;
}

/* Comment */
.comment {
    margin-top: 10px;
}

.comment_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment_body p {
    margin: 5px 0;
    color: #1d2129;
    font-size: 14px;
}

.comment_time {
    color: #90949c;
    font-size: 12px;
}

/* Replies */
.replies {
    margin-left: 20px;
    margin-top: 5px;
}

/* Reply Form */
.reply_form {
    margin-top: 5px;
}

.reply_form .comment_box {
    background: #f0f2f5;
    border-radius: 20px;
    padding: 8px 12px;
}

.reply_form input[type="text"] {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
}

.reply_form input[type="text"]::placeholder {
    color: #606770;
}

.reply_form .comment_btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #606770;
}

/* Active States for Likes, Love, Flag */
.engagement_link svg {
    transition: fill 0.2s ease;
}

.engagement_link:hover svg {
    fill: #1877f2;
}

/* Specific colors for like, love, flag */
.engagement_link.like svg {
    fill: #1877f2;
}

.engagement_link.love svg {
    fill: #ff0000;
}

.engagement_link.flag svg {
    fill: #90949c;
}
/* ===============Middle Section End ==============*/


/* ===============Rigth Section Start ==============*/

.right_side {
    margin-top: 20px;
    height: auto;
    max-height: 100vh;
}

.friend {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.top_friend_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
}



/*=============== Friend Page style============== */

.friend_photo img {
    height: 167px;
    width: 143px;
}

.friends_section {
    margin-top: 33px;
}

.friends {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.friend_wrapper {
    background-color: var(--color-white);
    box-shadow: var(--box-shadow);
    padding: 2px;
    border-radius: var(--border-radius-1);
    -webkit-border-radius: var(--border-radius-1);
    -moz-border-radius: var(--border-radius-1);
    -ms-border-radius: var(--border-radius-1);
    -o-border-radius: var(--border-radius-1);
}

.friend_name {
    font-size: 1rem;
    font-weight: 500;
    margin: 5px;
    text-align: center;
}


/*  ============  Settings Page sTyle========== */

.settings_page .settings,
.body_moderler {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 15px 0px;
}

.select_notification_time {
    padding: 10px;
}


/*============= Messanger Page Style================== */
/* Main Container */
/* Main Container */
/* Main Container */
.messanger_container {
    display: grid;
    grid-template-columns: 16vw 23vw auto;
    gap: 1rem;
    padding: 1rem;
    height: 100vh;
    background-color: var(--color-background);
}

/* Responsive Layout */
@media (max-width: 768px) {
    .messanger_container {
        grid-template-columns: 1fr; /* Single column layout for small screens */
    }

    .middle_side, .right_side {
        height: auto; /* Allow sections to grow */
    }

    .sender_list {
        height: 300px; /* Fixed height for sender list on small screens */
    }

    .messanger_chatbox {
        height: calc(100vh - 400px); /* Adjust height for chatbox on small screens */
    }
}

/* Middle Side - Sender List */
.middle_side .sender_list {
    height: calc(100vh - 2rem); /* Adjust height based on container padding */
    overflow-y: auto;
    background-color: var(--color-white);
    box-shadow: var(--box-shadow);
    padding: 1rem;
    border-radius: var(--border-radius-1);
}

.sender_list .profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: var(--border-radius-1);
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.sender_list .profile:hover {
    background-color: var(--color-light);
}

.sender_list .profile_picture {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.sender_list .profile_picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sender_list .content .name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-dark);
}

/* No Users Found Placeholder */
.sender-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--color-info-dark);
}

.sender-placeholder .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.sender-placeholder .message {
    font-size: 1.2rem;
    font-weight: 500;
}

.sender-placeholder .subtext {
    font-size: 0.9rem;
    color: var(--color-info-dark);
}

/* Right Side - Chatbox */
.right_side_massanger {
    background-color: var(--color-white);
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius-1);
    display: flex;
    flex-direction: column;
    height: calc(100vh - 2rem); /* Fixed height for chatbox container */
}


.messanger_chatbox {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%; /* Take full height of parent */
    overflow: hidden; /* Prevent overflow */
}

/* Message Body */
.message_body {
    flex: 1;
    overflow-y: auto; /* Allow internal scrolling */
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    height: calc(100vh - 160px); /* Fixed height: 100vh - header (70px) - footer (80px) - padding (10px) */
}

.user_bubble,
.talk_bubble {
    max-width: 70%;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-1);
    position: relative;
    word-wrap: break-word;
}

.user_bubble {
    background-color: var(--color-light);
    align-self: flex-start;
}

.talk_bubble {
    background-color: var(--color-primary);
    color: var(--color-white);
    align-self: flex-end;
}

/* Message Footer */
.messanger_footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background-color: var(--color-white);
    border-top: 1px solid var(--color-light);
    height: 80px; /* Fixed height for footer */
}


.messanger_footer textarea {
    flex: 1;
    resize: none;
    outline: none;
    padding: 0.75rem;
    font-size: 1rem;
    border-radius: var(--border-radius-1);
    border: 1px solid var(--color-light);
    transition: border-color 0.3s ease;
}

.messanger_footer textarea:focus {
    border-color: var(--color-primary);
}

.messanger_footer button {
    padding: 0.75rem 1.5rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: var(--border-radius-1);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.messanger_footer button:hover {
    background-color: #1fa568; /* Darker shade of primary color */
}

/* No Conversations Found Placeholder */
.message-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--color-info-dark);
}

.message-placeholder .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.message-placeholder .message {
    font-size: 1.2rem;
    font-weight: 500;
}

.message-placeholder .subtext {
    font-size: 0.9rem;
    color: var(--color-info-dark);
}
/*===================== Media page css ===============*/

.media_section {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.media_wrapper {
    background-color: var(--color-white);
    box-shadow: var(--box-shadow);
    padding: 2px;
    border-radius: var(--border-radius-1);
    -webkit-border-radius: var(--border-radius-1);
    -moz-border-radius: var(--border-radius-1);
    -ms-border-radius: var(--border-radius-1);
    -o-border-radius: var(--border-radius-1);
}

.media_wrapper .media img {
    height: 167px;
    width: 143px;
}


/*============= Body Shape page css =============*/

.body_shape_section .body_modeler_canvases {
    height: 100vh;
}


/* ===============Business Page========== */

.cover_photo_container .profile img {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    outline: 5px solid #fff;
}

.cover_photo_container {
    position: relative;
}

.profile_container {
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding: 0px 17px;
    position: absolute;
    bottom: -25%;
    width: 100%;
}

.profile_container .profile {
    display: flex;
    flex-direction: column;
}

.profile_container .profile .name {
    font-weight: 500;
    font-size: 1.5rem;
}


/*======================== Footer Css================= */

.footer {
    background: #900;
    color: var(--color-white);
}

.footer_container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
