.dis-flex {
  display: flex;
}
.dis-flex-column {
  flex-direction: column;
}
.dis-justify-center {
  justify-content: center;
}
.dis-justify-end {
  justify-content: end;
}
.dis-just-space-between {
  justify-content: space-between;
}
.dis-align-center {
  align-items: center;
}
.dis-block {
  display: block;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.fw-bold {
  font-weight: bold;
}
.mar-l-10 {
  margin-left: 10px;
}

.mar-l-15 {
  margin-left: 15px;
}
.gap-5 {
  gap: 5px;
}
.gap-10 {
  gap: 10px;
}
.gap-15 {
  gap: 15px;
}
.gap-20 {
  gap: 20px;
}
.pad-5 {
  padding: 5px;
}
.pad-10 {
  padding: 10px;
}
.pad-15 {
  padding: 15px;
}
.pad-l-15 {
  padding-left: 15px;
}
.pad-r-15 {
  padding-right: 15px;
}
.pad-20 {
  padding: 20px;
}
.mar-b-5 {
  margin-bottom: 5px;
}
.mar-b-10 {
  margin-bottom: 10px;
}
.mar-b-15 {
  margin-bottom: 15px;
}
.mar-b-20 {
  margin-bottom: 20px;
}
.mar-b-25 {
  margin-bottom: 25px;
}
.mar-b-30 {
  margin-bottom: 30px;
}
.mar-t-5 {
  margin-top: 5px;
}
.mar-t-10 {
  margin-top: 10px;
}
.mar-t-15 {
  margin-top: 15px;
}
.fs-0 {
  font-size: 0;
}
.fs-14 {
  font-size: 14px;
}
.fs-13 {
  font-size: 13px;
}
.fs-12 {
  font-size: 12px;
}
.bg-white {
  background: #fff;
}
.c-white {
  color: #fff;
}

.c-white-50 {
  color: rgb(255 255 255 / 50%);
}
.c-white-75 {
  color: rgb(255 255 255 / 75%);
}
.c-black {
  color: #000;
}
.c-black-50 {
  color: rgba(0, 0, 0, 0.5);
}
.c-black-40 {
  color: rgba(0, 0, 0, 0.4);
}
.c-black-30 {
  color: rgba(0, 0, 0, 0.3);
}
.c-black-25 {
  color: rgba(0, 0, 0, 0.25);
}
.c-black-20 {
  color: rgba(0, 0, 0, 0.2);
}
.bg-white2 {
  background: rgb(158, 132, 132);
}
.center-middle {
  justify-content: center;
  align-items: center;
}
img.img-res {
  max-width: 100%;
}
.cursor-p {
  cursor: pointer;
}
.w-40 {
  width: 40%;
}
.w-50 {
  width: 50%;
}
.w-60 {
  width: 60%;
}
.w-100 {
  width: 100%;
}

.text-none {
  text-decoration: none;
}

.mar-b-0 {
  margin: 0;
}
.cursor-not-allowed {
  cursor: not-allowed;
}
.bg-none {
  background: none;
}

.position-relative {
  position: relative;
}

.validation-text {
  color: red;
  font-size: 12px;
  padding-left: 5px;
}
.loader {
  left: 50%;
  margin-left: -20px;
  top: 50%;
  margin-top: -20px;
  position: absolute;
  z-index: 9999 !important;
/*   color: #ff828c; */
    color: #004c74;
}
input[type="checkbox"]:disabled {
  cursor: not-allowed;
}
.loader:before {
  content: "";
  background: rgb(0 0 0 / 10%);
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
}
.mar-r-10 {
  margin-right: 10px;
} 

.shadow {
    box-shadow: 5px 5px 10px 0px rgb(0 0 0 / 12%);
}

.flex-grow-0{
  flex-grow: 0;
}
.btn-none{
  border: none;
}
.nav-link{
	cursor: pointer;
}
.submit-btn {
    margin: auto;
    width: 150px;
}
.tab-sub-heading{
	cursor:pointer;
	margin-right: 10px;
    padding: 5px;
    border: 1px #ccc solid;
    border-radius: 5px;
}
.tab-sub-heading.active{
	 background: rgb(222 245 246);
}