:root {
    --rm-primary: #000;
    --rm-secondary: #ffffff;
    --rm-red: #dd1f26;
    --rm-black: #212529;
}

html {
    height: 100%;
}

::-webkit-scrollbar {
    width: 7px;
    height: 8px;
    transition: all 2s;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #000, #000000b2);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    transition: all 2s;
    border-radius: 10px;
}

body {
    background-image: url("/images/background.png");
    font-family: "Roboto", sans-serif;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    /* height:100vh; */
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    /* background-color:#ebebf17a; */
}

label {
    /* margin-top: 6px; */
    line-height: 17px;
}

a {
    color: #fff;
}

a:focus,
a:hover {
    color: #008080;
}

.checkbox-inline + .checkbox-inline,
.radio-inline + .radio-inline {
    margin-top: 6px;
}

/******* Login Page *******/

.relative {
    position: relative;
}

.login-container-wrapper .logo,
.login-container-wrapper .welcome {
    margin: 0 0 20px 0;
    font-size: 16px;
    color: #fff;
    text-align: center;
    letter-spacing: 1px;
}

.login-container-wrapper .logo {
    text-align: center;
    position: absolute;
    top: -42px;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    left: 37.5%;
    border-radius: 50%;
    background-color: #fff;
    padding: 25px;
    /* box-shadow: 0px 0px 9px 2px #344454; */
}

.login-container-wrapper {
    max-width: 400px;
    margin: 10% auto 8%;
    padding: 40px;
    box-sizing: border-box;
    background: rgba(65, 134, 246, 0.78);
    /* box-shadow: 1px 1px 10px 1px #000000, 8px 8px 0px 0px #344454, 12px 12px 10px 0px #000000; */
    position: relative;
    padding-top: 80px;
    border-radius: 25px;
}

.logo .fa {
    font-size: 50px;
}
.login input:focus + .fa {
    color: #fff;
}
.login-form .form-group {
    margin-right: 0;
    margin-left: 0;
}

.login-form i {
    position: absolute;
    top: 18px;
    right: 20px;
    color: #93a5ab;
}

.login-form .input-lg {
    font-size: 16px;
    height: 52px;
    padding: 10px 25px;
    border-radius: 0;
}

.login input[type="email"],
.login input[type="password"],
.login input:focus {
    background-color: rgba(40, 52, 67, 0.75);
    border: 1px solid #4a525f;
    color: #eee;
    border-left: 4px solid #93a5ab;
}

.login input:focus {
    border-left: 4px solid #ccd8da;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    background-color: rgba(40, 52, 67, 0.75) !important;
    background-image: none;
    color: rgb(0, 0, 0);
    border-color: #faffbd;
}

.login .checkbox label,
.login .checkbox a {
    color: #ddd;
}

/* .btn-success {
    background-color: transparent;
    background-image: none;
    padding: 8px 50px;
    border-radius: 0;
    border: 2px solid #93a5ab;
    box-shadow: inset 0 0 0 0 #7692a7;
    -webkit-transition: all ease 0.8s;
    -moz-transition: all ease 0.8s;
    transition: all ease 0.8s;
} */

/* .btn-success:focus,
.btn-success:hover,
.btn-success.active,
.btn-success:active {
    background-color: transparent;
    border-color: #fff;
    box-shadow: inset 0 0 100px 0 #7692a7;
    color: #fff;
} */

.footer-section {
    position: fixed;
    bottom: 0px;
    background-color: #fff;
    width: 100%;
    /* padding:px 0px; */
    /* margin-top:10px; */
}
.footer-section p {
    /* color:#fff; */
    margin-top: 20px;
}
.nav-item {
    margin: 0px 8px;
    color: #000;
}
.nav-link {
    color: #fff !important;
    padding: 5px 10px !important;
}
.section {
    padding: 55px 0px;
}

button.nav-link.lead_nav_link {
    color: #000 !important;
}

button.nav-link.lead_nav_link.active {
    color: #fff !important;
}

.setup-card {
    width: 150px;
    height: 150px;
    /* border:1px solid black; */
    margin: 0 auto;
    display: block;
    position: relative;
    background-color: #212529;
    color: #fff;
    border-radius: 50%;
}

.setup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* padding:30px; */
}
.setup-card .icon {
    font-size: 45px;
    text-align: center;
}
.icon-title {
    font-size: 15px;
    text-align: center;
    margin-top: 20px;
    color: #000;
    text-decoration: none;
}

.dashboard-box {
    width: 100%;
    height: 100px;
    margin: 0 auto;
    display: block;
    position: relative;
}

.dashboard-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    width: 100%;
}

.dashboard-title {
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}
.count {
    font-size: 30px;
    font-weight: bold;
    text-align: right;
}

.table-view {
    background-color: #fff;
    padding: 30px 20px;
    margin: 20px 0px;
    border-radius: 10px;
}
.btn-danger {
    background-color: #f43400 !important;
}
.btn-warning {
    background: #f9a100 !important;
}
.form-control:focus {
    border-color: #ccc; /* Replace with your desired color */
    box-shadow: 10px 10px 14px -12px rgba(0, 0, 0, 0.61);
}
.notes-form-box {
    background-color: #fff;
    margin: 15px 0px;
    font-size: 12px;
    padding: 15px 15px;
    border-radius: 10px;
    border-left: 8px solid #dd1f26;
    /* border-right:8px solid #4286F6; */
    position: relative;
}
.notes-form-box span {
    margin-top: 10px;
    padding: 3px;
    color: #fff;
    font-size: 10px;
    border-radius: 10px;
    margin-right: 5px;
    display: inline-block;
    width: 80px;
    text-align: center;
}

.todayactivities {
    background-color: #fff;
    border-radius: 10px 0px 0px 10px;
    width: 500px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -550px;
    padding: 25px;
    box-shadow: -9px 0px 21px -10px rgba(0, 0, 0, 0.64);
    transition: 0.5s;
    background-image: url("/images/background.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.todayactivities.show {
    right: 0;
    z-index: 1051;
}
.sidebarbtn {
    position: fixed;
    top: 150px;
    right: -62px;
    transform: rotate(-90deg);
    border-radius: 10px 10px 0px 0px;
}
.sidebarbtntwo {
    position: fixed;
    top: 350px;
    right: -70px;
    transform: rotate(-90deg);
    border-radius: 10px 10px 0px 0px;
}
.sidebarbtnthree {
    position: fixed;
    bottom: 350px;
    left: -86px;
    transform: rotate(-270deg);
    border-radius: 10px 10px 0px 0px;
}

.overdueactivities {
    background-color: #fff;
    border-radius: 10px 0px 0px 10px;
    width: 500px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -500px;
    padding: 25px;
    box-shadow: -9px 0px 21px -10px rgba(0, 0, 0, 0.64);
    transition: 0.5s;
    background-image: url("/images/background.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.overdueactivities.show {
    right: 0;
}
.btn {
    border-radius: 50px;
}
.btn:hover {
    box-shadow: 10px 10px 14px -12px rgba(0, 0, 0, 0.61) !important;
}
.dasboard-welcome-card {
    width: 100%;
    background-image: url("/images/dashboard.png");
    background-size: cover;
    background-position: center;
    height: 200px;
    border-radius: 30px;
}
.dashboard {
    padding-top: 90px;
    padding-left: 50px;
}
.folloupsummery {
    display: flex;
    justify-content: center;
}
.folloupbox {
    height: 80px;
    color: #fff;
    width: 210px;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    align-items: center;
    border-radius: 15px;
    margin: 10px;
}
.folloupcount {
    font-size: 40px;
    padding-right: 20px;
}
.follouptitle {
    font-weight: bold;
    padding-left: 20px;
}
.folloupbox2 {
    height: 80px;
    background-color: #fff;
    width: 210px;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    align-items: center;
    border-radius: 15px;
    margin: 10px;
}

.folloupbox2 .follouptitle {
    font-size: 13px;
}
.folloupbox2 .folloupcount {
    font-size: 35px;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.form-select {
    font-size: 12px !important;
    line-height: 1.8 !important;
}
.form-control {
    font-size: 14px !important;
}
.form-control::placeholder {
    color: #ccc;
}
::-webkit-input-placeholder {
    font-size: 12px; /* Change this value to adjust the font size */
    color: #ccc;
}

:-moz-placeholder {
    font-size: 12px; /* Change this value to adjust the font size */
    color: #ccc;
}

::-moz-placeholder {
    font-size: 12px; /* Change this value to adjust the font size */
    color: #ccc;
}

:-ms-input-placeholder {
    font-size: 12px; /* Change this value to adjust the font size */
    color: #ccc;
}
.renewal-history {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 15px;
}
.renewal-history h6 {
    font-weight: bold;
    margin-left: 10px;
}
.renewal-history li {
    font-size: 12px;
    line-height: 20px;
}
.alertbox {
    height: 50px;
    margin-top: 15px;
    border-radius: 50px;
    color: #fff;
    text-align: center;
}
.alertbox p {
    padding-top: 15px;
}

.renewalscounts {
    display: flex;
    justify-content: center;
}

@media only screen and (max-width: 768px) {
    .renewalscounts {
        flex-wrap: wrap;
    }
}
.renewalcountbox {
    height: 80px;
    color: #fff;
    width: 330px;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    align-items: center;
    border-radius: 15px;
    margin: 10px;
}
.renewalcount {
    font-size: 40px;
    padding-right: 20px;
}
.renewaltitle {
    font-weight: bold;
    padding-left: 20px;
}
.renewalactivities {
    background-color: #fff;
    border-radius: 10px 0px 0px 10px;
    width: 500px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -500px;
    padding: 25px;
    /*box-shadow: -9px 0px 21px -10px rgba(0,0,0,0.64);*/
    box-shadow: 3px 5px 21px 0px rgba(0, 0, 0, 0.28);

    transition: 0.5s;
    background-image: url("/images/background.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.renewalactivities.show {
    left: 0;
}

.navbaractive {
    background-color: #dd1f26;
    color: #fff !important;
    border-radius: 50px;
}

.filtertrigger {
    background-color: #fff;
    border-radius: 10px 0px 0px 10px;
    width: 350px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -350px;
    padding: 25px;
    /*box-shadow: -9px 0px 21px -10px rgba(0,0,0,0.64);*/
    box-shadow: 3px 5px 21px 0px rgba(0, 0, 0, 0.28);
    transition: 0.5s;
    background-image: url("/images/background.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.filtertrigger.show {
    right: 0;
    z-index: 1051;
}

.button-box {
    position: absolute;
    right: 5px;
    bottom: 0px;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background-color: var(--rm-primary) !important;
}
.sessionexpired {
    position: fixed;
    height: 100vh;
    background-color: #fff;
    background-image: url("/images/background.png");
    background-size: cover;
    width: 100%;
    z-index: 9999999;
}

.sessionexpired .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.estimatecreate {
    height: 150px;
    position: relative;
    background-color: #ccd8da;
    /* border:2px solid black; */
    box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}
/* .estimatecreate i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 75px;
    color: #ccc;
} */
.select2-container--default .select2-selection--single {
    width: 230px !important;
}
.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    right: 14px !important;
}
.select2-container .select2-selection--single {
    height: 35px !important;
}
.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    line-height: 33px !important;
}

.disablestatusbox {
    display: none;
}
.activestatusbox {
    display: block;
}

.approve_container {
    position: absolute;
    bottom: 2px;
    width: 100%;
    text-align: center;
}

.estimatelist {
    list-style: none;
    display: flex;
    position: absolute;
    justify-content: center;
    bottom: 20px;
    left: 10px;
    padding: 3px 0px;
    color: #000;
    background-color: #f7f7f7;
    width: 100%;
}
.estimatelist li {
    margin: 0px 15px;
    justify-content: center;
}
.estimatecreate {
    height: 210px;
    position: relative;
    background-color: #ccd8da;
    /* border:2px solid black; */
    box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}
.estimatecreate .es {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ccc;
}

#responseloader {
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.56);
    position: fixed;
    z-index: 999999;
    top: 0%;
}
.preloaderimg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main_nav_bar {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.28);
}

.sidebar-container {
    padding: 25px 25px;
    border-radius: 10px;
    height: 110vh;
}
.justify-content-around {
    flex-wrap: wrap;
    gap: 20px;
}

.dashboard_section [data-bs-toggle="modal"] {
    cursor: pointer;
}


.filtertri
  {
      background-color: #fff;
      border-radius:10px 0px 0px 10px;
      width:350px;
      height:100vh;
      position: fixed;
      top:0;
      right:-350px;
      padding:25px;
      /* /box-shadow: -9px 0px 21px -10px rgba(0,0,0,0.64);/ */
      box-shadow: 3px 5px 21px 0px rgba(0,0,0,0.28);
      transition: 0.5s;
      background-image: url('/images/background.png');
      background-repeat: no-repeat;
      background-position: center;
      background-size:cover;
      z-index:9999;
  }

  .filtertri.show {
      right: 0;
  }
.field-set{
    display: flex;
    justify-content: space-between;
}

.social-media-side ul li img {
    margin-left: 10px;
    color: #000;
    background: white;
    /* padding: 10px; */
    border-radius: 50%;
    width: 60;
    height: 60px;
    transform: rotate(0deg);
    text-align: center;
    font-size: 25px;
}
.social-media-side {
    position: fixed;
    bottom: 190px;
    z-index: 9999;
    width: 50px;
    right: 0;
}

.social-media-side ul li {
    display: block;
    margin: 14px;
    background: #FFFFFF;
    width: 300px;
    text-align: start;
    box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.2);
    border-radius: 50px 50px 50px 50px;
    transition: all 1.5s;
}

/* .social-media-side ul li:hover {
    transform: translate(-190px, 0);
    background: #ffffff;
    transition: all 1.5s;
} */

/* .social-media-side ul {
    padding: 0px;
    transform: translate(-100px, 0);
} */
.recount{
    color: white;
    background: red;
    width: 10px;
    padding: 8px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
}
.social-media-side ul {
    padding: 0;
    transform: translate(-100px, 0);
    transition: transform 1.5s;
}

/* Style for the toggle icon */
.toggle-icon {
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    font-size: 24px;
    background: #FFF;
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.2);
}
.nav-pills .nav-link.rrrd.active {
    background-color: #f32213 !important;
}