@import url('https://fonts.googleapis.com/css2?family=Inria+Sans:wght@300;400;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inria Sans', sans-serif;
    }
a{
  text-decoration: none;
}
a:focus,
img:focus,
input:focus,
textarea:focus,
button:focus {
  outline: none !important;
  box-shadow: none !important;
}
img{
    max-width: 100%;
}
/* login page */
.login-wrap {
  max-width: 650px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: auto;
  min-height: 100vh;
  width: 100%;
  padding: 20px 0;
}
.login-wrap-col{
  width: 100%;
}
.login-wrap-col h1{
  color: #615A57;
font-size: 30px;
font-weight: 700;
word-wrap: break-word;
margin-top: 15px;
margin-bottom: 50px;
}
.form-wrap {
  background: white;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
  border: 2px solid transparent;
  padding: 35px 45px;
}
.form-wrap label {
  color: #615A57;
  font-size: 22px;
  font-weight: 400;
  word-wrap: break-word;
  display: block;
  margin-bottom: 12px;
}
.form-wrap input[type="text"],
.form-wrap input[type="email"],
.form-wrap input[type="tel"],
.form-wrap input[type="number"],
.form-wrap input[type="password"],
.form-wrap input[type="text"],
.form-wrap textarea {
  background: #ECECEC;
  border: 1px #D9D9D9 solid;
  border-radius: 0;
  padding: 12px 24px;
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  word-wrap: break-word;
  margin-bottom: 35px;
  color: #252525;
}
.form-wrap input[type="text"]:focus,
.form-wrap input[type="email"]:focus,
.form-wrap input[type="tel"]:focus,
.form-wrap input[type="number"]:focus,
.form-wrap input[type="password"]:focus,
.form-wrap input[type="text"]:focus,
.form-wrap textarea:focus{
  color: #252525;
  border: 1px #D9D9D9 solid;
  background: #ECECEC;
}
.form-wrap input::placeholder{
  color: #BFBFBF;
}
.btn.btn_primary {
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  word-wrap: break-word;
  padding: 14px;
  color: white;
  background: #615A57;
  border: 1px solid #615A57;
  border-radius: 0;
  min-width: 200px;
  transition: 0.3s;
  margin: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn.btn_primary:hover{
  background: white;
  color: #615A57;
}
.btn.btn_primary.btn_primary_inverse {
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  word-wrap: break-word;
  padding: 14px;
  background: white;
  color: #615A57;
  border: 1px solid #615A57;
  border-radius: 0;
  min-width: 200px;
  transition: 0.3s;
  margin: 0 30px;
}
.btn.btn_primary.btn_primary_inverse:hover{
  color: white;
  background: #615A57;
}
.btn.btn_primary.btn_primary_inverse img{
  filter: invert(1);
  opacity: 0.7;
}
.btn.btn_primary.btn_primary_inverse:hover img{
filter: invert(0);
  opacity: 1;
}
.btn.btn_primary img{
  margin-right: 10px;
}
.btn.btn_primary:hover img {
  filter: invert(1);
  opacity: 0.7;
}
/* header */
header.heder-wrp {
  border-bottom: 1px #615A57 solid;
}
header .menu-icon{
  display: none !important;
}
.menu-wrap ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-wrap ul li {
  padding: 0 25px;
}
.menu-wrap ul li a{
  color: #9C9390;
font-size: 20px;
font-weight: 400;
word-wrap: break-word;
transition: 0.3s;
}
.menu-wrap ul li.active a,
.menu-wrap ul li:hover a{
  color: #615A57;
  font-weight: 700;
}
.not-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
.not-wrap img{
  cursor: pointer;
}
.not-wrap ul{
  display: none;
}
.not-wrap ul.active{
  display: block;
}
.notfs-wrap {
  padding-left: 70px;
}
.not-wrap ul {
  background: white;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
  border: 1px #9C9390 solid;
  position: absolute;
  right: 0;
  min-width: 350px;
  padding: 0px 0 20px;
  margin: 0;
  list-style: none;
  top: 60px;
  z-index: 9;
}
.not-wrap ul li {
  color: #615A57;
  font-size: 20px;
  font-weight: 700;
  word-wrap: break-word;
  line-height: 20px;
  padding: 8px 20px;
  cursor: pointer;
  border-bottom: 1px solid #BDBDBD;
}
.not-wrap ul li.unread {
  background: #EB6565;
}
.not-wrap ul li.unread h3,
.not-wrap ul li.unread p{
  color: #fff;
}
.not-wrap ul li h3 {
  color: #252525;
  font-size: 16px;
  font-weight: 400;
  word-wrap: break-word;
  line-height: 16px;
  margin-bottom: 4px;
}
.not-wrap ul li p {
  color: #252525;
  font-size: 12px;
  font-weight: 300;
  word-wrap: break-word;
  margin: 0;
}
.not-wrap ul li.dlt-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.not-wrap ul li.dlt-icon h4{
  margin-bottom: 0;
}
/* header page */
/* custom select */
/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  font-family: Arial;
}

.custom-select select {
  display: none; /*hide original SELECT element:*/
}

.select-selected {
  background-color: #ECECEC;
  margin-bottom: 38px;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 35px;
  height: 35px;
  background-image: url(../img/icon-angle-down.svg);
  background-size: contain;
  transition: 0.3s;
}
/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  transform: rotate(180deg);
}

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  color: #ffffff;
  padding: 9px 15px;
  border: 1px solid #ECECEC;
  cursor: pointer;
  user-select: none;
  color: #BDBDBD;
  color: #252525;
font-size: 20px;
line-height: 20px;
font-weight: 300;
word-wrap: break-word;
}
.select-items div{
  border-bottom: 1px #D6D6D6 solid;
  color: #252525;
font-size: 20px;
font-weight: 300;
word-wrap: break-word;
line-height: 20px;
}
.select-items div.same-as-selected{
  color: #fff;
}
/*style items (options):*/
.select-items {
  position: absolute;
  background-color: #ECECEC;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: #68605F;
    color: #fff;
}
/* custom select */
/* tooltip icon */
.tooltip-icon {
  position: relative;
  display: inline-block;
  margin-left: 5px;
}

.tooltip-icon .tooltip-text {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.tooltip-icon:hover .tooltip-text {
  visibility: visible;
}
.tooltip-bottom {
  top: 135%;
  left: 50%;
  margin-left: -60px;
}
.tooltip-bottom::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #555 transparent;
}
/* tooltip */
/* content-wrap */
.form-wrap.client-box-wrap {
  padding: 23px 31px;
  margin-bottom: 30px;
}
.head-wrap-cl h1 {
  color: #615A57;
  font-size: 30px;
  font-weight: 700;
  word-wrap: break-word;
  margin: 21px 0 29px;
}
.form-wrap.client-box-wrap h2 {
  color: #615A57;
  font-size: 26px;
  font-weight: 700;
  word-wrap: break-word;
  margin-bottom: 20px;
}
.form-wrap.client-box-wrap h3 {
  color: #615A57;
  font-size: 22px;
  font-weight: 400;
  word-wrap: break-word;
  margin-bottom: 44px;
  display: flex;
  align-items: center;
}
.form-wrap.client-box-wrap h3 span,
.span.num-wrap {
  color: white;
  font-size: 22px;
  font-weight: 400;
  word-wrap: break-word;
  background: #615A57;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  margin-right: 14px;
}
.form-wrap.client-box-wrap label {
  color: #252525;
  font-size: 22px;
  font-weight: 400;
  word-wrap: break-word;
  margin-bottom: 15px;
}
.form-wrap h3 input[type="text"],
.form-wrap h3 input[type="date"]{
  margin-bottom: 0;
  padding: 7px 20px;
  max-width: 500px;
  width: 100%;
  border: none;
  background: #ECECEC;
}
.form-wrap h3 .date_wrap input[type="date"]:before{
  top: 6px;
}
.form-wrap h3 a{
  color: #252525;
font-size: 20px;
line-height: 20px;
font-weight: 300;
border-bottom: 1px solid #252525;
word-wrap: break-word;
transition: 0.3s;
}
.form-wrap h3 a:hover{
  border-color: transparent;
}
.form-wrap h3 i{
  color: #615A57;
    font-size: 22px;
    line-height: 22px;
    font-weight: 400;
    word-wrap: break-word;
    font-style: normal;
    display: inline-block;
    max-width: 340px;
    width: 100%;
    margin-right: 30px;
}
.box-detail-jewellery {
  background: #ECECEC;
  padding: 0 18px 18px;
}
.box-detail-jewellery h4 {
  color: #252525;
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  word-wrap: break-word;
  margin-bottom: 10px;
}
.box-detail-jewellery h4 b{
  font-weight: 700;
}
.box-detail-jewellery table th {
  color: #252525;
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  word-wrap: break-word;
  padding: 10px;
  vertical-align: top;
}
.form-wrap.client-box-wrap hr {
  background: #BFBFBF;
  margin-bottom: 25px;
  margin-top: 0;
}
.form-wrap.client-box-wrap hr {
  background: #BDBDBD;
  margin-bottom: 15px;
  margin-top: 0;
}
.b-r{
  border-right: 1px solid #BDBDBD;
}
.box-det-inner{
  padding: 12px 0;
}
.form-wrap.client-box-wrap .box-detail-jewellery h3 {
  color: #252525;
  font-size: 20px;
  line-height: 20px;
  font-weight: 300;
  word-wrap: break-word;
}
.btn.btn_primary.w-250{
  min-width: 250px;
}
.form-wrap.client-box-wrap h4 span{
  color: #252525;
font-size: 20px;
line-height: 20px;
font-weight: 300;
word-wrap: break-word
}
.head-wrap-cl h3{
  padding-top: 20px;
  color: #615A57;
font-size: 26px;
line-height: 26px;
font-weight: 700;
word-wrap: break-word;
margin-bottom: 20px;
}
.head-wrap-cl h3 span{
  color: #615A57;
  font-size: 24px;
  line-height: 24px;
  font-weight: 400;
  word-wrap: break-word;
  margin-bottom: 10px;
  display: inline-block;
}
.form-wrap.client-box-wrap h5 {
  color: #615A57;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 300;
  word-wrap: break-word;
}
.form-wrap.client-box-wrap h5 a{
  color: #615A57;
  border-bottom: 1px solid #615A57;
  font-size: 20px;
}
.form-wrap.client-box-wrap h5 b{
  font-weight: 700;
}
.status-label {
  color: white;
  font-size: 18px;
  font-weight: 700;
  word-wrap: break-word;
  padding: 4px 5px;
  display: inline-block;
  border-radius: 4px;
  min-width: 120px;
  text-align: center;
}
.status-label.danger-lable {
  color: white;
  font-size: 18px;
  font-weight: 700;
  word-wrap: break-word;
  padding: 4px 20px;
  background: #EB6565;
  display: inline-block;
  border-radius: 4px;
  border: 1px solid #EB6565;
}
.status-label.success-lable{
  background: #7BAE7D;
  border: 1px solid #7BAE7D;
}
.status-label.warning-lable{
  background: #F1BC55;
  border: 1px solid #F1BC55;
}
.disable-lable{
  background: #ADADAD;
  border: 1px solid #ADADAD;
}
.prgrss-lable{
  background: #AA7BAE;
  border: 1px solid #AA7BAE;
}
/* profile screens */
.form-wrap.client-box-wrap.profile-box h5 {
  line-height: 22px;
  margin-bottom: 11px;
  color: #615A57;
font-size: 22px;
font-weight: 700;
word-wrap: break-word;
}
.form-wrap.client-box-wrap.profile-box h4 {
  line-height: 20px;
  margin-bottom: 13px;
  color: #615A57;
font-size: 20px;
font-weight: 400;
word-wrap: break-word;
}
.form-wrap.client-box-wrap.profile-box h4 a{
  color: #615A57;
  border-bottom: 1px solid #615A57;
}
table {
  width: 100%;
}
.form-wrap.client-box-wrap.profile-box th {
  padding: 10px 20px 20px;
  color: #615A57;
font-size: 22px;
line-height: 22px;
font-weight: 700;
word-wrap: break-word;
}
.form-wrap.client-box-wrap.profile-box td {
  color: #252525;
font-size: 20px;
line-height: 20px;
font-weight: 300;
word-wrap: break-word;
  padding: 10px 20px;
}
.gry-bg{
  background: #ECECEC;
}
.num-wrap ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.num-wrap ul li a,
.num-wrap ul li span,
.num-wrap ul li i{
  color: #252525;
  font-size: 20px;
  font-weight: 300;
  word-wrap: break-word;
  width: 26px;
  height: 26px;
  background: #ECECEC;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  font-style: normal;
  transition: 0.3s;
  cursor: pointer;
}
.num-wrap ul li a:hover,
.num-wrap ul li span{
  background: #615A57;
  color: #fff !important;
}
.num-wrap ul li i{
  background: transparent;
}
.num-wrap ul li i:hover{
  background: #ECECEC;
}
.form-wrap.client-box-wrap h2 a {
  color: #615A57;
  font-size: 20px;
  font-weight: 700;
  text-decoration: underline;
  word-wrap: break-word;
  margin-left: 35px;
  display: inline-flex;
    align-items: center;
    cursor: pointer;
}
.form-wrap.client-box-wrap h2 a img{
  margin-right: 5px;
}
.form-wrap .detail-pers-edit input{
  padding: 7px 20px;
    border-color: transparent;
    min-width: 350px;
    transition: 0.3s;
}
.form-wrap .detail-pers-edit span.num-wrap {
  color: white;
  font-size: 22px;
  font-weight: 400;
  word-wrap: break-word;
  background: #BDBDBD;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  margin-right: 14px;
}
.detail-pers-edit,
.active .detail-pers{
  display: none;
}
.active .detail-pers-edit{
  display: block;
}
.head-wrap-cl h4{
  color: #252525;
font-size: 24px;
font-weight: 300;
word-wrap: break-word;
text-align: left;
margin-bottom: 0;
}
.head-wrap-cl h4 a{
  color: #252525;
  display: inline-flex;
    align-items: center;
    transition: 0.3s;
    border-bottom: 1px solid transparent;
}
.head-wrap-cl h4 a:hover{
  border-bottom: 1px solid #252525;
}
.head-wrap-cl h4.bck-link {
  position: relative;
  top: -60px;
}
.head-wrap-cl h4.bck-link img{
  margin-right: 5px;
}
.box-detail-jewellery h6 {
  color: #615A57;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  word-wrap: break-word;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 10px;
}
.box-detail-jewellery h6 img{
  margin-right: 5px;
}
.bb-1 {
  position: relative;
  min-height: 30px;
}
.bb-1:after{
  content: '';
    position: absolute;
    width: calc(100% + 36px);
    bottom: -5px;
    height: 1px;
    background: #BDBDBD;
    left: -18px;
}
.sepr-col img{
  width: 50px;
}
.col.col-step .btn.btn_primary {
  margin: 0;
  max-width: 100%;
  min-width: auto;
  font-weight: 300;
}
.mob-ver{
  display: none !important;
}
html body .row .col-step{
  margin-top: 30px !important;
  margin-bottom: 5px !important;
}
.form-wrap.client-box-wrap .step-col h3 {
  color: #615A57;
  font-size: 22px;
  line-height: 22px;
  font-weight: 700;
  word-wrap: break-word;
  margin: 10px 0 15px !important;
  justify-content: center;
}
.form-wrap.client-box-wrap .step-col p {
  color: #615A57;
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  word-wrap: break-word;
  margin-bottom: 0;
}
.form-wrap.client-box-wrap .disable .step-col h3,
.form-wrap.client-box-wrap .disable .step-col p,
.form-wrap.client-box-wrap .disable .sepr-col img{
  opacity: 0.4;
}
.req-err .select-selected {
  border-color: #EB6565;
}
.low-opacity{
  opacity: 0.5;
}
html body .accordion-button:not(.collapsed),
html body .accordion-button {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
  color: #615A57;
  font-size: 26px;
  font-weight: 700;
  word-wrap: break-word;
  background: transparent;
  box-shadow: none;
}
html body .accordion-button:not(.collapsed):after,
html body .accordion-button:after {
  filter: invert(1) brightness(0);
  right: 70px;
  position: relative;
}
html body .accordion-button:before {
  content: 'Details';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #252525;
  font-size: 22px;
  font-family: Inria Sans;
  font-weight: 400;
  word-wrap: break-word;
}
html body .text-danger{
  color: #EB6565;
}
.req-err .accordion-item{
  border-color: #EB6565;
}
.form-wrap.client-box-wrap h3.text-end {
  justify-content: flex-end;
}
header .menu-btn {
  display: none;
}
header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 0 28px 20px;
  position: relative;
  user-select: none;
}
header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}
header .menu-icon .navicon:before, header .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}
header .menu-icon .navicon:before {
  top: 5px;
}
header .menu-icon .navicon:after {
  top: -5px;
}
header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before, header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}
header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}
header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}
header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}
/* admin ui */
.login-wrap.create-acc-wrap {
  max-width: 1080px;
}
.login-wrap.create-acc-wrap .select-items div, 
.login-wrap.create-acc-wrap .select-selected{
  padding: 13.5px 24px;
  border: 1px #D9D9D9 solid;
}
.login-wrap.create-acc-wrap .select-selected{
  margin-bottom: 35px;
  position: relative;
  position: relative;
  top: 2px;
}
.login-wrap.create-acc-wrap .select-selected:after{
  height: 30px;
  width: 30px;
  top: 50%;
  transform: rotate(180deg) translateY(50%);
}
.login-wrap.create-acc-wrap .select-selected.select-arrow-active:after {
  transform: rotate(180deg) translateY(50%);
  transform: translateY(-50%);
}
.form-wrap label.small-label {
  color: #615A57;
  font-size: 16px;
  font-weight: 400;
  word-wrap: break-word;
}
.login-wrap.create-acc-wrap .form-wrap label{
  min-height: 33px;
}
.notfs-wrap {
  padding-left: 35px;
}
.not-wrap ul li.admin-login h3 {
  color: black;
  font-size: 18px;
  font-weight: 400;
  word-wrap: break-word;
  margin-bottom: 3px;
  margin-top: 13px;
  line-height: 20px;
}
.not-wrap ul li.admin-login a{
  color: black;
font-size: 12px;
font-weight: 400;
word-wrap: break-word;
margin-bottom: 10px;
line-height: 17px;
}
.not-wrap ul li.admin-login .btn{
  width: 100%;
  max-width: 150px;
  margin: 5px auto;
font-size: 12px;
min-width: 150px;
font-weight: 700;
padding: 5px 8px;
word-wrap: break-word;
display: flex;
}
.not-wrap ul li.admin-login{
  margin-bottom: 0;
  border: none;
  padding: 0 10px;
}
.box_das.box_solid {
  background: #615A57;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  border: 2px #615A57 solid;
}
.box_das.box_solid h5,
.box_das.box_solid h2,
.box_das.box_solid h3,
.box_das.box_solid span{
  color: #fff;
}
.box_das {
  border-radius: 6px;
  border: 2px #BDBDBD solid;
  padding: 35px 15px;
  margin-bottom: 40px;
  text-align: center;
  min-height: 210px;
  position: relative;
}
.box_das h5{
  color: #615A57;
  font-size: 22px;
  line-height: 25px;
  font-weight: 700;
  word-wrap: break-word;
  margin-bottom: 10px;
}
.box_das h2{
  color: #615A57;
font-size: 50px;
line-height: 53px;
font-weight: 700;
word-wrap: break-word;
margin-bottom: 15px;
}
.box_das h2 span{
  color: #615A57;
font-size: 30px;
line-height: 45px;
font-weight: 700;
word-wrap: break-word;
display: block;
cursor: pointer;
}
.box_das h3{
  font-size: 22px;
  line-height: 24px;
  font-weight: 300;
  word-wrap: break-word
}
.box_das span.edt-btn-dash{
  color: white;
font-size: 18px;
line-height: 20px;
font-weight: 300;
/* text-decoration: underline; */
word-wrap: break-word;
position: absolute;
right: 15px;
bottom: 20px;
cursor: pointer;
transition: 0.2s;
border-bottom: 1px solid white;
display: inline-block;
}
.box_das span.edt-btn-dash:hover{
  border-color: transparent;
}
.box_das.box_btns {
  border: none;
  padding: 0;
  text-align: left;
}
.box_das.box_btns h4 {
  color: #615A57;
  font-size: 24px;
  font-weight: 700;
  word-wrap: break-word;
  margin-bottom: 37px;
}
.box_das.box_btns .btn {
  border-radius: 6px;
  border: 2px #BDBDBD solid;
  padding: 12px 25px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 28px;
  margin: 0 0 28px 0;
}
.box_das.box_btns .btn span {
  color: #615A57;
  font-size: 20px;
  font-weight: 700;
  word-wrap: break-word;
  transition: 0.3s;
}
.box_das.box_btns .btn h5 {
  color: #615A57;
  font-size: 30px;
  font-weight: 700;
  word-wrap: break-word;
  margin-bottom: 0;
  transition: 0.3s;
}
.box_das.box_btns .btn img{
  transition: 0.3s;
}
.box_das.box_btns .btn:hover img{
  filter: invert(1);
}
.box_das.box_btns .btn:hover span,
.box_das.box_btns .btn:hover h5{
  color: #fff;
}
.btn_icon_text {
  width: 50%;
  text-align: left;
}
.btn_num_text {
  width: 50%;
  text-align: left;
}
.box_das.box_eq_col {
  min-height: initial;
  padding: 37px;
}
.box_das.box_eq_col h5 {
  color: #615A57;
  font-size: 26px;
  line-height: 29px;
  font-weight: 700;
  word-wrap: break-word;
  margin-bottom: 20px;
}
.box_das.box_eq_col h3 {
  color: #615A57;
  font-size: 22px;
  line-height: 24px;
  font-weight: 400;
  word-wrap: break-word;
  margin-bottom: 0;
  cursor: pointer;
  border-bottom: 1px solid #615A57;
  display: inline-block;
}
.box_das.box_eq_col h3 a{
  color: #615A57;
}
.box_das.box_eq_col h3:hover{
  border-color: transparent;
}
#goalModal .modal-dialog{
  max-width: 700px;
}
#goalModal .modal-header{
  border: none;
  display: block;
  text-align: center;
  padding-bottom: 0;
  padding-top: 30px;
}
#goalModal .modal-title{
  color: #615A57;
  font-size: 26px;
  font-weight: 700;
  word-wrap: break-word;
  text-align: center;
  line-height: 30px;
}
#goalModal .modal-body{
  padding-top: 45px;
  padding-bottom: 50px;
}
.company-modal-wrp {
  border: 2px #BDBDBD solid;
  max-width: 370px;
  padding: 18px 0;
  margin: 0 auto;
  text-align: center;
}
.company-modal-wrp h3 {
  color: #615A57;
  font-size: 22px;
  line-height: 24px;
  font-weight: 700;
  word-wrap: break-word;
  margin-bottom: 20px;
  padding: 0 10px;
}
.company-modal-wrp hr {
  margin: 0;
  border-color: #BDBDBD;
  opacity: 1;
}
.company-modal-wrp .form-modal{
  padding: 25px 40px 0;
}
.company-modal-wrp input{
  color: #BDBDBD;
font-size: 18px;
line-height: 20px;
font-weight: 300;
word-wrap: break-word;
background: #D9D9D9;
padding: 8px 12px;
border-radius: 0;
}
.company-modal-wrp span {
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  color: #252525;
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  word-wrap: break-word;
}
.company-modal-wrp .btn-wrap{
  margin-top: 25px;
}
.company-modal-wrp .btn-wrap .btn.btn_primary {
  font-size: 20px;
  line-height: 22px;
  font-weight: 700;
  word-wrap: break-word;
  min-width: 120px;
  margin: 0 10px;
}
.btn.btn_primary.min-w-272{
  min-width: 272px;
  margin: 0;
  padding: 8px 10px;
font-size: 18px;
line-height: 20px;
font-weight: 700;
word-wrap: break-word;
}
.nav.nav-tabs{
  position: relative;
  z-index: 1;
}
.nav-link.btn.btn_primary_inverse {
  color: #615A57;
  font-size: 20px;
  line-height: 22px;
  font-weight: 300;
  word-wrap: break-word;
  padding: 12px;
  min-width: 160px;
  border: 1px #615A57 solid;
  border-radius: 0;
  transition: 0.3s;
}
.nav-link.btn.btn_primary_inverse:hover,
.nav-link.btn.btn_primary_inverse.active{
  background: #615A57;
  color: #fff;
}
.tab-cont-wrap .form-wrap.client-box-wrap {
  border: 2px #BDBDBD solid;
  box-shadow: none;
  position: relative;
  top: -1px;
  padding: 0;
}
.tab-cont-wrap .form-wrap.client-box-wrap.profile-box th{
  padding: 20px 10px;
  border-bottom: 1px #BDBDBD solid;
}
.tab-cont-wrap .form-wrap.client-box-wrap.profile-box td{
  border-bottom: 1px #BDBDBD solid;
  padding: 5px 10px;
}
.tab-cont-wrap .form-wrap.client-box-wrap.profile-box td a{
  color: #252525;
}
.tab-cont-wrap .form-wrap.client-box-wrap.profile-box td a.btn.btn_primary{
  color: white;
font-size: 18px;
line-height: 20px;
font-weight: 300;
word-wrap: break-word;
}
.tab-cont-wrap .form-wrap.client-box-wrap.profile-box td a.btn.btn_primary:hover{
  color: #252525;
}
.tab-cont-wrap .form-wrap.client-box-wrap.profile-box td .td-span{
  color: #252525;
font-size: 18px;
line-height: 20px;
font-weight: 300;
word-wrap: break-word;
display: block;
}
.tab-cont-wrap .form-wrap.client-box-wrap.profile-box td .country-tag {
  border-radius: 2px;
  border: 1px #615A57 solid;
  padding: 2px 10px;
  display: inline-block;
  vertical-align: top;
  color: #615A57;
  font-size: 14px;
  line-height: 16px;
  font-weight: 300;
  word-wrap: break-word;
}
#forecastModal .modal-dialog{
  max-width: 1100px;
}
#forecastModal .modal-header{
  border: none;
  display: block;
  text-align: center;
  padding-bottom: 0;
  padding-top: 30px;
}
#forecastModal .modal-title{
  color: #615A57;
  font-size: 26px;
  font-weight: 700;
  word-wrap: break-word;
  text-align: center;
  line-height: 30px;
}
div#forecastModal .modal-body {
  padding: 25px 34px 110px;
}
.modal .modal-content{
  border-radius: 0;
}
.forecast-modal-wrp {
  border: 2px #BDBDBD solid;
  max-width: 100%;
  padding: 18px 0;
  margin: 0 auto;
}
.forecast-modal-wrp .form-modal {
  padding: 0 20px;
}
.forecast-modal-wrp label {
  color: #615A57;
  font-size: 22px;
  line-height: 24px;
  font-weight: 700;
  word-wrap: break-word;
  margin-bottom: 15px;
  display: block;
}
.forecast-modal-wrp input[type="text"] {
  color: #BDBDBD;
  font-size: 18px;
  line-height: 18px;
  font-weight: 400;
  word-wrap: break-word;
  padding: 5.5px 20px;
  background: #ECECEC;
  border: 1px solid #ECECEC;
}
.forecast-modal-wrp .form-modal .select-items div, 
.forecast-modal-wrp .form-modal .select-selected {
  color: #252525;
  font-size: 18px;
  line-height: 18px;
  font-weight: 400;
  word-wrap: break-word;
  padding: 8px 16px;
}
.forecast-modal-wrp .form-modal .select-items div:hover, 
.forecast-modal-wrp .form-modal .same-as-selected{
  color: #fff;
  background-color: #68605F;
}
.btn.btn_primary{
  border-radius: 4px;
}
/* radio buttons */
input[type="radio"]:checked,
input[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
input[type="radio"]:checked + label,
input[type="radio"]:not(:checked) + label
{
  position: relative;
  padding-left: 40px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #615A57;
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  word-wrap: break-word;
  margin-bottom: 20px;
}
input[type="radio"]:checked + label:before,
input[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border: 2px solid #D9D9D9;
    border-radius: 100%;
    background: #fff;
}
input[type="radio"]:checked + label:before{
    border: 2px solid #615A57;
}
input[type="radio"]:checked + label:after,
input[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #D9D9D9;
    position: absolute;
    top: 5px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
input[type="radio"]:not(:checked) + label:after {
    background: #D9D9D9;
}
input[type="radio"]:checked + label:after {
    background: #615A57;
}
#generateForecastModal .modal-dialog{
  max-width: 1100px;
}
#generateForecastModal .modal-header{
  border: none;
  display: block;
  text-align: center;
  padding-bottom: 0;
  padding-top: 30px;
}
#generateForecastModal .modal-title{
  color: #615A57;
  font-size: 26px;
  font-weight: 700;
  word-wrap: break-word;
  text-align: center;
  line-height: 30px;
  text-align: center;
}
div#generateForecastModal .modal-body {
  padding: 25px 34px 110px;
}
.forecast-modal-wrp h4{
  color: #252525;
font-size: 20px;
line-height: 20px;
font-weight: 300;
word-wrap: break-word;
}
.forecast-modal-wrp h3 {
  color: #615A57;
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  word-wrap: break-word;
  text-align: center;
  margin-bottom: 45px;
  margin-top: 20px;
}
.tab-cont-small.tab-cont-wrap .form-wrap.client-box-wrap.profile-box th {
  padding: 20px;
}
.tab-cont-small.tab-cont-wrap .form-wrap.client-box-wrap.profile-box td {
  padding: 20px;
}
.date_wrap input[type="date"]::-webkit-calendar-picker-indicator {
  color: transparent;
  background: none;
  z-index: 1;
}

.date_wrap input[type="date"] {
  position: relative;
  border-radius: 4px;
  border: 1px #BDBDBD solid;
  color: #AFAFAF;
font-size: 18px;
line-height: 20px;
font-weight: 300;
padding: 9px 16px;
word-wrap: break-word;
position: relative;
    top: 2px;
    width: 200px;
}
.date_wrap input[type="date"]+img{
  display: none;
}
.date_wrap input[type="text"] {
  position: relative;
  border-radius: 4px;
  border: 1px #BDBDBD solid;
  color: #AFAFAF;
  font-size: 18px;
  line-height: 20px;
  font-weight: 300;
  padding: 9px 16px;
  word-wrap: break-word;
  position: relative;
  top: 2px;
  width: 200px;
}
.date_wrap input[type="text"]+img{
  display: inline-block;
  position: absolute;
  top: 53%;
  transform: translateY(-50%);
  right: 8px;
}
.date_wrap input[type="date"]:before {
  color: transparent;
  background: none;
  display: block;
  /* font-family: 'FontAwesome'; */
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 8px;
  right: 8px;
  background-repeat: no-repeat;
  background-position-x: 95%;
  background-position-y: center;
  background-size: 24px;
  background-image: url(../img/icon-calendar.svg);
}
.date_wrap{
  position: relative;
}
.date_wrap span {
  position: absolute;
  top: 0;
  left: 0;
}
.search_btn_wrap{
  position: relative;
}
.search_btn_wrap .btn.btn_primary{
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  word-wrap: break-word;
  padding: 9px 10px;
}
.hed_th_wrap{
  margin-bottom: 30px;
}
.head-th{
  color: #615A57;
    font-size: 24px;
    line-height: 25px;
    font-weight: 700;
    word-wrap: break-word;
    margin-bottom: 0;
}
.tab-cont-wrap .form-wrap.client-box-wrap.profile-box.req_wrap_table td{
  padding-top: 9px;
  padding-bottom: 9px;
}
h5 .select-items div, 
h5 .select-selected{
  margin-bottom: 0;
}
html body .small_inputs input[type="text"]{
  color: #BFBFBF;
font-size: 20px;
line-height: 20px;
font-weight: 300;
word-wrap: break-word;
padding: 7.5px 13px;
max-width: 150px;
margin: 0;
border: none;
}
html body .small_inputs .select-items div, 
html body .small_inputs .select-selected{
  margin: 0;
  color: #252525;
font-size: 20px;
line-height: 20px;
font-weight: 300;
word-wrap: break-word;
}
html body .small_inputs .custom-select{
  min-width: 150px;
}
html body .small_inputs .select-selected{
  min-width: 150px;
}
.dt_wrap_col .date_wrap input[type="date"]{
  background: #ECECEC;
  width: 100%;
  color: #252525;
font-size: 20px;
line-height: 20px;
padding: 7px 10px;
font-weight: 300;
word-wrap: break-word;
border: none;
}
/* checkbox */
.form-wrap.client-box-wrap .checkbox_wraps label{
  color: #252525;
    font-size: 20px;
    line-height: 20px;
    font-weight: 300;
    word-wrap: break-word;
    cursor: pointer;
}
.checkbox_wraps {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox_wraps input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 1px #252525 solid;
  transition: 0.3s;
}

/* On mouse-over, add a grey background color */
.checkbox_wraps:hover input[type="checkbox"] ~ .checkmark {
  background-color: #252525;
  opacity: 0.7;
}

/* When the checkbox is checked, add a blue background */
.checkbox_wraps input[type="checkbox"]:checked ~ .checkmark {
  background-color: #252525;
}

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

/* Show the checkmark when checked */
.checkbox_wraps input[type="checkbox"]:checked ~ .checkmark:after {
  display: block;
}
.add_chng_req_btn,
.remv_chng_req_btn,
.sub_fr_req,
.acpt_req_chng,
.add_chng_tg_req_btn,
.cnfrm_order{
  cursor: pointer;
}
.add_chng_req_bx,
.chng_req_ed_bx,
.chng_req_recvd,
.chng_req_accepted,
.add_tg_req_bx,
.bx_req_order,
.bx_conf_order,
.comment-box{
  display: none;
}
.add_chng_req_bx.active,
.chng_req_ed_bx.active,
.chng_req_recvd.active,
.chng_req_accepted.active,
.add_tg_req_bx.active,
.bx_req_order.active,
.bx_conf_order.active,
.comment-box.active{
  display: block;
}
/* checkbox */
.btn_wrps_cent a{
  color: #615A57;
font-size: 20px;
line-height: 20px;
font-weight: 400;
word-wrap: break-word;
margin: 0 28px;
}
.btn_wrps_cent a img{
  margin-right: 12px;
}
h4.head_4{
  color: #615A57;
  font-size: 26px;
  font-weight: 700;
  word-wrap: break-word;
  line-height: 26px;
}
.accordian_box {
  background: #ECECEC;
}
.accordian_box * {
  background: transparent;
}
.accordian_box h2{
  border-bottom: 1px solid #BFBFBF;
}
.form-wrap.client-box-wrap .accordian_box h2,
.form-wrap.client-box-wrap .accordian_box h2 button {
  color: #615A57;
  font-size: 22px;
  line-height: 25px;
  font-weight: 400;
  word-wrap: break-word;
}
.form-wrap .accordian_box h3 input[type="text"], 
.form-wrap .accordian_box h3 input[type="date"],
.accordian_box .select-items div, 
.accordian_box .select-selected{
  background-color: #fff;
}
html body .accordian_box .select-items div:hover, 
html body .accordian_box .same-as-selected {
  background-color: #68605F;
  color: #fff;
}
.search_fld{
  max-width: 550px;
  width: 100%;
}
.search_fld input{
  color: #AFAFAF;
font-size: 18px;
line-height: 20px;
font-weight: 300;
word-wrap: break-word;
padding: 9px 12px;
border-radius: 4px;
border: 2px #9C9390 solid
}
.form-wrap.client-box-wrap.profile-box td span{
  font-size: 18px;
}
span.country_wrap_td {
  color: #615A57;
  font-size: 24px;
  font-weight: 300;
  word-wrap: break-word;
  border-radius: 2px;
  border: 1px #615A57 solid;
  padding: 4px 25px;
}
.steps-wrap{
  position: relative;
}
.comment-box {
  max-width: 700px;
  background: white;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
  border: 1px #615A57 solid;
  padding: 15px 20px;
  height: 250px;
  overflow-x: hidden;
  overflow: auto;
  position: absolute;
  left: 25px;
  bottom: -250px;
}
.form-wrap.client-box-wrap.profile-box .comment-box ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.form-wrap.client-box-wrap.profile-box .comment-box li{
  margin-bottom: 30px;
}
.form-wrap.client-box-wrap.profile-box .comment-box h4 {
  color: #615A57;
  font-size: 20px;
  font-weight: 300;
  word-wrap: break-word;
  line-height: 22px;
  margin-bottom: 10px;
}
.form-wrap.client-box-wrap.profile-box .comment-box h4 b{
  font-weight: 700;
}
.form-wrap.client-box-wrap.profile-box .comment-box p{
  color: #615A57;
font-size: 20px;
line-height: 22px;
font-weight: 300;
word-wrap: break-word;
}
.prf_bx td{
  vertical-align: top;
}
.col-mng-wrap{
  border: 1px #BDBDBD solid;
  padding: 20px 35px;
  border-bottom: none;
  display: flex;
  justify-content: space-between;
  height: 100%;
}
.row_body:nth-last-child(1) .col-mng-wrap{
  border-bottom: 1px #BDBDBD solid;
}
.col-mng-wrap h4,
.col-mng-wrap h3{
  margin-bottom: 0;
}
.tab-mang-cont{
  margin-top: 20px;
  margin-bottom: 50px;
}
.row_head h4 {
  color: #615A57;
  font-size: 22px;
  line-height: 24px;
  font-weight: 700;
  word-wrap: break-word;
}
.row_body h4 {
  color: #252525;
font-size: 20px;
line-height: 22px;
font-weight: 300;
word-wrap: break-word;
}
.row_body h3 {
  color: #252525;
font-size: 22px;
line-height: 22px;
font-weight: 300;
word-wrap: break-word;
}
.row_body a {
  color: #252525;
  font-size: 22px;
  line-height: 24px;
  font-weight: 300;
  word-wrap: break-word;
  border-bottom: 1px solid #252525;
}
.cont_left {
  width: calc(100% - 120px);
}
.cont_right {
  width: 100px;
}
.cont_left input{
  display: none;
}
.cont_left.active input{
  display: block;
}
.cont_left.active h4{
  display: none;
}
.btn.btn_primary.btn_primary_small {
  padding: 3px 5px;
  min-width: auto;
  width: 100%;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  word-wrap: break-word;
  line-height: 20px;
  border-radius: 3px;
}
.cont_left input {
  background: #ECECEC;
  padding: 6px 15px;
  color: #252525;
  font-size: 20px;
  line-height: 22px;
  font-weight: 300;
  word-wrap: break-word;
  border: none;
  width: 100%;
}
.form-wrap.form_wrap_simple{
  padding: 0;
  box-shadow: none;
  border: none;
}
.form-wrap.form_wrap_simple input{
  margin-bottom: 0;
  min-width: auto;
  width: 100%;
}
.detail-pers-edit .btn.btn_primary.btn_primary_small {
  max-width: 44%;
  margin: 0 2%;
  font-size: 22px;
  line-height: 22px;
  font-weight: 700;
  word-wrap: break-word;
  padding: 9px 10px;
}
.form-wrap.form_wrap_simple .select-items div, 
.form-wrap.form_wrap_simple .select-selected{
  padding: 9px 5px;
  margin-bottom: 0;
}
.form-wrap.form_wrap_simple .select-selected:after{
  display: none;
}
.edt_cont_fld .col-lg-2.col-3{
    width: 80px;
}
.edt_cont_fld .col-lg-10.col-9{
    width: calc(100% - 80px);
}
.head_tb.active .add_new_list{
  display: none;
}
.head_tb .form-wrap.form_wrap_simple{
  display: none;
}
.head_tb.active .form-wrap.form_wrap_simple{
  display: block;
}
#approveModal .modal-dialog,
#approvedModal .modal-dialog{
  max-width: 700px;
}
#approveModal button.btn-close,
#approvedModal button.btn-close {
  background: #615A57;
  border-radius: 9999px;
  padding: 0;
  margin: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  position: absolute;
    right: 20px;
    top: 15px;
}
#approveModal .modal-header,
#approvedModal .modal-header {
  display: block;
  border: none;
  text-align: left;
}
#approveModal .modal-header .modal-title,
#approvedModal .modal-header .modal-title {
  color: #615A57;
  font-size: 26px;
  line-height: 26px;
  font-weight: 700;
  word-wrap: break-word;
  margin-bottom: 0;
}
#approveModal label,
#approvedModal label{
  color: #252525;
font-size: 20px;
line-height: 20px;
font-weight: 300;
word-wrap: break-word;
}
#approveModal input,
#approvedModal input{
  color: #BDBDBD;
  font-size: 16px;
  line-height: 16px;
  font-weight: 300;
  word-wrap: break-word;
  padding: 10px 15px;
  border-radius: 0;
  background: #ECECEC;
  border-color: #ECECEC;
}
.btn-wrap.btn_wrap_mod .btn.btn_primary {
  min-width: 140px;
  font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    word-wrap: break-word;
    padding: 10px 15px;
    border-radius: 0;
}
.ro_frm{
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}
.fld_wrap_mod{
  max-width: calc(100% - 165px);
  width: 100%;
}
.form-modals h3{
  color: #252525;
font-size: 20px;
line-height: 22px;
font-weight: 700;
word-wrap: break-word;
}
.form-modals h4{
line-height: 22px;
color: #252525;
font-size: 20px;
font-weight: 300;
word-wrap: break-word;
}
.img_exchng {
  /* text-align: center; */
  margin: 10px 0;
}
.form-modals h4:nth-last-child(1) {
  margin-bottom: 50px;
}
.cont_mod_wrap.cont_mod_wrap_inp input {
  color: #BDBDBD;
  font-size: 16px;
  line-height: 16px;
  font-weight: 300;
  word-wrap: break-word;
  padding: 9px 13px;
  background: #ECECEC;
  border: none;
}
div#approveModal .modal-content, div#approvedModal .modal-content {
  padding: 15px 15px;
}

/* chat */
.chat-wrap h1 {
  color: #615A57;
  font-size: 30px;
  font-weight: 700;
  word-wrap: break-word;
  margin: 15px 0 13px;
  position: relative;
  z-index: 9;
  display: block;
  text-align: center;
}
.chat-area h3 {
  color: #615A57;
  font-size: 24px;
  font-weight: 700;
  word-wrap: break-word;
  margin: 20px 20px 0;
  position: relative;
  z-index: 9;
  display: block;
  text-align: center;
  line-height: 24px;
}
.chat-area .top-row h3 {
  display: flex;
  justify-content: space-between;
}
.chat-area .top-row h3 img{
  position: absolute;
  right: 0;
}
.chat-box{
  /* border: 1px solid #9C9390; */
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
}
.chat-box .tab-content{
  position: relative;
  border-left: 1px solid #ccc;
}
.chat-box .nav-pills .nav-link.active, 
.chat-box .nav-pills .show>.nav-link{
  background: transparent;
  color: #252525;
}
.chat-box .nav-pills .nav-link{
  border-bottom: 1px solid #BDBDBD;
  border-radius: 0;
}
.chat-box .nav-link,
.chat-box .nav-link h4 {
  color: #252525;
  font-size: 22px;
  text-align: left;
  word-wrap: break-word;
  margin-bottom: 0;
  padding-right: 15px;
}
.chat-box .nav-link p{
  color: #252525;
  font-size: 16px;
  text-align: left;
  word-wrap: break-word;
  margin-bottom: 0;
  padding-right: 15px;
}
.chat-area .sent-msg,
.chat-area .recv-msg{
  position: relative;
  max-width: 500px;
  margin: 15px 0;
}
.chat-area .messages-sec {
  height: calc(100vh - 400px);
  overflow: auto;
}
.chat-area .messages-sec h5 {
  color: #252525;
  font-size: 22px;
  text-align: left;
  word-wrap: break-word;
  margin-bottom: 10px;
  padding-right: 15px;
}
.chat-area .messages-sec p {
  color: #252525;
  font-size: 22px;
  text-align: left;
  word-wrap: break-word;
  margin-bottom: 0;
  background: #ECECEC;
  line-height: 30px;
  padding: 15px 22px;
}
.chat-area .date-fld {
  color: #BDBDBD;
  font-size: 22px;
  word-wrap: break-word;
  position: absolute;
  bottom: 0;
  right: -60px;
}
.chat-area .recv-msg {
  margin: 0 15px 0 auto;
}
.chat-area .messages-sec .recv-msg h5{
  text-align: right;
}
.chat-area .recv-msg .date-fld {
  right: auto;
  left: -60px;
}
.chat-area .send-section{
  margin: 50px 15px 15px;
  position: relative;
  
}
.chat-area .send-section input[type="text"] {
  width: 100%;
  border: 1px solid #615A57;
  padding: 15px 20px;
  color: #BDBDBD;
  border-radius: 4px;
  font-size: 22px;
  margin-top: 0;
}
.chat-area .btn-from-chat {
  width: auto;
  display: inline-flex;
  align-items: center;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.chat-area .attch-file {
  position: relative;
  width: auto;
  display: inline-block;
  overflow: hidden;
}
.chat-area .attch-file input {
  position: absolute;
  z-index: 999;
  opacity: 0;
}
.chat-area .btn-from-chat button {
  padding: 0;
  background: transparent;
  border: none;
  margin: 0 0 0 20px;
}
/* modals pdf */
.client-box-wrap h5 a{
  cursor: pointer;
}
.modals-cart .modal-dialog{
  max-width: 740px;
}
.modals-cart .modal-header{
  border: none;
}
.modals-cart button.btn-close {
  width: 34px;
  height: 34px;
  opacity: 1;
  background: #615A57;
  border-radius: 34px;
  padding: 0;
  position: absolute;
  right: 20px;
  top: 20px;
}
.head-wrap-modal{
  margin-bottom: 25px;
}
.head-wrap-modal h1 {
  font-weight: 700;
  line-height: 32px;
  font-size: 26px;
  margin: 0;
  color: #252525;
}
.head-wrap-modal p {
  font-size: 14px;
  line-height: 17px;
  font-weight: 300;
  color: #000;
  margin-bottom: 0;
}
.head-wrap-modal p a{
  display: block;
  color: #000;
}
.body-wrap-modal,
.form-wrap.body-wrap-modal{
  margin-bottom: 20px;
  background: transparent;
  box-shadow: none;
  border: none;
}
.body-wrap-modal h3 {
  color: #252525;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}
.cart-box {
  border: 1px solid #615A57;
}
.modals-cart th {
  padding: 10px 10px;
  font-size: 18px;
  line-height: 22px;
  color: #252525;
  font-weight: 400;
  vertical-align: top;
}
.modals-cart td {
  padding: 10px 10px;
  color: #252525;
  font-size: 14px;
  line-height: 17px;
  font-weight: 300;
  vertical-align: top;
  max-width: 155px;
}
.modals-cart td p{
  margin: 0;
}
.modals-cart tbody tr{
  border-top: 1px solid #615A57;
}
.modals-cart tbody tr.updated-row{
  border: none;
}
.mini-cart-box {
  max-width: 200px;
  margin: 25px 0 0 auto;
  border: 1px solid #615A57;
}
.mini-cart-box .row-wrap{
  border-bottom: 1px solid #615A57;
  padding: 5px 5px;
}
.mini-cart-box .row-wrap:nth-last-child(1){
  border: none;
}
.mini-cart-box h4 {
  font-size: 14px;
  line-height: 17px;
  font-weight: 400;
  color: #252525;
  margin: 0;
}
.col-total-price, .col-total-quantity {
  width: 150px;
  flex: 1 0 auto;
}
.col-total-price-num, .col-total-quantity-num {
  width: calc(100% - 150px);
  flex: 1 0 auto;
}
.due-date-wrap{
  margin-bottom: 50px;
}
.due-date-wrap h5{
  margin-bottom: 0;
  margin-top: 60px;
  font-size: 26px;
  line-height: 30px;
  color: #252525;
  font-weight: 400;
}
.note-wrap label {
  color: #252525;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  width: 100%;
  margin-bottom: 10px;
}
.note-wrap textarea {
  color: #252525;
  border: 1px solid #615A57;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  height: 70px;
}
.modal-header {
  border: none;
  padding-bottom: 40px;
}
.modal-header .btn-close {
  position: absolute;
  right: 20px;
  width: 34px;
  height: 34px;
  padding: 0;
  opacity: 1;
  background: #615A57;
  border-radius: 34px;
  top: 20px;
}
.arr-right {
  position: relative;
}
.arr-right img {
  position: absolute;
  right: 0;
  transform: translateY(-50%) rotate(90deg);
  top: 50%;
}
.form-wrap h3.arr-right input[type="text"] {
  padding-right: 35px;
  cursor: pointer;
}
@media (max-width:991px){
  header .menu-icon{
    display: inline-block !important;
  }
  .form-wrap .detail-pers-edit input{
    min-width: initial;
    transition: 0.3s;
    width: 100%;
  }
  .head-wrap-cl h4.bck-link {
    position: relative;
    top: 0;
}
html body .accordion-button:not(.collapsed), html body .accordion-button{
  font-size: 16px;
}
html body .accordion-button:before{
  display: none;
}
html body .accordion-button:not(.collapsed):after, html body .accordion-button:after{
  right: 0;
}
  .form-wrap.client-box-wrap.profile-box h5 {
    line-height: 22px;
    margin-bottom: 11px;
    color: #615A57;
    font-size: 22px;
    font-weight: 700;
    word-wrap: break-word;
    margin: 10px 0 !important;
}
  .btn-wrap.text-end.d-flex.justify-content-between.align-items-center {
    display: block !important;
}
.form-wrap.client-box-wrap h2.mb-0{
  margin-top: 15px;
}
.form-wrap{
  padding: 15px 10px;
}
.col.col-step {
  width: 70%;
  flex: 1 0 auto;
}
.form-wrap.client-box-wrap .col-lg-6.text-end h3{
  text-align: left !important;
}
.col.col-step .btn.btn_primary{
  margin-top: 15px;
}
.head-wrap-cl h3{
  font-size: 22px;
}
.form-wrap.client-box-wrap h5{
  font-size: 20px;
}
.form-wrap h3 input[type="text"],
.form-wrap h3 input[type="date"]{
  max-width: 210px;
}
  .box-detail-jewellery table th{
    font-size: 13px;
    padding: 5px;
  }
  /* table */
  .form-wrap.client-box-wrap h3 span,
  .span.num-wrap{
    width: 25px;
    height: 25px;
    font-size: 16px;
  }
  .form-wrap.client-box-wrap h3 span img,
  .span.num-wrap img{
    max-width: 15px;
  }
  .form-wrap h3 i{
    font-size: 16px;
    line-height: 22px;
    margin: 5px 0
  }
  .form-wrap.client-box-wrap h3 span,
  .span.num-wrap{
    margin-right: 5px;
  }
  .box-detail-jewellery h4{
    text-align: left;
  }
  .form-wrap.client-box-wrap h3{
    display: block;
  }
  .form-wrap.client-box-wrap .box-detail-jewellery h3{
    margin-bottom: 10px !important;
  }
  .btn.btn_primary.w-250{
    min-width: initial;
  }
  .form-wrap.client-box-wrap .box-detail-jewellery h3,
  .form-wrap.client-box-wrap .box-detail-jewellery h3 a{
    font-size: 16px;
  }
  .head-wrap-cl h1 {
    color: #615A57;
    font-size: 22px;
    font-weight: 700;
    word-wrap: break-word;
    margin: 15px 0 13px;
    position: relative;
    z-index: 9;
    display: inline-block;
}
.form-wrap.client-box-wrap h2{
  font-size: 22px;
}
.form-wrap.client-box-wrap {
  padding: 15px 15px;
}
.btn.btn_primary,
.btn.btn_primary.btn_primary_inverse {
  font-size: 16px;
  line-height: 16px;
  padding: 10px;
  min-width: initial;
  margin: 10px 0;
  width: 100%;
}
.form-wrap h3 a{
  font-size: 16px;
  line-height: 16px;
}
  .not-wrap ul li.dlt-icon h4{
    font-size: 16px;
  }
  .box-detail-jewellery h4{
    font-size: 16px;
  }
  li.dlt-icon img {
    width: 15px;
}
  .not-wrap ul {
    width: 90vw;
    max-width: 350px;
    top: 45px;
    min-width: initial;
}
  .menu-wrap ul{
    background: white;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
    border: 1px #9C9390 solid;
    position: absolute;
    left: 50%;
    width: 90vw;
    padding: 0px 0 20px;
    margin: 0;
    list-style: none;
    top: 60px;
    flex-wrap: wrap;
    display: none;
    transform: translateX(-50%);
    z-index: 9999;
    max-width: 350px;
    min-height: 50vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0 50px;
}
  .menu-wrap ul li a{
    font-size: 16px;
  }
  .menu-btn:checked ~ label:after {
    content: '';
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
}
  .menu-wrap ul.active{
    display: block;
  }
  .menu-wrap ul li{
    width: 100%;
    color: #615A57;
    font-size: 20px;
    font-weight: 700;
    word-wrap: break-word;
    line-height: 20px;
    padding: 8px 20px;
    cursor: pointer;
    border-bottom: 1px solid #BDBDBD;
  }
  .btn-nav{
    display: block;
  }
.desk-ver{
  display: none !important;
}
  .mob-ver{
    display: inline-flex !important;
  }
  header.heder-wrp .col-lg-2.my-auto {
    width: 25%;
}
header.heder-wrp .col-lg-8.my-auto {
  width: 50%;
}
.notfs-wrap {
  padding-left: 15px;
}
header .menu-btn:checked ~ label + ul{
  display: flex;
}
.form-wrap.client-box-wrap h3{
  font-size: 16px;
  margin-bottom: 20px;
}
.select-items div, .select-selected{
  font-size: 16px;
  line-height: 16px;
}
.form-wrap input[type="text"], .form-wrap input[type="email"], .form-wrap input[type="tel"], .form-wrap input[type="number"], .form-wrap input[type="password"], .form-wrap input[type="text"], .form-wrap textarea{
  font-size: 16px;
  line-height: 16px;
}
.select-selected{
  margin-bottom: 15px;
}
.form-wrap.client-box-wrap label {
  font-size: 18px;
  margin-bottom: 5px;
}
}
@media (min-width: 320px){
.col.col-374 {
    flex: 0 0 auto;
    width: 100%;
}
.col.col-503 {
    flex: 0 0 auto;
    width: 100%;
}
.col.col-325 {
    flex: 0 0 auto;
    width: 100%;
}
.col.col-280 {
    flex: 0 0 auto;
    width: 100%;
}
.col.col-324 {
    flex: 0 0 auto;
    width: 100%;
}
.col.col-283 {
    flex: 0 0 auto;
    width: 100%;
}
}
@media (min-width: 768px){
.col.col-374 {
    flex: 0 0 auto;
    width: 50%;
}
.col.col-503 {
    flex: 0 0 auto;
    width: 50%;
}
.col.col-325 {
    flex: 0 0 auto;
    width: 50%;
}
.col.col-280 {
    flex: 0 0 auto;
    width: 50%;
}
.col.col-324 {
    flex: 0 0 auto;
    width: 50%;
}
.col.col-283 {
    flex: 0 0 auto;
    width: 50%;
}
}
@media (min-width: 992px){
  .chat-area .nav.flex-column.nav-pills {
    width: 360px;
}
.chat-area .tab-content{
  width: calc(100% - 360px);
}
  .col-lg-3-5{
    flex: 0 0 auto;
    width: 29.16666665%;
  }
  .col.col-230 {
    flex: 0 0 auto;
    width: 19%;
}
.col.col-235 {
  flex: 0 0 auto;
  width: 24%;
}
  .col-lg-2.col-lg-body-2 {
    width: 19%;
}
.col-lg-5.col-lg-body-5{
  width: 37%;
}
  header .col-lg-2.col-lg-2-cust{
    width: 150px;
  }
  .col-lg-2.col-cust-2-icons {
    max-width: 200px;
}
  .col-lg-8.col-lg-8-cust {
    width: calc(100% - 350px);
}
  .col.col-step {
    width: 15%;
    flex: 0 0 auto;
}
.col.col-sepr{
  width: 6.25%;
  flex: 0 0 auto;
}
  .col.col-374 {
    flex: 0 0 auto;
    width: 29%;
}
.col.col-503 {
    flex: 0 0 auto;
    width: 46%;
}
.col.col-325 {
    flex: 0 0 auto;
    width: 25%;
}
.col.col-280 {
    flex: 0 0 auto;
    width: 23%;
}
.col.col-324 {
    flex: 0 0 auto;
    width: 31%;
}
.col.col-283 {
    flex: 0 0 auto;
    width: 23%;
}
}
@media (min-width: 1400px){
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1384px;
}
}

/* media queries css */
@media only screen and (max-width: 1399px) and (min-width: 1200px)  {
  .menu-wrap ul li {
    padding: 0 15px;
}
.menu-wrap ul li a{
  font-size: 16px;
}
.not-wrap img {
  max-width: 25px;
}
.box_das h2{
  font-size: 36px;
}
.box_das h5{
  font-size: 16px;
}
.box_das h3,
.box_das.box_eq_col h3 {
  font-size: 18px;
}
.box_das.box_eq_col h5{
  font-size: 20px;
}
.box_das.box_btns .btn span{
  font-size: 16px;
}
.box_das.box_btns .btn h5{
  font-size: 26px;
}
.head-wrap-cl h1{
  font-size: 26px;
}
.form-wrap.client-box-wrap.profile-box th{
  font-size: 18px;
}
.form-wrap.client-box-wrap.profile-box td{
  font-size: 16px;
}
/* clients page */
.form-wrap.client-box-wrap h2{
  font-size: 24px;
}
.form-wrap.client-box-wrap.profile-box h5{
  font-size: 18px;
}
.form-wrap.client-box-wrap.profile-box h4{
  font-size: 17px;
}
.form-wrap.client-box-wrap h2 a{
  font-size: 16px;
}
.form-wrap.client-box-wrap h2 a img{
  max-width: 18px;
}
.form-wrap.client-box-wrap .step-col h3{
  font-size: 16px;
}
.form-wrap.client-box-wrap .step-col p{
  font-size: 16px;
}
}
@media only screen and (max-width: 1199px) and (min-width: 992px)  {
  .chat-area h3{
    font-size: 18px;
  }
  .messages-sec p {
    font-size: 18px;
    padding: 10px 15px;
}
.messages-sec h5{
  font-size: 18px;
}
.sent-msg, .recv-msg {
  max-width: 350px;
}
.chat-box .nav-link, .chat-box .nav-link h4{
  font-size: 18px;
}
.chat-area .nav.flex-column.nav-pills {
    width: 300px;
}
.chat-area .tab-content{
  width: calc(100% - 300px);
}
/* chat ends */
  .col-lg-3.col-lg-body-3 {
    width: 40%;
}
  .col-lg-2.col-lg-body-2 {
    width: 30%;
}
.col-lg-5.col-lg-body-5 {
  width: 60%;
}
.menu-wrap ul li {
  padding: 0 15px;
}
.menu-wrap ul li a{
font-size: 16px;
}
.not-wrap img {
max-width: 25px;
}
.box_das h2{
font-size: 36px;
}
.box_das h5{
font-size: 16px;
}
.box_das h3,
.box_das.box_eq_col h3 {
font-size: 18px;
}
.box_das.box_eq_col h5{
font-size: 20px;
}
.box_das.box_btns .btn span{
font-size: 16px;
}
.box_das.box_btns .btn h5{
font-size: 26px;
}
.head-wrap-cl h1{
font-size: 26px;
}
.form-wrap.client-box-wrap.profile-box th{
font-size: 18px;
}
.form-wrap.client-box-wrap.profile-box td{
font-size: 16px;
}
header .col-lg-2.col-lg-2-cust {
  width: 120px;
}
.col-lg-2.col-cust-2-icons {
  max-width: 135px;
}
.col-lg-8.col-lg-8-cust {
  width: calc(100% - 255px);
}
.notfs-wrap {
  padding-left: 20px;
}
.menu-wrap ul li a {
  font-size: 15px;
}
/* clients page */
.form-wrap.client-box-wrap h2{
  font-size: 24px;
}
.form-wrap.client-box-wrap.profile-box h5{
  font-size: 16px;
}
.form-wrap.client-box-wrap.profile-box h4{
  font-size: 15px;
}
.form-wrap.client-box-wrap h2 a{
  font-size: 16px;
}
.form-wrap.client-box-wrap h2 a img{
  max-width: 18px;
}
.form-wrap.client-box-wrap .step-col h3{
  font-size: 13px;
}
.form-wrap.client-box-wrap .step-col p{
  font-size: 13px;
}
}
@media only screen and (max-width: 991px) and (min-width: 1px)  {
  .chat-area h3{
    font-size: 15px;
  }
  .chat-box .nav-link p{
    display: none;
  }
  .messages-sec p {
    font-size: 15px;
    padding: 10px 15px;
}
.messages-sec h5{
  font-size: 15px;
}
.sent-msg, .recv-msg {
  max-width: 350px;
}
.chat-box .nav-link, .chat-box .nav-link h4{
  font-size: 15px;
}
.chat-area .top-row h3 img{
  width: 20px;
}
.send-section input[type="text"]{
  font-size: 18px;
}
.chat-area .nav.flex-column.nav-pills {
    width: 200px;
}
.send-section img{
  width: 20px;
}
.chat-area .tab-content{
  width: calc(100% - 200px);
}
/* chat ends */
  .col.col-sepr.text-center.my-auto {
    display: none;
}
.col.col-step{
  position: relative;
}
.col.col-step:after {
  content: '';
  position: absolute;
  background-image: url(../img/icon-arrow-down.svg);
  width: 40px;
  height: 40px;
  background-size: 40px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.col.col-step:nth-last-child(1):after{
  display: none;
}
.step-col{
  position: relative;
  margin-bottom: 70px;
}
.col.col-step:nth-last-child(1) .step-col{
  margin-bottom: 0;
}
  .d-flx-mobile{
    display: flex;
    justify-content: space-between;
  }
  .d-flx-mobile .btn.btn_primary.btn_primary_inverse,
  .d-flx-mobile .btn.btn_primary{
    width: 48%;
  }
  .row.mb-4 .col-lg-6:nth-child(1) {
    margin-bottom: 1.5rem!important;
}
.form-wrap .detail-pers-edit input{
  min-width: 350px;
  width: auto;
}
  .form-wrap.client-box-wrap.profile-box h4,
  .form-wrap.client-box-wrap.profile-box h4.mb-5.pb-5 {
    margin: 0 0 13px !important;
    padding: 0 !important;
    line-height: 20px;
    font-size: 18px;
}
.form-wrap.client-box-wrap.profile-box h5,
.form-wrap.client-box-wrap.profile-box h5.mb-5.pb-5 {
  margin: 0 0 13px !important;
  padding: 0 !important;
  line-height: 20px;
  font-size: 18px;
}
}
@media only screen and (max-width: 767px) and (min-width: 1px)  {
  .chat-wrap h1{
    font-size: 22px;
  }
  .chat-box .nav-pills .nav-link{
    padding: 3px;
  }
  .chat-area h3 {
    font-size: 14px;
    margin: 5px 5px 0;
    line-height: 16px;
    min-height: 32px;
}
  .chat-box .nav-link p{
    display: none;
  }
  .messages-sec p {
    font-size: 12px;
    padding: 5px 10px;
    line-height: 16px;
}
.messages-sec h5{
  font-size: 12px;
  margin-bottom: 5px;
}
.sent-msg, .recv-msg {
  max-width: 75%;
}
.date-fld {
  position: unset;
  font-size: 12px;
}
.chat-box .nav-link, .chat-box .nav-link h4{
  font-size: 12px;
}
.chat-area .top-row h3 img{
  width: 16px;
}
.send-section input[type="text"]{
  font-size: 12px;
  padding: 8px 35px 8px 5px;
}
.chat-area .nav.flex-column.nav-pills {
    width: 100px;
}
.send-section img{
  width: 10px;
}
.btn-from-chat button {
  margin: 0 0 0 5px;
}
.btn-from-chat{
  right: 5px;
}
.chat-area .tab-content{
  width: calc(100% - 100px);
}

/* chat ends */
  .form-wrap.client-box-wrap.profile-box td img {
    max-width: 16px;
    margin: 0 3px !important;
}
  .comment-box{
    z-index: 99;
    width: 100%;
    left: 0;
    bottom: auto;
    top: 0;
  }
  .form-wrap .detail-pers-edit input{
    min-width: 240px;
    width: 100%;
  }
  .form-wrap.client-box-wrap.profile-box h4,
  .form-wrap.client-box-wrap.profile-box h4.mb-5.pb-5 {
    margin: 0 0 13px !important;
    padding: 0 !important;
    line-height: 20px;
    font-size: 18px;
}
.form-wrap.client-box-wrap.profile-box.top-box-prof h4,
.form-wrap.client-box-wrap.profile-box.top-box-prof h4.mb-5.pb-5{
  border-bottom: 1px solid #ccc;
  padding: 0 0 13px !important;
}
.form-wrap.client-box-wrap.profile-box h5,
.form-wrap.client-box-wrap.profile-box h5.mb-5.pb-5 {
  margin: 0 0 13px !important;
  padding: 0 !important;
  line-height: 20px;
  font-size: 18px;
}
  .notfs-wrap{
    padding-left: 7px;
  }
  .form-wrap.client-box-wrap.profile-box th{
    font-size: 16px;
  }
  .form-wrap.client-box-wrap.profile-box td{
    font-size: 16px;
  }
  .tab-cont-wrap .form-wrap.client-box-wrap.profile-box td .td-span{
    font-size: 14px;
  }
  html body div table .status-label{
    font-size: 14px !important;
  }
  .nav-link.btn.btn_primary_inverse{
    font-size: 16px;
    min-width: initial;
    padding: 8px 10px;
  }
  .head-th{
    margin: 15px 0;
  }
  .box_das h2{
    font-size: 36px;
    line-height: 40px;
  }
  .box_das.box_btns .btn{
    flex-wrap: wrap;
    text-align: center;
  }
  .btn_icon_text,
  .btn_num_text{
    width: 100%;
    text-align: center;
    margin: 5px 0;
  }
  .box_das{
    min-height: initial;
  }
  .box_das.box_eq_col{
    padding: 15px 15px;
  }
  .box_das.box_eq_col h5{
    font-size: 22px;
  }
}

/* media query css */