:root {
    --main-appColor1: #3692e9; /*#f313f0;*/
    --main-appColor1_90: rgb(54 146 233 / 90%);
    --main-appColor1_60: rgb(54 146 233 / 60%);
    --main-appBgColor: #f4f7f6;
    --main-wHover: #f5f5f5;
    --main-dHover: orange;
    /*#f313f0;*/
    /*rgb(71 130 239 / 93%)*/
}


/*Açılan sekmelerin renkleri için kullanılıyor.*/
.nav-tabs2 > li > a.active {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
    border-bottom: 1px solid white;
    transform: translateY(0.7px);
    font-weight: 600;
}

.displayDropdown {
    display: block;
}


.btn-login {
    color: #fff;
    background-color: orange;
    border: 0;
    border-color: orange; 
}

    .btn-login:hover {
        color: #fff;
        background-color: #3995ea;
        border-color: 3995ea;
    }







.tablonav.active { /* başlıkların altındaki farklı sayfaları ya da tabloları açan nav'lar için 'tablonav' */
    background-color: #f68c1e !important;
    color: white;
    border-radius: 10%;
}

.scrollbarStyle::-webkit-scrollbar-thumb {
    background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0.44, rgb(208 90 150)),color-stop(0.72, rgb(208, 67, 150)),color-stop(0.86, rgb(208, 67, 110)));
}

.scrollbarStyle::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
    background-color: #F5F5F5;
    border-radius: 10px;
}

.scrollbarStyle::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

.scrollbarStyle::-webkit-scrollbar {
    display: block;
}

.BGwhite {
    background-color: #ffffff !important;
}

.btnNewAdd {
}

    .btnNewAdd:hover {
        color: #f8a248 !important;
    }

.imgClose {
    top: 2px;
    right: 3px;
    width: 18px;
    height: 18px;
    position: absolute;
    -webkit-transition: -webkit-transform .25s, opacity .25s;
    -moz-transition: -moz-transform .25s, opacity .25s;
    transition: transform .25s, opacity .25s;
    opacity: 0.3;
    cursor: pointer;
}

li:hover > .imgClose {
    opacity: 0.25;
}

.imgClose:hover {
    -webkit-transform: rotate(270deg) !important;
    -moz-transform: rotate(270deg) !important;
    transform: rotate(270deg) !important;
    opacity: 1 !important;
}



.imgReload {
    top: 5px;
    /*left: 10px;*/
    right: 5px;
    width: 14px;
    height: 14px;
    position: absolute;
    -webkit-transition: -webkit-transform .25s, opacity .25s;
    -moz-transition: -moz-transform .25s, opacity .25s;
    transition: transform .25s, opacity .25s;
    opacity: 0.3;
    cursor: pointer;
}

li:hover > .imgReload {
    opacity: 0.25;
}

.imgReload:hover {
    -webkit-transform: rotate(270deg) !important;
    -moz-transform: rotate(270deg) !important;
    transform: rotate(270deg) !important;
    opacity: 1 !important;
}


.btn-Dpm {
    color: #fff;
    background-color: #f68c1e;
    border-color: #f68c1e;
}

    .btn-Dpm:hover {
        background: #f68c1e70;
        border-color: #f68c1e70;
        color: white;
    }


.k-widget.k-dropdown {
    display: revert;
}

.k-radio:checked + .k-radio-label:after {
    top: 2px !important;
    left: 2px !important;
}

body .k-datetimepicker .k-select {
    display: flex;
    align-items: center;
}

@media (max-width: 1200px) {
    .nav-tabs2 > li > span {
        display: block !important;
    }

    .imgClose {
        transform: rotate( 270deg ) !important;
        opacity: 1 !important;
    }
}


table#tblProjectList.dataTable tbody tr:hover {
    box-shadow: 0 0 8px 4px rgb(0 0 0 / 16%);
}

.sidebar-nav .metismenu ul .paddingContent::before {
    content: '--';
    position: absolute;
    /*left: 30px;*/
}




#dvTopnavSearchParent {
    display: flex;
    max-width: 500px;
    position: absolute;
    z-index: 999;
    top: 50%;
    transform: translateY(-50%);
}

/* main.css <=992'de offcanvas-active iken menüyü solda gizliyor; hamburger için override */
@media screen and (max-width: 992px) {
    .offcanvas-active #left-sidebar {
        left: 5px !important;
    }
}

/* Yeni Search Popup (dvTopnavSearchParent kullanmaz) */
#dvTopnavSearchPopupOverlay {
    position: fixed;
    inset: 0;
    z-index: 2400;
    background: rgba(128, 128, 128, 0.75);
    opacity: 0;
    transition: opacity 0.2s ease;
}

#dvTopnavSearchPopupOverlay.dvTopnavSearchPopupOverlay--open {
    opacity: 1;
}

#dvTopnavSearchPopup {
    position: fixed;
    top: 65px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2500;

    width: 0px;
    height: 0px;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;

    background: white;
    border-radius: 0.5rem;
    border: 1px solid #ced4da;

    display: flex;
    flex-direction: column;

    transition: width 0.35s ease, height 0.35s ease, opacity 0.2s ease;
}

#dvTopnavSearchPopup.dvTopnavSearchPopup--open {
    width: 90vw;
    height: 500px;
    opacity: 1;
    pointer-events: auto;
}

.dvTopnavSearchPopup__header {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #e9ecef;
}

#dvTopnavSearchPopupInput {
    width: 100%;
    flex: 1;
}

#dvTopnavSearchPopup .btn {
    flex: 0 0 auto;
}

.dvTopnavSearchPopup__body {
    padding: 8px 10px 12px 10px;
    flex: 1;
    overflow-y: auto;
}

.ulLastSearchsPopup {
    list-style: none;
    overflow-y: auto;
    padding-left: 0px;
    margin: 0;
}

/* Mobilde tüm ikonlar sığsın: padding'i küçült */
@media (max-width: 767px) {
    .navbar-nav .icon-menu {
        padding: 10px !important;
    }

    .navbar-nav .icon-menu i {
        font-size: 16px !important;
    }

    .navbar-nav .icon-menu .notification-dot {
        top: 9px !important;
        right: 5px !important;
    }
}

#dvTopnavSearch {
    z-index: 1;
    width: 300px;
}

#myTopnav .container-fluid {
    display: flex;
    align-items: center;
}

#myTopnav .navbar-right {
    float: none !important;
    margin-left: auto;
    width: auto !important;
    flex: 0 0 auto;
}

#myTopnav .navbar-noti {
    flex: 1 1 auto;
    min-width: 0;
    background: rgba(200, 200, 200, 0.7);
    height: 40px;
    border-radius: 6px;
    margin: 0 10px;
}

#btnTopnavSearch {
    z-index: 1;
}

#dvLastSearchs {
    position: absolute;
    background: white;
    padding-top: 35px;
    left: 0;
    width: 50%;
    border-radius: 0.25rem;
    border-top: 0px !important;
    height: 0px;
    transition: width 0.5s ease-in-out, transform 0.5s ease-in-out, opacity 0.5s ease-in-out, height 0.5s ease-in-out, border 0.5s ease-in-out;
    transform-origin: left center;
    /* Kapalı iken biraz yukarı-sola kayık; açılınca aşağı+sağa "genişleyerek" gitsin. */
    transform: translate(-20px, -10px);
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    will-change: transform, opacity;
}

#dvLastSearchs.dvLastSearchs--open {
    width: 200%;
    transform: translate(0px, 0px);
    opacity: 1;
    pointer-events: auto;
}


.ulLastSearchs {
    list-style: none;
    overflow: scroll;
    padding-left: 0px;
    padding-top: 6px;
    padding-bottom: 6px;
    height: 0px;
    transition: height 0.5s ease-in-out;
}



.liLastSearch {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 12px;
    width: 100%;
}

    .liLastSearch:hover {
        color: #800000;
        font-weight: 600;
    }

    .liLastSearch + .liLastSearch {
        margin-top: 6px;
    }


#messages {
    height: 100%;
}

.liMessageMenu + .liMessageMenu {
    margin-top: 6px;
}

.aMessageMenu {
    /*display: flex !important;*/
    align-items: center;
    justify-content: center;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    min-height: 40px;
}

#iframeMessage {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    -webkit-transition: opacity 0.5s ease-in-out;
    border: 1px solid var(--main-appColor1);
}

.theme-purple .sidebar-nav .metismenu > .liMessageMenu.active > a {
    border-color: transparent;
}

.liMessageMenu.active:after
/*,.liMessageMenu.active:before*/ {
    content: '';
    display: block;
    position: absolute;
    left: -20px;
    width: 0;
    height: 0;
    border-style: solid;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.liMessageMenu.active:after {
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    border-color: transparent transparent transparent #800000;
    border-width: 10px;
}

/*.liMessageMenu.active:before {
    top: 9px;
    border-color: transparent transparent transparent #a00;
    border-width: 11px;
}*/

.messageNotificationDot {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    position: relative;
    left: calc(100% - 6px );
    margin-top: -30px;
    background-color: var(--main-appColor1);
    color: var(--main-appColor1);
    display: none;
}

.messageNotificationDotActive {
    display: block;
}

.dvHeaderRow {
    display: flex;
    align-items: baseline;
    padding: 0px;
}

.hrHeader {
    color: var(--main-appColor1);
    opacity: .55;
}

.nav.nav-tabs-duS {
    border-bottom: 1px solid;
    border-color: var(--main-appColor1);
}

    .nav.nav-tabs-duS > li > a {
        color: var(--main-appColor1);
    }

    .nav.nav-tabs-duS > li.active-duS > a {
        color: white !important;
    }

    .nav.nav-tabs-duS > li > a:hover {
        background-color: var(--main-dHover);
        color: white !important;
    }

.active-duS {
    background-color: var(--main-appColor1_60);
    border-bottom: 1px solid #ffffff;
    color: white;
}

.inputGroupHover {
    padding: 8px 0px;
}

    .inputGroupHover:hover {
        background: whitesmoke;
    }

.dvInputLabel {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 8px;
}

    .dvInputLabel label {
        text-align: end;
    }

    .dvInputLabel:hover {
        background: whitesmoke;
    }



.dvInputLabelLeft {
    display: flex;
    align-items: center;
    padding: 8px;
}

    .dvInputLabelLeft label {
        text-align: end;
    }

    .dvInputLabelLeft:hover {
        background: whitesmoke;
    }


.dvInputGroupHeader {
    padding: 10px;
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: whitesmoke;
    color: var(--main-appColor1);
}


.inputRadioButtonGroup {
    margin: 0 0 -1em;
    padding: 0;
    display: flex;
}

    .inputRadioButtonGroup li {
        list-style: none;
    }


.btn-duS {
    color: #fff;
    background-color: var(--main-appColor1);
    border-color: var(--main-appColor1);
}

    .btn-duS:hover {
        color: #fff;
        background-color: var(--main-dHover);
        border-color: var(--main-dHover);
    }

    .btn-duS:focus {
        box-shadow: none;
    }

.btn-duS-orange {
    background-color: rgba(246, 140, 30, 0.5);
    border-color: rgba(246, 140, 30, 0.5);
}

    .btn-duS-orange:hover {
        color: #fff;
        background-color: rgba(246, 140, 30, 1);
        border-color: rgba(246, 140, 30, 1);
    }

.dus-f-alignItems-center {
    display: flex;
    align-items: center;
}

    .dus-f-alignItems-center p {
        place-self: normal;
    }

.dus-f-justifyContent-flexEnd {
    display: flex;
    justify-content: flex-end;
}


.k-multiselect .k-button {
    border-color: #963232 !important;
    background-color: #963232 !important;
}

.k-list > .k-state-selected {
    border-color: #963232 !important;
    background-color: #963232 !important;
}

.k-list > .k-state-focused.k-state-selected {
    box-shadow: inset 0 0 10px 3px #963232 !important;
}

.k-rating-label {
    display: none !important;
}

.k-autocomplete.k-state-focused, .k-dropdown-wrap.k-state-focused, .k-multiselect.k-header.k-state-focused, .k-numeric-wrap.k-state-focused, .k-picker-wrap.k-state-focused, .k-textbox:focus {
    border-color: maroon !important;
    box-shadow: 0 0 2px 0 maroon !important;
}


.nav-tabs .nav-link {
    border-bottom-color: var(--main-appColor1); /* #80000082;*/
}

    .nav-tabs .nav-link:hover {
        color: var(--main-appColor1);
        background-color: transparent;
        border-color: var(--main-appColor1) var(--main-appColor1) var(--main-appBgColor); /* #80000082 #80000082 #fff;*/
    }

    .nav-tabs .nav-link.active {
        color: var(--main-appColor1);
        background-color: transparent;
        border-color: var(--main-appColor1) var(--main-appColor1) var(--main-appBgColor);
    }


/* Form Input Label style*/
.formInputLabel {
    position: relative;
    margin-top: 13px;
}

    .formInputLabel input {
        width: 100%;
        padding: 10px 0;
        font-size: 16px;
        color: black;
        border: none;
        border-bottom: 1px solid maroon;
        outline: none;
        background: #fff;
    }

        .formInputLabel input:-webkit-autofill,
        .formInputLabel input:-webkit-autofill:hover,
        .formInputLabel input:-webkit-autofill:focus,
        .formInputLabel textarea:-webkit-autofill,
        .formInputLabel textarea:-webkit-autofill:hover,
        .formInputLabel textarea:-webkit-autofill:focus,
        .formInputLabel select:-webkit-autofill,
        .formInputLabel select:-webkit-autofill:hover,
        .formInputLabel select:-webkit-autofill:focus {
            -webkit-text-fill-color: #333;
            -webkit-box-shadow: 0 0 0px 1000px #fff inset;
            transition: background-color 5000s ease-in-out 0s;
        }

    .formInputLabel label {
        position: absolute;
        top: 10px;
        left: 15px;
        padding: 10px 0;
        font-size: 16px;
        color: maroon;
        pointer-events: none;
        transition: .5s;
    }

    .formInputLabel input:focus + label,
    .formInputLabel input:valid + label {
        top: -10px;
        color: maroon;
        font-size: 14px;
    }
/* Form Input Label style*/









/*  Visit Dashboard */

.dvInputLabel label {
    text-align: start;
}

.k-grid tr td {
    font-size: 12px !important;
}

.k-grid-header .k-header > .k-link, .k-header, .k-treemap-title {
    font-size: 12px !important;
}


/* The container */
.radioContainer {
    position: relative;
    padding-left: 35px;
    margin-bottom: 0px;
    margin-left: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default radio button */
    .radioContainer input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 80%;
}

/* On mouse-over, add a grey background color */
.radioContainer:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radioContainer input:checked ~ .checkmark {
    background-color: maroon;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.radioContainer input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.radioContainer .checkmark:after {
    top: 6px;
    left: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}


.form-input-wrp {
    position: relative;
    padding-bottom: 10px;
    height: 60px;
}

    .form-input-wrp .inputText {
        width: 100%;
        outline: none;
        border: none;
        font-size: 17px;
        border-bottom: 1px solid #dcdcdc;
        box-shadow: none !important;
        color: #934cd4;
        border-radius: 0px !important;
    }

        .form-input-wrp .inputText:focus {
            border-color: #934cd4;
            border-width: medium medium 1px;
        }

    .form-input-wrp .floating-label {
        position: absolute;
        pointer-events: none;
        top: 4px;
        left: 1px;
        transition: 0.2s ease all;
        color: gray;
    }

    .form-input-wrp input:focus ~ .floating-label,
    .form-input-wrp input:not(:focus):valid ~ .floating-label {
        top: -25px;
        left: 1px;
        font-size: 11px;
        color: gray;
        opacity: 1;
    }

    .form-input-wrp + .form-input-wrp {
        /*margin-top: 12px;*/
    }

select option {
    background-color: lightgray;
    filter: alpha(opacity=40);
    -moz-opacity: .40;
    opacity: .40;
}

select:focus > option:checked {
    background: lightgrey !important;
}

select:focus > option:hover {
    background: lightgrey !important;
}



/*  Visit Dashboard */




.iconH:hover {
    transform: scale(1.3);
    -moz-transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
}



.bgMndtry {
    color: red;
}

    .bgMndtry:hover {
        background-color: #f5f5f5;
    }





/*signalR message page*/
.duzenChat-app .duzenChat-people-list {
    width: 280px;
    position: absolute;
    left: 0;
    top: 0;
    padding: 20px;
    z-index: 7
}

.duzenChat-app .duzenChat {
    margin-left: 280px;
    border-left: 1px solid #eaeaea
}

.duzenChat-people-list {
    -moz-transition: .5s;
    -o-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s
}

    .duzenChat-people-list .duzenChat-list {
        max-height: 400px;
        overflow-y: scroll;
    }

        .duzenChat-people-list .duzenChat-list li {
            padding: 10px 15px;
            list-style: none;
            border-radius: 3px
        }

            .duzenChat-people-list .duzenChat-list li:hover {
                background: #efefef;
                cursor: pointer
            }

            .duzenChat-people-list .duzenChat-list li.active {
                background: #efefef
            }

            .duzenChat-people-list .duzenChat-list li .name {
                font-size: 10px
            }

        .duzenChat-people-list .duzenChat-list img {
            width: 45px;
            border-radius: 50%
        }

    .duzenChat-people-list img {
        float: left;
        border-radius: 50%
    }

    .duzenChat-people-list .about {
        float: left;
        padding-left: 8px
    }

    .duzenChat-people-list .status {
        color: #999;
        font-size: 13px
    }

.duzenChat .duzenChat-header {
    padding: 15px 20px;
    border-bottom: 2px solid #f4f7f6
}

    .duzenChat .duzenChat-header img {
        float: left;
        border-radius: 40px;
        width: 40px
    }

    .duzenChat .duzenChat-header .duzenChat-about {
        float: left;
        padding-left: 10px
    }

.duzenChat .duzenChat-history {
    padding: 20px;
    border-bottom: 2px solid #fff
}

    .duzenChat .duzenChat-history ul {
        padding: 0;
        min-height: 280px;
        max-height: 400px;
        overflow-y: scroll;
    }

        .duzenChat .duzenChat-history ul li {
            list-style: none;
            margin-bottom: 30px
        }

            .duzenChat .duzenChat-history ul li:last-child {
                margin-bottom: 0px
            }

    .duzenChat .duzenChat-history .message-data {
        margin-bottom: 15px
    }

        .duzenChat .duzenChat-history .message-data img {
            border-radius: 40px;
            width: 40px
        }

    .duzenChat .duzenChat-history .message-data-time {
        color: #434651;
        padding-left: 6px
    }

    .duzenChat .duzenChat-history .message {
        color: #444;
        padding: 18px 20px;
        line-height: 26px;
        font-size: 16px;
        border-radius: 7px;
        display: inline-block;
        position: relative
    }

        .duzenChat .duzenChat-history .message:after {
            bottom: 100%;
            left: 7%;
            border: solid transparent;
            content: " ";
            height: 0;
            width: 0;
            position: absolute;
            pointer-events: none;
            border-bottom-color: #fff;
            border-width: 10px;
            margin-left: -10px
        }

    .duzenChat .duzenChat-history .my-message {
        background: #efefef
    }

        .duzenChat .duzenChat-history .my-message:after {
            bottom: 100%;
            left: 30px;
            border: solid transparent;
            content: " ";
            height: 0;
            width: 0;
            position: absolute;
            pointer-events: none;
            border-bottom-color: #efefef;
            border-width: 10px;
            margin-left: -10px
        }

    .duzenChat .duzenChat-history .other-message {
        background: #e8f1f3;
        text-align: right
    }

        .duzenChat .duzenChat-history .other-message:after {
            border-bottom-color: #e8f1f3;
            left: 93%
        }

.duzenChat .duzenChat-message {
    padding: 20px
}

.online,
.offline,
.me {
    margin-right: 2px;
    font-size: 8px;
    vertical-align: middle
}

.online {
    color: #86c541
}

.offline {
    color: #e47297
}

.me {
    color: #1d8ecd
}

.float-right {
    float: right
}

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0
}

@media only screen and (max-width: 767px) {
    #left-sidebar {
        /*display: none;*/
      
    }
    .duzenChat-app .duzenChat-people-list {
        height: 465px;
        width: 100%;
        overflow-x: auto;
        background: #fff;
        left: -400px;
        display: none
    }

        .duzenChat-app .duzenChat-people-list.open {
            left: 0
        }

    .duzenChat-app .duzenChat {
        margin: 0
    }

        .duzenChat-app .duzenChat .duzenChat-header {
            border-radius: 0.55rem 0.55rem 0 0
        }

    .duzenChat-app .duzenChat-history {
        height: 300px;
        overflow-x: auto
    }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    .duzenChat-app .duzenChat-list {
        height: 650px;
        overflow-x: auto
    }

    .duzenChat-app .duzenChat-history {
        height: 600px;
        overflow-x: auto
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1) {
    .duzenChat-app .duzenChat-list {
        height: 480px;
        overflow-x: auto
    }

    .duzenChat-app .duzenChat-history {
        height: calc(100vh - 350px);
        overflow-x: auto
    }
}
/*signalR*/



.nav-tabs {
    border-bottom: 1px solid var(--main-appColor1);
}







.dvWidget:hover {
    box-shadow: 1px 8px 20px gray;
    -webkit-transition: box-shadow .1s ease-in;
    z-index: 1000 !important;
}

.dvWidgetBorder:hover {
    box-shadow: 1px 3px 10px gray;
    -webkit-transition: box-shadow .1s ease-in;
}






/* FORM INPUT*/
.form-input-wrp {
    position: relative;
    /*height: 60px;*/
}

    .form-input-wrp .inputText {
        width: 100%;
        outline: none;
        border: none;
        font-size: 17px;
        border-bottom: 1px solid #dcdcdc;
        box-shadow: none !important;
        color: #36366c;
        padding: 5px;
    }

        .form-input-wrp .inputText:focus {
            border-color: maroon;
            border-width: medium medium 1px;
        }

    .form-input-wrp .floating-label {
        position: absolute;
        pointer-events: none;
        top: 8px;
        left: 10px;
        transition: 0.2s ease all;
    }

    .form-input-wrp input:focus ~ .floating-label,
    .form-input-wrp input:not(:focus):valid ~ .floating-label {
        top: -15px;
        left: 10px;
        font-size: 11px;
        color: gray;
        opacity: 1;
    }

    .form-input-wrp textarea:focus ~ .floating-label,
    .form-input-wrp textarea:not(:focus):valid ~ .floating-label {
        top: -15px;
        left: 10px;
        font-size: 11px;
        color: gray;
        opacity: 1;
    }





/*Button CheckList*/
.checkList-cmp {
    background: #fff;
    color: #497081;
    padding: 10px 10px;
    border-radius: 5px;
    box-shadow: 2px 2px 14px rgba(0, 0, 0, 0.15);
    /*width: 300px;*/
}

.checkList-cmp__header {
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

    .checkList-cmp__header h2 {
        font-weight: 600;
        font-size: 1.2rem;
        margin: 4px auto;
        padding: 0;
    }

    .checkList-cmp__header p {
        padding: 0 0 5px;
        margin: 4px auto;
        font-size: 0.8rem;
    }

.checkList-cmp__list {
    list-style: none;
    padding: 0;
}

    .checkList-cmp__list li {
        padding: 10px 0 15px;
        margin: 0;
        text-align: left;
        width: 100%;
    }

        .checkList-cmp__list li label {
            cursor: pointer;
            font-size: 0.82rem;
            width: 100%;
            display: block;
        }

            .checkList-cmp__list li label input {
                float: right;
                opacity: 0;
            }

            .checkList-cmp__list li label span {
                position: relative;
                display: block;
                transition: all 550ms ease-in-out;
            }

            .checkList-cmp__list li label input + span::after {
                content: "";
                display: block;
                border: 1px solid #497081;
                border-radius: 13px;
                height: 13px;
                width: 13px;
                position: absolute;
                right: 0;
                top: 1px;
                z-index: 10;
                transition: all 550ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
                transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
            }

            .checkList-cmp__list li label input + span::before {
                content: "✔";
                display: block;
                font-size: 22px;
                height: 13px;
                width: 13px;
                position: absolute;
                right: -2px;
                top: -8px;
                z-index: 10;
                opacity: 0;
            }

            .checkList-cmp__list li label input:checked + span {
                color: #ccc;
                transition: all 550ms ease-in-out;
            }

                .checkList-cmp__list li label input:checked + span::after {
                    opacity: 0;
                    height: 17px;
                    width: 17px;
                    top: -2px;
                    right: -2px;
                }

                .checkList-cmp__list li label input:checked + span::before {
                    opacity: 1;
                    transition: all 550ms ease-in-out;
                }




.k-list-filter > .k-textbox {
    font-size: 22px;
}

.k-dropdown-wrap {
    height: 22px !important;
    padding-top: 5px !important;
}

.k-list-container {
    position: relative !important;
    width: max-content !important;
}


.form-group {
    margin-bottom: 1rem;
}

a {
    color: var(--main-appColor1);
    text-decoration: none;
    background-color: transparent;
}

.btn-block {
    display: block;
    width: 100%;
}

.float-right {
    float: right !important;
}

.badge {
    color: chocolate;
}

label {
    display: inline-block;
    margin-bottom: .5rem;
}

.form-control {
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
}

.dropdown-toggle::after {
    display: none;
}
