﻿
/***************************** login css START *********************/
#loginpage {
    /*background: url(../img/bg.jpg) no-repeat 0 0;*/
    width: 100%;
    height: 100%;
    background-size: cover;
    font-family: 'Open Sans', sans-serif;
}

#mainbox {
    width: 1120px;
    margin: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.8);
    transition: .6s ease-in-out 1.2s, visibility 0s 1s;
}

.mainpanel {
    display: flex;
}

.leftpanel {
    width: 50%;
    padding: 50px;
}

    .leftpanel h3 span {
        display: block;
        color: #000;
        font-size: 14px;
        font-family: 'Open Sans', sans-serif;
        font-style: normal;
        font-weight: 400;
        text-transform: capitalize;
    }

    .leftpanel h3 {
        font-family: 'Oswald', sans-serif;
        font-size: 36px;
        font-style: normal;
        font-weight: 700;
        margin: 20px 0;
        text-transform: uppercase;
    }

    .leftpanel label {
        font-weight: 600;
        font-size: 14px;
        text-transform: uppercase;
    }

    .leftpanel input.form-control {
        padding: 10px 10px;
        margin-top: 4px;
        border-radius: 5px;
        border-color: #D4D4D4;
    }

        .leftpanel input.form-control:focus {
            color: #000;
        }

        .leftpanel input.form-control:focus {
            border-color: #2C2D86;
        }

.btn-custom {
    border-radius: 10px;
    background: rgb(132,90,223);
    border-color: rgb(132,90,223);
    display: block;
    width: 100%;
    color: #fff;
    padding: 10px 0;
    border-radius: 5px;
}

    .btn-custom:hover {
        background: rgb(132,90,223);
        border-color: rgb(132,90,223);
        color: #fff;
    }

.rightpanel {
    width: 50%;
    padding: 50px;
    background: url(../img/upper-bg.png) no-repeat 0 0;
    height: 670px;
    background-size: cover;
    outline: 2px solid rgba(255,255,255,0.2);
    outline-offset: -25px;
}

.inner {
    width: 86%;
    margin: auto;
    text-align: center;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

    .inner p {
        position: relative;
    }

        .inner p:before {
            content: " ";
            background: url(../img/2.png) no-repeat 0 0;
            height: 29px;
            width: 34px;
            position: absolute;
            top: -10px;
            left: -20px;
        }

.leftpanel .col-form-label {
    font-weight: 400;
    text-transform: capitalize;
}

.inner p:after {
    content: " ";
    background: url(../img/1.png) no-repeat 0 0;
    height: 29px;
    width: 34px;
    position: absolute;
    bottom: -20px;
    right: -40px;
}

.rightpanel span {
    color: #EFDD39;
    font-size: 22px;
}

.leftpanel .text-right {
    text-align: right
}

    .leftpanel .text-right a {
        color: #3F4089;
    }

.rightpanel h3 {
    color: #EFDD39;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px; /* 133.333% */
    text-transform: capitalize;
}

.rightpanel p {
    color: #FFF;
    text-align: center;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px;
}

.rightpanel span {
    color: #EFDD39;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.leftpanel .containerchk {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .leftpanel .containerchk input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    .leftpanel .containerchk label {
        padding: 0;
    }

.leftpanel .checkmark {
    position: absolute;
    top: 8px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border: 1px #ddd solid;
}

.leftpanel .containerchk:hover input ~ .checkmark {
    background-color: #fff;
}

.leftpanel .containerchk input:checked ~ .checkmark {
    background-color: #2C2D86;
}

.leftpanel .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.leftpanel .containerchk input:checked ~ .checkmark:after {
    display: block;
}

.leftpanel .containerchk .checkmark:after {
    left: 7px;
    top: 2px;
    width: 10px;
    height: 15px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media(max-width:1199px) {
    #mainbox {
        width: 970px;
    }

    .rightpanel .inner h3 {
        font-size: 32px;
    }

    .rightpanel {
        height: auto;
    }
}

@media(max-width:991px) {
    #mainbox {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: auto;
    }

    /* #loginpage {
        background-size: auto;
    }*/
    .leftpanel {
        padding: 50px 20px;
    }

    .mainpanel {
        flex-direction: column;
    }

    .leftpanel, .rightpanel, .inner {
        width: 100%;
    }

    .rightpanel {
        height: auto;
    }

        .rightpanel .inner {
            top: auto;
            transform: none;
        }

            .rightpanel .inner p {
                font-size: 22px;
                line-height: 1.4;
            }

                .rightpanel .inner p:after {
                    bottom: -10px;
                    right: 10px;
                }

                .rightpanel .inner p:before {
                    left: -10px;
                }

            .rightpanel .inner h3 {
                font-size: 30px;
            }

            .rightpanel .inner h3 {
                font-size: 30px;
                line-height: 40px;
            }
}

/***************************** login css END *********************/

/*Field Validation*/

/*.highlight {
    border: 1px solid red !important;
}*/

.error {
    position: relative;
    color: red;
}

.loaderZ {
    position: fixed;
    top: 30%;
    left: 50%;
    width: 3rem;
    height: 3rem;
    z-index: 99;
    border: 0.4em solid;
    border-right: 0.4em solid transparent;
}


#button {
    display: block;
    margin: 20px auto;
    padding: 10px 30px;
    background-color: #eee;
    border: solid #ccc 1px;
    cursor: pointer;
}

#overlay {
    position: fixed;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0,0,0,0.3);
}

.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px white solid;
    border-top: 5px #97742f solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}

.is-hide {
    display: none;
}

/*img height*/
/*#ClientImage {
    min-height: 23rem !important;
}*/

/*fixed first column*/

.ulList {
    display: flex;
    padding-bottom: 5px;
    list-style: none;
    padding-top: 5px;
}

.list {
    flex-wrap: nowrap;
    padding-top: 8px;
    padding-bottom: 5px;
    direction: ltr;
    list-style: none;
    border-bottom: 1px solid #cacdd2;
}

/* switcher */

.switch {
    position: relative;
    display: inline-block;
    width: 33px;
    height: 18px;
    margin-left: 10px;
    margin-top: 2px
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 16px;
        width: 12px;
        left: 1px;
        bottom: 1px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }


.fs20 {
    font-size: 20px !important;
}

input[type=checkbox] {
    position: relative;
    border: 2px solid #dee2e6;
    border-radius: 2px;
    cursor: pointer;
    line-height: 0;
    margin: 0 .6em 0 0;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 20px;
    width: 20px;
}

/*selet2 dropdown*/
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    outline: none;
}

.select2-container .select2-selection--single {
    height: 34px !important;
    border: 1px solid #dee2e6 !important;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #f7f8f9 !important;
    cursor: no-drop !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 34px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 34px !important;
}

.select2-container {
    width: -webkit-fill-available !important;
}

/*card hover effect*/
.card_hover {
    cursor: pointer;
    transition: .3s transform cubic-bezier(.155,1.105,.295,1.12),.3s;
}

    .card_hover:hover {
        text-decoration: none;
        transform: scale(1.02);
        box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
    }

/*dynamic cards*/
.snip1527 {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    color: #ffffff;
    float: left;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 16px;
    margin: 10px 1%;
    /*max-width: 310px;
    min-width: 250px;*/
    overflow: hidden;
    position: relative;
    text-align: left;
    width: 100%;
    height: 32rem;
}

    .snip1527 * {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transition: all 0.25s ease;
        transition: all 0.25s ease;
    }

    .snip1527 img {
        max-width: 100%;
        vertical-align: top;
        position: relative;
        height: 340px;
    }

    .snip1527 .image {
        overflow: hidden;
    }

    .snip1527 figcaption {
        padding: 25px 2px 25px;
        position: absolute;
        bottom: 0;
        z-index: 1;
        text-align: center;
        width: 100%;
    }

        .snip1527 figcaption:before {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            background: #700877;
            content: '';
            background: -moz-linear-gradient(90deg, #700877 0%, #ff2759 100%, #ff2759 100%);
            background: -webkit-linear-gradient(90deg, #700877 0%, #ff2759 100%, #ff2759 100%);
            background: linear-gradient(90deg, #700877 0%, #ff2759 100%, #ff2759 100%);
            opacity: 0.8;
            z-index: -1;
        }

    .snip1527 .date {
        background-color: #fff;
        border-radius: 50%;
        color: #700877;
        font-size: 18px;
        font-weight: 700;
        min-height: 48px;
        min-width: 48px;
        padding: 10px 0;
        position: absolute;
        right: 15px;
        text-align: center;
        text-transform: uppercase;
        top: -25px;
    }

        .snip1527 .date span {
            display: block;
            line-height: 14px;
        }

        .snip1527 .date .month {
            font-size: 11px;
        }

    .snip1527 h3,
    .snip1527 p {
        margin: 0;
        padding: 0;
    }

    .snip1527 h3 {
        display: inline-block;
        font-weight: 200;
        letter-spacing: -0.4px;
        margin-bottom: 5px;
        color: white;
    }

    .snip1527 p {
        font-size: 0.8em;
        line-height: 1.6em;
        margin-bottom: 0px;
    }

    .snip1527 a {
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        position: absolute;
        z-index: 1;
    }

    .snip1527:hover img,
    .snip1527.hover img {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

.border-top-primary {
    border-top: 4px solid #2C2D86 !important;
}

.border-top-danger {
    border-top: 4px solid #af0c2a !important;
}

.btn-primary {
    background-color: #3e0704 !important;
    border-color: #3e0704 !important;
    border-radius: 4px !important;
}

    .btn-primary :hover {
        background: #3e0704;
        border-color: #3e0704;
        color: #fff;
    }

.layoutMain {
    background-color: #f9f9fd !important
}

.nav-item .indicator {
    background: #2C2D86 !important;
}

    .nav-item .indicator:hover {
        background: #2C2D86 !important;
    }

.sidebar-link {
    color: white !important;
}

.iconPrimary {
    color: #6263bc !important;
}

.swal2-confirm {
    background-color: #6263bc !important;
}

.form-control:disabled {
    background-color: #f7f8f9 !important;
    cursor: no-drop !important;
}

.form-control:read-only {
    background-color: #f7f8f9 !important;
    cursor: no-drop !important;
}

.descriptionBox {
    max-height: 470px !important;
    overflow-y: scroll !important;
}

#quill-editor {
    max-height: 20rem !important;
    overflow-y: scroll !important;
}


#notificationContainer {
    max-height: 300px; /* Set the maximum height for the notification container */
    overflow-y: auto; /* Add vertical scroll if the content exceeds the max height */
}

/* scrollbar */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

.product-sale-label {
    color: #fff;
    background: #2C2D86;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 2px 8px;
    position: absolute;
    top: 10px;
    left: 10px;
}

.form-control {
    border-color: #c3c6ca !important;
}

.cursor {
    cursor: pointer
}

.form-control:focus {
    border-color: #3e0704 !important;
}

.img-wh {
    max-width: 300px !important;
    max-height: 300px !important;
}

.ql-container.ql-snow, .ql-toolbar.ql-snow {
    border: 1px solid #c3c6ca !important
}

.border-none {
    border: none !important;
}

.custom-scroll {
    overflow: hidden scroll !important;
    height: auto !important;
}

.page-header-breadcrumb {
    border-bottom: 2px solid #e6e8ec !important;
    padding-bottom: 7px !important;
}

.lobibox-notify-msg {
    max-height: 100% !important;
}

.highlight {
    border: 1px solid red !important;
}

.table.table-bordered.dataTable thead tr:first-child th, table.table-bordered.dataTable thead tr:first-child td {
    background-color: #f3f3f3 !important;
}

.tbody, tr, td {
    padding: .5rem .5rem !important;
}

.custom-card {
    box-shadow: none !important;
    border: 1px solid #c3c6ca !important;
}

.border-gray {
    border: 1px solid rgb(195 198 202) !important;
}

label:has(+ input:required)::after {
    content: " *";
    color: red;
    font-weight: bold;
}

label:has(+ select:required)::after {
    content: " *";
    color: red;
    font-weight: bold;
}

label:has(+ password:required)::after {
    content: " *";
    color: red;
    font-weight: bold;
}

.text-decoration {
    cursor: pointer;
    text-decoration: underline
}

.nav-tabs {
    border: 1px solid #c3c6ca !important;
}

/* Ensure the selection box has a fixed height and a vertical scrollbar */
.choices__list--multiple {
    max-height: 120px; /* Adjust height as needed */
    overflow-y: auto; /* Enables vertical scrolling */
    overflow-x: hidden; /* Prevents horizontal scrolling */
    border: 1px solid #ccc; /* Optional: Adds a border */
    padding-right: 5px; /* Avoids content cutting off */
}

    /* Optional: Style scrollbar for better appearance */
    .choices__list--multiple::-webkit-scrollbar {
        width: 6px;
    }

    .choices__list--multiple::-webkit-scrollbar-thumb {
        background-color: #888;
        border-radius: 4px;
    }

        .choices__list--multiple::-webkit-scrollbar-thumb:hover {
            background-color: #555;
        }

    .choices__list--multiple .choices__item {
        color: #495057 !important;
        border: 1px solid #bdc6d0 !important;
        background-color: white !important;
    }


/*placeholder loader*/

/* Container styling */
.p-card {
    width: 100%;
    max-width: 100%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding-bottom: 10px;
    height: 500px !important
}

    /* Profile image */
    .p-card img {
        width: 100%;
        height: 300px !important;
        object-fit: cover;
    }

    /* Profile details */
    .p-card h4 {
        font-size: 18px;
        font-weight: bold;
        margin: 8px 0;
    }

    .p-card h6 {
        font-size: 14px;
        color: #555;
        margin: 3px 0;
    }

/* Like & View Profile */
.p-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

    .p-card-footer i {
        font-size: 16px;
    }

/* Skeleton Loader */
.loading-placeholder {
    background: linear-gradient(90deg, #e0e0e0 25%, #f5f5f5 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
    border-radius: 5px;
}

.p-card-placeholder {
    width: 100%;
    max-width: 100%;
    height: 580px;
    background: #f4f4f4;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

/* Placeholder Image */
.img-placeholder {
    width: 100%;
    height: 300px;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* Placeholder Text */
.text-placeholder {
    height: 14px;
    width: 60%;
    margin: 20px auto;
}

    .text-placeholder.small {
        width: 60%;
    }

/* Placeholder Footer (Like & View Profile) */
.footer-placeholder {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin-top: 15px;
}

.icon-placeholder {
    width: 100%;
    height: 30px;
    border-radius: 3px;
    background: #ddd;
}


/* Shimmer Animation */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}



/***********************print*******************************/

@media print {
    html, body {
        margin: 0 !important;
        /*padding: 0 !important;*/
        height: auto !important;
        overflow: hidden !important;
        font-size: 13px !important;
    }
}

@media (max-width: 768px) {
    #filterCanvas {
        width: 90% !important;
    }

    #ocProfileDetail {
        width: 90% !important;
    }
}

/* ================== Badge CSS ========================*/

.badge-overlay {
    position: absolute;
    left: 0%;
    top: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 100;
    -webkit-transition: width 1s ease, height 1s ease;
    -moz-transition: width 1s ease, height 1s ease;
    -o-transition: width 1s ease, height 1s ease;
    transition: width 0.4s ease, height 0.4s ease
}

.custom-badge {
    margin: 0;
    padding: 0;
    color: white;
    padding: 4px 4px;
    font-size: 10px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    line-height: normal;
    text-transform: uppercase;
    background: #dc3545db;
}

    .custom-badge::before, .custom-badge::after {
        content: '';
        position: absolute;
        top: 0;
        margin: 0 -1px;
        width: 100%;
        height: 100%;
        background: inherit;
        min-width: 55px
    }

    .custom-badge::before {
        right: 100%
    }

    .custom-badge::after {
        left: 100%
    }


.top-left {
    position: absolute;
    top: 0;
    left: 0;
    -ms-transform: translateX(-30%) translateY(0%) rotate(-45deg);
    -webkit-transform: translateX(-30%) translateY(0%) rotate(-45deg);
    transform: translateX(-30%) translateY(0%) rotate(-45deg);
    -ms-transform-origin: top right;
    -webkit-transform-origin: top right;
    transform-origin: top right;
}

@media (max-width: 768px) {
    .watermark {
        top: 1000px !important;
        left: 190% !important;
        transform: translate(-50%, -50%) !important;
        width: 500px;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    #b-footer {
        height: 50px !important; 
    }

    .profile-detail-img {
        height: 200px;
        width: 200px;
    }
}

canvas {
    display: none !important;
}

.force-translate {
    transform: translate(-120px, -120px) !important;
}

.b-footer{
 height:auto !important;	
}

@media screen and (max-width: 767px) {
    .profile-card {
        height: 550px !important;
    }

        .profile-card .card-img-top {
            height: 300px !important;
        }
}


