body{
    background-color: #f9fafb;
    height: 100vh;
}



nav.top_nav{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 10vh;
    background: white;
    padding: 10px 40px;
    border-bottom: 1px solid #E682BE;
}

.top_nav img.logo_long{
    width: 250px;
}


.top_nav ul{
    display: flex;
    align-items: center;
    height: inherit;
    position: relative;
    width: max-content;
}



.top_nav ul .drop-down-items{
    position: absolute;
    top: 100%;
    box-shadow: 0px 0px 10px 0px rgba(113, 113, 113, 0.2);
    width: 100%;
    right: 0%;
    height: max-content;
    background: white;
    border: 2px solid #E682BE;
    z-index: 99;
    padding: 10px;
}
.top_nav ul .drop-down-items .drop-down-item{
    margin: 5px 0px;
    font-size: 14px;
}
.top_nav ul li{
    cursor: pointer;
    display: flex;
    align-items: center;
    margin: 0px 7px;
    list-style-type: none;
}

.top_nav ul li span{
    font-size: 14px;
    color: #470E30;
    margin-right: 5px;
}

.top_nav ul li .log_user{
    display: flex;
    height: 40px;
    align-items: center;
    justify-content: center;
    width: 70px;
    background: #FBEBF5;
    border-radius: 12px;
}

.log_user img.avatar_img{
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.log_user img.caret-down{
    width: 20px;
    margin: 0px 7px;
}

.top_nav ul li img{
    width: 40px;
}


ul,li,p,h3,h1{
    margin: 0px;
    padding: 0px;
}

.overflow_hidden{
    overflow: hidden !important;
}


#close_form{
    position: absolute;
    top: 3%;
    right: 9%;
    width: 16px;
    cursor: pointer;
    z-index: 999;
}

.close_nav{
    display: none !important;
}

.mobile_nav{
    display: none;
}

.display__flex{
    display: flex !important;
}

.display__none{
    display: none !important;
}

.display__block{
    display: block !important;
}


.typing::after {
  content: '|';
  animation: blink 0.7s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.typing-text {
  font-family: monospace;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #000;
}


.notice{
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0%;
    top: 0%;
    background: rgba(0, 0, 0, 0.289);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.notice_det{
    z-index: 9999;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.notice_det h1{
    text-align: left;
    font-weight: 600;
    color: #6A1548;
    font-size: 28px;
    width: 100%;
    font-size: 28px;
}

.notice_det p{
    font-size: 16px;
    width: 100%;
    color: #2B081D;
    margin: 20px 0px;
    text-align: left;
}

.notice .btn_box{
    width: 100%;
}

.btn_box button{
    height: 50px;
    width: 100%;
    border-radius: 8px;
    border: none;
    margin: 5px 0px;
}

.btn_box button img{
    margin: 0px 7px;
}


.btn_box button a{
    color: unset;
    text-decoration: unset;
}
.notice .btn_box .sign_up_btn{
    background: #B5247B;
    color: white;
}

.notice .btn_box .sign_up_btn_google{
    border: 1px solid #B5247B;
    color: #B5247B;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
}



.notice .btn_box .login_btn{
    border: 2px solid #DB4BA2;
    color: #DB4BA2;
    background: none;
}

.notice .overlay{
    width: 60%;
    height: 57vh;
    background: white;
    border-radius: 20px;
    display: flex;
}



.notice .overlay .image_box{
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    height: 57vh;
    width: 50%;
    background-position: center;
    background-size: cover;
}
.display_block{
    display: block !important;
}

.dashboard_pots{
    position: relative;
    width: 100%;
    display: flex;
}


.dashboard_pots nav.side__nav{
    width:25%;
    min-height: 100vh;
    background: white;
    border-right: 1px solid #E682BE;
    padding: 0px;
}



.nav_list{
    height: inherit;
    min-height: 85vh;
    margin: 0px 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 20px 16px 16px 40px;
}

.side__nav ul{
    margin: 0px 0px;
    padding: 0px 0px;
}

.side__nav ul li img{
    margin: 10px;
}

.side__nav ul li{
    display: flex;
    align-items: center;
    list-style-type: none;
    height: 45px;
    font-size: 14px;
    color: #6A1548;
    cursor: pointer;
}

.dashboard_pots nav.side__nav ul li.active{
    background: #f6d2e8;
    border: 1px solid #B5247B;
    border-radius: 12px;
    color: #B5247B;
}

.dashboard_pots section.pots_form_container{
    width: 35%;
    min-height: 100vh;
    height: inherit;
    background: #fefafc;
    padding: 20px;
    position: relative;

}


.form_layout{
    background: white;
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #F6D2E8;
    margin-bottom: 20px;
}


.pots_form_container h1.form_head{
    font-weight: bold;
    margin: 0px 0px 0px 10px 0px;
    font-size: 20px;
    color: #6A1548;
    font-weight: 700;
    display: flex;
    align-items: center;
}

h1.form_head img{
    width: 40px;
    margin-right: 10px;
}

.pots_form_container p.form_sub_head{
    font-weight: 400;
    font-size: 14px;
    color: #6A1548;
}




.active_input{
    border: 2px solid #E682BE !important;
    background: white !important;
}


.pots_form_container form .form_box{
    background: #FCFCFD;
    border: 1px solid #F1F3F6;
    border-radius: 12px;
    height: max-content;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.form_box input{
    font-size: 14px;
    color: #8292AA;
}
.pots_form_container form .form_box.active{
    border: 1px solid #DB4BA2;
}

.select_toggle{
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.select_toggle p{
    font-size: 14px;
    color: #5B6B86;
}

.select_parent_option{
    width: 100%;
    box-shadow: 0px 0px 10px 0px rgba(113, 113, 113, 0.2);
    background: white;
    border-radius: 8px;
    padding: 5px 0px;
    z-index: 999;
    position: absolute;
    top: 100%;
    left: 0%;
    margin-top: 5px;
}

.select_options{
    display: flex;
    align-items: center;
    padding: 10px 15px;
    cursor: pointer;
}

.select_options:hover{
    background: #FBEBF5;
}

.select_options img{
    width: 16px;
    margin: 0px 10px;
}

form button.submit_pots_btn{
    background: #B5247B;
    color: white;
    width: 100%;
    font-size: 16px;
    height: 51px;
    border: none;
    border-radius: 8px;
    margin: 16px 0px;
    margin-bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.meal_upload_form{
    position: relative;
    display: flex;
    flex-direction: column;
    height: max-content;
}

.meal_upload_form h2{
    text-align: left;
    width: 100%;
    color: #6A1548;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
}

.upload_item{
    width: 100%;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    border: 1px solid #E7E7E7;
    padding: 5px;
}

.upload_item span{
    font-size: 12px;
    font-weight: 600;
    color: #0B0B0B;
    margin: 0px 5px;
}

.upload_item img{
    width: 30px;
}

.upload_item img.clear_input{
    width: 20px;
}



.meal_upload_form input{
    opacity: 0;
    top: 0;
    position: absolute;
    cursor: pointer;
    width: 100%;
    height: 25vh;
    margin-top: 25px;
}




.meal_upload_form button#uploadBtn{
    padding: 0px;
    width: 100%;
    margin: 20px 0px;
    background: #B5247B;
    border: none;
    border-radius: 8px;
    color: white;
    height: 55px;
}

.meal_upload_form button#uploadBtn:hover{
    color: white;
    background: #DB4BA2;
}


.meal_upload_form button:focus{
    outline: none;
    border: none;
}

.meal_upload_form p{
    text-align: center;
    font-size: 14px;
    margin: 7px 0px;
    font-weight: 400;
    color: #8292AA;
}


span.mood_selected{
    position: absolute;
    top: 5%;
    right: 2%;
    font-weight: 600;
    font-size: 5px;
    color: white;
    padding: 2px 13px;
    border-radius: 20px;
}

.form_box select, .form_box input{
    flex-grow: 1;
    background: none;
    outline: none;
    border: none;
}



.form__mood_select label{
    font-weight: bold;
    color: #470E30;
    font-size: 14px;
    font-weight: 500;
    margin: 12px 0px 2px 0px;
}



.select_box_options{
    display: flex;
    flex-wrap: wrap;
}


.select_box_option{
    font-size: 12px;
    cursor: pointer;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 8px;
    margin: 5px 5px 0px 0px;
    color: #2B081D;
    transition: .1 ease;
}

.select_box_option:hover{
    border: 1px solid #DB4BA2;
}

.pots_form_container form{
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}


.dashboard_pots section.pots_user_contents{
    display: flex;
    width: 75%;
    height: inherit;
    position: relative;
    padding: 20px;
    background: #fefafc;
}

.card_label_box{
    width: 70%;
}

.telegram_box{
    width: 30%;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    margin: 0px 0px 0px 20px;
    border: 1px solid #EFAFD6;
    height: max-content;
}

.telegram_box h3{
    font-size: 16px;
    font-weight: 700;
    color: #6A1548;
    margin: 20px 0px 7px 0px;
}


.telegram_box p{
    color: #6A1548;
    font-size: 14px;
    font-weight: 400;
}

.telegram_box button{
    height: 52px;
    width: 100%;
    color: white;
    display: flex;
    justify-content: center;
    font-size: 14px;
    align-items: center;
    background: #6A1548;
    border-radius: 8px;
    margin: 10px 0px;
    border: none;
}

.telegram_box button img{
    margin: 0px 5px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.img_telegram{
    width: 100%;
    background: #efafd6;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 230px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.img_telegram img{
    width: 95%;
}


.card_go_label{
    font-size: 12px;
    background: #29A9EB;
    border-radius: 30px;
    padding: 4px 12px 4px 12px;
    color: white;
    width: max-content;
}

.dashboard_pots section.profile_container{
    width: 40%;
    height: inherit;
    margin: 20px;
    border-radius: 12px;
    padding: 20px;
    background: #ffff;
    border: 1px solid #F6D2E8;
}

.profile_container h2{
    color: #6A1548;
    font-weight: 800;
    font-size: 20px;
}
.profile_container img.profile_display_pic{
    margin: 20px 0px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.profile_container .change_remove_btn{
    display: flex;
    position: relative;
    align-items: center;
}

.change_remove_btn input{
    position: absolute;
    z-index: 999;
    height: 30px;
    width: 100px;
    opacity: 0;
}

.change_remove_btn button.change_pic{
    width: 130px;
    height: 48px;
    color: white;
    font-size: 14px;
    border: none;
    background-color: #B5247B;
    border-radius: 8px;
}

.change_remove_btn button.change_pic:focus, .change_remove_btn button.remove_piv:focus{
    outline: none;
}

.change_remove_btn button.remove_piv{
    font-size: 14px;
    width: 130px;
    height: 48px;
    color: #B5247B;
    border: 1px solid #B5247B;
    background-color: white;
    border-radius: 8px;
    margin: 0px 7px;
}

.profile_form_box{
    background: #F1F3F6;
    border-radius: 8px;
    border: 1px solid #E0E4EA;
    margin: 15px 0px;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.profile_form_box label{
    font-weight: 600;
    font-size: 14px;
    color: #6A1548;
}

.profile_container button.edit_profile_btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    border-radius: 8px;
    color: white;
    border: none;
    background: #B5247B;
}

.profile_container .account span{
    font-weight: 500;
}

.profile_form_box input{
    color: #5B6B86;
    background: none;
    border: none;
    font-size: 14px;
    margin: 5px 0px;
}

.profile_form_box input:focus{
    outline: none;
    border: none;
}


.courier{
    width: 100%;
    cursor: pointer;
    transition: .2s ease-in-out;
    margin-top: 10px;
}

.courier:hover{
    scale: 1.01;
}

.dashbaord_nav{
    background: white;
    border-radius: 12px;
    border: 1px solid #F6D2E8;
    width: 100%;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.dashbaord_nav h4{
    color: #320A22;
    font-size: 20px;
}

.overview_parent{
    display: flex;
    align-items: center;
    margin-top: 16px;
}

.overview_box{
    flex-grow: 1;
    min-width: 160px;
    margin-right: 16px;
    display: flex;
    padding: 10px;
    position: relative;
    border-radius: 8px;
    min-height: 90px;
    max-height: max-content;
}

.overview_box .image_box_overview{
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overview_data{
    flex-grow: 1;
    margin: 0px 7px;
}

.overview_data p{
    font-size: 11px;
    color: #6A1548;
}

.overview_data h1{
    font-weight: 700;
    font-size: 16px;
    color: #6A1548;
}

.btnx{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    bottom: 10%;
    left: 0%;
    padding: 0px 16px;
}


.btnx .button_overview{
    border: 1px solid #6A1548;
    height: 23px;
    border-radius: 20px;
    font-size: 12px;
    padding: 2px 7px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button_overview img{
    width: 10px;
}

.upgrade_card{
    position: relative;
    min-width: 311px;
    width: 30%;
    background: #FBEBF5;
    border-radius: 12px;
    margin: 20px 20px 20px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow: hidden;
}
.upgrade_card h4{
    color: #6A1548;
    font-weight: 700;
    font-size: 16px;
    margin: 10px 0px;
    z-index: 99;
}

.upgrade_card p{
    color: #6A1548;
    font-size: 14px;
    font-weight: 400;
    z-index: 99;
}


.upgrade_card button.upgrade_btn{
    width: 100%;
    height: 50px;
    background: #6A1548;
    color: white;
    border-radius: 8px;
    font-size: 14px;
    border: none;
    margin: 10px 0px;
    z-index: 99;
}

.upgrade_card button.upgrade_benefit_btn{
    width: 100%;
    font-size: 14px;
    border: none;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0px;
    color: #6A1548;
    z-index: 99;
}

.upgrade_benefit_btn img{
    margin: 0px 10px;
    z-index: 99999;
}


.upgrade_card img.bg_love{
    position: absolute;
    bottom: 0%;
    right: 0%;
    width: 60%;
}
.ai_options{
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    
    
}


.ai_options .option{
    display: flex;
    border-radius:  12px;
    min-height: 186px;
    max-height: max-content;
    width: 49%;
    padding: 0px;
    position: relative;
    cursor: pointer;
    transition: .2s ease-in;
}

.option .flex__end{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.option .flex__end button{
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    border-radius: 30px;
    min-width: 132px;
    height: 36px;
}

.flex__end button img{
    margin: 0px 7px;
}



.ai_options .option:hover{
    scale: 1.02;
}

.ai_options .option h3{
    font-size: 15px;
    color: #6A1548;
}

.ai_options .option p{
    font-size: 12px;
}

.ai_options .option .image_options{
    position: relative;
    border-radius: 15px;
    width:140px;
    height: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    margin: 0px;
}

.box_options{
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.box_options h3{
    font-weight: bold;
}

.box_options p{
    margin: 16px 0px;
}

.comming_soon{
    width: max-content;
    background: #1BA70B;
    color: white;
    border-radius: 30px;
    font-size: 12px;
    padding: 3px 7px;
}


.load_content{
    height: 40vh;
    background: white;
    box-shadow: 0px 0px 10px 0px rgba(113, 113, 113, 0.2);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12px;
}

.comming_soon_layout{
    height: 50vh;
    background: white;
    box-shadow: 0px 0px 10px 0px rgba(113, 113, 113, 0.2);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12px;
}

.comming_soon_layout{
    width: 50%;
}



.load_content img, .comming_soon_layout img{
    width: 100px;
}

.load_content h1, .comming_soon_layout h1{
    font-weight: 400;
    color: #6A1548;
    text-align: center;
    font-weight: bold;
}

.comming_soon_layout h1{
    margin: 15px 0px;
}

.comming_soon_layout .buttons_redirect{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 12px 0px;
}

.buttons_redirect button{
    margin: 0px 10px;
    padding: 0px 10px;
}

.buttons_redirect .btn1{
    color: white;
    height: 61px;
    background: #B5247B;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    width: max-content;
}


.buttons_redirect .btn2{
    width: max-content;
    color: #B5247B;
    height: 61px;
    background: white;
    border-radius: 8px;
    border: 1px solid #B5247B;
    font-size: 16px;
}


.load_content p{
    text-align: center;
    counter-reset: #2B081D;
}


.pots_result_container{
    width: 100%;
    border-radius: 15px;
    background: white;
    box-shadow: 0px 0px 10px 0px rgba(113, 113, 113, 0.2);
    padding: 16px;
}




.pots_result_container .result_nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
}

.result_nav h2{
    color: #6A1548;
    font-weight: 700;
    font-size: 20px;
}

.result_nav button{
    width: 91px;
    height: 32px;
    color: #B5247B;
    border: 1px solid #B5247B;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    font-size: 12px;
    border-radius: 50px;
}

.result_nav button img{
    width: 16px;
    margin: 0px 5px;
}

.result_parent{
    width: 100%;
    display: flex;
}

.result_parent .result_info{
    width: 60%;
}

.result_info .result_info_image{
    height: 40vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    border-radius: 8px;
    margin: 10px 0px;
}

.meal__info_name, .meal__info_summary, .meal__info_reason{
    margin: 10px 0px;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    color: #6A1548;
    border-radius: 8px;
}

.result_info_data{
    background: #FEFAFC;
    border-radius: 8px;
    padding: 12px;
}

.result_toggle_btns{
    flex-grow: 1;
    padding-left: 10px;
}

.result_toggle_btns .result_toggle_btnn{
    width: 100%;
    height: 78px;
    display: flex;
    justify-content: flex-start;
    padding: 10px;
    align-items: center;
    border: 2px solid;
    border-radius: 8px;
    cursor: pointer;
    margin: 10px 0px;
}

.result_toggle_btnn img{
    margin: 0px 10px;
}



.result_nav h3{
    font-size: 18px;
    font-weight: 600;
    color: #2B081D;
}

.result_nav p.view_more{
    color:#B5247B ;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
}


.result_nav p.view_more:hover{
    text-decoration: underline;
}

.btn_share_download_box{
    display: flex;
    align-items: center;
}

.btn_share_download_box button{
    margin: 0px 10px;
    border-radius: 30px;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 7px 15px;
    font-size: 15px;
}


.btn_share_download_box button img{
    margin: 0px 7px;
}
.download{
    background: #DB4BA2;
    color: white;
    border: none;
}


.share{
    border: 2px solid #A8B3C4;
    color: #A8B3C4;
    background: none;

}

form.re_prompt_form{
    display: flex;
    flex-direction: column;
    margin: 12px 0px;
}

.re_prompt_form h3{
    color: #470E30;
    font-size: 14px;
    font-weight: 500;
}

.re_prompt_form .form_box_prompt{
    display: flex;
    border-radius: 12px;
    height: 38px;
    background: #FCFCFD;
    border: 1px solid #F1F3F6;
    padding: 10px;
    width: fit-content;
    align-items: center;
    margin: 12px 0px;
    position: relative;
}

.form_box_prompt button{
    position: absolute;
    right: 3%;
    opacity: 0;
    width: 22px;
    height: inherit;
}



.form_box_prompt img{
    margin-left: 10px;
}

.form_box_prompt input{
    border: none;
    outline: none;
    background: none;
    font-size: 14px;
    color: #5B6B86;
    font-weight: 400;
}

.image_meal_description{
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.image_generated, .generated_content{
    width: 49%;
}

.image_generated{
    max-height: 35vh;
}

.generated_content h1{
    font-size: 18px;
}

.location_txt{
    display: flex;
    align-items: center;
    margin: 7px 0px;
}


.location_txt span{
    margin: 0px 10px;
    font-size: 14px;
    color: #6A1548;
}

.get_recipe_btn{
    background: #EFAFD6;
    display: flex;
    height: 50px;
    align-items: center;
    border-radius: 40px;
    margin: 10px 0px;
    padding: 10px;
    cursor: pointer;
    justify-content: center;
}

.get_recipe_btn img{
    width: 25px;
}
.width-100{
    width: 100% !important;
}

.get_recipe_btn p{
    margin: 0px 7px;
    color: #6A1548;
    font-weight: 500;
}

.image_generated{
    height: inherit;
    border-radius: 15px;
    background-position: center;
    background-size: cover;
}


.resultt{
    border-radius: 15px;
    padding: 10px;
    background: #FBEBF5;
    height: max-content;
}

.resultt .try_img{
    width: 100px;
}

.resultt ul{
    margin: 0px 0px;
}

.resultt ul h1{
    font-weight: bold;
}


.resultt ul li{
    list-style-type: none;
    margin: 7px 0px;
}

.history_parent{
    flex-grow: 1;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.history_parent .history{
    width: 31% !important;
    border: 1px solid #6A1548;
    border-radius: 12px;
    margin: 0px 0px;
    padding: 16px;
    margin-bottom: 8px;
    margin-right: 8px;
}

.history .history_nav{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.history_nav .img_gen{
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.history p.date{
    color: #B5247B;
    font-size: 12px;
}


.history_img{
    width: 100%;
    height: 28vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 12px;
    position: relative;
}

.history_img .overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.125);
    border-radius: inherit;
    display: flex;
    justify-content: flex-end;
    padding: 10px;
}

.like_btn{
    width: 35px;
    height: 35px;
    border-radius: 50px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .1s ease-in;
}

.like_btn:hover{
    scale: 1.05;
}


.history_det{
    margin-top: 10px;
}

.history_det h3{
    font-size: 18px;
    font-weight: bold;
    color: #6A1548;
    margin: 10px 0px;
}

.history_det p.description_short{
    font-size: 12px;
    color: #A3AED0;
    background: #FBEBF5;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    color: #6A1548;
}


.share_container{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0%;
    left: 0%;
    background-color: rgba(0, 0, 0, 0.411);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;

}

.share_container .overlay{
    background: white;
    width: 60%;
    border-radius: 20px;
    padding: 16px;
}


.share_container .share_nav{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 20px 0px;
}

.share_container .para_share{
    margin: 12px 0px;
    text-align: center;
    font-weight: 400;
    font-size: 14px; 
    color: #6A1548;   
}

.share_nav img{
    width: 40px;
    cursor: pointer;
}

.share_container h3{
    text-align: center;
    font-weight: 700;
    color: #6A1548;
    font-size: 24px;
}

.share_icons_link{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px 0px;
}

.share_icons_link ul{
    display: flex;
    align-self: center;
    justify-content: center;
}

.share_icons_link ul li{
    list-style-type: none;
    margin: 0px 5px;
}

.copy_link_area{
    width: 40%;
    border: 2px solid #B5247B;
    display: flex;
    align-items: center;
    height: 45px;
    border-radius: 50px;
    justify-content: space-between;
}

.copy_link_area p{
    font-size: 14px;
    margin-left: 10px;
}

.copy_link_area button{
    background: #6A1548;
    border: none;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    height: inherit;
    width: 30%;
    font-size: 14px;
}

.share_result_view{
    display: flex;
    border-radius: 8px;
}

.share_description_box .try_share_img{
    width: 130px;
}

.share_description_box, .share_image{
    width: 100%;
}

.share_description_box{
    padding: 10px;
}

.share_description_box h2{
    font-size: 18px;
    margin: 7px 0px;
    color: #6A1548;
}
.para_group{
    padding: 12px;
    background: white;
    border-radius: 8px;
}

.para_group p{
    color: #6A1548;
    font-size: 14px;

}

.share_locaion{
    display: flex;
    align-items: center;
}

.share_locaion p{
    font-size: 14px;
    color: #6A1548;
}

.share_image{
    border-radius: 10px;
    max-height: 35vh;
    background-size: cover;
    background-position: center;
}

.instruction_recipe_share_box{
    display: flex;
}

.instruction_recipe_share_box ul{
    width: 50%;
}

.instruction_recipe_share_box ul li{
    list-style-type: none;
}


ul.recipe_box li, ul.instruction_box li{
    list-style-type: none;
}

.recipe_box h5, .instruction_box h5{
    color: #595101;
}
.recipe_instruction-result, .image_gen-result{
    position: absolute;
    z-index: 999;
    top: 0%;
    left: 0%;
    width: 100%;
    min-height: 100vh;
    height: max-content;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.641);
}

.image_gen-result .generated_image{
    width: 100%;
    height: 45vh;
    background-position: center;
    background-size: cover;
    border-radius: 12px;
    margin: 10px 0px;
}

.recipe_instruction-result .overlay{
    position: relative;
    background: #FEF590;
    border-radius: 12px;
    width: 40%;
    height: max-content;
    padding: 20px;
}

.image_gen-result .overlay{
    position: relative;
    background: #B5247B;
    border-radius: 12px;
    width: 40%;
    height: max-content;
    padding: 20px;
}

.recipe_instruction-result .close_recipe, .image_gen-result .close_recipe{
    position: absolute;
    top: 5%;
    right: 2%;
    width: 20px;
    cursor: pointer;
}

.image_gen-result h2{
    font-weight: bold;
    color: #ffff;
    margin: 10px 0px;
    font-size: 18px;
}

.image_gen-result p{
    color: white;
}


.recipe_instruction-result h2{
    font-weight: bold;
    color: #595101;
    margin: 10px 0px;
    font-size: 18px;
}

.recipe_instruction-result p, .recipe_instruction-result ul li{
    color: #595101;
    list-style-type: none;
}

.recipe_instruction-result button, .image_gen-result button{
    width: 100%;
    height: 40px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFFFFF;
    margin: 10px 0px;
}



.recipe_instruction-result button img{
    margin: 0px 5px;
}



@media only screen and (max-width:1200px){


    .overview_box{
        min-width: 140px;
    }



    .dashboard_pots nav.side__nav{
        width: 20%;
        background-color: #fefafc;
        border: none;
    }

    .dashboard_pots section.pots_form_container{
        padding: 0px;
    }

    .form_layout{
        border: none;
        border-radius: 0px;
        padding: 10px;
    }

        
    .dashboard_pots section.pots_user_contents{
        width: 80%;
    }


    
}

@media only screen and (max-width:1024px){



    .pots_form_container h1.form_head{
        font-size: 20px;
    }

    h1.form_head img{
        width: 25px;
        margin-right: 10px;
    }

    .dashboard_pots section.profile_container{
        flex-grow: 1;
        width: unset;
    }


    #close_form{
        top: 1%;
        width: 14px;
    }

    nav.top_nav{
        padding: 15px;
    }

    .top_nav img.logo_long{
        width: 200px;
    }


    nav.top_nav ul{
        width: 50%;
    }

    .nav_list{
        margin: 20px 15px 16px 15px;
    }

    .dashbaord_nav{
        background: #fefafc;
    }

    #loggedin_data_btn{
        display: none !important;
    }

    .dashboard_pots nav.side__nav{
        background-color: #fefafc;
        border: none;
    }
    .dashboard_pots section.pots_form_container{
        width: 30%;
        padding: 0px;
    }

    .form_layout{
        border: none;
        border-radius: 0px;
        padding: 10px;
    }

    .dashboard_pots section.pots_user_contents{
        padding: 15px 7px;
    }



    .side__nav ul li{
        font-size: 13px;
        padding: 0px;
    }

    body{
        height: max-content;
        overflow-y: unset;
    }


    .ai_options{
        display: flex;
        justify-content: space-between;
        margin: 10px 0px;
    }

    .overview_parent{
        width: 100%; 
        flex-wrap: wrap;
    }

    .w-50-option{
        width: 48% !important;
        flex-grow: unset;
    }
    .overview_box .image_box_overview{
        width: 30px;
        height: 30px;
    }

    .image_box_overview img{
        width: 20px;
    }

    .overview_box{
        margin: 3px;
    }


    .ai_options .option{
        height: 14vh;
        align-items: center;
        width: 48%;
        margin: 5px 0px;
    }

    .box_options{
        width: 60%;
    }


    .ai_options .option .image_options{
        width:40%;
    }

    .comming_soon{
        top: 4%;
        bottom: unset;
        right: 9%;
        font-size: 5px;
    }

    .select_toggle{
        font-size: 13px;
    }

    .form__mood_select label{
        font-size: 14px;
    }

    .select_options, .form_box input{
        font-size: 13px;
    }

    span.mood_selected{
        font-size: 7px;
    }


    form button.submit_pots_btn{
        font-size: 13px;
    }



    .load_content p{
        font-size: 13px;
    }

    .pots_result_container{
        padding: 5px 10px;
    }
    .pots_result_container .result_nav{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 5px 0px;
        margin-bottom: 00px;
    }

    .btn_share_download_box{
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        margin: 5px 0px;
    }

    .btn_share_download_box button{
        margin: 0px;
        width: 48%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 35px;
        padding: 5px 15px;
        font-size: 13px;
    }



    .btn_share_download_box button img{
        margin: 0px 5px;
    }

    .image_meal_description{
        display: flex;
        justify-content: center;
        flex-direction: column;
        margin-bottom: 0px;
        margin: 0px;
    }

    .image_generated, .generated_content{
        width: 100%;
    }


    .location_txt span{
        font-size: 12px;
    }

    .get_recipe_btn{
        font-size: 13px;
    }

    .image_generated{
        height: 25vh;
    }


    .resultt{
        border-radius: 15px;
        padding: 10px;
        background: #FBEBF5;
        height: max-content;
        margin-top: 10px;
    }

    .history_parent .history{
        width: 100% !important;
    }


    .notice .overlay{
        height: max-content;
        display: flex;
        flex-direction: column;
        width: 50%;
    }



    .notice .overlay .image_box{
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 0px;
        height: 35vh;
        width: 100%;
    }

    .notice_det{
        width: 100%;
    }

    .share_container{
        width: 100%;
        height: 100vh;
        position: absolute;
        top: 0%;
        left: 0%;
        background-color: rgba(0, 0, 0, 0.411);
        z-index: 99999;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .share_container .overlay{
        background: white;
        width: 95%;
        border-radius: 20px;
        padding: 10px;
    }

    .share_icons_link{
        margin: 10px 0px;
    }

    .share_icons_link .copy_link_area, .share_icons_link ul{
        width: 100%;
    }

    .share_icons_link .copy_link_area{
        margin: 5px 0px;
    }

    .share_icons_link ul{
        justify-content: center;
    }

    .share_result_view{
        flex-direction: column;
    }

    .share_description_box, .share_image{
        width: 100%;
    }

    .share_image{
        height: 30vh;
    }

    .share_container{
        min-height: 100vh;
        height: max-content;
        padding: 20px 0px;
    }


    .instruction_recipe_share_box ul{
        width: 100%;
    }

    .dashbaord_nav{
        padding: 10px;
    }


    .recipe_instruction-result .overlay{
        width: 60%;
    }

    .image_gen-result .overlay{
        width: 60%;
    }

    .overview_data p{
        font-size: 10px;
    }

    .btnx .button_overview{
        font-size: 10px;
    }

    

    .result_parent{
        flex-direction: column;
    }

    .result_parent .result_info{
        width: 100%;
    }

    .result_toggle_btns{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0px;
    }


    .result_toggle_btns .result_toggle_btnn{
        flex-grow: 1;
        font-size: 14px;
        justify-content: center;
        align-items: flex-start;
        border: 2px solid;
        margin: 5px 0px;
        flex-direction: column;
    }

    .w-50-btn{
        flex-grow: unset !important;
        width: 49% !important;
        height: 90px !important;
    }

    .result_toggle_btns .result_toggle_btnn{
        height: 90px;
    }


    .result_toggle_btnn img{
        margin: 0px;
    }


    
}



@media only screen and (max-width:900px){
    



    .result_info_data{
        padding: 0px;
        border-radius: 0px;
    }


    .dashboard_pots nav.side__nav{
        width: 25%;
    }

    .pots_user_contents{
        display: flex;
        flex-direction: column;
    }

    .pots_user_contents .card_label_box{
        width: 100% !important;
    }

    .comming_soon_layout{
        width: 100%;
        height: max-content !important;
    }

    .buttons_redirect button{
        padding: 5px 20px !important;
        margin: 12px 0px;
        width: 100% !important;
    }

    .buttons_redirect{
        width: 100%;
        flex-direction: column;
    }

    .upgrade_card{
        position: relative;
        min-width: 311px;
        width: 30%;
    }

    .pots_form_container, .pots_user_contents{
        width: 76% !important;
    }

    

    .telegram_box{
        margin: 0px;
        width: 311px;
    }

}

@media only screen and (max-width: 700px){


    
    .upgrade_card{
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .telegram_box{
        width: 100% !important;
        height: max-content;
    }


    .img_telegram{
        height: 320px;
    }



    nav.top_nav{
        flex-wrap: wrap;
        flex-direction: column;
        align-items: flex-start;
        height: max-content;
        padding: 10px 15px;
    }

    .flex_navv{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    #menu_icon{
        width: 35px;
        display: block !important;
    }

    .top_nav ul .drop-down-items{
        margin-top: 15px;
    }


    .top_nav ul{
        justify-content: unset;
        width: 100% !important;
        margin: 5px 0px;
    }

    nav.top_nav ul li{
        margin: 0px;
        margin-right: 5px;
    }

    .instruction_recipe_share_box{
        flex-direction: column;
    }

    .pots_result_container{
        box-shadow: none;
        border-radius: 0px;
        margin-top: 0px;
        padding: 20px 0px;
    }

    .instruction_recipe_share_box ul{
        margin: 5px 0px;
    }

    .mobile_nav{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px;
        padding-top: 15px;
    }



    .side__nav ul{
        margin: 40px 0px;
    }


    .mobile_nav .nav_item img{
        width: 40px;
        cursor: pointer;
    }

    .logo_mobile{
        margin-left: 15px;
    }

    .mobile_nav .nav_item .circle_user{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        border-radius: 40px;
        background: #FEC210;
    }

    .dashboard_pots{
        flex-direction: column-reverse;
    }

    .dashboard_pots section.pots_form_container{
        min-height: unset;
        height:fit-content;
    }


    .pots_form_container form{
        margin-top: 0px;
    }


    .dashboard_pots section.pots_user_contents{
        width: 100%;
        padding-top: 20px;
        margin: 0px;
    }

    .ai_options{
        flex-direction: column;

    }


    .ai_options .option{
        width: 100% ;
    }


    .ai_options .option .image_options{
        width: 30%;
    }

    
    .dashboard_pots nav.side__nav{
        position: fixed;
        top: 0%;
        left: -100%;
        display: none;
        z-index: 999;
        width: 50%;
        transition: left 1s ease;
    }



    .active_nav {
        left: 0 !important;
        display: block !important;
    }

    .close_nav{
        position: absolute;
        top: 2%;
        right: 5%;
        cursor: pointer;
        font-size: 14px;
        display: block !important;
    }

    

    .notice .overlay{
        height: max-content;
        display: flex;
        flex-direction: column;
        width: 80%;
    }

    .image_generated{
        height: 40vh;
    }

    .pots_form_container h1.form_head{
        margin-top: 20px;
    }


    .recipe_instruction-result, .image_gen-result{
        padding: 0px;
        height: max-content;
    }

    .recipe_instruction-result .overlay, .image_gen-result .overlay{
        border-radius: 0px;
        width: 100%;
        min-height: 100vh;
        height: max-content;
        padding: 40px 20px;
    }

    .recipe_instruction-result .close_recipe, .image_gen-result .close_recipe{
        top: 2%;
    }

    .notice_det h1{
        font-size: 20px;
    }

    .pots_form_container, .pots_user_contents{
        width: 100% !important;
    }


}