@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@100;200;300;400;500;600;700;800;900&display=swap");

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Heebo", sans-serif;
}
ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
img {
  max-width: 100%;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 270px;
  background: #00afca;
  z-index: 100;
  transition: all 0.5s ease;
}
.sidebar.close {
  width: 78px;
}
.sidebar .logo-details {
  height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar .logo-details i {
  font-size: 30px;
  color: #fff;
  height: 50px;
  min-width: 78px;
  text-align: center;
  line-height: 50px;
}

.sidebar .logo-details .logo_name {
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease;
  transition-delay: 0.1s;
}
.sidebar.close .logo-details .logo_name {
  transition-delay: 0s;
  opacity: 0;
  pointer-events: none;
}
.sidebar .nav-links {
  height: 100%;
  padding: 0 0 150px 0;
  overflow: auto;
}
.sidebar.close .nav-links {
  overflow: visible;
}
.sidebar .nav-links::-webkit-scrollbar {
  display: none;
}
.sidebar .nav-links li {
  position: relative;
  list-style: none;
  transition: all 0.4s ease;
}
.sidebar .nav-links li:hover {
  background: #3c8dbe;
}
.sidebar .nav-links li .icon-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar.close .nav-links li .icon-link {
  display: block;
}
.sidebar .nav-links li i img {
  max-width: 100%;
  width: 26px;
  height: auto;
}
.sidebar .nav-links li i {
  height: 50px;
  min-width: 78px;
  text-align: center;
  line-height: 50px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sidebar .nav-links li.showMenu i.arrow {
  transform: rotate(-180deg);
}
.sidebar.close .nav-links i.arrow {
  display: none;
}
.sidebar .nav-links li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  width: 100%;
}
.sidebar .nav-links li a:after {
  content: "\ea27";
  position: absolute;
  font-family: boxicons !important;
  color: #fff;
  right: 16px;
  rotate: 270deg;
}
.sidebar.close .nav-links li a:after {
  visibility: hidden;
}

.sidebar .nav-links li a .link_name {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  transition: all 0.4s ease;
}
.sidebar.close .nav-links li a .link_name {
  opacity: 0;
  pointer-events: none;
}
.sidebar .nav-links li .sub-menu {
  padding: 6px 6px 14px 80px;
  margin-top: -10px;
  background: #1d1b31;
  display: none;
}
.sidebar .nav-links li.showMenu .sub-menu {
  display: block;
}
.sidebar .nav-links li .sub-menu a {
  color: #fff;
  font-size: 15px;
  padding: 5px 0;
  white-space: nowrap;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.sidebar .nav-links li .sub-menu a:hover {
  opacity: 1;
}
.sidebar.close .nav-links li .sub-menu {
  position: absolute;
  left: 100%;
  top: -10px;
  margin-top: 0;
  padding: 10px 20px;
  border-radius: 0 6px 6px 0;
  opacity: 0;
  display: block;
  pointer-events: none;
  transition: 0s;
}
.sidebar.close .nav-links li:hover .sub-menu {
  top: 0;
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
}
.sidebar .nav-links li .sub-menu .link_name {
  display: none;
}
.sidebar.close .nav-links li .sub-menu .link_name {
  font-size: 18px;
  opacity: 1;
  display: block;
}
.sidebar .nav-links li .sub-menu.blank {
  opacity: 1;
  pointer-events: auto;
  padding: 3px 20px 6px 16px;
  opacity: 0;
  pointer-events: none;
}
.sidebar .nav-links li:hover .sub-menu.blank {
  top: 50%;
  transform: translateY(-50%);
}
.sidebar .profile-details {
  position: fixed;
  bottom: 0;
  width: 260px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1d1b31;
  padding: 12px 0;
  transition: all 0.5s ease;
}
.sidebar.close .profile-details {
  background: none;
}
.sidebar.close .profile-details {
  width: 78px;
}
.sidebar .profile-details .profile-content {
  display: flex;
  align-items: center;
}
.sidebar .profile-details img {
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 14px 0 12px;
  background: #1d1b31;
  transition: all 0.5s ease;
}
.sidebar.close .profile-details img {
  padding: 10px;
}
.sidebar .profile-details .profile_name,
.sidebar .profile-details .job {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}
.sidebar.close .profile-details i,
.sidebar.close .profile-details .profile_name,
.sidebar.close .profile-details .job {
  display: none;
}
.sidebar .profile-details .job {
  font-size: 12px;
}
.home-section {
  position: relative;
  /* height: 100vh; */
  left: 260px;
  width: calc(100% - 260px);
  transition: all 0.5s ease;
  overflow-x: hidden;
}
.sidebar.close ~ .home-section {
  left: 78px;
  width: calc(100% - 78px);
}
.home-section .home-content .bx-menu,
.home-section .home-content .text {
  color: #11101d;
  font-size: 35px;
}
.home-section .home-content .bx-menu {
  margin: 0 15px;
  cursor: pointer;
}
.home-section .home-content .text {
  font-size: 26px;
  font-weight: 600;
}
@media (max-width: 420px) {
  .sidebar.close .nav-links li .sub-menu {
    display: none;
  }
}
header {
  background: #f5f9fc;
  padding: 10px 28px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  padding-left: 70px;
  position: relative;
}
button.toggel {
  border: 0;
  background: 0;
  position: absolute;
  left: 16px;
}
header strong.name {
  color: #3c8dbc;
  font-size: 19px;
  display: block;
  font-weight: 500;
  line-height: 16px;
}

span.id-number {
  font-size: 12px;
  font-weight: 400;
}

.profile-id {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
}

.profile-detail {
  padding-left: 10px;
}

.profile-insurance {
  padding: 26px;
}
.header-links li {
  display: inline-block;
  vertical-align: middle;
}

.header-links li a {
  height: 40px;
  width: 40px;
  background: #0f5c89;
  border-radius: 35px;
  text-align: center;
  line-height: 35px;
  margin-left: 2px;
  display: block;
}
.header-links li a:hover {
  background: #00afca;
}

.profile-photo img {
  width: 40px;
}

.detail-box {
  background: rgb(248, 251, 253);
  background: linear-gradient(
    180deg,
    rgba(248, 251, 253, 1) 50%,
    rgba(233, 241, 247, 1) 100%
  );
  padding: 20px;
  border-bottom: 3px #c5d6e5 solid;
  margin-bottom: 20px;
  border-radius: 10px;
}

h3.profile-heading {
  font-size: 20px;
  color: #23b7e5;
}
h3.profile-heading img {
  margin-right: 6px;
}

h4.profile-name {
  font-size: 15px;
}

.detail-box span {
  display: block;
  font-size: 17px;
}

.detail-box span i {
  font-size: 19px;
  color: #9b9b9b;
}

.insurance-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.header-links li a img {
  height: 17px;
  width: auto;
}
.insurance-list li {
  width: 31%;
  background: #f2eefc;
  margin-bottom: 13px;
  padding: 16px 20px;
  border-radius: 11px;
}

.insurance-list li img {
  background: #845adf;
  padding: 14px 17px;
  margin-bottom: 12px;
  border-radius: 10px;
  height: 70px;
}
.insurance-list li:nth-child(2) {
  background: #e9f8fc;
}
.insurance-list li:nth-child(2) img {
  background: #23b7e5;
}
.insurance-list li:nth-child(3) {
  background: #e9f8f4;
}
.insurance-list li:nth-child(3) img {
  background: #26bf94;
}
.insurance-list li:nth-child(4) {
  background: #fef8ec;
}
.insurance-list li:nth-child(4) img {
  background: #f5b849;
}
.insurance-list li:nth-child(5) {
  background: #f8f8f8;
}
.insurance-list li:nth-child(5) img {
  background: #bcbcbc;
}
.insurance-list li:nth-child(6) {
  background: #e4ffff;
}
.insurance-list li:nth-child(6) img {
  background: #12c2c2;
}
.insurance-list li h5 {
  font-size: 17px;
  margin-bottom: 0;
  font-weight: bold;
}
.insurance-list li a {
  font-size: 13px;
  text-decoration: none;
  color: #000;
}
.insurance-list li a:hover {
  color: #00afca;
}
a.link {
  font-size: 16px;
  text-decoration: none;
  text-align: right;
  display: block;
  margin-right: 13px;
  text-transform: uppercase;
  font-weight: 600;
}

.business-info-chart {
  padding: 26px;
  padding-top: 0;
}

.business-info-chart .detail-box {
  text-align: center;
  padding: 25px;
}

.business-info-chart .detail-box h2 {
  font-size: 20px;
  margin: 0;
  margin-bottom: 15px;
  font-weight: 700;
  color: #2c2c2c;
}

.more-profile-info {
  padding: 26px;
  padding-top: 0;
}

.notifications {
  background: rgb(248, 251, 253);
  background: linear-gradient(
    180deg,
    rgba(248, 251, 253, 1) 50%,
    rgba(233, 241, 247, 1) 100%
  );
  padding: 20px;
  border-bottom: 3px #c5d6e5 solid;
  margin-bottom: 20px;
  border-radius: 10px;
}

.notifications h3 {
  font-size: 24px;
  color: #305486;
  font-weight: 500;
}

.notifications li {
  color: #052c65;
  list-style: disc;
  list-style-position: outside;
  margin-left: 16px;
  font-size: 15px;
}

.notifications li a {
  color: #052c65;
  margin-left: 0;
  font-weight: bold;
  display: block;
}

.earning-chat h4,
.conversion-retio h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.earning-chat {
  background: rgb(248, 251, 253);
  background: linear-gradient(
    180deg,
    rgba(248, 251, 253, 1) 50%,
    rgba(233, 241, 247, 1) 100%
  );
  padding: 20px;
  border-bottom: 3px #c5d6e5 solid;
  margin-bottom: 20px;
  border-radius: 10px;
  text-align: center;
}

.conversion-retio {
  background: rgb(248, 251, 253);
  background: linear-gradient(
    180deg,
    rgba(248, 251, 253, 1) 50%,
    rgba(233, 241, 247, 1) 100%
  );
  padding: 20px;
  border-bottom: 3px #c5d6e5 solid;
  margin-bottom: 20px;
  border-radius: 10px;
}
.conversion-retio li {
  margin-top: 12px;
}
.conversion-retio img {
  box-sizing: border-box;
  background: #23b7e5;
  padding: 11px;
  display: inline-block;
  border-radius: 10px;
  width: 48px;
}

.conversion-retio li:nth-child(2) img {
  background: #845adf;
}
.conversion-retio li:nth-child(3) img {
  background: #f5b849;
}

.conversion-retio li span {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

.conversion-retio li strong {
  font-size: 20px;
  color: #8d8d8d;
  display: block;
}

section.Details {
  padding: 26px;
  padding-top: 0;
}

.details-box {
  background: rgb(248, 251, 253);
  background: linear-gradient(
    180deg,
    rgba(248, 251, 253, 1) 50%,
    rgba(233, 241, 247, 1) 100%
  );
  padding: 20px;
  border-bottom: 3px #c5d6e5 solid;
  margin-bottom: 20px;
  border-radius: 10px;
  position: relative;
}
.details-box:after {
  content: "\ea27";
  position: absolute;
  font-family: boxicons !important;
  color: #23b7e5;
  rotate: 270deg;
  font-size: 24px;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -26px;
}
.details-box strong {
  display: inline-block;
  vertical-align: middle;
  font-size: 25px;
  color: #845adf;
  margin-left: 11px;
}

.Details .col-lg-3:nth-child(2) .details-box strong {
  color: #e36e5e;
}
.Details .col-lg-3:nth-child(3) .details-box strong {
  color: #1ed2e3;
}
.Details .col-lg-3:nth-child(4) .details-box strong {
  color: #0666c7;
}

.details-box strong span {
  display: block;
  color: #000;
  font-size: 14px;
  font-weight: 400;
}

.Details .col-lg-4:nth-child(1) .details-box strong {
  color: #e791bc;
}
.Details .col-lg-4:nth-child(2) .details-box strong {
  color: #26bf94;
}
.Details .col-lg-4:nth-child(3) .details-box strong {
  color: #f5b849;
}

rect.highcharts-background {
  fill: transparent !important;
}

/* graph-2 */

#container1 {
  height: 400px;
}

.highcharts-figure,
.highcharts-data-table table {
  min-width: 310px;
  max-width: 800px;
  margin: 1em auto;
}

.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;
}
#container1 path.highcharts-area {
  fill: rgb(95 194 254 / 19%);
}

footer {
  padding: 0 20px;
  padding-top: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #000;
  font-size: 14px;
  font-weight: 700;
}

footer a {
  color: #00afca;
  text-decoration: none;
}

/* div#highcharts-epuz6tq-43 {
  height: 300px !important;
}


svg.highcharts-root {
  height: 300px !important;
}

div#highcharts-3119t27-0 {
  height: 300px !important;
}

figure.highcharts-figure {
  height: 300px !important;
  margin: 0 !important;
} */

/* profile-document */

.profile-document {
  padding: 26px;
}

.profile-detail-div {
  background: #f8f8f8;
  padding: 30px 0;
  text-align: center;
  border-radius: 8px;
}
.profile-picture img {
  width: 150px;
}

.profile-picture img {
  width: 150px;
  border: 9px solid #fff;
  border-radius: 100px;
}
.profile-detail-div h3 {
  font-size: 25px;
  font-weight: 700;
  margin: 10px 0;
  color: #00afca;
}
.profile-detail-div p {
  margin: 0;
}
.profile-detail-div p a {
  color: #2c2c2c;
  text-decoration: none;
}

.profile-detail-div li .li-img {
  width: 50px;
  height: 50px;
  background: #845adf;
  padding: 11px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  vertical-align: middle;
}

.profile-detail-div li .li-img img {
  max-width: 100%;
  height: 100%;
}

.profile-detail-div li {
  text-align: left;
  padding: 15px 30px;
  border-top: 2px dashed #3c8dbc;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.profile-detail-div li strong {
  margin-left: 13px;
  text-transform: uppercase;
}
.profile-detail-div li span {
  display: block;
  font-size: 15px;
  font-weight: 400;
  text-transform: lowercase;
}
.profile-detail-div ul {
  margin-top: 12px;
}

.profile-detail-div li.downlode-btn {
  text-align: center;
  display: block;
  padding-bottom: 0;
}

.profile-detail-div li.downlode-btn button {
  background: none;
  border: 0;
  font-weight: 500;
  position: relative;
}

.profile-detail-div li.downlode-btn button:hover {
  color: #00afca;
}

.profile-detail-div li.downlode-btn button i {
  position: absolute;
  left: -25px;
  top: 0px;
  font-size: 21px;
  font-weight: bold;
}

.profile-detail-div li.skill-info span {
  display: inline-block;
  background: #3c8dbc;
  padding: 4px 6px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  font-size: 10px;
}

.profile-detail-div li.l-info .li-img {
  background: #23b7e5;
}

.profile-detail-div li.skill-info .li-img {
  background: #f5b849;
}

.form-box {
  border: 2px #e4e4e4 solid;
  padding: 14px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.form-box label.form-label {
  color: #23b7e5;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
  display: block;
}

.form-box input.form-control {
  border: 2px solid #23b5e3;
  border-radius: 5px;
  width: 46%;
  display: inline-block;
  height: 50px;
  vertical-align: middle;
}

button.toggel img {
  width: 30px;
}

input#file::-webkit-file-upload-button {
  visibility: hidden;
}
input#file::before {
  content: "Choose File";
  color: #929292;
  display: inline-block;
  background: #e4e4e4;
  border: 2px solid #d0d0d0;
  border-radius: 3px;
  margin: -3px 0 -3px -3px;
  padding: 5px 12px;
  outline: none;
  white-space: nowrap;
  cursor: pointer;
  text-align: center;
  font-weight: 700;
  font-size: 10pt;
  font-weight: 500;
  text-transform: capitalize;
  position: absolute;
}

input#file:active {
  outline: 0;
}
.details-box img {
  width: auto;
  height: 60px;
}

input#file {
  background: #eeeeee;
  padding: 8px;
  border: 2px solid #cccccc;
  border-radius: 5px;
  margin-left: 0;
  width: 95%;
}

.file-input-box {
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  width: 49%;
}

.view_icon,
.edit_icon {
  position: absolute;
  width: 33px;
  border: 0;
  background: transparent;
  padding: 5px;
  bottom: -38px;
  right: 0;
}

.view_icon img,
.edit_icon img {
  height: 16px;
  width: auto;
  max-width: initial;
}

button.edit_icon {
  right: 28px;
}

.form-box input.form-control::placeholder {
  color: #00afca;
}

.form-box label.form-label.black-label {
  color: #000;
  font-size: 15px;
}
.form-div h2 {
  font-size: 26px;
  margin-bottom: 21px;
  font-weight: 700;
}
input.submit-btn {
  background: #23b7e5;
  border: 0;
  color: #ffffff;
  padding: 10px 26px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 700;
  border: 2px solid #23b7e5;
}

/* life */
.life_section {
  padding: 26px;
}

.life_section h3 {
  font-size: 22px;
  color: #1f1f1f;
}

.img-box-life {
  display: inline-block;
  background: #845adf;
  height: 68px;
  width: 68px;
  text-align: center;
  padding: 19px;
  border-radius: 100%;
}
.img-box-life img {
  height: auto;
}

.life_section .details-box {
  background: #f2eefc;
  border: 0;
  padding: 12px;
}

.life_section .details-box strong {
  font-size: 36px;
  color: #000000;
  line-height: 30px;
}

.life_section .details-box:after {
  display: none;
}

.select_box_div {
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px dashed #bcbcbc;
  border-bottom: 1px dashed #bcbcbc;
}
.select_box_div select {
  width: 100%;
  height: 50px;
  color: #23b7e5;
  border: 2px solid #23b7e5;
  border-radius: 6px;
  padding: 10px;
  margin-bottom: 19px;
}

.blue-btn,
.white-btn,
.white-btn:hover,
.purpal-btn {
  background: #00afca;
  color: #fff;
  text-transform: uppercase;
  padding: 9px 19px;
  border-radius: 4px;
  border: 2px solid #00afca;
}

.blue-btn:hover,
input.submit-btn:hover,
.white-btn {
  color: #00afca;
  background: #fff;
  border: 2px solid #00afca;
}
.purpal-btn {
  background: #845adf;
  border-color: #845adf;
}
.purpal-btn:hover {
  background: #00afca;
  color: #fff;
}

.next-pev {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

ul#myTab {
  border: 0;
  margin: auto;
  text-align: center;
  justify-content: center;
}

.instalment-deatils button.nav-link,
.instalment-deatils button.nav-link.active {
  border: 0;
  background: #e6f6ff;
  margin: 6px;
  border-radius: 0;
  font-size: 13px;
  color: #23b5e3;
}

.instalment-deatils button.nav-link.active {
  background: #00afca;
  color: #fff;
}

table.first-table {
  width: 100%;
  text-align: center;
  border: 2px solid #929292;
  margin-top: 10px;
}

table.first-table tr th,
table.first-table tr td {
  font-size: 17px;
  padding: 17px 15px;
  border: 1px solid #929292;
}

.member_details_table_div {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed #bcbcbc;
}
table.member_details_table {
  width: 100%;
  text-align: center;
  border: 1px solid #23b5e3;
  margin-top: 10px;
}

table.member_details_table tr th,
table.member_details_table tr td {
  font-size: 14px;
  padding: 17px 15px;
  border: 2px solid #23b5e3;
  background: #e6f6ff;
  text-align: left;
}

/* trainging */
.trainging_section {
  padding: 26px;
}

.trainging_section h3 {
  color: #3c8dbc;
  font-size: 24px;
  font-weight: 700;
}

.trainging_section p {
  font-size: 16px;
  font-weight: 400;
  line-height: 29px;
}

.trainging_section p img {
  width: 218px;
}

.trainging_section p span {
  width: 66%;
  display: inline-block;
  vertical-align: middle;
}

.insue_info {
  background: #f6fbff;
  padding: 20px;
}
.insue_info h4 {
  font-size: 21px;
  color: #00afca;
  font-weight: bold;
}

.insue_info ul {
  margin-bottom: 23px;
  padding-left: 20px;
}

.insue_info ul li {
  font-size: 15px;
  position: relative;
  list-style: disc;
}

/* exam */

.exam_section {
  padding: 26px;
}
.exam-question h3 {
  border-bottom: 1px dashed #bcbcbc;
  font-size: 28px;
  margin-bottom: 19px;
  color: #2c2c2c;
}

.exam-question form > label {
  font-size: 22px;
  color: #23b5e3;
  font-weight: 700;
  margin-bottom: 16px;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label {
  position: relative;
  /* padding-left: 32px; */
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #000;
  font-size: 18px;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
  display: none;
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  width: 27px;
  height: 27px;
  border: 1px solid #3c8dbc;
  border-radius: 100%;
  background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
  display: none;
  content: "";
  width: 27px;
  height: 27px;
  background: #00afca;
  position: absolute;
  top: -5px;
  left: -5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
[type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.exam-question form p {
  margin-bottom: 27px;
}

ul#myTab2 {
  background: #f6fbff;
  padding: 20px;
  border-radius: 5px;
  border: 0;
  justify-content: space-between;
}

ul#myTab2 li.nav-item button.nav-link {
  border: 2px solid #3c8dbc;
  height: 50px;
  width: 50px;
  border-radius: 100%;
  padding: 0;
  text-align: center;
  margin: auto;
  margin-bottom: 20px;
  font-size: 17px;
}

ul#myTab2 li.nav-item button.nav-link.active {
  background: #845adf;
  border-color: #845adf;
  color: #fff;
}

ul#myTab2 li.nav-item {
  width: 25%;
}

/* responsive */

@media (max-width: 1199px) {
  .profile-insurance,
  .business-info-chart,
  .more-profile-info {
    padding: 14px;
  }
  h3.profile-heading {
    font-size: 16px;
  }
  h4.profile-name {
    font-size: 14px;
  }
  .detail-box span {
    display: block;
    font-size: 14px;
  }
  .detail-box span i {
    font-size: 17px;
    color: #9b9b9b;
    position: relative;
    top: 3px;
  }

  .insurance-list li img {
    padding: 9px 11px;
    margin-bottom: 12px;
    height: 50px;
  }

  .insurance-list li {
    padding: 11px 14px;
  }
  .insurance-list li h5 {
    font-size: 15px;
  }
  .notifications h3 {
    font-size: 17px;
  }
  .notifications,
  .conversion-retio {
    padding: 12px;
  }
  .earning-chat h4,
  .conversion-retio h4 {
    font-size: 15px;
  }

  .notifications li {
    margin-left: 10px;
    font-size: 13px;
  }

  .conversion-retio img {
    padding: 9px;
    width: 40px;
  }
  .conversion-retio li strong {
    font-size: 15px;
  }
  .conversion-retio li span {
    font-size: 14px;
  }

  .details-box {
    padding: 10px;
  }

  .details-box strong {
    font-size: 21px;
    margin-left: 4px;
  }
  .profile-detail-div {
    margin-bottom: 20px;
  }

  ul#myTab2 li.nav-item button.nav-link {
    height: 36px;
    width: 36px;
    font-size: 14px;
  }

  .exam-question form > label {
    font-size: 18px;
  }

  [type="radio"]:checked + label,
  [type="radio"]:not(:checked) + label {
    font-size: 15px;
  }

  [type="radio"]:checked + label:before,
  [type="radio"]:not(:checked) + label:before {
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
  }

  [type="radio"]:checked + label:after,
  [type="radio"]:not(:checked) + label:after {
    width: 24px;
    height: 24px;
    left: 0;
    top: 0;
  }

  .blue-btn,
  .white-btn,
  .white-btn:hover,
  .purpal-btn {
    padding: 5px 13px;
    font-size: 14px;
  }
  ul#myTab2 {
    margin-top: 13px;
  }
  .img-box-life {
    height: 50px;
    width: 50px;
    padding: 11px;
  }

  .life_section .details-box strong {
    font-size: 25px;
    color: #000000;
    line-height: 25px;
  }
  .life_section h3 {
    font-size: 18px;
  }
  table.first-table tr th,
  table.first-table tr td {
    font-size: 14px;
    padding: 9px 9px;
  }

  table.member_details_table tr th,
  table.member_details_table tr td {
    font-size: 12px;
    padding: 12px 9px;
  }

  .trainging_section p {
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
  }

  .trainging_section h3 {
    font-size: 20px;
  }
  .trainging_section p span {
    width: 100%;
  }
  .insue_info ul li {
    font-size: 13px;
  }
  .insue_info h4 {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .insue_info {
    margin-top: 20px;
  }
  .exam-question h3 {
    font-size: 20px;
  }

  .sidebar .logo-details {
    display: none;
  }

  .home-section {
    width: 100%;
    left: 0;
  }
  .sidebar ul.nav-links {
    padding-top: 52px;
  }
  button.toggel {
    z-index: 999;
  }
  .sidebar {
    width: 78px;
  }
  .sidebar ~ .home-section {
    left: 78px;
    width: calc(100% - 78px);
  }
  .sidebar .nav-links li a:after {
    display: none;
  }
  .sidebar.close .nav-links li a .link_name {
    opacity: 1;
  }
  .sidebar.close {
    width: 260px;
  }
  table.member_details_table {
    display: block;
    overflow-x: scroll;
  }
  table.first-table {
    overflow-x: scroll;
  }
}

@media (max-width: 575px) {
  .form-div h2 {
    font-size: 19px;
    margin-bottom: 11px;
  }

  .header-links {
    display: none;
  }
  .profile-detail-div h3 {
    font-size: 17px;
    margin: 5px 0;
  }
  .profile-detail-div li strong {
    font-size: 15px;
  }
  .form-box input.form-control {
    width: 100%;
  }
  .file-input-box {
    width: 100%;
    margin-top: 10px;
  }
  .form-box br {
    display: none;
  }
  input.submit-btn {
    padding: 5px 19px;
    font-size: 15px;
  }
  .form-box label.form-label {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .insurance-list li {
    width: 100%;
  }
  .sidebar {
    width: 0;
  }
  .sidebar ~ .home-section {
    left: 0;
    width: 100%;
  }
  .sidebar.close ~ .home-section {
    left: 0;
    width: 100%;
  }

  /* svg.highcharts-root {
  height: 259px !important;
} */
}
@media (max-width: 350px) {
  div#highcharts-v0xy8d4-0 {
    width: 250px !important;
  }
}

/* MMV Model CSS */

.MYmmvmodal {
  border: none;
  border-radius: 2px;
  max-width: 800px;
}

.vehicle-details-select {
  margin-bottom: 5px;
  padding: 7px;
  font-size: 16px;
  border-radius: 5px;
}

.bikecoverplanform ul {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
  margin: 0 -1%;
}
.bikecoverplanform ul li {
  display: inline-block;
  width: 31%;
  margin: 0 1% 0.7rem;
  position: relative;
}
.bikecoverplanform ul li label {
  color: #00b0cb;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px; /* 321.429% */
  text-transform: capitalize;
  display: block;
  background: #f1fdff;
  padding: 1px 7px;
  position: absolute;
  z-index: 999;
  left: 15px;
  top: -10px;
}

.css-13cymwt-control {
  border: 1px solid #d3d3d3 !important;
  /* border-color: #fff !important; */
  border-radius: 10px;
}
.css-t3ipsp-control {
  border: 1px solid #d3d3d3 !important;
  /* border-color: #fff !important; */
  border-radius: 10px;
}
.css-t3ipsp-control:active {
  border: 1px solid #d3d3d3 !important;
  /* border-color: #fff !important; */
  border-radius: 10px;
}
.css-t3ipsp-control:hover {
  /* border: none !important; */
  border: 1px solid #d3d3d3 !important;
  /* border-color: #fff !important; */
  border-radius: 10px;

  /* border-color: #fff !important; */
}
.css-13cymwt-control:hover {
  border: 1px solid #d3d3d3 !important;
  /* border-color: #fff !important; */
  border-radius: 10px;
}
.bikecoverplanform ul li select {
  border-radius: 8px;
  border: 1px solid #00b0cb;
  background: #fff;
  box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.06);
  display: block;
  width: 100%;
  padding: 10px 20px;
  color: #969696;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px; /* 125% */
  text-transform: capitalize;
}
.bikecoverplanform ul li .css-b62m3t-container {
  border-radius: 8px;
  border: 1px solid #00b0cb;
  background: #fff;
  box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.06);
  display: block;
  width: 100%;
  padding: 5px 0px;
  color: #969696;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px; /* 125% */
  text-transform: capitalize;
}

li.coverbutton {
  display: flex;
}
.bikecoverplanform ul li.coverbutton {
  width: 100%; /* margin: 0 0 0; */
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.bikecoverplanform ul li.coverbutton button {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.06);
  border: none;
  padding: 10px 10px;
  width: 30%;
  color: #757575;
  font-family: Montserrat;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}
/* .bikecoverplanform ul li.coverbutton button.active:active {
      border-radius: 8px;
      border: 1px solid #00b0cb;
      background: #fff;
      box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.06);
      color: #00b0cb;
      font-family: Montserrat;
      font-size: 17px;
      font-style: normal;
      font-weight: 500;
      line-height: normal;
      text-transform: capitalize;
    } */
.bikecoverplanform ul li.coverbutton button.active {
  border-radius: 8px;
  border: 1px solid #00b0cb;
  background: #fff;
  box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.06);
  color: #00b0cb;
  font-family: Montserrat;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}

.adjusted-text {
  font-size: 1rem !important;
}

.export_btn {
  border: 1px solid rgb(0, 225, 255);
  border-radius: 5px;
  padding: 5px 10px;
  color: black;
  background-color: white;
}
.bike-input-info {
  border: 1px solid red;
}
.new-bike a {
  color: #000;
  text-decoration: none;
  font-size: 1.2rem;
}
.get-btn {
  background-color: #00afca;
  color: #fff;
}
.pre-btn {
  color: #ffff;
  font-size: 1.2rem;
  width: 14rem;
  padding: 0.5rem;
}
.cls-btn {
  width: 2rem;
}
.car-comp {
  border: 1px solid black;
  width: 200px;
}

/**------------------total policy page style---------**/

.input-inf {
  width: 25%;
  /* border: 1px solid black  !important; */
  border-radius: 4px;
}
.input-inf input {
  width: 50%;
  border: none;
  outline: none;
}
.cont {
  padding: 5px 1rem 2px !important;
}

.input-inf .input-box {
  padding: 15px;
  border-radius: 5px;
  /* border: #000000; */
  border: 1px solid black !important;
}
.search_inp {
  width: 100%;
  padding: 2px;
  padding-left: 10px;
  border-radius: 5px;
  border: 1px solid black;
  outline: none;
  height: 38px;
  /* margin-top: 22px; */
}
.select-fin {
  border: 1px solid red;
  /* height: 30px; */
}
.poly-btn {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  margin-bottom: 4px;
  gap: 20px;
  margin-top: 25px;
}
.poly_btn_1 {
  padding: 4px;
  width: 9%;
  border: none;
  color: white;
  /* height: auto; */
}
.date-pic {
  /* border: 1px solid black !important; */
  box-shadow: none !important;
}
.date-pic input {
  font-size: 16px !important;
}
.ant-picker-active-bar {
  background-color: #fff !important;
}
.ant-picker-date-panel {
  /* padding-left: 10px; */
  padding: 0px !important ;
  width: 260px !important;
}
.ant-picker-body {
  padding: 0px !important;
}

.multi .multiSelect .chip .chip-body {
  height: inherit;
}
.table > thead {
  vertical-align: bottom;
  font-size: 14px;
  padding: 10px !important;
  color: #fff;
  white-space: nowrap;
}
.table > tbody td {
  font-size: 13px;
}
.table .table_det {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
label {
  color: rgba(0, 0, 0, 0.5);
}

.did-floating-label-content {
  position: relative;
  /* margin-bottom:20px;  */
}
.did-floating-label {
  color: #000;
  font-size: 13px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 15px;
  top: 11px;
  padding: 0 5px;
  background: #fff;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}
.did-floating-input,
.did-floating-select {
  font-size: 14px;
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 20px;
  background: #fff;
  border-radius: 5px !important;
  color: #323840;
  border: 1px solid lightgray;
  border-radius: 4px;
  box-sizing: border-box;
  &:focus {
    outline: none;
    ~ .did-floating-label {
      top: -8px;
      font-size: 13px;
    }
  }
}
.did-floating-input:not(:placeholder-shown) ~ .did-floating-label {
  top: -8px;
  font-size: 13px;
}
select.did-floating-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select.did-floating-select::-ms-expand {
  display: none;
}
.did-floating-input:not(:placeholder-shown) ~ .did-floating-label {
  top: -8px;
  font-size: 13px;
}
.did-floating-select:not([value=""]):valid ~ .did-floating-label {
  top: -8px;
  font-size: 13px;
}
.did-floating-select[value=""]:focus ~ .did-floating-label {
  top:11px;
  font-size:13px;
}
.SubmitTitle-div {
  padding: 2rem;
}
.pillwizard .nav-item:not(:last-child) {
  margin-right: 30px;
}
.SubmitOffline-div {
  background: #ffff;
  box-shadow: 10px 10px 10px 10px rgb(234, 236, 236);
  max-width: 100%;
  margin: auto;
  padding: 40px 30px;
  border: none;
}
.total-policy {
  position: relative;
  left: 270px;
  width: calc(100% - 270px);
  top: 0px;
  padding: 10px;
}