@font-face {
  font-family: 'Font Awesome';
  src: url('/assets/fonts/fa-solid-900.woff2') format('woff2'),
       url('/assets/fonts/fa-solid-900.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: helreg;
  src: url(../fonts/HelveticaRegular.otf);
}
@font-face {
  font-family: helrega;
  src: url(../fonts/HelveticaNeue.ttf);
}
@font-face {
  font-family: helmed;
  src: url(../fonts/HelveticaNeue-Medium.otf);
}
@font-face {
  font-family: helbold;
  src: url(../fonts/HelveticaNeueBold.ttf);
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}
.p-0 {
  padding: 0;
}

.margin-top-10 {
    margin-top: 10px;
}

.m-right{
  margin-right: 6px;
}

.file-main {
  display: flex;
  align-items: center;
}

 .file-icon {
      font-size: 18px;
      margin-right: 8px;
    }

.file-main a {
  font-weight: 600;
  color: #2b4eff;
}

input[type=checkbox], input[type=radio] {
    margin: 4px 0 0 15px;
}

.modal-content {
  border-radius: 11px;
}

.modal-body {
    padding: 0;
}

.modal-form-header {
  padding: 8px;
  background: #7A003C;
  color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.modal-form-heading {
  font-weight: 600;
  margin: 0;
  line-height: 1.42857143;
  font-size: 14px;
}

.bootstrap-select.btn-group .dropdown-menu{
  width: 200px;
}

table.dataTable tbody tr {
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}
 
table.dataTable tbody tr:hover {
    background-color: #f1dce8a3; /* light tint */
}

 .card {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 9px;
      border-radius: 14px;
      position: relative;
      overflow: hidden;
      border: 1px solid transparent;
      transition: 0.3s;
  }

  /* LEFT CONTENT */
  .card-left {
      display: flex;
      align-items: center;
  }

  .card-icon {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-right: 15px;
  }

  /* TEXT */
  .card-title {
      font-size: 12px;
      color: #555;
  }

  .card-value {
      font-size: 20px;
      font-weight: bold;
  }

  /* RIGHT IMAGE */
  .card-right img {
      width: 50px;
      opacity: 0.55; /* faded like your design */
  }

  /* HOVER */
  .card:hover {
     transform: none;
    box-shadow: none;
  }

  /* BLUE */
  .card-blue {
      background: rgba(74,108,247,0.08); /* light tint */
      border-left: 4px solid #4a6cf7;
  }
  .card-blue .card-icon {
      background: rgba(74,108,247,0.15);
      color: #4a6cf7;
  }

  /* YELLOW */
  .card-yellow {
      background: rgba(244,180,0,0.12);
      border-left: 4px solid #f4b400;
  }
  .card-yellow .card-icon {
      background: rgba(244,180,0,0.2);
      color: #f4b400;
  }

  /* GREEN */
  .card-green {
      background: rgba(40,167,69,0.1);
      border-left: 4px solid #28a745;
  }
  .card-green .card-icon {
      background: rgba(40,167,69,0.2);
      color: #28a745;
  }

  .btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
    outline:none;
    outline-offset: -0;
  }

  a:focus {
      outline: none;
      outline-offset: 0;
  }


  .upload-box {
      border: 2px dashed #E5E5E5;
      background: #F7F7F9;
      border-radius: 10px;
      /* padding: 10px 25px; */
      padding: 10px 0px;
      transition: 0.3s;
      margin-bottom: 10px;
  }

  .ldrfileuploaddiv{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .upload-box #upload-one{
    /* font-size: 10px !important; */
    font-size: 12px !important;
  }

  .upload-box:hover {
      border-color: #7A003C;
      background: #fff;
  }

  .upload-box p {
      /* color: #777; */
      color: #000;
  }  

  .upload-input {
      margin-top: 10px;
  }

  .form-control {
      border-radius: 8px;
      border: 1px solid #E5E5E5;
      box-shadow: none;
      padding: 9px;
      transition: all 0.2s ease;
  }

  .form-control:focus {
      border-color: #7A003C;
      box-shadow: 0 0 6px rgba(122, 0, 60, 0.25);
  }

.action-btns {
      display: flex;
      justify-content: center;
    }

    /* STATUS */
    .status {
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 12px;
      display: flex;
      justify-content: center;
      width: max-content;
    }

    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 500;
    }

    /* GREEN */
    .status-success {
      background: #e6f7ec;
      color: #28a745;
    }

    /* YELLOW */
    .status-warning {
      background: #fff4e5;
      color: #f4b400;
    }

    /* RED (soft, not harsh) */
    .status-danger {
      background: #fdeaea;
      color: #e53935;
    }

    /* ACTION BUTTONS */
    .action-btns button {
      border: none;
      background: #f5f7fb;
      margin-right: 5px;
      padding: 6px 8px;
      border-radius: 8px;
      cursor: pointer;
    }

    .action-btns button:hover {
      background: #e9edff;
    }

    .action-buttons {
      display: flex;
      gap: 6px;
    }

    /* BASE BUTTON */
    .icon-btn {
      width: 34px;
      height: 34px;
      border-radius: 10px;
      border: 1px solid #e3e7ef;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: 0.2s;
    }

    /* ICON COLOR */
    .icon-btn i {
      font-size: 14px;
      color: #5a6a85;
    }

    /* HOVER */
    .icon-btn:hover {
      background: #f5f7ff;
      border-color: #4a6cf7;
    }

    .icon-btn:hover i {
      color: #4a6cf7;
    }

    /* DELETE BUTTON SPECIAL */
    .icon-btn.delete i {
      color: #e53935;
    }

    .icon-btn.delete:hover {
      background: #fdeaea;
      border-color: #e53935;
    }

.btn-outline-custom {
            border: 1px solid #e0e4ec;
            background: #fff;
            border-radius: 10px;
            padding: 8px 14px;
            font-size: 13px;
            color: #2e3145;
        }

        .btn-outline-custom i {
            margin-right: 5px;
        }

        .btn-outline-custom:hover {
            background: #f5f7ff;
            border-color: #4a6cf7 !important;
            color: #4a6cf7 !important;
        }

        /* PRIMARY BUTTON */
        .btn-primary-custom {
            background: #4a6cf7;
            color: #fff;
            border-radius: 10px;
            padding: 9px 16px;
            border: none;
        }

        .btn-primary-custom i {
            margin-right: 6px;
        }

        .btn-primary-custom:hover {
            background: #3a5be0;
        }

        .icon-box {
            width: 48px;
            height: 48px;
            background: #eef2ff;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }

        .icon-box i {
            color: #4a6cf7;
            font-size: 20px;
        }

        .title {
            font-size: 18px;
            font-weight: 600;
        }

        .subtitle {
            font-size: 13px;
            color: #777;
        }

        .header-left {
            display: flex;
            align-items: center;
        }


tr:nth-child(even) {
  background: #f5f5fa;
}
.header-contfluid {
  /*background-color: #000632;*/
  background-color: #700149;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: +1;
  box-shadow: none;
}
.header-div {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-leftdiv {
  margin-left: 15px;
}
.ldrloginpagemaindiv {
  min-height: calc(100vh - 60px);
}
.icformlabel {
  color: #fff;
}
.login-div {
  display: flex;
  margin-top: 150px;
  /* box-shadow: 0 0 9px rgb(2 16 48 / 15%); */
}
.login-leftdiv {
  background-color: transparent;
    padding: 24px;
    border: 1px solid #ccc;
    width: 66%;
    box-shadow: 0px 5px 14px 3px #ccc;
    border-radius: 8px 0px 0px 8px;
}

.drr-logo-section {
    position: absolute;
    display: flex;
    left: 2em;
    z-index: 1;
    top: 2em;
}


.login-rightdiv {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  width: 34%;
  border-radius: 0 8px 8px 0;
  box-shadow: 7px 3px 15px 2px #ccc;
}
.login-rightdiv img {
  width: 80%;
}
.headericons {
  height: 20px;
  margin-right: 3px;
}
.login-head {
  font-size: 25px;
  color: #000000;
  margin-bottom: 0;
  font-weight: 600;
}
.login-subhead {
  font-size: 15px;
  color: #000000;
  font-weight: 300;
}
.login-subhead span {
  font-size: 15px;
  color: #ed1c24;
  font-weight: 500;
}
.login-desc {
  font-size: 15px;
  color: #ebdede;
  margin-top: 25px;
}
.login-desc a {
  color: #ed1c24;
}
.login-inputs input {
  width: 100%;
  padding: 10px 5px;
  margin-bottom: 15px;
  border: 1px solid #aeacac;
  border-radius: 4px;
}
.login-inputs {
  margin-top: 25px;
}
.login-soloinputs {
  position: relative;
}
.login-soloinputs img {
  position: absolute;
  top: 10px;
  left: 8px;
  height: 20px;
}
.loginbtn-div {
  /* display: flex; */
  justify-content: center;
  /* margin-top: 35px; */
  width: 85%;
  margin: 0 auto;
}

.icforgotbtndiv {
  font-size: 15px !important;
  color: #ebdede !important;
  font-weight: 300 !important;
  text-decoration: none !important;
}
.iclogbtndiv {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.icloginbtndiv {
  border: 0;
  font-size: 20px;
  font-weight: 500;
  background-color: #ed1c24;
  color: #fff !important;
  padding: 10px 40px;
  border-radius: 4px;
}
.loginbtn-div button {
  border: 0;
  font-size: 18px;
  font-weight: 500;
  background-color: #700149;
  color: #fff;
  padding: 7px 25px;
  border-radius: 4px;
}
.header-rightdiv ul {
  margin-bottom: 0;
  padding-left: 5px;
}
.header-rightdiv ul li {
  display: inline-block;
  text-align: center;
  margin: 0;
  font-size: 14px;
  color: #fff;
  font-family: helreg;
}
.header-rightdiv ul li a {
  text-decoration: none;
  color: #fff;
  font-family: helreg;
  font-size: 12px;
  letter-spacing: 0.5px;
  border-radius: 4px;
  padding: 5px 15px;
}
.header-rightdiv ul li a:hover {
  background-color: transparent;
  color: #ffffff;
}

.header-rightmobile ul {
  margin-bottom: 0;
}
.header-rightmobile ul li {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  margin: 0 10px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.header-rightmobile ul li a {
  color: #fff;
}
.myprofiletab {
  background-color: #fff;
  min-height: 100vh;
  padding-bottom: 50px;
  margin-top: 56px;
}
.addteambtndiv {
  display: flex;
  justify-content: center;
  margin: 20px;
}
.addteambtndiv input {
  background-color: #7a003c;;
  color: #fff;
  font-size: 14px;
  font-family: helreg;
  border: 0 !important;
  padding: 5px 15px !important;
  border-radius: 6px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
  width: auto !important;
  margin-bottom: 0 !important;
}
.addteambtndiv button {
  border: 0;
  font-size: 18px;
  font-weight: 500;
  background-color: #ed1c24;
  color: #fff;
  padding: 7px 25px;
  border-radius: 4px;
}
.dropdown-toggle {
  padding: 10px 5px;
  font-size: 16px;
  font-weight: 500;
}
.inprofileuppertab {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  margin-top: 15px;
}
.inprofileuppertab2 {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
}
.inprofileuppertab3 {
  /* display: flex;
  justify-content: space-between; */
  padding: 15px;
}
.inprofileuppertab4 {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}
.innerprofiletab {
  display: flex;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 0 9px rgb(2 16 48 / 30%);
}

.widhundred {
  width: 100%;
}

.dropdown-menu > li > a {
  white-space: inherit !important;
}

.dropdown-menu ul {
  width: 500px;
  overflow-x: scroll;
}
.dropdown-menu ul li {
  /* white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; */
}
.dropdown-menu ul li a {
  /* white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; */
}
.dropdown-menu ul li a span {
  /* white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; */
}
.glyphicon-ok:before {
  background-color: #fff;
}

.inprofileuppertab_left p {
  font-size: 12px;
  margin-bottom: 0;
  color: #626262;
  font-family: helmed;
}
.extrapadleft {
  padding-left: 15px;
}
.innerprofiletab_right {
  padding-left: 20px;
}
.innerprofiletab_right p span {
  font-size: 15px;
  font-weight: 600;
  color: #000632;
}
.innerprofiletab_right p {
  font-size: 15px;
  font-weight: 400;
  color: #000;
}
.innerprofiletab_left img {
  width: 100%;
}
.teamtable {
  width: 100%;
}
.teammemberdiv {
  /* padding: 15px 0;
  border-radius: 4px;
  box-shadow: 0 0 9px rgb(2 16 48 / 30%); */
}

.dataTables_wrapper {
    position: relative;
    clear: both;
    zoom: 1;
    border-radius: 4px;
    box-shadow: none;
    margin-top: 15px;
    border: none;
   
}
.teamtable th {
  color: #ffffff;
  font-size: 12px;
  padding-bottom: 5px;
  padding-right: 4px;
  padding-left: 4px;
  padding-top: 5px;
  cursor: pointer;
  font-family: "helmed";
  font-weight: 100;
}
.teamtablesu th {
  color: #000632 !important;
}
.teamtable td {
  color:  #5e5e5e;
  font-size: 12px;
  padding: 4px 0;
  padding-right: 4px;
  padding-left: 4px;
  text-align: left;
  cursor: pointer;
  font-family: helreg;
}
.tooltipimg {
  height: 16px;
  margin-left: 3px;
}
.dashboardentrydiv table {
  width: 100%;
}

.dashboard-page .ldrdashmaindivrow {
  margin-top: 75px;
  margin-bottom: 5%;
}
.dashboard-page .leftcoldivmain {
  padding: 0 10px 0 30px;
}
.dashboardentrydiv {
  padding: 20px;
  border-radius: 4px;
  margin: 0 15px;
  box-shadow: 0 0 9px rgb(2 16 48 / 30%);
}
.dashboardentrydiv table tr {
  border-bottom: 1px solid #fff;
}
.dashboardentrydiv table th {
  color: #2e319e;
  font-size: 11px;
  padding-bottom: 10px;
  text-align: center;
}
.dashboardentrydiv table td {
  color: #000;
  font-size: 11px;
  font-weight: 600;
  text-align: left;
  border: 1px solid #000;
  padding: 10px 5px;
}
.dashboardentrydivcover table {
  width: 100%;
}
.dashboardentrydivcover {
  padding: 20px;
  border-radius: 4px;
  margin: 0 15px;
  box-shadow: 0 0 9px rgb(2 16 48 / 30%);
}
.dashboardentrydivcover table tr {
  border-bottom: 1px solid #000;
}
.dashboardentrydivcover table th {
  color: #2e319e;
  font-size: 18px;
  padding-bottom: 10px;
  text-align: center;
  font-weight: 500;
}
.dashboardentrydivcover table td {
  color: #000;
  font-size: 14px;
  padding: 10px 10px 10px 0px;
  font-weight: 500;
  text-align: left;
}
.coveractiondiv {
  display: flex;
}
.dashboardentrydivformeasure table {
  width: 100%;
}
.dashboardentrydivformeasure {
  padding: 20px;
  border-radius: 4px;
  margin: 0 15px;
  box-shadow: 0 0 9px rgb(2 16 48 / 30%);
}
.dashboardentrydivformeasure table tr {
  border-bottom: 1px solid #fff;
}
.dashboardentrydivformeasure table th {
  color: #2e319e;
  font-size: 11px;
  padding-bottom: 10px;
  text-align: center;
}
.dashboardentrydivformeasure table td {
  color: #000;
  font-size: 11px;
  font-weight: 400;
  text-align: left;
  border: 1px solid #000;
}
.measurementparameterdiv {
  display: flex;
}
.measurementparameterdiv .msparahalfdiv {
  width: 50%;
  border-right: 1px solid #000;
}
.measurementparameterdiv .msparahalfdiv:last-child {
  border-right: 1px solid #ffff !important;
  border-bottom: 1px solid #000 !important;
}
.departmentselect {
  margin-left: 15px;
  margin-bottom: 15px;
  font-size: 16px;
  padding: 5px 10px;
  border: 0;
  border-radius: 4px;
  background: #fab726;
  color: #000;
  font-weight: 500;
}
.dashboardentrydivformeasure p {
  padding: 5px 5px;
  margin-bottom: 0;
  font-size: 11px;
  font-weight: 600;
}
.inprofileuppertab3 select {
  background: #2e319e;
  color: #fff;
  border: 0;
  padding: 5px;
  border-radius: 25px;
}
.measurementparameterdiv p:last-child {
  border-right: 1px solid #fff;
}
.maxheightdiv {
  min-height: 115px;
  border-bottom: 1px solid #000;
}
.maindivtorembod .maxheightdiv:last-child {
  border-bottom: 1px solid #fff;
}
.taskdivforeditapp {
  position: relative;
}
.hovertaskeditdiv {
  position: absolute;
  z-index: -1;
  width: 100%;
  background: #fff;
  top: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  border: 2px solid #ed1c24;
}
.taskdivforeditapp:hover .hovertaskeditdiv {
  z-index: +1;
  visibility: visible;
}
.hovermetrictaskdiv {
  position: absolute;
  z-index: -1;
  width: 100%;
  background: #fff;
  top: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  border: 2px solid #ed1c24;
}
.taskdivforeditapp:hover .hovermetrictaskdiv {
  z-index: +1;
  visibility: visible;
}
.datesection {
  display: flex;
}
.datesection p {
  width: 8.333%;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
}
.metrictbody p {
  border-bottom: 1px solid #000;
  padding: 10px 5px;
  margin-bottom: 0;
}
.metrictbody p:last-child {
  border-bottom: 1px solid #fff;
}
.metric-id {
  font-weight: 700;
}
.mstabeldiv .mstablerow:last-child {
  border-bottom: 1px solid #000;
}
.editicon {
  height: 15px;
}
.editicon2 {
  height: 18px;
  margin-left: 8px;
}
.editiconmain {
  height: 30px;
  margin: 0 4px;
}
/* .editbtn-div {
  position: relative;
  margin-left: 10px;
} */
/* .editbtn-div button {
  border: 0;
  font-size: 16px;
  font-weight: 500;
  padding: 6px 32px 6px 15px;
  background: #ed1c24;
  color: #fff;
  border-radius: 4px;
}
.editbtn-div img {
  width: 15px;
  position: absolute;
  right: 8px;
  top: 8px;
} */
.suupload-div {
  position: relative;
  display: flex;
  justify-content: end;
  padding-right: 15px;
  padding-bottom: 15px;
}
.suupload-div button {
  border: 0;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 8px;
  background: #700149;
  color: #fff;
  border-radius: 4px;
}

.suupload-div button:hover {
  text-decoration: none;
  box-shadow: 0px 0px 7px 1px #777;
  /* background-color: #464646; */
  transform: scale(1.1);
}
.suupload-div img {
  width: 15px;
  position: absolute;
  right: 8px;
  top: 8px;
}

.teamtablesuheadrow {
  background-color: #700149 !important;
}
.teamtablesuheadrow th {
  color: #fff !important;
  font-family: "helmed";
  font-weight: 100;
  padding: 5px;
  letter-spacing: 0.5px;
}
/* .filterbtn-div {
  position: relative;
  margin-left: 10px;
} */
.filterbtn-div button {
  text-decoration: none;
  color: #2e3145;
  font-family: "helmed";
  font-size: 14px;
  border: 1px solid #e0e4ec;
  border-radius: 4px;
  padding: 3px 5px;
  background: #fff;
  margin-left: 10px;
}

.filterbtn-div button:hover {
  background: transparent;
}
/* .filterbtn-div img {
  width: 15px;
  position: absolute;
  right: 8px;
  top: 8px;
} */
/* .sharebtn-div {
  position: relative;
  margin-left: 10px;
}
.sharebtn-div button {
  border: 0;
  font-size: 16px;
  font-weight: 500;
  padding: 6px 32px 6px 15px;
  background: #11780f;
  color: #fff;
  border-radius: 4px;
}
.sharebtn-div img {
  width: 15px;
  position: absolute;
  right: 8px;
  top: 8px;
} */
.exportbtn-div {
  position: relative;
  margin-top: 4px;
}
/* .exportbtn-div button, */
.exportbtn-div a {
  border: 0;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 32px 6px 15px;
  background: #000;
  color: #fff;
  border-radius: 4px;
}
.exportbtn-div a:hover {
  text-decoration: none;
}
.exportbtn-div img {
  width: 15px;
  position: absolute;
  right: 8px;
  top: 3px;
}
.shareCheckbox {
  width: 15px;
  height: 15px;
}
.typeofagreementp {
  margin-bottom: 0;
}
.ldrloginlabel {
  color: #010101;
}
.subscriber-doc-data {
  /* margin-top: 40px; */
}

.ldrnewmyprofiletypeagreetd {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* .ldrnewmyprofilebueditortd{max-width: 220px;overflow: hidden;} */

.proceedbtn-div {
  display: flex;
  justify-content: center;
}
.proceedbtn-div button {
  font-size: 18px;
  border: 0;
  padding: 10px 20px;
  background-color: #fab726;
  color: #000;
  font-weight: 500;
  border-radius: 4px;
}
.proceedbtn-div {
  margin-top: 30px;
}
.monthly {
  width: 8.333%;
}
.quarterly {
  width: 25%;
}
.half {
  width: 50%;
}
.annually {
  width: 100%;
}
.edit_field_wrapperin {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}
.removewrapperin {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}
.assetregisterdiv {
  background-color: #fff;
  padding-bottom: 50px;
}
.sectionheads {
  margin-bottom: 0;
  font-size: 20px;
  color: #000;
  font-weight: 500;
  padding: 30px 0;
}
.sectionheads2 {
  margin-bottom: 0;
  font-size: 20px;
  color: #000;
  font-weight: 500;
  padding: 30px 15px;
}
.assetreg-topbtndiv {
  display: flex;
  justify-content: center;
}
.assetreg-topbtndiv button {
  border: 0;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 45px 8px 15px;
  background: #ed1c24;
  color: #fff;
  border-radius: 4px;
  margin: 0 10px;
}

.ldrtwoformhead {
  font-size: 14px;
  font-family: helmed;
  margin-bottom: 10px;
}

.selectpickerdiv button {
  width: 100%;
  border: 1px solid #000;
  border-radius: 6px;
  margin-bottom: 10px;
  font-family: helreg;
  font-size: 14px;
  padding: 6px 8px;
}

.assetreg-topbtndiv-innerdiv img {
  width: 20px;
  position: absolute;
  right: 23px;
  top: 8px;
}
.assetreg-topbtndiv-innerdiv {
  position: relative;
}
.asset-formdiv {
  background-color: transparent;
  padding: 0px 12px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.asset-formdiv label {
  font-size: 12px;
  color: #606060;
  font-family: helreg;
  margin-bottom: 0px;
  font-weight: 100;
}
.asset-formdiv input {
  border-radius: 8px;
  border: 1px solid #E5E5E5;
  box-shadow: none;
  padding: 9px;
  margin-bottom: 7px;
  transition: all 0.2s ease;
  font-size: 12px;
}
.asset-formdiv select {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 7px;
  font-family: helreg;
  font-size: 12px;
  padding: 9px;
}
.asset-formdiv textarea {
  width: 100%;
  padding: 7px 5px;
  margin-bottom: 15px;
  border: 0;
  border-radius: 4px;
}

.asset-formdiv select:focus,
.asset-formdiv select:focus-visible {
    border-color: #7A003C !important;
    box-shadow: 0 0 6px rgba(122, 0, 60, 0.25);
    outline: none !important;  
}

.new-teammemberdiv .form-group {
  background-color: transparent;
  padding: 5px 10px;
  border-radius: 4px;
  margin-bottom: 0 !important;
}

.new-teammemberdiv label {
  display: block;
  font-weight: 100;
  font-size: 12px;
  color: #606060;
  font-family: helreg;
  margin-bottom: 0px;
}

.new-teammemberdiv input {
  border-radius: 8px;
  border: 1px solid #E5E5E5;
  box-shadow: none;
  padding: 9px;
  margin-bottom: 7px;
  transition: all 0.2s ease;
  font-size: 12px;
  width: 100%;
  font-family: helreg;
}
.new-teammemberdiv input:focus-visible{
  border-color: #7A003C;
  box-shadow: 0 0 6px rgba(122, 0, 60, 0.25);
}

.new-teammemberdiv input:focus,
.new-teammemberdiv input:focus-visible {
  border-color: #7A003C !important;
  box-shadow: 0 0 6px rgba(122, 0, 60, 0.25);
  outline: none !important;   /* <-- important fix */
}

.new-teammemberdiv select:focus,
.new-teammemberdiv select:focus-visible {
  border-color: #7A003C !important;
  box-shadow: 0 0 6px rgba(122, 0, 60, 0.25);
  outline: none !important;   /* <-- important fix */
}

.new-teammemberdiv select {
  border-radius: 8px;
  border: 1px solid #E5E5E5;
  box-shadow: none;
  padding: 9px;
  margin-bottom: 7px;
  transition: all 0.2s ease;
  font-size: 12px;
  width: 100%;
  font-family: helreg;
}

.new-teammemberdiv select:focus{
  border-color: #7A003C;
  box-shadow: 0 0 6px rgba(122, 0, 60, 0.25);
}

.new-teammemberdiv textarea {
  width: 100%;
  border: 1px solid #000;
  border-radius: 6px;
  margin-bottom: 10px;
  font-family: helreg;
  font-size: 14px;
  padding: 5px 8px;
}
.type_of_aggrement {
  position: relative;
}
.selectallcheckboxdiv {
  display: flex;
  position: absolute;
  top: -4px;
  right: 0;
  align-items: center;
  background: #000632;
  border-radius: 4px 4px 0 0;
  padding: 3px 5px;
  cursor: pointer;
}
.selectallcheckboxdiv label {
  color: #fff !important;
  margin-right: 5px;
  cursor: pointer;
}
.selectallcheckboxdiv input {
  width: 15px !important;
  height: 15px !important;
  margin: 0 !important;
  cursor: pointer;
}

.assetvalueinputs {
  display: flex;
}
.assetvalueinputs2 {
  display: flex;
}
.assetvalueinputs div:nth-child(2) {
  margin-left: 5px;
  margin-right: 5px;
}
.assetvalueinputs div {
  width: 100%;
}
.assetvalueinputs2 div {
  width: 100%;
}
.assetvalueinputs2 div:nth-child(1) {
  margin-right: 5px;
}
.assetform-subbtndiv button {
  /* background-color: #04aa6d; */
   background-color: #7a003c;
  color: #000;
  font-size: 14px;
  font-family: helreg;
  border: 0;
  padding: 5px 15px;
  border-radius: 6px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
}

#filter_doc .proceed-button {
  color: #fff;
}

.assetform-subbtndiv {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}
.addRiskRegister {
  display: flex;
  justify-content: center;
}
.proceed-button {
  /* background-color: #04aa6d; */
  background-color: #7a003c;
  color: #fff;
  font-size: 14px;
  font-family: helreg;
  border: 0;
  padding: 5px 15px;
  border-radius: 6px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
  margin-right: 15px;
}
.cancel-button {
  background-color: #ffffff !important;
  /* margin-right: 15px; */
}
.mstabeldiv .mstablerow:nth-child(even) {
  background: #f5f5fa;
}
.dashboardmaindiv {
  background-color: #fff;
  padding-bottom: 50px;
  min-height: 100vh;
  min-width: 100%;
}
label.error {
  color: #ed1c24 !important;
  display: block;
  font-size: 10px !important;
}
.addmemberclose {
  background-color: transparent;
  border-radius: 50%;
  font-size: 18px;
  border: 0;
  position: absolute;
  right: 11px;
  top: 5px;
  z-index: +1;
  color: #fff;
  padding: 0 7px;
  font-size: 600;
}
.updatememberclose {
  background-color: #ed1c24;
  border-radius: 50%;
  font-size: 18px;
  border: 0;
  position: absolute;
  right: -10px;
  top: -10px;
  z-index: +1;
  color: #fff;
  padding: 0 7px;
  font-size: 600;
}
.addteammembermodalcont {
  position: relative;
}
.norecfound {
  font-size: 20px !important;
  text-align: center !important;
  color: #ed1c24 !important;
  padding: 10px 0 !important;
}
.custommsgdiv {
  display: flex;
  justify-content: center;
  align-items: center;
}
.custom-message {
  font-size: 12px;
  padding: 0px 10px;
  border-radius: 25px;
  margin-top: 10px;
  display: block;
  text-align: center;
}
#timer {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
}
#resend-btn {
  text-align: center;
}
.multiselect.dropdown-toggle.custom-select.text-center {
  display: none !important;
}
.no-record {
  text-align: center;
}
.mesurement-action {
  display: flex;
  margin: 10px 3px;
}
.mesurement-action img {
  margin-left: 2px;
  margin-right: 2px;
}
.ldrviewdata {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  border-bottom: 1px solid;
  display: inline-block;
}
.addMetricplan-div {
  position: relative;
}
.addMetricplan-div button {
  border: 0;
  font-size: 16px;
  font-weight: 500;
  padding: 6px 32px 6px 15px;
  background: #ed1c24;
  color: #fff;
  border-radius: 4px;
}
.addMetricplan-div img {
  width: 15px;
  position: absolute;
  right: 8px;
  top: 8px;
}
.addplanwrapper img {
  width: 20px;
}
.row-result {
  display: flex;
}
table.teamtable td a {
  /* margin-right: 7px; */
  /* color: #fff; */
  font-size: 12px;
  margin-bottom: 0;
  font-family: helreg;
  color: #2e3193;
  text-decoration: none;
  display: inline-block;
}

.datedolotd {
  min-width: 68px;
}
#loader {
  border: 12px solid #f3f3f3;
  border-radius: 50%;
  border-top: 12px solid #444444;
  width: 70px;
  height: 70px;
  animation: spin 1s linear infinite;
}
.add-risk-process {
  font-size: 12px;
  display: block;
  font-weight: 600;
}
.datafreezetext {
  font-size: 16px;
  background: #4bae4f;
  color: #fff;
  padding: 3px 10px;
  border-radius: 25px;
  display: inline-block;
  margin-top: 10px;
}
.faqsolodiv {
  background-color: #fff;
  box-shadow: 0 0 9px rgb(2 16 48 / 10%);
  border-radius: 4px;
  position: relative;
}
.faqsolodiv h3 a {
  width: 100%;
  padding: 10px 10px;
  display: block;
}
.faqsolodivmain {
  margin-top: 20px !important;
}
.taskprofilesolodiv {
  display: flex;
}
.taskprofilesolodiv img {
  height: 20px;
  margin-right: 5px;
}
.taskprofilesolodiv p {
  font-size: 16px;
  font-weight: 500;
}
.faqdropdown {
  width: 20px;
  right: 13px;
  top: 13px;
  position: absolute;
}
.dt-buttons a {
  background: #ed1c24;
  color: #fff;
  border: 0;
  border-radius: 4px;
  padding: 5px 15px;
  font-weight: 600;
  font-size: 14px;
}
.suadminnavtabs li a {
  font-weight: 100;
  background: #e8e8e8;
  font-family: "helmed";
  font-size: 14px;
  color: #000;
  padding: 2px 20px;
  margin-right: 3px;
}

.suadminnavtabs li.active a {
 background: #700149 !important;
 color: #fff !important;
}

label#memberstatus {
  margin: 20px;
  margin-left: 0;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.progress-bar-success {
  background-color: #000632;
}
.center {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.progress-report {
  padding: 20px;
  margin-top: 25px;
  border-radius: 4px;
  box-shadow: 0 0 9px rgb(2 16 48 / 30%);
}
.progress {
  margin-top: 10px;
  display: block;
}
@media only screen and (max-width: 1000px) {
  .teammemberdiv {
    overflow-x: auto;
  }
  .completed {
    width: 100% !important;
  }
  .viewdocdispdata {
    display: block !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.months-lists {
  display: flex;
}
.metricdatamain {
  display: flex;
}
.metric-data p {
  font-weight: 700;
  text-align: center;
  border-right: 1px solid #000;
  font-size: 9px;
  border-bottom: 1px solid #000;
}
.metric-data p:last-child {
  border-bottom: 1px solid #000 !important;
}
.field_wrapper img {
  width: 20px;
}
.editplanwrapper img,
.edit_field_wrapper img {
  width: 20px;
}
.taskstrong {
  font-weight: 700;
}
.edit_field_wrapper,
.addplanwrapperin {
  margin-bottom: 10px;
}
.dropdown .dropbtn {
  font-size: 14px;
  border: none;
  outline: none;
  background-color: transparent;
  padding: 0;
}
.navbar a:hover,
.dropdown:hover .dropbtn {
  background-color: #000632;
  color: #fff;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 110px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  left: -20px;
}
.dropdown-content a {
  float: none;
  color: #2e319e !important;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}
.dropdown-content a:hover {
  background-color: #ddd;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.datesection p {
  width: 8.333%;
  font-size: 9px;
  text-align: center;
  font-weight: 700;
  padding: 10px 3px;
}
.mstablerow {
  display: flex;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}
.datesection {
  display: flex;
}
.mstablerowinnerrow {
  display: flex;
  width: 100%;
}
.tfgsrdiv {
  border-right: 1px solid #000;
  padding: 5px;
  width: 5%;
}
.msobjectivediv {
  border-right: 1px solid;
  width: 15%;
}
.mstablerowinnermaindiv {
  width: 80%;
}
.msownerdiv {
  border-right: 1px solid;
  border-bottom: 1px solid;
  padding: 5px;
  width: 15%;
}
.targetdiv {
  border-right: 1px solid;
  border-bottom: 1px solid;
  padding: 5px;
  width: 5%;
}
.datesectionmain {
  width: 60%;
}
.taskdiv {
  border-right: 1px solid;
  border-bottom: 1px solid;
  width: 20%;
}
.datesection {
  border-bottom: 1px solid;
}
.taskdivsolodiv {
  min-height: 55px;
  border-bottom: 1px solid;
}
.taskdivsolodiv p {
  padding: 5px;
}
.datesection {
  min-height: 55px;
  border-bottom: 1px solid;
}
.metric-data p {
  min-height: 55px;
}
.zoombox {
  display: inline-block;
}
.zoombtn img {
  width: 30px;
}
.zoombtn {
  background: #000632;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  position: fixed;
  text-align: center;
  -ms-user-select: none;
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
  padding: 5px;
}
.zoombtn1 {
  bottom: 190px;
  left: 5px;
}
.zoom-outbtn2 {
  bottom: 120px;
  left: 5px;
}
.zoom-initbtn3 {
  bottom: 50px;
  left: 5px;
}
.shared_document_table_filter input {
  border: 1px solid #2e319e;
  border-radius: 25px;
  padding: 5px 15px;
  color: #000;
  font-weight: 500;
}

#shared_document_table_filter label {
  font-weight: 500;
}
#shared_document_table_filter label input {
  border: 1px solid #000;
  border-radius: 4px;
  margin-right: 15px;
  padding: 3px 10px;
}

.dt-button {
  background: #8b004b !important;
  color: #fff !important;
  border: 0 !important;
  padding: 2px 8px !important;
  font-weight: 100 !important;
  font-size: 14px !important;
  border-radius: 4px !important;
  margin-left: 15px;
  margin-bottom: 10px !important;
  font-family: "helmed";
}
.editpopupdd {
  margin-bottom: 20px !important;
}
.ldrloginbtn-div {
  display: flex;
  justify-content: center;
}
.ldrloginbtn-div button {
  border: 0;
  font-size: 18px;
  font-weight: 500;
  background-color: #700149;
  color: #fff;
  padding: 7px 25px;
  border-radius: 4px;
}
.viewdocdispdata {
  background-color: #fff;
  padding: 10px;
  border-radius: 4px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
  margin-bottom: 10px;
}
.viewdocdispdatap1 {
  margin-bottom: 0;
  color: #7c7777;
  font-size: 12px;
  font-family: "helreg";
}
.viewdocdispdatap1a {
  color: #000632;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0;
}
.viewdocdispdatap2 {
  font-family: "helbold";
  font-size: 12px;
  margin-bottom: 0;
}
.viewdoclinkdiv {
  margin-top: 10px;
  display: flex;
  align-items: center;
}
.viewdoclink {
  padding: 5px 15px;
  background-color: #000632;
  color: #fff;
  border-radius: 25px;
  margin-left: 10px;
}
.homethstr {
  background-color:#8B004B;
}
.page-template-template-view-pdf button#print {
  display: none;
}
.page-template-template-view-pdf button#download {
  display: none;
}
.page-template-template-view-pdf button#presentationMode {
  display: none;
}
.page-template-template-view-pdf button#openFile {
  display: none;
}
.page-template-template-view-pdf a#viewBookmark {
  display: none;
}
.ldractiondiv {
  display: flex;
}
.ldractiondiv img {
  height: 20px;
  max-width: none;
}
.dataTables_length {
  margin-bottom: 0;
}
.dataTables_length select {
  border: 0;
  background: #2e319e;
  color: #fff;
  padding: 5px 10px;
  border-radius: 25px;
}
#document_table_filter input {
  border: 1px solid #2e319e;
  border-radius: 25px;
  padding: 5px 15px;
  color: #000;
  font-weight: 500;
}
/* .dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  border-radius: 50%;
  border: 0 !important;
  background: linear-gradient(to bottom, #585858 0%, #111 100%) !important;
  color: #fff !important;
  font-weight: 600;
} */

.dataTables_wrapper .dataTables_paginate .paginate_button{
    margin: 5px;
    border: 1px solid #e0e4ec;
    background: #fff;
    border-radius: 10px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current{ 
    border: 1px solid #e0e4ec;
    background: #fff;
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 13px;
    border-color: #4a6cf7 !important;
    color: #4a6cf7 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  background: #f5f7ff;
  border-color: #4a6cf7 !important;
  color: #4a6cf7 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: #f5f7ff;
  border-color: #4a6cf7 !important;
  color: #4a6cf7 !important;
  border-radius: 10px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:focus{
    background: #f5f7ff;
    border-color: #4a6cf7 !important;
    color: #4a6cf7 !important;
    border-radius: 10px;
}

.dataTables_wrapper .dataTables_paginate {
  padding-top: 10px;
}
.ldrradiodiv {
  display: flex;
}
.ldrradiodiv input {
  width: auto;
}
.ldrradiosolodiv {
  display: flex;
  margin-right: 10px;
}
.ldrradiosolodiv label {
  margin-left: 5px;
}
.ldrmodalclose {
  border: 0;
  border-radius: 50%;
  background: #ed1c24;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 2px 9px;
  position: absolute;
  right: -12px;
  top: -12px;
  z-index: +1;
}
.ldrmodalsuccessmsg {
  font-size: 18px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 0;
  color: #000000;
  padding: 15px 5px;
}
.ldrhomedd {
  border: 0;
  background: #2e319e;
  color: #fff;
  padding: 5px 10px;
  border-radius: 25px;
}
.header-rightmobile {
  display: none;
}
.in-progress {
  font-size: 12px;
  font-family: "helmed";
  background: #f1c21b;
  text-align: center;
  padding: 5px;
  border-radius: 25px;
  margin-bottom: 0;
  border: 0;
}
.completed {
  font-size: 12px;
  font-family: "helmed";
  background: #42be65;
  text-align: center;
  padding: 5px;
  border-radius: 25px;
  margin-bottom: 0;
}
.expired {
  font-size: 12px;
  font-family: "helmed";
  background: #f02d35;
  text-align: center;
  padding: 5px;
  border-radius: 25px;
  margin-bottom: 0;
  color: #000 !important;
  /*color: #fff !important;*/
}
#viewPdf iframe {
  height: 100vh;
}
.ldrpopuphead {
  font-size: 16px;
  font-family: helmed;
  margin-bottom: 20px;
  margin-top: 0;
  color: #000;
}
@media print {
  body * {
    display: none;
  }
}
.editdovmoddiag {
  width: 80%;
}
.sharemoddiag {
  width: 40%;
}
input#upload-one {
  border: solid 1px rgb(255 255 255 / 90%);
  height: 36px;
  font-size: 14px;
  float: left;
  width: 100%;
  padding-left: 10px;
  border-radius: 5px;
}
.fileUpload.upload-button {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #7a003c;
  padding: 6px 30px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  /* height: 30px; */
  margin-bottom: 10px;
  /* text-transform: uppercase; */
  border-radius: 5px;
}
input#Upload_pdf {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  width: 115px;
}
#new_doc_data_form label {
  font-size: 12px;
  color: #606060;
  font-family: helreg;
  margin-bottom: 0px;
}
#new_doc_data_form .form-group {
  margin-top: 20px;
}
input#upload-one::placeholder {
  font-size: 12px;
  display: block;
  font-weight: 600;
  text-transform: uppercase;
}
input#upload-one:focus {
  border: solid 1px rgb(255 255 255 / 90%);
}
#document_table_wrapper .user {
  font-size: 10px;
  margin-bottom: 0;
  font-family: helmed;
  color: #007900;
  /* min-width: 220px; */
}
.inprofileuppertab_right {
  display: flex;
  align-items: center;
}
.filternotediv p {
  font-size: 12px;
  text-align: right;
  margin-bottom: 0;
  font-weight: 600;
}
.edit-button {
  background-color: #04aa6d !important;
}
.view-button {
  font-size: 18px;
  border: 0;
  padding: 8px 20px !important;
  background-color: #000632 !important;
  color: #fff !important;
  font-weight: 500;
  border-radius: 4px;
  margin: 0 10px;
  width: auto !important;
}
.bucbtn-div button {
  border: 0;
  font-size: 16px;
  font-weight: 500;
  padding: 6px 32px 6px 15px;
  background: #000632;
  color: #fff;
  border-radius: 4px;
}
.bucbtn-div {
  position: relative;
  margin-left: 10px;
  margin-right: 10px;
}
.bucbtn-div img {
  width: 15px;
  position: absolute;
  right: 8px;
  top: 8px;
}
.container-fluid .btn-danger {
  color: #fff;
  background-color: #ed1c24;
  border-color: #ed1c24;
}
[aria-current="page"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: black;
}
.container-fluid .enable-user {
  color: #fff;
  background-color: #38d134 !important;
  border-color: #38d134 !important;
}
.glyphicon-ok:before {
  content: "\2713" !important;
  display: inline-block !important;
  color: #171949 !important;
  padding: 0 6px 0 0 !important;
  font-weight: 600 !important;
}
.ldractiondiv img {
  margin-right: 7px;
}
.exucustom-message {
  margin-left: 13px;
  font-size: 15px;
}
span.select-info {
  margin-left: 10px;
}
.edit-disable {
  cursor: not-allowed !important;
}

.advance-search {
  position: relative;
  margin-top: 0px;
  margin-right: 10px;
}
.advance-search button {
  border: 0;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 32px 6px 15px;
  background: #2e319e;
  color: #fff;
  border-radius: 4px;
}
/* .exportbtn-div.advance-search {
  margin: 0px 14px;
  background-color: #2e319e;
} */
.advancesearchldrdiv {
  text-align: center;
}
.advancesearchldrdivinner input,
/* #search-mode {
  border: 1px solid #2e319e;
  border-radius: 25px;
  padding: 4px 17px;
  color: #000;
  font-weight: 600;
  margin-right: 10px;
  text-align: center;
} */

#subscriber-search input[type="number"]::-webkit-inner-spin-button,
#subscriber-search input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.advancesearchldrdivinner p {
  margin-bottom: 0;
  font-size: 14px;
  color: #000;
  font-weight: 500;
  margin-right: 10px;
}
.advancesearchldrdiv button {
  font-size: 12px;
  border: 0;
  padding: 8px 20px;
  background-color: #fab726;
  color: #000;
  font-weight: 500;
  border-radius: 4px;
  /* margin-top: 20px; */
}
/* .advancesearchldrdivinner {
  display: flex;
  justify-content: center;
  align-items: center;
} */

.modalmaindivsize {
  width: 450px;
  margin: auto;
}

#document_table_filter {
  display: none !important;
}

.search-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0px;
}

.heding-title {
  font-size: 22px;
  color: #000;
  font-weight: 500;
  /* margin-bottom: 30px; */
}

.result-class {
  /* margin-bottom: 12px; */
  /* background: #2e319e; */
  /* padding: 5px 10px; */
  /* color: #fff; */
  border-radius: 25px;
  /* margin-bottom: 12px; */
}
.note-section {
  font-size: 14px !important;
}

.page-not-found{height: 100vh;width: 100%;display: flex;flex-direction: column;align-items: center;justify-content: center;padding: 0 15px;box-sizing: border-box;background: #000632;}
.page-not-found h1{font-size: 50px;color: #fff;margin-top: 0;margin-bottom: 0;font-family: poppins;font-weight: 600;text-align: center;}
.page-not-found h2{font-size: 26px;color: #fff;margin-top: 0;margin-bottom: 0;font-family: poppins;text-align: center;}
.page-not-found p{font-size: 14px;color: #fff;margin-top: 10px;margin-bottom: 0;text-align: center;}

@media only screen and (max-width: 600px) {
  .modalmaindivsize {
    width: 262px;
    margin: auto;
  }

  .advancesearchldrdivinner input,
  /* #search-mode {
    border: 1px solid #2e319e;
    padding: 4px 10px;
    font-weight: 600;
    margin: 6px 0px;
  } */

  .search-box {
    display: block;
    margin: 0;
  }
}

@keyframes dataTables_processing {
  to {
    transform: rotate(360deg);
  }
}

.dataTables_processing:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 10px solid #ccc;
  border-top-color: #333;
  animation: spinner 0.6s linear infinite;
}

.dataTables_empty {
  padding: 15px !important;
  font-size: 18px !important;
}

.row-section {
  display: flex;
  justify-content: space-between;
  /* padding: 15px 0px; */
}

.serach-query {
  font-weight: 500;
  padding: 10px 0px 0px 15px;
  margin-bottom: 0;
}

.serach-query strong {
  text-transform: capitalize;
}

.inprofileuppertab_right button {
  font-size: 12px;
}

input#custom-search {
  width: 80%;
}

#document_table_length {
  float: none !important;
}

.highligh-note {
  font-size: 10px !important;
  font-weight: 600;
  color: #171949;
  /* line-height: 16.5px; */
}

.advance-search img {
  top: 8px;
}

.amemdents_docs ul {
  padding-left: 0;
  margin-top: 5px;
  margin-bottom: 0;
}
.amemdents_docs ul li {
  list-style-type: none;
  display: inline-block;
  border-radius: 15px;
  padding: 0 5px;
  background-color: #333;
  margin-right: 3px;
  margin-bottom: 5px;
}
.amemdents_docs ul li:last-child {
  margin-right: 0;
}
.amemdents_docs ul li a {
  color: #fff !important;
}
#amendments-docs option {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.editdelamenddoccsdiv {
  display: none;
  position: absolute;
  background: #fff;
  padding: 10px 15px;
  border-radius: 25px;
  z-index: +1;
  text-align: center;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.35);
}
.editdelamenddoccsdiv img {
  height: 15px;
  margin-right: 7px;
  cursor: pointer;
}
#pdf_name {
  font-size: 14px;
}

.amemdents_docs ul li:hover .editdelamenddoccsdiv {
  display: block;
}

.amemdents_docs {
  overflow: hidden;
}

#document_table_length label {
  display: none;
}
/* 
#newexcel .buttons-excel {
  border: 0 !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  padding: 6px 32px 6px 15px !important;
  background: #000 !important;
  color: #fff !important;
  border-radius: 4px !important;
}

#newexcel {
  margin-top: 0px;
} */

.datatable-img {
  top: 8px !important;
}

.edittabmartopno {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.edittabassetform {
  padding: 10px 10px 20px 10px !important;
  margin-bottom: 10px !important;
}
.edittabsubmitbtndiv {
  margin-bottom: 15px !important;
}

.inprofileuppertab_right .my-document {
  font-size: 12px;
}

.sharebtn-div .my-document {
  border: 0;
  font-size: 16px;
  font-weight: 500;
  padding: 6px 32px 6px 15px;
  background: #11780f;
  color: #fff;
  border-radius: 4px;
}

/* .document-div {
  position: relative;
  margin-top: 5px;
  margin-right: 10px;
} */
/* .exportbtn-div button, */
.document-div a {
  text-decoration: none;
  color: #000;
  font-family: "helmed";
  font-size: 14px;
  border: 1px solid #000;
  border-radius: 4px;
  padding: 3px 5px;
  background: #fff;
  margin-left: 10px;
  display: block;
}

.document-div a:hover {
  text-decoration: none;
  background: #c4c4c4;
}
/* .document-div:hover {
  text-decoration: none;
  box-shadow: 0px 0px 7px 1px #777;
  transform: scale(1.1);
} */
.document-div img {
  height: 17px;
  margin-top: -2px;
}

.confidentiality {
  margin-top: 10px;
}

#siblings {
  margin-top: 20px;
}

/* css written by Ashish */
/* #user_table tr:hover {
  background-color: #000632;
  cursor: pointer;
  box-shadow: 0px 9px 4px -6px red !important;
} */

/* #user_table tr:hover td {
  color: #fff;
} */

.no-result {
  background: none;
  padding: 10px 0px !important;
  margin: 0;
  background: none !important;
}
.no-result td {
  text-align: center;
  margin: 28px auto !important;
  padding: 50px 0px;
  color: #000632 !important;
  font-weight: 900;
  font-size: 16px;
}

#subscriber-search input[type="number"] {
  -moz-appearance: textfield; /* Firefox */
  appearance: textfield; /* Other modern browsers */
}
/* .bu-long-info {
  white-space: nowrap;
  width: 150px;
  overflow: hidden;
} */

.bu-long-info {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* dashboard css */

.dashboard-page .ldrdashinnerdiv {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  align-items: center;
}
.dashboard-page .ldrdashuserrolehead {
  font-size: 16px;
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 0;
}

.dashboard-page .ldrdashinnerdiv a {
  background: #000632;
  padding: 4px 10px;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}
.dashboard-page .ldrdashinnerdiv a:hover {
  text-decoration: none;
}

.dashboard-page .ldrdashboardbox {
  min-height: 300px;
  box-shadow: 0px 2px 8px 2px #d5d5d5;
  /* margin: 5px; */
  margin-bottom: 15px;
  border-radius: 15px;
  border: 1px solid #efefef;
  cursor: pointer;
}

.dashboard-page .ldrinnerdivbtn {
  padding: 0px 10px;
  border: 1px solid #ccc;
  margin: -4px 8px -5px 10px;
  border-radius: 4px;
  background: none;
  box-shadow: 1px 0px 3px 0px #efefef;
  border: 1px solid #e7e7e7;
}
/* 
.ldrinnerdivseperator {
  height: 1px;
  width: 100%;
  border-bottom: 1px solid #dcdbdb;
} */

.dashboard-page .ldrdashinnerdiv p {
  color: #000632;
  font-weight: 700;
  margin: 0;
}

.dashboard-page .ldrmtop {
  margin-top: 10px;
}

.dashboard-page .ldrleftdivselecttag {
  padding: 3px 47px 3px 9px;
  border: 1px solid #efefef;
  box-shadow: 0px 0px 6px 2px #efefef;
  border-radius: 3px;
}
.dashboard-page .ldrrightdivselecttag {
  border-radius: 3px;
  border: none;
  color: #9a9494;
  margin-left: -4px;
  font-size: 12px;
}

.dashboard-page .leftbottomdivptagone {
  color: #00a6ff;
  font-weight: 600;
  font-size: 10px;
  margin-right: 10px;
}
.dashboard-page .leftbottomdivptagtwo {
  color: #59f3b7;
  font-weight: 600;
  font-size: 10px;
  margin-right: 10px;
}
.dashboard-page .leftbottomdivptagthree {
  color: #ffc300;
  font-weight: 600;
  font-size: 10px;
  margin-right: 10px;
}
.dashboard-page .leftbottomdivptagfour {
  color: #fe5f76;
  font-weight: 600;
  font-size: 10px;
  margin-right: 10px;
}
.dashboard-page .leftbottomdivptagfive {
  color: #8a74d6;
  font-weight: 600;
  font-size: 10px;
  margin-right: 10px;
}
.dashboard-page .leftbottomdivptagsix {
  color: #259ffb;
  font-weight: 600;
  font-size: 10px;
  margin-right: 10px;
}
.dashboard-page .leftbottomdivptagseven {
  color: #fa4b42;
  font-weight: 600;
  font-size: 10px;
  margin-right: 10px;
}

.dashboard-page .rightinnerdivtext {
  display: flex;
  justify-content: space-between;
}

/* .dashboard-page .ldrrightinnerdivlast p {
  font-size: 10px;
  margin-right: 5px;
} */
.dashboard-page .ldrrightinnerdivlastone {
  font-size: 10px;
  margin-right: 10px;
  color: #00a6ff;
}
.dashboard-page .ldrrightinnerdivlasttwo {
  font-size: 10px;
  margin-right: 10px;
  color: #59f3b7;
}
.dashboard-page .ldrrightinnerdivlastthree {
  font-size: 10px;
  margin-right: 10px;
  color: #ffc300;
}
.dashboard-page .ldrrightinnerdivlastfour {
  font-size: 10px;
  margin-right: 10px;
  color: #fe5f76;
}
.dashboard-page .ldrrightinnerdivlastfive {
  font-size: 10px;
  margin-right: 10px;
  color: #8a74d6;
}
.dashboard-page .ldrrightinnerdivlastsix {
  font-size: 10px;
  margin-right: 10px;
  color: #259ffb;
}

.dashboard-page .rightinnercirclebtnone {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #007aff;
  margin: 4px 6px 0px 4px;
}
.dashboard-page .rightinnercirclebtntwo {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #0ce8b5;
  margin: 4px 6px 0px 4px;
}
.dashboard-page .rightinnercirclebtnthree {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #f79116;
  margin: 4px 6px 0px 4px;
}
.dashboard-page .rightinnercirclebtnfour {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fe5f76;
  margin: 4px 6px 0px 4px;
}
.dashboard-page .rightinnercirclebtnfive {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #8a74d6;
  margin: 4px 6px 0px 4px;
}
.dashboard-page .rightinnercirclebtnsix {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #259ffb;
  margin: 4px 6px 0px 4px;
}

.dashboard-page .ldrdashrightdiv {
  border-radius: 15px;
  box-shadow: 0px 2px 8px 2px #d5d5d5;
  padding: 10px;
  margin-bottom: 15px;
  background: #fff;
  cursor: pointer;
}

.dashboard-page .dashobardhrightlivemaindiv {
  position: fixed;
  right: 0px;
}

.dashboard-page .ldrrightinnerdivlast {
  /* display: flex; */
  justify-content: space-between;
}

.dashboard-page .ldrrightinnerdivoneimg {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  /* margin-top: 20px; */
}
.dashboard-page .ldrrightinnerdivoneimg h5 {
  font-weight: 700;
  /* margin-bottom: 0; */
}

.dashboard-page .ldrrightinnerdivoneimg p {
  color: #b8b8b8;
  font-weight: 500;
  font-size: 11px;
  /* margin-bottom: 0; */
}

.dashboard-page .ldrrightinnerdivoneimg img {
  width: 80px;
}

.dashboard-page .ldrinnermtop {
  margin-top: 20px;
  margin-bottom: 20px;
}
.dashboard-page .ldrinnermtop p {
  font-weight: 600;
  margin: 0;
}

.dashboard-page .ldrrightseperatorline {
  height: 2px;
  width: 100%;
  background-color: #e2e0e0;
}

.dashboard-page .dashtablemain {
  padding: 0px 10px;
  overflow-y: scroll;
  height: 250px;
  overflow-x: hidden;
}

.dashboard-page .dashtableheadcolor {
  /* background-color: #ccc; */
  background: #000632;
  color: #fff;
  font-size: 12px;
}
.dashboard-page .dashtablebodyrow {
  font-size: 11px;
}

@media only screen and (max-width: 600px) {
  .dashboard-page .dashobardhrightlivemaindiv {
    position: unset;
  }

  .dashboard-page .ldrleftdivselecttag {
    padding: 3px 13px 3px 9px;
  }
}
@media only screen and (max-width: 1000px) {
  .dashboard-page .dashobardhrightlivemaindiv {
    position: unset;
  }
}

/* Media query for mobile view */
@media (max-width: 767px) {
  .testaorder {
    order: 1;
  }

  .testborder {
    order: 2;
  }
}
/* dashboard css */
/* .highcharts-figure,
.highcharts-data-table table {
  min-width: 310px;
  max-width: 800px;
  margin: 1em auto;
}

#uploaded-doc {
  height: 400px;
}

.highcharts-data-table table {
  font-family: Verdana, sans-serif;
  border-collapse: collapse;
  border: 1px solid #ebebeb;
  margin: 10px auto;
  text-align: center;
  width: 100%;
  max-width: 500px;
}

.highcharts-data-table caption {
  padding: 1em 0;
  font-size: 1.2em;
  color: #555;
}

.highcharts-data-table th {
  font-weight: 600;
  padding: 0.5em;
}

.highcharts-data-table td,
.highcharts-data-table th,
.highcharts-data-table caption {
  padding: 0.5em;
}

.highcharts-data-table thead tr,
.highcharts-data-table tr:nth-child(even) {
  background: #f8f8f8;
}

.highcharts-data-table tr:hover {
  background: #f1f7ff;
} */

.dashboard-page #uploaded-doc {
  height: 250px;
  border-radius: 10px;
}

.dashboard-page #country-contract-party {
  height: 350px;
  border-radius: 10px;
}

.dashboard-page #contract-party {
  height: 250px;
  border-radius: 10px;
}
.dashboard-page #control-restriction {
  height: 250px;
  border-radius: 10px;
}
.dashboard-page #business-unit {
  height: 600px;
  border-radius: 10px;
}
.dashboard-page #type-of-aggrement {
  height: 500px;
  border-radius: 10px;
}
.dashboard-page #v18restriction {
  height: 250px;
  border-radius: 10px;
}
.dashboard-page #anti-bribery-clause {
  height: 250px;
  border-radius: 10px;
}
.dashboard-page #stamp-duty {
  height: 400px;
  border-radius: 10px;
}

.dashboard-page .apexcharts8q9p8n1j {
  height: 200px;
}

.dashboard-page #user-role {
  height: 190px !important;
}

.dashboard-page .highcharts-subtitle {
  left: 155px;
  top: 106px;
  color: rgb(102, 102, 102);
  text-align: center;
}

.dashboard-page .highcharts-title {
  font-size: 1.4em !important;
  font-weight: 800 !important;
  fill: #000632 !important;
}
.dashboard-page .highcharts-data-table {
  /* display: flex !important; */
  justify-content: center;
  /* margin: 10px 280px; */
  /* display: block; */
  /* border: 1px solid #ccc; */
  padding: 15px;
  /* border-radius: 10px; */
  /* margin: 10px; */
  margin: 10px 23%;
}

caption.highcharts-table-caption {
  font-size: 12px;
  text-align: center;
  color: #512da8;
  font-weight: 700;
}
th.highcharts-text {
  padding: 5px;
}

.highcharts-text {
  font-size: 12px;
  text-align: center;
  font-weight: unset;
}
.highcharts-number {
  font-size: 11px;
  text-align: center;
}

/* profile image  */
#profileImage {
  background: #fff;
  border-radius: 50%;
  padding: 4px 6px;
  color: #000632;
  margin-right: 15px;
  font-weight: 600;
}

.dashboard-page #profileImage {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #512da8;
  font-size: 25px;
  color: #fff;
  text-align: center;
  line-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-variant: all-petite-caps;
}

.ldrrightinnerdivlastupper {
  display: flex;
  flex-wrap: wrap;
}
.ldrrightinnerdivlast {
  width: 50%;
}

/* written by Ashish */
.ldrrightinnerdivoneimg h5 {
  text-transform: capitalize;
}

.footer-contfluid {
  /* position: fixed; */
  left: 0;
  bottom: 0;
 background-color: #700149;
  /* width: 100%; */
  color: #fff;
  width: 102%;
  color: #fff;
  margin: 0 -15px;
}

.footer-div {
  padding: 10px 20px;
  /* display: flex;
  justify-content: space-between; */
  align-items: center;
}
/* .footer-leftdiv {
  margin-left: 15px;
} */
.footer-leftdiv p {
  margin-bottom: 0;
  text-align: center;
}

.footer-rightdiv ul {
  margin-bottom: 0;
  padding-left: 5px;
}
.footer-rightdiv ul li {
  display: inline-block;
  text-align: center;
  margin: 0 10px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.footer-rightdiv ul li a {
  color: #fff;
}

.highcharts-text {
  color: #000;
  font-weight: 600;
}

.closed {
  font-size: 12px;
  font-family: "helmed";
  background: #ed161f;
  text-align: center;
  padding: 5px;
  border-radius: 25px;
  margin-bottom: 0;
  color: #fff;
}

.header-leftdiv img {
  height: 35px;
}

.ldrviewpdfdiv iframe {
  width: 100%;
  height: calc(100vh - 70px);
  margin-top: 63px;
}

#adobe-dc-view iframe {
  /* pointer-events: none !important; */
  min-height: calc(100vh - 60px);
}

/* ldr2.0 */

.header-rightdiv {
  display: flex;
  align-items: center;
  padding-right: 30px;
}
.header-rightdiv a {
  text-decoration: none;
}
.ldrtwoheaderrightprofilediv {
  display: flex;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 10px;
  align-items: center;
}
.ldrtwoheaderrightprofilediv img {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}
.ldrtwoheaderrightprofilediv p {
  margin-bottom: 0;
  color: #fff;
  font-family: helmed;
  font-size: 12px;
}

.headerbotexportbtn {
  background-color: transparent;
  color: #2e3145 !important;
  text-decoration: none !important;
  font-family: "helmed";
  font-size: 12px;
  border: 1px solid #e0e4ec;
  border-radius: 4px;
  padding: 3px 5px;
  margin-left: 10px;
  display: block;
}
.headerbotexportbtn:hover {
  background-color: transparent;
}
.headerbotuploadbtn {
  background-color: transparent;
  color: #2e3145;
  text-decoration: none;
  font-family: "helmed";
  font-size: 12px;
  border: 1px solid #e0e4ec;
  border-radius: 4px;
  padding: 3px 5px;
  border: 0;
  margin-left: 10px;
  display: block;
}
.headerbotuploadbtn:hover {
  background-color: transparent;
}
.headerbotsharebtn {
  background-color: transparent;
  color: #2e3145;
  text-decoration: none;
  font-family: "helmed";
  font-size: 12px;
  border-radius: 4px;
  border: 1px solid #e0e4ec !important;
  padding: 3px 5px;
  border: 0;
  margin-left: 10px;
  display: block;
}
.headerbotsharebtn:hover {
  background-color: transparent;
}

.headerbotbarsearchdiv {
  display: flex;
  align-items: center;
  border-radius: 4px;
  margin-left: 10px;
  height: 26px;
}
.headerbotbarsearchdiv input {
  background-color: #f0f0f0;
  border: 0;
  border-radius: 4px 0 0 4px;
  padding: 4px 10px;
  font-size: 12px;
  font-family: helreg;
  min-width: 208px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  outline: 0;
}
.headerbotbarsearchdiv select {
  border: 0;
  background: #f0f0f0;
  padding: 4px 10px;
  font-size: 12px;
  font-family: helreg;
  border-left: 1px solid #000;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.headerbotbarsearchdiv button {
  background-color: #700149;
  padding: 4px 10px;
  font-size: 12px;
  border: 0;
  color: #fff;
  border-radius: 0 4px 4px 0;
  font-family: helmed;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
}

.homeinfocards {
  background-color: #f5f5f5;
  padding: 5px 15px;
  border-radius: 4px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
}
.homeinfocardsp1 {
  margin-bottom: 0;
  color: #7c7777;
  font-size: 12px;
  font-family: "helreg";
}
.homeinfocardsp2 {
  font-family: "helbold";
  font-size: 26px;
  margin-bottom: 0;
  line-height: 35px;
}

.homeinfocardsborder1 {
  border-bottom: 3px solid #3a5aa7;
}
.homeinfocardsborder2 {
  border-bottom: 3px solid #dab450;
}
.homeinfocardsborder3 {
  border-bottom: 3px solid #9c2845;
}
.homeinfocardsborder4 {
  border-bottom: 3px solid #55a27a;
}

.actiondivviewicon {
  color: #2d3992;
  font-size: 14px;
  margin: 0 3px;
}
.actiondivediticon {
  color: #000;
  font-size: 14px;
  margin: 0 3px;
}
.actiondivdeleteicon {
  color: #e00009;
  font-size: 14px;
  margin: 0 3px;
}

.headerbotbarsearchdiv {
  display: flex;
  align-items: center;
  border: 1px solid #e0e4ec;
  border-radius: 14px;
  height: 28px;
  margin-left: 10px;
}
.headerbotbarsearchdiv input {
  background-color: transparent;
  border: 0;
  border-radius: 4px 0 0 4px;
  padding: 3px 10px;
  font-size: 12px;
  font-family: helreg;
  min-width: 130px;
  max-width: 130px;
}
.headerbotbarsearchdiv select {
  border: 0;
  background: transparent;
  padding: 3px 15px;
  margin-right: 5px;
  font-size: 12px;
  font-family: helreg;
  border-left: 1px solid #000;
}

.headerbotbarsearchdiv select:focus,
.headerbotbarsearchdiv select:focus-visible {
  border-color: #7A003C !important;
  box-shadow: 0 0 6px rgba(122, 0, 60, 0.25);
  outline: none !important;  
}


.headerbotbarsearchdiv button {
  background-color: #700149;
  padding: 4px 10px;
  font-size: 12px;
  border: 0;
  color: #fff;
  border-radius: 0 4px 4px 0;
  font-family: helmed;
}

.ldrnewlogoutdropdown {
  /* background: #000632; */
  background: #700149;
  position: absolute;
  top: 48px;
  right: 0px;
  display: none;
  padding: 5px 10px;
  border-radius: 0 0 5px 5px;
  min-width: 135px;
}
.ldrnewlogoutdropdown a {
  color: #fff;
  display: block;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
}
.ldrnewlogoutdropdown a:hover {
  background: #fff;
  color: #000;
}
.dataTables_wrapper .dataTables_info {
  padding-left: 15px;
}
.dataTables_wrapper .dataTables_paginate {
  padding-top: 10px;
}

.jconfirm-title {
  font-family: "helreg" !important;
  font-size: 18px !important;
  text-align: center;
  width: 100%;
}
.jconfirm-buttons {
  display: flex;
  justify-content: center;
  width: 100%;
  float: none;
}
/* .jconfirm-buttons button:first-child {
  background: #c40e15 !important;
  color: #fff !important;
} */
.jconfirm-buttons button:nth-child(2) {
  background: #c40e15 !important;
  color: #fff !important;
}
.jconfirm-buttons button {
  background: #43a65f !important;
  color: #fff !important;
}
.jconfirm-title-c {
  padding-bottom: 0 !important;
}
.jconfirm-content-pane {
  margin-bottom: 0 !important;
}
.jconfirm-content {
  font-family: "helreg" !important;
  font-size: 18px !important;
  text-align: center;
  width: 100%;
}
/* custom switch */

.ldrtwoswitch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}
.ldrtwoswitch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.ldrtwoslider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d25050;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.ldrtwoslider:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
input:checked + .ldrtwoslider {
  background-color: #76bb57;
}
input:focus + .ldrtwoslider {
  box-shadow: 0 0 1px #76bb57;
}
input:checked + .ldrtwoslider:before {
  -webkit-transform: translateX(19px);
  -ms-transform: translateX(19px);
  transform: translateX(19px);
}
.ldrtwoslider.round {
  border-radius: 34px;
}
.ldrtwoslider.round:before {
  border-radius: 50%;
}

/* custom checkbox */

.ldrcustomcbxcontainer {
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 15px;
  height: 15px;
}
.ldrcustomcbxcontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.ldrcustomcbxcheckmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  border: 2px solid #2d3992;
  border-radius: 4px;
}
.ldrcustomcbxcontainer:hover input ~ .ldrcustomcbxcheckmark {
  background-color: #2d3992;
}
.ldrcustomcbxcontainer input:checked ~ .ldrcustomcbxcheckmark {
  background-color: #2d3992;
}
.ldrcustomcbxcheckmark:after {
  content: "";
  position: absolute;
  display: none;
}
.ldrcustomcbxcontainer input:checked ~ .ldrcustomcbxcheckmark:after {
  display: block;
}
.ldrcustomcbxcontainer .ldrcustomcbxcheckmark:after {
  left: 4px;
  top: 0px;
  width: 4px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#edit_doc_data #pdf-submit {
  width: auto;
  border: 0;
  /* background: #04aa6d; */
  background: #7a003c;
  color: #fff;
  margin-left: 10px;
}
/* #edit_doc_data .col-md-4{min-height: 66px;} */

/* other pdf view  */

.ldrviewpdfotherdiv embed {
  height: 100vh;
  width: 100%;
  display: block;
}

.amendmentdocssearchdocdiv {
  display: flex;
}
.amendments-listing #pdf-search {
  min-width: 190px;
}
.amendmentdocssearchinnerdiv2 {
  margin-top: 18px;
  margin-left: 10px;
}

.amendmentdocssearchinnerdiv2 button{max-width: 280px;}

@media only screen and (max-width: 767px) {
  .headerbotbarsearchdiv input {
    min-width: auto;
  }
  .viewdocdispdata {
    display: block !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .viewdocdispdatap1 {
    width: 100% !important;
  }
  .viewdocdispdatap2 {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .filternotediv p {
    text-align: left !important;
    font-size: 10px !important;
  }
  .login-div {
    flex-direction: column;
  }
  .login-leftdiv {
    width: 100%;
    border-radius: 8px 8px 8px 8px;
  }
  .login-rightdiv {
    display: none !important;
  }
  .header-rightdiv {
    display: none;
  }
  .header-rightmobile {
    display: block !important;
  }
  .innerprofiletab_right {
    padding-left: 10px;
  }
  .innerprofiletab_right p span {
    font-size: 12px;
  }
  .innerprofiletab_right p {
    font-size: 12px;
  }
  .teamtable th {
    font-size: 12px;
  }
  .teamtable td {
    font-size: 12px;
  }
  .assetreg-topbtndiv button {
    font-size: 12px;
  }
  .dashboardentrydiv {
    overflow-x: scroll;
  }
  .dashboardentrydiv table th {
    padding-right: 10px;
  }
  .modalmobilemar {
    margin-top: 65px;
  }
  .teammemberdiv {
    overflow-x: auto;
  }
  .teamtable td {
    padding: 5px 5px;
  }
  .teamtable th {
    padding-left: 5px;
    padding-right: 5px;
  }
  .header-leftdiv {
    padding: 10px 15px;
  }
  .header-rightmobile ul {
    padding-left: 5px;
  }
  .ldrmodalclose {
    right: -8px;
    top: -8px;
  }
  .ldrmodaleditdoc {
    margin-top: 100px;
  }
  .editdovmoddiag {
    width: auto !important;
  }
  .sharemoddiag {
    width: auto !important;
  }
  .in-progress {
    width: 100% !important;
  }
  .completed {
    width: 100% !important;
  }
  .expired {
    width: 100% !important;
  }
  .inprofileuppertab2 {
    display: block;
  }
  .inprofileuppertab_left p {
    text-align: center;
    margin-bottom: 15px;
  }
  .exportbtn-div button,
  .exportbtn-div a {
    font-size: 11px;
    padding: 6px 30px 6px 6px;
  }

  .document-div a {
    margin-bottom: 10px;
  }

  .headerbotexportbtn {
    margin-bottom: 9px;
  }
  .headerbotsharebtn {
    margin-bottom: 9px;
  }
  .filterbtn-div button {
    margin-bottom: 9px;
  }

  /* .editbtn-div button {
    font-size: 11px;
    padding: 6px 30px 6px 6px;
  } */
  /* .sharebtn-div button {
    font-size: 11px;
    padding: 6px 30px 6px 6px;
  } */
  .filterbtn-div button {
    font-size: 11px;
    padding: 6px 30px 6px 6px;
  }
  .inprofileuppertab_right {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  /* .editbtn-div {
    margin-left: 0;
  } */
  .filterbtn-div {
    margin-left: 0;
  }
  .sharebtn-div {
    margin-left: 0;
  }
  .exportbtn-div {
    margin-top: 3px;
  }

  .document-div {
    margin-top: 3px;
  }

  .header-rightmobile ul li {
    margin: 5px 5px;
    width: 25%;
  }
}

.amendments-listing {
  display: flex;
}
/* cookie policy */
.cookie-popup-box {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  float: left;
  position: fixed;
  bottom: 0;
  text-align: center;
  z-index: 100000;
  opacity: 1;
  padding: 3px 15px;
}
.cookie-popup-box p {
  margin-top: 4px;
  color: #fff;
  font-size: 9.5px;
  float: left;
  margin-bottom: 0;
  line-height: 18px;
  padding: 0;
  text-align: left;
  letter-spacing: 0.7px;
  width: 94%;
}
.cookie-popup-box a {
  color: #fff;
  text-decoration: underline;
  font-weight: 900;
  transition: 0.3s;
}
.cookie-popup-box a:hover {
  color: #ccc !important;
}
#cookiemyBtn,
.cookie-popup-box .popup-button .close-button {
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  background: #2c1798;
  display: inline-block;
  padding: 4px 20px;
  border-radius: 0 15px;
  color: #fff;
  border: 0;
}
.cookie-popup-box .popup-button .close-button:hover {
  background: #0d0050;
}
.cookie-popup-box .top-cookies-desc {
  display: inline-block;
  text-align: center;
}
.cookie-close {
  position: absolute;
  right: 20px;
  top: -15px;
  width: 28px;
  height: 28px;
  border-radius: 50px;
  background: url(../../images/cookie-close.png) center no-repeat #000;
  border: 2px solid #fff;
  outline: 0;
  cursor: pointer;
  padding: 0;
}
.cookie-close:hover {
  background: url(../../images/cookie-close.png) center no-repeat #9c0359;
}
.cookiepopmobile {
  display: none;
}
#cookiemore1,
#cookiemore {
  display: none;
}
#cookiedots {
  background: #2c1798;
  padding: 2px 8px;
  border-radius: 25px;
  display: inline-block;
  cursor: pointer;
  margin-left: 10px;
}
#cookiedots1 {
  background: #2c1798;
  padding: 2px 8px;
  border-radius: 25px;
  display: inline-block;
  cursor: pointer;
  margin-left: 10px;
}
@media (min-width: 1600px) and (max-width: 1920px) {
  .cookie-popup-box .popup-button {
    margin: 4px 0 0;
  }
  .cookie-popup-box p {
    font-size: 11px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .cookie-popup-box .close-button {
    padding: 7px 25px !important;
    font-size: 14px !important;
  }
  .cookie-popup-box .popup-button {
    margin: 4px 0 0 6px !important;
  }
  .cookie-popup-box p {
    width: 89%;
  }
}
@media screen and (max-width: 992px) {
  .cookie-popup-box p {
    width: 82%;
  }
  .cookiepopmobile {
    display: block;
  }
  .cookiepopdesktop {
    display: none;
  }
  #cookiemyBtn,
  .cookie-popup-box .popup-button .close-button {
    margin-top: 13px;
  }
}

/* Styling for JSON data */
.json-data {
  background-color: #f4f4f4;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 4px;
  white-space: pre-wrap;
  font-family: monospace;
  line-height: 1.5;
}

/* Optional: Add some colors to the JSON keys and values for better readability */
.json-data .json-key {
  color: #d14;
}

.json-data .json-value {
  color: #0086d1;
}

.json-data .json-string {
  color: #2a00ff;
}
.activity {
  display: flex;
}

.embed-cover {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;

  /* Just for demonstration, remove this part */
  opacity: 0.25;
}

.wrapper {
  position: relative;
  overflow: hidden;
}

body .miniorang-login-wrapper label.error {
  margin-top: 0px;
}

#login-response {
  padding: 10px;
  margin: 10px 0px;
}

.userrole-auditor {
    display: none;
}

/* Parent */
.has-dropdown {
    position: relative;
}

/* Hide submenu */
.has-dropdown .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    padding: 0;
    margin: 0;
    list-style: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 6px;
    z-index: 9999;
}

/* Submenu items */
.has-dropdown .dropdown li {
    border-bottom: 1px solid #eee;
}

.has-dropdown .dropdown li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
}

.has-dropdown .dropdown li a:hover {
    background: #f5f5f5;
}

/* Show on hover */
.has-dropdown:hover .dropdown {
    display: block;
}

/* Full Page Layout */
.page-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000632, #0a0f4d);
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Glow Background Effect */
.page-404::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: #d50e8d;
    filter: blur(120px);
    opacity: 0.25;
    top: -100px;
    left: -100px;
}

.page-404::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: #d50e8d;
    filter: blur(100px);
    opacity: 0.2;
    bottom: -100px;
    right: -100px;
}

/* Glass Card */
.page-404 .error-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 60px 40px;
    border-radius: 20px;
    color: #ffffff;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 0 40px rgba(213, 14, 141, 0.3);
    animation: fadeIn 1s ease-in-out;
    border: 1px solid rgba(213, 14, 141, 0.3);
}

/* 404 Number */
.page-404 .error-code {
    font-size: 110px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #d50e8d;
    text-shadow: 0 0 25px rgba(213, 14, 141, 0.7);
}

/* Title */
.page-404 .error-title {
    font-size: 28px;
    margin-bottom: 15px;
}

/* Text */
.page-404 .error-text {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 25px;
}

/* Button */
.page-404 .error-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #d50e8d;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
    box-shadow: 0 5px 20px rgba(213, 14, 141, 0.5);
}

.page-404 .error-btn:hover {
    background: #ff1fa5;
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(213, 14, 141, 0.8);
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .page-404 .error-code {
        font-size: 70px;
    }
    .page-404 .error-box {
        padding: 40px 20px;
    }
}

.page-template-template-login .loginbtn-div {
  text-align: center;
}
.page-template-template-login .loginbtn-div a {
  font-size: 16px;
  color: #fff;
  background: #d50e8d;
  padding: 5px 15px;
  border-radius: 31px;
  margin-top: 10px;
  display: inline-block;
  font-weight: 500;
}
#doc_share_popup .assetform-subbtndiv {
  gap: 10px;
}


/* Autocompete UI fixng */
  #cust_suggestions {
    position: absolute;
    max-height: 250px;
    overflow-y: auto;
    border: none;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width:92%;
    top: 55px;
  }

  /* Each item */
  #cust_suggestions .cust-item {
    font-size: 14px;
    padding: 10px 14px;
    border: none;
    border-bottom: 1px solid #f1f1f1;
    transition: all 0.2s ease;
  }

  /* Remove border from last item */
  #cust_suggestions .cust-item:last-child {
    border-bottom: none;
  }

  /* Hover effect */
  #cust_suggestions .cust-item:hover {
    background-color: #f8f9fa;
    cursor: pointer;
  }

  /* Active (keyboard navigation) */
  #cust_suggestions .cust-item.active {
    background-color: #0d6efd;
    color: #fff;
  }

  /* Optional: highlight ID part */
  #cust_suggestions .cust-item strong {
    color: #333;
  }

/* Hide recaptcha */
 
.grecaptcha-badge {
  display: none !important;
}


/* Make the confirmation button text case to nomal case */
.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button {
  text-transform: none !important;
  font-family: helreg !important;
  font-size: 14px !important;
  font-weight: normal !important;
}

.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button:nth-child(1) {
  background-color: #04aa6d !important;
  color: #fff !important;
  border-color: #04aa6d !important;
}

.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button:nth-child(2) {
  background-color: #f23c3c !important;
  color: #fff !important;
  border-color: #f23c3c !important;
}

.view-amemdents-docs {
  display: flex;
  gap:5px;
  margin-top: 1px;
}
.view-amemdents-docs .amendment-item {
  padding: 2px 10px;
  background-color: #000;
  border: 1px solid black;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.view-amemdents-docs .amendment-item a {
  color: #fdfdfd;
  font-size: 9px;
  /* font-weight: 600; */
  text-decoration: none;
}


 /* ===== DDR PORTAL â€“ SCOPED WITH .ddr PREFIX ===== */

 .jiostarddr-logo{height: 60px;width: fit-content;}

    .ddr-root *,
    .ddr-root *::before,
    .ddr-root *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    .ddr-root {
      font-family: 'DM Sans', sans-serif;
      min-height: 100vh;
      display: flex;
      background: #f5f4f2;
    }

    /* ===== LEFT PANEL ===== */
    .ddr-left {
      width: 42%;
      min-height: 100vh;
      background: #0a0a0f;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 44px 48px 48px;
      overflow: hidden;
    }

    /* Atmospheric glow blobs */
    .ddr-left::before {
      content: '';
      position: absolute;
      top: -80px;
      left: -60px;
      width: 420px;
      height: 420px;
      background: radial-gradient(circle, rgba(232,0,120,0.35) 0%, transparent 65%);
      border-radius: 50%;
      pointer-events: none;
      animation: ddr-pulse 6s ease-in-out infinite alternate;
    }

    .ddr-left::after {
      content: '';
      position: absolute;
      bottom: 60px;
      right: -80px;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(80,0,180,0.28) 0%, transparent 65%);
      border-radius: 50%;
      pointer-events: none;
      animation: ddr-pulse 8s ease-in-out infinite alternate-reverse;
    }

    @keyframes ddr-pulse {
      from { transform: scale(1) translate(0,0); opacity: 0.8; }
      to   { transform: scale(1.12) translate(12px,16px); opacity: 1; }
    }

    /* Logo */
    .ddr-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      position: relative;
      z-index: 2;
      animation: ddr-fadeUp 0.6s ease both;
    }

    .ddr-logo-badge {
      width: 42px;
      height: 42px;
      background: linear-gradient(135deg, #e80078 0%, #ff3fa4 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 13px;
      color: #fff;
      letter-spacing: -0.5px;
      box-shadow: 0 0 20px rgba(232,0,120,0.5);
    }

    .ddr-logo-text {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 20px;
      color: #fff;
      letter-spacing: -0.3px;
    }

    .ddr-logo-text span {
      color: #e80078;
    }

    /* Hero text */
    .ddr-hero {
      position: relative;
      display: flex;
      z-index: 2;
      animation: ddr-fadeUp 0.6s 0.1s ease both;
      flex-wrap: wrap;
      justify-content: center;
    }

    .ddr-hero h1 {
      text-align: center;
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: clamp(36px, 4vw, 52px);
      line-height: 1.05;
      color: #000000;
      letter-spacing: -1.5px;
      margin-bottom: 18px;
      margin-top: 18px;
    }

    .ddr-hero h1 .ddr-accent {
      color: #e80078;
    }

    .ddr-hero p {
      text-align: center;
      font-size: 15px;
      color: rgb(0 0 0 / 50%);
      line-height: 1.65;
      max-width: 335px;
      font-weight: 300;
    }

    /* Feature cards */
    .ddr-features {
      display: flex;
      flex-direction: column;
      gap: 12px;
      position: relative;
      z-index: 2;
      animation: ddr-fadeUp 0.6s 0.2s ease both;
      margin-top: 25px;
    }

    .ddr-feature-card {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 16px 20px;
      background: rgba(255,255,255,0.045);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 14px;
      backdrop-filter: blur(8px);
      transition: background 0.2s, border-color 0.2s;
      cursor: default;
    }

    .ddr-feature-card:hover {
      background: rgba(255,255,255,0.07);
      border-color: rgba(232,0,120,0.3);
    }

    .ddr-feature-icon {
      width: 38px;
      height: 38px;
      min-width: 38px;
      background: rgba(232,0,120,0.12);
      border: 1px solid rgba(232,0,120,0.2);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #e80078;
    }

    .ddr-feature-icon svg {
      width: 18px;
      height: 18px;
    }

    .ddr-feature-label {
      font-family: 'Syne', sans-serif;
      font-weight: 600;
      font-size: 13.5px;
      color: #fff;
      margin-bottom: 2px;
    }

    .ddr-feature-desc {
      font-size: 12px;
      color: rgba(255,255,255,0.4);
      font-weight: 300;
    }

    /* ===== RIGHT PANEL ===== */
    .ddr-right {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 48px 32px;
      background: #f5f4f2;
      position: relative;
    }

    /* Subtle grid texture */
    .ddr-right::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
      background-size: 40px 40px;
      pointer-events: none;
    }

    .ddr-card {
      width: 100%;
      max-width: 540px;
      background: #fff;
      border-radius: 24px;
      padding: 20px 40px;
      box-shadow:
        0 1px 3px rgba(0,0,0,0.06),
        0 8px 32px rgba(0,0,0,0.08),
        0 0 0 1px rgba(0,0,0,0.05);
      position: relative;
      z-index: 1;
      animation: ddr-fadeUp 0.55s 0.05s ease both;
    }

    /* .ddr-card a:focus, a:hover {
      color: #ffffff;
      text-decoration: none;
    } */

    .page-template-template-login .ddr-card a:focus, .page-template-template-login .ddr-card a:hover {
      color: #fff;
      text-decoration: none;
    }

    .ddr-viewdoc a:focus, a:hover {
      color: #23527c;
      text-decoration: none;
    }

    #view_doc_data .ddr-card a:focus, #view_doc_data .ddr-card a:hover {
      color: #337ab7;
      text-decoration: none;
    }

    .ddr-card-title {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 26px;
      color: #0f0f14;
      letter-spacing: -0.6px;
      text-align: center;
      margin-bottom: 6px;
      margin-top: 6px;
    }

    .ddr-card-subtitle {
      font-size: 14px;
      color: #888;
      font-weight: 300;
      margin-bottom: 36px;
      text-align: center;
    }

    /* Login button */
    .ddr-btn-email {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      padding: 16px 24px;
      background: linear-gradient(135deg, #e80078 0%, #c8006a 100%);
      color: #fff;
      font-family: 'Syne', sans-serif;
      font-weight: 600;
      font-size: 15px;
      letter-spacing: 0.1px;
      border: none;
      border-radius: 14px;
      cursor: pointer;
      transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
      box-shadow: 0 4px 20px rgba(232,0,120,0.35);
      text-decoration: none;
    }

    .ddr-btn-email:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 28px rgba(232,0,120,0.45);
      filter: brightness(1.05);
    }

    .ddr-btn-email:active {
      transform: translateY(0);
    }

    .ddr-btn-arrow {
      width: 18px;
      height: 18px;
      transition: transform 0.2s;
    }

    .ddr-btn-email:hover .ddr-btn-arrow {
      transform: translateX(3px);
    }

    /* Divider */
    .ddr-divider {
      display: flex;
      align-items: center;
      gap: 14px;
      margin: 28px 0;
    }

    .ddr-divider-line {
      flex: 1;
      height: 1px;
      background: #e8e6e3;
    }

    .ddr-divider-label {
      font-size: 11px;
      font-weight: 500;
      color: #bbb;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    /* Notice box */
    .ddr-notice {
      display: flex;
      gap: 12px;
      padding: 14px 16px;
      background: #f0f5ff;
      border: 1px solid #d0deff;
      border-radius: 12px;
      margin-bottom: 28px;
    }

    .ddr-notice-icon {
      width: 20px;
      height: 20px;
      min-width: 20px;
      margin-top: 1px;
      color: #3b6ef0;
    }

    .ddr-notice-text {
      font-size: 12.5px;
      color: #3b6ef0;
      line-height: 1.6;
    }

    .ddr-notice-text strong {
      font-weight: 600;
    }

    /* Corporate link */
    .ddr-corp-link {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      font-size: 13px;
      color: #888;
      text-decoration: none;
      transition: color 0.2s;
    }

    .ddr-corp-link:hover {
      color: #e80078;
    }

    .ddr-corp-link svg {
      width: 14px;
      height: 14px;
      transition: transform 0.2s;
    }

    .ddr-corp-link:hover svg {
      transform: translateX(3px);
    }

    /* Footer */
    .ddr-footer {
      position: absolute;
      bottom: 28px;
      font-size: 12px;
      color: #bbb;
      z-index: 1;
      font-weight: 300;
    }

    /* Animation */
    @keyframes ddr-fadeUp {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .ddr-root {
        flex-direction: column;
      }

      .ddr-left {
        width: 100%;
        min-height: auto;
        padding: 36px 28px 40px;
      }

      .ddr-hero h1 {
        font-size: 36px;
      }

      .ddr-right {
        padding: 40px 20px;
      }

      .ddr-card {
        padding: 36px 28px;
      }
    }
    

 @media (min-width: 768px) {
  .modal-dialog {
        margin: 20px auto;
    }
 }
  