*,
* button:focus {
  outline: 0;
}

:root {
  --mainColor: #fdb900;
  --subColor: #0a2754;
  /* --subColor2: #77643d; */
}

.mainColor {
  color: var(--mainColor) !important;
}

.mainBack {
  background-color: var(--mainColor) !important;
  border-color: var(--mainColor) !important;
}

.subColor {
  color: var(--subColor) !important;
}

.subBack {
  background-color: var(--subColor) !important;
  border-color: var(--subColor) !important;
}

*::-webkit-scrollbar {
  height: 20px;
  width: 10px;
  background: #f1f1f1;
  border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

*::-webkit-scrollbar-corner {
  background: #999;
  border-radius: 10px;
}

body {
  font-family: "IBM Plex Sans Arabic", sans-serif;
  text-decoration: none;
  font-size: 0.9em;
  overflow-x: hidden;
  position: relative;
  color: #0a2754;
  direction: rtl;
}

.container {
  position: relative;
  z-index: 10;
}

.bg_light {
  background-color: #f0f2f6 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 0;
  line-height: 1.6;
}

body a:hover {
  text-decoration: none;
}

body a:focus {
  outline: 0;
}

body ul {
  list-style-type: none;
  margin: 0;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-appearance: none;
}

.btn:active,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  transition: all 0.6s ease;
  outline: 0;
}

.mt_100 {
  margin-top: 100px !important;
}

.mt_50 {
  margin-top: 50px !important;
}

.mb_100 {
  margin-bottom: 100px !important;
}

.mb_50 {
  margin-bottom: 50px !important;
}

.pt_100 {
  padding-top: 100px !important;
}

.pt_50 {
  padding-top: 50px !important;
}

.pb_100 {
  padding-bottom: 100px !important;
}

.pb_50 {
  padding-bottom: 50px !important;
}

/* ==================== global style ============================== */
a,
span,
img {
  display: inline-block;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: unset;
}

ul {
  padding: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
}

p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.text,
.text * {
  font-size: 14px;
  line-height: 1.8;
}

small.text {
  font-size: 12px;
}

.section_padding {
  padding: 100px 0;
}

.section_head .sub_tit {
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 10px;
}
.section_head h2 {
  font-size: 42px;
}

.img_cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img_contain img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-notification {
  display: none;
}

.form-control {
  border-radius: 8px;
  box-shadow: 1px 1px 3px 0 rgba(228, 231, 237, 0.5);
  border: solid 1px #e8ebf2;
  color: var(--subColor);
  min-height: 40px;
}

.form-select-group {
  position: relative;
  width: 100%;
}
.form-select-group::after {
  position: absolute;
  content: "";
  left: 11px;
  bottom: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(101, 115, 153, 0.2);
  pointer-events: none;
}

.form-check-input:checked {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}

/* --------------- buttons style --------------- */
.butn {
  position: relative;
  padding: 12px 40px;
  border-radius: 10px;
  background-color: var(--mainColor);
  border: 1px solid var(--mainColor);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  min-width: 180px;
  text-align: center;
  /*min-height: 50px;*/
}
.butn.disabled {
  opacity: 0.3;
  pointer-events: none;
}
.butn:hover {
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1333333333);
  color: var(--mainColor);
  border-color: transparent;
}
.butn.sm_butn {
  padding: 10px 30px;
  font-size: 14px;
  min-width: -moz-max-content;
  min-width: max-content;
}
.butn.line_butn {
  background-color: transparent;
  color: var(--mainColor);
}
.butn.line_butn:hover {
  background-color: var(--mainColor);
  color: #fff;
}
.butn.sub_line_butn {
  background-color: transparent;
  color: var(--subColor);
  border: 1px solid #ccc;
}
.butn.sub_line_butn:hover {
  background-color: var(--subColor);
  color: #fff;
}
.butn.main_line_butn {
  background-color: transparent;
  color: var(--mainColor);
  border: 1px solid var(--mainColor);
}
.butn.main_line_butn:hover {
  background-color: var(--mainColor);
  color: #fff;
}
.butn.sub_butn {
  background-color: var(--subColor);
  color: #fff;
  border-color: var(--subColor);
}
.butn.sub_butn:hover {
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1333333333);
  color: var(--subColor);
  border-color: transparent;
}

/* --------------- to_top button --------------- */
.progress-wrap {
  position: fixed;
  left: 20px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.0666666667);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transform: translateX(-100px);
  z-index: 99;
  transition: all 200ms linear;
}
.progress-wrap::after {
  background: url(../images/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: #000;
  left: 13px;
  top: 13px;
  height: 25px;
  width: 25px;
  display: block;
}
.progress-wrap svg path {
  fill: #f8f8f8;
}
.progress-wrap svg.progress-circle path {
  stroke: #000;
  stroke-width: 5;
  box-sizing: border-box;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: none;
}

/* --------------- top_navbar --------------- */
.top_navbar {
  position: relative;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 500;
  z-index: 999;
}
.top_navbar .logo {
  max-height: 50px;
}
.top_navbar .noti_icon {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--subColor);
  color: #fff;
  position: relative;
}
.top_navbar .noti_icon.noti::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--mainColor);
  border: 1px solid #fff;
}
.top_navbar .profile_dropdown .dropdown-toggle {
  border: 0;
  background: transparent;
}
.top_navbar .profile_dropdown .user_img {
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  background-color: var(--subColor);
}

/* --------------- navbar --------------- */
.navbar {
  padding: 0;
  background-color: var(--subColor);
  font-size: 18px;
  color: #fff;
  font-weight: 400;
}
.navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  font-size: 18px;
  padding: 25px 0 21px;
  -webkit-margin-end: 40px;
          margin-inline-end: 40px;
  color: #fff;
  border-bottom: 4px solid transparent;
  filter: drop-shadow(0 2px 0 var(--subColor));
}
.navbar .navbar-nav .nav-item .nav-link.active, .navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--mainColor);
  border-color: var(--mainColor);
}
.navbar .navbar-nav .nav-item .nav-link.active::after, .navbar .navbar-nav .nav-item .nav-link:hover::after {
  bottom: -20px;
  opacity: 1;
}
.navbar .navbar-nav .nav-item .nav-link::after {
  position: absolute;
  content: "";
  left: calc(50% - 10px);
  bottom: -25px;
  width: 10px;
  height: 10px;
  border: 10px solid transparent;
  border-top: 10px solid var(--mainColor);
  opacity: 0;
  transition: all 0.3s ease;
}

/* --------------- header --------------- */
header {
  position: relative;
  padding: 65px 0;
}
header .back_shap {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}
header .hand_shap {
  position: absolute;
  left: -10%;
  top: 50%;
  width: 30%;
  transform: translateY(-50%);
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  z-index: 30;
  display: none;
}
header .info h1 {
  font-size: 62px;
  margin-bottom: 50px;
}
header .info h1 .text_line {
  position: relative;
}
header .info h1 .text_line::after {
  position: absolute;
  content: "";
  right: 0;
  width: 100%;
  bottom: -30px;
  height: 30px;
  background-image: url(../images/icons/head_line.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
header .info .text {
  font-size: 22px;
  margin-bottom: 40px;
}
header .imgs .img_colmn:nth-of-type(1) .img:nth-of-type(1) {
  height: 200px;
  margin-bottom: 50px;
}
header .imgs .img_colmn:nth-of-type(1) .img:nth-of-type(2) {
  height: 340px;
}
header .imgs .img_colmn:nth-of-type(2) .img {
  height: 460px;
}
header .imgs .img_colmn .img {
  border-radius: 20px;
  overflow: hidden;
}

/* --------------- numbers --------------- */
.numbers {
  padding: 50px 0;
  position: relative;
  z-index: 10;
  background-image: linear-gradient(to bottom, #fff, #f0f4f9 52%);
}
.numbers .number_card {
  text-align: center;
}
.numbers .number_card .icon {
  height: 88px;
  margin-bottom: 30px;
}
.numbers .number_card .title {
  font-size: 42px;
  margin-bottom: 5px;
  direction: ltr;
  line-height: 1;
  font-weight: bold;
}
.numbers .number_card p {
  font-size: 18px;
}
.numbers .btm_shap {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  pointer-events: none;
}
.numbers .num_shap1 {
  position: absolute;
  bottom: -10px;
  right: 60px;
  max-height: 95px;
  pointer-events: none;
}
.numbers .num_shap2 {
  position: absolute;
  bottom: -60px;
  left: 90px;
  max-height: 215px;
  pointer-events: none;
}

/* --------------- about --------------- */
.about {
  position: relative;
  padding: 130px 0 180px;
}
.about::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: var(--subColor);
}
.about .dark_side {
  color: #fff;
}
.about .dark_side h2 {
  font-size: 42px;
  margin-bottom: 30px;
}
.about .dark_side .text {
  font-size: 20px;
  opacity: 0.7;
  margin-bottom: 20px;
}
.about .dark_side .butn {
  margin-top: 40px;
}
.about .vision_side {
  position: relative;
}
.about .vision_side .item {
  position: relative;
  display: flex;
  margin-bottom: 50px;
}
.about .vision_side .item::after {
  position: absolute;
  content: "";
  right: 50px;
  bottom: -42px;
  width: 1px;
  height: calc(100% - 66px);
  border-right: 1px dashed var(--mainColor);
}
.about .vision_side .item:last-of-type {
  margin-bottom: 0;
}
.about .vision_side .item:last-of-type::after {
  display: none;
}
.about .vision_side .item .icon {
  flex-shrink: 0;
  -webkit-margin-end: 30px;
          margin-inline-end: 30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid rgba(153, 153, 153, 0.2);
  outline: 1px dashed var(--mainColor);
  outline-offset: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 1px 0 rgba(10, 39, 84, 0.25), 0 1px 73px 0 rgba(10, 39, 84, 0.06);
  background-color: #fff;
}
.about .vision_side .item .icon img {
  height: 43px;
  width: 43px;
  -o-object-fit: contain;
     object-fit: contain;
}
.about .vision_side .item .inf h3 {
  font-size: 42px;
  margin-bottom: 15px;
}
.about .vision_side .item .inf p {
  font-size: 20px;
  color: #51668a;
  font-weight: 500;
}

/* --------------- services --------------- */
.services .content {
  position: relative;
  border-radius: 25px;
  margin-top: -50px;
  overflow: hidden;
  padding: 25px;
}
.services .content::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% - 150px);
  border-radius: 25px;
  background-color: #f6f8fa;
}
.services .content .title {
  position: relative;
  z-index: 10;
  padding: 25px;
  margin-bottom: 15px;
}
.services .content .title .arrows {
  display: flex;
}
.services .content .title .arrows .swiper_prev,
.services .content .title .arrows .swiper_next {
  width: 50px;
  height: 50px;
  border: 2px solid var(--mainColor);
  border-radius: 8px;
  color: var(--mainColor);
  background: transparent;
  margin: 0 3px;
  font-size: 18px;
  transition: all 0.3s ease;
}
.services .content .title .arrows .swiper_prev:hover,
.services .content .title .arrows .swiper_next:hover {
  background-color: var(--mainColor);
  color: #fff;
}
.services .content .services_slider {
  position: relative;
  overflow: hidden;
  padding-top: 25px;
}
.services .content .service_card {
  padding: 45px 30px;
  border-radius: 13px;
  background-color: #fff;
  border: 1px solid rgba(153, 153, 153, 0.1333333333);
  text-align: center;
  min-height: 310px;
}
.services .content .service_card .icon {
  margin-bottom: 25px;
  height: 88px;
}
.services .content .service_card .title {
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: bold;
}
.services .content .service_card p {
  font-size: 16px;
  color: #51668a;
  font-weight: 500;
}

/* --------------- join --------------- */
.join {
  padding-top: 70px;
}
.join .join_box {
  position: relative;
  padding: 50px;
  border-radius: 25px;
  background-color: #ffe08c;
}
.join .join_box .join_img2 {
  position: absolute;
  top: 0;
  left: 10%;
  max-width: 17%;
}
.join .join_box .join_img3 {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 20%;
}

/* --------------- sections --------------- */
.sections {
  padding: 50px 0;
}
.sections .sections_slider {
  position: relative;
  overflow: hidden;
  padding-bottom: 70px;
}
.sections .swiper-pagination .swiper-pagination-bullet {
  width: 25px;
  height: 5px;
  margin: 0 5px;
  opacity: 0.2;
  border-radius: 5px;
  background-color: #51668a;
}
.sections .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--mainColor);
  opacity: 1;
}
.sections .tab-pane {
  position: relative;
}
.sections .tab-pane .arrows {
  display: flex;
  position: absolute;
  top: 80px;
  left: -25px;
  width: calc(100% + 50px);
  z-index: 10;
  pointer-events: none;
}
.sections .tab-pane .arrows .swiper_prev,
.sections .tab-pane .arrows .swiper_next {
  width: 36px;
  height: 36px;
  border: 0;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.0666666667);
  border-radius: 50%;
  margin: 0 3px;
  font-size: 18px;
  transition: all 0.3s ease;
  pointer-events: all;
  font-size: 13px;
}
.sections .tab-pane .arrows .swiper_prev:hover,
.sections .tab-pane .arrows .swiper_next:hover {
  background-color: var(--mainColor);
  color: #fff;
}
.sections .nav-pills {
  margin: 40px 0;
  justify-content: center;
}
.sections .nav-pills .nav-link {
  margin: 10px;
  padding: 20px 40px;
  border-radius: 15px;
  box-shadow: 0 0 1px 0 rgba(10, 39, 84, 0.25), 0 1px 73px 0 rgba(10, 39, 84, 0.06);
  background-color: #fff;
  border: 1px solid rgba(153, 153, 153, 0.2);
  color: #51668a;
  font-size: 17px;
  font-weight: 500;
}
.sections .nav-pills .nav-link.active {
  border: solid 1px var(--mainColor);
  color: var(--mainColor);
  background-color: rgba(253, 185, 0, 0.08);
}

.sections .swiper-slide {
    padding: 15px 10px;
}

.sections .swiper-pagination {
    display: none;
}

.sections .section_card {
  position: relative;
    display: block;
    background-color: #fff;
    box-shadow: 0 0 15px #0001;
    border-radius: 15px;
    padding: 30px;
}
.sections .section_card h6 {
  font-size: 15px;
  text-align: center;
  width: 100%;
}
.sections .section_card .img {
  position: relative;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.sections .section_card .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* --------------- blog --------------- */
.blog {
  padding-bottom: 120px;
}
.blog .title {
  position: relative;
  z-index: 10;
  padding: 25px;
  margin-bottom: 15px;
}
.blog .title .arrows {
  display: flex;
}
.blog .title .arrows .swiper_prev,
.blog .title .arrows .swiper_next {
  width: 50px;
  height: 50px;
  border: 2px solid var(--mainColor);
  border-radius: 8px;
  color: var(--mainColor);
  background: transparent;
  margin: 0 3px;
  font-size: 18px;
  transition: all 0.3s ease;
}
.blog .title .arrows .swiper_prev:hover,
.blog .title .arrows .swiper_next:hover {
  background-color: var(--mainColor);
  color: #fff;
}
.blog .blog_card .img {
  height: 240px;
  overflow: hidden;
  border-radius: 10px;
}
.blog .blog_card .info {
  padding: 30px;
}
.blog .blog_card .info p {
  font-size: 20px;
}

/* --------------- download --------------- */
.download .download_card {
  position: relative;
  border-radius: 20px;
  padding: 0 80px;
  background-color: #eaeaea;
  overflow: hidden;
}
.download .download_card .shap {
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
}
.download .download_card .info {
  position: relative;
  padding: 100px 0;
  z-index: 10;
}
.download .download_card .info .text {
  font-size: 21px;
  line-height: 1.6;
  margin: 30px 0;
}
.download .download_card .img {
  position: relative;
  height: 450px;
  z-index: 10;
  text-align: center;
}

/* --------------- testimonials --------------- */
.testimonials {
  padding: 120px 0;
}
.testimonials .section_head h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 40px;
}
.testimonials .section_head h2::after {
  position: absolute;
  content: "";
  right: 0;
  width: 100%;
  bottom: 0;
  height: 30px;
  background-image: url(../images/icons/head_line.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.testimonials .testi_slider {
  position: relative;
  overflow: hidden;
}
.testimonials .swiper_next,
.testimonials .swiper_prev {
  cursor: pointer;
}
.testimonials .testi_slider_btm .img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid transparent;
  padding: 3px;
  margin: 5px;
}
.testimonials .testi_slider_btm .img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials .testi_slider_btm .swiper-slide-active .img {
  border: 1px solid var(--mainColor);
}
.testimonials .testi_card {
  position: relative;
  text-align: center;
}
.testimonials .testi_card .text {
  font-size: 21px;
  line-height: 1.6;
  margin: 30px 0;
}
.testimonials .testi_card .client_det h6 {
  font-size: 18px;
}

/* --------------- footer --------------- */
footer {
  background-color: var(--subColor);
  color: #fff;
  padding-bottom: 0 !important;
}
footer .foot_container {
  padding: 80px 0;
}
footer .foot_info .logo {
  max-width: 200px;
  margin-bottom: 30px;
}
footer .foot_info .text {
  font-size: 17px;
}
footer .links li {
  font-size: 17px;
  margin: 10px 0;
}
footer .social_links a {
  font-size: 17px;
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
}
footer .btns a {
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}
footer .foot {
  padding: 30px 0;
  background-color: #05142b;
}
footer .foot p {
  opacity: 0.6;
  font-size: 16px;
}
footer .foot p a {
  text-decoration: underline;
}

/* --------------- pages style --------------- */
.inner_header {
  padding: 40px 0;
}
.inner_header h2 {
  font-size: 21px;
}
.inner_header p {
  font-size: 14px;
  margin-top: 10px;
}

.inner_header_box {
  position: relative;
  padding: 50px 15px;
  border-radius: 25px;
  background-color: #ffe08c;
  text-align: center;
}
.inner_header_box .links {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--subColor);
  font-size: 18px;
  margin-top: 20px;
}
.inner_header_box .links .line {
  margin: 0 15px;
  width: 30px;
  height: 1px;
  background-color: var(--subColor);
}
.inner_header_box .join_img1 {
  position: absolute;
  top: 0;
  right: 1%;
  max-width: 17%;
  height: 100%;
}
.inner_header_box .join_img2 {
  position: absolute;
  top: 0;
  left: 10%;
  max-width: 17%;
}
.inner_header_box .join_img3 {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 20%;
}

.text_light {
  color: #657399;
}

.card_white {
  display: block;
  padding: 30px;
  background-color: #fff;
  border-radius: 20px;
}
.card_white h6 {
  font-size: 16px;
}
.card_white h3 {
  font-size: 26px;
}
.card_white .small_text {
  font-size: 12px;
}

/* --------------- profile page --------------- */
.profile_pg .page_content {
  padding-bottom: 150px;
}
.profile_pg .nav-pills {
  border-radius: 15px;
  overflow: hidden;
}
.profile_pg .nav-pills .nav-item:nth-of-type(1) .nav-link .icon {
  background-color: #f7df91;
}
.profile_pg .nav-pills .nav-item:nth-of-type(2) .nav-link .icon {
  background-color: #cad6ea;
}
.profile_pg .nav-pills .nav-item:nth-of-type(3) .nav-link .icon {
  background-color: #c6c6ff;
}
.profile_pg .nav-pills .nav-item:nth-of-type(4) .nav-link .icon {
  background-color: #afefea;
}
.profile_pg .nav-pills .nav-item:nth-of-type(5) .nav-link .icon {
  background-color: #f4ef97;
}
.profile_pg .nav-pills .nav-item:nth-of-type(6) .nav-link .icon {
  background-color: #b8e4ff;
}
.profile_pg .nav-pills .nav-item:nth-of-type(7) .nav-link .icon {
  background-color: #f2cca5;
}
.profile_pg .nav-pills .nav-item .nav-link {
  width: 100%;
  padding: 10px 15px;
  text-align: start;
  color: var(--subColor);
  font-weight: 600;
  background-color: #fff;
  font-size: 15px;
}
.profile_pg .nav-pills .nav-item .nav-link.active {
  background-color: var(--subColor);
  color: #fff;
}
.profile_pg .nav-pills .nav-item .nav-link .icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  background-color: #cad6ea;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  flex-shrink: 0;
  display: inline-flex;
    align-items: center;
    justify-content: center;
}
.profile_pg .nav-pills .nav-item .nav-link .icon img {
  max-height: 25px;
}
.profile_pg .tab_personal .form {
  color: #657399;
}
.profile_pg .tab_personal .form .form-group {
  min-height: 60px;
  border: 1px solid rgba(153, 153, 153, 0.2666666667);
  border-radius: 6px;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding: 5px 15px;
}
.profile_pg .tab_personal .form .form-group .flag {
  width: 25px;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}
.profile_pg .tab_personal .form .form-group label {
  font-size: 11px;
  font-weight: bold;
  margin-bottom: 5px;
}
.profile_pg .tab_personal .form .form-group .form-control {
  border: 0;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}
.profile_pg .tab_personal .form .form-group .select-group {
  position: relative;
}
.profile_pg .tab_personal .form .form-group .select-group::after {
  position: absolute;
  content: "";
  left: 10px;
  bottom: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(101, 115, 153, 0.2);
  pointer-events: none;
}
.profile_pg .tab_personal .form .form-group .select-group .form-select {
  position: relative;
  border: 0;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}
.profile_pg .tab_currencies .card_white {
  margin-bottom: 30px;
  height: calc(100% - 30px);
}
.profile_pg .tab_currencies .card_white.card_currencies {
  background-image: url(../images/dolar.webp);
  background-position: left;
  background-size: contain;
  background-repeat: no-repeat;
}
.profile_pg .tab_currencies .card_white .cur_title {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  font-size: 16px;
}
.profile_pg .tab_currencies .card_white .cur_title .flag {
  max-height: 25px;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  flex-shrink: 0;
}
.profile_pg .tab_currencies .card_white .val p {
  font-size: 13px;
  font-weight: bold;
}
.profile_pg .tab_currencies .card_white .val h4 {
  font-size: 26px;
}
.profile_pg .tab_currencies .card_white .btns {
  margin-top: 40px;
}
.profile_pg .tab_currencies .card_white .btns a {
  -webkit-margin-end: 25px;
          margin-inline-end: 25px;
  font-weight: bold;
}
.profile_pg .tab_currencies .card_white .btns a.dlt {
  color: #cb2026;
  border-bottom: 1px solid #cb2026;
}
.profile_pg .tab_bouquet .bouquet_card {
  padding: 5px;
  background-color: #fff;
  border-radius: 20px;
}
.profile_pg .tab_bouquet .bouquet_card .top_info {
  position: relative;
  padding: 30px 30px 20px;
  background-image: linear-gradient(206deg, #fdb900, #0a2754);
  color: #fff;
  border-radius: 15px;
  text-align: center;
}
.profile_pg .tab_bouquet .bouquet_card .top_info .icon {
  height: 130px;
  margin-bottom: 30px;
}
.profile_pg .tab_bouquet .bouquet_card .top_info .patt {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 70%;
  opacity: 0.5;
}
.profile_pg .tab_bouquet .bouquet_card .top_info h4 {
  font-size: 25px;
}
.profile_pg .tab_bouquet .bouquet_card .top_info p {
  font-weight: 500;
}
.profile_pg .tab_bouquet .bouquet_card .btm_info {
  padding: 25px;
  min-height: 360px;
}
.profile_pg .tab_bouquet .bouquet_card .btm_info .price {
  text-align: center;
  margin-bottom: 25px;
}
.profile_pg .tab_bouquet .bouquet_card .btm_info .price h6 {
  color: #51668a;
  font-weight: 300;
  text-decoration: line-through;
}
.profile_pg .tab_bouquet .bouquet_card .btm_info ul li {
  color: #51668a;
  margin: 10px 0;
  font-size: 16px;
  font-weight: 600;
}
.profile_pg .tab_bouquet .bouquet_card .btm_info ul li i {
  color: var(--mainColor);
}
.profile_pg .tab_projects .card_white {
  margin-bottom: 30px;
  height: calc(100% - 30px);
}
.profile_pg .tab_projects .project_card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 0 17px 0 rgba(10, 39, 84, 0.08);
  border: solid 2px rgba(10, 39, 84, 0.15);
  margin-bottom: 30px;
  padding: 0;
  padding-top: 20px;
  text-decoration: none;
  overflow: hidden;
}
.profile_pg .tab_projects .project_card .pr_date {
  background-color: rgba(10, 39, 84, 0.0509803922);
  border-radius: 10px;
  padding: 15px 30px;
  margin: 0 15px;
}
.profile_pg .tab_projects .project_card .pr_date .pr_date_item {
  display: flex;
}
.profile_pg .tab_projects .project_card .pr_date .pr_date_item .icon {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  margin-top: 5px;
}
.profile_pg .tab_projects .project_card .pr_date .pr_date_item .inf small {
  font-size: 10px;
  margin-bottom: 5px;
  display: block;
}
.profile_pg .tab_projects .project_card .pr_date .pr_date_item .inf p {
  font-weight: bold;
  font-size: 14px;
}
.profile_pg .tab_projects .project_card .bttns {
  padding: 40px 20px 20px;
  background-image: url(../images/box-bg-1.svg);
  background-size: cover;
  background-position: top;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}
.profile_pg .tab_projects .project_card .bttns .bttn {
  padding: 5px 15px;
  font-size: 12px;
  background-color: #ccc;
  min-width: 80px;
  text-align: center;
}
.profile_pg .tab_projects .project_card .bttns .bttn_warning {
  background-color: #CF4813;
  color: #fff;
}
.profile_pg .tab_projects .project_card .bttns .bttn_succes {
  background-color: #fff;
  border: 2px solid #07b055;
  color: #07b055;
}
.profile_pg .tab_wallet .card_white {
  margin-bottom: 30px;
  height: calc(100% - 30px);
}
.profile_pg .tab_wallet .wallet_card {
  position: relative;
  border-radius: 15px;
  box-shadow: 0 0 17px 0 rgba(10, 39, 84, 0.08);
  background-color: #fff;
  padding: 30px;
  margin-bottom: 30px;
}
.profile_pg .tab_wallet .wallet_card * {
  position: relative;
  z-index: 10;
}
.profile_pg .tab_wallet .wallet_card::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 90%;
  width: 30%;
  background-image: url(../images/wallet_shap.svg);
  background-size: cover;
  background-position: right;
  z-index: 0;
}
.profile_pg .tab_tasks .card_white {
  margin-bottom: 30px;
  height: calc(100% - 30px);
}
.profile_pg .tab_tasks .form-check {
  padding: 0;
  margin: 0;
  position: relative;
}
.profile_pg .tab_tasks .form-check .form-check-label {
  width: 100%;
}
.profile_pg .tab_tasks .form-check .form-check-input {
  position: absolute;
  left: 30px;
  top: 38px;
  z-index: 20;
  width: 25px;
  height: 25px;
}
.profile_pg .tab_tasks .form-check .form-check-input:checked ~ .form-check-label .task_card {
  border: 2px solid #0fa3b1;
}
.profile_pg .tab_tasks .form-check .form-check-input:checked {
  background-color: #0fa3b1;
  border-color: #0fa3b1;
}
.profile_pg .tab_tasks .task_card {
  position: relative;
  border-radius: 15px;
  box-shadow: 0 0 17px 0 rgba(10, 39, 84, 0.08);
  background-color: #fff;
  padding: 30px;
  margin-bottom: 30px;
  overflow: hidden;
  border: 2px solid transparent;
}
.profile_pg .tab_tasks .task_card::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100px;
  width: 100%;
  background-image: url(../images/task_btm.svg);
  background-size: cover;
  background-position: top;
}
.profile_pg .tab_tasks .task_card .title {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  margin-bottom: 100px;
  min-height: 50px;
}
.profile_pg .tab_tasks .task_card .title .date {
  position: relative;
  text-align: end;
  -webkit-padding-end: 20px;
          padding-inline-end: 20px;
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
}
.profile_pg .tab_tasks .task_card .title .date::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  background-color: var(--mainColor);
  border-radius: 10px;
}
.profile_pg .tab_tasks .task_card .title .agenda_task_name {
    margin-inline-end: 30px;
    font-size: 17px;
}
.profile_pg .tab_tasks .task_card .btm-bttns {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  padding: 50px 0 0;
  margin-top: 20px;
}
.profile_pg .statistics_tab .main_statistics .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  border-radius: 15px;
  background-color: #fff;
  margin-bottom: 30px;
}
.profile_pg .statistics_tab .main_statistics .item .icon {
  width: 70px;
  height: 65px;
}
.profile_pg .statistics_tab .main_statistics .item p {
  font-size: 17px;
  font-weight: 500;
  color: #51668a;
}
.profile_pg .statistics_tab .main_statistics .item h3 small {
  font-size: 14px;
}
.profile_pg .statistics_tab .chart_statistics {
  margin-top: 20px;
  padding: 30px;
  border-radius: 15px;
  background-color: #fff;
}
.profile_pg .statistics_tab .chart_statistics .head {
  margin-bottom: 40px;
}
.profile_pg .statistics_tab .chart_statistics .head .nav-pills .nav-item {
  width: 50%;
}
.profile_pg .statistics_tab .chart_statistics .head .nav-pills .nav-item .nav-link {
  font-size: 14px;
  text-align: center;
  border-radius: 0;
  background-color: #f0f2f6;
  padding: 15px 30px;
}
.profile_pg .statistics_tab .chart_statistics .head .nav-pills .nav-item .nav-link.active {
  background-color: var(--subColor);
}
.profile_pg .statistics_tab .chart_statistics .head .select_side {
  display: flex;
  align-items: center;
}
.profile_pg .statistics_tab .chart_statistics .head .select_side h6 {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  flex-shrink: 0;
}
.profile_pg .statistics_tab .chart_statistics .tab_projects .project_cards {
  height: 420px;
  overflow: auto;
  padding: 0 20px;
}
.profile_pg .statistics_tab .chart_statistics .tab_projects .project_cards::-webkit-scrollbar {
  height: 10px;
  width: 5px;
  background: #f1f1f1;
  border-radius: 10px;
}
.profile_pg .statistics_tab .chart_statistics .tab_projects .project_cards::-webkit-scrollbar-thumb {
  background: rgba(153, 153, 153, 0.3333333333);
  border-radius: 5px;
}
.profile_pg .statistics_tab .chart_statistics .tab_projects .project_cards::-webkit-scrollbar-corner {
  background: rgba(153, 153, 153, 0.3333333333);
  border-radius: 5px;
}
.profile_pg .statistics_tab .chart_statistics .tab_projects .proj_card {
  display: block;
  position: relative;
  margin-top: 10px;
  background-color: #fff;
  border-radius: 15px;
  border: solid 2px rgba(10, 39, 84, 0.15);
  padding: 12px 20px;
  overflow: hidden;
}
.profile_pg .statistics_tab .chart_statistics .tab_projects .proj_card:hover .float_text {
  opacity: 1;
}
.profile_pg .statistics_tab .chart_statistics .tab_projects .proj_card .title {
  font-size: 14px;
  font-weight: bold;
}
.profile_pg .statistics_tab .chart_statistics .tab_projects .proj_card .date {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.profile_pg .statistics_tab .chart_statistics .tab_projects .proj_card .date .icon {
  font-size: 20px;
  margin: 0 20px;
  opacity: 0.3;
}
.profile_pg .statistics_tab .chart_statistics .tab_projects .proj_card .date small {
  font-size: 10px;
  opacity: 0.6;
}
.profile_pg .statistics_tab .chart_statistics .tab_projects .proj_card .date h6 {
  font-size: 13px;
  font-weight: bold;
}
.profile_pg .statistics_tab .chart_statistics .tab_projects .proj_card .float_text {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(253, 186, 0, 0.8431372549);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  opacity: 0;
}
.profile_pg .statistics_tab .chart_statistics .tab_projects .charts_card {
  border-radius: 15px;
  background-image: linear-gradient(to top, #e0f6ed, #f3fffa);
  padding: 40px;
}
.profile_pg .statistics_tab .chart_statistics .tab_projects .charts_card .title {
  text-align: center;
}
.profile_pg .statistics_tab .chart_statistics .tab_projects .charts_card .title p {
  font-size: 13px;
  font-weight: bold;
  color: #51668a;
  margin-bottom: 0;
}
.profile_pg .statistics_tab .chart_statistics .tab_projects .charts_card #chart {
  max-width: 300px;
  margin: 25px auto;
  padding: 0;
}
.profile_pg .statistics_tab .chart_statistics .tab_projects .paginations {
  display: flex;
  align-items: center;
  margin-top: 40px;
}
.profile_pg .statistics_tab .chart_statistics .tab_projects .paginations .arrows {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}
.profile_pg .statistics_tab .chart_statistics .tab_projects .paginations .arrows a {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 5px;
  border: 1px solid rgba(153, 153, 153, 0.2);
}
.profile_pg .statistics_tab .chart_statistics .tab_projects .paginations .arrows a:hover {
  background-color: var(--subColor);
  color: #fff;
}

.offcanvas_noti {
  background-color: #f0f2f6;
  padding: 30px;
}
.offcanvas_noti .float_icon {
  position: absolute;
  left: -70px;
  top: 15px;
  max-height: 85px;
}
.offcanvas_noti .offcanvas-title {
  margin-bottom: 30px;
}
.offcanvas_noti .offcanvas-title .numb {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--subColor);
  color: #fff;
  position: relative;
}
.offcanvas_noti .offcanvas-title .numb::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--mainColor);
  border: 1px solid #fff;
}
.offcanvas_noti .noti_card {
  padding: 20px;
  background-color: #fff;
  border-radius: 20px;
  margin-top: 10px;
  color: #657399;
}
.offcanvas_noti .noti_card h6 {
  font-size: 14px;
  color: #0f2460;
  margin-bottom: 15px;
  font-weight: 400;
}
.offcanvas_noti .noti_card .date {
  font-size: 12px;
  display: flex;
  align-items: center;
}
.offcanvas_noti .noti_card .date .dt {
  padding: 2px 15px;
  border-radius: 10px;
  background-color: #eff1f6;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

/* --------------- modals --------------- */
.modal .modal-content {
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  padding: 20px;
}
.modal .modal-content .form {
  color: #657399;
}
.modal .modal-content .form .form-group {
  min-height: 60px;
  border: 1px solid rgba(153, 153, 153, 0.2666666667);
  border-radius: 6px;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding: 5px 15px;
}
.modal .modal-content .form .form-group .flag {
  width: 25px;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}
.modal .modal-content .form .form-group label {
  font-size: 11px;
  font-weight: bold;
  margin-bottom: 5px;
}
.modal .modal-content .form .form-group .form-control {
  border: 0;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}
.modal .modal-content .form .form-group .select-group {
  position: relative;
}
.modal .modal-content .form .form-group .select-group::after {
  position: absolute;
  content: "";
  left: 10px;
  bottom: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(101, 115, 153, 0.2);
  pointer-events: none;
}
.modal .modal-content .form .form-group .select-group .form-select {
  position: relative;
  border: 0;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}
.modal .modal-content .form .form-check-input:not([type=checkbox]) {
  width: 20px;
  height: 20px;
  border-radius: 50% !important;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}
.modal .modal-content .form .form-check-input:checked {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}
.modal .btn-close {
  background-image: none;
  font-size: 25px;
  color: var(--subColor);
  opacity: 1;
}
.modal .alrt {
  padding: 5px 15px;
  font-weight: 600;
  background-color: rgba(5, 20, 43, 0.0666666667);
  border-radius: 30px;
  color: var(--subColor);
}
.modal .payment_select .form-check {
  padding: 0;
  position: relative;
}
.modal .payment_select .form-check .form-check-input {
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
  flex-shrink: 0;
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  position: absolute;
  top: 35px;
  right: 20px;
}
.modal .payment_select .form-check .form-check-label {
  display: flex;
  align-items: center;
  border-radius: 8px;
  box-shadow: 1px 1px 3px 0 rgba(228, 231, 237, 0.5);
  border: solid 1px #e8ebf2;
  padding: 20px;
  -webkit-padding-start: 50px;
          padding-inline-start: 50px;
  margin-top: 10px;
}
.modal .payment_select .form-check .form-check-label .inf h6 {
  font-weight: bold;
  margin-bottom: 0;
}
.modal .payment_select .form-check .form-check-label .inf p {
  font-size: 12px;
  color: #51668a;
}
.modal .payment_select .form-check .form-check-label .img {
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
}
.modal .payment_select .form-check .form-check-label .img img {
  height: 35px;
}
.modal .payment_select .form-check .form-check-input:checked ~ .form-check-label {
  box-shadow: 0 2px 4px 0 #d8dee8;
  border: solid 1px #0fa3b1;
}
.modal.modal_project {
  padding-bottom: 200px;
}
.modal.modal_project .modal-content {
  overflow: visible;
}
.modal.modal_project .modal-content .form .form-group {
  display: block;
  font-size: 13px;
}
.modal.modal_project .modal-content .form .form-group label {
  font-size: 13px;
  font-weight: bold;
  color: var(--subColor);
  margin-top: 5px;
}
.modal.modal_project .date_select {
  position: relative;
  min-height: 60px;
  border: 1px solid rgba(153, 153, 153, 0.2666666667);
  border-radius: 6px;
  align-items: center;
  padding: 5px 15px;
  cursor: pointer;
}
.modal.modal_project .date_select.active {
  border-color: var(--mainColor);
}
.modal.modal_project .date_select label {
  font-size: 13px;
  font-weight: bold;
  color: var(--subColor);
  margin-top: 10px;
}
.modal.modal_project .date_select input {
  border: 0;
  background-color: transparent;
  font-size: 13px;
  width: 75px;
  min-width: unset;
  margin-top: 10px;
}
.modal.modal_project .date_select .float_icon {
  position: absolute;
  top: 12px;
  left: 15px;
  font-size: 20px;
}
.modal.modal_project .date_select_group {
  position: relative;
}
.modal.modal_project .calender_box {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 3px 5px 5px rgba(0, 0, 0, 0.0666666667);
  background-color: #fff;
  border-top: 5px solid var(--mainColor);
  margin: 20px 0 10px;
  transition: all 0.3s ease;
}
.modal.modal_project .calender_box.active {
  opacity: 1;
  top: calc(100% + 20px);
  pointer-events: all;
}
.modal.modal_project .calender_box .calender_head {
  position: relative;
  padding: 20px;
  background-image: url(../images/calender_head.png);
  background-color: #f5f5f5;
  background-size: cover;
  background-repeat: no-repeat;
}
.modal.modal_project .calender_box .calender_head .item {
  display: flex;
  color: var(--subColor);
}
.modal.modal_project .calender_box .calender_head .item .icon {
  font-size: 16px;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
  color: var(--mainColor);
}
.modal.modal_project .calender_box .calender_head .item label {
  display: block;
  margin-bottom: 5px;
}
.modal.modal_project .calender_box .calender_head .item input {
  border: 0;
  background-color: transparent;
}
.modal.modal_project .calender_box .calender_body {
  padding: 30px;
}
.modal.modal_project .upload_group {
  position: relative;
  display: flex !important;
}
.modal.modal_project .upload_group .apload_btn {
  position: absolute;
  background-color: #fff;
  padding: 15px 10px;
  top: 5px;
  right: 0px;
  font-size: 12px;
  pointer-events: none;
  z-index: 5;
}

.ui-widget.ui-widget-content {
  font-family: "IBM Plex Sans Arabic", sans-serif;
  width: 100%;
  border: 0;
  max-width: 600px;
  margin: auto;
}
.ui-widget.ui-widget-content .ui-datepicker-header {
  color: var(--subColor);
  background-color: transparent;
  border: 0;
  margin-bottom: 30px;
}
.ui-widget.ui-widget-content .ui-datepicker-header .ui-datepicker-next {
  text-align: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.ui-widget.ui-widget-content .ui-datepicker-header .ui-datepicker-next::before {
  position: absolute;
  content: "\f053";
  font-weight: 500;
  font-family: "Font Awesome 5 Pro";
}
.ui-widget.ui-widget-content .ui-datepicker-header .ui-datepicker-prev {
  text-align: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.ui-widget.ui-widget-content .ui-datepicker-header .ui-datepicker-prev::before {
  position: absolute;
  content: "\f054";
  font-weight: 500;
  font-family: "Font Awesome 5 Pro";
}
.ui-widget.ui-widget-content td span, .ui-widget.ui-widget-content td a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px auto;
  background-color: transparent;
  border: 0;
}
.ui-widget.ui-widget-content .ui-state-active, .ui-widget.ui-widget-content .ui-widget-content .ui-state-active, .ui-widget.ui-widget-content .ui-widget-header .ui-state-active, .ui-widget.ui-widget-content a.ui-button:active, .ui-widget.ui-widget-content .ui-button:active, .ui-widget.ui-widget-content .ui-button.ui-state-active:hover {
  background-color: var(--mainColor);
  box-shadow: 0 0 15px rgba(253, 185, 0, 0.3137254902);
  border: 0;
}
.ui-widget.ui-widget-content .ui-state-highlight, .ui-widget.ui-widget-content .ui-widget-content .ui-state-highlight, .ui-widget.ui-widget-content .ui-widget-header .ui-state-highlight {
  color: var(--mainColor);
  text-shadow: 2px 2px 0 #fff;
}

.ui-datepicker-calendar thead {
  display: none;
}

.ui-datepicker {
  z-index: 9999 !important;
}

.modal_task_info_content {
  max-height: 50vh;
  overflow: auto;
  -webkit-padding-end: 30px;
          padding-inline-end: 30px;
}
.modal_task_info_content::-webkit-scrollbar {
  height: 20px;
  width: 7px;
  background: #f1f1f1;
  border-radius: 10px;
}
.modal_task_info_content::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}
.modal_task_info_content::-webkit-scrollbar-corner {
  background: #999;
  border-radius: 10px;
}
.modal_task_info_content .file_item {
  padding: 15px 20px;
  border-radius: 8px;
  background-color: #51668a;
  color: #fff;
  margin: 2px 1px;
}

.modal_task_add .modal_upload_content {
  position: relative;
}
.modal_task_add .modal_upload_content input[type=file] {
  position: absolute;
  right: -9999px;
  visibility: hidden;
  opacity: 0;
}
.modal_task_add .modal_upload_content input[type=submit] {
  position: relative;
  padding: 1rem 3rem;
  background: #0c8fda;
  display: inline-block;
  text-align: center;
  overflow: hidden;
  border-radius: 10px;
  border: 0;
  color: #fff;
}
.modal_task_add .modal_upload_content input[type=submit]:hover {
  background: #0b7fc2;
  color: #fff;
  cursor: pointer;
  transition: 0.2s all;
}
.modal_task_add .modal_upload_content label {
  position: relative;
  padding: 1rem 3rem;
  background: #eee;
  display: inline-block;
  text-align: center;
  overflow: hidden;
  border-radius: 10px;
}
.modal_task_add .modal_upload_content label:hover {
  background: #0c8fda;
  color: #fff;
  cursor: pointer;
  transition: 0.2s all;
}
.modal_task_add .modal_upload_content div.files {
  background: #eee;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 10px;
}
.modal_task_add .modal_upload_content div.files ul {
  list-style: none;
  padding: 0;
  max-height: 150px;
  overflow: auto;
}
.modal_task_add .modal_upload_content div.files ul li {
  padding: 0.5rem 0;
  padding-right: 2rem;
  position: relative;
}
.modal_task_add .modal_upload_content div.files ul li i {
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translatey(-50%);
}
.modal_task_add .modal_upload_content div.container {
  width: 100%;
  padding: 0 2rem;
}
.modal_task_add .modal_upload_content span.file-size {
  color: #999;
  padding-left: 0.5rem;
}
.modal_task_add .upload_group {
  position: relative;
}
.modal_task_add .upload_group .apload_btn {
  position: absolute;
  background-color: #fff;
  padding: 15px 10px;
  top: 5px;
  right: 0px;
  font-size: 12px;
  pointer-events: none;
  z-index: 5;
}
.modal_task_add .form-group {
  position: relative;
}
.modal_task_add .form-group .float_icon {
  position: absolute;
  left: 15px;
  top: 15px;
  font-size: 32px;
  z-index: 10;
  opacity: 0.5;
}

.modal_add_wallet_section .upload_group {
  position: relative;
  display: flex !important;
  min-height: 60px;
  border: 1px solid rgba(153, 153, 153, 0.2666666667);
  border-radius: 6px;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding: 5px 15px;
}
.modal_add_wallet_section .upload_group .apload_btn {
  position: absolute;
  background-color: #fff;
  padding: 15px 10px;
  top: 5px;
  right: 0px;
  font-size: 12px;
  pointer-events: none;
  z-index: 5;
}

/* --------------- password_page --------------- */
.password_page .password_content {
  padding: 100px 0;
}
.password_page .password_content .password_box {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.0666666667);
  overflow: hidden;
}
.password_page .password_content .password_box .float_img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
  opacity: 0.1;
}
.password_page .password_content .password_box .img {
  padding: 100px 5vw;
  background-color: #f6f8fa;
  height: 100%;
}
.password_page .password_content .password_box .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.password_page .password_content .password_box .form {
  position: relative;
  z-index: 10;
  height: 100%;
  text-align: center;
  padding: 100px 5vw;
}
.password_page .password_content .password_box .form .select_way {
  margin-bottom: 50px;
}
.password_page .password_content .password_box .form .select_way .form-check {
  width: 40%;
}
.password_page .password_content .password_box .form .select_way .form-check .form-check-input {
  display: none;
}
.password_page .password_content .password_box .form .select_way .form-check .form-check-label {
  padding: 20px;
  border: 1px solid rgba(153, 153, 153, 0.1333333333);
  border-radius: 10px;
  width: 100%;
  cursor: pointer;
  font-weight: bold;
  text-align: start;
  background-color: #fff;
}
.password_page .password_content .password_box .form .select_way .form-check .form-check-label .icon {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 10px;
  background-color: #fff;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  font-size: 18px;
  border: 1px solid rgba(253, 185, 0, 0.1333333333);
}
.password_page .password_content .password_box .form .select_way .form-check .form-check-input:checked ~ .form-check-label {
  border-color: var(--mainColor);
  background-color: rgba(253, 185, 0, 0.0666666667);
}
.password_page .password_content .password_box .form .form-control {
  min-height: 60px;
}

.mob_form_group {
  min-height: 60px;
  border: 1px solid rgba(153, 153, 153, 0.267);
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 15px;
}
.mob_form_group .form-control {
  border-radius: 0;
  box-shadow: none;
  border: 0;
  color: var(--subColor);
  min-height: 40px !important;
}
.mob_form_group .select-group {
  position: relative;
}
.mob_form_group .select-group::after {
  position: absolute;
  content: "";
  left: 10px;
  bottom: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(101, 115, 153, 0.2);
  pointer-events: none;
}
.mob_form_group .select-group .flag {
  width: 25px;
  -webkit-margin-end: 10px;
  margin-inline-end: 10px;
}
.mob_form_group .select-group .form-select {
  position: relative;
  border: 0;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
  min-height: auto !important;
}

/* --------------- add_new_expense_page --------------- */
.add_new_expense_page {
  /* ---------------------- */
}
.add_new_expense_page .add_new_expense_content {
  padding: 120px 0;
}
.add_new_expense_page .add_new_expense_content .add_new_expense_box .form-group {
  margin-bottom: 30px;
}
.add_new_expense_page .add_new_expense_content .add_new_expense_box .upload_content {
  text-align: center;
}
.add_new_expense_page .add_new_expense_content .add_new_expense_box .upload_content .upload_label {
  background-color: #f5f5f5;
  padding: 15px 50px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.add_new_expense_page .add_new_expense_content .add_new_expense_box .upload_content .upload_label:hover {
  background-color: var(--subColor);
  color: #fff;
}
.add_new_expense_page .upload_img_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.add_new_expense_page .upload_img_box .imagePreview {
  width: 150px;
  height: 130px;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  margin-right: 0;
  position: absolute;
  background-color: #fff;
  top: 0;
  left: 0;
}
.add_new_expense_page .upload_img_box .file-upload {
  display: inline-block;
  margin: 5px;
}
.add_new_expense_page .upload_img_box .file-select {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.add_new_expense_page .upload_img_box .file-select.file-select-box {
  width: 150px;
  height: 130px;
  display: inline-block;
  border-radius: 14px;
}
.add_new_expense_page .upload_img_box .file-upload-custom-btn {
  width: 150px;
  height: 130px;
  border: none;
  background-color: rgba(170, 176, 207, 0.3333333333);
  color: #AAB0CF;
  font-size: 30px;
  z-index: 1;
  position: relative;
}
.add_new_expense_page .upload_img_box .file-select-name {
  margin-left: 15px;
}
.add_new_expense_page .upload_img_box .file-select input[type=file] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.add_new_expense_page .upload_img_box .file-select.file-select-box input[type=file] {
  z-index: 2;
}
.add_new_expense_page .upload_img_box .file-upload + .file-upload {
  margin-left: 10px;
}
.add_new_expense_page .file-upload {
  position: relative;
  width: 150px;
  height: 130px;
}
.add_new_expense_page .file-upload .old_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
.add_new_expense_page .file-upload .cls {
  position: absolute;
  left: -3px;
  top: -3px;
  z-index: 5;
  cursor: pointer;
  font-size: 15px;
}

.form_lg .form-control {
  min-height: 50px;
}

/* --------------- transactions_page --------------- */
.transactions_page .transactions_content {
  padding: 100px 0;
  background-color: #f6f8fa;
}
.transactions_page .transactions_content .service_card {
  padding: 45px 30px;
  border-radius: 13px;
  background-color: #fff;
  border: 1px solid rgba(153, 153, 153, 0.1333333333);
  text-align: center;
  outline: 5px solid transparent;
  margin-bottom: 30px;
}
.transactions_page .transactions_content .service_card .icon {
  margin-bottom: 25px;
  height: 70px;
}
.transactions_page .transactions_content .service_card h4 {
  font-size: 25px;
  margin-bottom: 10px;
}
.transactions_page .transactions_content .service_card p {
  font-size: 16px;
  color: #51668a;
  font-weight: 500;
}
.transactions_page .transactions_content .service_card:hover {
  outline: 5px solid var(--subColor);
}
.transactions_page .expenses_content {
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
}
.transactions_page .expenses_content .expenses_title {
  padding: 30px;
  margin: 0 auto 30px;
  background-color: #f6f8fa;
  border-radius: 10px;
  text-align: center;
}
.transactions_page .expenses_content .expenses_title .download_links {
  margin-top: 20px;
  margin-bottom: -50px;
}
.transactions_page .expenses_content .expenses_title .download_links a {
  background-color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  margin: 0 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.0274509804);
}
.transactions_page .expenses_content .expenses_title .download_links a:hover {
  background-color: var(--subColor);
  color: #fff;
}
.transactions_page .expenses_content .expenses_card {
  display: block;
  position: relative;
  margin-top: 30px;
  background-color: #fff;
  border-radius: 10px;
  border: solid 2px rgba(10, 39, 84, 0.15);
  padding: 12px 20px;
  overflow: hidden;
}
.transactions_page .expenses_content .expenses_card .float_btns {
  position: absolute;
  top: 15px;
  left: 15px;
}
.transactions_page .expenses_content .expenses_card .float_btns a {
  padding: 5px 15px;
  background-color: #f6f8fa;
  font-size: 10px;
  font-weight: bold;
  border-radius: 5px;
}

.inner_page_content {
  background-color: #fff;
  padding: 50px 30px;
  border-radius: 20px;
}
.inner_page_content .inner_page_content_title {
  padding: 30px;
  margin: 0 auto 30px;
  background-color: #f6f8fa;
  border-radius: 10px;
  text-align: center;
}
.inner_page_content .inner_page_content_title .download_links {
  margin-top: 20px;
  margin-bottom: -50px;
}
.inner_page_content .inner_page_content_title .download_links a {
  background-color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  margin: 0 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.0274509804);
}
.inner_page_content .inner_page_content_title .download_links a:hover {
  background-color: var(--subColor);
  color: #fff;
}

/* --------------- add_new_expense_box --------------- */
.add_new_expense_box {
  /* ---------------------- */
}
.add_new_expense_box .form-group {
  margin-bottom: 30px;
}
.add_new_expense_box .upload_content {
  text-align: center;
}
.add_new_expense_box .upload_content .upload_label {
  background-color: #f5f5f5;
  padding: 15px 50px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.add_new_expense_box .upload_content .upload_label:hover {
  background-color: var(--subColor);
  color: #fff;
}
.add_new_expense_box .upload_img_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.add_new_expense_box .upload_img_box .imagePreview {
  width: 150px;
  height: 130px;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  margin-right: 0;
  position: absolute;
  background-color: #fff;
  top: 0;
  left: 0;
}
.add_new_expense_box .upload_img_box .file-upload {
  display: inline-block;
  margin: 5px;
}
.add_new_expense_box .upload_img_box .file-select {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.add_new_expense_box .upload_img_box .file-select.file-select-box {
  width: 150px;
  height: 130px;
  display: inline-block;
  border-radius: 14px;
}
.add_new_expense_box .upload_img_box .file-upload-custom-btn {
  width: 150px;
  height: 130px;
  border: none;
  background-color: rgba(170, 176, 207, 0.3333333333);
  color: #AAB0CF;
  font-size: 30px;
  z-index: 1;
  position: relative;
}
.add_new_expense_box .upload_img_box .file-select-name {
  margin-left: 15px;
}
.add_new_expense_box .upload_img_box .file-select input[type=file] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.add_new_expense_box .upload_img_box .file-select.file-select-box input[type=file] {
  z-index: 2;
}
.add_new_expense_box .upload_img_box .file-upload + .file-upload {
  margin-left: 10px;
}
.add_new_expense_box .file-upload {
  position: relative;
  width: 150px;
  height: 130px;
}
.add_new_expense_box .file-upload .old_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
.add_new_expense_box .file-upload .cls {
  position: absolute;
  left: -3px;
  top: -3px;
  z-index: 5;
  cursor: pointer;
  font-size: 15px;
}

/* --------------- calc_quantities_page --------------- */
.calc_quantities_page .projects_content .add_project {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100% - 30px);
  border-radius: 15px;
  box-shadow: 0 0 17px 0 rgba(10, 39, 84, 0.08);
  border: solid 2px rgba(10, 39, 84, 0.15);
  margin-bottom: 30px;
}
.calc_quantities_page .projects_content .project_card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 0 17px 0 rgba(10, 39, 84, 0.08);
  border: solid 2px rgba(10, 39, 84, 0.15);
  padding-top: 15px;
  margin-bottom: 30px;
}
.calc_quantities_page .projects_content .project_card .pr_date {
  background-color: rgba(10, 39, 84, 0.0509803922);
  border-radius: 10px;
  padding: 15px 30px;
  margin: 0 15px;
}
.calc_quantities_page .projects_content .project_card .pr_date .pr_date_item {
  display: flex;
}
.calc_quantities_page .projects_content .project_card .pr_date .pr_date_item .icon {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  margin-top: 5px;
}
.calc_quantities_page .projects_content .project_card .pr_date .pr_date_item .inf small {
  font-size: 10px;
  margin-bottom: 5px;
  display: block;
}
.calc_quantities_page .projects_content .project_card .pr_date .pr_date_item .inf p {
  font-weight: bold;
  font-size: 14px;
}
.calc_quantities_page .projects_content .project_card .bttns {
  padding: 40px 20px 20px;
  background-image: url(../images/box-bg-1.svg);
  background-size: cover;
  background-position: top;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}
.calc_quantities_page .projects_content .project_card .bttns .bttn {
  padding: 5px 15px;
  font-size: 12px;
  background-color: #ccc;
  min-width: 80px;
  text-align: center;
}
.calc_quantities_page .projects_content .project_card .bttns .bttn_warning {
  background-color: #CF4813;
  color: #fff;
}
.calc_quantities_page .projects_content .project_card .bttns .bttn_succes {
  background-color: #fff;
  border: 2px solid #07b055;
  color: #07b055;
}

/* --------------- calc_project_page --------------- */
.calc_project_page .calc_project_tabs .nav-pills {
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  margin-bottom: 50px;
}
.calc_project_page .calc_project_tabs .nav-pills .nav-item {
  width: 50%;
  white-space: nowrap;
}
.calc_project_page .calc_project_tabs .nav-pills .nav-item .nav-link {
  width: 100%;
  padding: 20px 30px;
  text-align: center;
  color: var(--subColor);
  font-weight: 600;
  background-color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 0;
}
.calc_project_page .calc_project_tabs .nav-pills .nav-item .nav-link.active {
  background-color: var(--subColor);
  color: #fff;
}
.calc_project_page .calc_project_tabs .nav-pills .nav-item .nav-link .icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  background-color: #cad6ea;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  flex-shrink: 0;
}
.calc_project_page .calc_project_tabs .nav-pills .nav-item .nav-link .icon img {
  max-height: 45px;
}
.calc_project_page .service_card {
  position: relative;
  padding: 40px 30px 50px;
  border-radius: 13px;
  background-color: #fff;
  border: 1px solid rgba(153, 153, 153, 0.1333333333);
  text-align: center;
  outline: 5px solid transparent;
  margin-top: 50px;
}
.calc_project_page .service_card .link {
  position: absolute;
  right: 50%;
  bottom: 0;
  transform: translate(50%, 50%);
  padding: 15px 50px;
  border: 1px solid rgba(153, 153, 153, 0.1333333333);
  white-space: nowrap;
  background-color: #fff;
  font-weight: bold;
  font-size: 12px;
  border-radius: 30px;
}
.calc_project_page .service_card .icon {
  margin-bottom: 15px;
  height: 50px;
}
.calc_project_page .service_card h4 {
  font-size: 25px;
  margin-bottom: 10px;
}
.calc_project_page .service_card p {
  font-size: 16px;
  color: #51668a;
  font-weight: 500;
}
.calc_project_page .service_card:hover {
  outline: 5px solid var(--subColor);
}
.calc_project_page .service_card:hover .link {
  background-color: var(--subColor);
  color: #fff;
}
.calc_project_page .add_sec {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100% - 30px);
  border-radius: 15px;
  box-shadow: 0 0 17px 0 rgba(10, 39, 84, 0.08);
  border: solid 2px rgba(10, 39, 84, 0.15);
  margin-top: 50px;
  min-height: 200px;
}
.calc_project_page .price_det {
  padding: 30px 50px;
  background-color: #f6f8fa;
  border-radius: 15px;
  margin-bottom: 30px;
}
.calc_project_page .price_det ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid rgba(153, 153, 153, 0.2);
  font-size: 18px;
}
.calc_project_page .price_det ul li:last-of-type {
  border: 0;
}
.calc_project_page .price_det .total {
  border: 0;
  background-color: #fff;
  border-radius: 15px;
  padding: 20px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.0196078431);
}
.calc_project_page .base_card {
  display: block;
  position: relative;
  margin-top: 30px;
  background-color: #fff;
  border-radius: 10px;
  border: solid 2px rgba(10, 39, 84, 0.15);
  padding: 12px 20px;
  overflow: hidden;
}
.calc_project_page .base_card .title {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(153, 153, 153, 0.3333333333);
  padding-inline-end: 145px;
  font-size: 16px;
}
.calc_project_page .base_card .title .icon {
    display: none;
}
.calc_project_page .base_card ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  font-size: 12px;
  font-weight: bold;
}
.calc_project_page .base_card ul li:last-of-type {
  border: 0;
}
.calc_project_page .base_card .float_btns {
  position: absolute;
  top: 15px;
  left: 15px;
}
.calc_project_page .base_card .float_btns a {
  padding: 5px 15px;
  background-color: #f6f8fa;
  font-size: 10px;
  font-weight: bold;
  border-radius: 5px;
}

/* --------------- calc_project_page --------------- */
.project_details_page .calc_project_tabs .nav-pills {
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  margin-bottom: 50px;
}
.project_details_page .calc_project_tabs .nav-pills .nav-item {
  width: 50%;
  white-space: nowrap;
}
.project_details_page .calc_project_tabs .nav-pills .nav-item .nav-link {
  width: 100%;
  padding: 20px 30px;
  text-align: center;
  color: var(--subColor);
  font-weight: 600;
  background-color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 0;
}
.project_details_page .calc_project_tabs .nav-pills .nav-item .nav-link.active {
  background-color: var(--subColor);
  color: #fff;
}
.project_details_page .calc_project_tabs .nav-pills .nav-item .nav-link .icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  background-color: #cad6ea;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  flex-shrink: 0;
}
.project_details_page .calc_project_tabs .nav-pills .nav-item .nav-link .icon img {
  max-height: 45px;
}
.project_details_page .service_card {
  position: relative;
  padding: 40px 30px 50px;
  border-radius: 13px;
  background-color: #fff;
  border: 1px solid rgba(153, 153, 153, 0.1333333333);
  text-align: center;
  outline: 5px solid transparent;
  margin: 25px 0;
}
.project_details_page .service_card .link {
  position: absolute;
  right: 50%;
  bottom: 0;
  transform: translate(50%, 50%);
  padding: 15px 50px;
  border: 1px solid rgba(153, 153, 153, 0.1333333333);
  white-space: nowrap;
  background-color: #fff;
  font-weight: bold;
  font-size: 12px;
  border-radius: 30px;
}
.project_details_page .service_card .icon {
  margin-bottom: 15px;
  height: 50px;
}
.project_details_page .service_card h4 {
  font-size: 25px;
  margin-bottom: 10px;
}
.project_details_page .service_card p {
  font-size: 16px;
  color: #51668a;
  font-weight: 500;
}
.project_details_page .service_card:hover {
  outline: 5px solid var(--subColor);
}
.project_details_page .service_card:hover .link {
  background-color: var(--subColor);
  color: #fff;
}
.project_details_page .add_sec {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100% - 30px);
  border-radius: 15px;
  box-shadow: 0 0 17px 0 rgba(10, 39, 84, 0.08);
  border: solid 2px rgba(10, 39, 84, 0.15);
  margin: 25px 0;
  min-height: 200px;
}
.project_details_page .det_content {
  padding: 30px 50px 30px 70px;
  background-color: #f6f8fa;
  border-radius: 15px;
  margin-bottom: 30px;
  position: relative;
}
.project_details_page .det_content .item {
  background-color: #fff;
  border-radius: 10px;
  padding: 50px 30px 30px;
  position: relative;
  margin-top: 30px;
}
.project_details_page .det_content .item .title {
  position: absolute;
  right: 50%;
  top: 0;
  transform: translate(50%, -50%);
  padding: 15px 50px;
  border: 10px solid #F6F8FA;
  white-space: nowrap;
  background-color: #fff;
  font-weight: bold;
  font-size: 12px;
  border-radius: 30px;
}
.project_details_page .det_content .pr_date .pr_date_item {
  display: flex;
}
.project_details_page .det_content .pr_date .pr_date_item .icon {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  margin-top: 5px;
}
.project_details_page .det_content .pr_date .pr_date_item .inf small {
  font-size: 10px;
  margin-bottom: 5px;
  display: block;
}
.project_details_page .det_content .pr_date .pr_date_item .inf p {
  font-weight: bold;
  font-size: 14px;
}
.project_details_page .det_content .expenses_card li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  font-size: 15px;
  font-weight: bold;
}
.project_details_page .det_content .expenses_card .progress_cont {
  position: absolute;
  bottom: -8px;
  text-align: center;
  width: 80%;
  right: 10%;
}
.project_details_page .det_content .expenses_card .progress_cont .progress {
  margin-top: 5px;
  padding: 2px;
  border: 1px solid rgba(15, 36, 96, 0.2);
  border-radius: 15px;
  background-color: #fff;
}
.project_details_page .det_content .expenses_card .progress_cont .progress .progress-bar {
  border-radius: 15px;
  background-color: transparent;
  background-image: linear-gradient(to left, #0f2460, rgba(15, 36, 96, 0.3333333333));
}
.project_details_page .det_content .files_content .file_item {
  display: block;
  margin-top: 30px;
}
.project_details_page .det_content .files_content .file_item .img {
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid #fff;
}
.project_details_page .det_content .files_content .file_item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.project_details_page .det_content .float_edit_btn {
  position: absolute;
  right: 50%;
  bottom: 0;
  transform: translate(50%, 50%);
  outline: 10px solid #fff;
  border: 1px solid var(--mainColor);
}
.project_details_page .expenses_content {
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
}
.project_details_page .expenses_content .expenses_title {
  position: relative;
  padding: 30px;
  margin: 0 auto 30px;
  background-color: #f6f8fa;
  border-radius: 10px;
  text-align: center;
}
.project_details_page .expenses_content .expenses_title .edit_btn {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  /*line-height: 50px;*/
  text-align: center;
  border: 1px solid rgba(153, 153, 153, 0.1333333333);
  background-color: #fff;
  border-radius: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.project_details_page .expenses_content .expenses_title .edit_btn:hover {
  background-color: var(--subColor);
  color: #fff;
}
.project_details_page .expenses_content .expenses_title .download_links {
  margin-top: 20px;
  margin-bottom: -50px;
}
.project_details_page .expenses_content .expenses_title .download_links a {
  background-color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  margin: 0 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.0274509804);
}
.project_details_page .expenses_content .expenses_title .download_links a:hover {
  background-color: var(--subColor);
  color: #fff;
}
/*.project_details_page .expenses_content .expenses_card {*/
/*  display: block;*/
/*  position: relative;*/
/*  margin-top: 30px;*/
/*  background-color: #fff;*/
/*  border-radius: 10px;*/
/*  border: solid 2px rgba(10, 39, 84, 0.15);*/
/*  padding: 12px 20px;*/
/*  overflow: hidden;*/
/*  padding-top: 55px;*/
/*}*/

.project_details_page .expenses_content .expenses_card {
    position: relative;
    padding: 50px 20px;
    background-color: #fff;
    border-radius: 15px;
    display: block;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: calc(100% - 30px);
    z-index: 20;
    border: 1px solid #9993;
}

.project_details_page .expenses_content .expenses_card::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/com_imgs/groups_bg.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    /* z-index: 10; */
    border-radius: 15px;
    opacity: 0.7;
    z-index: -1;
}

.project_details_page .expenses_content .expenses_card .title {
    font-size: 17px;
    /*padding-inline-end: 80px;*/
}

.project_details_page .expenses_content .expenses_card.card_color1 {
  background-color: #f5f9ff;
  border: 0;
  padding: 30px;
}
.project_details_page .expenses_content .expenses_card .float_btns {
  position: absolute;
  top: 15px;
  left: 15px;
}
.project_details_page .expenses_content .expenses_card .float_btns a {
  padding: 5px 10px;
  font-size: 10px;
  font-weight: bold;
  border-radius: 5px;
}

.project_details_page .expenses_content .expenses_card .date {
    position: absolute;
    left: 25px;
    top: 16px;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 5px 5px 15px #0001;
    font-weight: bold;
    font-size: 12px;
    padding: 2px 10px 2px 30px;
}

.project_details_page .expenses_content .expenses_card .paid {
    position: absolute;
    left: 15px;
    top: 15px;
    border-radius: 50%;
    box-shadow: 5px 5px 15px #0001;
    font-weight: bold;
    font-size: 12px;
    padding: 0;
    width: 25px;
    height: 25px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.project_details_page .contractor_content .contractor_data_butn .butn {
  width: 100%;
  height: 140px;
  border-style: dashed;
  line-height: 110px;
}

.modal_files_content .files_content .file_item {
  display: block;
}
.modal_files_content .files_content .file_item .img {
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid #fff;
}
.modal_files_content .files_content .file_item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* --------------- contact_page --------------- */
.contact_page .contact_info_card {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
}
.contact_page .contact_info_card ul li {
  display: flex;
  align-items: center;
  font-size: 18px;
  margin: 15px 0;
}
.contact_page .contact_info_card ul li i {
  width: 30px;
}
.contact_page .contact_form {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
}
.contact_page .contact_map {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  margin-top: 24px;
}

/* --------------- about_page --------------- */
.about_page .about_content .about_sec .img img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-mask-image: url(../images/logo_icon.png);
          mask-image: url(../images/logo_icon.png);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.about_page .about_content .vision_side {
  position: relative;
  padding: 100px 0;
  background-image: linear-gradient(to top, #fff, #fff, transparent);
}
.about_page .about_content .vision_side .item {
  position: relative;
  display: flex;
  margin-bottom: 50px;
}
.about_page .about_content .vision_side .item .icon {
  flex-shrink: 0;
  -webkit-margin-end: 30px;
          margin-inline-end: 30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid rgba(153, 153, 153, 0.2);
  outline: 1px dashed var(--mainColor);
  outline-offset: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 1px 0 rgba(10, 39, 84, 0.25), 0 1px 73px 0 rgba(10, 39, 84, 0.06);
  background-color: #fff;
}
.about_page .about_content .vision_side .item .icon img {
  height: 43px;
  width: 43px;
  -o-object-fit: contain;
     object-fit: contain;
}
.about_page .about_content .vision_side .item .inf h3 {
  font-size: 42px;
  margin-bottom: 15px;
}
.about_page .about_content .vision_side .item .inf p {
  font-size: 20px;
  color: #51668a;
  font-weight: 500;
}
.about_page .about_content .testimonials {
  background-color: #F0F4F8;
  background-image: linear-gradient(to top, #fff, transparent);
}

/* --------------- vimeo_page --------------- */
.vimeo_page .vid_img {
  position: relative;
  border: 1px solid #fff;
  padding: 10px;
  margin-top: 50px;
  height: 350px;
  display: block;
}
.vimeo_page .vid_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.vimeo_page .vid_img .play_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100px;
  height: 100px;
  background-color: #fff;
  border-radius: 50%;
  line-height: 100px;
  text-align: center;
  outline: 1px solid #fff;
  outline-offset: 7px;
}

/* --------------- wallet page --------------- */
.show_hide_password {
  position: relative;
}
.show_hide_password .float_icon {
  position: absolute;
  left: 15px;
  top: 18px;
  z-index: 20;
  cursor: pointer;
}

/* --------------- password_new_content --------------- */
.password_new_content .content_card {
  background-color: #fff;
  padding: 3vw;
  border-radius: 15px;
}
.password_new_content .content_card .form-control {
  min-height: 60px;
  box-shadow: none;
  background-color: #f5f5f5;
  border: 0;
}
.password_new_content .content_card .show_hide_password {
  position: relative;
}
.password_new_content .content_card .show_hide_password .float_icon {
  top: 20px;
}

/* --------------- footer --------------- */
.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: rgba(10, 40, 84, 0.7725490196);
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}
.preloader.loader_done {
  transform: scale(1.5);
  opacity: 0;
  pointer-events: none;
}
.preloader .preloader-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
}
.preloader .spinner-wrap {
  width: 140px;
  height: 140px;
  position: relative;
}
.preloader .spinner {
  position: relative;
  width: 100%;
  height: 100%;
  border: 2px solid var(--mainColor);
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
  border-radius: 20%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  animation: spin 5s infinite linear;
}
.preloader .spinner2 {
  position: relative;
  width: 100%;
  height: 100%;
  border: 2px solid var(--mainColor);
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
  border-radius: 20%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  animation: spin 5s infinite linear reverse;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* 13-05-2023 */
.file-attach {
  line-height: 130px;
  font-size: 30px;
  background-color: #F5F8FA;
  color: #AAB0CF;
  text-align: center;
}

/*mobile nav */
footer{
    padding-bottom: 80px;
}

.navigation{
    /* display: flex; */
    align-items: center;
    justify-content: center;
    background-color: #fff;
    width: calc(100% - 10px);
    height: 65px;
    border-radius: 20px 20px 0 0;
    position: fixed;
    bottom: -1px;
    left:5px;
    z-index: 999;
    filter: drop-shadow(0 0 0.75rem #0002);
    direction: ltr;
}

.navigation ul{
    display: flex;
    /* width: 90%; */
    position: relative;
}

.navigation ul li{
    position: relative;
    width: 90px;
    height: 60px;
    z-index: 2;
}

.navigation ul li a{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    font-weight: 500;
}

.navigation ul li a .icon{
    position: relative;
    display: block;
    line-height: 65px;
    font-size: 1.5em;
    transition: 0.5s;
    color: #222;
}

.navigation ul li.active a .icon{
    transform: translateY(-35px);
    color: var(--mainColor);
}

.navigation ul li a .text{
    position: absolute;
    font-size: 0.75em;
    transition: 0.5s;
    color: #fff;
    background-color: var(--mainColor);
    padding: 2px 7px;
    border-radius: 30px;
    text-transform: capitalize;
    opacity: 0;
    transform: translateY(15px);
}

.navigation ul li.active a .text{
    transform: translateY(-4px);
    opacity: 1;
}

.navigation .indicator{
    position: absolute;
    top: -38px;
    width: 90px;
    height: 70px;
    background-color: #fff;
    border-radius: 50%;
    z-index: 1;
    transition: 0.5s;
}

.navigation .indicator::before{
    position: absolute;
    content: "";
    top: 5px;
    left: -28px;
    width: 30px;
    height: 30px;
    background: transparent;
    border-radius: 50%;
    box-shadow: 15px 18px #fff;
}

.navigation .indicator::after{
    position: absolute;
    content: "";
    top: 5px;
    right: -28px;
    width: 30px;
    height: 30px;
    background: transparent;
    border-radius: 50%;
    box-shadow: -15px 18px #fff;
}

.navigation ul li:nth-child(1).active ~ .indicator {
    transform: translateX(calc(90px * 0));
}

.navigation ul li:nth-child(2).active ~ .indicator {
    transform: translateX(calc(90px * 1));
}

.navigation ul li:nth-child(3).active ~ .indicator {
    transform: translateX(calc(90px * 2));
}

.navigation ul li:nth-child(4).active ~ .indicator {
    transform: translateX(calc(90px * 3));
}



/* NEW WISHLIST */

.wishlist_content {
    position: relative;
}

.wishlist_content .search_form {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50% , 50%);
    width: 50%;
    padding: 10px;
    min-width: 300px;
    background-color: #fff;
    border-radius: 50px;
    border: 10px solid #f0f2f6;
    overflow: hidden;
    display: flex;
}

.wishlist_content .search_form input {
    width: 100%;
    border: 0;
    padding-inline-start: 15px;
}

.wishlist_content .search_form button {
    flex-shrink: 0;
    border: 0;
    background-color: var(--subColor);
    color: #fff;
    padding: 5px 20px;
    border-radius: 30px;
    font-weight: bold;
}

.wishlist_content .nav-pills {
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    /* justify-content: center; */
    /* margin: 80px 0 50px; */
    border-radius: 15px;
    overflow: hidden;
    width: max-content;
}
.wishlist_content .nav-pills .nav-item {
    /* width: 50%; */
    white-space: nowrap;
}
.wishlist_content .nav-pills .nav-item .nav-link {
    width: 100%;
    padding: 15px 60px;
    text-align: center;
    color: var(--subColor);
    font-weight: 600;
    background-color: #f0f2f6;
    font-size: 16px;
    font-weight: bold;
    border-radius: 0;
    border-inline-end: 3px solid #fff;
}
.wishlist_content .nav-pills .nav-item:last-of-type .nav-link {
    border: 0;
}
.wishlist_content .nav-pills .nav-item .nav-link.active {
    background-color: var(--subColor);
    color: #fff;
}
.wishlist_content .nav-pills .nav-item .nav-link .icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    background-color: #cad6ea;
    -webkit-margin-end: 10px;
            margin-inline-end: 10px;
    flex-shrink: 0;
}
.wishlist_content .nav-pills .nav-item .nav-link .icon img {
    max-height: 45px;
}

.wishlist_content .select_filter {
    display: flex;
    align-items: center;
}

.filter {
    margin-bottom: 50px;
}

.filter .form-control {
    min-height: 50px;
}

.wish_cards_content .wish_card {
    position: relative;
    padding: 30px;
    border-radius: 15px;
    background-color: #f0f2f6;
    margin-top: 30px;
    /* height: calc(100% - 30px); */
    /* border: 1px solid #9995; */
    /* box-shadow: 0 0 15px #0001; */
}

.wish_cards_content .wish_card .title {
    font-size: 17px;
    padding-inline-end: 65px;
}

.wish_card .user {
    display: flex;
    align-items: center;
}

.wish_card .user .img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-inline-end: 10px;
    overflow: hidden;
}

.wish_card .user .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wish_card .user p {
    font-size: 16px;
    font-weight: bold;
}

.wish_card .status_labels {
    position: absolute;
    left: 30px;
    bottom: 30px;
}

.wish_card .status_labels a,
.wish_card .status_labels span {
    padding: 5px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: bold;
}

.wish_cards_content .wish_card .vote_box {
    position: absolute;
    left: 30px;
    top: 30px;
    display: flex;
    align-items: center;
}

.wish_cards_content .wish_card .vote_box  .num {
    padding-inline-start: 10px;
    margin-inline-start: 10px;
    border-inline-start: 1px solid #9995;
}

.add_btn {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50% , -50%);
    border: 5px solid #f0f2f6;
    border-radius: 50px;
}

.wishlist_det_content {
  position: relative;
}

.wishlist_det_content .comments_content {
  padding-top: 50px;
  margin-top: 50px;
  border-top: 1px solid #9994;
}

.wishlist_det_content .comments_content .form_comment {
  position: sticky;
  top: 50px;
}

.wishlist_det_content .user {
  display: flex;
  align-items: center;
}

.wishlist_det_content .user .img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-inline-end: 10px;
  overflow: hidden;
}

.wishlist_det_content .user .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wishlist_det_content .user p {
  font-size: 16px;
  font-weight: bold;
}

.wishlist_det_content .comment_card {
  padding: 30px;
  border-radius: 15px;
  /* border: 1px solid #9993; */
  background-color: #f0f2f6;
  margin-bottom: 30px;
}


/* ======== */
@media screen and (max-width: 991px) {
  .section_head h2 {
    font-size: 25px;
  }
  .top_navbar {
    border-bottom: 1px solid rgba(153, 153, 153, 0.3333333333);
  }
  header .info {
    margin-bottom: 20px;
  }
  header .info h1 {
    font-size: 35px;
  }
  header .imgs .img_colmn .img {
    margin: 15px 0 !important;
    height: 250px !important;
  }
  footer {
    overflow: hidden;
  }
  .numbers {
    padding-bottom: 150px;
  }
  .numbers .number_card {
    margin: 30px 0;
  }
  .about::after {
    display: none;
  }
  .about .dark_side {
    color: var(--subColor);
    margin-bottom: 50px;
  }
  .join .join_box .info {
    margin-top: 30px;
  }
  .download .btns a {
    max-width: 40%;
  }
  .download .download_card {
    padding: 0 20px;
  }
  .download .download_card .img {
    height: -moz-max-content;
    height: max-content;
  }
  .download .download_card .shap {
    width: 100%;
    bottom: 0;
    height: -moz-max-content;
    height: max-content;
    top: auto;
  }
  .testimonials .testi_slider_btm .img {
    width: 40px;
    height: 40px;
  }
  .card_white {
    min-height: 250px;
    height: -moz-max-content !important;
    height: max-content !important;
  }
  .inner_page_content {
    padding: 15px;
  }
  .project_details_page .expenses_content .expenses_card .float_btns {
    top: 30px;
  }
  .about_page .about_content .pb_100 {
    padding-bottom: 0 !important;
  }
  .about_page .about_content .vision_side {
    padding: 0;
  }
  .about_page .about_content .vision_side .item {
    display: block;
    margin-top: 50px;
  }
  .about_page .about_content .vision_side .item .icon {
    margin-bottom: 30px;
  }
  .calc_quantities_page .projects_content .add_project {
    min-height: 120px;
  }
  .calc_project_page .price_det {
    padding: 20px 5px;
  }
  .calc_project_page .price_det ul li {
    font-size: 13px;
  }
  .butn {
    padding: 10px 30px;
    min-width: -moz-max-content;
    min-width: max-content;
  }
  .password_page .password_content .password_box .img {
    padding: 30px;
    background-color: #f6f8fa;
    height: 200px;
    text-align: center;
  }
  .profile_pg .nav-pills {
    margin-bottom: 30px;
  }
  .card_white {
    margin: 15px 0;
  }
  .project_details_page .expenses_content {
    padding: 0;
  }
  .project_details_page .expenses_content .expenses_title .download_links a {
    font-size: 12px;
    margin: 3px;
    padding: 5px 10px;
  }
  .project_details_page .expenses_content .expenses_card .float_btns {
    top: 0;
    position: relative;
    margin-top: 20px;
  }
  .project_details_page .expenses_content .expenses_card .float_btns a {
    padding: 5px 10px;
  }
  .project_details_page .det_content {
    padding: 15px;
  }
  .project_details_page .det_content .item {
    margin-top: 60px;
    padding: 30px 15px;
  }
  .project_details_page .det_content .expenses_card li {
    font-size: 10px;
  }
  header .hand_shap {
      left: 0;
  }
  .sections .tab-pane .arrows {
      left: 0;
      width: 100%;
  }
  
  .navbar .navbar-nav .nav-item .nav-link::after {
      display: none;
  }
  
  .navbar .navbar-nav .nav-item .nav-link {
      border: 0;
      padding: 12px 0;
  }
  
  .navbar .side_navbar .nav_side {
      margin-bottom: 20px;
  }
  
  .sections .nav-pills .nav-link {
      padding: 15px 30px;
      font-size: 15px;
  }
  
  .about_page .about_content .about_sec .img img {
      height: 500px;
  }
  
  .contact_page {
      overflow: hidden;
  }
  
  .row.w-100 {
        width: auto !important;
        margin: 0 -20px;
    }
    
    .row.w-100 .col-8{
        padding: 0 8px !important;
    }
    
    .row.w-100 .col-4 {
        padding: 0 8px 0 0 !important;
    }
    
    .password_page .password_content .password_box .form .select_way .form-check .form-check-label {
        padding: 20px 5px;
        text-align: center !important;
        font-size: 13px;
    }
    
    .password_page .password_content .password_box .form .select_way .form-check .form-check-label .icon {
        margin: 0 auto 10px;
    }
    
    .tab_personal .card_white {
        min-height: max-content;
    }
    
    .inner_header_box .links {
        font-size: 12px;
        font-weight: blod;
    }
    
    .inner_header_box .links .line {
        margin: 0 10px;
        width: 10px;
    }
    
    .profile_pg .statistics_tab .chart_statistics .tab_projects .project_cards {
        padding: 0;
        height: max-content;
    }
    
    footer {
        padding-bottom: 80px !important;
    }
    
    .wishlist_content .nav-pills {
        display: block;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .wishlist_content .nav-pills .nav-item {
        width: 49%;
        display: inline-block;
    }
    
    .wishlist_content .nav-pills .nav-item .nav-link {
        border: 1px solid #fff !important;
    }
    
    .contractor_content .bouquet_card .top_info {
        width: 100%;
        margin: 50px auto 0 !important;
    }
    
    .contractor_content .bouquet_card .top_info object {
        margin-inline-start: 0;
        width: 100% !important;
        object-fit: cover;
    }
  
}


/* ======= */
html[dir=ltr] {
  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
}
html[dir=ltr] body {
  direction: ltr;
  font-family: "Poppins", sans-serif;
}/*# sourceMappingURL=style.css.map */


 /*-------------- contractor register ---------------*/
.login_select .btn {
    border-radius: 20px !important;
    /* height: 150px;
    width: 130px; */
    background-color: transparent !important;
    border: 2px solid #9993 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px !important;
    color: #000 !important;
    box-shadow: none !important;
    padding: 30px 50px;
}

.btn-check:checked+.btn {
    background-color: #fdb90044 !important;
    border: 2px solid var(--mainColor) !important;
}

.login_select .btn h6 {
    margin-top: 20px;
}

.login_select .btn .icon {
    height: 80px;
    object-fit: contain;
}

.user_img .avatar-upload {
  position: relative;
  max-width: 200px;
  margin: 50px auto;
}
.user_img .avatar-upload .avatar-edit {
  position: absolute;
  right: 12px;
  z-index: 1;
  top: 10px;
}
.user_img .avatar-upload .avatar-edit input {
  display: none;
}
.user_img .avatar-upload .avatar-edit input + label {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  border-radius: 100%;
  background: #ffffff;
  border: 1px solid transparent;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
}
.user_img .avatar-upload .avatar-edit input + label:hover {
  background: #f1f1f1;
  border-color: #d6d6d6;
}
.user_img .avatar-upload .avatar-edit input + label:after {
  content: "\f040";
  font-family: "Font Awesome 6 Pro";
  color: #757575;
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
}
.user_img .avatar-upload .avatar-preview {
  width: 200px;
  height: 200px;
  position: relative;
  border-radius: 100%;
  border: 6px solid #f8f8f8;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
.user_img .avatar-upload .avatar-preview > div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.user_img.txt_btn .avatar-upload .avatar-edit {
  position: absolute;
  left: 50%;
  right: auto;
  z-index: 1;
  height: max-content;
  bottom: 0;
  top: auto;
  transform: translate(-50%, 20%);
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.0666666667);
  font-size: 10px;
  font-weight: bold;
  white-space: nowrap;
  border-radius: 10px;
}
.user_img.txt_btn .avatar-upload .avatar-edit input {
  display: none;
}
.user_img.txt_btn .avatar-upload .avatar-edit input + label {
  width: 100%;
  height: 100%;
  padding: 10px 30px;
  cursor: pointer;
  box-shadow: none;
  border-radius: 10px;
}
.user_img.txt_btn .avatar-upload .avatar-edit input + label:hover {
  background: #f1f1f1;
  border-color: #d6d6d6;
}
.user_img.txt_btn .avatar-upload .avatar-edit input + label:after {
  display: none;
}
.user_img.txt_btn .avatar-upload .avatar-preview > div {
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
}

.upload_img_preview {
  margin-bottom: 30px;
}
.upload_img_preview .avatar-upload {
  position: relative;
  width: 100%;
}
.upload_img_preview .avatar-upload .avatar-edit {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.0666666667);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.upload_img_preview .avatar-upload .avatar-edit input {
  display: none;
}
.upload_img_preview .avatar-upload .avatar-edit input + label {
  padding: 10px 20px;
  font-size: 12px;
  font-weight: bold;
}
.upload_img_preview .avatar-upload .avatar-edit input + label:hover {
  background: #f1f1f1;
  border-color: #d6d6d6;
}
.upload_img_preview .avatar-upload .avatar-preview {
  width: 100%;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
}
.upload_img_preview .avatar-upload .avatar-preview > div {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.upload_group {
  position: relative;
  display: flex !important;
}
.upload_group .apload_btn {
  position: absolute;
  background-color: #fff;
  padding: 15px 10px;
  top: 5px;
  right: 0px;
  font-size: 12px;
  pointer-events: none;
  z-index: 5;
}

.list_bouquet .bouquet_card {
  padding: 5px;
  background-color: #fff;
  border-radius: 20px;
  text-align: start;
  display: flex;
  border: 1px solid rgba(153, 153, 153, 0.2666666667);
  margin-bottom: 30px;
}
.list_bouquet .bouquet_card .top_info {
  position: relative;
  padding: 30px 30px 20px;
  background-image: linear-gradient(206deg, #fdb900, #0a2754);
  color: #fff;
  border-radius: 15px;
  text-align: center;
  width: 40%;
}
.list_bouquet .bouquet_card .top_info .icon {
  height: 80px;
  margin: 25px 0;
}
.list_bouquet .bouquet_card .top_info .patt {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 70%;
  opacity: 0.5;
}
.list_bouquet .bouquet_card .top_info h4 {
  font-size: 25px;
}
.list_bouquet .bouquet_card .top_info p {
  font-weight: 500;
}
.list_bouquet .bouquet_card .top_info .price {
  text-align: center;
}
.list_bouquet .bouquet_card .top_info .price h6 {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  text-decoration: line-through;
}
.list_bouquet .bouquet_card .top_info .price_cont .b_time {
  border: 1px solid rgba(255, 255, 255, 0.2666666667);
}
.list_bouquet .bouquet_card .top_info .price_cont .b_time h6 {
  color: rgba(255, 255, 255, 0.7960784314);
  font-weight: 300;
}
.list_bouquet .bouquet_card .btm_info {
  padding: 25px;
  width: 60%;
}
.list_bouquet .bouquet_card .btm_info ul li {
  color: #51668a;
  margin: 10px 0;
  font-size: 14px;
  font-weight: 600;
}
.list_bouquet .bouquet_card .btm_info ul li i {
  color: var(--mainColor);
}
.list_bouquet .bouquet_card .price_cont {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}
.list_bouquet .bouquet_card .price_cont .price {
  text-align: center;
  border: 1px solid rgba(153, 153, 153, 0.2666666667);
  border-radius: 10px;
  margin: 0 15px;
  flex-grow: 1;
  padding: 10px;
}
.list_bouquet .bouquet_card .price_cont .price h4 {
  font-size: 18px;
}
.list_bouquet .bouquet_card .price_cont .price h6 {
  color: #51668a;
  font-weight: 300;
  text-decoration: line-through;
  font-size: 14px;
}
.list_bouquet .bouquet_card .price_cont .b_time {
  text-align: center;
  border: 1px solid rgba(153, 153, 153, 0.2666666667);
  border-radius: 10px;
  margin: 0 15px;
  flex-grow: 1;
  padding: 10px;
}
.list_bouquet .bouquet_card .price_cont .b_time h4 {
  font-size: 18px;
}
.list_bouquet .bouquet_card .price_cont .b_time h6 {
  color: #51668a;
  font-weight: 300;
  font-size: 14px;
}

.grid_bouquet .bouquet_card {
  padding: 5px;
  background-color: #fff;
  border-radius: 20px;
}
.grid_bouquet .bouquet_card .top_info {
  position: relative;
  padding: 30px 30px 20px;
  background-image: linear-gradient(206deg, #fdb900, #0a2754);
  color: #fff;
  border-radius: 15px;
  text-align: center;
}
.grid_bouquet .bouquet_card .top_info .icon {
  height: 130px;
  margin-bottom: 30px;
}
.grid_bouquet .bouquet_card .top_info .patt {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 70%;
  opacity: 0.5;
}
.grid_bouquet .bouquet_card .top_info h4 {
  font-size: 25px;
}
.grid_bouquet .bouquet_card .top_info p {
  font-weight: 500;
}
.grid_bouquet .bouquet_card .btm_info {
  padding: 25px;
}
.grid_bouquet .bouquet_card .btm_info ul {
  text-align: start;
}
.grid_bouquet .bouquet_card .btm_info ul li {
  color: #51668a;
  margin: 10px 0;
  font-size: 16px;
  font-weight: 600;
}
.grid_bouquet .bouquet_card .btm_info ul li i {
  color: var(--mainColor);
}
.grid_bouquet .bouquet_card .price_cont {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}
.grid_bouquet .bouquet_card .price_cont .price {
  text-align: center;
  border: 1px solid rgba(153, 153, 153, 0.2666666667);
  border-radius: 10px;
  margin: 0 15px;
  flex-grow: 1;
  padding: 15px;
}
.grid_bouquet .bouquet_card .price_cont .price h6 {
  color: #51668a;
  font-weight: 300;
  text-decoration: line-through;
}
.grid_bouquet .bouquet_card .price_cont .b_time {
  text-align: center;
  border: 1px solid rgba(153, 153, 153, 0.2666666667);
  border-radius: 10px;
  margin: 0 15px;
  flex-grow: 1;
  padding: 15px;
}
.grid_bouquet .bouquet_card .price_cont .b_time h6 {
  color: #51668a;
  font-weight: 300;
}

.recent_bouquet .bouquet_card ul li {
  text-align: center;
}
.recent_bouquet .bouquet_card .icon {
  height: 100px !important;
  margin: 0 !important;
}
.recent_bouquet .bouquet_card .price h4 {
  font-size: 18px;
}
.recent_bouquet .bouquet_card .price h6 {
  font-size: 14px;
}
.recent_bouquet .bouquet_card .b_time h4 {
  font-size: 18px;
}
.recent_bouquet .bouquet_card .b_time h6 {
  font-size: 14px;
}
.recent_bouquet .bouquet_card .count_down {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #f9f9f9;
  padding: 10px;
  border-radius: 10px;
  margin-top: 25px;
}
.recent_bouquet .bouquet_card .count_down li {
  text-align: center;
  font-size: 12px !important;
}
.recent_bouquet .bouquet_card .count_down li span {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 14px !important;
}
.recent_bouquet .bouquet_card .alert {
  margin-top: 20px;
  border-radius: 10px;
  padding: 10px 20px;
}
.recent_bouquet .bouquet_card .alert h6 {
  font-size: 14px;
}

.allow_time {
  position: relative;
  padding: 15px 20px;
  border-radius: 10px;
  border: 1px solid var(--mainColor);
  background-color: rgba(253, 185, 0, 0.0666666667);
  margin-bottom: 20px;
  text-align: center;
}
.allow_time .count_down {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tab_projects .toggle_cont {
  display: flex;
  justify-content: end;
  margin-bottom: 20px;
}

.profile_pg .nav-pills .nav-item:nth-of-type(9) .nav-link .icon {
  background-color: #c6c6ff;
}

.transaction_tab .top_title .btns_side {
  display: flex;
  align-items: center;
}
.transaction_tab .top_title .btns_side .exp_btns {
  padding-inline-start: 20px;
  margin-inline-start: 20px;
  border-inline-start: 1px solid rgba(153, 153, 153, 0.6);
}
.transaction_tab .top_title .btns_side .exp_btns .butn {
  font-size: 12px;
  padding: 12px 20px;
}
.transaction_tab .table_content {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(153, 153, 153, 0.2);
  border-radius: 15px;
  background-color: #fff;
  margin-top: 15px;
}
.transaction_tab .table_content .form-control {
    width: 100px;
    border: 0;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 5px;
    font-size: 12px;
    box-shadow: none;
}
.transaction_tab .table_content .table-responsive::-webkit-scrollbar {
  height: 5px;
  width: 5px;
  background: #f1f1f1;
  border-radius: 10px;
}
.transaction_tab .table_content .table-responsive::-webkit-scrollbar-thumb {
  background: rgba(153, 153, 153, 0.3333333333);
  -webkit-border-radius: 0;
  border-radius: 10px;
}
.transaction_tab .table_content .table-responsive * {
  white-space: nowrap;
}
.transaction_tab .table_content .table-responsive th {
  font-size: 13px;
  font-weight: bold;
  padding: 15px;
}
.transaction_tab .table_content .table-responsive td {
  font-size: 13px;
  padding: 15px;
}
.transaction_tab .table_content .table-responsive tr:last-of-type td {
  border-bottom: 0;
}

.project_details_page .calc_project_tabs .nav-pills .nav-item {
  width: unset;
  flex-grow: 1;
  flex: 1;
  border-left: 1px solid rgba(153, 153, 153, 0.3333333333);
}
.project_details_page .calc_project_tabs .nav-pills .nav-item:last-of-type {
  border: 0;
}
.project_details_page .payment_cards .top_inf {
  padding: 30px 15px;
  background-color: #fff;
  border-radius: 15px;
  margin: 25px 0;
}
.project_details_page .payment_cards .top_inf h6 {
  margin: 10px 0;
  font-size: 15px;
}

.sundries_content .guards_cards .btn-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.sundries_content .guards_cards .btn-group .item .btn {
  box-shadow: none;
  border-radius: 15px;
  margin: 5px;
  padding: 20px;
  border: 2px solid transparent;
}
.sundries_content .guards_cards .btn-group .item .btn .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid var(--mainColor);
}
.sundries_content .guards_cards .btn-group .item .btn .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project_details_page .det_content {
  padding: 30px 40px;
}

.calc_project_content .shared_users {
  margin-top: 30px;
  position: relative;
}
.calc_project_content .shared_users::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
    background-image: linear-gradient(to top, #f6f8fa, transparent);
}
.calc_project_content .shared_users .items {
  height: 280px;
  overflow-x: hidden;
  overflow-y: auto;
}
.calc_project_content .shared_users .items::-webkit-scrollbar {
  height: 0;
  width: 0;
}
.calc_project_content .shared_users .items .card_item {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 100px;
  padding: 10px 10px 10px 20px;
  margin-bottom: 15px;
}
.calc_project_content .shared_users .items .card_item .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-inline-end: 15px;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--mainColor);
}
.calc_project_content .shared_users .items .card_item .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.calc_project_content .shared_users .items .card_item .t_name {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  font-size: 13px;
}
.calc_project_content .shared_users .items .card_item p {
  margin-bottom: 2px;
  line-height: 1;
  font-size: 13px;
}
.calc_project_content .shared_users .items .card_item small {
  font-size: 9px;
  font-weight: bold;
}
.calc_project_content .shared_users .items .card_item .btns {
  margin-top: 10px;
  font-size: 11px;
}

.modal_contractor_info .upload_group {
  min-height: 50px;
  border: 1px solid rgba(153, 153, 153, 0.2666666667);
  border-radius: 6px;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding: 5px 15px;
}
.modal_contractor_info .upload_group .apload_btn {
  top: 0;
  border-radius: 10px;
}

.calc_project_content .expenses_card .added_by {
  position: relative;
  display: block;
  width: max-content;
  z-index: 10;
  cursor: pointer;
  margin-bottom: 15px;
}
.calc_project_content .expenses_card .added_by:hover .card_item {
  opacity: 1;
  visibility: visible;
}
.calc_project_content .expenses_card .added_by .card_item {
  display: inline-flex;
  align-items: center;
  background-color: #FFFAEE;
  border-radius: 100px;
  padding: 10px 10px 10px 20px;
  margin-bottom: 15px;
  position: absolute;
  left: 0;
  bottom: calc(100% - 10px);
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
  white-space: nowrap;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.0666666667);
}
.calc_project_content .expenses_card .added_by .card_item .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-inline-end: 15px;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--mainColor);
}
.calc_project_content .expenses_card .added_by .card_item .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.calc_project_content .expenses_card .added_by .card_item .t_name {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  font-size: 13px;
}
.calc_project_content .expenses_card .added_by .card_item p {
  margin-bottom: 2px;
  line-height: 1;
  font-size: 13px;
}
.calc_project_content .expenses_card .added_by .card_item small {
  font-size: 9px;
  font-weight: bold;
}
.calc_project_content .expenses_card .added_by .card_item .btns {
  margin-top: 10px;
  font-size: 11px;
}

.expenses_add_select .btns .btn_item {
  padding: 50px;
  border-radius: 15px;
  margin: 15px;
  border: 1px solid rgba(153, 153, 153, 0.2666666667);
}
.expenses_add_select .btns .btn_item:hover {
  background-color: rgba(253, 185, 0, 0.0666666667);
  border-color: var(--mainColor);
}
.expenses_add_select .btns .btn_item .icon {
  height: 50px;
}

.project_details_page .expenses_content .expenses_card {
  height: calc(100% - 30px);
}
.project_details_page .expenses_content .expenses_card small {
  font-size: 10px;
  font-weight: 600;
}
.project_details_page .expenses_content .expenses_card .reactionary_cards {
  background-color: #fff7f8;
  border-color: #f8d7da;
  height: max-content;
  margin-top: 15px;
}
.project_details_page .expenses_content .expenses_card .reactionary_cards strong {
  font-size: 12px !important;
}
.project_details_page .expenses_content .expenses_card .reactionary_cards h6 {
  font-size: 13px;
}
.project_details_page .expenses_content .expenses_card .reactionary_cards h5 {
  font-size: 16px;
}



.sundries_content .guards_cards .btn-group .item .btn {
    border: 2px solid #9991;
    background-color: #f9f9f9;
}
.btn-check:checked + .btn {
    background-color: rgb(253 185 0 / 7%) !important;
    border: 2px solid var(--mainColor) !important;
}
.sundries_content .guards_cards .btn-group .item .btn .avatar {
    border-radius: 15px;
    padding-top: 15px;
    border-color: #9993;
    margin: 0 auto 15px;
}
.sundries_content .guards_cards .btn-group .item .btn .avatar img {
    object-fit: contain;
}
.sundries_content .guards_cards .btn-group .item .btn .butn {
    min-width: unset;
    padding: 0;
    width: 30px;
    height: 30px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
  
  
  .archive .project_card {
        opacity: 0.5;
    }
    .tab_projects .form-switch {
        padding-right: 0;
        position: relative;
    }
    .tab_projects .form-switch .form-check-input {
        position: absolute;
        right: 0;
        top: 0;
        margin: 5px;
    }
    .tab_projects .form-switch .form-check-label {
        padding-right: 50px;
        position: relative;
        z-index: 20;
        cursor: pointer;
    }
    
    .choose_sections_accordion {
        margin-top: 15px;
    }

    .choose_sections_accordion .accordion-item {
        margin-bottom: 15px;
        border: 1px solid #9993;
        border-radius: 10px;
        overflow: hidden;
    }

    .choose_sections_accordion .accordion-item .accordion-button {
        box-shadow: none;
        color: #000;
    }

    .choose_sections_accordion .accordion-button:not(.collapsed) {
        background-color: transparent;
        border-bottom: 1px solid #9993;
    }

    .choose_sections_accordion .sections_cards .nav-pills {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .choose_sections_accordion .sections_cards .item {
        padding: 10px 30px;
        border-radius: 10px;
        background-color: #f5f5f5;
        margin: 5px;
        color: #000;
    }

    .choose_sections_accordion .sections_cards .item.active,
    .choose_sections_accordion .sections_cards .item.selected {
        background-color: var(--mainColor);
        color: #fff;
    }

    .choose_sections_accordion .sections_cards .tab-content .wrapper {
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
        background-color: #f9f9f9;
    }

    .choose_sections_accordion .btn-group .btn {
        font-size: 13px;
        box-shadow: none;
        border-radius: 8px !important;
        background-color: #fff;
        overflow: hidden;
        min-width: 100px;
        text-align: center;
        margin: 5px;
        border: 2px solid transparent;
    }
    
    .project_details_page .expenses_content .table-responsive {
        border: 1px solid #9999;
        border-radius: 10px;
        margin-top: 50px;
        padding: 15px;
    }
    
    .project_details_page .expenses_content .table {
        margin: 0;
    }
    
    .project_details_page .expenses_content .table tbody tr:last-of-type td {
        border: 0;
    }
    
    .project_details_page .expenses_content .share_bttn {
        height: calc(100% - 40px);
        transition: all 0.3s ease;
    }
    
    /*--------- */
    .nav_upgrad {
        position: relative;
        padding: 10px 15px;
        background-color: var(--mainColor);
        color: #fff;
        text-align: center;
        font-size: 16px;
    }
    .nav_upgrad a {
        margin-inline-start: 20px;
        padding: 10px 30px;
        border: 1px solid #fff;
        border-radius: 10px;
    }
    
    .nav_upgrad .cls {
        position: absolute;
        left: 30px;
        top: 18px;
        z-index: 10;
        cursor: pointer;
    }
    
    @media screen and (max-width: 991px) {
        .nav_upgrad .cls {
            top: 10px;
            left: 10px;
        }
        .nav_upgrad .text {
            display: block;
            margin: 15px 0;
        }
    }
    
    
    .profile_pg .tab_projects .project_card .shared_by {
        text-align: center;
        padding: 15px;
        background: #f1e9d4;
        border-radius: 0 0 15px 15px;
    }
    
    
    .guard_title {
        position: relative;
        text-align: center;
    }
    .guard_title .edit_ico {
        font-size: 15px;
        width: 35px;
        height: 35px;
        border: 1px solid #999;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-inline-start: 15px;
        border-radius: 8px;
        cursor: pointer;
    }
    .guard_title .edit_ico:hover {
        background-color: #0a2754;
        color: #fff;
    }
    
    .chart_statistics .chart_body {
        position: relative;
    }

    .chart_statistics .chart_body .select_side {
        position: absolute;
        top: -90px;
        left: 0;
        display: flex;
        align-items: center;
    }

    .chart_statistics .chart_body .select_side h6 {
        flex-shrink: 0;
        margin-inline-end: 15px;
    }



.modal .expenses_card {
    display: block;
    position: relative;
    margin-top: 30px;
    background-color: #fff;
    border-radius: 10px;
    border: solid 2px rgba(10, 39, 84, 0.15);
    padding: 12px 20px;
    overflow: hidden;
    background-color: #fff7f8;
    border-color: #f8d7da;
    height: max-content;
    margin-top: 15px;
}

.modal .expenses_card .float_btns {
    position: absolute;
    top: 15px;
    left: 15px;
}

.modal .expenses_card .float_btns a{
    padding: 5px 15px;
    background-color: #f6f8fa;
    font-size: 10px;
    font-weight: bold;
    border-radius: 5px;
}

.modal .expenses_card strong {
    font-size: 12px !important;
}
.modal .expenses_card h6 {
    font-size: 13px;
}
.modal .expenses_card h5 {
    font-size: 16px;
}

.folders {
    position: relative;
}
.folders .folder-item {
    position: relative;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 10px 10px 30px #0001;
    background-color: #fff;
    margin-top: 24px;
    height: calc(100% - 24px);
}
.folders .folder-item.new-folder {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
}
.folders .folder-item .top-inf {
    display: flex;
    justify-content: space-between;
}
.folders .folder-item .top-inf .icon {
    height: 40px;
}
.folders .folder-item .dropdown {
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 10;
}
.folders .folder-item button {
    background: transparent;
    border: 0;
    margin-top: 10px;
}
.folders .folder-item .top-inf button::after {
    display: none;
}
.dropdown-menu {
    padding: 8px;
    border: 0;
    border-radius: 10px;
    box-shadow: 10px 10px 30px #0001;
    background-color: #fff;
    font-size: 14px;
}
.folders .folder-item .dropdown-menu {
    left: auto !important;
    right: 0 !important;
    font-size: 12px;
}
.folders .folder-item .btm-inf {
    margin-top: 10px
}
.folders .folder-item .btm-inf h6 {
    font-size: 14px;
}
.folders .folder-item .btm-inf P {
    font-size: 12px;
    margin-top: 5px;
}
.folders .folder-item .open_modal {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    opacity: 0;
}


.modal .files_content .file_item {
    display: block;
    margin-top: 30px;
  }
  .modal .files_content .file_item .img {
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid #fff;
  }
  .modal .files_content .file_item .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  
.form-control[type=number]{
  direction: rtl!important;
}


.image-container {
  position: relative;
  display: inline-block;
}

.delete-icon {
  position: absolute;
  top: 38px;
  right: 19px;
  background-color: red;
  color: white;
  padding: 1px;
  border-radius: 50%;
  cursor: pointer;
}

.choose_sections_accordion .sections_cards .item.selected{
  /* background-color: rgb(253 185 0 / 7%) !important;
  border: 2px solid var(--mainColor) !important; */
}
.ui-widget.ui-widget-content.ui-autocomplete{
  z-index: 2000;
}

/*----------------*/

.table {
    border-collapse: separate;
    border-spacing: 8px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 10px 10px 20px #0001;
    margin-bottom: 0;
}
.table thead th {
    background-color: #0a2754;
    color: #fff;
    border-radius: 10px;
    padding: 15px;
    font-size: 12px;
}
.table th ,
.table td {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    font-size: 12px;
    border: 0;
    white-space: nowrap;
}

.table .form-control {
    font-size: 12px;
}

.table-responsive {
    border: 1px solid #9994;
    border-radius: 10px;
    margin-top: 50px;
    padding: 0;
}

.table-responsive::-webkit-scrollbar {
    height: 4px;
    width: 10px;
    background: #f1f1f1;
    border-radius: 10px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: #9995;
    border-radius: 10px;
}

.table-responsive::-webkit-scrollbar-corner {
    background: #9995;
    border-radius: 10px;
}


.project_details_page .expenses_content .expenses_card .text, .project_details_page .expenses_content .expenses_card .text * {
    font-size: 12px;
}

.project_details_page .bouquet_card .download_links {
    margin-top: 20px;
    text-align: center;
}
.project_details_page .bouquet_card .download_links a {
    background-color: #0a2754;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    margin: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.0274509804);
}

.project_details_page .expenses_content .expenses_card .det .item {
    position: relative;
    display: block;
    width: 100%;
    margin: 10px 0 !important;
}

.project_details_page .expenses_content .expenses_card .float_btns {
    position: absolute;
    top: auto;
    bottom: 15px;
    left: 15px;
    width: calc(100% - 30px);
    text-align: center;
    border-top: 1px solid #9995;
    padding-top: 10px;
}

.project_details_page .expenses_content .expenses_card hr {
    display: none;
}

.project_details_page .expenses_content .expenses_card .float_btns a {
    margin: 2px !important;
}

.project_details_page .expenses_content .expenses_card {
    padding: 45px 20px 60px;
}

.contractor_content .bouquet_card .count_down {
    border-radius: 10px;
    background-color: #fff;
}

.contractor_content .bouquet_card .name_title {
    margin-top: 15px;
}

.contractor_content .bouquet_card .top_info {
    padding: 0;
    width: 300px;
    overflow: hidden;
}

.contractor_content .bouquet_card .top_info object {
    margin-inline-start: -15px;
    border-radius: 12px;
}

.contractor_content .bouquet_card .top_info {
    margin-inline-end: 20px;
}

.contractor_content .bouquet_card .top_info .contract {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contractor_content .bouquet_card .phone_cont{
    /*border-radius: 10px;*/
    /*background-color: #fff;*/
    /*padding: 31px 25px;*/
    margin-top: 20px;
}


/*--------- 22/ 5 --------*/
.bouquet-price .nav-pills{
    width: max-content;
    margin: 0 auto 20px;
    border-radius: 50px;
    overflow: hidden;
}

.bouquet-price .nav-pills .nav-link {
    padding: 15px 50px !important;
    border-radius: 0;
}
.price-cards .item {
    position: relative;
    padding: 30px 30px 60px;
    background-color: #fff;
    border-radius: 15px;
    margin-top: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100% - 20px);
    z-index: 20;
}
.price-cards .item .bq_name {
    font-size: 9px;
    background-color: #fdb90022;
    border-radius: 30px;
    padding: 3px 15px;
    margin-bottom: 10px;
    display: inline-block;
}

.price-cards .item .price {
    position: relative;
    margin-top: 15px;
}
.price-cards .item .disc {
    position: relative;
    font-size: 11px;
    white-space: nowrap;
}
.price-cards .item .recom {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -100%);
    top: 0;
    border-radius: 30px 30px 0 0;
    padding: 5px 50px;
    white-space: nowrap;
    background-color: #fff;
    box-shadow: 5px 5px 20px #0001;
}
.price-cards .item .butn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    border-radius: 30px 30px 0 0;
    padding: 5px 50px;
}
.price-cards .item.recom::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(https://app-system.costs-app.com/assets/web/images/com_imgs/groups_bg.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    /* z-index: 10; */
    border-radius: 15px;
    opacity: 0.7;
    z-index: -1;
}

.list_bouquet .table tbody tr td {
    text-align: center;
}


/* To make email and phone inputs starts from the same direction of the website */
.form .form-control {
  direction: inherit;
}

.grid_bouquet .bouquet_card .price_cont .price {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contractor_content.grid_bouquet {
    margin-top: 30px;
}


@media screen and (max-width: 991px) {
    .project_details_page {
        overflow: hidden;
    }
    .project_details_page .expenses_content .expenses_card {
        padding: 45px 20px 100px;
    }
    
    .project_details_page .det_content>.row {
        display: block;
    }
    .project_details_page .det_content {
        padding: 15px;
    }
    
    .expenses_add_select .btns {
        display: flex;
        justify-content: center;
    }
    
    .expenses_add_select .btns .btn_item {
        padding: 30px;
        margin: 15px 10px;
    }
    
    .project_details_page .bouquet_card .download_links a {
        padding: 8px 12px;
    }
    
    .grid_bouquet .bouquet_card .price_cont .b_time {
        margin: 20px 5px 10px !important;
    }
    
    .bouquet-price .nav-pills .nav-link {
        padding: 12px 30px !important;
    }
    
    .price-cards .item {
        height: calc(100% - 50px);
        margin-top: 0;
        margin-bottom: 50px;
    }
    
    .chart_statistics .chart_body .select_side {
        position: relative;
        top: 0;
        margin-bottom: 15px;
    }
    
    .profile_pg .chart_statistics .nav-pills {
        margin-bottom: 0;
    }
    
}


p.offer {
  font-size: 16px;
  font-weight: bold;
  color: #ffb6b6;
}
span.offer-price {
  text-decoration: line-through;
}
i.fal.fa-check-circle {
  font-size: 16px;
  color: green;
}
i.fal.fa-times-circle {
  font-size: 16px;
  color: red;
}
