
/* 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;}





/* 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';} */






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


/* offcanvas-title */
.offcanvas.offcanvas-default .offcanvas-title {
    font-size: 20px;}

/* btn-offcanvas-close */
.offcanvas.offcanvas-default .btn-offcanvas-close{background-color: transparent;}
.offcanvas.offcanvas-default .btn-offcanvas-close img {
   height: 17px;
   opacity: .7;}

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

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

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

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






/* modal-default */
.modal.modal-default .modal-content {
    border-radius: 15px;
    border: none;}
/* modal-header */
.modal.modal-default .modal-header {
    padding: 20px 30px 0;}
.modal.modal-default .modal-header h5 {
    font-size: 20px;}
.modal.modal-default .modal-header .btn-modal-close {
    background-color: transparent;}
.modal.modal-default .modal-header .btn-modal-close {
    height:18px;}

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

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



/* confirm-modal */
.modal.modal-default.confirm-modal .modal-dialog {
  max-width: 400px;}
.modal.modal-default.confirm-modal .color-yellow {
  color: #fca83e;}
.modal.modal-default.confirm-modal .color-green {
  color: #4bb40b;}
/* modal-body */
/* icon */
.modal.modal-default.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.modal-default.confirm-modal .modal-body h1 {
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 15px;}
/* h6 */
.modal.modal-default.confirm-modal .modal-body h5 {
  font-size: 13px;
  margin-top: 25px;
  color: #8291a0;}
/* modal-footer */
.modal.modal-default.confirm-modal .modal-footer {
  padding-bottom: 40px;
  border-top: none;}
.modal.modal-default.confirm-modal .modal-footer .btn {
  font-size: 11px;}





/* modal-show-file */
.modal.modal-default.modal-show-file .modal-body {
  padding: 0;}
.modal.modal-default.modal-show-file .btn-close {
  background-color: #fff;
  padding: 7px;
  position: absolute;
  top: -20px;
  right: -20px;}
.modal.modal-default.modal-show-file embed {
  display: block;}
@media (max-width: 991px) {
.modal.modal-default.modal-show-file embed {
  height: 60vh !important;}
.modal.modal-default.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: #565659;
   font-size: 12px;}
.form-default .form-body .form-control,
.form-default .form-body .form-select {
   background-color: #f2f2f2;
   font-size: 12px;
   padding: 11px 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: #f5f5f5;
   height: auto;
   margin-top: 1px;
   padding: 6px 15px;
   line-height: 27px;}
.form-default .form-body .chosen-container-single .chosen-single div b:before {
   color: #8C8C8C;
   padding: 2px 5px;
   border-radius: 50%;
   position: relative;
   bottom: 2px;
   right: 3px;}




/* 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;}


/* url-primary */
.url-primary {
   position: absolute;
   cursor: pointer;
   z-index: 1;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;}




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

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

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



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




/* padding */

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

/**/
.p-gap-2-5 {
   padding: 2px 5px !important;
}
.p-gap-5-10 {
   padding: 5px 10px !important;
}
.p-gap-10-20 {
   padding: 10px 20px !important;
}


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

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

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

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







/* height */
/* px */
.h-5-px {
   height: 5px !important;}
.h-10-px {
   height: 10px !important;}
.h-15-px {
   height: 15px !important;}
.h-16-px {
   height: 16px !important;}
.h-18-px {
   height: 18px !important;}
.h-19-px {
   height: 19px !important;}
.h-20-px {
   height: 20px !important;}
.h-23-px {
   height: 23px !important;}
.h-25-px {
   height: 25px !important;}
.h-30-px {
   height: 30px !important;}
.h-35-px {
   height: 35px !important;}
.h-40-px {
   height: 40px !important;}
.h-45-px {
   height: 45px !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-100-px {
   height: 100px !important;}
.h-120-px {
    height: 120px !important;}
.h-250-px {
    height: 250px !important;}
.h-275-px {
   height: 275px !important;}
.h-300-px {
   height: 300px !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;}
/* vh */
.h-100-vh {
   height: 100vh !important;}
/* min */
.min-h-0 {
   min-height: 0 !important;}
.min-h-auto{
   min-height: auto !important;}

/* width */
/* px */
.w-2-px {
   width: 5px !important;}
.w-5-px {
   width: 5px !important;}
.w-10-px {
   width: 10px !important;}
.w-15-px {
   width: 15px !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-45-px {
   width: 45px !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-80-px{
   width: 80px !important;}
.w-100-px {
   width: 100px !important;}
.w-120-px {
   width: 120px !important;}
.w-127-px {
   width: 127px !important;}
.w-150-px {
   width: 150px !important;}
.w-250-px {
   width: 250px !important;}
.w-275-px {
   width: 275px !important;}

/* min */
.min-w-40-px {
   min-width: 40px !important;}
.min-w-100-px {
  min-width: 100px !important;}
.min-w-105-px {
  min-width: 105px !important;}
.min-w-108-px {
  min-width: 108px !important;}
.min-w-111-px {
  min-width: 111px !important;}
.min-w-120-px {
  min-width: 120px !important;}
.min-w-125-px {
   min-width: 125px !important;}
.min-w-140-px {
  min-width: 140px !important;}
.min-w-159-px {
   min-width: 159px !important;}
.min-w-165-px {
  min-width: 165px !important;}
.min-w-800-px {
  min-width: 800px !important;}

/* max */
.max-w-40-px {
   max-width: 40px !important;}
.max-w-100-px {
  max-width: 100px !important;}


/* overflow */
.overflow-y-auto {
   overflow-y: auto;}
.overflow-y-hidden {
   overflow-y: hidden;}
.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-5-px {
   border-radius: 5px !important;}
.rounded-6-px {
   border-radius: 6px !important;}
.rounded-8-px {
   border-radius: 8px !important;}
.rounded-10-px {
   border-radius: 10px !important;}
.rounded-15-px {
    border-radius: 15px !important;}
.rounded-25-px {
   border-radius: 25px !important;}
.rounded-t-s-0 {
   border-top-left-radius: 0 !important;}




/* line-height */
.l-h-20 {
   line-height: 20px !important;}
.l-h-25 {
   line-height: 25px !important;}



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

/* font-size */
.fs-8-px {
   font-size: 8px !important;}
.fs-10-px {
   font-size: 10px !important;}
.fs-11-px {
   font-size: 11px !important;}
.fs-12-px {
   font-size: 12px !important;}
.fs-13-px {
   font-size: 13px !important;}
.fs-14-px {
   font-size: 14px !important;}
.fs-15-px {
   font-size: 15px !important;}
.fs-16-px {
   font-size: 16px !important;}
.fs-17-px {
   font-size: 17px !important;}
.fs-18-px {
   font-size: 18px !important;}
.fs-19-px {
   font-size: 19px !important;}
.fs-20-px {
   font-size: 20px !important;}
.fs-22-px {
   font-size: 22px !important;}
.fs-32-px {
   font-size: 32px !important;}
.fs-35-px {
   font-size: 35px !important;}

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

/* position */
.position-top-2 {
   top: 2px !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;}



/* 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;}



  

/* row-print-break */
.row-print-break {
   page-break-inside: auto}
.row-print-break .col-print-break { 
   page-break-inside: avoid; 
   page-break-after: auto}