
.image_overlay_all {
    background-image: url(../img/logobackground.png);
    background-repeat: no-repeat;
    background-size: 30%;
    background-position: left bottom;
    overflow-x: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    z-index: 0;
    opacity: 0.06;
}
body {
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #888888 #f0f0f0; /* Firefox */
    overflow-y: scroll; /* Hide scrollbar in webkit-based browsers */

    /* Adjust background color and other styles for the entire page */
    background-color: #f0f0f0; /* Adjust to your preference */
    color: #333; /* Adjust to your preference */

}

#main_content ,#main_header{
    transition: opacity 1.5s ;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Style the scrollbar for webkit-based browsers */
body::-webkit-scrollbar {
    width: 6px; /* Adjust scrollbar width */
}

body::-webkit-scrollbar-thumb {
    background-color: var(--primaryColor); /* Scroll thumb color */
    border-radius: 10px; /* Round the scrollbar thumb */
}

body::-webkit-scrollbar-thumb:hover {
    background-color: #555555; /* Scroll thumb color on hover */
}

body::-webkit-scrollbar-track {
    background-color: #f0f0f0; /* Scroll track color */
}

.text-danger{
    color: var(--dangerColor) !important;
}
.text-bold {
    font-weight: bold !important;
}

.text-success {
    color: var(--greenColor);
}

@font-face {
    font-family: 'Larsseit';
    font-weight: normal;
    font-style: italic;
    src: url('fonts/Larsseit-Italic.woff2');
    src:  url('fonts/Larsseit-Italic.woff2') format('woff2'), url('fonts/Larsseit-Italic.woff') format('woff'), url('fonts/Larsseit-Italic.ttf') format('truetype');
}
@font-face {
    font-family: 'Larsseit';
    font-weight: bold;
    font-style: normal;
    src: url('fonts/Larsseit-Bold.woff2');
    src:  url('fonts/Larsseit-Bold.woff2') format('woff2'), url('fonts/Larsseit-Bold.woff') format('woff'), url('fonts/Larsseit-Bold.ttf') format('truetype');
}
@font-face {
    font-family: 'Larsseit';
    font-weight: 600;
    font-style: normal;
    src: url('fonts/');
    src: url('fonts/Larsseit-Medium.woff2') format('woff2'), url('fonts/Larsseit-Medium.woff') format('woff'), url('fonts/Larsseit-Medium.ttf') format('truetype');
}
@font-face {
    font-family: 'Larsseit';
    font-weight: normal;
    font-style: normal;
    src: url('fonts/Larsseit-Regular.woff2');
    src:  url('fonts/Larsseit-Regular.woff2') format('woff2'), url('fonts/Larsseit-Regular.woff') format('woff'), url('fonts/Larsseit-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Larsseit';
    font-weight: bold;
    font-style: italic;
    src: url('fonts/Larsseit-Bold-Italic.woff2');
    src:  url('fonts/Larsseit-Bold-Italic.woff2') format('woff2'), url('fonts/Larsseit-Bold-Italic.woff') format('woff'), url('fonts/Larsseit-Bold-Italic.ttf') format('truetype');
}
html, body{
    margin: 0;
    padding: 0;
    font-family: "Larsseit",arial,sans-serif;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: var(--primaryColor);
    background: var(--siteBackground);
    position: relative;
}
html.lightStyle , body.lightStyle{
    color: #FFCC00;
}
a{text-decoration:none;}
/*slider switch css */
.theme-switch-wrapper {
    display: flex;
    align-items: center;
}
.theme-switch-wrapper em {
    margin-left: 10px;
    font-size: 1rem;
}

.theme-switch {
    display: inline-block;
    height: 34px;
    position: relative;
    width: 60px;
}

.theme-switch input {
    display: none;
}

.slider {
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: 0.4s;
}

.slider:before {
    background-color: #fff;
    bottom: 4px;
    content: "";
    height: 26px;
    left: 4px;
    position: absolute;
    transition: 0.4s;
    width: 26px;
}

input:checked + .slider {
    background-color: #66bb6a;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}
:root{
    --siteBackground:white;
    --primaryColor: #13335D;
    --subColor:#93A2AA;
    --grayColor:#5D6D7E;
    --darkGrayColor:#707071;
    --greenColor:#1FDE82;
    --blueColor: #5890FF;
    --lightText: #f1f2f5;
    --lightBoxShadow: rgba(120, 120, 170, 0.15) 0 2px 16px 0;
    --mediumBoxShadow: rgba(120, 120, 170, 0.2) 0 2px 10px 0;
    --darkBoxShadow: rgba(120, 120, 170, 0.3) 0 2px 10px 0;
    --green: #16A085;
    --red: #D63447;

    --dangerColor:#D37085;

    --:gray #FF7600;
    --cemonColor:#EDC988;
    --purple: #432C7A;
    --whiteColor:#ffffff;
    --ci;--circleBackground: #F6F9FF;
    FONT-VARIANT: JIS04;
    --shadowColor: rgba(128,141,175,15%);
}
:root{
    --primaryFontSize: 21px;
    --bodyFontSize: 17px;
    --captionFontSize:14px;
    --titleFontSize: 19px;
    --subFontSize: 15px;
}

.lightStyle{
    --siteBackground:white;

}
/* old colors
:root{
    --darkBlueColor:#23282D;
    --primaryColor: #ffd205;
    --blueColor: #117fc2;
    --pinkColor: #ffd205;
    --primaryGradientColor: linear-gradient(90deg, #117fc2 0%, #4d84ba 20%, #ffc809 95%, #ffc809 100%);
    --blackText: #21252e;
    --lightText: rgb(60 82 112);
    --lightBoxShadow: rgba(120, 120, 170, 0.15) 0 2px 16px 0;
    --mediumBoxShadow: rgba(120, 120, 170, 0.2) 0 2px 10px 0;
    --darkBoxShadow: rgba(120, 120, 170, 0.3) 0 2px 10px 0;
    --green: #d6efe2;
    --red: #feedf2;
    --orange: #fbebd9;
    --purple: rgba(117, 86, 118, 0.8);
    --gradientText: linear-gradient(90deg, #21252e 0%, #21252e 20%, #ffc809 25%, #ffc809 100%);
    --whiteColor:#ffffff;
    
}
*/
.w-100{
    width: 100%;
}
.secondary_color{
    color:var(--pinkColor);
}
.primary_color{
    color: var(--primaryColor) !important;
}
.light_color{
    color:var(--lightText);

}
.black_text{
    color:var(--blackText);
}
.text-center{
    text-align: center !important;
}
*:focus{
    outline: 0;
}

::-webkit-scrollbar{
    width: 0;
}

#msg{
    display: none;
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    min-width: 200px;
    width: fit-content;
    max-width: 50%;
    padding: 12px;
    border-radius: 8px;
    color: (--whiteColor)
        box-shadow: var(--lightBoxShadow);
    font-size: 90%;
    font-weight: 600;
    text-align: center;
    z-index: 9999999999;
}

.err-msg{
    background-color: var(--red);
    color: #e20000 !important;
}

.succ-msg{
    background-color: var(--green);
    color: green !important;
}

#content{
    width: 100%;
    max-width: 1600px;
    z-index: 1;
    margin: 0 auto 8% auto;
}


.textarea, .input, #card-element{
    font-family: "Larsseit",arial,sans-serif;
    border-radius: 8px;
    border: 1px solid #404346;
    transition-duration: 0.3s;
    background-color: white;
    color: var(--grayColor);
}

.input{
    min-height: 45px;
    padding: 0 0 0 4px;
}

#card-element {
    padding: 14px;
}

.input::placeholder, .textarea::placeholder{
    color: #afafaf;
}

.input:focus, .textarea:focus{
    border: 1px solid rgb(191,203,218);
}

.btn{
    display: block;
    text-align: center;
    font-weight: 600;
    border: none;
    font-size: 100%;
    font-family: inherit;
    border-radius: 8px;
    box-shadow: var(--lightBoxShadow);
    text-decoration: none;
    cursor: pointer;
    transition-duration: 0.3s;
    width: 100%;
    position: relative;
    margin: 0% auto;
}
.submit.btn{
    background:var(--primaryColor) !important;
}

.btn:hover{
    opacity: 0.8;
}

.disabled-btn{
    opacity: 0.5;
    pointer-events: none;
    cursor: default;
}

/* title for generic pages */
.title{
    text-align: center;
    font-size: 210%;
    margin-bottom: 3%;
    font-weight: 600;
}

/* tooltip */

.tooltip{
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.tooltip .tooltip-txt{
    visibility: hidden;
    width: 230px;
    background-color: white;
    color: (--whiteColor)
        font-weight: 400;
    text-align: center;
    border-radius: 6px;
    padding: 8px;
    position: absolute;
    z-index: 1;
    top: 20px;
    left: -115px;
    font-size: 12px;
    box-shadow: var(--darkBoxShadow);
}

.tooltip:hover .tooltip-txt{
    visibility: visible;
}

.tooltip-img{
    width: 12px;
    height: 12px;
    margin-left: 4px;
    filter: brightness(0);
    opacity: 0.7;
}

/* tooltip end */

/* notifications */

.notification{
    width: 10px;
    height: 10px;
    background-color: var(--purple);
    position: absolute;
    border-radius: 50%;
    box-shadow: var(--mediumBoxShadow);
}

/* notifications end */

.link-spanner{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left: 0;
    z-index: 1;
}

@media only screen and (max-width: 800px) {
    .textarea, .input{
        -webkit-appearance: none
    }

    #msg{
        max-width: 70%;
    }

    #content{
        margin: 0 auto 15% auto;
    }

    .input{
        min-height: 50px;
    }

    .input, .textarea{
        font-size: 100%;
    }

    #card-element {
        padding: 17px;
    }

    .tooltip .tooltip-txt{
        left: 0;
        font-size: 11px;
    }
}
.tox-tinymce{
    background-color: white;
    border: 1px solid rgba(191,203,218,.52) !important;
    border-radius: 8px !important;
    width: 100%;
}

.btn-danger {
    background: var(--lightText);
    color: var(--blackText);
    padding: 15px 0px !important;
    border: none !important;
    font-weight: 600 !important;
}

.btn-gradient {
    background: var(--primaryGradientColor);
    color: white;
    padding: 15px 0px;
    font-weight: bold;
    font-size: 20px;
}

hr.light_seperator {
    border: 0;
    border-top: 0.3px solid #80808052;
}

.explore-btn {
    cursor: pointer;
}

.search_input {
    width: 100%;
    height: 100%;
    border: 0;
    text-align: center;
    background: transparent;
}

.btn-dark-border.btn {
    background: var(--lightText);
    color: var(--blackText);
    padding: 15px 0px !important;
    font-weight: 600 !important;
    border: 1px solid;
    transition: 0.5s linear;
}

.btn-red {
    background: transparent;
    color: lightcoral;
    padding: 15px 0px !important;
    border: none !important;
    text-decoration: none;
    font-weight: 600 !important;
}
.tiny_Editor img {
    display: initial !important;
    width: auto !important;
    object-fit: unset;
}
.m-auto{
    float:
        none;
    margin: auto !important;
}
.d-flex{
    display:flex;
}

.downloadapp_icon {
    width: auto;
    max-height: 80px;
    overflow: hidden;
    margin-bottom: 25px;
}
.download_app_container{
    display: flex;
    flex-direction: column;
    align-content: flex-start;
}

hr.seperator {
    box-shadow: none;
    opacity: 0.2;
    border-radius: 50px;
}

.breadcrumb {
    display: flex;
    width: 100%;
    height: 100px;
    background-image: url(img/breadcrumbbar.png);
    margin-top: 30px;
    margin-bottom: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
}

#main_content {
    position: relative;
    display: flex;
    flex-direction: column;
}

.breadcrumb .breadcrumb-item h3 {
    color: white;
}

.breadcrumb-item {
    display: flex;
    padding-left: 20px;
    font-size: 1.5em;
    align-items: center;
}

/* Form */

.input_container {
    display: block;
    width: 100%;
}

.input_container form {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.input_container .input_text {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    margin-bottom: 20px;
}

.input_text label {
    color: var(--primaryColor);
    font-weight: 300;
    font-size: var(--bodyFontSize);
}

.input_text input ,.input_text select {
    box-shadow: 0px 0px 6px 0px var(--shadowColor);
    border: 1px solid var(--circleBackground);
    padding: 2px 10px;
    font-size: var(--bodyFontSize);
    background: white;
}

p.error {
    color: var(--red);
    font-size: var(--captionFontSize);
    margin: 0px;
}


input:-internal-autofill-selected {
    background: white !important;
    -webkit-text-fill-color: var(--grayColor);
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--grayColor);
    transition: background-color 5000s ease-in-out 0s;
    -webkit-box-shadow: 0px 0px 6px 0px var(--shadowColor);
}

.actions .login_btn {
    width: auto;
    padding: 12px 60px;
    background: var(--blueColor);
    color: white;
    font-weight: 500;
    border-radius: 30px;
    border: none;
    font-size: var(--titleFontSize);
    cursor: pointer;
}

.actions {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    column-gap: 20px;
}

.input_text textarea {
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    font-size: var(--bodyFontSize);
}

.circle_img#img_input_uploader {
    border-radius: 50%;
    height: 200px;
    width: 200px;
    object-fit: cover;
}

.change_profile_label {
    cursor: pointer;
}

.status_draft{
    color: var(--dangerColor);
}
.status_primary{
    color:var(--primaryColor);
}

.status_finished{
    color:var(--green);
}

.status_disabled{
    color:var(--dangerColor);
}

#toast-container , #flashMessage{
    z-index: 999999999;
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 300px;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    display: none;
    animation: slideIn 0.5s ease-in-out;
}
.toast-danger ,#flashMessage{
    background-color: var(--dangerColor);
}
.toast-success {
    background-color: var(--green);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}
.mobile_menu_view{
    height: 0;
    display: none;
}
.desktop_menu_link{
    display:none;
}
.mobile_menu_view , .desktop_menu_view{
    width:100%;
}
.mobile_menu_link.active {
    align-items: center;
    justify-content: flex-start !important;
    background: white !important;
    color: var(--primaryColor);
}