@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

/***************************** Common CSS *****************************/
:root {
    --bs-blue: #51459d;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #e83e8c;
    --bs-red: #ff3a6e;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffa21d;
    --bs-green: #6fd943;
    --bs-teal: #20c997;
    --bs-cyan: #3ec9d6;
    --bs-white: #ffffff;
    --bs-black: #000000;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #868383;
    --bs-gray-700: #495057;
    --bs-gray-800: #4f4f4f;
    --bs-gray-900: #212529;
    --bs-primary: #51459d;
    --bs-secondary: #6c757d;
    --bs-success: #6fd943;
    --bs-info: #3ec9d6;
    --bs-warning: #ffa21d;
    --bs-danger: #ff3a6e;
    --bs-light: #f8f9fa;
    --bs-dark: #1c232f;
    --bs-primary-rgb: 81, 69, 157;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 111, 217, 67;
    --bs-info-rgb: 62, 201, 214;
    --bs-warning-rgb: 255, 162, 29;
    --bs-danger-rgb: 255, 58, 110;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 28, 35, 47;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 41, 50, 64;
    --bs-body-bg-rgb: 248, 249, 253;
    --bs-font-sans-serif: "Poppins", sans-serif;
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
        "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.15),
        rgba(255, 255, 255, 0)
    );
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size-xs: 0.75rem;
    --bs-body-font-size-sm: 0.875rem;
    --bs-body-font-size-md: 1rem;
    --bs-body-font-size-lg: 1.125rem;
    --bs-body-font-size-xl: 1.5rem;
    --bs-body-font-size-2xl: 2rem;
    --bs-body-font-size-3xl: 2.25rem;
    --bs-body-font-size-4xl: 2.5rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.8;
    --bs-body-line-normal: 1.5;
    --bs-body-color: #293240;
    --bs-body-bg: #f8f9fd;
    --bs-border-width: 1px;
    --bs-border-style: solid;
    --bs-border-color: #f1f1f1;
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
    --bs-border-radius: 10px;
    --bs-border-radius-sm: 8px;
    --bs-border-radius-lg: 15px;
    --bs-border-radius-xl: 1rem;
    --bs-border-radius-2xl: 2rem;
    --bs-border-radius-pill: 50rem;
    --bs-link-color: #51459d;
    --bs-link-hover-color: #51459d;
    --bs-code-color: #e83e8c;
    --bs-highlight-bg: #fcf8e3;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    font-family: var(--bs-font-sans-serif) !important;
    font-size: 16px;
    line-height: var(--bs-body-line-height);
    font-weight: var(--bs-body-font-weight);
    background: var(--bs-body-bg);
    color: var(--bs-gray-600);
}

@media (max-width: 575px) {
    html,
    body {
        font-size: 14px;
    }
}

.cursor-pointer {
    cursor: pointer;
}

/***************************** Typography CSS *****************************/
h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5 {
    line-height: var(--bs-body-line-normal);
    font-weight: var(--bs-body-font-weight);
    font-family: "Poppins", Arial, sans-serif;
    color: #000;
}

.font-size-xs {
    font-size: var(--bs-body-font-size-xs);
}

.font-size-sm {
    font-size: var(--bs-body-font-size-sm);
}

.font-size-md {
    font-size: var(--bs-body-font-size-md);
}

.font-size-lg {
    font-size: var(--bs-body-font-size-lg);
}

.font-size-xl {
    font-size: var(--bs-body-font-size-xl);
}

.font-size-2xl {
    font-size: var(--bs-body-font-size-2xl);
}

.font-size-3xl {
    font-size: var(--bs-body-font-size-3xl);
}

.font-size-4xl {
    font-size: var(--bs-body-font-size-4xl);
}

/***************************** Image CSS *****************************/
.img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

/***************************** Buttons and Link-href CSS *****************************/
.btn.btn-primary {
    background: var(--color-customColor);
    border-color: var(--color-customColor);
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background: var(--color-customColor) !important;
    border-color: var(--color-customColor) !important;
}
.btn-rounded {
    border-radius: 25px;
    padding: 12px;
    width: 200px;
}
.btn-rounded-two {
    border-radius: 25px;
    padding: 12px;
    width: 150px;
}
.btn-rounded-three {
    border-radius: 25px;
    width: 125px;
}
a {
    text-decoration: none;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
    color: var(--color-customColor);
}
a:hover,
a:focus {
    text-decoration: none !important;
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: var(--color-customColor);
}

button {
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
}
button:hover,
button:focus {
    text-decoration: none !important;
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

/*************************************** User Landing Page CSS Start ***************************************/
.user_landing_page .header_section{
    padding: 0.5rem 1.5rem;
    z-index: 999;
    box-shadow: 0 0 5px 1px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.user_landing_page .header_section .site_logo{
    max-width: 150px;
}

.user_landing_page .header_section.isScrolled{
    background: rgba(0, 0, 0);
}

.user_landing_page .header_section .search_bar input{
    width: 175px;
    height: 40px;
    border-radius: 30px;
}

.user_landing_page .header_section .social_media_icons .social_icon{
    background: var(--bs-white);
    color: var(--color-customColor);
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 0 6px;
    border-radius: 50%;
    padding-left: 9px;
    font-size: 12px;
}

.user_landing_page .header_section .social_media_icons .social_icon:hover{
    background: var(--color-customColor);
    color: var(--bs-white);
}

.user_landing_page .header_section .navigation_menus ul li{
    padding: 0rem 1rem;
}

.user_landing_page .header_section .navigation_menus ul li:last-child{
    padding-right: 0;
}

.user_landing_page .header_section .navigation_menus ul li a{
    font-size: 1rem;
    color: var(--bs-black);
}

.user_landing_page .header_section.isScrolled .navigation_menus ul li a{
    color: var(--bs-white);
}

.user_landing_page .header_section .navigation_menus ul li:hover > a,
.user_landing_page .header_section .navigation_menus ul li.active > a{
    color: var(--color-customColor);
    border-bottom: 2px solid;
}

.user_landing_page .banner_section{
    width: 100%;
    min-height: 70vh;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

.user_landing_page .banner_section::before{
    content: "";
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.user_landing_page .banner_section .banner_contents{
    z-index: 11;
}

#mobile_navigation_menus{
    position: fixed;
    left: -400px;
    top: 0;
    height: 100%;
    width: 240px;
    background: #000;
    z-index: 9999;
    padding: 1rem;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
#mobile_navigation_menus.navigation_menus.active{
    left: 0;
}
#mobile_navigation_menus ul li{
    padding: 0.5rem 1rem;
}
#mobile_navigation_menus ul li a{
    color: var(--bs-white);
}
#mobile_navigation_menus ul li.active > a{
    color: var(--color-customColor);
    border-bottom: 2px solid;
}

/*************************************** User Landing Page CSS End ***************************************/


/*************************************** User Panel Dashboard Page CSS Start ***************************************/
/***************************** Navbar CSS *****************************/
.navbar {
    padding: 15px 10px;
    background: var(--bs-white);
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
    -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

/***************************** Sidebar and Body Wrapper CSS *****************************/
.wrapper {
    width: 100%;
}

#sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    min-width: 250px;
    max-width: 250px;
    background: #1d1919;
    color: var(--bs-white);
    z-index: 999;
    overflow: scroll;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
#sidebar .layout{
    padding: 0 1.5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
#sidebar.active {
    margin-left: -250px;
}
#sidebar .user-avatar {
    display: block;
    width: 50px;
    height: 50px;
}
#sidebar .user-avatar span {
    display: block;
}
#sidebar ul.components {
    padding: 0;
}
#sidebar ul li {
    font-size: var(--bs-body-font-size-md);
}
#sidebar ul li > ul {
    margin-left: 10px;
}
#sidebar ul li > ul li {
    font-size: var(--bs-body-font-size-sm);
}
#sidebar ul li a {
    padding: 10px 0;
    display: block;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#sidebar ul li a:hover {
    color: var(--color-customColor);
}
#sidebar ul li.active > a {
    background: transparent;
    color: var(--color-customColor);
}
#sidebar .menu-divider{
    margin-top: 25px;
}
#sidebar .sub-menu{
    margin-left: 5px;
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

#sidebarCollapse .fa-bars:before {
    color: var(--bs-white);
}

#content {
    margin-left: 250px;
    width: 100%;
    padding: 0;
    min-height: 100vh;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
#content.fullwidth {
    margin-left: 0;
}

@media (max-width: 1199.98px) {
    #sidebar {
        margin-left: -250px;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #sidebarCollapse span {
        display: none;
    }
    #content {
        margin-left: 0;
    }
}

@media (max-width: 599.98px) {
    #content {
        margin-top: 70px;
    }
}

/***************************** Color CSS *****************************/
.custom-text-grey {
    color: var(--bs-gray-600);
}
.text-primary {
    color: var(--color-customColor) !important;
}
.text-primary-custom {
    color: var(--color-customColor) !important;
}
.border-primary-custom {
    border: 1px solid var(--color-customColor);
}

/***************************** Nav Tabs CSS *****************************/
.custom_nav_tabs .nav-pills .nav-link {
    border-radius: 0;
    font-size: var(--bs-body-font-size-lg);
    padding: 10px 40px;
    font-weight: 700;
    margin: 0 15px;
    color: var(--bs-gray-800);
}

.custom_nav_tabs .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background-color: transparent;
    color: var(--color-customColor);
    border-bottom: 2px solid var(--color-customColor);
}

.custom_v_tabs .v-tab.v-tab.v-btn {
    font-size: var(--bs-body-font-size-lg);
    padding: 10px 40px;
    font-weight: 700;
    color: var(--bs-gray-800);
    text-transform: capitalize;
}

/***************************** Form Field CSS *****************************/
.custom-form-control {
    background: transparent;
}
.custom-form-control-2 {
    background: transparent;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    padding: 0.75rem;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding-top: 5px;
}
.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    top: 6px;
}
.select2-container {
    width: 100% !important;
}
.select2-container--default .select2-selection--single {
    background: transparent;
    height: 40px;
}
.custom-form-control-2 .select2-container--default .select2-selection--single {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-top: 0;
}
.select2-results__option--selectable {
    color: var(--bs-dark);
}

.form-check-input:checked {
    background-color: var(--color-customColor);
    border-color: var(--color-customColor);
}

/***************************** User Profile Page CSS *****************************/
.user_profile_details .user-avatar-profile {
    width: 175px;
    height: 175px;
}
.update-profile .user_basic_info .user_avatar .edit-avatar {
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--bs-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0px 2px 5px 0px #000;
}
@media (max-width: 599.99px) {
    .user_profile_details .user-avatar-profile {
        width: 140px;
        height: 140px;
    }
    .update-profile .user_basic_info .user_avatar .edit-avatar {
        top: 0;
        right: 0;
    }
}

/***************************** Blog List Page CSS *****************************/
.post-lists .post_edit_btn {
    position: absolute;
    right: 0px;
    top: -15px;
    width: 35px;
    height: 35px;
    line-height: 1.5;
    background: var(--color-customColor);
    border-radius: 50%;
    padding: 6px 10px;
    font-size: 14px;
    color: var(--bs-white);
}
@media (max-width: 599.99px) {
    .post-lists .post_edit_btn {
        top: -10px;
        width: 30px;
        height: 30px;
        line-height: 1.3;
        padding: 5px 9px;
    }
}

.post-lists .post_edit_delete_btn {
    position: absolute;
    right: 15px;
    top: -2px;
    font-size: 16px;
}
.post-lists .post_edit_delete_btn .ellipsis-icon{
    color: var(--color-customColor);
}
@media (max-width: 600px) {
    .post-lists .post_edit_delete_btn {
        right: 8px;
        top: 0;
        width: 30px;
        height: 30px;
        line-height: 1.25;
        padding: 3px;
        background: var(--color-customColor);
    }
    .post-lists .post_edit_delete_btn .ellipsis-icon{
        color: var(--bs-white);
    }
}

/***************************** Blog Post Single Page CSS *****************************/
.post-detail-page .post-title {
    font-size: var(--bs-body-font-size-4xl);
}

.post-detail-page .post-sub-title {
    font-size: var(--bs-body-font-size-2xl);
}

.post-detail-page .post-author-detail .user-avatar,
.post-detail-page .post-comments .user-avatar {
    width: 50px;
    height: 50px;
}
/*************************************** User Panel Dashboard Page CSS Start ***************************************/


/*****  Video iFrame CSS Start *******/
.iframe-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}
  
.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
/*****  Video iFrame CSS End *******/


/** Swiper Image Gallery */
.post_video_swiper .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color-customColor);
}

/** Social Icons */
.social_links .social_icon{
    color: var(--color-customColor);
}

/** Mobile bottom navigation bar css */
#mobile-bottom-navigation .navigation-menus ul li.active a {
    color: var(--color-customColor);
}

/** Swiper */
.plogs_list_slides .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}
.plogs_list_slides .swiper-pagination-bullet-active {
    background: var(--color-customColor);
}
.merchants_list_slides .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}
.merchants_list_slides .swiper-pagination-bullet-active {
    background: var(--color-customColor);
}

/** Others */
.custom-marker-icon{
    border-radius: 100%;
    border: 2px solid var(--color-customColor);
}

.custom-marker-icon-plog{
    border-radius: 100%;
    border: 2px solid var(--bs-pink);
}

.scroll-to-top{
    background: var(--color-customColor);
    color: var(--bs-white);
}

.unLike_button, .comment_arrow {
    color: var(--color-customColor);
}

