@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  position: relative;
  background-color: #f5f5f5;
}

html {
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
  box-sizing: border-box;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-thumb {
  background: #e1e1e1;
  border: 0px none #ffffff;
  border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ffffff;
}

::-webkit-scrollbar-thumb:active {
  background: #000000;
}

::-webkit-scrollbar-track {
  background: #666666;
  border: 0px none #ffffff;
  border-radius: 50px;
}

::-webkit-scrollbar-track:hover {
  background: #666666;
}

::-webkit-scrollbar-track:active {
  background: #333333;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

*,
::before,
::after {
  box-sizing: border-box;
}

i {
  line-height: inherit !important;
}

a {
  transition: all 0.3s ease-out 0s;
  text-decoration: none;
}
a:hover {
  transition: all 0.3s ease-out 0s;
  text-decoration: none;
}

i {
  transition: all 0.3s ease-out 0s;
}

button {
  transition: all 0.3s ease-out 0s;
}

i {
  line-height: inherit !important;
}

.row-no-gutter {
  margin: 0;
}
.row-no-gutter > * {
  padding: 0;
}

.row-5-gutter {
  margin-left: -5px;
  margin-right: -5px;
}
.row-5-gutter > * {
  padding-left: 5px;
  padding-right: 5px;
}

.row-small-gutter {
  margin-left: -7.5px;
  margin-right: -7.5px;
}
.row-small-gutter > * {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.row-middle-gutter {
  margin-left: -20px;
  margin-right: -20px;
}
.row-middle-gutter > * {
  padding-left: 20px;
  padding-right: 20px;
}

.row-large-gutter {
  margin-left: -50px;
  margin-right: -50px;
}
.row-large-gutter > * {
  padding-left: 50px;
  padding-right: 50px;
}

.row-10-gutter {
  margin-left: -10px;
  margin-right: -10px;
}
.row-10-gutter > * {
  padding-left: 10px;
  padding-right: 10px;
}

.leftBar {
  position: absolute;
  left: 0;
  width: 275px;
  background-color: #fff;
  min-height: 100vh;
  height: 100%;
}
.leftBar .leftBarTop {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 180px;
  background-color: #a8aaac;
}
.leftBar .leftBarTop .user {
  text-transform: uppercase;
  font-size: 17 px;
  font-weight: 600;
  color: #fff;
  margin-top: 15px;
}
.leftBar .menu {
  padding: 50px 40px;
}
.leftBar .menu ul {
  margin: 0;
  padding: 0;
}
.leftBar .menu ul li {
  position: relative;
  list-style: none;
  margin-bottom: 35px;
}
.leftBar .menu ul li a {
  color: #a8aaac;
}
.leftBar .menu ul li a .icon {
  font-size: 20px;
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 20px;
}
.leftBar .menu ul li a .text {
  font-size: 15px;
  margin-left: 30px;
}
.leftBar .menu ul li:hover a {
  color: #1d1f21;
}
.leftBar .menu ul li a.current {
  color: #1d1f21;
}

.main {
  width: calc(100% - 275px);
  margin-left: 275px;
}
.main .padding {
  padding: 50px;
}
.main .generalTitle {
  color: #a8aaac;
  font-size: 16px;
  font-weight: 700;
}
.main .generalTitle a {
  color: #1d1f21;
}
.main .generalTitle span {
  float: right;
}
.main .generalTitle span.reset a {
  color: #a8aaac;
  cursor: pointer;
}
.main .safe .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 10px;
  height: 150px;
  padding: 0px 25px;
}
.main .safe .item .currency {
  color: #a8aaac;
}
.main .safe .item .money {
  color: #1d1f21;
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
}
.main .safe .item .convert {
  color: #1d1f21;
  font-size: 14px;
  margin-top: 10px;
}
.main .safe .item.item-last {
  position: relative;
}
.main .safe .item.item-last .item-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 150px;
}
.main .safe .item.item-last .item-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.main .safe .item.item-last .total {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  padding: 0px 30px;
}
.main .safe .item.item-last .total .title {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.main .safe .item.item-last .total .money {
  background-color: #fff;
  font-size: 16px;
  color: #616be8;
  border-radius: 15px;
  padding: 5px;
}

.box {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 15px;
}
.box.green {
  background-color: #e6ffeb;
}
.box.red {
  background-color: #f8d7da;
}
.box .filter .input {
  position: relative;
}
.box .filter .input.error input,
.box .filter .input.error select {
  animation: backgroundAnim 1s ease-in-out infinite alternate;
}
.box .filter .input input {
  width: 100%;
  border-radius: 5px;
  color: #a0b8c9;
  padding: 10px;
  outline: none;
  border: none;
  font-size: 13px;
  background-color: #f5f6fa;
}
.box .filter .input select {
  width: 100%;
  border-radius: 5px;
  color: #a0b8c9;
  padding: 10px;
  outline: none;
  border: none;
  font-size: 13px;
  background-color: #f5f6fa;
}
.box .filter .input .icon {
  position: absolute;
  right: 8px;
  top: 4px;
  font-size: 20px;
  color: #a0b8c9;
}

.analys .analys-left {
  width: 320px;
  float: left;
}
.analys .analys-right {
  width: calc(100% - 330px);
  margin-left: 10px;
  float: left;
}
.analys:after {
  content: "";
  clear: both;
  display: table;
}

.alignCenterH {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dashboard-money-box .money .label {
  margin-top: 20px;
  font-size: 15px;
  color: #a8aaac;
  margin-bottom: 5px;
}
.dashboard-money-box .money .price {
  color: #1d1f21;
  font-size: 20px;
  font-weight: 700;
}
.dashboard-money-box .total {
  margin-top: 20px;
  padding: 10px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 20px;
  position: relative;
}
.dashboard-money-box .total.up {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.dashboard-money-box .total.down {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.dashboard-money-box .total .icon {
  position: absolute;
  left: 10px;
  top: 9px;
  font-size: 20px;
  background-color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
.dashboard-money-box .total .price {
  padding-left: 40px;
}

.generalFinance .financeBox {
  padding: 15px 0px 15px 40px;
  position: relative;
}
.generalFinance .financeBox::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translate(0%, -50%);
  width: 15px;
  height: 15px;
  background-color: #155724;
  border-radius: 50%;
}
.generalFinance .financeBox.red::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translate(0%, -50%);
  width: 15px;
  height: 15px;
  background-color: #fa0d01;
  border-radius: 50%;
}
.generalFinance .financeBox.total {
  padding: 15px;
}
.generalFinance .financeBox.total::before {
  content: none;
}
.generalFinance .financeBox .generalFinanceTitle {
  color: #1d1f21;
  font-size: 16sspx;
}
.generalFinance .financeBox .generalFinanceTitle.green {
  color: #18c180;
}
.generalFinance .financeBox .generalFinanceTitle.red {
  color: #721c24;
}
.generalFinance .financeBox .generalFinanceMoney {
  color: #1d1f21;
  font-size: 22px;
  font-weight: 700;
  margin-top: 2px;
}
.generalFinance .financeBox .generalFinanceMoney.green {
  color: #18c180;
}
.generalFinance .financeBox .generalFinanceMoney.red {
  color: #721c24;
}
.generalFinance .financeBox .generalFinanceMoneyIcon {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translate(0, -50%);
  background-color: #fff;
  border-radius: 50%;
  width: 75px;
  height: 75px;
  line-height: 75px;
  text-align: center;
  font-size: 25px;
}
.generalFinance .financeBox .generalFinanceMoneyIcon.green {
  color: #18c180;
}
.generalFinance .financeBox .generalFinanceMoneyIcon.red {
  color: #721c24;
}
.generalFinance .financeBox .generalFinanceView {
  font-size: 13px;
  font-weight: 600;
  margin-top: 2px;
}
.generalFinance .financeBox .generalFinanceView.green {
  color: #18c180;
}
.generalFinance .financeBox .generalFinanceView.red {
  color: #fa0d01;
}

.height-100 {
  height: 100px;
}
.height-200 {
  height: 200px;
}
.height-300 {
  height: 300px;
}
.height-400 {
  height: 400px;
}
.height-500 {
  height: 500px;
}
.height-600 {
  height: 600px;
}
.height-700 {
  height: 700px;
}
.height-800 {
  height: 800px;
}
.height-900 {
  height: 900px;
}
.height-1000 {
  height: 1000px;
}
.height-135 {
  height: 135px;
}

.daterangepicker .drp-buttons .btn {
  background-color: #1d1f21;
  color: white;
  border-radius: 0px !important;
  border-color: #1d1f21;
}
.daterangepicker .ranges li.active,
.daterangepicker .ranges li:hover {
  background-color: #1d1f21;
  color: white;
  border-radius: 0px !important;
}
.daterangepicker .calendar-table tr td.active,
.daterangepicker .calendar-table tr td.active:hover {
  background-color: #1d1f21;
  color: white;
  border-radius: 0px !important;
}
.daterangepicker .calendar-table tr td.in-range,
.daterangepicker .calendar-table tr td.in-range:hover {
  background-color: #1d1f21;
  color: white;
  border-radius: 0px !important;
}
.daterangepicker td.active,
.daterangepicker td.active:hover {
  background-color: #1d1f21 !important;
  border-color: #1d1f21 !important;
  color: white !important;
  border-radius: 0px !important;
}
.daterangepicker td.in-range,
.daterangepicker td.in-range:hover {
  background-color: #1d1f21 !important;
  border-color: #1d1f21 !important;
  color: white !important;
  border-radius: 0px !important;
}

.futurePayments .futurePaymentSwiper .futurePaymentitem {
  background-color: #f5f5f5;
  border-radius: 5px;
}
.futurePayments .futurePaymentSwiper .futurePaymentitem .dateMonth {
  padding: 10px;
  font-size: 20px;
  color: #1d1f21;
  font-weight: 700;
}
.futurePayments .futurePaymentSwiper .futurePaymentitem .total {
  padding: 10px;
  font-size: 17px;
  color: #1d1f21;
  font-weight: 700;
  text-transform: uppercase;
}
.futurePayments .futurePaymentSwiper .futurePaymentitem ul {
  margin: 0;
  padding: 0;
  height: 290px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 10px;
}
.futurePayments .futurePaymentSwiper .futurePaymentitem ul li {
  background-color: #ffffff;
  list-style: none;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
}
.futurePayments .futurePaymentSwiper .futurePaymentitem ul li .title {
  color: #1d1f21;
  font-size: 15px;
}
.futurePayments .futurePaymentSwiper .futurePaymentitem ul li .title a {
  color: #1d1f21;
}
.futurePayments .futurePaymentSwiper .futurePaymentitem ul li .date {
  color: #a8aaac;
  font-size: 13px;
}
.futurePayments .futurePaymentSwiper .futurePaymentitem ul li .price {
  color: #1d1f21;
  font-weight: 600;
  text-align: right;
}

.cardDate .cardDateItem {
  margin-bottom: 15px;
}
.cardDate .cardDateItem .cardType {
  background-color: #fff;
  border-radius: 10px;
}
.cardDate .cardDateItem .cardType img {
  padding: 10px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  border-radius: 10px;
}
.cardDate .cardDateItem .label {
  font-size: 13px;
  color: #1d1f21;
  font-weight: 600;
}
.cardDate .cardDateItem .number {
  color: #1d1f21;
  font-size: 13px;
  font-weight: 700;
}

.totalBalanceBar .priceBar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 75px;
  background-color: #1d1f21;
  border-radius: 5px;
  padding: 0px 20px;
}
.totalBalanceBar .priceBar .title {
  color: #fff;
  font-size: 14px;
}
.totalBalanceBar .priceBar .price {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}
.totalBalanceBar .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 75px;
  padding: 0px 20px;
}
.totalBalanceBar .box .searchbar input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #a8aaac;
  outline: none;
  background-color: #f5f5f5;
  font-size: 13px;
  border-radius: 5px;
}
.totalBalanceBar .box .searchbar input::-moz-placeholder {
  font-size: 13px;
  color: #1d1f21;
  font-weight: 700;
}
.totalBalanceBar .box .searchbar input::placeholder {
  font-size: 13px;
  color: #1d1f21;
  font-weight: 700;
}

.tabSystems ul {
  margin: 0;
  padding: 0;
  display: flex;
  border-bottom: 1px solid rgba(168, 170, 172, 0.4666666667);
}
.tabSystems ul li {
  list-style: none;
  margin-right: 20px;
}
.tabSystems ul li a {
  padding-bottom: 15px;
  color: #1d1f21;
  font-size: 14px;
  position: relative;
}
.tabSystems ul li a.active::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #1d1f21;
  left: 0;
  bottom: -2.5px;
  border-radius: 10px;
}
.tabSystems ul li a:hover {
  color: #01385e;
}
.tabSystems .tab-content .list .companyItem .listCompaniesItem {
  background-color: #fff;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 5px;
  position: relative;
}
.tabSystems .tab-content .list .companyItem .listCompaniesItem a {
  color: #1d1f21;
  font-weight: 700;
}
.tabSystems .tab-content .list .companyItem .listCompaniesItem::after {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translate(0%, -50%);
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 20px;
}
.tabSystems .tab-content .list .companyItem a {
  color: #1d1f21;
  font-weight: 700;
}
.tabSystems .tab-content .listProject .listProjectItem {
  background-color: #fff;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 5px;
}
.tabSystems .tab-content .listProject .listProjectItem .title {
  color: #1d1f21;
  font-weight: 700;
  cursor: pointer;
}
.tabSystems .tab-content .listProject .listProjectItemList {
  margin-top: 20px;
}
.tabSystems .tab-content .listProject .listProjectItemList .projectTitle a {
  display: block;
  background-color: #f5f5f5;
  text-align: center;
  padding: 20px 10px;
  color: #1d1f21;
  margin-bottom: 10px;
  font-size: 15px;
}

.newButton a {
  font-size: 14px;
  color: #1d1f21;
  font-weight: 700;
  position: relative;
  padding-left: 20px;
}
.newButton a::before {
  position: absolute;
  left: 2px;
  top: -1.7px;
  content: "+";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.single .turnBack a {
  cursor: pointer;
  font-size: 15px;
  color: #1d1f21;
  font-weight: 500;
  margin-top: 30px;
}
.single .form {
  margin-top: 35px;
}
.single .form .title {
  font-size: 25px;
  color: #1d1f21;
  font-weight: 700;
  margin-bottom: 20px;
}
.single .form .subTitle {
  font-size: 15px;
  color: #1d1f21;
  font-weight: 700;
}
.single .form .input {
  margin-top: 15px;
}
.single .form .input.error input,
.single .form .input.error select {
  animation: backgroundAnim 1s ease-in-out infinite alternate;
}
.single .form .input .simple-description {
  font-size: 12px;
  margin-top: 5px;
  color: #a8aaac;
}
.single .form .input .label {
  font-size: 15px;
  color: #1d1f21;
  font-weight: 500;
  margin-bottom: 15px;
  position: relative;
}
.single .form .input .label span {
  position: absolute;
  right: 0;
  top: 0;
}
.single .form .input .label span a {
  cursor: pointer;
  color: #1d1f21;
}
.single .form .input .label span.required {
  color: #800202;
}
.single .form .input input {
  width: 100%;
  padding: 12px;
  border: 1px solid #f5f5f5;
  background-color: #fff;
  outline: none;
  font-size: 14px;
  border-radius: 5px;
  color: #a8aaac;
}
.single .form .input input::-moz-placeholder {
  color: #a8aaac;
}
.single .form .input input::placeholder {
  color: #a8aaac;
}
.single .form .input input:-moz-read-only {
  background-color: #ededed;
}
.single .form .input input:read-only {
  background-color: #ededed;
}
.single .form .input input.filterRange {
  color: #a8aaac;
}
.single .form .input select {
  width: 100%;
  padding: 12px;
  border: 1px solid #f5f5f5;
  background-color: #fff;
  outline: none;
  font-size: 14px;
  color: #a8aaac;
  border-radius: 5px;
}
.single .form .input select:disabled {
  background-color: #ededed;
}
.single .form .input textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #f5f5f5;
  background-color: #fff;
  outline: none;
  font-size: 14px;
  color: #a8aaac;
  border-radius: 5px;
  max-height: 80px;
  min-height: 80px;
}
.single .form .input textarea::-moz-placeholder {
  color: #a8aaac;
}
.single .form .input textarea::placeholder {
  color: #a8aaac;
}
.single .form .input .inputUploadFiles {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.single .form .input .inputUploadFiles .inputFile {
  flex: 1 1 calc(50% - 20px);
}
.single .form .input .inputUploadFiles .inputFile a {
  display: block;
  border: 1px dashed #6fb2fa;
  padding: 7px 12px;
  font-size: 13px;
  color: #a8aaac;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.single .form .submitForm {
  margin-top: 20px;
  float: right;
}
.single .form .submitForm button {
  outline: none;
  border: none;
  background-color: #1d1f21;
  color: #fff;
  font-weight: 700;
  padding: 7px 20px;
  font-size: 13px;
  border-radius: 5px;
}
.single .form .submitForm button:disabled {
  opacity: 0.5;
}
.single .form .submitForm button span {
  display: none;
}
.single .form .moreCategory {
  margin-top: 30px;
}
.single .form .moreCategory input, .single .form .moreCategory button {
  cursor: pointer;
  outline: none;
  border: none;
  background-color: #c10202;
  color: #fff;
  font-weight: 700;
  padding: 7px 20px;
  font-size: 13px;
  border-radius: 5px;
}
.single .form .moreSubCategory {
  margin-top: 10px;
}
.single .form .moreSubCategory input, .single .form .moreSubCategory button {
  cursor: pointer;
  outline: none;
  border: none;
  background-color: #0584eb;
  color: #fff;
  font-weight: 500;
  padding: 5px 15px;
  font-size: 11px;
  border-radius: 5px;
}
.single .offerBG {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  height: 100vh;
}
.single .offerBG img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.single .offerResult {
  margin-top: 80px;
  width: 500px;
}
.single .offerResult .check {
  color: #34b233;
  font-size: 120px;
}
.single .offerResult .text {
  font-size: 30px;
  line-height: 40px;
  color: #1D1F21;
  font-weight: 800;
}
.single .downloadOffer {
  margin-top: 20px;
}
.single .downloadOffer a {
  display: inline-block;
  background-color: #FB083F;
  padding: 10px 20px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  border-radius: 5px;
}
.single .allOffer {
  margin-top: 30px;
}
.single .allOffer a {
  display: block;
  color: #1D1F21;
  font-size: 14px;
}

.alert {
  border-radius: 0px;
  padding: 12px;
  font-size: 14px;
}

.customPopupContainer .modal-content {
  border-radius: 10px;
}
.customPopupContainer .modal-content .popupContent {
  padding: 15px;
  width: 90%;
  margin: 0 auto;
}
.customPopupContainer .modal-content .popupContent.popupContentLeadDetail {
  font-size: 14px;
}
.customPopupContainer .modal-content .popupContent.popupContentLeadDetail ul {
  margin: 0;
  padding: 0;
}
.customPopupContainer .modal-content .popupContent.popupContentLeadDetail ul li {
  list-style: none;
  color: #01385e;
  margin-bottom: 5px;
}
.customPopupContainer .modal-content .popupContent.popupContentLeadDetail ul li ul {
  margin-left: 20px;
}
.customPopupContainer .modal-content .popupContent .popupContentItem .label {
  margin-top: 15px;
  font-size: 15px;
  color: #1d1f21;
  font-weight: 500;
  position: relative;
}
.customPopupContainer .modal-content .popupContent .popupContentItem .label span {
  position: absolute;
  right: 0;
  top: 0;
}
.customPopupContainer .modal-content .popupContent .popupContentItem .label span a {
  cursor: pointer;
  color: #1d1f21;
}
.customPopupContainer .modal-content .popupContent .popupContentItem .label span.required {
  color: #800202;
}
.customPopupContainer .modal-content .popupContent .popupContentItem .input {
  margin-top: 15px;
}
.customPopupContainer .modal-content .popupContent .popupContentItem .input.error input,
.customPopupContainer .modal-content .popupContent .popupContentItem .input.error select {
  animation: backgroundAnim 1s ease-in-out infinite alternate;
}
.customPopupContainer .modal-content .popupContent .popupContentItem .input input {
  width: 100%;
  padding: 12px;
  border: 1px solid #f5f5f5;
  background-color: #fff;
  outline: none;
  font-size: 14px;
  color: #a8aaac;
  border-radius: 5px;
}
.customPopupContainer .modal-content .popupContent .popupContentItem .input input::-moz-placeholder {
  color: #a8aaac;
}
.customPopupContainer .modal-content .popupContent .popupContentItem .input input::placeholder {
  color: #a8aaac;
}
.customPopupContainer .modal-content .popupContent .popupContentItem .input input:-moz-read-only {
  background-color: #ededed;
}
.customPopupContainer .modal-content .popupContent .popupContentItem .input input:read-only {
  background-color: #ededed;
}
.customPopupContainer .modal-content .popupContent .popupContentItem .input input.filterRange {
  color: #a8aaac;
}
.customPopupContainer .modal-content .popupContent .popupContentItem .input select {
  width: 100%;
  padding: 12px;
  border: 1px solid #f5f5f5;
  background-color: #fff;
  outline: none;
  font-size: 14px;
  color: #a8aaac;
  border-radius: 5px;
}
.customPopupContainer .modal-content .popupContent .popupContentItem .input select:disabled {
  background-color: #ededed;
}
.customPopupContainer .modal-content .popupContent .popupContentItem .input textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #f5f5f5;
  background-color: #fff;
  outline: none;
  font-size: 14px;
  color: #a8aaac;
  border-radius: 5px;
  max-height: 80px;
  min-height: 80px;
}
.customPopupContainer .modal-content .popupContent .popupContentItem .input textarea::-moz-placeholder {
  color: #a0b8c9;
}
.customPopupContainer .modal-content .popupContent .popupContentItem .input textarea::placeholder {
  color: #a0b8c9;
}
.customPopupContainer .modal-content .popupContent .popupContentItem .description {
  font-size: 12px;
  color: #1d1f21;
  margin-top: 5px;
}
.customPopupContainer .modal-content .popupContent .popupContentSubmit button {
  float: right;
  display: inline-block;
  border: none;
  margin-top: 20px;
  background-color: #1d1f21;
  color: #fff;
  font-weight: 700;
  padding: 7px 20px;
  font-size: 13px;
  border-radius: 5px;
}
.customPopupContainer .modal-content .popupContent .popupContentSubmit button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.customPopupContainer .modal-content .popupContent .popupContentSubmit button span {
  display: none;
}
.customPopupContainer .modal-content .popupContent .popupAgreementItem {
  width: 100%;
  padding: 12px;
  border: 1px solid #f5f5f5;
  background-color: #fff;
  outline: none;
  font-size: 14px;
  color: #a8aaac;
  border-radius: 5px;
}
.customPopupContainer .modal-content .popupContent .popupAgreementItem .title {
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 20px;
}
.customPopupContainer .modal-content .popupContent .popupAgreementItem .ext {
  font-size: 12px;
  margin-top: 5px;
  text-transform: uppercase;
  text-align: center;
}
.customPopupContainer .modal-content .popupContent .popupAgreementItem a {
  color: #a8aaac;
}

@keyframes backgroundAnim {
  0% {
    background-color: rgba(177, 214, 244, 0.1);
  }
  100% {
    background-color: rgba(255, 198, 198, 0.3);
  }
}
.dropzone {
  border: 2px dashed #6fb2fa;
  background-color: #f7fbff;
  padding: 15px;
  text-align: center;
  font-size: 13px;
  color: #a8aaac;
  cursor: pointer;
}
.dropzone span {
  text-decoration: underline;
  font-weight: 700;
  color: #6fb2fa;
}
.dropzone .icon {
  font-size: 25px;
  line-height: 20px;
}
.dropzone.dragover {
  border-color: #000;
}

.file-list {
  margin-top: 10px;
  text-align: left;
}
.file-list .file-item {
  padding-bottom: 5px;
  border-bottom: 1px dashed #6fb2fa;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.file-list .file-item span.titleB {
  font-weight: 500;
}
.file-list .file-item span.size {
  color: #6fb2fa;
}

.listCompany .top {
  margin-bottom: 30px;
}
.listCompany .top .turnBack a {
  cursor: pointer;
  font-size: 15px;
  color: #1d1f21;
  font-weight: 500;
  margin-top: 30px;
}
.listCompany .top .filterBar .input {
  position: relative;
}
.listCompany .top .filterBar .input.error input,
.listCompany .top .filterBar .input.error select {
  animation: backgroundAnim 1s ease-in-out infinite alternate;
}
.listCompany .top .filterBar .input input {
  width: 100%;
  border-radius: 5px;
  color: #a0b8c9;
  padding: 10px;
  outline: none;
  border: none;
  font-size: 13px;
  background-color: #fff;
}
.listCompany .top .filterBar .input select {
  width: 100%;
  border-radius: 5px;
  color: #a0b8c9;
  padding: 10px;
  outline: none;
  border: none;
  font-size: 13px;
  background-color: #fff;
}
.listCompany .top .filterBar .input .icon {
  position: absolute;
  right: 8px;
  top: 4px;
  font-size: 20px;
  color: #a0b8c9;
}
.listCompany .company-current {
  margin-bottom: 30px;
}
.listCompany .company-current .companyTitle {
  font-size: 30px;
  line-height: 35px;
  color: #1d1f21;
  font-weight: 700;
}
.listCompany .company-current .companyTitle .tooltipContent {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.listCompany .company-current .companyTitle .tooltipContent i {
  margin-left: 5px;
  color: #6fb2fa;
}
.listCompany .company-current .companyTitle .tooltipContent .tooltipContentItem {
  display: none;
  position: absolute;
  left: 0px;
  top: 50px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 1;
  border-radius: 8px;
  width: 350px;
}
.listCompany .company-current .companyTitle .tooltipContent .tooltipContentItem p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #a8aaac;
  line-height: 25px;
}
.listCompany .company-current .companyTitle .tooltipContent .tooltipContentItem p strong {
  font-weight: 600;
  color: #a8aaac;
}
.listCompany .company-current .companyTitle .agreement a {
  cursor: pointer;
  font-size: 15px;
  color: #6fb2fa;
}
.listCompany .totalBalance {
  display: flex;
  align-items: center;
  justify-content: center;
}
.listCompany .totalBalance .item {
  margin-left: 10px;
  position: relative;
  padding: 10px 35px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.listCompany .totalBalance .item:before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translate(0%, -50%);
  width: 15px;
  height: 15px;
  background-color: #1d1f21;
  border-radius: 50%;
}
.listCompany .totalBalance .item.red:before {
  background-color: #fa0d01;
}
.listCompany .totalBalance .item.blue:before {
  background-color: #6bc4de;
}
.listCompany .totalBalance .item.orange:before {
  background-color: #ffa600;
}
.listCompany .totalBalance .item.purple:before {
  background-color: #d006eb;
}
.listCompany .totalBalance .item .title {
  font-size: 17px;
  font-weight: 700;
  color: #1d1f21;
}
.listCompany .totalBalance .item .price {
  font-size: 15px;
  color: #1d1f21;
}
.listCompany .listResults .top {
  background-color: #f5f5f5;
  padding: 15px 10px;
  border-radius: 5px;
  margin-bottom: 10px;
}
.listCompany .listResults .top .title {
  color: #1d1f21;
  font-weight: 700;
  font-size: 14px;
}
.listCompany .listResults .subTitle {
  font-size: 14px;
  margin-top: 15px;
  font-weight: 600;
}
.listCompany .listResults .listItem {
  padding: 25px 10px;
  border-bottom: 1px solid #f5f5f5;
}
.listCompany .listResults .listItem .title {
  color: #1d1f21;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.listCompany .listResults .listItem .title span.red {
  color: #fa0d01;
}
.listCompany .listResults .listItem .title span.green {
  color: #18c180;
}
.listCompany .listResults .listItem .title .projectName {
  font-weight: 700;
}
.listCompany .listResults .listItem .title .projectName a {
  color: #6fb2fa;
}
.listCompany .listResults .listItem .link {
  color: #1d1f21;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.listCompany .listResults .listItem .link a {
  color: #707070;
}
.listCompany .listResults .listItem .editTable a {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: #707070;
}
.listCompany .listResults .listItem .editTable a i.fa-trash-can {
  color: #FB083F;
}
.listCompany .listResults .listItem .bank-logo {
  border: 2px solid #f5f5f5;
  border-radius: 5px;
  display: table;
  padding: 15px 15px;
}
.listCompany .listResults .listItem .bank-logo img {
  width: 95px;
  height: 30px;
  -o-object-fit: cover;
     object-fit: cover;
}

.hideInput {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  height: 0px;
}

.middleBox {
  border: 1px solid #f5f5f5;
  padding: 15px;
  margin: 20px 0px;
  position: relative;
}
.middleBox::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 30px 30px 0;
  border-color: transparent #1d1f21 transparent transparent;
  right: 0;
  top: 0;
  position: absolute;
}

.filterBarForart .input {
  position: relative;
}
.filterBarForart .input.error input,
.filterBarForart .input.error select {
  animation: backgroundAnim 1s ease-in-out infinite alternate;
}
.filterBarForart .input input {
  width: 100%;
  border-radius: 5px;
  color: #a0b8c9;
  padding: 10px;
  outline: none;
  border: none;
  font-size: 13px;
  background-color: #fff;
}
.filterBarForart .input button {
  border-radius: 5px;
  color: #a0b8c9;
  padding: 8px 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: none;
  font-size: 13px;
  font-weight: 600;
  background-color: #009d5c;
  color: #fff;
}
.filterBarForart .input select {
  width: 100%;
  border-radius: 5px;
  color: #a0b8c9;
  padding: 10px;
  outline: none;
  border: none;
  font-size: 13px;
  background-color: #fff;
}
.filterBarForart .input .icon {
  position: absolute;
  right: 8px;
  top: 4px;
  font-size: 20px;
  color: #a0b8c9;
}
.filterBarForart .priceBar {
  background-color: #FA0D01;
  border-radius: 5px;
  padding: 10px;
  font-size: 13px;
  color: #fff;
  position: relative;
}
.filterBarForart .priceBar .icon {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate(0%, -50%);
  font-size: 25px;
}
.filterBarForart .priceBar .text {
  padding-left: 50px;
}
.filterBarForart .priceBar .text .price {
  font-weight: 700;
  font-size: 16px;
}
.filterBarForart .priceBar.blue {
  background-color: #6CC4DE;
}
.filterBarForart .priceBar.dark {
  background-color: #1986A5;
}
.filterBarForart .excelExport {
  text-align: right;
}
.filterBarForart .excelExport a {
  cursor: pointer;
  display: inline-block;
  background-color: #1d6f42;
  color: #fff;
  border-radius: 5px;
  font-size: 13px;
  padding: 10px 20px;
}

.pageTable {
  margin-top: 20px;
  background-color: #fff;
  padding: 25px;
  border-radius: 15px;
}
.pageTable table thead {
  background-color: #F5F5F5;
}
.pageTable table thead tr th {
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
}
.pageTable table tbody tr td {
  color: #1D1F21;
  padding: 10px;
  font-size: 13px;
}
.pageTable .tableDate .day {
  font-size: 42px;
  line-heighT: 42px;
  color: #1D1F21;
}
.pageTable .tableDate .other {
  color: #1D1F21;
  font-size: 11px;
  text-transform: uppercase;
}
.pageTable .tablePrice {
  font-weight: 700;
  font-size: 13px;
}
.pageTable .tableColorText {
  color: #1986A5;
  font-weight: 700;
}
.pageTable .tableImage {
  font-size: 20px;
}
.pageTable .tableImage span {
  font-size: 12px;
  margin-left: 5px;
  color: #1D1F21;
}
.pageTable .tableImage a {
  display: flex;
  align-items: center;
  color: #3793ef;
}
.pageTable .tableStatu {
  font-weight: 700;
}
.pageTable .tableStatu.statu0 {
  color: #18C180;
}
.pageTable .tableStatu.statu1 {
  color: #FA0D01;
}
.pageTable .tableStatu.statu2 {
  color: #6BC4DE;
}
.pageTable .tableStatu.statu3 {
  color: #faab01;
}
.pageTable .tableDescription {
  font-style: italic;
}
.pageTable .tableLink a {
  font-weight: 600;
  color: #6FB2FA;
  text-decoration: underline;
}
.pageTable .tableInvoiceType {
  display: block;
  width: 150px;
  font-weight: 600;
  color: #fff;
  padding: 7px;
  border-radius: 5px;
  text-align: center;
  font-size: 11px;
}
.pageTable .tableInvoiceType.green {
  background-color: #00DF2C;
}
.pageTable .tableInvoiceType.orange {
  background-color: #b44902;
}
.pageTable .tableInvoiceType.red {
  background-color: #f30000;
}
.pageTable .tableExpenseGroup {
  font-weight: 500;
}
.pageTable .tableExpenseGroup .tableExpenseSubGroup {
  font-weight: 400;
  font-style: italic;
  font-size: 10px;
}
.pageTable .tableCompanies {
  font-weight: 500;
}
.pageTable .tableCompanies .tableCompaniesSub {
  font-weight: 400;
  font-style: italic;
  font-size: 10px;
}
.pageTable .editTable a {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: #707070;
}
.pageTable .editTable a i.fa-trash-can {
  color: #FB083F;
}
.pageTable .viewOffer a {
  display: inline-block;
  background-color: #FB083F;
  padding: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  border-radius: 5px;
}
.pageTable .itemBorder {
  border: 1px solid #EAEAEA;
  padding: 10px;
  border-radius: 5px;
  font-size: 13px;
}
.pageTable .paymentOkey {
  font-weight: 700;
  color: #18C180;
}
.pageTable .paymentFailed {
  border: 1px solid #EAEAEA;
  padding: 10px;
  font-weight: 700;
  color: #a70202;
}
.pageTable select, .pageTable input {
  width: 100%;
  border-radius: 5px;
  color: #a0b8c9;
  padding: 10px;
  outline: none;
  border: none;
  font-size: 13px;
  background-color: #fff;
  border: 1px solid #EAEAEA;
}

/* Datatable Settings */
.dt-layout-row::after {
  content: "";
  display: table;
  clear: both;
}

.dt-empty {
  font-size: 13px;
  color: #a0b8c9;
  margin-top: 10px;
  font-weight: 400;
}

.dt-info {
  float: left;
  font-size: 14px;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #a0b8c9;
}

.dt-paging {
  float: right;
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #1d1f21;
}
.dt-paging button {
  cursor: pointer;
  display: inline-block;
  background-color: #fff;
  padding: 0px 10px;
  font-size: 13px;
  border: 1px solid #fff;
  margin-left: 5px;
  color: #a0b8c9;
  border-radius: 5px;
}
.dt-paging button.current {
  background-color: #1d1f21;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}
.dt-paging button.disabled {
  opacity: 0.5;
}

.generateInstallmentTable {
  display: inline-block;
  cursor: pointer;
  background-color: #1d1f21;
  color: #fff;
  font-weight: 700;
  padding: 7px 20px;
  font-size: 13px;
  border-radius: 5px;
  margin: 10px 0px;
  text-align: center;
}

.loginBox-height {
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: #fff;
}

.video-bg {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.loginVideo {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%; /* Degrade etkisinin videonun yarısından başlamasını sağla */
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}

.loginBoxForm {
  position: relative;
}
.loginBoxForm .logo {
  display: table;
  margin: 0 auto;
  margin-bottom: 30px;
}
.loginBoxForm .logo img {
  height: 200px;
}
.loginBoxForm .loginBoxItem .label {
  margin-top: 15px;
  font-size: 15px;
  color: #1d1f21;
  font-weight: 500;
  font-weight: 700;
  text-transform: uppercase;
}
.loginBoxForm .loginBoxItem .value {
  margin-top: 15px;
}
.loginBoxForm .loginBoxItem .value input {
  width: 100%;
  color: #a0b8c9;
  padding: 15px;
  outline: none;
  border: none;
  font-size: 14px;
  font-weight: 500;
  background-color: #fbfbfb;
}
.loginBoxForm .loginBoxSubmit {
  margin-top: 20px;
}
.loginBoxForm .loginBoxSubmit button {
  outline: none;
  border: none;
  background-color: #1d1f21;
  color: #fff;
  font-weight: 700;
  padding: 7px 20px;
  font-size: 13px;
  border-radius: 5px;
}
.loginBoxForm .loginBoxSubmit button:disabled {
  opacity: 0.5;
}

#offersForm h3, #editOffers h3 {
  display: none;
}
#offersForm .steps, #editOffers .steps {
  margin-bottom: 20px;
}
#offersForm .steps ul, #editOffers .steps ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
#offersForm .steps ul li, #editOffers .steps ul li {
  list-style: none;
  position: relative;
}
#offersForm .steps ul li.disabled, #editOffers .steps ul li.disabled {
  opacity: 0.5;
}
#offersForm .steps ul li a, #editOffers .steps ul li a {
  display: flex;
  align-items: center;
  margin-right: 15px;
  color: #1D1F21;
  font-weight: 700;
  font-size: 13px;
}
#offersForm .steps ul li a .current-info, #editOffers .steps ul li a .current-info {
  display: none;
}
#offersForm .steps ul li a .step, #editOffers .steps ul li a .step {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #fff;
  color: #000;
  border-radius: 50%;
  margin-right: 5px;
}
#offersForm .steps ul li.current a, #editOffers .steps ul li.current a {
  color: #18c180;
}
#offersForm .steps ul li.current a .step, #editOffers .steps ul li.current a .step {
  background-color: #18c180;
  color: #fff;
}
#offersForm .actions, #editOffers .actions {
  margin-top: 20px;
}
#offersForm .actions ul, #editOffers .actions ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}
#offersForm .actions ul li, #editOffers .actions ul li {
  list-style: none;
  margin-right: 10px;
}
#offersForm .actions ul li.disabled, #editOffers .actions ul li.disabled {
  opacity: 0.5;
}
#offersForm .actions ul li a, #editOffers .actions ul li a {
  outline: none;
  border: none;
  background-color: #1d1f21;
  color: #fff;
  font-weight: 700;
  padding: 7px 20px;
  font-size: 13px;
  border-radius: 5px;
}

.offerTableItems {
  display: flex;
  gap: 5px;
}
.offerTableItems .innerList {
  margin-top: 10px;
  border: 1px solid #f5f5f5;
  padding: 10px;
}
.offerTableItems .w100px {
  width: 100px;
}
.offerTableItems .w130px {
  width: 130px;
}
.offerTableItems .w200px {
  width: 200px;
}
.offerTableItems .item .deleteService {
  margin-top: 25px;
}
.offerTableItems .item .deleteService button {
  outline: none;
  border: none;
  color: #F43737;
  background-color: transparent;
}

.forart-bordered {
  border-color: #e3dede !important;
}

.loaderButonIcon {
  display: none;
}

.generatePDF {
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100vh;
  display: none;
}

.load {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 50px;
  background: #fff;
  perspective: 150px;
  box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.5);
}
.load * {
  display: block;
  transform-origin: 0 0;
}
.load p {
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
  margin: 0;
  float: left;
  width: 50%;
  height: 100%;
  background: inherit;
  padding: 12px 6px;
  border-radius: 2px;
}
.load p:nth-child(1) {
  border-right: 1px solid #ddd;
}
.load p:nth-child(2) {
  border-left: 1px solid #ccc;
  animation: page 5s ease-in-out infinite;
}
.load p:nth-child(2) u {
  transform: scaleX(0);
  animation: line1 5s ease-in-out infinite;
}
.load p:nth-child(2) u:nth-child(2) {
  animation-name: line2;
}
.load p:nth-child(2) u:nth-child(3) {
  animation-name: line3;
}
.load p:nth-child(2) u:nth-child(4) {
  animation-name: line4;
}
.load u {
  width: 100%;
  height: 2px;
  background: #666;
  margin: 5px 0;
}

@keyframes page {
  0%, 80% {
    transform: rotateY(0deg);
  }
  98%, 100% {
    transform: rotateY(-180deg);
  }
}
@keyframes line1 {
  0% {
    transform: scaleX(0);
  }
  15%, 100% {
    transform: scaleX(1);
  }
}
@keyframes line2 {
  0%, 20% {
    transform: scaleX(0);
  }
  35%, 100% {
    transform: scaleX(1);
  }
}
@keyframes line3 {
  0%, 40% {
    transform: scaleX(0);
  }
  55%, 100% {
    transform: scaleX(1);
  }
}
@keyframes line4 {
  0%, 60% {
    transform: scaleX(0);
  }
  75%, 100% {
    transform: scaleX(1);
  }
}/*# sourceMappingURL=style.css.map */