:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #969696;
  --gray-dark: #434343;
  --gray-light: #EBEBEB;
  --primary: #1a91f8;
  --secondary: #6c757d;
  --success: #2AD264;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --font-family-heebo: 'Heebo', sans-serif;
  --font-16:16px;
  --font-20:20px;
  --font-weight-600: 600;
  --font-weight-300: 300;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scroll-behavior: smooth;
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: var(--font-family-heebo)!important;;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--gray-dark);
  text-align: left;
  background-color: #F5F5F5;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}
ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}
b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}
a {
  color: var(--primary);
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

a:not([href]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):hover {
  color: inherit;
  text-decoration: none;
}
figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}
textarea {
  overflow: auto;
  resize: vertical;
}
progress {
  vertical-align: baseline;
}
[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
[hidden] {
  display: none !important;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}
h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2 {
  font-size: 2rem;
}

h3, .h3 {
  font-size: 1.75rem;
}

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-aut{
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 992px) {
  
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.btn:hover {
  color: #212529;
  text-decoration: none;
}

.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.disabled, .btn:disabled {
  opacity: 0.65;
}
.btn-border-none:hover, .btn-border:hover  {color: #1a91f8;;opacity: 0.8;}
a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn {
    padding: 7px 10px;
    border-radius: 3px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: solid 1px var(--primary);
    width: 100%;
    display: block;
    text-align: center;
    font-size: 18px;
}

.btn-primary {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}
.primary-text{color: var(--primary);}

.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}


.text-center{
  text-align: center;
}



/*new css*/




.card-box{
  background-color: #fff;
    border-radius: 10px;
    box-shadow: 2px 2px 4px 0px rgb(0 0 0 / 13%);
    -moz-box-shadow: 2px 2px 4px 0px rgb(0 0 0 / 13%);
}



.wrapper-div{
  width: 100%;
  height: 100%;
  position: relative;
}



/*form css*/

::placeholder {
color: #C4C4C4;
opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
color: #C4C4C4;
}

::-ms-input-placeholder { /* Microsoft Edge */
color: #C4C4C4;
}
.form-box-item:last-child {
margin-bottom: 0;
}
.form-box-item {
position: relative;
margin-bottom: 20px;
}
.form-box-item .mf-head {
    padding: 20px 0 0 0;
}

.input-area {
position: relative;
}
.form-input {
width: 100%;
border: none;
border: solid 1px var(--gray-light);
transition: 0.5s all;
font-size: 16px;
padding: 10px;
background: #fff;
border-radius: 5px;
line-height: 20px;
}

.input-label {
font-size: 12px;
margin: 0;
position: absolute;
background: #fff;
width: 96%;
top: 11px;
transition: 0.3s all;
height: 30px;
font-size: var(--font-16);
left: 3px;
padding: 0 7px;
z-index: 999;
}
.form-input:focus {
border: solid 1px #fff;
outline: none;
box-shadow: 0 0 0 2px var(--primary);
}


.form-input:focus + .input-label, .input-area.active .input-label, .form-input + .input-label.active {
  top: -10px;
  color: var(--primary);
  font-size: 12px;
  width: auto;
  height: auto;
}
.input-area.arn-area p + .form-input {
padding-left: 55px;
}
.input-area.arn-area p {
position: absolute;
top: 10px;
font-size: 16px;
font-weight: 600;
left: 10px;
}
.alert {
color: red;
font-size: 13px;
position: relative;
margin-top: 3px;
display: none;
}

.form-input.validate-input {
border-bottom: none;
box-shadow: 0 0 0px 2px var(--danger);
}

.check-mark {
background: url(../images/dashboard/check-circle-gray.svg);
width: 14px;
height: 14px;
background-repeat: no-repeat;
position: absolute;
right: -4px;
z-index: 2;
top: -5px;
background-color: #fff;
}
.check-mark.active{
background: url(../images/dashboard/check-circle-sucess.svg);
background-repeat: no-repeat;
background-color: #fff;
}

.input-area.input_error .form-input{
border-color:#fff;
outline: none;
box-shadow: 0 0 0 2px #ff0000;
}

.input-area.input_error .input-label{
top: -10px;
color: #ff0000;
font-size: 12px;
width: auto;
}
.check-box {
    position: relative;
}

.check-box input {
    opacity: 0;
    margin-right: 10px;
}

.check-box label {
    margin: 0;
}
.check-box input:checked + label:before {
    background: url(../images/dashboard/checked-icon.svg);
    background-repeat: no-repeat;
}
.check-box label:before {
    content: "";
    background: url(../images/dashboard/uncheck-icon.svg);
    position: absolute;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    left: 0px;
    top: 1px;
}
.check-box.small input:checked + label:before {
    background: url(../images/dashboard/checked-small.svg);
    background-repeat: no-repeat;
}
.check-box.small label:before {
    background: url(../images/dashboard/unchecked-small.svg);
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    top: 4px;
}
.form-input.select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url(../images/dashboard/drop.svg);
    background-repeat: no-repeat;
    background-position: 98.6% 18px;
    position: relative;
    z-index: 1;
}
/*form css end*/


/*Dashborad css*/

.sprite-icon{
background-image: url(../images/dashboard/sprite-img.png);
display: inline-block;
background-repeat: no-repeat;
vertical-align: middle;
}
.dashboard-icon{
width: 16px;
height: 16px;
background-position: 0 0;
}
.dashboard-icon {
width: 18px;
height: 18px;
background-position: -39px -5px;
}
.menu-bar li.active .dashboard-icon{
background-position: -8px -5px;
}

.smartcom-icon{
width: 18px;
height: 18px;
background-position: -98px -5px;
}
.menu-bar li.active .smartcom-icon{
background-position: -66px -5px;
}

.bell-icon {
width: 26px;
height: 28px;
background-position: -172px -6px;
}
.pofiel-div li.active .bell-icon{
background-position: -132px -6px;
}

.text-right{text-align: right;}
.ml-auto{margin-left: auto;}


ul.menu-bar {
padding: 0;
margin: 0;
display: block;
}
.logo {
display: block;
border-right: 1px #efefef solid;
padding-right: 40px;
margin-right: 40px;
}
.pd-20{
padding: 20px;
}
ul.menu-bar li {
display: inline-block;
vertical-align: middle;
}

ul.menu-bar li:last-child a{
margin-right: 0;
}

ul.menu-bar li a {
color: var(--gray-dark);
font-weight: 600;
font-size: 18px;
margin-right: 40px;
}
ul.menu-bar li a .sprite-icon{margin-right: 20px;}

ul.pofiel-div {
margin: 0;
padding: 0;
}

ul.pofiel-div li{display: inline-block;}
ul.pofiel-div li:last-child {
margin-right: 0;
}

.wrapper-box {
padding: 30px 0 0 0;
}
.profile-img {
width: 43px;
height: 43px;
border-radius: 100%;
object-fit: cover;
object-position: center;
margin-left: 10px;
}
ul.pofiel-div li.active a .profile-img {
    border: solid 2px;
}

.align-center{align-items: center;}
.align-top{align-items: flex-start;}
.logo img {
    width: 140px;
}
.s-head {
    line-height: 25px;
}
.s-head span {
    color: #949494;
    font-weight: 400;
    font-size: 18px;
}
.head-box .card-box{
  padding: 20px;
}
.toggle-icon{display: none !important;}
.samcom-pg{
  margin-top: 50px;
}


.v-listing img {
    max-width: 100%;
}

@media(max-width: 991px){
  .wrapper-box {
      padding: 10px 0 0 0;
  }
  .samcom-pg{
    margin-top: 20px;
  }

  ul.menu-bar{display: none;}
  .head-box .col-6 {
      padding: 0;
  }
  .logo{
    padding-right: 20px;
    margin-right: 20px;
  }
  .logo img {
      width: 110px;
  }
  .head-box {
      padding: 0 10px;
  }
  .head-box .card-box{
    padding:10px;
  }
  .toggle-icon{display: inline-block !important;}
  ul.menu-bar {
      position: absolute;
      display: none;
      background: #fff;
      padding: 15px 20px;
      width: 300px;
      left: -10px;
      right: 0;
      margin: auto;
      top: 54px;
      border-radius: 10px;
      box-shadow: 2px 2px 4px 0px rgb(0 0 0 / 13%);
      -moz-box-shadow: 2px 2px 4px 0px rgb(0 0 0 / 13%);
      z-index: 999;
  }
  ul.menu-bar li {
      display: block;
      margin-bottom: 10px;
  }
  ul.menu-bar li:last-child {
      margin-bottom: 0;
  }
  .profile-img{display: none;}
}

/*Dashborad css end*/


/*login css*/

.bg-wrapper-img{
background-image: url(../images/dashboard/background-img.jpg);
background-repeat: no-repeat;  
background-size: cover;
background-position: center;
background-attachment: fixed;
}

.flex-box{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.flex-6{
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.form-inner {
width: 1000px;
margin: auto;
position: relative;
}
.m-mf{
  position: absolute;
    left: 0;
    right: 0;
    bottom: -60px;
    padding-bottom: 10px;
}
.form-box {
position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 20px 0;
}
.from-img{position: relative;height: 100%;overflow: hidden;}
.form-logo {
position: absolute;
top: 40px;
left: 40px;
}
.form-logo img {
    width: 150px;
}

.from-img > img {
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
height: 100%;
}

.form-area {
padding: 80px;
}
.form-head h2 {
font-size: 30px;
font-weight: 600;
}
.form-head h2 span {
font-size: 22px;
font-weight: 400;
}

.form-head {
margin-bottom: 107px;
}

.sign-up, .sign-up:hover{color: var(--gray-dark);}
@media(max-width: 999px){
.form-box .flex-6{
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.form-inner{width: 100%;}
.from-img > img{
width: 100%;
border-top-right-radius: 10px;
border-bottom-left-radius: 0;
}
.form-box{padding: 10px;}
.form-area {
    padding: 30px;
}
.form-head {
    margin-bottom: 45px;
}
}

/*login css end*/


/*card css*/

.dash-detail-section {
    width: 930px;
    margin: 0 auto;
}

.card-heading {
    display: flex;
    align-items: center;
        padding: 20px 30px;
        position: relative;
}
.card-heading .s-head{line-height: 20px;}
.card-icon img{
transition: 0.5s all;}
.card-icon {
    width: 20px;
    text-align: right;
    cursor: pointer;
    margin-left: auto;
    
}
.card-icon:hover img{opacity: 0.5;}

.cl-name {
  margin: 60px 0 30px 0;
  font-size: 25px;
  font-weight: 600;
}
.head-ttle img {
    margin-right: 15px;
}
.head-ttle {
    font-weight: 600;
    font-size: 20px;
}
.cd-name{
  padding: 20px 30px;
}
a.card-box .head-ttle img{width: 45px;}
ul.pr-items {
    margin: 0;
    padding: 0 0 15px 0;
}
ul.pr-items li {
    list-style: none;
    border-bottom: 1px solid #F2F2F2;
    line-height: normal;
    padding: 10px 30px;
    display: flex;
    font-size: 15px;
}
ul.pr-items li:last-child {
    border: none;
}
ul.pr-items li label {
    margin: 0;
    font-weight: 600;
    vertical-align: middle;
    width: 70%;
}
ul.pr-items li span {
    width: 180px;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
}
.dash-card .card-box {
    margin-bottom: 25px;
    display: block;
    overflow: hidden;
}

a.card-box{color: inherit;text-decoration: none;}
a.card-box:hover{background-color: var(--light);}
.pr-items.pr-inner {
    background: #f5f5f5;
    padding: 15px 0px !important;
    display: block;
    border-radius: 10px;   
}
ul.pr-items.pr-inner li {
    border-color: white;
}
/*.edit-section{
  position: relative;
  width: 212px;
}*/
.drop-menu li {
    padding: 10px 15px;
    list-style: none;
    cursor: pointer;
    border-bottom: 1px solid #F2F2F2;
}
.drop-menu li:hover {
    background: #F2F2F2;
}

.drop-menu li:last-child{border-bottom: none;}
.drop-menu li img {
    vertical-align: middle;
    margin-right: 10px;
}
.drop-menu{
  margin: 0;
    padding: 0;
    position: absolute;
   right: 32px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 2px 2px 4px 0px rgb(0 0 0 / 13%);
    -moz-box-shadow: 2px 2px 4px 0px rgb(0 0 0 / 13%);
    overflow: auto;
    display: none;
    z-index: 99;
}

.drop-menu li a {
    color: var(--gray-dark);
}

@media (min-width: 576px){
  .dash-detail-section{
    max-width: 540px;
  }
}



@media (min-width: 768px){
  .dash-detail-section{
    max-width: 720px;
  }
}



@media (min-width: 1200px){
  .dash-detail-section{
    max-width: 1000px;
  }
}




@media (max-width: 929px){
  .dash-detail-section{
    width: 100%;
    padding: 0 10px;
  }
  .dash-card .card-box {
      margin-bottom: 10px;
  }
  .drop-menu li{
    font-size: 14px;
  }
  .head-ttle{font-size: 16px;}
  .head-ttle img {
      margin-right: 10px;
  }

}
@media(max-width: 550px){
  ul.pr-items li{display: block;}
  ul.pr-items li label{width: 100%;}
}
/*card css end*/

/*modal css*/

.st-modal {
    position: relative;
    display: none;
}
.fnd-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.25);
    z-index: 999;
}
.nvst-innr-modal {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    overflow: auto;
    padding: 10px;
}
.invest-modal-body {
    width: 560px;
    margin: auto;
    position: relative;
}
.invstBX {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 2px 2px 7px 0px rgb(0 0 0 / 28%);
    -moz-box-shadow: 2px 2px 7px 0px rgb(0 0 0 / 28%);
    position: relative;
}
.mf-head, .md-footer {
    padding: 20px;
}
.mf-head h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0;
}
.mf-head {
    padding: 30px;
}
.mf-head h3 img {
    margin-right: 10px;
}
.prsd--box {
    padding: 0 30px 30px 30px;
}
.mb-30 {
    margin-bottom: 30px;
}
.border-box {
    border: solid 1px var(--gray-light);
    padding: 20px;
    border-radius: 10px;
    background: #fff;
}
.heading-tb h1 {
    font-size: var(--font-20);
    font-weight: var(--font-weight-600);
    margin-bottom: 0;
}
.offer-box {
    text-align: center;
    border: dashed 2px #ddd;
    padding: 20px;
    margin-top: 10px;
    border-radius: 10px;
    font-size: 25px;
    font-weight: 600;
    color: var(--primary);
}
.enter-box span {
    font-weight: 600;
}
.btn img {
    margin-left: 10px;
}
.md-footer {
    border-top: solid 1px var(--gray-light);
}
.m-0 {
    margin: 0;
}

.searchType {
    position: absolute;
    width: 100%;
    background: #fff;
    overflow: auto;
    height: 180px;
    z-index: 99;
    box-shadow: 1px 1px 9px 0px rgb(0 0 0 / 22%);
    border-radius: 0 0 10px 10px;
    top: 36px;
}
.s-listing {
    padding: 10px 0;
}
.s-listing ul {
    margin: 0;
    padding: 0;
}
.s-listing li {
    list-style: none;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    cursor: pointer;
    margin-bottom: 10px;
    padding: 0 15px;
}
.s-text {
    margin-left: 10px;
    display: inline-block;
}
.enter-box .btn{
  display: inline-block;
  width: auto;

    padding: 5px 10px;
}
.close-btn{
  cursor: pointer;
}
.over-hide{
  overflow: hidden;
}

.get-ifsc {
    text-align: right;
    font-size: 13px;
    margin-top: 5px;
}
.enter-box > img{
  margin-right: 20px;
}


/*footer css*/
.address .head-4 {
    margin-bottom: 10px;
    font-size: 18px;
}
.mb-20 {
    margin-bottom: 20px;
}
.address p {
    font-size: 14px;
}
.social ul, ul.site-links {
    padding: 0;
    margin: 0;
}
.social li {
    list-style: none;
    margin-bottom: 10px;
}
.social li h4 {
    display: inline-block;
    margin: 0;
    font-size: 16px;
    margin-left: 10px;
}
.s-links a {
    margin-right: 15px;
}

ul.site-links li {
    list-style: none;
    margin-bottom: 5px;
}
ul.site-links li img {
    margin-right: 10px;
}
.copy-right {
    background: #f5f5f5;
    padding: 15px 0;
    margin-top: 30px;
    font-size: 13px;
}
.copy-right a {
    color: #434343;
    text-decoration: none;
}
footer {
    background: #fff;
    padding: 40px 0 0 0;
    margin-top: 70px;
}
ul.site-links li a {
    color: #434343;
}

/*setup div*/
.setup-box p {
    font-size: 18px;
    font-weight: 300;
    color: #ddd;
}
.setup-box li.active p{
  color: var(--gray-dark);
}
.setup-box li h1 {
    font-size: 25px;
    font-weight: 600;
    margin: 15px 0;
    color: #ddd;
    margin: 0 0 5px 0;
}
.setup-box li.active h1{color: var(--gray-dark);}


.setup-box li .border-btn{border: solid 1px #ddd;color: #ddd !important;border: transparent !important;}
.setup-box li.active .border-btn{
  color: #1891f8 !important;
    background: transparent;
    border: solid 1px #ddd !important;
}
.setup-box li .border-btn img {
    margin-left: 0;
    width: 16px;
}
/*.setup-box li p{

}*/

.setup-box {
    padding: 70px 0;
}
.setup-box ul {
    text-align: left;
    width: 580px;
    margin: 0 auto;
    border: solid 1px #f5f5f5;
    padding: 40px 40px 40px 90px; 
    border-radius: 15px;
    position: relative;
}
.setup-box ul li {
    list-style: none;
    padding-bottom: 40px;
    position: relative;
}
.setup-box ul li:after {
    content: "1";
    position: absolute;
    left: -50px;
    top: 0;
    background: #ddd;
    color: #fff;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 26px;
    border-radius: 100%;
    font-size: 15px;
    font-weight: 600;
}

.setup-box ul li:last-child:after{
  content: "2";
}
.setup-box ul li:nth-child(1):before {
    content: "";
    width: 3px;
    height: 100%;
    background: #ddd;
    position: absolute;
    left: -39px;
    top: 4px;
}
.setup-box ul li.active:after {
    background: #1a91f8;
    background-image: url(../images/dashboard/checkmark-active.svg) !important;
    background-repeat: no-repeat !important;
    content: " ";
    background-position: 5px 6px !important;
}
.setup-box ul li.active.process:after{
  background-image:none !important;
  content: "1" !important;

}
.setup-box ul li#vd-step2.active.process:after{
  background-image:none !important;
  content: "2" !important;

}

.setup-box ul li.active:first-child:before{
  background: #1a91f8;

}

.setup-box ul li.process:after{
    animation: timelineAnimation 1.5s infinite;
    transition: infinite;
    box-shadow: 0 0 0 0 #eff8ff;
}
.setup-box li a {
    text-decoration: underline;
}
.setup-box li .input-area .form-input{border: solid 2px var(--gray-light);}
.setup-box li.active .input-area .form-input{border: solid 2px var(--primary);}
@-webkit-keyframes timelineAnimation {
  0% {
    box-shadow: 0 0 0 0 #d8eeff;
  }
  
  100% {
    box-shadow: 0 0 0 15px #d8eeff;
  }
}
@keyframes timelineAnimation {
  0% {
    box-shadow: 0 0 0 0 #d8eeff;
  }
  
  100% {
    box-shadow: 0 0 0 15px #d8eeff;
  }
}

.setup-box ul li.active:after {
    background: #1a91f8;
    
}


.setup-box ul li:last-child {    
    padding-bottom: 0;
}
.setup-box .input-label{width: 83%;}
.setup-box .input-area{width: 160px;}
.setup-box .form-input.select{background-position: 90.6% 18px;}
.form-input.select[disabled] + .input-label{color: #ddd;}

.border-btn {
    color: var(--primary) !important;
    font-weight: 600;
    width: auto;
    margin: 0 auto;
    background: #fff;
    font-size: 16px;
    display: inline-block;
}
.border-btn:hover{ color: var(--primary);opacity: 0.8;}
.btn img {
    vertical-align: middle;
    margin-right: 5px;
}
/*setup div end*/

button.removeMore {
    border: none;
    background: transparent;
    padding: 0;
    margin-left: 4px;
    color: var(--primary);
}

.profile-btn{
  color: var(--gray-dark);
    background: #fff;
    padding: 8px 12px;
    display: inline-block;
    border-radius: 5px;
    box-shadow: 1px 1px 4px rgb(0 0 0 / 10%);
}
.profile-btn span {
    vertical-align: middle;
    margin-left: 5px;
}
a.profile-btn{text-decoration: none;}
a.profile-btn:hover{background: #f6fbff;}
.mt-45{margin-top: 45px;}
.mt-20{margin-top: 20px !important;}
.video-img-mob-section{display: none;}
@media(max-width: 767px){
  .setup-box ul{width: 100%;padding: 20px 10px 20px 70px;}
  .setup-box {
      padding: 30px 20px;
  }
  .setup-box li h1{font-size: 20px;}
  .setup-box p{font-size: 16px;}
  .video-img-mob-section{display: block;}
  .video-img-mob-section + footer{
    margin-top: 0px;
  }
}
.d-none {
    display: none;
}

#loading-bar-spinner.spinner {
    left: 50%;
    margin-left: -20px;
    top: 50%;
    margin-top: -20px;
    position: absolute;
    z-index: 19 !important;
    animation: loading-bar-spinner 400ms linear infinite;
}

#loading-bar-spinner.spinner .spinner-icon {
    width: 20px;
    height: 20px;
    border: solid 3px transparent;
    border-top-color: #1a91f8 !important;
    border-left-color: #74beff !important;
    border-radius: 50%;
}

@keyframes loading-bar-spinner {
  0%   { transform: rotate(0deg);   transform: rotate(0deg); }
  100% { transform: rotate(360deg); transform: rotate(360deg); }
}

.h2 {
  font-size: var(--font-18);
  
}
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
}
.input-radio label {
  border: solid 1px #A3A3A3;
  padding: 4px 15px 5px 10px;
  display: inline-block;
  margin: 0;
  border-radius: 3px;
  position: relative;
  cursor: pointer;
  color: #A3A3A3;
}
.input-radio {
  margin-top: 15px;
}
.input-radio label:first-child{margin-right: 10px;}
.input-radio input {
  opacity: 0;
}
.input-radio label .check-mark {
  right: 5px;
  top: 9px;
  position: absolute;
}
.input-radio label.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.input-radio label.active .check-mark{
background: url(../images/check-circle-white.svg);
background-repeat: no-repeat;
}

.check-mark {
  background: url(../images/check-circle-gray.svg);
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  position: absolute;
  right: -4px;
  z-index: 2;
  top: -6px;
  background-color: #fff;
}
.check-mark.active{
background: url(../images/check-circle-sucess.svg);
background-repeat: no-repeat;
}
@media (max-width: 768px){
  .form-head h2 {
    font-size: 26px;
}
}