/* ###################### COMMON CSS START ################### */
:root {

    /* colors  */
    --ColorLightPrimary: rgb(255, 255, 255);
    --ColorLightPrimaryAlpha: rgba(255, 255, 255, 0.9);
    --ColorLightSecondary: rgb(241, 241, 241);
    --ColorLightSecondaryAlpha: rgba(241, 241, 241, 0.4);
    --ColorLightExtra: rgb(245, 245, 245);


    --ColorDarkPrimary: rgb(33, 33, 33);
    --ColorDarkPrimaryAlpha: rgba(33, 33, 33, 0.8);
    --ColorDarkSecondary: rgb(166, 166, 166);
    --ColorDarkSecondaryAlpha: rgba(49, 49, 49, 0.4);
    --ColorDarkExtra: rgb(120, 120, 120);

    /* theme colors  */
    --ColorPrimary: rgb(229, 57, 53);
    --ColorPrimaryAlpha: rgba(229, 57, 53, 0.2);
    --ColorSecondary: rgb(35, 35, 45);
    --ColorSecondaryAlpha: rgba(35, 35, 45, 0.6);

    /* fonts  */
    --FontPrimary:'Baloo Da 2', sans-serif;
    /* --FontSecondary: 'ConeriaScript', sans-serif; */

    /* font-size  */
    --FontSizeUltraLarge: 30px;
    --FontSizeExtraLarge: 25px;
    --FontSizeLarge: 22px;
    --FontSizeNormal: 18px;
    --FontSizeSmall: 12px;
    --FontSizeExtraSmall: 10px;
    --FontSizeUltraSmall: 8px;

    /* shadow and borders  */
    --ColorMix: rgb(206, 212, 218);
    --BoxShadow: 0px 3px 20px -8px rgba(33, 33, 33, 0.2);
    --Border: rgb(206, 212, 218);

}

/* font colors  */
.ColorLightPrimary{
    color: var(--ColorLightPrimary) !important;
    transition: .3s linear;
}
.ColorLightPrimaryAlpha{
    color: var(--ColorLightPrimaryAlpha) !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;
}
.BgLightPrimaryAlpha {
    background: var(--ColorLightPrimaryAlpha) !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: var(--ColorPrimaryAlpha) !important;
}
.BgPrimary{
    background: var(--ColorPrimary) !important;
}


/* fonts  */
.FontPrimary {
    font-family: var(--FontPrimary) !important;
}
.FontSecondary {
    font-family: var(--FontSecondary) !important;
}

/* shadows  */
.BoxShadow{
    /* box-shadow: 0 4px 8px var(--ColorPrimaryAlpha); */
    box-shadow: var(--BoxShadow);
}


* {
    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;
    /* transition: .3s linear; */
}

h1, h2, h3, h4, h5, h6
{
    font-family: var(--FontPrimary);
    margin: 0;
    line-height: 1;
    /* line-height: 35px; */
    font-weight: 700;
}
p {
    font-size: var(--FontSizeNormal);
    font-weight: 400;
    font-weight: normal;
    line-height: 30px;
    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 !important;
    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(--ColorDarkPrimaryAlpha);
    width: 100%;
    height: 100% !important;
}
.overlay_pos {
    /*Make position relative it's parent'*/
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* background: var(--overlayColor); */

}
.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);
}


.truncate_1line {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* number of lines to show */
    -webkit-box-orient: vertical;
}

.truncate_2line {
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 2; /* number of lines to show */
   -webkit-box-orient: vertical;
}
.truncate_3line {
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 3; /* number of lines to show */
   -webkit-box-orient: vertical;
}
.truncate_4line {
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 4; /* number of lines to show */
   -webkit-box-orient: vertical;
}


.rounded_10{
    border-radius: 10px;
}



/* summernote css start  */
.note-editable ul, .note-editable ol {
  padding-left: 25px !important;
  margin: 1em 0 !important;
}

.note-editable ul li {
  list-style-type: disc !important;
}

.note-editable ol li {
  list-style-type: decimal !important;
}

.content-display-area ul {
  padding-left: 25px;
  list-style-type: disc;
}

.content-display-area ol {
  padding-left: 25px;
  list-style-type: decimal;
}
.note-btn-group button .note-icon-caret::before{
    display: none !important;
}
/* summernote css end  */
