:root {
	/* --color-primary: #2b74ba; */
    /*--color-primary: #001c3a;*/
     --color-primary: #C14628;
    --hover-primary: #b6482e;
    --color-secondary: #2D2926;
    --color-light_gray: #F0F0F0;
    --color-mid_gray: #B3B3B3;
    --color-black:#27251F;
     --color-orange:#C24729;
    --color-light-gray:#F0F0F0;
    --color-dark-gray:#686868;
    --color-orange:#F38B00;
}
body{
    font-family: 'Poppins-Regular' 
 
}
a:focus{
    outline: none;
}

.bg-primary-gradient{
    background-color: var(--color-primary)!important;
}
.bg-primary{
    background-color: var(--color-primary) !important;
    background-image: none !important;
    color: #ffffff;
}
.bg-skyblue{
    background-color: var(--color-secondary) !important;
    background-image: none !important;
    color: #ffffff;
}
/*.btn.btn-primary{
    background-color: var(--color-primary) !important;  
}*/
/* .btn{
    box-shadow: 0 3px 5px #888888;
} */
.text-xl{
    font-size: 16px !important; 
}
.text-lg{
    font-size: 16px !important; 
}
.text-md{
    font-size: 14px !important;
}
.text-sm{
    font-size: 12px !important;
}
.text-primary{
    color: var(--color-primary) !important;
}
/* .form-control{
    border: 1px solid #96918B;
    font-size: 14px;
} */
.custom-file-label{
    overflow: hidden;
    font-size: 13px;
    height: 40px;
}
.flex-wrap{
    flex-wrap: wrap;
}
label{
    font-weight: 500;
    font-size: 14px;
    color: #000000;
}
small{
    font-size: 13px;
}
.text-semibold{
    font-weight: 500 !important;
}
.align-center{
    align-items: center;
}
.align-top{
    align-items: top;
}

/* ====Custom radio buttons==== */
.custom-radio {
    display: inline-block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-right: 15px;
    font-weight: 400;
  }
  
  /* Hide the browser's default radio button */
  .custom-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  
  /* Create a custom radio button */
  .checkmark {
    position: absolute;
    top: -2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
    border: 1px solid #27251F;
  }
  
  /* On mouse-over, add a grey background color */
  .custom-radio:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the radio button is checked, add a blue background */
  .custom-radio input:checked ~ .checkmark {
    background-color: var(--color-primary);
  }
  
  /* Create the indicator (the dot/circle - hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the indicator (dot/circle) when checked */
  .custom-radio input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the indicator (dot/circle) */
  .custom-radio .checkmark:after {
      top: 3px;
      left: 3px;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: white;
  }

  /* ==== Custom checkbox ==== */
  /* The container */
  .custom-check {
    display: block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 400;
    margin-bottom: 5px;
  }
  
  /* Hide the browser's default checkbox */
  .custom-check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checksign {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #eee;
    border: 1px solid var(--color-primary);
  }
  
  /* On mouse-over, add a grey background color */
  .custom-check:hover input ~ .checksign {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .custom-check input:checked ~ .checksign {
    background-color: #fff;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checksign:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .custom-check input:checked ~ .checksign:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .custom-check .checksign:after {
    left: 3px;
    top: 0px;
    width: 6px;
    height: 10px;
    border: solid #27251F;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  /* ==== Custom checkbox ends ==== */

  /* ==== Login screen starts ==== */
  .login-wrapper{
      min-height: 100%;
      width: 100%;
      /* background-color:#fff; */
      display: flex;
      justify-content: left;
      align-items: center;
  }
  .login-main-block{
      color: #000;
  }
  .login-main-block a:hover{
       text-decoration: underline !important; 
  }
  .login-main-block{
     width: 100%;
    text-align: center;
        /*padding: 0px 27% 0px 13.5%;*/
  }
  .login-img{
      margin-top: 0px;
      text-align: center;
  }
  .copy_txt{
     margin-top: 10px;
    color: gray;
  }
  .login-img img{
    max-width: 200px;
    height: auto;
    width: 100%;
  }
  .login-main-block .text-cust{
    font-size: 13px;
    color: #000 !important;
  }
  .login-main-block .login-btn{
      font-size: 14px;
      padding: 10px;
    height: auto;
    /*text-transform: capitalize;*/
  }
  .wrap_img{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: 100%;
  }
  .wrap_img img{
      max-width: 450px;
    width: 100%;
  }
  .login-main-block .input-group-text{
      background-color: var(--color-primary);
      color: #ffffff;
      border: 1px solid var(--color-primary);
      transition: 0.4s ease;
  }
  .login-main-block .form-control{
     border: 2px solid var(--color-black);
      padding: .5rem 1.5rem;
      font-size: 14px;
      transition: 0.4s ease;
      -webkit-box-shadow: 0 0 0 30px white inset !important;
  }
  .login-main-block .input-group{
      transition: 0.4s ease;
  }
  .login-main-block .input-group:hover .input-group-text{
    background-color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
     -webkit-box-shadow: 0 0 0 30px white inset !important;
  }
  .login-main-block .input-group:hover  .form-control{
    border-color: var(--color-secondary);
     -webkit-box-shadow: 0 0 0 30px white inset !important;
}

  .login-btn{
      background-color: var(--color-orange) !important;
      border-color: var(--color-orange) !important;
  }
/*  .login-btn:hover, .login-btn:focus{
    background-color: var(--color-secondary) !important;
    border-color: var(--color-secondary) !important;
  }*/
  .left-panel{
       background-color:#F5F5F5;
  }
  @media screen and (max-width: 900px) {
      .login-main-block{
              padding: 0px 6% 0px 6%;
      }
  }
  @media screen and (max-width: 600px) {
      .captcha_border {
        border: 2px solid #000;
        width: 85%;
        margin-left: 17px;
        margin-top:15px;
    }
  }
  
  /* ==== Login screen ends ==== */


.body-content{
    display: flex;
    overflow-x: hidden;
}
.left-sidebar{
    width: 190px;
    background-color: var(--color-primary);
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    transition: linear 0.2s;
    overflow-x: hidden;
    z-index: 99;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.sidebar-width{
    width: 190px;
}
.left-sidebar .logo-section{
    /* text-align: center; */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
    height: 56px;
}
.left-sidebar .logo-section img{
    width: 100px;
}
.small-logo{
    display: none;
}
.left-sidebar.left-width{
    width: 50px;
    overflow: hidden;
    transition: linear 0.2s;
}
.left-width .main-logo{
    display: none;
}
.left-width .small-logo{
    display: block;
    width: 29px !important;
}
.left-width .menu-text{
    display: none;
}
.left-width.hover-menu{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 190px;
}
.left-width.hover-menu .main-logo{
    display: block;
}
.left-width.hover-menu .small-logo{
    display: none;
}
.left-width.hover-menu .menu-text{
    display: inline-block;
}
/* ==== Sidebar Menu ==== */
.menu-section{
    padding: 0px;
    height: calc(100vh - 56px);
    overflow-y: auto;
}
.menu-list{
    list-style: none;
    padding: 0;
    font-size: 13px;
}
.menu-list li a{
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: block;
    color: #ffffff;
}
.menu-list li a:hover{
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}
.menu-list li.active a{
    background-color: #001226;
}
.menu-list .collapse,
.menu-list .collapsing{
    background-color: rgba(255, 255, 255, 0.07);
}
.menu-list .collapse a,
.menu-list .collapsing a{
    color: #fafafa;
    padding-left: 20px;
}
.menu-list .collapse a:focus,
.menu-list .collapsing a:focus{
    background-color: rgba(255, 255, 255, 0.2);
}
.menu-list .link-collpase .fa-sort-down:before{
    content: "\f0d8";
}
.menu-list .link-collpase.collapsed .fa-sort-down:before{
    content: "\f0dd";
}
.left-width .menu-list li a{
    padding-left: 16px;
}

/* ==== My account Header ==== */
.my-account{
    list-style: none;
    margin-right: 15px;
    margin-bottom: 0;
}
.my-account li{
    display: inline-block;
    font-size: 14px;
    color: #000;
    margin-left: 30px;
}
/*.my-account li::after{
    content: '|';
    color: #ffffff;
    margin-left: 10px;
}*/
.my-account li:last-child::after{
    content: none;
    margin: 0;
}
.my-account li a{
    color: #fff;
}
.my-account li a:hover{
    text-decoration: none;
    color: #000;
}
.broadcast-msg{
    position: relative;
}
.b-count{
    position: absolute;
    border: 1px solid #000;
    top: -10px;
    right: -3px;
    border-radius: 100%;
    background-color: #fff;
    color: #000;
    display: block;
    height: 15px;
    width: 15px;
    font-size: 9px;
    text-align: center;
    line-height: 13px;
}

/* ==== Right Content ==== */
.content-wrapper{
    /* width: calc(100% - 190px); */
    width: 100%;
    /* background-color: #f0f0f0; */
    background-color: #fefefe;
    /* margin-left: 190px; */
    margin-left: 0;
    transition: linear 0.2s;
    min-height: 100vh;
}
.content-wrapper.right-width{
    /* width: calc(100% - 50px);
    margin-left: 50px; */
    width: 100%;
    transition: linear 0.2s;
}
.header-section{
    display: flex;
    width: 100%;
    min-height: 104px;
    align-items: center;
    border-bottom: 1px solid var(--color-mid_gray);
}
.header-section .navbar-collapse{
        margin-top: 10px;
}
.toggle-sidebar{
    padding: 10px;
    margin-left: 15px;
}
.header-logo{
    margin-left: 15px;
}
.header-logo img{
    height: 40px;
    margin-top: 5px;
    margin-bottom: 5px;
}

/* ==== Dashboard Tiles ==== */
.tile-icon{
    position: absolute;
    right: 4px;
    top: -3px;
    bottom: 0;
    margin: auto;
    display: block;
    font-size: 30px;
    color: rgba(255, 255, 255, 0.3);
}
.card-tile{
    background-image: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
}
.card-tile .card-heading{
    color: #ffffff;
    text-shadow: 0 3px 5px #000000;
    font-size: 16px;
}
.card-tile ul{
    padding-left: 15px;
    list-style: circle;
    color: #fff;
    margin: 0;
}
.card-tile ul li{
    margin-bottom: 3px;
}
.card-tile ul li:last-child{
    margin-bottom: 0;
}
.card-tile ul li a,
.card-tile a,
.card-tile span{
    color: #ffffff;
    transition: 0.4s ease;
    /* text-shadow: 0 3px 5px #000; */
    font-size: 13px;
}
.card-tile ul li a:hover,
.card-tile a:hover{
    text-decoration: none;
    color: #cacaca !important;
}
.card-tile .user-list{
    padding-left: 0;
}
.user-list li{
    display: inline-block;
    width: 49%;
}
.tile-row .tile-grid .card-tile{
    box-shadow: 0 8px 7px -5px #888888;
    min-height: 116px;
}
.tile-row .tile-grid:first-child .card-tile{
    background-image: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
}
/* .tile-row .tile-grid:nth-child(1) .card-tile{
    background-image: linear-gradient(45deg, #ff6440, #ce4321);
}
.tile-row .tile-grid:nth-child(2) .card-tile{
    background-image: linear-gradient(45deg, #fa8334, #aa4400);
}
.tile-row .tile-grid:nth-child(3) .card-tile{
    background-image: linear-gradient(45deg, #f9cb3e, #d29f02);
}
.tile-row .tile-grid:nth-child(4) .card-tile{
    background-image: linear-gradient(45deg, #aac737, #72ac33 );
}
.tile-row .tile-grid:nth-child(5) .card-tile{
    background-image: linear-gradient(45deg, #2e76cc, #123fa8);
}
.tile-row .tile-grid:nth-child(6) .card-tile{
    background-image: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
} */
.tile-row .tile-grid:nth-child(1) .card-tile{
    background-image: linear-gradient(45deg, #ff6440, #ce4321);
}
.tile-row .tile-grid:nth-child(5) .card-tile{
    background-image: linear-gradient(45deg, #fa8334, #aa4400);
}
.tile-row .tile-grid:nth-child(3) .card-tile{
    background-image: linear-gradient(45deg, #f9cb3e, #d29f02);
}
.tile-row .tile-grid:nth-child(2) .card-tile{
    background-image: linear-gradient(45deg, #aac737, #72ac33 );
}
.tile-row .tile-grid:nth-child(4) .card-tile{
    background-image: linear-gradient(45deg, #2e76cc, #123fa8);
}
.tile-row .tile-grid:nth-child(6) .card-tile{
    background-image: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
}
.tile-footer{
    padding: .5rem;
    text-align: center;
    border-color: rgba(255, 255, 255, 0.2);
}
.tile-footer .custom-radio{
    margin-bottom: 0;
    color: #ffffff;
    font-size: 13px;
    padding-left: 20px;
    text-shadow: 0 3px 5px #000000;
}
.tile-footer .custom-radio .checkmark{
    height: 15px;
    width: 15px;
    border: 1px solid #fff;
    background-color: #ffffff !important;
}
.tile-footer .custom-radio .checkmark:after{
    width: 7px;
    height: 7px;
    background-color: var(--color-primary);
}

/* notification vendor dashboard */
/* .notification-panel{
    height: calc(100% - 15px);
} */
.notification-panel .card-body{
    height: 210px;
    overflow-y: auto;
}
.notify-flex{
    display: flex;

}
.notify-flex .notify-icon{
    width: 17px;
    margin-right: 9px;
}
.notify-flex .notify-text{
    width: calc(100% - 22px);
    line-height: 18px;
}
.notify-name{
    font-size: 11px;
    opacity: 0.7;
}

/* user dropdown */
.user-dropdown{
    margin-left: auto;
}
.user-dropdown .dropdown{
    display: inline-block;
}
.user-dropdown a.dropdown-toggle{
    color: #ffffff;
    font-size: 13px;
    /* margin-right: 15px; */
    padding: 10px 25px 10px 10px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 200px;
    display: inline-block;
    position: relative;
}
.user-dropdown a.dropdown-toggle:hover{
    text-decoration: none;
}
.user-dropdown a.dropdown-toggle::after{
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    margin-right: 8px;
}
.user-dropdown .dropdown-menu{
    /* top: 17px !important; */
    right: 0;
    left: auto;
    border-radius: 0;
    padding: 0;
    font-size: 13px;
    box-shadow: 0 3px 10px #444444;
}
.user-dropdown .dropdown-menu a{
    color: var(--color-primary);
    padding-top: 7px;
    padding-bottom: 7px;
    border-top: 0.5px solid #e1e1e1;
}
.user-dropdown .dropdown-menu a:hover{
    background-color: var(--color-primary);
    color: #ffffff;
    border-top: 0.5px solid var(--color-primary);
}

/* ==== main content ==== */
.content-section{
    padding: 15px;
}
/*.page-heading{
    border-bottom: 1px solid #cccccc;
}*/
.page-heading .breadcrumb{
    background-color: transparent;
}
.page-heading .breadcrumb li:first-child{
    margin-left: auto;
}
.page-heading .breadcrumb li a{
    color: var(--color-secondary);
}
/*.page-heading .breadcrumb-item.active{
    color: var(--color-primary);
    font-weight: 600;
}*/
.main-heading{
    font-weight: 600;
    font-size: 22px;
}
.flex-heading{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.flex-heading small{
    margin-left: 5px;
}
.page-content{
    margin-top: 10px;
    position: relative;
}

.project-content .dataTables_length{
    /* float: right;
    width: 100%; */
    text-align: right;
    font-size: 14px;
        float: left;
}
.project-content .dataTables_length select{
    height: 30px;
}
.toggle-filter{
    /* position: fixed;
    left: -5px;
    bottom: 0px;
    z-index: 2; */
    /* display: flex;
    align-items: center;
    justify-content: center; */
    position: absolute;
    right: 3px;
    top: 72px;
}
.toggle-filter .toggle-filter-icon{
    height: 42px;
    width: 12px;
    background-color: var(--color-primary);
    color: #ffffff;
    display: inline-block;
    text-align: center;
    line-height: 22px;
    font-size: 12px !important;
    padding-top: 10px;
}
/*.toggle-filter .toggle-filter-icon:hover{
    opacity: 0.8;
}*/
.toggle-filter .toggle-filter-icon .fa-arrow-right{
    margin-left: 3px;
}

.right-toggle-filter{
    position: absolute;
    right: initial;
    top: 60px;
    left: -16px
}



.dataTables_filter{
    float: right;
}
.dataTables_filter label {
    display: -webkit-box;
    display: flex;
    float: right;
    /* min-width: 318px; */
}
.dataTables_filter .input-group-prepend .input-group-text{
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}
.dataTables_filter label input {
    display: block;
    width: 100%;
    height: 30px;
    padding: 4px 10px;
    font-size: 0.7875rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: var(--color-white);
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0;
    -webkit-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    margin-left: 0 !important;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-left: 0;
    min-width: 200px;
}
.dataTables_filter label input:focus{
    outline: none;
}
.dt-buttons{
    float: right;
}
.dt-buttons .dt-button{
    padding: 0;
    border: 0;
    background-color: transparent;
}

/* ==== filter section ==== */
.project-filter{
    /* box-shadow: 0 4px 5px #c2c2c2; */
    /*box-shadow: 0 2px 3px #c2c2c2;*/
}
.form-check-inline label{
    color:#fff;
}
.project-filter .filter-header{
    padding: 10px 15px;
    cursor: pointer;
    border: 1px solid var(--color-mid_gray);
     
    /* background-image: linear-gradient(#d3d3d3, #979797); */
    /* background-color: var(--color-secondary); */
    /* color: #ffffff; */
}
.filter-header{
     background-color: var(--color-dark-gray);
}
.filter-header.collapsed{
       background-color: var(--color-light_gray);
       color:#000;
}

.filter-body .filter-header{
    cursor: default;
}
.filter-body .filter-header input{
    cursor: pointer;
}
/*custom checkbox*/
/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.container1 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.container1 input:checked ~ .checkmark {
    background-color: #fff;
}
.container1 input:checked ~ .checkmark:after {
    display: block;
}
.container1 .checkmark:after {
    left: 8px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #CF4500;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/* Create a custom start checkbox */
.filter-header .checkmark,.cust_check .checkmark {
  position: absolute;
  top: 10px;
    left: 25px;
    height: 20px;
    width: 20px;
  background-color: #fff;
      border-radius: 0px;
      cursor: pointer;
}
.cust_check .checkmark{
      top: 7px;
    left: 0;
}
/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #eee;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #fff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after,.cust_check .checkmark:after  {
  content: "";
  position: absolute;
  display: none;    
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
      left: 8px;
    top: 3px;
  width: 5px;
  height: 10px;
  border: solid var(--color-secondary);
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.project-filter .filter-header label{
    float: left;
    width: 20px;
}
 .cust_check .checkmark{
     border-radius: inherit;
}
/* Create a custom End checkbox */
/*.filter-body .project-filter .filter-header{
      background-color: var(--color-primary);
    border-color: var(--color-primary);
        background-image: none;
}*/
.bg-light {
    background-color: var(--color-light_gray) !important;
}
.project-filter .filter-body{
    padding: 15px 15px 10px 15px;
    background-color: #ffffff;
    border-bottom-left-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border: 1px solid var(--color-mid_gray);
    border-top: none;
   /*border-radius: 0px !important;*/
       min-height: 80px;
       overflow: auto;
}

.project-filter .btn-search{
    width: 100%;
/*    background-color: var(--color-primary);
    border-color: var(--color-primary);*/
    margin-top: 25px;
    height: 40px;
}
.filter-body label{
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 10px;
}
.filter-body .form-control{
    font-size: 14px;
}
/*.filter-header{
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}*/
.filter-header.collapsed .fa-minus:before{
    content: "\f067";
}
.filter-header.collapsed{
    border-radius: 5px;
}
/*.project-filter .collapse,
.project-filter .collapsing{
    box-shadow: 0 4px 5px #c2c2c2;
}*/

.filter-header .fa-chevron-down:before{
    content: "\f077";
}
.filter-header.collapsed .fa-chevron-down:before{
    content: "\f078";
}
.filter-rounded{
    /* box-shadow: 0 2px 3px #c2c2c2; */
    /* box-shadow: 0 4px 5px #c2c2c2; */
    border-radius: 0px;
}
.filter-rounded .filter-header{
    border-top-left-radius: 0x;
    border-top-right-radius: 0px;
}
.filter-rounded .filter-header.collapsed{
    border-radius: 0px !important;
     border: 1px solid var(--color-mid_gray);
}
.filter-rounded .collapse .filter-body{
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

/* Project content */
.project-content{
    border-radius: 5px;
    padding: 15px; 
    background-color: #ffffff;
    margin-bottom: 30px;
    border: 1px solid var(--color-mid_gray);
}
/*.project-content .tab-content{
    padding-top: 10px;
}*/
.pro-list {
    padding: 0px;
    margin-top: 5px;
    text-transform: capitalize;
    margin-bottom: 0px;
}
.pro-list li {
    list-style: none;
    text-align: left;
    font-size: 13px;
    /* border: 1px solid #ccc; */
    padding: 6px 0;
    margin-top: -1px;
}
.pro-list li:last-child{
    padding: 0px;
}

/* .table-responsive{
    border-radius: 7px !important;
} */
.table{
    font-size: 14px;
    width: 100% !important;
}
/*.table-striped tbody tr:nth-of-type(odd){
    background-color: rgba(0,0,0,.015);
}*/
.table-bordered td, .table-bordered th{
    border: 1px solid #bebebe;
}
.table th,
.enty-from-tbl td{
    vertical-align: middle !important;
}
.table th, table.dataTable thead th, table.dataTable tfoot th{
    font-weight: 500;
}
/*table.dataTable.no-footer{
     border: 1px solid #dee2e6;
}*/
.table tr td{
    padding: 5px 7px !important;
        vertical-align: middle;
}
.table tr.date_sec td{
   padding: 8px 7px !important;
}
.text-info{
    margin-bottom:0px;
}
.table tr th{
    padding: 10px 7px !important;
}
.mytable thead,
table thead{
    background-color: var(--color-black);
    color: #ffffff;
}
.mytable thead th{
    color: #ffffff;
    white-space: nowrap;
}
.td-img{
    width: 60px;
}
.no-wrap{
    white-space: nowrap;
}
.action-div{
    justify-content: center;
    text-align: center;
}
.action-div a{
    font-size: 18px;
    /*color:var(--color-black)*/
}
.action-div a.chat-icon{
        font-size: 14px;
    color: #000000;
    margin-left: 0.15rem;
}
    .chat-icon{
        margin-left: 0;
        margin-right: 0;
    }
    .vender_cust .modal-content{
        box-shadow: none;
        border: none;
    }
    .vender_cust{
        border: 0px solid #000;
    }
    .form-group div select ~ .chat-icon{
        margin: 0 auto;
        margin-top:10px;
            width: 40px;
    }
.action-portal{
    color: var(--color-secondary);
}
.action-portal{
    color: #051c38;
}

thead th .custom-check,
tbody td .custom-check{
    display: inline-block;
    width: 100%;
    /* padding: 6px; */
    padding-left: 6px;
    padding-right: 6px;
        height: 10px;
}
td .custom-check,
th .custom-check{
    display: inline-block;
    text-align: center;
    padding: 0;
}
th .checksign,
td .checksign{
    left: 0;
    right: 0;
    margin: auto;
    height: 15px;
    width: 15px;
}
th .checksign{
    border: 1px solid #ffffff;
}
td .checksign{
    border: 1px solid var(--color-black);
}
th .custom-check .checksign:after,
td .custom-check .checksign:after{
    left: 4px;
    top: 1px;
    width: 5px;
    height: 9px;
}

.project-content .nav-tabs{
    border-color: var(--color-black);
}
/* .project-content .nav-tabs .nav-item{
    margin-bottom: 0px;
} */
.project-content .nav-tabs .nav-item .nav-link{
    background-color: var(--color-light_gray);
    border: 2px solid #ffffff;
    /*border-bottom: 1px solid var(--color-primary);*/
    color: #000;
    /* border-radius: 4px; */
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-size: 14px;
        margin-bottom: -2px;
}
.project-content .nav-tabs .nav-item .nav-link.active{
    background-color: var(--color-mid_gray) !important;
    color: #000;
}
.project-content .nav-tabs .nav-item{
    margin-left: -1px;
}
.project-content .nav-tabs .nav-item:first-child{
    margin-left: 0;
}
.dataTables_info{
    font-size: 14px;
}
.dataTables_paginate .paginate_button{
    padding: 5px 10px;
    border: 0px solid #b3b3b3;
    margin-left: -1px;
    cursor: pointer;
    color: #000;
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    font-size: 18px;
    line-height: 26px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current, 
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{
    background-color:transparent !important;
    color: #141413 !important;
    background-image: none !important;
}
.dataTables_paginate .paginate_button.disabled{
    background-color: #fff;
    color:#27251F;
}
.dataTables_paginate .paginate_button.disabled:hover,.paginate_button:hover a{
    color:#000;
}
.dataTables_paginate .paginate_button.current, .dataTables_paginate .paginate_button:hover{
    background-color: transparent !important;
}
.col-sm-7 .dataTables_paginate .paginate_button{
    position: relative;
    margin-left: 0px;
}
.paginate_button a{
    color:#000;
}
.col-sm-7 .dataTables_paginate .paginate_button.active,.dataTables_paginate .paginate_button:hover{
    background-color: #fff !important;
    color: #000 !important;
    background-image: none !important;
}
.col-sm-7 .dataTables_paginate .paginate_button.active a{
    color: #ffffff !important; 
}
.col-sm-7 .dataTables_paginate .paginate_button a{
    height: 100%;
    width: 100%;
}
.ui-widget-content a {
    color: inherit !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled a{
    color:var(--color-mid_gray) !important;
    margin-left: 0px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active{
    color:#000 !Important;
}
table.dataTable thead th, table.dataTable thead td{
    padding: 7px 10px;
}
.project-column{
    min-width: 150px;
}
/* table.dataTable th.sorting_asc,
table.dataTable th.sorting,
table.dataTable th.sorting_desc{
    padding-right: 15px !important;
} */

/*.dataTables_wrapper{
    display: block !important;
}*/


/* ==== PPT Template Page ==== */
.cursor-default{
    cursor: default !important;
}
.column-action{
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

/* ==== Edit modal dashboard ==== */
.modal-open .modal{
    background-color: rgba(0, 0, 0, 0.7);
}
.modal-content{
    border: 0px;
}
.edit-modal .modal-dialog.modal-lg{
    max-width: 1200px;
}
.edit-modal .modal-header,.delete-popup .modal-header,#inactive-user  .modal-header,
.client-popup .modal-header,.modal-content .modal-header{
    /*background-color: var(--color-primary);*/
    padding-top: 10px;
    padding-bottom: 10px;
}
.edit-modal .close,.close,.client-popup .close{
    color: #000;
    opacity: 1;
}
/* .edit-modal .btn-primary, .btn-primary{
    background-color: var(--color-orange);
    border-color: var(--color-orange);
}
.edit-modal .btn-primary:hover, .btn-primary:hover{
    background-color: var(--color-orange) !important;
    border-color: var(--color-orange) !important;
} */

.btn-primary{
    border-radius: 20px;
        min-width: 100px;
    font-size: 15px;
}
.modal .close:focus{
    outline: none;
}
.edit-modal .btn-light, .btn-light{
    background-color:  var(--color-mid_gray);
    border-color:  var(--color-mid_gray);
}
.edit-modal .btn-light:hover, .btn-light:hover{
    background-color: #cccccc;
}

/*.prod-detail .modal-dialog.modal-lg{
    max-width: 900px;
}
.project-details .modal-dialog.modal-lg{
    max-width: 600px;
}*/
.project-details .modal-body{
        height: 570px;
    overflow: auto;
}
.modal-open #quoteFormPopup.modal{
    overflow: hidden;
}
/* === Program View === */
.brand-item{
    background-color: #ebebeb;
    border-radius: 4px;
    border: 1px solid #cecece;
}




/* Scrollbar */
/* table responsive scoll custom */
.menu-section::-webkit-scrollbar,
.table-responsive::-webkit-scrollbar,
.chat-popup .modal-body::-webkit-scrollbar,
div::-webkit-scrollbar{
    height: 10px;
    width: 8px;
    background-color: #cacaca;
    border-radius: 0px;
}
.menu-section::-webkit-scrollbar-corner,
.table-responsive::-webkit-scrollbar-corner,
.chat-popup .modal-body::-webkit-scrollbar-corner,
div::-webkit-scrollbar-corner{
    background: #cccccc;
    border-radius: 0px;
}
.menu-section::-webkit-scrollbar-thumb,
.table-responsive::-webkit-scrollbar-thumb,
.chat-popup .modal-body::-webkit-scrollbar-thumb,
div::-webkit-scrollbar-thumb{
    background: #606060;
    border: 1px solid #cccccc;
    border-radius: 0px;
}
.menu-section::-webkit-scrollbar-thumb:hover,
.table-responsive::-webkit-scrollbar-thumb:hover,
.chat-popup .modal-body::-webkit-scrollbar-thumb:hover,
div::-webkit-scrollbar-thumb:hover{
    background: #868686;
    border-radius: 0px;
}
.menu-section::-webkit-scrollbar-track,
.table-responsive::-webkit-scrollbar-track,
.chat-popup .modal-body::-webkit-scrollbar-track,
div::-webkit-scrollbar-track{
    border: 1px solid #cccccc;
    background-color: #cccccc;
    border-radius: 0px;
}
.menu-section,
.table-responsive,
.chat-popup .modal-body,
div{
      scrollbar-width: thin;
      /*border-radius: 0px;*/
}

/* === Entry form page === */
/* .entry-form-section{
    background-image: linear-gradient(#ecf2ff, #ecf2ff);
} */
.ppt-dropdown{
    display: inline-block;
}
.ppt-dropdown .dropdown-menu{
    background-color: var(--color-secondary);
    padding: 0;
    top: 30px !important;
    left: auto !important;
    right: 0;
    transform: none !important;
    text-align: right;
}
.ppt-dropdown .dropdown-menu a{
    color: #ffffff;
    font-size: 14px;
    border-bottom: 1px solid #cacaca: ;
}
.ppt-dropdown .dropdown-menu a:last-child{
    border-bottom: none;
}
.ppt-dropdown .dropdown-menu a:hover,
.ppt-dropdown .dropdown-menu a:focus{
    background-color: var(--color-primary);
}

/* ==== item list page PPT ==== */
.ppt-dropdown.item-list-ppt .dropdown-menu{
    padding: 0;
    border-radius: 0;
    top: 51px;
    box-shadow: 0 0 5px #888888;
    background-color: #ffffff;
}
.ppt-dropdown.item-list-ppt .dropdown-menu li a{
    color: var(--color-primary);
    text-transform: initial;
    font-size: 14px;
    padding: 5px 10px;
    text-align: left;
}
.ppt-dropdown.item-list-ppt .dropdown-menu li a:hover{
    color: #cacaca;
    background-color: #f8f9fa;
}

/* ==== Entry Form Major form ==== */
.image-selection .image-section{
    position: relative;
    width: 100%;
}
.image-selection .image-section img{
    height: 160px;
    width: 100%;
    object-fit: contain;
    object-position: center;
    border: 1px solid #dddddd;
    padding: 2px;
}
.image-selection .image-section .custom-check{
    position: absolute;
    right: -4px;
    bottom: 9px;
}



/* == Portal edit form == */
.edit-form{
    display: block !important;
    position: relative;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-top: 10px;
    border: 1px solid #0e4777;
    /* box-shadow: 0 3px 10px #848484; */
}
.form-heading{
    display: inline-block;
    background-color: var(--color-primary);;
    /*border-radius: 0.25rem;*/
    color: #ffffff;
    padding: 7px 10px;
    position: absolute;
    top: -18px;
    left: 15px;
    font-size: 14px;
    font-weight: 500;
}
.edit-form .nav-tabs .nav-item .nav-link{
    font-size: 13px;
    padding: 5px 10px;
}

/* == Program view collpase expand == */
.collapse-expand-section{
    display: flex;
    /*border-radius: 0.25rem;*/
    overflow: hidden;
    /*border: 1px solid var(--color-primary);*/
    /*box-shadow: 0 3px 5px #888888;*/
}
.collapse-expand-section .expand-all{
    margin-right: 0;
    box-shadow: none;
    border: none;
    /*border-right: 1px solid var(--color-primary);*/
    border-radius: 20px;
    color: #000;
    /*margin-left: -1px;*/
    transition: linear 0.4s;
}
.collapse-expand-section .collpase-all{
    margin-right: 0;
    box-shadow: none;
    border: none;
    /*border-left: 1px solid var(--color-primary);*/
    border-radius: 20px;
    color: #000;
    margin-left: -1px;
    transition: linear 0.4s;
}
/*.collapse-expand-section .active{
    background-color: var(--color-primary);
    color: #ffffff;
}*/


/* Chat popup */
.chat-popup .modal-content{
    background-color: transparent;
    /*border: 1px solid #ffffff;*/
}
.chat-popup .modal-header{
    background-color: var(--color-primary);
    border-bottom: 1px solid #ffffff;
    position: relative;
    font-weight: 500;
    padding: 16px;
}
.chat-popup .close{
    opacity: 0.9;
    color: #ffffff;
    position: absolute;
    right: 15px;
    top: 15px;
    /* background-color: #ffffff;
    text-shadow: 0 0 0 #000;
    padding: 8px;
    border-radius: 100%;
    font-size: 15px;
    text-align: center;
    display: block;
    height: 30px;
    width: 30px;
    margin-top: -10px;
    margin-right: -10px;
    box-shadow: 0 0 15px #000;
    outline: none; */
}
.chat-popup .modal-header .modal-title{
    max-width: calc(100% - 35px);
    /* white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; */
    font-size: 18px;
    color: #ffffff;
    display: flex;
    align-items: baseline;
}
.chat-popup .modal-header .modal-title .fa{
    margin-right: 5px;
}
.chat-popup .modal-body{
    overflow-y: auto;
    height: 370px;
    /*background-image: url(../images/chat-bg-light.jpg);*/
    background-color:#fff;
    position: relative;
    background-color: #fff;
    border-radius: 0;
}
.chat-popup .club{
    position: relative;
    /* top: 59px; */
    left: 0;
    right: 17px;
    background-color: var(--color-primary);
    z-index: 9;
    padding-bottom: 9px;
    padding-top: 9px;
    /* border-bottom: 1px solid #000; */
    /* box-shadow: 0 3px 4px #676767; */
}
.chat-popup .receiver,
.chat-popup .sender{
    width: 100%;
    display: inline-block;
}
.chat-popup .receiver .msg-box{
    max-width: 92%;
    float: right;
}
.chat-popup .sender .msg-box{
    max-width: 92%;
    float: left;
}
.chat-popup .receiver .text-msg{
    background-color: #f3f3f3;
    padding: 9px;
    font-size: 13px;
    border-radius: 4px;
    border: 1px solid #646464;
    position: relative;
    margin-top: 4px;
    word-break: break-word;
}
.chat-popup .receiver .text-msg:before {
    content: '';
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #646464;
    position: absolute;
    right: 10px;
    top: -7px;
}
.chat-popup .sender .text-msg{
    background-color: #d1ecff;
    padding: 9px;
    font-size: 13px;
    border-radius: 4px;
    border: 1px solid #4cb5ff;
    position: relative;
    margin-top: 4px;
    word-break: break-word;
}
.chat-popup .sender .text-msg:before {
    content: '';
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #4cb5ff;
    position: absolute;
    left: 10px;
    top: -7px;
}
.users{
    font-size: 13px;
    font-weight: 600;
    color: #000000;
    text-shadow: 0 0px 0px #000;
}
.chat-time{
    font-size: 11px;
    color: #000000;
    text-shadow: 0 0 0 #000000;
    margin-top: 3px;
}
.chat-popup .modal-footer{
    background-color: #f3f3f3;
    border: 0;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    /* box-shadow: 0 0 15px #0e0e0e; */
    display: flex;
    border-top: 1px solid var(--color-primary);
}

.chat-popup .msg-type{
    border: 1px solid var(--color-mid_gray);
    border-bottom-left-radius: 4px;
    resize: none;
    font-size: 13px;
    height: 52px;
    margin: 0;
    width: 100%;
    border-top-left-radius: 4px;
    padding: 6px;
}
.chat-popup .msg-type:focus{
    outline: none;
}
.sendBtn {
    float: left;
    color: #fff;
    font-size: 16px;
    border: 1px solid var(--color-primary);
    cursor: pointer;
    background-color: var(--color-primary);
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 52px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
}
.sendBtn:focus{
    outline: none;
}
.btn.btn-default.close-alert{
    background-color: var(--color-mid_gray);
        border-radius: 20px;
}
/* === Chatting Screen === */
.club .search{
    padding: 6px;
    font-size: 12px;
    border: 1px solid var(--color-mid_gray);
    border-right: none;
    float: left;
    width: 90%;
    outline: none;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.club .search:focus{
    box-shadow: none !important;
    outline: none !important;
}

.club .searchbtn {
    float: left;
    width: 10%;
    padding: 6px 9px;
    background: white;
    color: var(--color-black);;
        font-size: 18px;
    border: 1px solid var(--color-mid_gray);;
    cursor: pointer;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.club .searchbtn:focus{
    outline: none;
}
.club .search-chat{
    display: block;
    width: calc(100% - 29px);
    margin: auto;
}
.msg{
    padding: 6px;
    font-size: 12px;
    border: 1px solid #000;
    border-right: 1px solid #000;
    float: left;
    width: 90%;
    height: 40px;
}
/* .msgs{
    border-radius: 5px;
    border:1px solid;
    padding: 10px;
    font-size: 12px;
} */


/* ==== Mega Menu ==== */
.header-menu{
    width: 100%;
    margin-left: 15px;
    margin-right: 15px;
}
.header-menu li{
    display: inline-block;
    width: auto;
}
/* .bt-header .navbar-nav{
    margin-left: auto;
    margin-right: 0 !important;
} */
.bt-header .navbar-nav .nav-item a{
    color: #fff;
    font-size: 16px;
    text-transform: capitalize;
    padding: 10px 10px;
}
/*.bt-header .navbar-nav .nav-item a:hover,
.bt-header .navbar-nav .nav-item a:focus,
.bt-header .navbar-nav .nav-item a:active{
    color: var(--color-black);
    background-color: var(--color-mid_gray);
}
.bt-header .navbar-nav a.single_tab:hover,
.bt-header .navbar-nav a.single_tab:focus,
.bt-header .navbar-nav  a.single_tab:active{
    color: var(--color-black);
    background-color: #fff;
}
.single_tab a.nav-link:hover{
    
}*/
/*.bt-header .navbar-nav .nav-item a.dropdown-toggle:first-child,
.bt-header .navbar-nav .nav-item a#navbarDropdown:first-child:hover{
    color:#fff;
    background-color: var(--color-primary);
}
.bt-header .navbar-nav .nav-item.single_tab a:active{
  color:#fff;
    background-color: var(--color-primary);  
}*/
.bt-header .navbar-nav .nav-item{
    margin-right: 15px;
}
.bt-header .navbar-nav .nav-item.active a{
    color: #ffffff;
}
/*.bt-header .navbar-brand img{
    height: 45px;
}*/
.bt-header .navbar-nav .dropdown-menu{
    padding: 0;
    border-radius: 0;
    top: 51px;
    /*box-shadow: 0 0 5px #888888;*/
}
.bt-header .navbar-nav .dropdown-menu a{
    color: var(--color-black);
    text-transform: initial;
}

/* ==== form check class in td ==== */
td .form-check{
    height: 20px;
    width: 30px;
    margin: auto;
}
td .form-check .cust_check .checkmark{
    top: 0px;
}

/* ==== Caroucel ==== */
.carousel-control-prev{
    left: -20px;
     top: 30px;
}
.carousel-control-next{
    right: -20px;
    top: 30px;
}



@media screen and (max-width: 767px){
    .tile-grid{
        margin-bottom: 10px;
    }
    .tile-grid:last-child{
        margin-bottom: 0px;
    }
    .user-dropdown .dropdown{
        display: block;
    }
    .user-dropdown .my-account{
        display: none;
    }
    .content-wrapper{
        width: calc(100% - 50px);
    }
}


/* category box config settings page */
.calc15{
    height: calc(100% - 15px);
}
.category-box .change-box{
    /* border: 1px solid #cacaca; */
    max-width: 800px;
    /* padding-left: 15px;
    padding-right: 15px; */
}
.category-box .change-box .card{
    border: 1px solid #bcbcbc;
}
.no-shadow{
    box-shadow: none;
}
.content-tabs{
    border-top: 0px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-color: #bcbcbc;
}
.my-tabs{
    border-bottom: 1px solid #bcbcbc;
}
.my-tabs.nav-tabs .nav-item.show .nav-link,
.my-tabs.nav-tabs .nav-link.active{
    /*border-color: #bcbcbc #bcbcbc #fff;*/
        background-color: var(--color-mid_gray);
        color:var(--color-black);
}
.my-tabs.nav-tabs .nav-item.show a.nav-link, .my-tabs.nav-tabs a.nav-link{
     color:var(--color-black);
     background-color: var(--color-light_gray);
     margin-right:1.5px;
}
.subcategory-box{
        min-height: 80px;
    overflow-y: auto;
    border: 1px solid #cacaca;
    padding: 10px;
    border-radius: 0.25rem;
}
/* .content-tabs  .nav-tabs .nav-link{
    border-color: #bcbcbc #bcbcbc #ffffff;
} */
/*program view css*/
#scoring-calculations .table tr td,#scoring-calculations .table tr th{
    vertical-align: middle;
    text-align: center;
}
#scoring-calculations thead, #scoring-calculations table thead{
        background-color: var(--color-black);
    border-color: var(--color-black);
    background-image:none;
}
.multiselect.btn{
    border: 1px solid #bcbcbc;
    background: none;
    height:40px;
    /*box-shadow:none;*/
}
.multiselect-container .checkbox{
    padding-left: .5rem!important;
}
.multiselect-container.dropdown-menu,.multiselect-container .input-group .btn{
    box-shadow:none !important;
}
.multiselect-container.dropdown-menu{
        border-right: none !important;
            overflow: auto;
    max-height: 120px;
}
.multiselect-filter .multiselect-clear-filter{
        height: 40px;
    padding: 2px 10px;
}
#scoring-calculations .btn-group>.btn:first-child {
    margin-left: 0;
    width: 100%;
    text-align: left;
        font-size: 14px;
}
.multiselect.dropdown-toggle::after{
        float: right;
    margin-top: 10px;
}
.wrap_sec{
    border: 1px solid #ccc;
}
.hed_sec{
    background-color:var(--color-secondary);
    color: #fff;
    padding: 10px; 
}
.body_sec{
     padding: 10px;
}
#item-submission .table tr th,#scoring-cal table th{
        background-color: #27251F;
    color: #fff;
        padding: 5px !important;
}
#scoring-cal table th{
      width:15%;
}
#item-submission .filter-body label{
    color: #fff;
    text-align: center;
}
.width_cust{
    width:130px;
}
.multiselect-selected-text{
    font-size: 14px;
}
#scoring-cal .btn-group>.btn:first-child{
       width: 100%;
    text-align: left;
    min-width: 300px;
}
.wrap_top{
    margin-bottom: 10px;
}
.btn_exp{
    text-align: right;
    margin-bottom: 10px;
    padding-right: 0px;
}
.cust_drop .btn-group{
    width:100%;
}
.cust_drop .multiselect{
    width:100%;
    text-align: left;
        padding: .25rem .5rem !Important;
}
#scoring-cal .filter-body .form-control{
    text-align: right;
}
#scoring-cal table select { text-align-last: right; }
#scoring-cal  table .sec3 select {
    text-align-last: left;
}
.sec_block_3 .table tr td,.sec_block_4 .table tr td{
    text-align: center;
}
#scoring-cal .sec_block_3 .table th,#scoring-cal .sec_block_4 .table th{
    width: 420px;
}
.edit_custom{
    width: 80%;
}
.edit_custom input{
    background: none;
    color: #fff;
    border: none;
    font-size: 1.25rem;
    padding: 0px 10px;
    
}
/* .edit_custom .form-control:disabled, .form-control[readonly]{
     background: none;
    color: #fff;
        
} */
.edit-table{
        border-radius: .33rem;
}
    .multiselect-native-select .multiselect{
        border-radius: 5px;
        height: 40px !important;
        border: 1px solid #96918B;
        color: #000;
        font-weight: 500;
    } 
/*    .edit-project-div .multiselect-native-select .multiselect{
        height: 30px !important;
    }*/
     .edit-project-div .multiselect.dropdown-toggle::after {
    margin-top: 5px;
}
.edit-popup .form-group input .form-control.multiselect-search{
    height:30px !important;
}
#active_project_wrapper .table .btn{
        padding: .2rem .75rem;
}
/*    sorting arrow*/

/* .tab-pane table.dataTable thead .sorting:after,table.dataTable thead .sorting_desc:after,#example_wrapper table.dataTable thead .sorting_asc:after,
#example_wrapper table.dataTable thead .sorting:after,#employee-grid_wrapper table.dataTable thead .sorting:after,
.fit-content table.dataTable thead .sorting_asc:after,.fit-content table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,table.dataTable thead .sorting:after{
    content: "\25B2" !important;
    color:#fff;
        font-size: 12px;
    bottom: 30% !important;
    opacity: 0.6;
}
.tab-pane table.dataTable thead .sorting_asc:after,
#example_wrapper table.dataTable thead .sorting_desc:after,
#employee-grid_wrapper table.dataTable thead .sorting_asc:after,
.fit-content table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_desc:after{
    content: "\25BC" !important;
    color:#fff;
        font-size: 12px;    
    bottom: 30% !important;
    opacity: 0.6;
} */
.tab-pane table th,
#example_wrapper table th,
#employee-grid_wrapper table th,
.fit-content table th,
table.dataTable table th, th{
    position: relative;
}


/* .tab-pane table th.sorting::before,
#example_wrapper table th.sorting::before,
#employee-grid_wrapper table th.sorting::before,
.fit-content table th.sorting::before,
table.dataTable table th.sorting::before,
.sorting::before{
    content: "\25B2" !important;
    color:#fff;
    font-size: 12px;
    bottom: 30% !important;
    opacity: 0.6;
    position: absolute;
    right: 7.5px;
    top: calc(50% - 13px);
}
.tab-pane table th.sorting::after,
#example_wrapper table th.sorting::after,
#employee-grid_wrapper table th.sorting::after,
.fit-content table th.sorting::after,
table.dataTable th.sorting::after,
.sorting::after{
    content: "\25BC" !important;
    color:#fff;
    font-size: 12px;
    bottom: 30% !important;
    opacity: 0.6;
    position: absolute;
    right: 7.8px;
    top: calc(50% - 0px);
}

.tab-pane table th.sorting_asc::after,
#example_wrapper table th.sorting_asc::after,
#employee-grid_wrapper table th.sorting_asc::after,
.fit-content table th.sorting_asc::after,
table.dataTable th.sorting_asc::after,
.sorting_asc::after{
    content: "\25B2" !important;
    color:#fff;
    font-size: 12px;
    bottom: 30% !important;
    opacity: 0.6;
    position: absolute;
    right: 7.5px;
    top: calc(50% - 13px);
} 

.tab-pane table th.sorting_desc::after,
#example_wrapper table th.sorting_desc::after,
#employee-grid_wrapper table th.sorting_desc::after,
.fit-content table th.sorting_desc::after,
table.dataTable th.sorting_desc::after,
.sorting_desc::after{
    content: "\25BC" !important;
    color:#fff;
    font-size: 12px;
    bottom: 30% !important;
    opacity: 0.6;
    position: absolute;
    right: 7px;
    top: calc(50% - 0px);
}
 
table.dataTable thead .sorting:after {
        opacity: 0.6 !important;
}    
.cust-check .checkmark{
    border-radius: 0px;
}
table.dataTable thead .sorting_asc{
    background-image:none !important;
} */
.photo-action .btn .fa{
    color:#fff;
}
.edit_custom .form-control:disabled,.edit_custom  .form-control[readonly]{
    background-color: var(--color-primary);
        color: var(--color-mid_gray);
}
.fa-1x{
    font-size:1rem !important;
}
#sub-category .subcategory-box {
    height: 300px;
    overflow: auto;
    /*font-size: 16px;*/
}
/*.subcategory-box .jstree-default .jstree-anchor{
    height: 26px;
}*/
#memberModal .close{
        position: absolute;
    top: 10px;
    right: 10px;
}

.form-heading .text-danger{
    color: #fff !important;
}
#proj-filter .btn_wrap{
        display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
#reportrange{
   height: 37px;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;  
}
#reportrange .fa-caret-down{
    float: right;
    padding-top: 6px;
}
    
/*.form-control-sm, .input-group-sm>.form-control, .input-group-sm>.input-group-append>.btn, .input-group-sm>.input-group-append>.input-group-text, .input-group-sm>.input-group-prepend>.btn,
.input-group-sm>.input-group-prepend>.input-group-text,.btn-group-sm>.btn, .btn-sm,.project-content .nav-tabs .nav-item .nav-link,
.modal-header,.dataTables_filter input, .dataTables_length select,.modal-content,.club .searchbtn,.club .search,.chat-popup .msg-type,
    .sendBtn,.form-control,.delete-popup .modal-content,.btn,div.dataTables_wrapper div.dataTables_filter input,
    .dataTables_filter .input-group-prepend .input-group-text,.card,.file-drop-area,.project-details,.input-group-text,
    .cke_chrome,.tab-section,.photos-tab li a, .photos-tab li a:hover,.custom-file-label,.subcategory-box,.cust_btn,.nav-tabs .nav-link,
    .dataTables_filter input, .dataTables_length select,.btn-group-sm>.btn, .btn-sm,.collapse-expand-section,.chat-popup .modal-footer,
    .alert,.project-content .nav-tabs .nav-item,.comboTreeInputBox,.select2-container--default .select2-selection--multiple{
        border-radius: 0 !important;
}*/
.icon_txt{
    width:20px;
    margin-top:-5px;
}
.icon_txt_dashbord{
     width:18px;
}
    .icon_portal{
    width:20px;
}
.table td p,.table td .icon_portal{
    margin-bottom: 5px;
}
.icon_expand{
   width:20px;
    margin-top:-5px;  
}
.i_15{
    width:15px;
}
.i_20{
    width:20px;
}
.i_25{
    width:25px;
}
.allFolder .i_15,.allFiles .i_15,.alluser .i_20{
    margin-top:-7px;
}
.LegLent li.active, .LegLent li:hover {
    background-color: var(--color-mid_gray);
    color:var(--color-blank);
}
/*div.dataTables_wrapper div.dataTables_filter input{
    width: 290px !important;
}*/
.dataTables_length label{
        text-transform: capitalize;
}
.dataTables_length select {
    margin: 0px 6px 0px 6px;
}
.project-content .nav-tabs .nav-item .nav-link:last-child
{
    border-right:0px !important;
}
#filetable.table td,#filetable .table th{
        border-top: 0px solid #dee2e6;
}

.comboTreeDropDownContainer li:hover{
        background-color:#fff;
}
  #adminTable_wrapper table tr td:nth-child(5),#adminTable_wrapper table tr td:nth-child(6),
    #adminTableClosed_wrapper table tr td:nth-child(5),#adminTableClosed_wrapper table tr td:nth-child(6),
    #adminTableCancelled_wrapper table tr td:nth-child(5),#adminTableCancelled_wrapper table tr td:nth-child(6),
    #adminTable_wrapper table tr td:nth-child(7),
    #adminTableClosed_wrapper table tr td:nth-child(7),
    #adminTableCancelled_wrapper table tr td:nth-child(7),
    #adminTable_wrapper table tr td:nth-child(8),
    #adminTableClosed_wrapper table tr td:nth-child(8),
    #adminTableCancelled_wrapper table tr td:nth-child(8),
     #adminTable_wrapper table tr td:nth-child(9),
    #adminTableClosed_wrapper table tr td:nth-child(9),
    #adminTableCancelled_wrapper table tr td:nth-child(9){
        text-align: center;
    }
    #adminTable_scorer_wrapper .action-portal i {
    font-size: 20px;
}
.project-details .details-text p{
    font-size:14px;
}
#adminTable_wrapper .table td p{
    margin-bottom:5px;
}
.filter-body-height{
    max-height: calc(100vh - 150px);
    overflow-y: auto;
}
.Details img,.Activity.active img{
    -webkit-filter: invert(1);
   filter: invert(1);
   margin-top: -1px;
}
.Details.active img,.Activity img{
    -webkit-filter: invert(0);
   filter: invert(0);
   margin-top: -1px;
}
.img_circle{
    border: 1px solid #dcdcdc;
    padding: 2px;
    border-radius: 50%;
    width: 20px;
    margin-left: 13px;
    z-index: 1;
    background: #fff;
}
.modal-header .close{
        margin: -0.8rem -1rem -1rem auto;
}

select:disabled, .form-group .multiselect.disabled{
     background-color: #e9ecef !important;
    opacity: 1;
}
.cust_btn {
        padding: 0rem .6rem;
        font-size: 1.5rem;
        line-height: 1.5;
        border-radius: .2rem;
        border: none;
        width: 35px;
        height: 37px;
}

.center_btn {
        text-align: center;
        text-align: center;
        margin-bottom: 10px;
        display: block;
        margin-left: 33%;
        margin-top: 12px;
}
.i_35{
    width:35px;
    height:auto;
}
.i_40{
    width:40px;
    height:auto;
}
 .i_50{
    width:50px;
    height:auto;
}
.i_10{
    width:10px;
}
#printableArea .btn-info.disabled,#printableArea .btn-info:disabled {
    background-color: var(--color-light_gray);
    border-color: var(--color-mid_gray);
    color: #000;
}
#printableArea .btn-info{
   background-color: var(--color-mid_gray);
   border-color: var(--color-mid_gray);
   color:#000;
}
#printableArea .alert-info {
    color: #000;
    background-color: var(--color-light_gray);
    border-color: var(--color-mid_gray);
}
.font_16{
    font-size: 16px;
}
.font_18{
    font-size: 18px;
}
 .filter-body .project-filter .filter-header{
    cursor: pointer;
}
.comboTreeInputBox{
    border-radius: 0px;
}
.LegLent li.active,.LegLent li:hover{
    background-color: var(--color-mid_gray);
}
.move-panel .ed_de{
       background-color: var(--color-primary);
    border-color: var(--color-primary); 
}
.move-panel .btn-primary img{
    -webkit-filter: invert(1);
   filter: invert(1);
}
.move-panel .ed_de:disabled,.move-panel .ed_de:disabled:hover{
        background-color: var(--color-light_gray) !important;
        cursor: not-allowed;
}
.move-panel .btn-primary.ed_de.btn-primary:disabled img{
     -webkit-filter: invert(0);
   filter: invert(0);
}
.icon_align .i_20{
    margin-top:-5px;
}
.filter-body .project-filter .filter-header.bg_prim{
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    background-image: none;
}
.box #DataTables_Table_0_wrapper .input-group-text{
    padding: .399rem .75rem;
}
.i_20_nav{
    width:20px;
    margin-top:-5px;
}
i_15_nav{
     width:15px;
    margin-top:-5px;
}
.pointer{
    cursor:pointer;
}

/* ==== Entry form css ==== */
.pg-entry-form .page-heading .main-heading, 
.pg-add-product .page-heading .main-heading{
    margin-top: 4px;
}
.pg-entry-form .page-heading .breadcrumb,
.pg-add-product .page-heading .breadcrumb{
    margin-top: 6px;
}
.pg-entry-form .page-heading .buttons-link .btn,
.pg-add-product .page-heading .buttons-link .btn{
    border: 1px solid var(--color-primary);
    font-size: 14px;
}
.pg-entry-form .page-heading .buttons-link .btn-secondary,
.pg-add-product .page-heading .buttons-link .btn-secondary{
    background-color: #ffffff;
    color: var(--color-primary);
}
.pg-entry-form .entry-from-info{
    padding: 10px;
    background-color: var(--color-orange);
    font-size: 15px;
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.pg-entry-form .entry-from-info p{
    font-size: 15px
}
.pg-entry-form .right-toggle-filter{
    left: -66px;
}
.pg-entry-form .tab-content{
    position: relative;
}
.pg-entry-form  .buttons-action-sec{
    position: absolute;
    top: 56px;
    right: 15px;
    z-index: 9;
}
.pg-product-score.pg-entry-form  .buttons-action-sec{
    top: 58px;
    right: 0;
}
.pg-summary-dash.pg-entry-form  .buttons-action-sec{
    top: 101px;
    right: 0;
}
.ecom-page.pg-entry-form  .buttons-action-sec{
    top: 113px;
}
.buttons-action-sec .dropdown-menu{
    right: 0;
    left: auto;
    border-radius: 0;
    padding: 0;
}
.buttons-action-sec .dropdown-menu .dropdown-item{
    color: var(--color-black);
    font-size: 14px;
        cursor: pointer;
}
.buttons-action-sec .dropdown-menu .dropdown-item:hover{
    background-color: var(--color-mid_gray);
}
.pg-entry-form .tab-content div.dataTables_wrapper div.dataTables_filter input{
    width: 160px !important;
    max-width: inherit;
    min-width: inherit;
    margin-right: 480px;
}
.pg-entry-form .tab-content .ecom div.dataTables_wrapper div.dataTables_filter input{
     margin-right: 375px;
}
.pg-product-score.pg-entry-form .tab-content div.dataTables_wrapper div.dataTables_filter input{
    margin-right: 101px;
}
.pg-summary-dash.pg-entry-form .tab-content div.dataTables_wrapper div.dataTables_filter input{
    margin-right: 101px;
}
.pg-entry-form .tab-content .without_quote div.dataTables_wrapper div.dataTables_filter input{
    margin-right: 375px;
}
.pg-entry-form .tab-content .sq-btn{
    width: 100%;
    max-width: 195px !important;
    font-size: 14px;
}
.pg-entry-form .tab-content .small-btn{
    font-size: 11px;
    background-color: var(--color-light_gray);
    border-color:  var(--color-light_gray);
    text-shadow: 0 0px 0px #000000;
}
.justify-center{
    justify-content: center;
}
.revert-text{
    transform: rotate(-90deg);
    white-space: nowrap;
    display: block;
}
.pg-entry-form .toggle-filter{
    transform: rotate(-90deg);
}

.pg-entry-form .toggle-filter .toggle-filter-icon{
    /* height: auto;
    line-height: 11px;
    width: 25px;
    padding-top: 15px;
    padding-bottom: 15px; */
    height: auto;
    line-height: 11px;
    width: 158px;
    padding-top: 8px;
    padding-bottom: 8px;
    letter-spacing: 1px;
    /* transform: rotate(-90deg); */
    font-size: 12px !important;
    font-weight: 600;
}
.pg-entry-form .toggle-filter{
    right: -93px;
    z-index: 99;
    top: 40vh;
}
.pg-entry-form .right-toggle-filter{
    right: auto;
    position: fixed;
    top: 50%;
    width: 160px;
    z-index: 100;
    height: 30px;
}
.pg-entry-form .right-toggle-filter.cust_tog{
    position: absolute;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
}
.pg-entry-form .right-toggle-filter.cust_tog{
    left: 175px !important;
}
.pg-entry-form td .row .col-md-6 img{
    /* width: 50px !important; */
    display: block;
}
.pg-entry-form td .row .col-md-6 a{
    display: block !important;
    width: 100%;
}
.pg-entry-form .dataTables_wrapper .col-sm-6,
.pg-entry-form .dataTables_wrapper .col-sm-12,
.pg-entry-form .dataTables_wrapper .col-sm-5,
.pg-entry-form .dataTables_wrapper .col-sm-7{
    padding-left: 1px;
    padding-right: 1px;
}
.pg-summary-dash.pg-entry-form .tab-content #tabs-Selected div.dataTables_wrapper div.dataTables_filter input{
    margin-right: 101px;
}
.pg-summary-dash.pg-entry-form .dataTables_wrapper .col-sm-6,
.pg-summary-dash.pg-entry-form .dataTables_wrapper .col-sm-12,
.pg-summary-dash.pg-entry-form .dataTables_wrapper .col-sm-5,
.pg-summary-dash.pg-entry-form .dataTables_wrapper .col-sm-7{
    padding-left: 15px;
    padding-right: 15px;
}

#DataTables_Table_1_wrapper div.dataTables_filter input,
#DataTables_Table_2_wrapper div.dataTables_filter input
{
    margin-right: 0;
}
.four_txt{
    background-color: var(--color-primary);
    color:#fff;
    padding: 10px 12px 9px 12px;
    border-radius: 20px;
}
a.four_txt:hover{
    color:#fff;
}
.collapse-expand-section .expand-all,.collapse-expand-section .collpase-all{
    background-color: var(--color-light_gray);
     padding: 7px 12px;
}
.h_mg .subcategory-box{
       height: 380px;
    overflow: auto; 
}
.text-bold{
    font-weight:bold;
}
.new_fig .page-heading{
    border-bottom:0px !important;
}
.inst_sec{
        /*background-color: var(--color-orange);*/
        background-color:#f4f4f4;
        padding: 5px 10px;
        color: #000000;
        margin-top: 8px;
        margin-bottom: 8px;
        border: 1px solid #dcdcdc;
    }
    .show_tool{
        color:var(--color-orange);
        cursor: pointer;
    }
    .select2-height .fa-chevron-down{
            position: absolute;
            bottom: 10px;
            z-index: 1;
            right: 25px;
            cursor: pointer;
    }
    .select2-height.top .fa-chevron-down{
            bottom: 50px;
    }
    .select2-selection, .select2-container--default.select2-container--focus .select2-selection--multiple{
        border: 1px solid #cfcfcf !important;
    }
    .select2-selection--multiple{
        max-height: 80px;
        overflow-y: auto;
    }
    /* .cust_drop .select2:before{
            content:'';
            background-image: url(../../images/DropDownArrow.svg);
            width: 15px;
            height: 15px;
            position: absolute;
            top: 15px;
            right: 10px;
            z-index: 1;
            background-repeat: no-repeat;
            background-size: 100%;
    } */
    .box-danger .box-footer{
        padding-right:0px;
    }
    .edit-form .form-group textarea{
            resize: vertical;
            min-height:75px;
            
    }
    .select2-container .select2-dropdown{
        /* top:-7px; */
    }
    .select2-height .select2-container .select2-search--inline .select2-search__field{
        margin-top: 3px;
    }
    .box-danger .dropdown-menu{
        left:auto  !important;
        right:0px !important;
    }
    .select2-container--default .select2-selection--single .select2-selection__arrow{
        display: none;
    }
    .select2-selection{
        background-image: url(../images/down-arrow.svg);
        background-repeat: no-repeat;
        /* background-position: 99%; */
        background-position: right 10px center;
        background-size: 10px;
    }

    /* table.dataTable thead>tr>th.sorting_asc, table.dataTable thead>tr>th.sorting_desc, table.dataTable thead>tr>th.sorting, table.dataTable thead>tr>td.sorting_asc, table.dataTable thead>tr>td.sorting_desc, table.dataTable thead>tr>td.sorting {
    padding-right: 30px !important;
} */
.fack_photos .nav-item.active{
   background-color: var(--color-mid_gray);
    color: var(--color-black);
}

/* ==== type number appearance === */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
 #DataTables_Table_2_filter{
    margin-right: 100px;
}
.sec_mar{
        margin-top: 35px;
}
.head_tab{
        background-color: var(--color-primary);
        color: #ffffff;
        padding: 7px 10px;
        margin-bottom: 0px;
        font-size: 14px;   
}

/* === Add product page changes === */
.pg-add-product .form-group label{
    position: relative;
}
.pg-add-product .form-group label .astrick{
    position: absolute;
    top: -8px;
    right: -10px;
    font-weight: 600;
}
      
.chosen-container{
        background-image: url(../images/down-arrow.svg);
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px;
}
/*analytics css start*/
.pg-analytics .paging_simple_numbers{
    padding-top:8px;
}
.cust-color.btn.active{
        background-color: var(--color-mid_gray) !important;
    border-color: var(--color-mid_gray)!important;
    color:#000 !important;
}
.cust-color.btn{
        background-color: var(--color-light_gray) !important;
    border-color: var(--color-light_gray)!important;
        color:#000 !important;
}
.hist-sec{
        margin-top: -40px;
        margin-bottom: 0px;
}

.minus-margin{
    margin-bottom: -22px;
    margin-top: -10px;
}
.ecom_sec .btn-group {
    text-align: center;
    width: auto !important;
}
.dashboard-tab-content .table .form-group {
    margin-bottom: 0rem;
}
/* ==== Input field loader ==== */
.field-loader{
    position: absolute;
    left: 0;
    right: 0;
    top:0;
    bottom:0;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.7);
}
.flex-loader{
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.comboTreeArrowBtn{
    border: 1px solid transparent !important;
    background: transparent !important;
}
.select2-container--default .select2-selection--single{
        border-radius: 0px !important;
}
/* ==== score product page ==== */
.pg-score-product ul.bootpag{
    display: flex;
}
.pg-score-product .pagination{
    display: inline-block;
    padding-left: 0;
    margin: 0px;
    border-radius: 0px;
}
.pg-score-product ul.pagination li{
    display: inline;
}
.pg-score-product ul.pagination>li:first-child>a,
.pg-score-product ul.pagination>li:first-child>span {
    margin-left: 0;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border: 1px solid #27251F;
}
.pg-score-product ul.pagination>.disabled>a, 
.pg-score-product ul.pagination>.disabled>a:focus, 
.pg-score-product ul.pagination>.disabled>a:hover, 
.pg-score-product ul.pagination>.disabled>span, 
.pg-score-product ul.pagination>.disabled>span:focus, 
.pg-score-product ul.pagination>.disabled>span:hover {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd;
}
.pg-score-product ul.pagination>.active>a, 
.pg-score-product ul.pagination>.active>a:focus, 
.pg-score-product ul.pagination>.active>a:hover, 
.pg-score-product ul.pagination>.active>span, 
.pg-score-product ul.pagination>.active>span:focus, 
.pg-score-product ul.pagination>.active>span:hover,
.pg-score-product ul.pagination>.disabled>a {
    z-index: 2;
    color: #fff;
    cursor: default;
    background-color: var(--color-black) !important;
    color: #ffffff !important;
    background-image: none !important;
}
.pg-score-product ul.pagination>.prev.disabled>a,
.pg-score-product ul.pagination>.next.disabled>a{
    background-color: #ffffff !important;
    color: var(--color-black) !important;
}
.pg-score-product .pagination>li>a, .pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #27251F;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #27251F !important;
    font-size: 13px;
    padding: 6px 12px !important;
}
.pg-score-product .pagination>li.prev>a,
.pg-score-product .pagination>li.next>a{
    font-size: 0;
    height: 100%;
    position: relative;
}
.pg-score-product .pagination>li.prev>a::before{
    content: '\276E';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    font-size: 13px;
    text-align: center;
    line-height: 30px;
    font-weight: 600;
}
.pg-score-product .pagination>li.next>a::before{
    content: '\276F';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    font-size: 13px;
    text-align: center;
    line-height: 30px;
    font-weight: 600;
}
/* ==== Select2 width ==== */
/*.select2-container{
    width: 100% !important;
}*/
.navbar-toggler .fa-bars.text-white{
    color: #000!important;
}
.filter-body .form-control:disabled,.filter-body .form-control[readonly] {
     background-color: #fff; 
    opacity: 1;
}
.i_cust_size{
    width: 17.5px;
}
/*.card-body .position-relative #justAnotherInputBox{
    background-image: url(../images/down-arrow.svg);
    background-repeat: no-repeat;
    background-position: right 5px center;
    background-size: 10px;
}
.comboTreeInputBox{
 position:relative;   
}*/
.ecom_sec{
    padding-left: 80px;
}
.w100{
    width:100px;
}
 a.infoGreen,a.infoGreen:hover{
       color: green;
           font-size: 19px;
    }
    
    a.infoRed,a.infoRed:hover{
       color: red;
           font-size: 19px;
    }
    a.infoblack,a.infoblack:hover{
         color: var(--color-black);
        font-size: 19px;
    }
    .edit-modal .modal-body{
           word-break: break-word; 
    }
    .table-responsive .table .qty-tires .third-col{
        white-space: nowrap;
        max-width: 160px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    a:hover,a{
        color: var(--color-primary);
    }
     .sorting_1 a:hover,.sorting_1 a{
            color: #222222;
            font-weight: bold;
    }
    .qty-tires .first-col {
        min-width: 51px;
        display: inline-block;
        overflow: auto;
        display: table-cell;
        width:100%; 
    }
    .qty-tires .second-col {
        width: 10px;
        display: inline-block;
        text-align: center;
        margin-left: 5px;
        margin-right: 5px;
        overflow: auto;
        display: table-cell;
        padding:0px 5px;
    }
    .table-responsive .table .qty-tires .third-col,.table .tcenter .qty-tires .third-col {
        white-space: nowrap;
        max-width: 160px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: table-cell;
        width:100%;
    }
    .qty-tires {
        white-space: nowrap;
            display: table-row;
    }
    .qu_pr{
            display:table;
            vertical-align: middle;
            width:100%;
        }
    .dataTables_wrapper .dataTables_paginate .paginate_button.active{
        background-color:var(--color-black);
        color:#fff;
        margin-left: 0px;
    }
    .dataTables_wrapper .dataTables_paginate .paginate_button.active a{
        color:#000 !important;
    }
    .search-sec .dataTables_wrapper div.dataTables_filter input {
            margin-right: 0 !important;
        }
        .pg-entry-form .select2-container--default .select2-selection--multiple{
               padding-bottom: 0px !important; 
        }   
        .pg-entry-form .select2-container--default .select2-selection--multiple .select2-selection__choice{
                margin: 3px 3px 1px 0px !important;
        }
        #active_project_wrapper table tr th:last-child{
            width:15%;
        }
      .vender_cust .fas.fa-save{
            display:none;
        }   
        #employee-grid_wrapper table tr td img{
            width:100% !important;
            height:auto !important;
            margin:5px 0px;
        }

        /* === Notification === */
        .header-notify .dropdown-menu{
            right: 0;
            left: auto;
            padding: 0;
            top: 28px;
            border-radius: 0;
            border: 1px solid var(--color-primary);
        }
        .notify-height{
            /*height: 141px;*/
            max-height: 141px;
            overflow-y: auto;
        }
        .header-notify .dropdown-menu::before{
            content: '';
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-bottom: 7px solid var(--color-primary);
            position: absolute;
            right: -1px;
            top: -8px;
        }
        .header-notify .dropdown-menu .dropdown-item{
            /* background-color: var(--color-light_gray); */
            border-bottom: 1px solid var(--color-mid_gray);
            padding-left: 5px;
            padding-right: 5px;
        }
        .header-notify .dropdown-menu .dropdown-item:hover{
            background-color: var(--color-light_gray);
        }
        .header-notify .dropdown-menu .dropdown-item:last-child{
            border-bottom: 0;
        }
        .header-notify .dropdown-menu .dropdown-item,
        .header-notify .dropdown-menu .dropdown-item .textD{
            font-size: 13px;
            max-width: 175px;
            text-overflow: ellipsis;
            overflow-x: hidden;
            white-space: nowrap !important;
        }
        .notify-heading{
            background-color: var(--color-primary);
            padding: 6px 5px;
            color: #ffffff;
        }
        .notify-heading h6{
            font-size: 13px;
        }
       .vendor-dashboard .form-group .form-control[readonly] {
             background-color: #fff;
        }
        #project_type .select2-container{
            width:100% !important;
        }
        #project_type .multiselect-container.dropdown-menu{
            border-right:1px solid #cacaca !important;
        }
        table.dataTable thead .sorting{
            background-image:none;
        }
        .form-control:focus{
            box-shadow:none;
        }
        .new_fa-icon .fas{
            font-size: 18px;
             color: #000;
        }
        .min-mr-t{
            margin-top:-5px;
        }
        a.fav_t{
              line-height: 25px;  
        }
        .doller_sign{
            position: relative;
        }
        .doller_sign::before{
            content: '$';
            position: absolute;
            top: 7px;
            left: 0px;
        }
        .dot-sec{
           position: absolute;
            top: 7px; 
        }
       .service_fee_sec .doller_sign::before{
            top: 5px;
        }
        .pg-entry-form .select2-container{
            width:100% !important
        }
        .custom-file-input{
          cursor: pointer;  
        }
        .cust_checkbox{
                width: auto !important;
                margin-left: 15px;
                line-height: 22px;
        }
        .input-form-ctrl #template_id{
               max-width: 100% ;
        }
        .digit_nav{
            background-color: #C24729;
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            margin-left: 10px;
            padding: 3px;
            text-align:center;
        }
        .rd_new{
                position: absolute;
                left: 190px;
                top: 16px;
                z-index: 2;
        }
        .pg-entry-form .tab-content #quote_history div.dataTables_wrapper div.dataTables_filter input{
                width: 240px !important;
                max-width: inherit;
                min-width: inherit;
                margin-right: 0;
        }
        #settings .category-box .change-box{
            max-width: 100%;
        }
        #quote_details_wrapper .row,#product_details_wrapper .row {
            margin-left: 0px;
            margin-right: 0px;
        }
        .bold-text{
            font-weight:bold;
        }
        .quo_price{
            background-color: #e9ecef;
        }
        .dashboard-tab-content .form-horizontal .fa-list-alt{
            line-height: 17px;
        }
        #settings .change-box .datedata{
            display: inline;
            margin-left: 5px;
            margin-right: 5px;
        }
        #memberModal .modal-footer{
          margin:0 auto;  
        }
        #chatpopup.btn-info{
            display:none;
        }
        .filter_search{
            background-color: #fff;
            border: 1px solid var(--color-mid_gray);
            padding: 5px;
            box-sizing: border-box;
            text-align: right;
            border-top: 0px;
        }
        .dashboard-tab{
            position:relative;
        }
        .excel_btn{
            position: absolute;
            bottom: -46px;
            right: 5px;
        }
         #project-level .table-responsive1 .buttonBox .table-responsive{
                overflow-y: hidden;
        }
/*        #adminTable_filter,#adminTableUnassigned_filter,#adminTableClosed_filter,#adminTableCancelled_filter,
        #active_project_filter,#notAccepted_project_filter,#inactive_project_filter,#decline_project_filter{
            margin-right: 108px;
        }
        #adminTable_Ecommerce_filter,#adminTable_scorer_filter{
            margin-right: 108px;
        }
        .ecom.excel_btn,.score.excel_btn{
            bottom: -30px;
        }
        div.dataTables_wrapper div.dataTables_length select{
                width: 80px !important;
        }
        .excel_list{
                position: absolute;
                right: 4px;
                top: 9px;
        } */
        #quote_details_filter,#product_details_filter{
            margin-right: 101px;
        }
        /*custom tooltip*/
        .main_sec{
                display: inline-block;
                color: var(--color-primary);
                cursor:pointer;
	}
        .show_sec{
            display:none;
            position:relative;
        }
	.paragraph {
	  color:#fff;
	  color:#000;
          padding:5px;
	  background-color:#000;
	  width:180px;
          max-height:180px;
          overflow: auto;
	  box-shadow:0 5px 10px rgba(0,0,0,0.012);
          position:absolute;
	   z-index: 9999;
           border-radius: 5px;
           margin-top: 10px;
	}
        .fa-sort-down{
                font-size: 30px;
                transform: rotate(180deg);
                text-align: center;
                margin: 0 auto;
                margin-bottom: -20px;
                position: absolute;
                left: 30%;
                color:#000;
        }
        .show_sec div{color:#fff;}
        .my-div{
                display: inline-block;
        }
        .user_page .fa-people-arrows{
            font-size: 16px;
            color: #000;
        }
        .user_page .icon_txt_dashbord {
            width: 24px;
            margin-top: -3px;
        }
        .f-16{
            font-size: 16px;
        }
        #due_date_section .d-flex .ml-3{
            word-break: initial;
        }
/* ==== Media Queries ==== */
@media (min-width: 1199px) and (max-width: 1250px) {
    .navbar .navbar-brand{
        display: block;
        height: 100%;
        position: relative;
    }
    .navbar .navbar-brand img{
        margin-top: auto;
        margin-bottom: auto;
        position: absolute;
        top: 0;
        bottom: 0;
        height: 35px;
    }
    .bt-header .navbar-nav .nav-item {
        margin-right: 0px;
    }

}
@media (min-width: 991px) and (max-width: 1198px) {
    .navbar .navbar-brand{
        display: block;
        height: 100%;
        position: relative;
    }
    .navbar .navbar-brand img{
        margin-top: auto;
        margin-bottom: auto;
        position: absolute;
        top: 0;
        bottom: 0;
        height: 30px;
    }
    .bt-header .navbar-nav .nav-item a{
        padding: 5px;
        font-size: 14px;
    }
    .bt-header .navbar-nav .nav-item {
        margin-right: 5px;
    }
    .my-account li{
        margin-left: 10px;
    }

}
@media (max-width: 990px) {
    .mx-sec .col-md-3{
            max-width: 100%;
            flex: auto;
    }
    .mx-sec .navbar-toggler{
            float: right;
             margin-top: 20px;
    }
    .mx-sec .my-account{
        padding: 10px 10px;
    }
    .mx-sec .my-account li:first-child{
            margin-left: 0px;
    }
}
/*firefox media query*/
@-moz-document url-prefix() {
  .score{
   width: min-content;
    min-width: 71px;
  }
  .score{
      white-space: nowrap;
  }
  .date_sec td {
        height:auto !important;
} 
} 

/* == Date range picker UI == */
.drp-calendar.left .prev span{
    border: solid #ffffff !important;
    border-width: 0 2px 2px 0 !important;
}
.drp-calendar.right .next span{
    border: solid #ffffff !important;
    border-width: 0 2px 2px 0 !important;
}
.drp-calendar.right .next:hover,
.drp-calendar.left .prev:hover{
    background-color: #888888 !important;
}
.drp-calendar .table-condensed thead th{
    border-left: none !important;
}
/*new date 24 changes*/

.head_qt_f{
  font-size: 18px;
  font-weight: 700;
  margin-bottom:10px;
  line-height: 20px;
  color:#fff;
}
.quoteForm_sec .table-bordered tr td:first-child{
    width:200px;
}
.sec_new_d{
    border-top: 1px solid #bcbcbc;
    padding-top: 20px;
}
.sal_sec{
    background:var(--color-primary);
    max-width: 50%;
    width: max-content;
    padding:5px;
}
.tab_h{
    font-size:16px;
    color:#fff;
    /*padding: 10px;*/
    font-weight: bold;
}
.tab_h p{
    margin-bottom: 0px;
}
.sec_bott{
    background-color: #E5E5E5;
    padding: 10px;
    margin-bottom: 20px;
}
.sec_bott td input{
    border:none;
    padding:5px;
}
.project_decline,a.project_decline:hover{
        /*color: #C24729;*/
    text-decoration: underline;
}
/* Admin dashbord start*/
.admin-body .notification-panel .nav-tabs .nav-item .nav-link.active {
        background-color: #b3b3b3 !important;
        color: #000;

    }
    .admin-body .notification-panel .nav-tabs .nav-item .nav-link{
        background-color: #e6e6e6;
         color: #000;
         border-right: 2px solid #fff;
           padding:5px;
           font-size: 14px;
    }
   .admin-body .notification-panel .digit_nav{
            margin-left: 5px;
            padding: 3px;
    }
    .admin-body .notification-panel .tab-content>.tab-pane{
        padding: 0px;
    }
    .admin-body .position-relative .right-toggle-filter{
            left: 0;
            z-index: 2;
    }
    .admin-body .position-relative .toggle-filter .toggle-filter-icon .fa-arrow-right {
        margin-left: 0;
    }
     .admin-body .notification-panel .tab_sec_1{
            padding: 10px 5px;
            border: 1px solid #dee2e6;
            border-top: 0px;
    }
/*    .page-content .project-filter .filter-body{
         max-height: 200px;
         overflow: auto;
         min-height: 120px;
    }*/
       
/* Admin dashbord End*/
/*arrow design start*/

       .arrow_st .lists .wrap{
        background:var(--color-primary);
        color:#fff;
        font-weight: bold;
        font-family: 'Poppins-Regular';
        font-stretch: normal;
        font-style: normal;
        line-height: 1.3;
        letter-spacing: normal;
        height: 100px;
        position: relative;
        margin-right:3px;
        padding:5px 5px 5px 50px;
        max-width: 265px;
        float:left;
        display: flex;
        align-items: center;
       }
       .arrow_st .lists .wrap:before {
        content: "";
        position: absolute;
        left: 0px;
        bottom: 0;
        width: 0;
        height: 0;
        border-left: 20px solid #ffffff;
        border-top: 50px solid transparent;
        border-bottom: 50px solid transparent;
       }
       .arrow_st .lists .wrap:after {
        content: "";
        position: absolute;
        right: -19px;
        bottom: 0;
        width: 0;
        height: 0;
        border-left: 20px solid var(--color-primary);
        border-top: 51px solid transparent;
        border-bottom: 51px solid transparent;
        z-index: 1;
       }
       .arrow_st .lists .wrap p{
             margin-bottom: 5px;
            font-size: 13px;
            min-height: 31px;
            display: flex;
            align-items: end;
       }
       .arrow_st .lists .wrap div{
           display: table-cell;
           vertical-align: middle;
       }
       .arrow_st .lists .wrap div p:nth-child(2){
           border-top: 1px solid #fff;
           padding-top:5px;
           align-items:flex-start;
       }
       .wrap.single div p,.wrap:nth-child(6) div p{
           align-items:center !important;
       }
      .arrow_st .lists .wrap:first-child::before{
         content:"";
         border:none;
       }
        .arrow_st .lists .wrap span:before{
            counter-increment: section;                  
            content:  counter(section); 
            background-color:rgb(120 116 116);
            color:#fff;
            padding: 2px 7px;
            border-radius: 50%;
            text-align: center;
            position: absolute;
            left: 24px;
            top: 38%;
        }
     .arrow_st .lists .wrap.visit_sec{
           background-color:green; 
           color:#fff;
        }
        .arrow_st .lists div.visit_sec:after{
            border-left: 20px solid green;
        }
        .arrow_st .lists .wrap.visit_sec span:before{
            background-color: #fff;
            color: #000;
        }
        .arrow_st .lists .wrap.visit_sec div p:nth-child(2){
           border-top: 1px solid #fff;
        }
        .arrow_st .lists .wrap div p.r_visit_sec,.arrow_st .lists .wrap_not p:nth-child(2){
            color:red; 
        }
        .arrow_st .lists .wrap.wrap_not span:before{
            background-color:red;
        }
        .arrow_st .lists .wrap div p.g_visit_sec,.arrow_st .lists .wrap_sel p:first-child{
            color:green; 
        }
        .arrow_st .lists .wrap.wrap_sel span:before{
            background-color:green;
        }
        .arrow_st .lists .wrap_sel,.arrow_st .lists .wrap_not{
            background-color: var(--color-light_gray);
            color:#000;
        }
        .arrow_st .lists .wrap_not:after,.arrow_st .lists .wrap_sel:after{
            border-left: 20px solid var(--color-light_gray);
        }
        .arrow_st .lists .wrap.wrap_sel div p:nth-child(2),.arrow_st .lists .wrap.wrap_not div p:nth-child(2){
            border-top:1px solid #000;
        }
        .staus_sec{
            position: absolute;
            top: 6px;
            left: 40%;
            font-size: 11px;
            font-weight: normal;
        }
        .staus_sec.eco{
            left: 30%;
        }
        .arrow_st .lists .wrap:first-child span:before{
            left: 15px;
        }
        body {
            counter-reset: section;   /* Set a counter named 'section', and its initial value is 0. */
          }
          .arrow_st .lists .wrap.complete:after{
              border-left:20px solid green;
          }
          .arrow_st .lists .wrap.complete{
              background-color: green;
              color:#fff;
          }
/*          .arrow_st .lists .wrap.blue:after{
              border-left:20px solid var(--color-primary);
          }
          .arrow_st .lists .wrap.blue{
              background-color: var(--color-primary);
              color:#fff;
          }*/
          .arrow_st .lists .wrap.blue div p:nth-child(2),.arrow_st .lists .wrap.complete div p:nth-child(2){
              border-top: 1px solid #fff;
          }
          .list-unstyled .wrap:nth-child(3){
                  max-width: 200px;
          } 
          .list-unstyled .wrap:nth-child(4){
                  max-width: 170px;
          } 
          .list-unstyled .wrap:nth-child(5),.list-unstyled .wrap:nth-child(7){
                  max-width: 220px;
          } 
/*arrow design end*/

/*radio button to checkbox*/
.ecom .cont_ch{
  display: block;
  position: relative;
  padding-left: 20px;
  /*margin-bottom: 12px;*/
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.ecom .cont_ch input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.box-danger .d-inline-block.ecom{
    position: relative;
}
.ecom .checkmark1 {
     position: absolute;
    top: 3px;
    left: 0;
    height: 13px;
    width: 13px;
    border: 1px solid #908b8b;
    border-radius: 2px;
    background-color:#fff;
}
.ecom .cont_ch input:checked ~ .checkmark1 {
  background-color: #2196F3;
}
.ecom .checkmark1:after {
  content: "";
  position: absolute;
  display: none;
}
.ecom .cont_ch input:checked ~ .checkmark1:after {
  display: block;
}
.ecom .cont_ch .checkmark1:after {
    left: 3px;
    top: 0px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/*entry_form css*/
#myform .tab-content #all-projects td:nth-child(13){
    text-align: justify;
}
.edit_btn_se{
    width:45px;
}

.red_txt{
    color:red;
}
/*entry_form end css*/

.quoteForm_sec .sec_bott.text-left table td{
    padding:7px 0px
}
.doller_a,.doller_b,.doller_c{
    position: relative;
        padding-right: 22px;
}
.doller_a::before,.doller_b::before,.doller_c::before{
    content: ': $';
    position: absolute;
    right: 0px;
    top: 6px;
    font-weight: bold;
}
.doller_b::before{
    top: 10px;
}
/*mozila media query*/
@media all and (min--moz-device-pixel-ratio:0){
    .project-content .box-danger .card-body .sec_mar .padTop5{
        padding-top: 5px !important; 
    }
   
}
/*datepicker alignment start*/
 #scroll_moving{
    position:relative;
}
#scroll_moving .xdsoft_datetimepicker{
    position:absolute !important;
    top:60px !important;
    left:4px !important;
    bottom:0px !important;
    height:220px;
}
#scroll_moving .xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_yearselect{
        word-break: initial;
}
/*quote form button css start*/
.action-div .btn-pdf{
    color:red;
    margin-top: 2px;
}
#quote_details .action-div a,#product_details .action-div a{
    cursor: pointer;
}
/*login page Navin*/
.lg_center{
    padding:0 21%;
}
@media screen and (max-width: 1024px){
    .lg_center{
        padding:0 25%;
    }   
}
@media screen and (max-width: 900px){
    .lg_center{
        padding:0 22%;
    }   
}
@media screen and (max-width: 700px){
    .lg_center{
        padding:0 15%;
    }   
}
#captcha input{
    background:url(../../images/reload.svg) !important;
    background-repeat: no-repeat;
    height: 18px;
    width: 21px !important;
    border: none !important;
}
#captchaContact input{
    background:url(../../images/refresh-icon.svg) !important;
    background-repeat: no-repeat;
    height: 18px;
    width: 21px !important;
    border: none !important;
}

.errro_msgT,#txtMsg{
    color:#D7373C;
    font-size: 12px;
    float: left;
    margin-top: 6px;
    width: 74%;
    text-align: left;
}
#txtMsg{
    padding-left:15px;
}
.errro_msgF{
    float: left;
    width: 25%;
    text-align: right;
}
/*modal css*/
.modal-content .modal-header {
    background-color: #606060;
    border: 0px;
    padding-top: 10px;
    padding-bottom: 0px;
    border-radius: 0px;margin-top: -1px;
}
.modal-body {
    padding: 18px !important;
}
.modal-content .close{     position: absolute;
    right: 11px;
    top: 16px;
    color: #fff;
    font-size: 12px;}
.share-brief .modal-dialog .modal-content {
    border-radius: 5px;
    text-align: left;
    /* padding: 30px; */
    position: relative;
}
.modal_fade.modal {
    background-color: rgba(0, 0, 0, 0.7);
}
.btn-orange {
    background: #ff6b00;
    color: #fff;font-size: 12px;
}
.close:focus, .close:hover {
    color: #000;
}
.close{
    font-size: 1rem;
}
#confirmModalTitle{
    font-size: 16px;
    line-height: 46px;
    color: #fff;
    padding-left: 16px;
}
.forgot_pa  .modal-dialog{
       max-width: calc(100% - 68%); 
}
.modal-header1{
        padding: 15px;
}
::-ms-reveal {
    display: none !important;  
}
.programbriefspanone{
    overflow: auto;
}


/* Master card log in css by  */



/* @font-face {
	font-family: 'Mark Offc For MC';
	src: url('../../fonts/MarkForMC-Lt.eot');
	src: local('☺'), url('../../fonts/MarkForMC-Lt.woff') format('woff'), url('../../fonts/MarkForMC-Lt.ttf') format('truetype'), url('../../fonts/MarkForMC-Lt.svg') format('svg');
	font-weight: normal;
	font-style: normal;
} */

@font-face {
	font-family: 'Mark Offc For MC';
	src: url('../../fonts/FontFont_FF.Mark.Pro.eot');
	src: local('?'), url('../../fonts/FontFont_FF.Mark.Pro.woff') format('woff'), url('../../fonts/FontFont_FF.Mark.Pro.ttf') format('truetype'), url('../../fonts/FontFont_FF.Mark.Pro.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
    font-family: 'Mulish-Medium';
    src: url('../../fonts/Mulish-Medium.ttf');
  }

  @font-face {
    font-family: 'Mulish-Bold';
    src: url('../../fonts/Mulish-Bold.ttf');
  }
  @font-face {
    font-family: 'optiCaslon';
    src: url('../../fonts/optiCaslonTwo_Bold.otf');
  }

  @font-face {
    font-family: 'Kyn-Medium';
    src: url('../../fonts/Kyn-Medium.ttf');
}

@font-face {
    font-family: 'Kyn-Bold';
    src: url('../../fonts/Kyn-Bold.ttf');
}

@font-face {
    font-family: 'Kyn-Regular';
    src: url('../../fonts/Kyn-Regular.ttf');
}

@font-face {
    font-family: 'RobotoSlab';
    src: url('../../fonts/RobotoSlab.ttf');
}

/* ADM font */
@font-face {
    font-family: 'Poppins-Medium';
    src: url('../../fonts/Poppins-Medium.ttf');
}

@font-face {
    font-family: 'Poppins-Bold';
    src: url('../../fonts/Poppins-Bold.ttf');
}


@font-face {
    font-family: 'Poppins-Regular';
    src: url('../../fonts/Poppins-Regular.ttf');
}


@font-face {
    font-family: 'Poppins-SemiBold';
    src: url('../../fonts/Poppins-SemiBold.ttf');
}
  /* End ADM font */

body{font-family: 'Poppins-Regular' !important}
.master-card-wrapper{font-family: 'Poppins-Regular';display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    background: #292929;}
.master-card-wrapper.forgot-password{
  background: #BCBCBC;  
}
.master-card-wrapper .custContainer,.resetnew-password .custContainer{
    max-width:100%;
    margin:0 auto;
    padding: 0 30px;
    height: 100%;
}
.resetnew-password #master-card-footer .custContainer,.forgot-password #master-card-footer .custContainer {
    max-width: 1440px;
    padding-left: 0;
    padding-right: 0;
}
.master-card-wrapper #master-card-header,
.prv_sec{
    /* background: #606060; */
    background: #7326d9;
        height: 104px;
}
.master-card-wrapper #master-card-header .custContainer{height: 104px}

.master-card-wrapper #master-card-header .create-account a{font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 24px;
    color: #FFFFFF;
    text-decoration: none;
}
.master-card-wrapper #master-card-header #master-card-logo img{
    width: 100%;
    max-width: 100%;
    height: auto;
}
.container-padd{
    padding:4% 7%;
}
.master-card-login-section {
    background: url(../../images/master-login-bg.png) right center no-repeat #292929;
    background-position: right;
    height: 100%;
    min-height: 510px;
    object-fit: cover;
    object-position: center;
    background-size: 80%;
}
.master-card-wrapper .custContainer.log_wrap_se
{
        padding-top: 3%;
}

/*.reset-password-section .custContainer{
   padding-top: 6.5%;  
}*/
/*.forgot_wrp_sec .forgot-password-section .custContainer
{
    padding-top: 9%;
}*/
.master-card-login-section .custContaine,.prv_secr .custContaine{height: 100%;display: flex;
    justify-content: center;
    flex-direction: column;}
.master-card-login-section .log-in-form-intro{text-align: left;}
.master-card-login-section .log-in-form-intro p,.forgot-password-section .log-in-form-intro p{
    color: #F8F8F8;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}
.forgot-password-section .log-in-form-intro p{
    text-shadow: 0 0 #000000;
}
@-moz-document url-prefix() {
    .forgot-password-section .log-in-form-intro p{
        text-shadow: none;
    }
  }
.master-card-login-section .log-in-form-intro h1,.forgot-password-section .log-in-form-intro h1{
    color:#F8F8F8;
    font-style: normal;
    font-weight: normal;
    font-size: 48px;
    line-height: 56px;
    }
 .forgot-password-section .log-in-form-intro p,.forgot-password-section  .log-in-form-intro h1{
    color: #141413;
}
.forgot-password-section{
    margin-left: 80px;
}
.master-card-login-section .custContainer .login-wrapper{width: 610px; margin-left: 80px;}
.master-card-login-section .login-wrapper .login-form{padding-right: 200px;}
.master-card-login-section .login-main-block .text-cust {font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;color: #BCBCBC !important}
.master-card-login-section .login-btn{background: #606060 !important;border: #606060 !important;
    border-radius:24px !important;min-width: 160px !important;}
.master-card-login-section .captcha_border{border: 2px solid #000;
    background: #fff;
    border-radius: 5px}


/* .master-card-wrapper #master-card-footer{background: #606060} */
.master-card-wrapper #master-card-footer{background: #7326d9}
.master-card-wrapper #master-card-footer .custContainer{height: 104px;}
.master-card-wrapper #master-card-footer .footer-menu{display: flex;
    list-style: none;padding: 0;margin: 0;}
.master-card-wrapper #master-card-footer .footer-menu li{padding-right:15px;}   
.master-card-wrapper #master-card-footer .footer-menu a{font-style: normal;
        font-weight: normal;
        font-size: 14px;
        line-height: 23px;
        color: #fff;
        text-decoration: none;}  
.master-card-wrapper #master-card-footer .copyright p{font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 23px;
    color: #fff}    
    
/* .master-card-wrapper .form-control{border-radius: 4px !important;padding: 0.7rem} */

.forgot_wrp_sec,.reset_sec{
    /*background: #f8f7f5;*/
    font-family: 'Mark Offc For MC';
    background:#f8f7f7 url(../../images/forgot-banner.jpg);
    width:100%;
    background-repeat: no-repeat;
    background-position: right;
    min-height: 510px;
    object-fit: cover;
    object-position:right;
/*    background-size: 100%;*/
    /*background-size: cover !important;*/
        background-size: cover;
    height: 100%;
}
.forgot-password.master-card-wrapper #master-card-header .custContainer,
.resetnew-password #master-card-header .custContainer{
        max-width: 1440px;
    padding-left: 0;
    padding-right: 0;
}
.master-card-wrapper.forgot-password .forgetPassword-form-section,
.reset-password-section form{width: 500px;}
.resetpage{
    margin-left: 80px; 
}
.master-card-wrapper.forgot-password .forgot-password-section .forgetPassword-form,
.resetpage form
{padding-right: 100px;
}
.master-card-wrapper.forgot-password .forgetPassword-form-section .reset-link-btn,
.set-password-btn{background: #CF4500 !important;border: #CF4500;
    border-radius:24px !important;min-width:160px !important;width: auto;font-size: 14px;
    line-height: 18px;color: #FFFFFF;min-height: 40px;height: auto;margin-top: 25px;}
.set-password-btn{
    width:160px !important;
    line-height: 30px;
}
.master-card-wrapper.forgot-password .forgot-password-section .forgetPassword-form-section .cancel-btn a{font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 19px;
    color: #141413;} 
    .master-card-wrapper #captcha{
        text-align: left;
        padding-top: 5px;
        font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    vertical-align: middle;
    padding-top: 13px;
    letter-spacing: 10px;
        text-shadow: 0 0 #000000;
    }
    .forgetPassword-form-section h1,.resetpage form h1{
        font-size: 28px;
        line-height: 25px;
        margin-bottom: 28px;
    }
    .forgot-password-section .login-img{
        text-align: left;
    }
    /* ==== new css for login screen 30-03-2022 ==== */
/*   .forgot_wrp_sec,.reset_sec{
        max-width: 1440px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        background-size: 75%;
        height: calc(100vh - 208px);
    }*/
    .master-card-wrapper .master-card-login-section, .forgot_wrp_sec,.reset_sec{
         max-width: 1440px;
        margin-left: auto;
        margin-right: auto;
        width: 100%; 
       
    }
    .forgot_wrp_sec,.reset_sec{
         display: flex;
    align-items: center;
    }
    @media only screen and (max-width:1200px) {
        /* .master-card-wrapper .master-card-login-section{
            max-width: 1020px;
        } */
        .master-card-login-section .log-in-form-intro h1{
            font-size: 38px;
        }
    }
/* ========Master Card login Responsive ========= */

 @media only screen and (max-width:1440px) {
        .forgot-password.master-card-wrapper #master-card-header .custContainer, .resetnew-password #master-card-header .custContainer,
        .resetnew-password #master-card-footer .custContainer, .forgot-password #master-card-footer .custContainer{
            max-width: 90%;
            padding-left: 30px;
            padding-right: 30px;
        }
    }
/* Master card log in Responsive css by Navin */
@media only screen and (max-width:1024px) {
.master-card-login-section{min-height: 500px;}
.master-card-wrapper.forgot-password .forgot-password-section .forgetPassword-form{padding: 0;}
}
@media only screen and (max-width:991px) {
    .master-card-login-section{background-size: auto 500px;}
    .master-card-login-section .login-main-block {
        padding:0;
    }
}

  @media only screen and (max-width: 767px) {
    .master-card-wrapper .login-main-block {
        padding: 0;} 

    
    .master-card-login-section .log-in-form-intro h1,.forgetPassword-form-section h1{font-size: 35px;line-height: 38px;}
    .master-card-wrapper .form-control{padding: 8px 10px;}
    .master-card-wrapper #captcha{padding-top: 1px;}
    .master-card-login-section .custContainer .login-wrapper {
       max-width: 420px;width: auto;
    }
    .master-card-login-section .login-wrapper .login-form {
        padding-right: 100px;
    }
/*    .forgot-password.forgot-password .forgetPassword-form-section {
        margin-left: 10%;
    }*/

    .master-card-wrapper #master-card-footer .custContainer{flex-direction: column !important;align-items: center;justify-content:center !important;padding:13px}
    .master-card-wrapper #master-card-footer .footer-menu{justify-content: center;margin-bottom: 8px;}
    .master-card-wrapper #master-card-footer .copyright p{text-align: center;}
    .master-card-wrapper #captcha {letter-spacing: 10px;}
    .master-card-wrapper.thankyou-page .container-box{padding:40px;}
    .master-card-wrapper.thankyou-page .container-box h1{font-size: 40px;line-height:42px;}
    .master-card-wrapper.thankyou-page .container-box p{font-size: 16px;line-height: 21px}
  }

  @media only screen and (max-width: 600px) {
    .master-card-login-section{background: #292929;}  
    .master-card-login-section  .captcha_border{margin:0}
    .master-card-login-section .custContainer{padding:0 15px;}
    .master-card-login-section .custContainer .login-wrapper{margin:0 auto}
    .master-card-login-section .log-in-form-intro p{text-align: center;}
    .master-card-login-section .log-in-form-intro h1,.forgetPassword-form-section h1{text-align: center;font-size: 28px;line-height: 30px;}
    .forgetPassword-form-section h1{text-align:left;}
    .master-card-login-section .captcha_border {
        margin: 0 40px 0 0;
    }
    .master-card-login-section .login-wrapper .login-form {
        padding-right: 0;
    }
    .master-card-wrapper.forgot-password .forgetPassword-form-section {
        width: 100%;
        margin-left: 0;
        /*padding: 20px;*/
    }
    .master-card-wrapper.forgot-password .forgetPassword-form-section {
        margin-left: 0;
    }
    .master-card-login-section .captcha_border {margin:0}
    .master-card-wrapper.thankyou-page .container-box h1{font-size: 30px;
        line-height: 36px;
        text-align: center;}
        .master-card-wrapper.thankyou-page .container-box h4{text-align: center;font-size: 20px;}
    .master-card-wrapper.thankyou-page .container-box p{font-size: 16px;
        line-height: 18px;text-align: center;}
        .master-card-wrapper.thankyou-page .submit-reuest {
            max-width: 215px;
            width: auto;margin: 0 auto;}
    
}
@media only screen and (max-width: 575px) {
    .master-card-login-section .captcha-custom{width: 150px;margin: auto;} 
    .master-card-login-section .captcha-text {margin-bottom: 16px}
    .submit-btn{margin: 0 auto;}
    .master-card-login-section .login-btn {min-width: 130px !important}
    .master-card-wrapper.thankyou-page .submit-reuest span{font-size: 13px;}
    .master-card-wrapper.thankyou-page .submit-reuest {
        max-width: 200px !important ;
        width: auto;}
}
@media only screen and (max-width: 320px) {
    .master-card-wrapper #master-card-footer .footer-menu {display: block;text-align: center;}
    /* .master-card-wrapper #master-card-footer .custContainer{margin: 10px 0} */
    .master-card-login-section .login-btn {min-width: 120px !important}
    .master-card-wrapper.thankyou-page .container-box h1 {
        font-size: 30px;
        line-height: 30px;}

    
}
/* =============Master Card Login CSS by Navin Ends============== */
.wrap_sec_main {
    padding: 0px 30px;
}
.admin-heading h4, .content-section h4.main-heading {
    font-weight: 400;
    color: #000;
    font-size: 48px;
    line-height: 56px;
}
.dashboard-body {
    background-color: #f8f7f5;
}

/*=========== Master card Thank you page css by Navin ===========*/

.master-card-wrapper.thankyou-page .container-box{
    max-width: 793px;
    width: 100%;
 padding-top: 113px;
    padding-bottom: 88px;
}
.master-card-wrapper.thankyou-page .go_btn{
    margin-top:48px;
}
.master-card-wrapper.thankyou-page .btn-gresshad.btn-block{
    margin-top: 29px;
}


.master-card-wrapper.thankyou-page .pepsico-body-content{background: #f8f7f5;height: 570px;}
.master-card-wrapper.thankyou-page h1{
    font-style: normal;
    font-weight: normal;
    font-size: 48px;
    line-height: 56px;color: #141413;
    margin-bottom: 25px;
}
.master-card-wrapper.thankyou-page h4{font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 30px;
    color: #141413;
    margin-bottom: 33px;
}
.master-card-wrapper.thankyou-page p{
font-style: normal;
font-weight: normal;
font-size: 17px;
line-height: 21.55px;
color: #222222;
margin-bottom: 21px;}

.master-card-wrapper.thankyou-page a{color:#cf4500}
.master-card-wrapper.thankyou-page .submit-reuest{max-width: 214px; width: auto;}

.master-card-wrapper.thankyou-page .submit-reuest span{font-size: 15px;}  
/*=========== Master card Thank you page css Ends by Navin ===========*/

/*=========== Master card Resetnew-password css starts by Navin ===========*/

.master-card-wrapper.resetnew-password{background: #BCBCBC;}
/*.master-card-wrapper.resetnew-password .resetnew-pwd-formControl{width:440px;margin:0 auto}*/
.master-card-wrapper.resetnew-password .reset-pwd-btn{background: #CF4500 !important;border:#CF4500;min-height:40px;
    margin-top: 10px;
    font-size: 14px;
    line-height: 18px;
}


.master-card-wrapper .master-card-login-section .login-wrapper .alert-warning{font-style: normal;
    font-size: 18px;
    line-height: 23px;
    color: #FFFFFF;
    text-align: left;
    padding: 0;
    background-color:transparent !important;
    border:none;
    margin-bottom: 27px
}
.master-card-wrapper .master-card-login-section .login-wrapper .alert-warning a{color: #cf4500 !important;}

/* Master card Sigle Sign on css Ends by Navin */
/*reset css*/
.login-main-block.resetpage{
      padding: 0px 27% 0px 27%;  
}
.btn_sec{
    clear:both;
}
/*radio button*/
.radio{
  display: inline-block;
  position: relative;
  padding: 0 6px;
  margin: 10px 0 0;
}

.radio input[type='radio'] {
  display: none;
}

label.radio{
  color: #666;
  font-weight: normal;
}

label.radio:before {
  content: " ";
  display: inline-block;
  position: relative;
  top: 5px;
  margin: 0 5px 0 0;
  width: 18px;
  height: 18px;
  border-radius: 11px;
  border: 2px solid #54524F;
  background-color: transparent;
}
.radio input[type=radio]:checked{
    border-radius: 11px;
    width: 20px !important;
    height: 20px;
    position: absolute;
    top: 6px;
    left: 9px;
    content: " ";
    display: block;
    background: #CF4500;
    accent-color: #CF4500;
}
#frmScoringCalculation .multiselect-container .radio input[type=radio]:checked{
        left: 9px !important;
}
#frmScoringCalculation label.radio:before{
        top: 3px !important;
}
.multiselect-container.dropdown-menu>li>a {
    padding: 3px 0px;
}
/*login validation icon*/
.chkvalidation{
    position:relative;
}
.chkvalidation::before{
    content:'';
    background: url(../../images/validation_error.svg);
    width: 24px;
    height: 24px;
    position: absolute;
    top: 12px;
    right: 10px;
    z-index: 3;  
}
.chkvalidation input{
    border:1px solid #D7373C !important;
}
.col.chkvalidation::before{
   right: 20px
}
.for_val.chkvalidation::before{
      top: 10px;  
}
.resetnew-pwd-formControl.chkvalidation::before{
    top: 11px;
    right: 30px;
}
.col.captcha_border.chkvalidation::before{
    content:'';
    background: none !important;
}
.hed_pr{
        font-size: 48px;
    margin-bottom: 20px;
}

/* thanks you page UI */
.master-card-wrapper{
    min-height: calc(100vh - 156px);
    /*height: 100%;*/
}
.master-card-wrapper.thankyou-page .pepsico-body-content{
    height: auto;
}
.pepsico-body-content{
    background-color:#fff;
}
.sub_pre{
    font-size: 18px;
    font-weight:700;
    line-height: 26px;
     margin-bottom: 11px;
}
#terms_conditions p{
    font-size: 18px;
    line-height: 26px;
}
.link-wrapper a{
    cursor: pointer;
}
.align_pad{
    padding-left:40px !important;
    padding-right:40px !important;
}
#terms_conditions .modal-header{
    justify-content: left !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
    
}
#terms_conditions .modal-content .modal-header {
    font-size: 36px;
    line-height: 42px;
    background-color: transparent !important;
    border: 0px solid #fff  !important;
    color:#444340;
}
#terms_conditions .modal-header .modal-title {
    font-size: 36px;
    line-height: 42px;
}
/* table responsive scoll custom */

#terms_conditions .modal-body::-webkit-scrollbar{
    height: 10px;
    width: 8px;
    background-color: #cacaca;
    border-radius: 5px;
}

#terms_conditions .modal-body::-webkit-scrollbar-corner{
    background: #cccccc;
    border-radius: 5px;
}

#terms_conditions .modal-body::-webkit-scrollbar-thumb{
    background: #606060;
    border: 1px solid #cccccc;
    border-radius: 5px;
}

#terms_conditions .modal-body::-webkit-scrollbar-thumb:hover{
    background: #868686;
    border-radius: 5px;
}

#terms_conditions .modal-body::-webkit-scrollbar-track{
    border: 1px solid #cccccc;
    background-color: #cccccc;
    border-radius: 5px;
}
#terms_conditions .modal-body{
      scrollbar-width: thin;
}
#terms_conditions .modal-body {
    overflow: auto;
    max-height: 450px;
    color:#444340;
}
.footer-menu a {
    cursor: pointer;
}
.close_icon::before{
    content:'';
     background: url(../../images/close.svg);
        width: 24px; 
    height: 24px;
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 3;
    background-size: 100%;
}
button:focus {
    outline: 0px dotted;
    outline: 0px auto -webkit-focus-ring-color;
}
.invalid_msg input.multiselect-search{
        border: 0px solid #D7373C !important;
}
 .movable_scroll .modal-header,.cancle_icon{
    cursor: all-scroll;
}

.input_sec,.username-error,.userpassword-error,.captcha-error{
    width: 100%;
    color: #D7373C;
    text-align: left;
}

.msg_val p {
    font-size: 12px;
    line-height: 16px;
    margin-top: 5px;
    margin-bottom: 0px;
}

.captcha_border{
    height: 45px;
}
.dt-button.btn-primary, .dt-button {
    border: 1px solid #686868 !important;
    padding: 8px !important;
    background-color: #fff !important;
    background: #fff !important;
    border-radius: 5px !important;
    cursor: pointer;
}
#settings .radio input[type=radio]:checked{
        left: 5px;
    top: 4px;
}
.resetpage .log-in-form-intro p:first-child{
    font-weight: bold;
        letter-spacing: 1.8px;
}


/* ==== MFA Screen ==== */
.mfa-wrapper h3{
    font-family: 'Mark Offc For MC';
    margin-bottom: 15px;
    font-weight: 600;
}
.mfa-wrapper .text-normal{
    text-transform: none !important;
    font-weight: 400 !important;
}
.mfa-wrapper .forgot-password-section {
    margin-right: 80px;
}
.mfa-qr{
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}
.mfa-qr .qr-image{
    margin-right: 30px;
}
.qr-text .btn-primary{
    width: 180px;
    height: 40px;
    background: #CF4500 !important;
    border: #CF4500 !important;
    border-radius: 24px !important;
}
.qr-text .qr-code-field{
    /* width: calc(100% - 180px); */
    width: 230px;
}
.qr-text .form-control{    
    padding: 0.7rem;
    height: 40px;
}
.invalid_msg .msg_val{
    color: #D7373C !important;
    font-size: 12px;
}

.how-mfa-popup{
    font-family: 'Mark Offc For MC' !important;
}
.how-mfa-popup .modal-header{
    margin-top: 4px;
}
.how-mfa-popup .modal-title{
    font-size: 25px;
    display: block;
    width: 100%;
    margin-top: 25px;
    font-family: 'Mark Offc For MC' !important;
    font-weight: 600;
}
.how-mfa-popup .modal-dialog{
    max-width: 1024px !important;
    width: 100% !important;
}
.copyright a {color: #C4C4C4;}
.logowdtext {
    color: #fff;
    font-size: 18px;
    margin-left: 7px;
    position: relative;
    top: 4px;
      text-transform: uppercase;
      letter-spacing: 3.4px;
      font-size: 26px;
      font-weight: 500;
      font-family: "Poppins-Medium";
    }