/* dashboard modal */

.dashboard_modal {
    flex-direction: column;
    position: fixed;

    visibility: hidden;
    opacity: 0;

    background: #000000bf;
    width: 100%;
    height: 100vh;

    overflow-y: auto;

    transition: 0.2s;
    animation-name: zoom;
    animation-duration: 0.2s;
    backdrop-filter: blur(5px);
    z-index: 9999999;
}

@keyframes zoom {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Dashboard user profile modal  */

.dashboard_userMgnt_userProfile_modal_wrap {
    display: none;
    position: relative;
    background: #ffffff;
    width: 50%;
    min-height: 525px;
    border-radius: 5px;
    backdrop-filter: blur(5px);
    transition: all 0.2s ease-in-out;
}

.dashboard_userMgnt_userProfile_modal_closeBtn {
    position: absolute;
    background: #ffffff;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    font-size: 22px;
    border-radius: 0 5px 0 30px;
    z-index: 1;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.userProfile_cover {
    position: relative;
    background: url("../assests/userProfile_modal_coverImg.png"),
        #ff2200c4;
    background-repeat: repeat;
    background-size: 50%;
    background-position: center center;
    height: 150px;
    padding: 20px;
    border-radius: 5px 5px 0 0;
}

.userProfile_details_con {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    padding: 30px;
    transform: translate(0%, 50%);
}


.userProfile_details_con .userProfile_img_con {
    background: #ffffff;
    width: 130px;
    height: 130px;
    border-radius: 50%;
}

.userProfile_details_con .userProfile_img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: inherit;
}

.userProfile_cover .userProfile_name {
    position: absolute;
    bottom: -37px;
    left: 22%;
    font-size: 35px;
    font-weight: 600;
}

.userProfile_text {
    width: calc(100% - 320px);
    padding: 0 25px;
    font-weight: 600;
}

.userProfile_text_name {
    color: #ffffff;
    font-size: 25px;
}

.userProfile_text_role {
    background: #ff2200c4;
    width: 70px;
    margin-top: 12px;
    padding: 5px 2px;
    font-size: 11px;
    color: #ffffff;
    border-radius: 15px;
}

.userProfile_blog_stats {
    background: #ff2200c4;
    margin-top: 38px;
    padding: 10px 20px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
}


.userProfile_info_con {
    margin: 100px 0 50px;
    padding: 0 50px;
}

.userProfile_info_head {
    justify-content: flex-start;
    padding-bottom: 5px;
    border-bottom: 1px solid #9b9b9b14;
}

.userProfile_info_head_title {
    margin-right: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
}

.info_head_title_active {
    position: relative;
}

.info_head_title_active:after {
    position: absolute;
    bottom: -7px;
    left: 0;
    content: "";
    background: var(--themec);
    width: 100%;
    height: 2px;
}

.userProfile_info_wrap {
    justify-content: flex-start;
}

.userProfile_info {
    margin-top: 20px;
    width: 100%;
    font-size: 13px;
}

.info_about {
    /* display: none/; */
    text-align: justify;
}

.info_details,
.info_contact {
    display: none;
}

.info_details_con {
    align-items: flex-start;
}

.info_details_sec1 {
    width: 55%;
}

.info_details_sec2 {
    width: 45%;
    /* border: 1px solid red; */
}

/* sec1 */

.info_details_sec1_userAnalytics_con {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
    grid-template-rows: auto;
    grid-gap: 10px;
    width: 100%;
}

.info_details_sec1_userAnalytics {
    background: #fae5fe;
    padding: 10px 12px;
    height: 80px;
    font-size: 15px;
    border-radius: 5px;
    box-shadow: 5px 5px 5px #cecece3d;
}

.userAnalytics_publishedCon {
    background: #fae5fe;
}

.userAnalytics_publishedCon>.sec1_userAnalytics_count_wrap {
    color: #f1a5ff;
}

.userAnalytics_draftCon {
    background: #e5e8fe;
}

.userAnalytics_draftCon>.sec1_userAnalytics_count_wrap {
    color: #b8c0ff;
}

.userAnalytics_viewCon {
    background: #fff6e5;
}

.userAnalytics_viewCon>.sec1_userAnalytics_count_wrap {
    color: #ffd991;
}

.userAnalytics_reportCon {
    background: #ffe5e5;
}

.userAnalytics_reportCon>.sec1_userAnalytics_count_wrap {
    color: #ff9c9c;
}

.sec1_userAnalytics_title {
    margin-bottom: 10px;
    font-size: 18px;
    text-transform: uppercase;
}

.sec1_userAnalytics_count_wrap {
    justify-content: flex-start;
    color: #f1a5ff;
    font-size: 25px;
    font-weight: 600;
}

.sec1_userAnalytics_count_val {
    margin-left: 15px;
}

.info_contact_label {
    margin-bottom: 5px;
    font-size: 10px;
    font-weight: 600;
}

.info_contact_text {
    margin-bottom: 20px;
    font-size: 13px;
}

/* sec2 */

.info_details_sec2_userMiniBlog_con {
    height: 100%;
    height: 176px;
    overflow-x: auto;
}

.info_details_sec2_userMiniBlog_wrap {
    padding: 0 10px;
}

.sec2_userMiniBlog {
    background: #e5e5e5;
    align-items: flex-start;
    margin-bottom: 10px;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px #00000026;
}

.sec2_userMiniBlog_thumbnail {
    width: 150px;
    height: 70px;
    border-radius: inherit;
}

.sec2_userMiniBlog_thumbnail_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.sec2_userMiniBlog_content_con {
    margin-left: 10px;
}

.sec2_userMiniBlog_title {
    margin-top: 5px;
    font-family: 'Fjalla One', sans-serif;
    font-size: 13px;
    font-weight: 600;
}

.sec2_userMiniBlog_content_date {
    margin-top: 15px;
    font-size: 10px;
    font-weight: 600;
}

/* Dashboard user profile modal */




/* create blog mini-image uploader */
.blog_mini_image_upload_wrap {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    width: 80%;
}

.blog_mini_image_upload_title {
    margin: 20px 0;
    width: 100%;
    color: #ffffff;
    font-size: 18px;
}

.blog_mini_image_upload_err_msg {
    display: none;
    background: #ffffff;
    padding: 10px;
    margin-top: 2px;
    width: 100%;
    color: red;
    font-size: 12px;
    font-weight: 600;
    font-style: italic;
}

.blog_mini_image_upload_con {
    position: relative;
    background: #fff1ef;
    width: 100%;
    height: calc(100vh - 180px);
    overflow-y: auto;
}

.blog_mini_image_upload_dropzone_overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    cursor: pointer;
}

.blog_mini_image_upload_dropzone {
    position: absolute;
    /* display: none; */
    background: #fff1ef;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    z-index: 9999;
}

.miniImg_dropzone_active {
    background: #e0fff4 !important;
}

.blog_mini_image_dropzone_icon {
    color: #ff7863;
    font-size: 12vw;
    transition: all 0.1s ease-in-out;
}

.blog_mini_image_dropzone_text {
    margin-top: 20px;
    color: #b2b7c6;
    text-align: center;
    font-size: 2vw;
    font-weight: 600;
    transition: all 0.1s ease-in-out;
}

.blog_mini_image_dropzone_text span {
    color: var(--themec)
}

.blog_mini_image_preveiw_wrap {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    grid-template-rows: 180px;
    grid-gap: 20px;
    padding: 20px;
    overflow-y: auto;

    min-height: 100%;
}

.blog_mini_image_preveiw {
    flex-direction: column;
    background: #ffffff;
    width: 100%;
    height: 180px;
    box-shadow: 0 0 5px #c7bbb9;
}

.blog_mini_image_preveiw_closebtn_con {
    position: absolute;
    background: #00000075;
    width: 100%;
    height: 100%;
    color: #ffffff;
    font-size: 30px;
    cursor: pointer;

    transition: all 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.blog_mini_image_preveiw_closebtn_overlay {
    position: absolute;
    width: 100%;
    height: 100%;
}

.blog_mini_image_preveiw_img_con {
    position: relative;
    width: 100%;
    height: calc(180px - 40px);
}

.blog_mini_image_preveiw_img_con:hover .blog_mini_image_preveiw_closebtn_con {
    visibility: visible;
    opacity: 1;
}

.blog_mini_image_preveiw_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog_mini_image_preveiw_content {
    width: 100%;
    height: 40px;
}

.blog_mini_image_preveiw_text {
    justify-content: flex-start;
    width: calc(100% - 40px);
    height: 40px;
    padding: 12px 10px;
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
}

.blog_mini_image_preveiw_icon {
    position: relative;
    background: var(--themec);
    width: 40px;
    height: 40px;
    font-size: 14px;
    color: #ffffff;
    cursor: pointer;
}

.blog_mini_image_preveiw_icon_overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.blog_mini_image_upload_btn_con {
    margin-top: 20px;
    padding-bottom: 20px;
    width: 100%;
}

.blog_mini_image_upload_btn {
    background: #000000;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 10px 15px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.blog_mini_image_upload_btn_con:hover {
    opacity: 0.9;
}

.miniImg_uplBtn,
.miniImg_intBtn {
    background: var(--themec);
}

/* create blog -- mini-image uploader */


/*create blog -- preveiw wrap */

.dashboard_modal_main_blog_preveiw_wrap {
    display: none;
    /* margin: 50px auto; */
    width: 60%;
    min-height: 100%;
}

.dashboard_modal_main_blog_preveiw_wrap_title {
    margin: 50px 0 20px;
    color: #ffffff;
    font-size: 25px;
    text-transform: uppercase;
}

.dashboard_modal_main_blog_preveiw_con {
    position: relative;
    background: #ffffff;
    border-top: 5px solid var(--themec);
}

.dashboard_modal_main_blog_preveiw_con_closeBtn {
    display: none;
    position: absolute;
    background: var(--themec);
    top: -5px;
    right: 0;
    width: 50px;
    height: 50px;
    color: #ffffff;
    font-size: 22px;
    z-index: 1;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.dashboard_modal_main_blog_preveiw_img_con {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 30px;
    width: 100%;
    height: 300px;
    color: #ffffff;
}

.dashboard_modal_main_blog_preveiw_catagory_tags {
    justify-content: left;
    flex-wrap: wrap;
}

.blog_preveiw_catagory_format,
.blog_preveiw_tags_format {
    background: #000000;
    padding: 5px 15px;
    margin-right: 5px;
    margin-bottom: 5px;
    font-size: 14px;
    font-style: italic;
    border-radius: 25px;
    box-shadow: 0px 0px 30px #0000006b;
}

.blog_preveiw_catagory_format {
    background: var(--themec);
    text-transform: uppercase;
}

.dashboard_modal_main_blog_preveiw_text_con {
    padding: 30px;
    font-weight: 600;
}

.dashboard_modal_main_blog_preveiw_title {
    font-family: 'Fjalla One', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.dashboard_modal_main_blog_preveiw_subtitle {
    font-family: 'Fjalla One', sans-serif;
    font-size: 17px;
}

.dashboard_modal_main_blog_preveiw_content {
    margin-top: 30px;
    text-align: justify;
    font-size: 14px;
}


.dashboard_modal_main_blog_preveiw_content img {
    width: 100%;
    height: 250px;
    object-fit: contain;
}

.dashboard_modal_main_blog_preveiw_content h3 {
    margin-bottom: 5px;
    font-family: 'Fjalla One', sans-serif;
    font-size: 15px;
}

.dashboard_modal_main_blog_preveiw_author {
    margin-top: 50px;
    font-size: 15px;
}

.dashboard_modal_main_blog_preveiw_pubDate {
    font-size: 15px;
}

.dashboard_modal_main_blog_preveiw_btn_con {
    margin-top: 20px;
    padding-bottom: 20px;
}

.dashboard_modal_main_blog_preveiw_btn {
    background: #000000;
    margin-right: 10px;
    padding: 10px 15px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.dashboard_modal_main_blog_preveiw_btn:hover {
    opacity: 0.9;
}

.blog_preveiw_submitBtn {
    background: var(--themec);
}

/* dashboard_wrapper */

.dashboard_wrapper {
    position: relative;
    background: #f2f2f2;
    justify-content: flex-start;
    align-items: flex-start;
    /* background: var(--themec); */
    min-height: 100vh;
    padding: 30px;
}

/* dashboard -- mobile navbar */
.dashboard_mobile_bottom_navbar {
    display: none;
    background: #000000;
    position: fixed;
    bottom: 0;
    left: 0;
    margin: 10px;
    width: calc(100% - 20px);
    color: #ffffff;
    border-radius: 10px;
    user-select: none;
    box-shadow: 10px 10px 60px #353535;
    transform: translateY(100px);
    transition: all .5s ease-in-out;
    z-index: 99999;
}

.dashboard_mobile_bottom_navbar_menu_con {
    position: relative;
    width: 100%;
    padding: 0 20px;
    justify-content: space-between;
}

.dashboard_mobile_bottom_navbar_menu {
    position: relative;
    list-style: none;
    cursor: pointer;
}

.dashboard_mobile_bottom_navbar_menu_icon {
    position: relative;
    width: 60px;
    height: 60px;
    font-size: 20px;
    line-height: 75px;
    text-align: center;
    border-radius: 50%;
    transition: all .3s ease-in-out;
}

.dashboard_mobile_bottom_navbar_menu_name {
    position: absolute;
    font-size: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: all .2s ease-in-out;
}

.mobile_bottom_navbar_menu_active .dashboard_mobile_bottom_navbar_menu_icon {
    background: #000000;
    border: 5px solid var(--themec);
    border-width: 5px 15px 15px 5px;
    box-shadow: 0 -5px 5px 0px #35353533;
    transform: translateY(-30px);
}

.mobile_bottom_navbar_menu_active .dashboard_mobile_bottom_navbar_menu_name {
    opacity: 1;
    transform: translateY(10px);
}

/* dash mobileNavbar user management */

.dashboard_mobile_bottom_navbar_menu_mangtDropMenu {
    background: #000000;
    position: fixed;
    bottom: 0px;
    left: 0;
    margin: 10px;
    padding: 10px 20px;
    width: calc(100% - 20px);
    color: #ffffff;
    border-radius: 10px;
    user-select: none;
    box-shadow: 10px 10px 60px #353535;
    transform: translateY(130px);
    transition: all .5s ease-in-out;
    z-index: 9999;
}

.dashboard_mobile_bottom_navbar_menu_mangtMenu {
    justify-content: flex-start;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.dashboard_mobile_bottom_navbar_menu_mangtMenu:hover {
    color: var(--themec);
}

.dashboard_mobile_bottom_navbar_menu_mangtMenu_icn {
    width: 60px;
    height: 50px;
    font-size: 18px;
}

/* dashboard -- desktop sidebar */
.dashboard_dummy_sidebar {
    width: 220px;
    height: 100%;
    overflow-x: hidden;
    transition: all .3s ease-in-out;
    user-select: none;
}

.dashboard_sidebar {
    position: fixed;
    background: var(--lightgrey);
    flex-direction: column;
    justify-content: flex-start;
    width: 220px;
    min-height: calc(100vh - 60px);
    color: #ffffff;
    border-radius: 10px;
    box-shadow: 20px 20px 25px #cecece, -20px -20px 60px #ffffff;
    overflow-x: hidden;
    transition: all .3s ease-in-out;
    user-select: none;
}

.active_dashboard_con {
    width: calc(100% - 90px) !important;
}

.active_dashboard_sidebar {
    width: 60px;
}

.active_dashboard_sidebar .dashboard_sidebar_menu {
    background: #242424c4;
    color: var(--themec) !important;
}

.dashboard_sidebar>.siteLogo {
    background: #000000;
    padding: 5px;
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.dashboard_sidebar>.siteLogo>img {
    width: 100%;
    height: 50px;
}

.dashboard_menu_con {
    padding: 10px;
    height: calc(100% - 120px)
}

.dashboard_sidebar_menu,
.dashboard_sidebar_bottom_menu {
    position: relative;
    top: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 12px 0;
    padding: 12px;
    font-size: 17px;
    border-radius: 10px;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.dashboard_sidebar_menu:hover {
    background: #242424;
}

.dashboard_sidebar_menu>i {
    margin-right: 20px;
}


.dashboard_sidebar_menu_mangt {
    position: relative;
}

.dashboard_sidebar_menu_mangt:hover .dashboard_sidebar_menu_mangtDropMenu {
    opacity: 1;
    visibility: visible;
}

.dashboard_sidebar_menu_mangtDropMenu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 35px;
    left: 0px;
    background: #242424;
    width: 100%;
    transition: all .3s ease-in-out;
    border-radius: 0px 0px 10px 10px;
}

.dashboard_sidebar_menu_mangtMenu {
    background: #242424;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 12px 12px 7px;
    font-size: 14px;
    transition: all .3s ease-in-out;
    cursor: pointer;
    border-radius: 0px 0px 10px 10px;
}

.dashboard_sidebar_menu_mangtMenu:hover {
    color: var(--themec);
}

.dashboard_sidebar_menu_mangtMenu:nth-child(2) {
    padding: 7px 12px 12px;
}

.dashboard_sidebar_menu_mangtMenu>i {
    margin: 0 25px 0 1px;
}

/*  */

.dashboard_sidebar_bottom_menu_con {
    position: absolute;
    bottom: 0px;
    background: #242424;
    margin: 8px;
    /* padding: 10px 0; */
    width: calc(100% - 16px);
    border-radius: 10px;
}

.dashboard_sidebar_bottom_menu {
    margin: 0;
}


.dashboard_sidebar_bottom_menu>i {
    margin: 0 20px 0 3px;
}


/* dashboard -- Main Navbar */

.dashboard_navbar {
    background: #ffffff;
    /* justify-content: flex-start; */
    justify-content: space-between;
    /* padding: 10px; */
    min-height: 50px;
    /* border: 1px solid red; */

    border-radius: 10px;
    box-shadow: 20px 20px 60px #cecece
}

.dashboard_navbar div>div {
    margin: 10px 0;
}

.dashboard_navbar_menu {
    background: #cecece;
    width: 40px;
    height: 40px;
    font-size: 22px;

    border-radius: 5px;
    cursor: pointer;
}

.dashboard_navbar .siteLogo {
    display: none;
    background: #000000;
    padding: 0 5px;
    width: 60px;
    height: 60px;
    border-radius: 10px 0 0 10px;
}

.dashboard_navbar .siteLogo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.menu_btn {
    margin-left: 10px !important;
}

.dashboard_searchbar {
    background: #e5e5e5;
    margin-left: 10px !important;
    width: 250px;
    height: 40px;
    font-size: 22px;
    border: 2px solid transparent;
    border-radius: 5px;
    cursor: pointer;
}

.search_icon {
    width: 40px;
    height: 100%;
    /* margin-right: 10px; */
    color: #b5b5b5;
    border-radius: 0 5px 5px 0;
}

.search_inp {
    background: transparent;
    width: calc(100% - 40px);
    height: 100%;
    padding: 10px 0;
    font-size: 18px;
    border-radius: 0 5px 5px 0;
}

.nofication_con {
    background: transparent;
    margin-right: 10px !important;
}

.dashboard_user_profile {
    background-color: #e5e5e5;
    margin-right: 10px !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.dashboard_user_profile>.user_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.dashboard_con_content {
    transition: all .2s ease-in-out;
}

.dashboard_contentSpace_forBottom_navbar {
    display: none;
    width: 100%;
    height: 90px;
    transition: all .5s ease-in-out;
}


/* dashboard -- container(con) */

.dashboard_con {
    /* width: 100%; */
    width: calc(100% - 250px);
    min-height: calc(100vh - 60px);
    margin-left: 30px;
    transition: all .3s ease-in-out;
}