
/* pre-loader */ 
.pre-loader:after {
  content: '';
  display: block;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 50%;
  height: 5px;
  background-color: #097eba;
  animation: cardLoader 1s ease-in-out alternate infinite;}
@keyframes cardLoader {
  0% {
    left: 0;
    width: 1%;
    background-color: #3db381;
  }
  50% {
    width: 30%;
  }
  100% {
    left: 100%;
    transform: translateX(-100%);
    width: 1%;
    background-color: #097eba;
  }
}	




/* selection */
::-moz-selection { 
   background-color: #00A89C; 
   color: #fff; }
::selection { 
   background-color: #00A89C; 
   color: #fff;}




/* loading */
.loading {
   position: fixed;
   z-index: 1000;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   text-align: center;
   white-space: nowrap;
   color: #101010;
   font-size: 20px;
   letter-spacing: 5px;
   background: #00000085;}
 .loading span {
   position: absolute;
   right: 50%;
   bottom: 50%;
   -webkit-transform: translate(50%,50%);
   -ms-transform: translate(50%,50%);
   transform: translate(50%,50%);}
 .loading span::before {
   content: '';
   border: 2px solid #dbf2ff; 
   width: 32px;
   height: 32px;
   position: absolute;
   left: 35px;
   bottom: 35px;
   border-radius: 50%;
   border-right: 2px solid #018df7;
   animation-name: spin;
   animation-duration: 900ms;
   animation-iteration-count: infinite;
   /*animation-timing-function: linear; /*linear spin */
   animation-timing-function: cubic-bezier(0.53, 0.21, 0.29, 0.67);}
 @-webkit-keyframes spin {
   0% { -webkit-transform: rotate(0deg); }
   /*50% {width:24px;height:24px} /*shrinking effect*/
   100% { -webkit-transform: rotate(360deg); }
 }
 @keyframes spin {
   0% { -webkit-transform: rotate(0deg);}
  /*50% {width:24px;height:24px} /*shrinking effect*/
   100% { -webkit-transform: rotate(360deg); }
 }



/* btn */
/* read-more */
.read-more {
  display: inline-block;
  white-space: nowrap;
  text-decoration: none;
  font-weight: bold;
  font-size: 11px;
  color: #505050;}
.read-more:hover {
  color: #000;}



  /* password */
 .password-filed{position: relative;}
 .password-filed .form-control{
padding-right: 35px !important;
}
 .password-filed .btn-toggle {
   position: absolute;
   right: 9px;
   bottom: 8px;
   padding: 3px 5px;
   border: none;
   background-color: transparent;
   color: #6a6a6a;}
 .field-col .btn-toggle:hover {
    color: #000000c9;}


/* radio, checkbox */
input[type="radio"],
input[type="checkbox"] {
    appearance: none;
    position: relative;
    height: 15px;
    width: 15px;
    transition: all 0.15s ease-out 0s;
    background: #cbd1d8;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    outline: none !important;}
input[type="radio"]:hover,
input[type="checkbox"]:hover {
    background: #9faab7;}
input[type="radio"]:checked,
input[type="checkbox"]:checked {
    background: #03a9a0;}
input[type="radio"]:checked::before,
input[type="checkbox"]:checked::before {
    height: 15px;
    width: 16px;
    line-height: 16px;
    position: absolute;
    font-family: FontAwesome;
    display: inline-block;
    font-size: 12px;
    text-align: center;    }  
input[type="radio"]:checked::after,
input[type="checkbox"]:checked::after {
    background: #03a9a0;
    content: '';
    display: block;
    position: relative;
    z-index: 100;}

/* radio */  
input[type="radio"]:checked::before {
    content: '\f192';}  
input[type="radio"] {
    border-radius: 50%;}
input[type="radio"]::after {
    border-radius: 50%;}

/* checkbox */
input[type="checkbox"]:checked::before {
    content: '\f00c';}



/* switch  */
.form-switch .form-check-input, .form-switch .form-check-input:hover, .form-check-input:checked[type=checkbox]{
   background-repeat: no-repeat;
}
input[type="checkbox"]:checked::after, input[type="checkbox"]:checked::before{
   display: none;
}
input[type="checkbox"]{
   box-shadow: none;
}
.form-switch .form-check-input, .form-switch .form-check-input[type="checkbox"]:not(:checked):hover{
   border: 0px;
   box-shadow: none;
   background-color: #cbd1d8;
}
.form-switch  input[type="checkbox"]:hover {
   background: #cbd1d8;}

/* offcanvas */
.offcanvas {
    width: 100%;
    max-width: 500px;}
.offcanvas-sm {
    max-width: 300px;}
.offcanvas-md {
    max-width: 600px;}
.offcanvas-lg {
    max-width: 800px;}
.offcanvas-xl {
    max-width: 1140px;}


/* offcanvas-title */
.offcanvas .offcanvas-title {
   font-size: 20px;
   color: #3D3D3D;}

/* btn-offcanvas-close */
.offcanvas .btn-offcanvas-close img {
   height: 18px;
   opacity: .7;}

/* offcanvas-header */
.offcanvas .offcanvas-header {
    padding: 30px;
    padding-bottom: 10px;}

/* offcanvas-inner-body */
.offcanvas .offcanvas-inner-body {
    padding: 15px;
    padding-top: 0;}

/* offcanvas-footer */
.offcanvas .offcanvas-footer {
    padding: 15px;}

/* form-default */
.offcanvas .form-default .form-body .form-label {
    font-size: 13px;}






/* modal */
.modal .modal-content {
    border-radius: 15px;
    border: none;}
/* modal-header */
.modal .modal-header {
    padding: 20px 30px 0;}
.modal .modal-header h5 {
    font-size: 20px;}

/* modal-body */
.modal .modal-body {
    padding: 15px 30px;}

/* modal-footer */
.modal .modal-footer {
    padding: 30px;}



/* confirm-modal */
.modal.confirm-modal .modal-dialog {
  max-width: 400px;}
.modal.confirm-modal .color-yellow {
  color: #fca83e;}
.modal.confirm-modal .color-green {
  color: #4bb40b;}
/* modal-body */
/* icon */
.modal.confirm-modal .modal-body .icon {
  font-size: 55px;
  border: 7px solid;
  display: inline-block;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  line-height: 100px;
  margin-top: 20px;
  margin-bottom: 30px;}
/* h1 */
.modal.confirm-modal .modal-body h1 {
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 15px;}
/* h6 */
.modal.confirm-modal .modal-body h5 {
  font-size: 13px;
  margin-top: 25px;
  color: #8291a0;}
/* modal-footer */
.modal.confirm-modal .modal-footer {
  padding-bottom: 40px;
  border-top: none;}
.modal.confirm-modal .modal-footer .btn {
  font-size: 11px;}





/* modal-show-file */
.modal-show-file .modal-body {
  padding: 0;}
.modal-show-file .btn-close {
  background-color: #fff;
  padding: 7px;
  position: absolute;
  top: -20px;
  right: -20px;}
.modal .modal-body-show-file embed {
  display: block;}
@media (max-width: 991px) {
.modal-show-file embed {
  height: 60vh !important;}
.modal-show-file .btn-close {
  top: 0;
  right: 0;}
}





/* form-default */
/* form-body */
.form-default .form-body [class^="col-"] {
   margin-bottom: 20px;}
.form-default .form-body .form-label {
   color: #3D3D3D;
   font-size: 12px;
   font-family: poppinsmedium;}
.form-default .form-body .form-control,
.form-default .form-body .form-select {
   background-color: #f2f2f2;
   font-size: 12px;
   padding: 9px 28px 13px 15px;
   border-color: transparent;
   border-radius: 10px;}
.form-default .form-body .form-control:focus,
.form-default .form-body .form-select:focus {
   box-shadow: none;}
/* .form-default .form-body .form-control:invalid,
.form-default .form-body .form-select:invalid {
   background-color: #ffe9e9;} */
.form-default .form-body .form-select:invalid {
   color: #999;}
/* chosen */
.form-default .form-body .chosen-container-single .chosen-single {
   text-align: left;
   box-shadow: none;
   border-radius:10px;
   background-color: #f2f2f2;
   height: 43px;
   margin-top: 1px;
   line-height: 34px;
   padding-left:15px;
   padding-right:15px;}
.form-default .form-body .chosen-container-single .chosen-single span{
   font-size: 12px;}
.form-default .form-body .chosen-container-single .chosen-single div b:before {
   /* background-color: #ccc; */
   color: #8C8C8C;
   padding: 2px 5px;
   border-radius: 50%;
   position: relative;
   bottom: 2px;
   right: 8px;
   font-size: 16px;}

.form-default .form-body .chosen-container-multi .chosen-choices{
   color: #8C8C8C;
   padding:6px 15px;
   border-color: transparent;
   border-radius: 10px;
}



/* field-view */
.form-default .form-body .field-view {
   background-color: #f2f2f2;
   margin-top: 5px;
   border-radius: 0.25rem;
   font-size: 12px;
   padding: 8px 15px;}


/* file-name */
.form-default .form-body .file-name {
   font-size: 11px;
   word-break: break-all;}



/* attach-label-btn */
.form-default .form-body .attach-label-btn {
   display: block;
   position: relative;
   background-color: #f2f2f2;
   height: 35px;
   border-radius: .25rem;
   font-size: 16px;
   padding: 10px;}
.form-default .form-body .attach-label-btn .attach-label {
   position: absolute;
   top: 3px;
   z-index: 5;
   background-color: #03a9a0;
   color: #fff;
   text-align: center;
   width: 120px;
   height: 28px;
   line-height: 25px;
   font-size: 12px;
   border-radius: 5px;}
.form-default .form-body .attach-label-btn input[type="file"] {
   font-size: 11px;
   position: relative;
   bottom: 7px;
   z-index: 0;
   margin-left: 41px;}
.form-default .form-body .attach-label-btn img {
   height: 20px;
   position: absolute;
   right: 10px;
   top: 8px;}



/* img-show */
.form-default .form-body .img-show {
   position: relative;
   border: 1px solid #e0e1e3;
   padding: 10px;
   border-radius: 5px;}
.form-default .form-body .img-show .primary-btn {
   position: absolute;
   right: 0;
   bottom: 0;
   background-color: #fff;
   border-radius: 50%;
   padding: 3px 8px;}







/* custom */
/* margin */
/**/
.mt--2 {
   margin-top: -2px !important;}
/**/
/* .m-5 {
   margin: 5px !important;} */
.m-10 {
   margin: 10px !important;}
.m-15 {
   margin: 15px !important;}
.m-20 {
   margin: 20px !important;}
.m-25 {
   margin: 25px !important;}
.m-30 {
   margin: 30px !important;}
.m-35 {
   margin: 35px !important;}
.m-40 {
   margin: 40px !important;}
.m-45 {
   margin: 45px !important;}
.m-50 {
   margin: 50px !important;}

/**/
.mt-3-px {
   margin-top: 3px !important;}
.mt-5-px {
   margin-top: 5px !important;}
.mt-10 {
   margin-top: 10px !important;}
.mt-15 {
   margin-top: 15px !important;}
.mt-20 {
   margin-top: 20px !important;}
.mt-25 {
   margin-top: 25px !important;}
.mt-30 {
   margin-top: 30px !important;}
.mt-35 {
   margin-top: 35px !important;}
.mt-40 {
   margin-top: 40px !important;}
.mt-45 {
   margin-top: 45px !important;}
.mt-50 {
   margin-top: 50px !important;}
.mt-55 {
   margin-top: 55px !important;}
.mt-60 {
   margin-top: 60px !important;}
.mt-65 {
   margin-top: 65px !important;}
.mt-70 {
   margin-top: 70px !important;}
.mt-75 {
   margin-top: 75px !important;}
.mt-80 {
   margin-top: 80px !important;}
.mt-85 {
   margin-top: 85px !important;}
.mt-90 {
   margin-top: 90px !important;}
.mt-95 {
   margin-top: 95px !important;}
.mt-100 {
   margin-top: 100px !important;}
.mt-120 {
   margin-top: 120px !important;}
.mt-130 {
   margin-top: 130px !important;}

/**/
/* .me-5 {
   margin-right: 5px !important;} */
.me-10 {
   margin-right: 10px !important;}
.me-15 {
   margin-right: 15px !important;}
.me-20 {
   margin-right: 20px !important;}
.me-25 {
   margin-right: 25px !important;}
.me-30 {
   margin-right: 30px !important;}
.me-35 {
   margin-right: 35px !important;}
.me-40 {
   margin-right: 40px !important;}
.me-45 {
   margin-right: 45px !important;}
.me-50 {
   margin-right: 50px !important;}
.me-55 {
   margin-right: 55px !important;}
.me-60 {
   margin-right: 60px !important;}
.me-65 {
   margin-right: 65px !important;}
.me-70 {
   margin-right: 70px !important;}
.me-75 {
   margin-right: 75px !important;}
.me-80 {
   margin-right: 80px !important;}
.me-85 {
   margin-right: 85px !important;}
.me-90 {
   margin-right: 90px !important;}
.me-95 {
   margin-right: 95px !important;}
.me-100 {
   margin-right: 100px !important;}
/**/
.mb-5-px {
   margin-bottom: 5px !important;}
.mb-10 {
   margin-bottom: 10px !important;}
.mb-15 {
   margin-bottom: 15px !important;}
.mb-12 {
   margin-bottom: 12px !important;}
.mb-20 {
   margin-bottom: 20px !important;}
.mb-25 {
   margin-bottom: 25px !important;}
.mb-30 {
   margin-bottom: 30px !important;}
.mb-35 {
   margin-bottom: 35px !important;}
.mb-40 {
   margin-bottom: 40px !important;}
.mb-45 {
   margin-bottom: 45px !important;}
.mb-50 {
   margin-bottom: 50px !important;}
.mb-55 {
   margin-bottom: 55px !important;}
.mb-60 {
   margin-bottom: 60px !important;}
.mb-65 {
   margin-bottom: 65px !important;}
.mb-70 {
   margin-bottom: 70px !important;}
.mb-75 {
   margin-bottom: 75px !important;}
.mb-80 {
   margin-bottom: 80px !important;}
.mb-85 {
   margin-bottom: 85px !important;}
.mb-90 {
   margin-bottom: 90px !important;}
.mb-95 {
   margin-bottom: 95px !important;}
.mb-100 {
   margin-bottom: 100px !important;}
/**/
/* .ms-5 {
   margin-left: 5px !important;} */
.ms-10 {
   margin-left: 10px !important;}
.ms-15 {
   margin-left: 15px !important;}
.ms-20 {
   margin-left: 20px !important;}
.ms-25 {
   margin-left: 25px !important;}
.ms-30 {
   margin-left: 30px !important;}
.ms-35 {
   margin-left: 35px !important;}
.ms-40 {
   margin-left: 40px !important;}
.ms-45 {
   margin-left: 45px !important;}
.ms-50 {
   margin-left: 50px !important;}
.ms-55 {
   margin-left: 55px !important;}
.ms-60 {
   margin-left: 60px !important;}
.ms-65 {
   margin-left: 65px !important;}
.ms-70 {
   margin-left: 70px !important;}
.ms-75 {
   margin-left: 75px !important;}
.ms-80 {
   margin-left: 80px !important;}
.ms-85 {
   margin-left: 85px !important;}
.ms-90 {
   margin-left: 90px !important;}
.ms-95 {
   margin-left: 95px !important;}
.ms-100 {
   margin-left: 100px !important;}




/* padding */
/**/
/* .p-5 {
   padding: 5px !important;} */
.p-10 {
   padding: 10px !important;}
.p-15 {
   padding: 15px !important;}
.p-20 {
   padding: 20px !important;}
.p-25 {
   padding: 25px !important;}
.p-30 {
   padding: 30px !important;}
.p-35 {
   padding: 35px !important;}
.p-40 {
   padding: 40px !important;}
.p-45 {
   padding: 45px !important;}
.p-50 {
   padding: 50px !important;}

/**/
/* .pt-5 {
   padding-top: 5px !important;} */
.pt-10 {
   padding-top: 10px !important;}
.pt-15 {
   padding-top: 15px !important;}
.pt-20 {
   padding-top: 20px !important;}
.pt-25 {
   padding-top: 25px !important;}
.pt-30 {
   padding-top: 30px !important;}
.pt-35 {
   padding-top: 35px !important;}
.pt-40 {
   padding-top: 40px !important;}
.pt-45 {
   padding-top: 45px !important;}
.pt-50 {
   padding-top: 50px !important;}
.pt-55 {
   padding-top: 55px !important;}
.pt-60 {
   padding-top: 60px !important;}
.pt-65 {
   padding-top: 65px !important;}
.pt-70 {
   padding-top: 70px !important;}
.pt-75 {
   padding-top: 75px !important;}
.pt-80 {
   padding-top: 80px !important;}
.pt-85 {
   padding-top: 85px !important;}
.pt-90 {
   padding-top: 90px !important;}
.pt-95 {
   padding-top: 95px !important;}
.pt-100 {
   padding-top: 100px !important;}

/**/
/* .pe-5 {
   padding-right: 5px !important;} */
.pe-10 {
   padding-right: 10px !important;}
.pe-15 {
   padding-right: 15px !important;}
.pe-20 {
   padding-right: 20px !important;}
.pe-25 {
   padding-right: 25px !important;}
.pe-30 {
   padding-right: 30px !important;}
.pe-34 {
   padding-right: 34px !important;}
.pe-35 {
   padding-right: 35px !important;}
.pe-40 {
   padding-right: 40px !important;}
.pe-45 {
   padding-right: 45px !important;}
.pe-50 {
   padding-right: 50px !important;}
.pe-55 {
   padding-right: 55px !important;}
.pe-60 {
   padding-right: 60px !important;}
.pe-65 {
   padding-right: 65px !important;}
.pe-68 {
   padding-right: 68px !important;}
.pe-70 {
   padding-right: 70px !important;}
.pe-75 {
   padding-right: 75px !important;}
.pe-80 {
   padding-right: 80px !important;}
.pe-85 {
   padding-right: 85px !important;}
.pe-90 {
   padding-right: 90px !important;}
.pe-95 {
   padding-right: 95px !important;}
.pe-100 {
   padding-right: 100px !important;}

/**/
/* .pb-5 {
   padding-bottom: 5px !important;} */
.pb-10 {
   padding-bottom: 10px !important;}
.pb-15 {
   padding-bottom: 15px !important;}
.pb-20 {
   padding-bottom: 20px !important;}
.pb-25 {
   padding-bottom: 25px !important;}
.pb-30 {
   padding-bottom: 30px !important;}
.pb-35 {
   padding-bottom: 35px !important;}
.pb-40 {
   padding-bottom: 40px !important;}
.pb-45 {
   padding-bottom: 45px !important;}
.pb-50 {
   padding-bottom: 50px !important;}
.pb-55 {
   padding-bottom: 55px !important;}
.pb-60 {
   padding-bottom: 60px !important;}
.pb-65 {
   padding-bottom: 65px !important;}
.pb-70 {
   padding-bottom: 70px !important;}
.pb-75 {
   padding-bottom: 75px !important;}
.pb-80 {
   padding-bottom: 80px !important;}
.pb-85 {
   padding-bottom: 85px !important;}
.pb-90 {
   padding-bottom: 90px !important;}
.pb-95 {
   padding-bottom: 95px !important;}
.pb-100 {
   padding-bottom: 100px !important;}

/**/
.ps-10 {
   padding-left: 10px !important;}
.ps-15 {
   padding-left: 15px !important;}
.ps-20 {
   padding-left: 20px !important;}
.ps-25 {
   padding-left: 25px !important;}
.ps-30 {
   padding-left: 30px !important;}
.ps-34 {
   padding-left: 34px !important;}
.ps-35 {
   padding-left: 35px !important;}
.ps-40 {
   padding-left: 40px !important;}
.ps-45 {
   padding-left: 45px !important;}
.ps-50 {
   padding-left: 50px !important;}
.ps-55 {
   padding-left: 55px !important;}
.ps-60 {
   padding-left: 60px !important;}
.ps-65 {
   padding-left: 65px !important;}
.ps-70 {
   padding-left: 70px !important;}
.ps-75 {
   padding-left: 75px !important;}
.ps-80 {
   padding-left: 80px !important;}
.ps-85 {
   padding-left: 85px !important;}
.ps-90 {
   padding-left: 90px !important;}
.ps-95 {
   padding-left: 95px !important;}
.ps-100 {
   padding-left: 100px !important;}







/* height */
/* px */
.h-3-px {
   height: 3px !important;}
.h-5-px {
   height: 5px !important;}
.h-6-px {
   height: 6px !important;}
.h-7-px {
   height: 7px !important;}
.h-9-px {
   height: 9px !important;}
.h-10-px {
   height: 10px !important;}
.h-12-px {
   height: 12px !important;}
.h-14-px {
   height: 14px !important;}
.h-15-px {
   height: 15px !important;}
.h-16-px {
   height: 16px !important;}
.h-17-px {
   height: 17px !important;}
.h-19-px {
   height: 19px !important;}
.h-20-px {
   height: 20px !important;}
.h-25-px {
   height: 25px !important;}
.h-30-px {
   height: 30px !important;}
.h-33-px {
   height: 33px !important;}
.h-35-px {
   height: 35px !important;}
.h-36-px {
   height: 36px !important;}
.h-40-px {
   height: 40px !important;}
.h-42-px {
   height: 42px !important;}
.h-44-px {
   height: 44px !important;}
.h-45-px {
   height: 45px !important;}
.h-47-px {
   height: 47px !important;}
.h-48-px {
   height: 48px !important;}
.h-49-px {
   height: 49px !important;}
.h-50-px {
   height: 50px !important;}
.h-55-px {
   height: 55px !important;}
.h-60-px {
   height: 60px !important;}
.h-65-px {
   height: 65px !important;}
.h-70-px {
   height: 70px !important;}
.h-75-px {
   height: 75px !important;}
.h-87-px {
   height: 87px !important;}
.h-100-px {
   height: 100px !important;}
.h-110-px {
   height: 110px !important;}
.h-114-px {
   height: 114px !important;}
.h-120-px {
   height: 120px !important;}
.h-150-px {
   height: 150px !important;}
.h-200-px {
   height: 200px !important;}
.h-207-px {
   height: 207px !important;}
.h-250-px {
    height: 250px !important;}
.h-275-px {
   height: 275px !important;}
.h-325-px {
   height: 325px !important;}
.h-330-px {
   height: 330px !important;}
.h-350-px {
    height: 350px !important;}
.h-368-px {
   height: 368px !important;}
.h-460-px {
   height: 460px !important;}
.h-510-px {
   height: 510px !important;}
/* vh */
.h-10-vh {
   height: 10vh !important;}
.h-50-vh {
   height: 80vh !important;}
.h-70-vh {
   height: 70vh !important;}
.h-75-vh {
   height: 75vh !important;}
.h-80-vh {
   height: 80vh !important;}
.h-90-vh {
   height: 90vh !important;}
.h-45-vh {
   height: 45vh !important;}
.h-100-vh {
   height: 100vh !important;}
/* min */
.min-h-0 {
   min-height: 0 !important;}
.min-h-48-px {
   min-height: 48px !important;}
.min-h-55-px {
   min-height: 55px !important;}
.min-h-110-px {
   min-height: 110px !important;}
.min-h-130-px {
   min-height: 130px !important;}
.min-h-375-px {
   min-height: 375px !important;}
/* illustrator */
.illustrator{
min-height: calc(100vh - 100px);}
.illustrators{
min-height: calc(100vh - 0px);
}

/* width */
/* px */
.w-5-px {
   width: 5px !important;}
.w-10-px {
   width: 10px !important;}
.w-15-px {
   width: 15px !important;}
.w-16-px {
   width: 16px !important;}
.w-19-px {
   width: 19px !important;}
.w-20-px {
   width: 20px !important;}
.w-25-px {
   width: 25px !important;}
.w-30-px {
   width: 30px !important;}
.w-35-px {
   width: 35px !important;}
.w-40-px {
   width: 40px !important;}
.w-42-px {
   width: 42px !important;}
.w-45-px {
   width: 45px !important;}
.w-48-px {
   width: 48px !important;}
.w-50-px {
   width: 50px !important;}
.w-55-px {
   width: 55px !important;}
.w-60-px {
   width: 60px !important;}
.w-65-px {
   width: 65px !important;}
.w-70-px {
   width: 70px !important;}
.w-75-px {
   width: 75px !important;}
.w-80-px {
   width: 80px !important;}
.w-100-px {
   width: 100px !important;}
.w-114-px {
   width: 114px !important;}
.w-120-px {
   width: 120px !important;}
.w-126-px {
   width: 126px !important;}
.w-150-px {
   width: 150px !important;}
.w-154-px {
   width: 154px !important;}
.w-195-px {
   width: 195px !important;}
.w-230-px {
   width: 230px !important;}
.w-250-px {
   width: 250px !important;}
.w-275-px {
   width: 275px !important;}
.w-289-px {
   width: 289px !important;}
.w-317-px {
   width: 317px !important;}
.w-425-px {
   width: 425px !important;}



.w-90{
   width: 90%;
}

/* min */
.min-w-40-px {
   min-width: 40px !important;}
.min-w-60-px {
   min-width: 60px !important;}
.min-w-100-px {
  min-width: 100px !important;}
.min-w-125-px {
   min-width: 125px !important;}
.min-w-133-px {
   min-width: 133px !important;}
.min-w-135-px {
   min-width: 135px !important;}
.min-w-140-px {
  min-width: 140px !important;}
 

/* max */
.max-w-40-px {
   max-width: 40px !important;}
.max-w-100-px {
  max-width: 100px !important;}
.max-w-150-px {
 max-width: 150px !important;}
.max-w-331px{
   max-width: 331px !important;
}
/* overflow */
.overflow-y-auto {
   overflow-y: auto;}
.overflow-x-hidden {
   overflow-x: hidden;}


/* gutter-x */
.gutter-1-x {
   --bs-gutter-x: 1rem;}
.gutter-2-x {
   --bs-gutter-x: 2rem;}
.gutter-3-x {
   --bs-gutter-x: 3rem;}
.gutter-4-x {
   --bs-gutter-x: 4rem;}




/* rounded */
.rounded-4 {
   border-radius: 4px !important;}
.rounded-5 {
   border-radius: 5px !important;}
.rounded-6 {
   border-radius: 6px !important;}
.rounded-8 {
   border-radius: 8px !important;}
.rounded-9 {
   border-radius: 9px !important;}
.rounded-10 {
   border-radius: 10px !important;}
.rounded-12 {
   border-radius: 12px !important;}
.rounded-13 {
   border-radius: 13px !important;}
.rounded-15 {
    border-radius: 15px !important;}
.rounded-16 {
  border-radius: 16px !important;}
.rounded-20 {
      border-radius: 20px !important;}
.rounded-24 {
   border-radius: 24px !important;}
.rounded-25 {
   border-radius: 25px !important;}
.rounded-28 {
   border-radius: 28px !important;}
.rounded-30 {
   border-radius: 30px !important;}
.rounded-33 {
   border-radius: 33px !important;}
.rounded-40 {
   border-radius: 40px !important;}
.rounded-1000{
   border-radius: 1000px !important;}
.rounded-136 {
   border-radius: 136px !important;}
.rounded-1000{
   border-radius: 1000px !important;}
.rounded-t-s-0 {
   border-top-left-radius: 0 !important;}
.rounded-t-s-12 {
   border-top-left-radius: 12px !important;}
.rounded-b-s-12 {
   border-bottom-left-radius: 12px !important;}  
.rounded-t-e-12 {
   border-top-right-radius: 12px !important;}
.rounded-b-e-12 {
   border-bottom-right-radius: 12px !important;}  
.rounded-50{
   border-radius: 50% !important;
}

/* opacity */
.opacity-1 {
   opacity: .1;}

/* font-size */
.fs-9 {
   font-size: 9px !important;}
.fs-10 {
   font-size: 10px !important;}
.fs-11 {
   font-size: 11px !important;}
.fs-12 {
   font-size: 12px !important;}
.fs-13 {
   font-size: 13px !important;}
.fs-14 {
   font-size: 14px !important;}
.fs-15 {
   font-size: 15px !important;}
.fs-16 {
   font-size: 16px !important;}
.fs-17 {
   font-size: 17px !important;}
.fs-18 {
   font-size: 18px !important;}
.fs-19 {
   font-size: 19px !important;}
.fs-20 {
   font-size: 20px !important;}
.fs-21 {
   font-size: 21px !important;}
.fs-22 {
   font-size: 22px !important;}
.fs-23 {
   font-size: 23px !important;}
.fs-25 {
   font-size: 25px !important;}
.fs-26 {
   font-size: 26px !important;}
.fs-32 {
   font-size: 32px !important;}
.fs-27 {
   font-size: 27px !important;}
.fs-28 {
   font-size: 28px !important;}
.fs-32 {
   font-size: 30px !important;}
.fs-30 {
   font-size: 32px !important;}
.fs-34 {
   font-size: 34px !important;}
.fs-35 {
   font-size: 35px !important;}
.fs-45 {
   font-size: 45px !important;}
.fs-54 {
   font-size: 54px !important;}

/* font-weight */
.fw-500 {
   font-weight: 500 !important;}
.fw-600 {
   font-weight: 600 !important;}

/* position */
.position-top-2 {
   top: 2px !important;}

/* text color */
.text-hone-violet {
    color: #4F1DBF !important;}
/* modal_backround_color  */
.modal_backround_color {
   background-color: #ECE3FF;
}
.plane_details .button {
background:#4F1DBF; color:#fff; border:none; border-radius:8px;
}
.plane_details .vector_imag_position {
  position: absolute;
  top: 23px;
  left: 90px;
}

.plane_details .vector_img {
    width: 440px !important;
    height: 230px !important;
}
/* contractor Update Profile  */
.contractbutt {
    background: #fff;
    color: #30154E;
    padding: 10px 30px;
    margin: 0;
    font-family: 'poppinssemibold';
    border: 1.25px solid #30154E;
    border-radius: 9px !important;}
.contractbutton {
  background: #30154E;
  color: #FDBC5A !important;
  padding: 10px 8px;
  margin: 0;
  font-family: 'poppinssemibold';
  border: 1px solid #30154E;
  border-radius: 9px !important;
}
/* cursor */
.cursor-pointer {
   cursor: pointer !important;}

/* shadow-none */
.shadow-none {
   box-shadow: none !important;}

/* pointer-none */
.pointer-none {
   pointer-events: none !important;}

/* resize-none */
.resize-none {
   resize: none !important;}


/* text */
/* text-pre-line */
.text-pre-line {
   white-space: pre-line !important;}

/* text-justify */
.text-justify {
   text-align: justify !important;}

/* text-inherit */
.text-inherit {
   color: inherit !important;}
   
/* justify-content-right */
.justify-content-right {
   justify-content: right!important;}

/* display */
.d-initial {
   display: initial !important;}

/* object-contain */
.object-contain {
   object-fit: contain !important;}
.object-cover{
   object-fit: cover !important;}
/* screen */
@media screen {
.d-screen-none {
   display: none !important;}
}

/* position-content-center */
.position-content-center {
   position: absolute;
   right: 50%;
   bottom: 50%;
   -webkit-transform: translate(50%,50%);
   -ms-transform: translate(50%,50%);
   transform: translate(50%,50%);}



/* scrollbar-y */
.scrollbar-y {
   overflow-y: auto;}
.scrollbar-y::-webkit-scrollbar {
   background-color: transparent;
   width: 5px;}
.scrollbar-y:hover::-webkit-scrollbar-thumb {
   background-color: rgba(0, 0, 0, 0.2);}
@media (hover: none) {
.scrollbar-y::-webkit-scrollbar {
   width: 5px;}
.scrollbar-y::-webkit-scrollbar-thumb {
   background-color: rgba(0, 0, 0, 0.2);}
} 


/* scrollbar-x */
.scrollbar-x {
   overflow-x: auto;}
.scrollbar-x::-webkit-scrollbar {
   background-color: transparent;
   height: 7px;}
.scrollbar-x:hover::-webkit-scrollbar-thumb {
   background-color: rgba(0, 0, 0, 0.2);}
@media (hover: none) {
.scrollbar-x::-webkit-scrollbar {
   height: 7px;}
.scrollbar-x::-webkit-scrollbar-thumb {
   background-color: rgba(0, 0, 0, 0.2);}
} 


/* mobile_device */
body:not(.mobile_device) .show-mobile {
  display: none;}
.mobile_device .hide-mobile {
  display: none;}





/* xs <575 */
@media (max-width: 575px) {
}
/* sm 576 to 767 */
@media (min-width: 576px) and (max-width: 767px) {

}
/* md 768 to 991 */
@media (min-width: 768px) and (max-width: 991px) {

}
/* lg 992 to 1199 */
@media (min-width: 992px) and (max-width: 1199px) {
}
/* xl 1200 to 1399 */
@media (min-width: 1200px) and (max-width: 1399px) {
}
/* xxl >1400 */
@media (min-width: 1400px) {

}

@media (min-width:992px){
.mt-lg-130{
   margin-top: 130px;}
}

/* ----- */
/* all-lg */
@media (min-width: 1200px) {
.me-15-all-lg {
   margin-right: 15px !important;}
}


/* md-all */
@media (min-width: 768px) {
.me-15-md-all {
   margin-right: 15px !important;}
.mb-0-md-all {
   margin-bottom: 0 !important;}
.ps-0-md-all {
   padding-left: 0 !important;}
.pe-0-md-all {
   padding-right: 0 !important;}
}


/* lg-all */
@media (min-width: 992px) {
.pt-90-lg-all {
   padding-top: 90px !important;}
.ps-40-lg-all {
   padding-left: 40px !important;}
/* height */
.h-815-px-lg-all {
   height: 815px !important;}
/* overflow */
.overflow-y-auto-lg-all {
   overflow-y: auto;}
.overflow-x-hidden-lg-all {
   overflow-x: hidden;}
/*  */
 .mt-lg-130{
      margin-top: 130px;
   }
}


/* zero-lg */
@media (max-width: 1199px) {
.me-15-zero-lg {
   margin-right: 15px !important;}
}


/* zero-md */
@media (max-width: 991px) {
.me-15-zero-md {
   margin-right: 15px !important;}
.pt-30-zero-md {
   padding-top: 30px !important;}
}


.m-w-100{
   max-width: 100% !important;
}
/* zero-sm */
@media (max-width: 767px) {
.ps-0-zero-sm {
   padding-left: 0 !important;}
.pe-0-zero-sm {
   padding-right: 0 !important;}
.pb-30-zero-sm {
   padding-bottom: 30px !important;}
.pt-50-zero-sm {
   padding-top: 50px !important;}
.mt-10-zero-sm {
   margin-top: 10px !important;}
.mt-15-zero-sm {
   margin-top: 15px !important;}
.mt-25-zero-sm {
   margin-top: 25px !important;}
.order-1-zero-sm {
   order: 1 !important;}
.order-2-zero-sm {
   order: 2 !important;}
.order-3-zero-sm {
   order: 3 !important;}
.border-0-zero-sm {
   border: none !important;}
}


/* xs <575 */
@media (max-width: 575px) {
.mt-10-zero-xs {
   margin-top: 10px !important;}
}

/* line-height */
.l-h-19{line-height: 19px;}
.l-h-23{line-height: 23px;}
.l-h-24{line-height: 24px;}
.l-h-26{line-height: 26px;}
.l-h-27{line-height: 27px;}
.l-h-30{line-height: 30px;}
.l-h-34{line-height: 34px;}
/* text-decoration */
.text-d-none{
   text-decoration: none;
}
/*  */
.cursor-pointer{
   cursor: pointer;
}
.txt_color {
   color: #4F1DBF;
}
/* for default readmore if line > 4 line */
.clampable {
   position: relative;
   overflow: hidden;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 4;
   text-overflow: ellipsis;
   transition: all 0.3s ease;}
.clampable.read-expanded {
   -webkit-line-clamp: unset !important;
   overflow: visible !important;}
.read_more_btn {
   display: block;
   width: auto;
   position: relative;
   z-index: 3;
   margin-top: 5px;
   color: #323232;
   background: none;
   margin-bottom: 10px;
   font-size: 12px;
   border: none;
   cursor: pointer;
   font-weight: bold;}

   /* post a job save and draft button in company */
   .btn-save-draft, .btn-save-draft:hover {
    background-color: #fff;
    color: #0E61FC;
    border: 1px solid #0E61FC;}

    /* job card modal style */
    .job_card_website{
      z-index: 2; 
      position: relative;
    }
   /* contactor admin  view profile */
  .admin-contractor-profile-info .certificate-img {
    width: 112px; 
    aspect-ratio: 112 / 119;
}
.admin-contractor-profile-info .certificate-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.admin-contractor-profile-info h6 {
    font-size: 14px;
    font-weight: 600;
    font-style: semiblod;}
.admin-contractor-profile-info .profile_img {
  width: 100%;           
  max-width: 124px;         
  aspect-ratio: 124 / 127;   
  flex-shrink: 0;      
}
.admin-contractor-profile-info .profile_img .profile {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}
.status-green{
    background-color: #17C73E;
    border: 1px solid #17C73E;}
.status-red{
    background-color: #E10B0B;
    border: 1px solid #E10B0B;}

.fancybox__container {
    z-index: 1060 !important; 
}
 input[type=number]::-webkit-inner-spin-button,
 input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  margin: 0;
}

 input[type=number] {
  -moz-appearance: textfield !important;
}  
/* contactor admin  view profile */

/* password bar color line css */
.meter { 
  height: 6px; 
  background: #eee; 
  border-radius: 4px; 
}
.meter-fill { 
  height: 100%; 
  width: 0%; 
  transition: width 150ms; 
  border-radius: 4px; 
}
.score-0 { background: #e74c3c; }   
.score-1 { background: #e67e22; }   
.score-2 { background: #f1c40f; }   
.score-3 { background: #2ecc71; }  
.score-4 { background: #27ae60; } 

