/*IMPORTED GOOGLE FONTS START*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');
/* font-family: 'Poppins', sans-serif; */


@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@300;400;500;600;700&display=swap');
/* font-family: 'Noto Sans Bengali', sans-serif; */
/*IMPORTED GOOGLE FONTS ENDS*/

/* LOCAL FONTS CSS START */
@font-face {
    font-family: "ConeriaScript";
    src: url("../fonts/ConeriaScript/Demo_ConeriaScript.eot");
    src: url("../fonts/ConeriaScript/Demo_ConeriaScript.eot")format("embedded-opentype"),
        url("../fonts/ConeriaScript/Demo_ConeriaScript.woff2")format("woff2"),
        url("../fonts/ConeriaScript/ConeriaScriptDemo.woff")format("woff"),
        url("../fonts//ConeriaScript/ConeriaScriptDemo.ttf") format("truetype"),
        url("../fonts//ConeriaScript/ConeriaScriptDemo.svg")format("svg");

    font-weight: normal;
    font-style: normal;
}
/* LOCAL FONTS CSS ENDS */


/* ###################### COMMON CSS START ################### */
:root {

    /* colors  */
    /* --ColorLightPrimary: rgb(169, 28, 28); */
    --ColorLightPrimary: rgb(255, 255, 255);
    --ColorLightPrimaryAlpha: rgba(255, 255, 255, 0.7);
    --ColorLightSecondary: rgb(241, 241, 241);
    --ColorLightSecondaryAlpha: rgba(241, 241, 241, 0.3);
    --ColorLightExtra: rgb(245, 245, 245);

    
    --ColorDarkPrimary: rgb(33, 33, 33);
    --ColorDarkPrimaryAlpha: rgba(33, 33, 33, 0.3);
    --ColorDarkSecondary: rgb(166, 166, 166);
    --ColorDarkSecondaryAlpha: rgba(49, 49, 49, 0.3);
    /* --ColorDarkSecondary: rgb(68, 68, 68); 
    previous color  */
    --ColorDarkExtra: rgb(120, 120, 120);
    
    /* theme colors  */
    --ColorPrimary: rgb(118, 164, 124);
    --ColorPrimaryAlpha: rgba(118, 164, 124, 0.6);
    --ColorSecondary: #23232D;
    
    /* fonts  */
    /* --FontPrimary: 'Poppins', sans-serif; */
    --FontPrimary: 'Noto Sans Bengali', sans-serif;
    --FontSecondary: 'ConeriaScript', sans-serif;

    /* font-size  */
    --FontSizeUltraLarge: 20px;
    --FontSizeExtraLarge: 18px;
    --FontSizeLarge: 16px;
    --FontSizeNormal: 14px;
    --FontSizeSmall: 12px;
    --FontSizeExtraSmall: 10px;
    --FontSizeUltraSmall: 8px;

    /* shadow and borders  */
    --ColorMix: rgb(206, 212, 218);
    --BoxShadow: 0px 0px 5px 3px rgba(206, 212, 218, 0.5);
    /* --Border: rgb(206, 212, 218); */

}

/* font colors  */
.ColorLightPrimary{
    color: var(--ColorLightPrimary) !important;
    transition: .3s linear;
}
body.dark .ColorLightPrimary{
    color: var(--ColorDarkPrimary) !important;
}

.ColorLightSecondary {
    color: var(--ColorLightSecondary) !important;
    transition: .3s linear;
}
body.dark .ColorLightSecondary {
    color: var(--ColorDarkSecondary) !important;
}

.ColorDarkPrimary {
    color: var(--ColorDarkPrimary) !important;
    transition: .3s linear;
}
body.dark .ColorDarkPrimary {
    color: var(--ColorLightPrimary) !important;
}

.ColorDarkSecondary {
    color: var(--ColorDarkSecondary) !important;
    transition: .3s linear;
}
body.dark .ColorDarkSecondary {
    color: var(--ColorLightSecondary) !important;
}

/* font-size */
.FontSizeUltraLarge {
    font-size: var(--FontSizeUltraLarge);
}
.FontSizeExtraLarge {
    font-size: var(--FontSizeExtraLarge);
}
.FontSizeLarge {
    font-size: var(--FontSizeLarge);
}
.FontSizeNormal {
    font-size: var(--FontSizeNormal);
}
.FontSizeSmall {
    font-size: var(--FontSizeSmall);
}
.FontSizeExtraSmall {
    font-size: var(--FontSizeExtraSmall);
}
.FontSizeUltraSmall {
    font-size: var(--FontSizeUltraSmall);
}

/* background colors  */
.BgDarkPrimary {
    background: var(--ColorDarkPrimary) !important;
    transition: .3s linear;
}
body.dark .BgDarkPrimary {
    background: var(--ColorLightPrimary) !important;
}

.BgDarkSecondary {
    background: var(--ColorDarkSecondary) !important;
    transition: .3s linear;
}
body.dark .BgDarkSecondary {
    background: var(--ColorLightSecondary) !important;
}
.BgLightPrimary {
    background: var(--ColorLightPrimary) !important;
    transition: .3s linear;
}
body.dark .BgLightPrimary {
    background: var(--ColorDarkPrimary) !important;
}

.BgLightSecondary {
    background: var(--ColorLightSecondary) !important;
    transition: .3s linear;
}
body.dark .BgLightSecondary {
    background: var(--ColorDarkSecondary) !important;
}
.BgLightBlur{
    background: var(--ColorLightPrimaryAlpha);
    /* backdrop-filter: blur(10px); */
}
body.dark .BgLightBlur{
    background: var(--ColorDarkPrimaryAlpha);
    /* backdrop-filter: blur(10px); */
}

/* theme colors  */
.ColorPrimary {
    color: var(--ColorPrimary) !important;
}
.BgPrimary {
    background: var(--ColorPrimary) !important;
}
.BgPrimaryAlpha{
    background: rgba(114, 166, 130, 0.3) !important;
}

/* fonts  */
.FontPrimary {
    font-family: var(--FontPrimary) !important;
}
.FontSecondary {
    font-family: var(--FontSecondary) !important;
}

/* shadows  */
.BoxShadow{
    box-shadow: var(--BoxShadow) !important;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--FontPrimary);
    font-weight: normal;
    font-style: normal;
    font-size: var(--FontSizeNormal);
    box-sizing: border-box;
    line-height: 1;
    background: var(--ColorLightSecondary);
    color: var(--ColorDarkPrimary);

    /* show scrollbar forcefully */
    /* min-height: 100vh;
    overflow-y: scroll; */
}

h1, h2, h3, h4, h5, h6 
{
    font-family: var(--FontPrimary);
    margin: 0;
    line-height: 1;
    font-weight: 700;
}
p {
    font-size: var(--FontSizeNormal);
    font-weight: 400;
    font-weight: normal;
    line-height: 25px;
    margin: 0;
    font-family: var(--FontPrimary);
    color: var(--ColorDarkSecondary);
}
body.dark p {
    color: var(--ColorLightSecondary);
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
a {
    text-decoration: none;
    display: inline-block;
}

a:focus,
input:focus,
textarea:focus,
button:focus,
select:focus,
option:focus,
input:focus {
    outline: none !important;
}

a:focus,
a:hover {
    text-decoration: none;
}

span,
a {
    display: inline-block;
}
a{
    /* margin-bottom: -2px; */
}

a,
button {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.container {
    margin: 0 auto;
}
.clr {
    clear: both;
}

img {
    /* width: 100%; */
    /* height: 100% ; */
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    vertical-align: middle;
    border-radius: 10px;
}

.bg_cover {
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    width: 100%;
    height: 100%;
}
.bg_cover_fixed {
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    width: 100%;
    height: 100%;
}
.object_cover{
    object-fit: cover;
}


.overlay_inner {
    /* background: var(--overlayColor); */
    /* background: rgb(255, 121, 14, 0.3); */
    width: 100%;
    height: 100% !important;
}
.overlay_pos {
    /*Make position relative it's parent'*/
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /* width: 100%; */
    height: 100%;
    background: var(--ColorLightPrimaryAlpha);
    z-index: 9;
    
}
.gradiant_overlay{
    overflow: hidden;
    background-image: linear-gradient(to right, rgba(255,0,0,0), rgb(255, 121, 14, 0), rgb(255, 121, 14));
}

.preloader {
    position: fixed;
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all .3s linear;
    z-index: 9999999999999999 !important;
    /* background: red; */
}
.preloader_img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.3);
}


.btn{
    border-radius: 10px !important;
    color: var(--ColorLightPrimary);
    --bs-btn-padding-y: 0.32rem;
}
.theme_btn {
    color: var(--ColorLightPrimary);
    background: var(--ColorPrimary);
    border: 1px solid var(--ColorPrimary) !important;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    /* border-radius: 10px; */
    /* border-radius: 0.375rem; */
    overflow: hidden;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}
.theme_btn:hover {
    color: var(--ColorDarkPrimary);
    background: transparent;
}
body.dark .theme_btn{
    background: var(--ColorDarkPrimary) !important;
    border: 1px solid var(--ColorDarkPrimary) !important;
}
body.dark .theme_btn:hover{
    border: 1px solid var(--ColorLightPrimary) !important;
    color: var(--ColorLightPrimary);
    background: transparent !important;
}

.loginwithbtn a, .regwithbtn a {
    width: 100%;
    white-space: nowrap;
    margin: 0 4px;
    margin-bottom: 4px;
}

/*Section Title CSS Start*/
section{
    padding-top: .35rem;
    padding-bottom: .35rem;
}
.section_content{
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
}
/*Section Title CSS End*/

/*END OF COMMON CSS*/

/* CUSTOM CSS START  */


.text_space {
    letter-spacing: 2px;
}

.ratio_16-9_parent{
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.ratio_16-9_child {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.link{
    color: var(--ColorPrimary);
}
.link:hover{
    color: var(--ColordarkSecondary);
}
body.dark .link:hover{
    color: var(--ColorLightSecondary);
}

.Page_banner{
    min-height: 200px;
}

.h-100{
    min-height: 100% !important;
}
.round_10{
    border-radius: 10px;
    overflow: hidden;
}
svg, i{
    font-size: 18px !important;
}

.body_left,
.body_right{
    width: 275px !important;
}

.truncate_2 {
    /* width: 100%; */
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 2; /* number of lines to show */
   -webkit-box-orient: vertical;
}

.mx_3 {
	margin-left: -3px;
	margin-right: -3px;
}
.mx_8{
    margin-left: -8px;
    margin-right: -8px;
}

/* responsive  */
@media (max-width: 575px) { /* md  */
    .body_left,
    .body_right{
        width: 100% !important;
    }
}
@media (max-width: 767.98px) { /* md  */
    #body_right.mobile_menu {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--ColorLightPrimary);
        transition: .3s linear;
        /* box-shadow: 0px -3px 3px rgba(78, 78, 78, 0.5) !important; */
        border-top: 1px solid #ced4da ;
    }
    body.dark #body_right.mobile_menu {
        background: var(--ColorDarkPrimary);
    }
    #body_right.mobile_menu .body_right{
        width: 100% !important;
        
    }

}
/* CUSTOM CSS END  */

/* DAY NIGHT MODE SWITCHER START  */
body.dark {
  background: var(--ColorDarkSecondary);
  color: var(--ColorLightPrimary);
}
.dark {
  -webkit-transition: background-color 800ms ease;
  transition: background-color 800ms ease;
}
svg {
  color: var(--ColorDarkPrimary);
}
body.dark svg {
  color: var(--ColorLightPrimary);
}
/* DAY NIGHT MODE SWITCHER END  */


/* CUSTOMIZE BOOTSTRAP START  */

/* card css start */
.card {
	background-color: var(--ColorLightPrimary);
	border: none;
    border-radius: 10px !important;
}
.card .card-header, .card .card-footer{
    border-radius: 10px !important;
    /* overflow: hidden; */
}

body.dark .card {
	background-color: var(--ColorDarkPrimary);
}
.card-header {
	background-color: var(--ColorLightPrimary);
	border-bottom: 1px solid var(--ColorLightSecondary);
    line-height: 25px;
}
body.dark .card-header {
	background-color: var(--ColorDarkPrimary);
	border-bottom: 1px solid var(--ColorDarkSecondary);
}
.card-footer {
	background-color: var(--ColorLightPrimary);
	border-top: 1px solid var(--ColorLightSecondary);
    line-height: 25px;
    /* padding: 10px; */
}
body.dark .card-footer {
	background-color: var(--ColorDarkPrimary);
	border-top: 1px solid var(--ColorDarkSecondary);
}
.card-title {
	margin-bottom: 0;
    font-weight: 700;
    font-size: var(--FontSizeLarge);
    color: var(--ColorDarkPrimary);
    line-height: 25px;
    padding-top: 5px;
}
body.dark .card-title{
    color: var(--ColorLightPrimary);
}
/* .card-header,
.card-body,
.card-footer{
    padding: 10px;
} */

.card-header, .card-footer {
    min-height: 50px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* card css start */

/* modal css start  */
.modal-backdrop{
    z-index: 999999;
    background: transparent;
    /* backdrop-filter: blur(10px); */
}

.modal {
	z-index: 9999999999;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
    --bs-modal-border-color: 0 !important;
}
.modal-sm{
    /* min-width: 400px; */
}
.modal-content{
    background: rgba(255, 255, 255, 0.3) !important;
    border-radius: 10px !important;
}
.modal-header{
    padding: 13px 13px;
    border-bottom: 0;

    position: sticky;
    top: 0;
    z-index: 9;
    /* background: var(--ColorLightPrimary); */
}
.modal-footer {
	padding: .5rem 0.5rem;
	border-top: 0;

    position: sticky;
    bottom: 0;
    z-index: 9;
    /* background: var(--ColorLightPrimary); */
}
/* modal css end  */

/* Right Panel Offcanvas css start  */
/* .offcanvas_close{
    margin-right: 0 !important;
} */
.offcanvas-backdrop {
	z-index: 9999999;
	background: var(--ColorLightPrimary);
	/* backdrop-filter: blur(10px); */
}
body.dark .offcanvas-backdrop {
    background: var(--ColorDarkPrimary);
}
.offcanvas-backdrop.show{
    opacity: 0.7;
}
.offcanvas {
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	transition: .3s linear;
	z-index: 99999999;
	background: var(--ColorLightSecondaryAlpha) !important;
}
body.dark .offcanvas{
    background: var(--ColorDarkSecondaryAlpha) !important;
}
.sub_content div {
	text-transform: uppercase;
	font-weight: 700;
	padding: 6.5px 8px;
}
.offcanvas-footer .header_content_height{
    display: none;
}
.offcanvas-end{
    border-left: none;
}
.offcanvas.offcanvas-end {
	border-left: none;
}
/* responsive */

@media (max-width: 767.98px) { /* md  */
    .offcanvas-footer .header_content_height{
        display: block;
    }
}
/* Right Panel Offcanvas css end */

/* table css  */
table {
    /* border-radius: 10px; */
    /* overflow: hidden; */
    margin-bottom: 0 !important;
}
table th{
    text-align: center !important;
    vertical-align: middle !important;
    color: var(--ColorLightPrimary) !important;
    background: var(--ColorPrimary) !important;
}
table th:first-child, table td:first-child
{
    /* text-align: left !important; */
}
table th, table td
{
    text-align: left !important;
}
table th:last-child, table td:last-child
{
    /* text-align: right !important; */
}

table th, td {
    vertical-align: middle;
    /* padding: 10px 0 !important; */
}
.TableBorderBotttomHidden{
    border-bottom-style: hidden;
}
/* table thead{
    background: var(--ColorPrimary) !important;
}
table thead th:nth-child(2n+2) {
    background: #5E8B6C;
} */
/* table tbody{
    padding-top: 5px;
    border-top: none !important;
} */
/* table css  */

/* breadcumb area  */
.breadcumb_area nav {
	background: none !important;
}
.breadcrumb {
	margin-bottom: 0 !important;
    padding: 8px 0;
}
.breadcrumb .breadcrumb-item{
    padding: 5px 10px 5px 0;
}
.breadcrumb .breadcrumb-item a{
    color: var(--ColorDarkPrimary);
}
body.dark .breadcrumb .breadcrumb-item a{
    color: var(--ColorLightPrimary) !important;
}
/* breadcumb area  */

/* accordion css start  */

/* accordion css end  */

/* toast css start  */
.toast-container {
	position: fixed;
	top: 100px;
	right: 0;
	padding: 2px;
	z-index: 9999999;
}
.toast-container .toast {
    margin: .5rem !important;
    max-width: 300px;
}
/* toast css end  */

/* form css start  */
.form-control{
    background-color: var(--ColorLightSecondary);
    border: none;
    border-radius: 10px !important;
}
.form-control:focus,
.btn:focus {
    color: none;
    background-color: var(--ColorLightSecondary);
    border-color: var(--ColorLightSecondary);
    outline: 0;
    box-shadow: none !important;
} 
body.dark .form-control{
    background-color: var(--ColorDarkSecondary);
    color: var(--ColorLightPrimary);
}
/* form css end  */

/* CUSTOMIZE BOOTSTRAP START  */


/* HEADER CSS START  */
.header_area {
	position: sticky;
	top: 0;
	z-index: 999999999;
	border-bottom: 1px solid var(--ColorLightSecondary);
}
body.dark .header_area{
    border-bottom: 1px solid var(--ColorDarkSecondary);
}
.header_content_height{
    height: 59px;
}
.offcanvas .header_content_height{
    height: 60px;
}
.search_icon_phone {
    display: none; 
}
#search_big .search_big{
    display: block;
}
.search_icon_tab{
    display: none;
}

.search_big{
    border: 2px solid var(--ColorLightSecondary);
    border-radius: 10px;
}
body.dark .search_big{
    border: 2px solid var(--ColorDarkSecondary);
}
.search_btn{
    /* border: 1px solid var(--ColorMix) !important; */
    border: none;
}
body.dark .search_btn{
    background: var(--ColorDarkSecondary);
}

body.dark header,
body.dark nav {
  background-color: var(--ColorDarkPrimary);
  
}
header,
nav {
  background-color: var(--ColorLightPrimary);
  transition: .3s linear;
}

header, .search_bar_mini {
    /* border-bottom: 1px solid var(--ColorLightSecondary); */
}
.search_bar_mini{
    display: none;
}

.search_actions{
    width: 100px;
}

.header_shortcut{
    width: 40px;
    height: 40px;
    /* margin: 5px auto; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: .3s ease;
    background: var(--ColorLightSecondary);
}
body.dark .header_shortcut{
    background: var(--ColorDarkSecondary);
}

.header_shortcut svg{
    transition: .5s ease;
}
.header_shortcut:hover svg{
    transform: rotate(360deg);
    color: var(--ColorPrimary);
}
.header_shortcut.active svg{
    color: var(--ColorPrimary);
}

/* responsive */
@media (max-width: 575px) { /* md  */
    .search_icon_phone{
        display: block !important;
    }
    #search_big {
        display: none !important;
    }
    .search_actions {
        width: auto;
    }
}
@media (max-width: 991.98px) { /* lg  */
    #search_big .search_big{
        display: none;
    }
    .search_icon_tab{
        display: block;
    }
    .search_bar_mini{
        position: fixed;
        left: 0; 
        right: 0; 
        top: -61px; 
        /* min-height: 50px;  */
        background: var(--ColorLightPrimary); 
        z-index: 9999999;
        display: block;
        transition: .3s linear;
    }
    .search_bar_mini.active{
        transition: .3s linear;
        top: 0px;
    }
    body.dark .search_bar_mini{
        background: var(--ColorDarkPrimary); 
    }
}
/* HEADER CSS END  */



/* NAVBAR CSS START  */

.navbar.toggler{
    background: none !important;
    top: 0;
    z-index: 99999;
}

.navbar-toggler {
	border: 0;
}
.navbar{
    top: 60px;
    z-index: 999999 !important;
    min-height: 40px !important;
    /* display: none; */
}
.navbar, .navbar.top-navbar {
	background: var(--ColorLightPrimary);
	z-index: 9999999;
	box-shadow: 0px 1px 3px rgba(78, 78, 78, 0.3);
}

/* responsive  */
@media (max-width: 767.98px) { /* md  */
    .navbar{
        min-height: auto !important;
    }
    .navbar .offcanvas{
    background: rgba(255, 255, 255, 0.6) !important;
    }
}
@media (max-width: 1399.98px) { /* xxl */
    .navbar .offcanvas{
        background: var(--ColorLightPrimary) !important;
        transition: .3s linear;
    }
    body.dark .navbar .offcanvas{
        background: var(--ColorDarkPrimary) !important;
    }
}
/* moved to responsive css  */

.navbar .offcanvas-header{
    position: relative;
}
.navbar .offcanvas-header::before {
	position: absolute;
	content: '';
	left: 100%;
	bottom: 0;
	width: 1px;
	height: 100%;
	background: var(--ColorLightPrimary);
	transition: .3s linear;
}
body.dark .navbar .offcanvas-header::before {
	background: var(--ColorDarkPrimary);
}

/* .navbar .offcanvas-body{
    width: 100%;
    overflow-x: scroll;
    overflow-y: auto;
} */
.body_left .navbar{
    box-shadow: none;
}
.navbar .nav-item .nav-link{
    text-transform: uppercase;
    font-weight: 700;
    padding: 13px 10px;
    position: relative;
    white-space: nowrap;
    color: var(--ColorDarkPrimary);
    /* font-size: 16px !important; */
}
body.dark .navbar .nav-item .nav-link{
    color: var(--ColorLightPrimary);
}
.navbar .nav-item .nav-link.active{
    color: var(--ColorPrimary);
}
body.dark .navbar .nav-item .nav-link.active:hover{
    color: var(--ColorPrimary);
}
body.dark .navbar .nav-item .nav-link:focus{
    color: var(--ColorLightPrimary);
}
.navbar .nav-item .nav-link::before{
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: var(--ColorPrimary);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: .3s linear;
}
.navbar .nav-item:hover .nav-link::before{
    opacity: 1;
    visibility: visible;
    width: 100%;
}
body.dark .navbar .nav-item .nav-link:hover{
    color: var(--ColorLightPrimary);
}

.dropdown-menu {
    box-shadow: 0px 3px 3px rgba(78, 78, 78, 0.5);
    border: none;
    width: auto !important;
    margin-top: 0px !important;
    border-radius: 0;
    border-bottom-left-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
    overflow: hidden;
    transition: .3s linear;
}
body.dark .dropdown-menu {
    background: var(--ColorDarkPrimary);
}
.dropdown-menu .dropdown-item{
    text-transform: uppercase;
    padding: 7px 10px;
    position: relative;
    color: var(--ColorDarkSecondary);
    font-size: var(--FontSizeNormal) !important;
}
body.dark .dropdown-menu .dropdown-item{
    color: var(--ColorLightSecondary) !important;
}
.dropdown-menu .dropdown-item.active{
    background: var(--ColorPrimary);
    color: var(--ColorLightPrimary);
}
.dropdown-menu .dropdown-item:hover{
    background: var(--ColorPrimary);
    color: var(--ColorLightPrimary) !important;
}

.navbar-toggler:focus {
	text-decoration: none;
	outline: 0;
	box-shadow: 0 0 0 0;
}

/* NAVBAR CSS END  */



/* PAGE WITH SU8BMENU CSS start  */
.nav-tabs button{
    border-radius: 0px !important;
    /* border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important; */
}
.nav-tabs .nav-link {
	display: block;
	padding: 12px 20px;
    /* margin-top: 4px; */
    border: 1px solid transparent;
	color: var(--ColorDarkPrimary);
    font-weight: 500;
	text-decoration: none;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}

body.dark .nav-tabs .nav-item.show .nav-link, 
body.dark .nav-tabs .nav-link{
    color: var(--ColorLightPrimary);
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link{
    border-style: none;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
	color: var(--ColorPrimary);
    background: none;
	/* border-color: var(--ColorLightSecondary) var(--ColorLightSecondary) var(--ColorLightPrimary); */
}
body.dark .nav-tabs .nav-item.show .nav-link, 
body.dark .nav-tabs .nav-link.active {
	color: var(--ColorPrimary);
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link:hover{
    /* border-color: var(--ColorLightSecondary) var(--ColorLightSecondary) var(--ColorLightPrimary); */
}


.nav-tabs {
	border-bottom: 1px solid transparent;
	/* border-bottom: 0; */
}
.navbar.submenu {
	box-shadow: none;
}

.scroll_menu {
    overflow: hidden;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none; 
}
.scroll_menu::-webkit-scrollbar {
    display: none;
  }


  .tab-content{
    margin-top: 10px;
  }
/* PAGE WITH SU8BMENU CSS END  */



/* MEDIA QUERY START  */

/* query on max width  start */
@media (max-width: 400px) { /* xs */
    
}
@media (max-width: 479px) {  /* sm  */
    
}
@media (max-width: 575px) { /* md */
    /* .page_content_wrapper .row > * {
        padding-right: 0 !important;
        padding-left: 0 !important;
    } */
}
@media (max-width: 767.98px) { /* md */

}
@media (max-width: 991.98px) { /* lg */

}
@media (max-width: 1199.98px) { /* xl */
    
}
@media (max-width: 1399.98px) { /* xxl */
    
}
/* query on max width  end */

/* query on min width  start */
@media (min-width: 320px) {
    
}
@media (min-width: 576px) {
    
}
@media (min-width: 768px) {
    
}
@media (min-width: 992px) {
    
}
@media (min-width: 1200px) {

}
@media (min-width: 1400px) {

}
/* query on min width  end */

/* MEDIA QUERY END  */