@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    /*Fonts*/
    /*--font-nunito: 'Nunito Sans', sans-serif;
    --font-openSans: 'Open Sans', sans-serif;
    --font-poppins: 'Poppins', sans-serif;*/
    --fontFamily: 'Montserrat', sans-serif !important;

    /*Colors*/
    --primary: #009CFF;
    --light: #F3F6F9;
    --dark: #191C24;
    --font-size: 11px;
    --TitleText:#656565;

    /*card style*/
    --Boxshadow: 0px 3px 15px #0000000f;
    --BgColor: #fff;
    --cardRadius: 5px;
    --root-path: '';
}

*{
    box-sizing:border-box;
}

body{
    margin: 0;
    padding: 0;
    color: var(--dark);
    font-family: var(--fontFamily);
    font-size: var(--font-size);
}

::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #C1C1C1; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #A8A8A8; 
}

a {
    color: var(--primary);
    text-decoration: none;
}


.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 1;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
    padding: 5px 12px;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Layout ***/
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    height: 100vh;
    overflow-y: auto;
    background: linear-gradient(0deg, #c8e0ff, #ffffff);
    transition: 0.5s;
    z-index: 2;
    border-right: 2px solid #00000000;
    box-shadow: 1px 1px 10px #0000002e;
}

.content {
    margin-left: 300px;
    min-height: 100vh;
    background: #f9f9f9;
    transition: 0.5s;
}

/*** Navbar ***/
.sticky-top{
    z-index:2 !important;
}
.sidebar .navbar .navbar-nav .nav-link {
    padding: 7px 20px 7px 7px;
    color: var(--dark);
    font-weight: 600;
    border-left: 3px solid var(--light);
    border-radius: 0 30px 30px 0;
    outline: none;
}

.sidebar .navbar .navbar-nav .nav-link:hover,
.sidebar .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
    background: #FFFFFF;
    border-color: var(--primary);
    box-shadow: 2px 2px 5px #00000017;
}

.sidebar .navbar .navbar-nav .nav-link i {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 40px;
}

.sidebar .navbar .navbar-nav .nav-link:hover i,
.sidebar .navbar .navbar-nav .nav-link.active i {
    background: var(--light);
}

.sidebar .navbar .dropdown-toggle::after, .sidebar .navbar .dropdown-submenu::after {
    position: absolute;
    top: 15px;
    right: 8px;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
}

.sidebar .navbar .dropdown-toggle[aria-expanded=true]::after, .sidebar .navbar .dropdown-submenu[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.sidebar .navbar .dropdown-submenu {
    padding-left: 30px !important;
}
.dropdown-menu.submenu .dropdown-item {
    margin-left: 67px !important;
}

.sidebar .navbar .dropdown-item {
    padding: 12px 0 12px 5px;
    margin-left: 43px;
    border-radius: 0 30px 30px 0;
    white-space: normal !important;
    line-height: 12px !important;
    color: #000000;
    font-size: 12px;
    border-radius: 0;
    width: auto;
}
.sidebar .navbar .dropdown-item + .dropdown-item{
    border-top: 1px solid #00000033;
}
.content .navbar{
    background: linear-gradient(107deg, #fdfeff, #ebf4ff);
    box-shadow: 2px 4px 3px #0000001a;
}
.content .navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 12px 0;
    color: var(--dark);
    outline: none;
}

.content .navbar .navbar-nav .nav-link:hover,
.content .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.content .navbar .sidebar-toggler,
.content .navbar .navbar-nav .nav-link i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 40px;
}

.dropdown-menu{
    font-size: var(--font-size) !important;
    padding: 0 !important;
}

.content .navbar .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
}

.content .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}
.cstmListItems{
    background: rgb(245, 245, 245);
    box-shadow: rgba(0, 0, 0, 0.39) 0px 0px 10px;
    padding: 0px;
    list-style:none;
    max-height:300px;
    overflow-y:auto;
}
.cstmListItems li{
    padding: 5px !important;
    font-size:10px;
    font-weight:500;
}
.cstmListItems li+li{
   border-top:1px solid grey;
}
.cardTitleStyle{
    background: linear-gradient(45deg, #009bfe, #009cff);
    padding: 8px;
    border-bottom: 1px solid white;
    box-shadow: 0 4px 4px #0000001f, inset 2px 3px 5px #ffffff82;
}
.cardTitleStyle label{
    color: white;
    margin: 0;
}
/*** Date Picker ***/
.picker{
   position: relative;
   bottom:unset;
}

.datepicker-dropdowns{
    position:relative;
}
.picker--opened {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #00000024;
  /*backdrop-filter: blur(5px);*/
  z-index:6;
}
.picker__holder {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
}
.picker__day{
    font-size: 15px;
    font-weight: 500;
}
.icker__day--outfocus{
    color:#939393;
}
.picker__nav--prev:hover, .picker__nav--next:hover {
    cursor: pointer;
    background: #ffffff40;
}
.bootstrap-datetimepicker-widget.bottom {
  top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

/*.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}*/


.picker__header{
    background: #0089ec;
    padding: 6px 0px;
    color: white;
    box-shadow: 0 2px 5px #00000042, inset 4px 4px 5px #ffffff8c;
    border-radius: 3px;
}
.picker__month{
    font-size: 16px;
}
.picker__year{
    color: #0089ec;
    background: white;
    padding: 1px 8px;
    border-radius: 30px;
    box-shadow: 0 3px 5px #00000026;
    font-size: 14px;
}
.picker__nav--prev, .picker__nav--next{
    top: 13%;
    color: white !important;
}
.picker__nav--next{
    right: 0em;
}
.picker__nav--prev{
    left: 0em;
}
.picker__nav--prev:before{
    border-right: 0.75em solid #fff;
}

.picker__nav--next:before{
    border-left: 0.75em solid #fff;
}
.picker__table tbody tr:first-child{
    background: none !important;
    box-shadow: none !important;
}
.picker__table thead tr:first-child{
    background: none !important;
    box-shadow: none !important;
}

.picker__table tbody tr:nth-child(2n+2){
    background: unset !important;
}
.picker__weekday{
    color: #0062a9 !important;
    font-weight: 600 !important;
    font-size: 12px !important;
}
/*** Testimonial ***/
.progress .progress-bar {
    width: 0px;
    transition: 2s;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 5px solid var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--dark);
    border-color: var(--primary);
}


/*Table*/
/* Start Created by Santanu 14-11-2023 */
/*.custTableUI tr th, .custTableUI tr td {
    vertical-align: middle !important;
}
.custTableUI tr:first-child {
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.5);
}
.custTableUI tr th {
    font-weight: bold;
    font-size:12px;
    line-height:13px;
    padding:15px 5px;
    background: #ebebeb;
}
.custTableUI tr td {
    font-weight: normal;
    font-size:12px;
    line-height:13px;
    padding:10px 5px;
}
.custFormLabel {
    font-size: 13px;
    font-weight: 600;
}*/

.form-group {
    margin-bottom: 10px;  
}
.italicTx {
    font-style: italic !important;
    font-size: 10px !important;
    font-weight: 500;
}
.checkNradioView {
    padding-top: 7px;
    display: flex;
    align-items: center;
}
.checkNradioView input {
    width: 17px;
    height: 17px;
    margin-right: 4px;
}
.checkNradioView label {
    font-size: 13px;
    line-height: 15px;
    margin-right:12px;
    margin-bottom: 0px;
}
.checkNradioView label:last-child {
    margin-right:0px;
}
.txByImg {
    width: 22px;
    height: 22px;
    margin: 0px 5px;
}

.modalPopup .modal-content{
    box-shadow: 8px 11px 10px #00000073;
    border-radius: 10px;
    border: none;
    min-width: 400px;
}
.modalBackground {
    background-color: #00000073;
    /*backdrop-filter: blur(15px);*/
    z-index:2 !important;
}
.modalPopup{
    z-index:3 !important;
}
.modalPopup .modal-header{
    background: linear-gradient(45deg, #009cff, #0085d9);
    padding: 10px 15px;
    box-shadow: 0px 3px 5px #0000004f, inset 0px 7px 5px #ffffff52;
}
.modalPopup .modal-header span{
    color: White !important;
    filter: drop-shadow(1px 2px 3px #00000030);
    font-size: 17px;
    font-weight: 500;
}
.modalPopup .modal-header .close{
    color: white;
    opacity: 1;
}
.modalPopup .modal-body {
    padding: 15px;
    max-height:500px;
    overflow:auto
}
.modalPopup .modal-footer {
    border-top: 1px solid #b1b1b178;
    padding: 5px 15px;
}
.modalPopup .select2-container {
    display: block !important;
    z-index: 3;
}
/*.modal-body span{
    filter: drop-shadow(2px 3px 2px #00000030);
}
.modal-body .form-label{
    color: Black;
    display: flex;
}
.modal-body select{
    background: #105e8d;
}
.modal-body table td{
    color:black;
}
.modal-body input,
.modal-body textarea{
    background: #105e8d;
}*/
.modalPopup .modal-footer .okBtnStyle{
    border: 1px solid white;
    color: white;
    transition: 0.3s;
    box-shadow: 1px 7px 10px -3px #00000069;
    background: #009cff;
}
.modalPopup .modal-footer .submitBtnStyle{
    border: 1px solid white;
    /*border-radius: 30px;*/
    color: white;
    font-weight: 300;
    transition: 0.3s;
    width: 80px;
    box-shadow: 1px 7px 10px -3px #00000069, inset 5px 0px 10px #00000042;
    background: linear-gradient(45deg, #77ff93, #3ba744);
}

/* // End Created by Santanu 14-11-2023 */
/*.footerStyle{
    background: #ffffff;
    padding: 7px 15px;
    border-radius: 20px 20px 0 0;
    box-shadow: -1px -2px 5px #0000001c;
    color: black;
    position: absolute;
    bottom: 0;
    width: fit-content;
    left: 50%;
    transform: translate(-50%, 0%);
}*/
.bg-light{
    background-color: #fcfcfc !important;
    box-shadow: 0px 3px 15px #0000000f;
}
.contentHeight{
    min-height:83dvh;
}
.avatarStyle{
    width: 40px;
    height: 40px;
    box-shadow: 0px 0px 5px #0000004f;
}
.avatarStyle + span{
    font-weight: 700;
}
.cstmCardStyle{
    box-shadow: var(--Boxshadow);
    background: var(--BgColor);
    border-radius: var(--cardRadius);
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, label, small, p{
    color: var(--TitleText);
    font-family: var(--fontFamily);
}

/*form style*/
.formGap + .formGap{
   margin-top:10px;
}
label, .cstmLable{
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 12px;
    display: inline-block;
}
.form-control, .select2-selection{
    font-size: 12px;
    border: 1px solid #e8e8e8;
    border-bottom: 2px solid #9b9b9b !important;
    border-radius: 0 !important;
    font-weight: 500;
    font-family: var(--fontFamily);
    box-shadow: 0px 5px 7px 0px #0000001c;
    min-height: 32px !important;
    background-color: #fffefe !important;
    z-index: 1;
}
.SumoSelect {
    width:100%;
}
.SumoSelect .CaptionCont {
    font-size: 13px;
    border: 1px solid #e8e8e8;
    border-bottom: 2px solid #9b9b9b !important;
    border-radius: 0 !important;
    font-weight: 500;
    font-family: var(--fontFamily);
    box-shadow: 0px 5px 7px 0px #0000001c;
    min-height: 40px !important;
    background-color: #fffefe !important;
    z-index: 1;
    width:100%;
}
.form-select:focus,
.form-control:focus{
    border-bottom: 3px solid #009cff;
    box-shadow:none;
}
.cstmSearch{
    background: transparent;
    box-shadow: none;
    border-bottom: 2px solid black !important;
    font-weight: 500;
}
.dragDropSelect{
    height:200px !important;
    overflow: auto;
    position:relative;
    z-index:1;
}
.dragDropSelect option{
    font-weight:600;
    padding:7px 5px;
    transition:0.2s;
}
.dragDropSelect option:hover{
    background: #f1f1f1 !important;
}
.dragDropSelect option[selected="selected"]{
    background: transparent;
}

/*table style*/
.grid_pagger td{
    text-align: center;
    text-align: -webkit-center;
}
.grid_pagger td table tr{
    box-shadow: none !important;
    display: flex;
    gap: 7px;
    background: transparent !important;
}
.grid_pagger td table tr td a,
.grid_pagger td table tr td span{
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 3px 5px #00000030;
    border: 1px solid #c3c3c3;
    cursor:pointer;
    line-height: initial;
}
.grid_pagger td table tr td span{
    background: #009cff;
    color: white;
}
.grid_pagger table td a:hover,
.grid_pagger table td a:focus{
   background: #009cff;
   transition:0.4s;
}

.grid_pagger table td:hover a,
.grid_pagger table td:focus a {
    color: white;
}
.table{
    background: white;
    margin: 0;
}
.table tbody tr:first-child{
    background: #e4f0ff;
    box-shadow: -2px 3px 5px #00000024;
    position: relative;
    z-index: 1;
}
.modalPopup .table tbody tr:first-child{
    position: relative;
    z-index: 0;
}
/*.table tbody tr:nth-child(2n+1){
    background: #ffffff;
}*/

.table tbody tr:nth-child(2n+2){
    background: #f9f9f9;
}
.table tbody tr th {
    color: #483d3d;
    font-weight: 700;
    vertical-align: middle;
    font-size: 10px;
    padding: 3px;
}
.table tbody tr td {
    font-weight: 500;
    color: #2d2a2a;
    vertical-align: middle;
    font-size: 10px;
    padding: 3px;
}
.table tbody tr td a{
    color: #0031ff;
    font-weight: 600;
    cursor:pointer;
}
.table-responsive{
    box-shadow: var(--Boxshadow);
    /*overflow-x: unset;*/
}
/*.table tbody tr:hover{
    transition:0.4s;
    background: #edf5ff;
    position: relative;
    z-index:1;
}*/

/*button styles*/
.btn {
    box-shadow: 1px 3px 7px #00000054;
    transition:0.2s;
    display: inline-flex;
    gap: 5px;
    align-items: baseline;
    justify-content:center;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 1px;
}
.btn:hover,
.btn:focus {
    transform:scale(1.03);
}
.btn i{
    font-size: 13px;
    filter: drop-shadow(0px 3px 3px #00000030);
}
.loginBtn{
    font-size: 17px !important;
    font-weight: 600;
}
/*.locationBtn{
    background: linear-gradient(1deg, #ffffff, #ffffff);
    padding: 7px 20px;
    line-height: normal;
    color: #000000;
    border: 1px solid #a5a5a5;
    font-weight: 500;
}*/
.transferBtn{
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
}
.locationBtn {
    background: linear-gradient(45deg, #fffaa8, #acffc2);
    color: black;
    font-weight: 500;
    padding: 7px 20px;
    border: none;
    border-radius: 5px;
    /*border: 1px solid #a5a5a5;*/
    line-height: normal;
}
.uploadBtn {
    border: 1px dashed #009cff;
    color: black;
    font-weight: 500;
    padding: 5px 20px;
}
.transferBtn input{
    position: relative;
    z-index: 0;
    background: #0ea1fe;
    color: white;
    /*border-radius: 30px;*/
    padding: 5px 20px;
    font-size: 20px;
}
.box1Arrow:before{
    content:'';
    position:absolute;
    top:50%;
    left: 70px;
    transform: translate(-50%, -50%);
    background: linear-gradient(90deg, #009cff, transparent);
    width: 60px;
    height: 2px;
    z-index: 0;
}
.box2Arrow:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    background: linear-gradient(270deg, #009cff, transparent);
    width: 60px;
    height: 2px;
    z-index: 0;
}
.btn{
    font-size: 13px;
}
.btn[title="Search"]{
    background: linear-gradient(321deg, #02629f, #20a9ff);
    /*border-radius: 30px;*/
    padding: 7px 20px;
    border: none;
    line-height: normal;
    color: white;
}
.btn-submit{
    background: linear-gradient(321deg, #02629f, #20a9ff);
    /*border-radius: 30px;*/
    padding: 7px 20px;
    border: none;
    line-height: normal;
    color: white;
}
.btn-info {
    color: white;
}

.btn-secondary {
    color: #ffffff;
    background: linear-gradient(160deg, #4ee3ff, #0c8da6);
    border: none;
    padding: 6px 12px;
}

.btn-back {
    color: #ffffff;
    background-color: #848484;
    border-color: #848484;
    padding: 4.5px 12px;
}
.btn-reset {
    background-color: #e8e8e8;
    border: 1px solid #cbcbcb;
    color: black;
    padding: 5.5px 12px;
}
.btn-success {
    color: #fff;
    background-color: #22da07;
    border-color: #22da07;
    padding: 4.8px 12px;
}
.btn-danger {
    color: #fff;
    background-color: #ff4444;
    border-color: #ff4444;
    padding: 5.5px 12px;
}
.btn-reset:hover,
.btn-reset:focus{
    background-color: #e8e8e8;
    border: 1px solid #e8e8e8;
    color: black;
}
.btn-submit:hover,
.btn-submit:focus{
    background: linear-gradient(321deg, #02629f, #20a9ff);
    color: #ffffff;
    border: none;
}
.btn-back:hover,
.btn-back:focus{
    color: #ffffff;
    background-color: #848484;
    border-color: #848484;
}
.btn-secondary:hover,
.btn-secondary:focus {
    color: #ffffff;
    background-color: #514a4a;
    border-color: #ffffff;
}
.btn-success:hover,
.btn-success:focus {
    color: #fff;
    background-color: #22da07;
    border-color: #22da07;
}

.btn-danger:hover,
.btn-danger:focus {
    color: #fff;
    background-color: #ff4444;
    border-color: #ff4444;
}

.dropdown-item:hover, 
.dropdown-item:focus{
    transition:0.2s;
    background: linear-gradient(90deg, transparent, #bbdaff);
}
.cancelBtnStyle{
    border: 1px solid red;
    font-weight: 500;
    transition: 0.3s;
    /*box-shadow: 1px 7px 10px -3px #00000069;*/
    background: white;
    color: red !important;
}
.cancelBtnStyle:hover,
.cancelBtnStyle:focus {
    color: red !important;
    background-color: white;
    border: 1px solid red;
}
/*select2 related style*/
.form-group .select2-container{
    display: block !important;
    z-index: 1;
}
.select2-dropdown{
    box-shadow: 0px 11px 15px 3px #00000024;
}
.select2-search__field{
    box-shadow: 0px 5px 10px #00000026;
    border: 1px solid #cbcbcb;
}
/*.select2-container{
    display: block !important;
    z-index: 1;
}*/
.select2{
    width: 100% !important;
}
.select2-container--disabled{
    filter: contrast(0.9);
}
.overflowStyle{
    max-height: 300px;
    overflow: auto;
}
/*background related style*/
.backGrundBg{
    min-height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat:no-repeat;
    animation: bgImageAnimate 10s infinite alternate linear;
}

@keyframes bgImageAnimate {

      0% {
        background-image: url('/ProleadDemo/assets/Images/bg2.png');
        /*background-image: url()*/
      }
    50% {
        background-image: url('/ProleadDemo/assets/Images/bg1.jpg');
    }
    100% {
        background-image: url('/ProleadDemo/assets/Images/bg3.png');
    }

      /*0% {
        background-image: url(var(--root-path) '/assets/Images/bg2.png');
      }
      50% {
        background-image: url(var(--root-path) '/assets/Images/bg1.jpg');
      }
      100% {
        background-image: url(var(--root-path)'/assets/Images/bg3.png');
      }*/
}

.loginSection{
    background: linear-gradient(90deg, #ffffffa8, white);
    backdrop-filter: blur(6px);
    box-shadow: 5px 9px 8px 0px #0000000f;
}

.exceptionStyle{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80dvh;
    flex-direction: column;
}
.exceptionStyle img{
    width: 400px;
}
.exceptionStyle p {
    font-size: 26px;
    margin: 5px;
    font-weight: 500;
    color:black;
}
.arrowInputStyle{
    width: 26px;
    border-width: 0px;
    background: #ffffff;
    padding: 3px;
    box-shadow: 0px 2px 5px #0000001c;
    border: 1px dashed #8acaee !important;
    transition:0.1s;
}
.arrowInputStyle:hover,
.arrowInputStyle:focus {
    border: 2px dashed #478cb3 !important;
}

input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-size: 11px;
    color: #B9B9B9 !important;
}
input::-moz-placeholder { /* Firefox 19+ */
    font-size: 11px;
    color: #B9B9B9 !important;
}
input:-ms-input-placeholder { /* IE 10+ */
    font-size: 11px;
    color: #B9B9B9 !important;
}
input:-moz-placeholder { /* Firefox 18- */
    font-size: 11px;
    color: #B9B9B9 !important;
}
input[readonly="readonly"] {
    background-color: #f3f3f3 !important;
    border-bottom: 2px solid #c2c2c2 !important;
}
input[readonly="readonly"]:focus {
    border: none;
    box-shadow: 0px 5px 7px 0px #0000001c;
}
.LeadTitle{
    margin: auto 10px;
    padding: 5px;
    background: linear-gradient(45deg, #0971b4, #1fa5fa);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 600;
    position:relative;
}
.LeadTitle:after{
    content:'';
    position:absolute;
    bottom: -16px;
    left: 50%;
    transform: translate(-50%, 0%);
    background: linear-gradient(0deg, #0d7ac0, #0d7ac059);
    width: 3px;
    height: 16px;
    border-radius: 30px;
}
.pipeLineBg{
    /*background: #f0f0f0;*/
    box-shadow: 0px 3px 5px #0000003d;
    /*border-radius: 10px;*/
    margin-top: 20px;
}
.pipeLineBg>.d-flex{
    padding: 10px;
    border: 1px solid #d5d5d5;
    /*background: #f4f4f4;*/
}
.contractorBg{
    background: #f0f0f0;
    box-shadow: 0px 3px 5px #0000003d;
    padding: 5px;
}
.ApprovalBg{
    background: #f0f0f0;
    box-shadow: 0px 3px 5px #0000003d;
    padding: 5px;
}
.SalesBg{
    background: #f0f0f0;
    box-shadow: 0px 3px 5px #0000003d;
    padding: 5px;
}
.totalCards div{
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.totalCards div + div{
     border-top: 1px solid #0000000f;
}
.totalCards div label{
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    color: black;
}
.totalCards div span{
    font-weight: 600;
}
.smallCard, .totalCards {
    background: linear-gradient(90deg, #e1e8ed, transparent);
}
.smallCard div:first-child {
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.smallCard div:first-child label{
    margin: 0;
    font-size: 10px;
    font-weight: 500;
    color: black;
}
.smallCard div:first-child span {
    font-weight: 600;
}
.smallCard div:last-child {
    border-top: 1px solid #0000000f;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
}
.smallCard div:last-child label{
    font-size: 11px;
}
.smallCard div:last-child span{
    font-size: 20px;
    font-weight: 600;
}

.titleCard {
    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 5px 7px;
    background: #0d7ac0;
    text-align: center;
}
.titleCard label{
    color: white;
    font-size: 12px;
}
.titleCard a {
 color: white;
}
.gridTwoStyle{
    display:grid;
    grid-template-columns:1fr 1fr;
    border-bottom: 1px solid white;
}
.logoStyle{
    height: 45px;
}
.statusCompleted, .statusProgress, .statusSuspend{
    text-align: center;
    font-weight: 600;
    color: white !important;
    font-size: 13px;
    letter-spacing: 1px;
}
.statusCompleted {
    background: #3dc98c !important;
}
.statusProgress {
    background: #fcb441 !important;
}
.statusSuspend {
    background: #f55858 !important;
}
/*.smallCard{
    background: #f7f7f7;
    box-shadow: 0 0 5px #d5d5d5;
    border-radius: 2px;
    padding: 5px;
}
.titleCard{
    background: linear-gradient(45deg, #cde3ff, transparent);
    border-bottom: 1px solid #d5d5d5;
    box-shadow: 0 0 5px #d5d5d5;
    border-radius: 2px;
    padding: 5px;
}*/


/*animation styles*/

/*table*/
.modalPopup .table tbody tr, .noanimation .table tbody tr {
    animation: none !important;
}
.table tbody tr{
    animation: fadeIn 1s ease-in both;
    animation-fill-mode: none;
}
.grid_pagger table tbody tr td,
.nav-item{
    animation: fadeUp 1s ease-in both;
}
.table tbody tr:nth-child(1),
.grid_pagger table tbody tr td:nth-child(1),
.nav-item:nth-child(1),.row .form-group:nth-child(1) {
	animation-delay: 100ms;
}
.table tbody tr:nth-child(2),
.grid_pagger table tbody tr td:nth-child(2),
.nav-item:nth-child(2),.row .form-group:nth-child(2) {
	animation-delay: 200ms;
}
.table tbody tr:nth-child(3),
.grid_pagger table tbody tr td:nth-child(3),
.nav-item:nth-child(3),.row .form-group:nth-child(3) {
	animation-delay: 300ms;
}
.table tbody tr:nth-child(4),
.grid_pagger table tbody tr td:nth-child(4),
.nav-item:nth-child(4),.row .form-group:nth-child(4) {
	animation-delay: 400ms;
}
.table tbody tr:nth-child(5),
.grid_pagger table tbody tr td:nth-child(5),
.nav-item:nth-child(5),.row .form-group:nth-child(5) {
	animation-delay: 500ms;
}
.table tbody tr:nth-child(6),
.grid_pagger table tbody tr td:nth-child(6),
.nav-item:nth-child(6),.row .form-group:nth-child(6) {
	animation-delay: 600ms;
}
.table tbody tr:nth-child(7),
.grid_pagger table tbody tr td:nth-child(7),
.nav-item:nth-child(7),.row .form-group:nth-child(7) {
	animation-delay: 700ms;
}
.table tbody tr:nth-child(8),
.grid_pagger table tbody tr td:nth-child(8),
.nav-item:nth-child(8),.row .form-group:nth-child(8) {
	animation-delay: 800ms;
}
.table tbody tr:nth-child(9),
.grid_pagger table tbody tr td:nth-child(9),
.nav-item:nth-child(9),.row .form-group:nth-child(9) {
	animation-delay: 900ms;
}
.table tbody tr:nth-child(10),
.grid_pagger table tbody tr td:nth-child(10),
.nav-item:nth-child(10),.row .form-group:nth-child(10) {
	animation-delay: 1000ms;
}
.table tbody tr:nth-child(11),
.grid_pagger table tbody tr td:nth-child(11),
.nav-item:nth-child(11),.row .form-group:nth-child(11) {
	animation-delay: 1100ms;
}
.table tbody tr:nth-child(12),
.grid_pagger table tbody tr td:nth-child(12),
.nav-item:nth-child(12),.row .form-group:nth-child(12) {
	animation-delay: 1100ms;
}
.table tbody tr:nth-child(13),
.grid_pagger table tbody tr td:nth-child(13),
.nav-item:nth-child(13),.row .form-group:nth-child(13) {
	animation-delay: 1100ms;
}
.table tbody tr:nth-child(14),
.grid_pagger table tbody tr td:nth-child(14),
.nav-item:nth-child(14),.row .form-group:nth-child(14) {
	animation-delay: 1100ms;
}
.table tbody tr:nth-child(15),
.grid_pagger table tbody tr td:nth-child(15),
.nav-item:nth-child(15),.row .form-group:nth-child(15) {
	animation-delay: 1100ms;
}
.table tbody tr:nth-child(16),
.grid_pagger table tbody tr td:nth-child(16),
.nav-item:nth-child(16),.row .form-group:nth-child(16) {
	animation-delay: 1100ms;
}
.table tbody tr:nth-child(17),
.grid_pagger table tbody tr td:nth-child(17),
.nav-item:nth-child(17),.row .form-group:nth-child(17) {
	animation-delay: 1100ms;
}
.table tbody tr:nth-child(18),
.grid_pagger table tbody tr td:nth-child(18),
.nav-item:nth-child(18),.row .form-group:nth-child(18) {
	animation-delay: 1100ms;
}
.table tbody tr:nth-child(19),
.grid_pagger table tbody tr td:nth-child(19),
.nav-item:nth-child(19),.row .form-group:nth-child(19) {
	animation-delay: 1100ms;
}
.table tbody tr:nth-child(20),
.grid_pagger table tbody tr td:nth-child(20),
.nav-item:nth-child(20),.row .form-group:nth-child(20) {
	animation-delay: 1100ms;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translate3d(0, -20%, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translate3d(0, 50px, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.tableHeader1 tr:first-child{
    background: #707dfc !important;
}
.tableHeader2 tr:first-child{
    background: #0088bc !important;
}
.tableHeader3 tr:first-child{
    background: #fcb441 !important;
}
.tableHeader4 tr:first-child{
    background: #3dc98c !important;
}
.tableHeader1 th,
.tableHeader2 th,
.tableHeader3 th,
.tableHeader4 th{
    color:white !important;
}

/*checkBox Style*/
.cstmCheckBox .checkbox label{
    position: relative;
    min-height: 30px;
    padding-left: 32px;
    margin-bottom: 0;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 13px;
}
.cstmCheckBox .checkbox label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    margin: 4px;
    width: 21px;
    height: 20px;
    transition: transform 0.28s ease;
    border-radius: 3px;
    border: 2px solid green;
}
.cstmCheckBox .checkbox label:after {
    content: '';
    display: block;
    width: 11px;
    height: 8px;
    border-bottom: 3px solid White;
    border-left: 3px solid White;
    transform: rotate(-45deg) scale(0);
    transition: transform ease 0.25s;
    position: absolute;
    top: 8px;
    left: 9px;
}
.cstmCheckBox input[type="checkbox"] {
    width: auto;
    opacity: 0.00000001;
    position: absolute;
    left: 0;
    margin-left: -20px;
}
.cstmCheckBox input[type="checkbox"]:checked ~ label{
    color:black;
}
.cstmCheckBox input[type="checkbox"]:checked ~ label:before {
    border: 2px solid #05a105;
    box-shadow: 0px 2px 9px #00000030;
    background: #05a105;
;
}
.cstmCheckBox input[type="checkbox"]:checked ~ label:after {
    transform: rotate(-45deg) scale(1);
}
.cstmCheckBox input[type="checkbox"]:focus + label::before {
    outline: 0;
}

input[type="checkbox"] {
    transform: scale(1.3);
}


input[type="file"] {
    border: 2px dashed #0000002e;
    width: 100%;
    /*height: 100px;
    padding: 35px 15px;*/
    box-shadow: 0 15px 10px -10px #0000002e;
}

input::file-selector-button{
    height: 28px !important;
}

/*toaster Style*/
.bgRed {
    background: linear-gradient(90deg, #ff6b6b, #ff5d5dc7);
}
.bgGreen{
    background: linear-gradient(70deg, #1bd563, #5dffb8c7);
}
.bgOrange {
  background: linear-gradient(0deg, #c3a122, #fdbb2d);
}
.bgErrorMsg {
  background: linear-gradient(0deg, #c70404, #ffffff);
}
.cstmToaster{
    position: fixed;
    top: 20px;
    right: 10px;
    z-index: 4;
    width: 330px;
    text-align: end;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px;
    font-size: 17px;
    border-radius: 3px;
    font-weight: 500;
    color: white;
    backdrop-filter: blur(5px);
    box-shadow: 0px 3px 5px #00000054, inset 3px 3px 5px #ffffff85;
    border-bottom: 2px solid #f9f9f9;
    animation: movein 0.5s ease-out forwards, moveout 0.5s 3s ease forwards;
}

@keyframes movein {
  0% { right: -330px; opacity:0; }
  40% { right: 50px; }
  60% { right: -20px; }
  100% { right: 10px; opacity:1;}
}

@keyframes moveout {
  0% { right: 10px; opacity:1}
  40% { right: 50px; }
  100% { right: -500px; opacity:0}
}

/*loader*/
.lds-roller {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.loaderWrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #00000061;
    z-index: 10;
    pointer-events: bounding-box;
    backdrop-filter: blur(3px);
    overflow: hidden;
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  margin: -4px 0 0 -4px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.checkBoxCenter td{
    text-align:center !important;
}
.listStyle{
    position: relative;
    padding-left: 60px;
    padding-top: 10px;
}
.listStyle + .listStyle{
    margin-top: 10px;
    border-top: 1px solid #0000001f;
}
.listStyle:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(15px, 15px);
    width: 30px;
    height: 30px;
    background: #016bad;
    border-radius: 50%;
    box-shadow: 1px 4px 11px #0000003d, inset 2px 1px 5px #fffffff0;
    border: 1px solid white;
}
.listStyle .statusStyle{
    font-size: 15px;
    font-weight: 600;
    color: #016bad;
}
.listStyle .dateStyle{
    font-size: 12px;
    font-weight: 500;
    color: #8a8f93;
    margin-right: 10px;
}
.listStyle .EnteredBy{
    font-weight: 500;
}
.backLineStyle{
    position:relative;
    gap: 15px;
}
.backLineStyle .btn{
    z-index: 1;
    position: relative;
    border: 3px solid  #ffffffed;
    border-top: none;
    border-bottom: none;
    font-weight: 600;
    font-size: 12px;
}
.backLineStyle:after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 150px);
    height: 2px;
    background: linear-gradient(90deg, transparent, #009cff, transparent);
}
.subTitleSTyle{
    margin-bottom: 15px;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}
.subTitleSTyle .custFormLabel{
    padding: 10px 20px 10px 7px;
    border-right: 2px solid #0b78bd;
    border-radius: 0 30px 30px 0;
    background: linear-gradient(270deg, #f3f3f3, white);
    color: #1a98e8;
}
.subTitleSTyle .custFormLabel:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width:100%;
    height: 2px;
    background: linear-gradient(90deg, #009cff, transparent);
    z-index: -1;
}
.form-group .custFormLabel .text-danger{
    font-size: 11px;
}
.threeGrid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /*gap: 5px;*/
}
.threeGrid .gridItem{
    border: 1px solid #00000033;
    white-space: nowrap;
    padding: 5px 10px;
}
.innerGridStyleBlue{
    background: linear-gradient(0deg, #aec4df, #e4f0ff);
}
.innerGridStyleGreen{
    background: linear-gradient(0deg, #70ff93, #b2ffc0);
}
.radionBtnStyle{
    display: flex;
    gap: 5px;
    align-items: center;
}
.radionBtnStyle input[type="radio"]{
    transform: scale(1.3);
    filter: drop-shadow(0px 2px 3px #00000020);
}
.radionBtnStyle label{
    margin: 0;
}
.filterShadow{
    filter: drop-shadow(1px 4px 4px #00000030);
}
.userDetailView .boldTx{
    font-weight:600;
    word-break: break-word;
    text-align:left;
}
.fw-500{
     font-weight:500;
}
input:disabled + label{
    opacity: 0.5;
    pointer-events: none;
}
.stickyTable {
    overflow: auto;
    height: 450px;
}
    .stickyTable tbody tr:nth-child(1) {
        position: sticky !important;
        top: -1px;
    }
.radioSuccess label{
    color: green;
}
.radioNo label{
    color: red;
}
.transInputForm{
    box-shadow: none !important;
    background-color: transparent !important;
    border: none;
}
.skuItemList{
    display: flex;
    flex-direction: column;
}
.skuItemList span{
    font-size: 15px;
    color: #3b3b3b;
    font-weight: 700;
}
.skuGridSystem{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 10px;
}
    .mobFormBtn {
        justify-content:flex-start;
    }

/*media queries*/
@media (max-width: 575.98px) {
        .tableInput input{
        width: 150px;
    }
     .smallCard div:last-child span{
        font-size: 20px;
    }
    .content .navbar .navbar-nav .nav-link {
        margin-left: 15px;
    }
    .exceptionStyle img {
        width: 200px !important;
    }  
    .modalPopup{
        width:inherit;
    }
    .modalPopup .modal-content{
        min-width: 350px !important;
        width: calc(100% - 50%) !important;
        margin: auto;
    } 
    .orderM1{
        order:-1;
    }
    .logoStyle {
        height: 28px;
    }
    .transferBtn{
        justify-content: space-between;
    }
    .box1Arrow{
        top: 25px;
    }
    .box2Arrow, .box1Arrow {
        transform: rotate(90deg);
    }
    .dragDropSelect{
        height: 130px !important;
    }
}

@media (min-width: 992px) {
    .sidebar {
        margin-left: 0;
    }

    .sidebar.open {
        margin-left: -300px;
    }

    .content {
        width: calc(100% - 300px);
    }

    .content.open {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 991.98px) {
        .modalPopup .modal-content{
           width: calc(100% - 10%);
           margin: auto;
        }
     .backLineStyle:after{
        display:none;
    }
    .smallCard div:last-child span{
        font-size: 16px;
    }
    .form-control, .select2-selection{
        z-index: 2;
    }
    .sidebar {
        margin-left: -300px;
    }

    .sidebar.open {
        margin-left: 0;
    }

    .content {
        width: 100%;
        margin-left: 0;
    }
    .select2-selection{

    }
}


/*Dominica*/
.select2-selection__rendered[title="Select"] {
    color: #B9B9B9 !important;
}

@media (max-width: 768px) {
    .mobFormBtn {
        justify-content:center;
    }
}