.copat-background {
  position: relative;
}

.copat-background::before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 10%;
  width: 100%;
  height: 90%;
  opacity: 0.1;
  z-index: -1;
  background-image: url("./../img/copat.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}


header {
  /* height: 70px; */
  height: auto;
  padding: 10px 30px;
  justify-content: space-between;
  background-color: #1a4786;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header .telimat {
  font-size: 35px !important;
  margin-left: 5px;
  margin-right: 20px;
}

header h1 {
  margin-bottom: 0px !important;
  /* margin-left: 10px !important; */
  max-width: 330px;
  font-size: 15px !important;
  line-height: 20px;
  letter-spacing: 1px;
}

@media screen and (max-width: 992px) {
  .right {
    position: relative;
    padding: 55px 20px 30px 20px !important;
    margin-top: 0px !important;
    border-radius: 0px;
  }

}

@media screen and (max-width:570px) {
  header {
    padding: 10px 5px;
  }

  header .menu {
    padding-left: 15px;
    gap: 10px !important;
  }

  header .header-user-icon {
    margin-right: 5px !important;
  }
}

header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .logo h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: white;
  font-size: 23px;
}

header .logo img {
  margin-right: 10px;
  width: 90px;
  max-width: none;
}

header .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}

header i {
  font-size: 19px;
  color: white;
}

header .menu .user-profile {
  position: relative;
}

header .menu .notification {
  position: relative;
}

header .menu .nav-action .icon-btn {
  background: transparent;
  outline: none;
  border: none;
}

header .header-user-icon {
  margin-right: 30px;
}

header .header-notification-icon {
  margin-right: 30px;
  position: relative;
}

header .notification-count {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background-color: red;
  color: white;
  top: -10px;
  right: -10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
}

header .menu .user-profile-menu {
  position: absolute;
  top: 70px;
  right: 0;
  z-index: 9999999;
  width: 300px;
  min-width: 200px;
  background-color: white;
  border: 1px solid gray;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.user-profile-menu li {
  width: 100%;
  padding: 10px 20px;
  cursor: pointer;
  /* background-color: #dddddd; */
  border-bottom: 1px solid #dddddd;
}

.user-profile-menu li:hover {
  background-color: #dddddd;
}

header .notification-item-icon i {
  color: #1a4786;
  font-size: 30px;
}

header .menu .user-notification-menu {
  position: absolute;
  top: 70px;
  right: 0;
  z-index: 9999999;
  min-width: 300px;
  background-color: white;
  border: 1px solid gray;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  max-height: 300px;
  overflow-y: auto;
}

header .user-notification-menu ul {
  list-style: none;
  padding: 10px;
}

header .user-notification-menu li {
  cursor: pointer;
}

header .user-notification-menu li:hover {
  background-color: #f2f2f2;
}

header .user-notification-menu li .notification-item {
  width: 100% !important;
  display: flex;
  flex-direction: row;
  min-width: 500px;
  border-bottom: 1px solid rgb(224, 224, 224);
  align-items: center;
  padding: 10px 0;
  /* justify-content: space-between; */
}

header .user-notification-menu li .notification-item .notification-item-icon {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}

header .user-notification-menu li .notification-item .notification-item-content {
  display: flex;
  width: 80%;
  margin: 0 !important;
}



header .menu .user-profile-menu ul {
  list-style: none;
  width: 100%;
  padding-left: 0px !important;
  /* padding: 10px; */
}

header .menu .user-menu-active {
  visibility: visible;
  opacity: 1;
}

header .menu .notification-menu-active {
  visibility: visible;
  opacity: 1;
}

.nav-clicked {
  width: 65px !important;
}

.nav-clicked #user-info-li {
  display: none !important;
}

.nav-clicked ul li span {
  display: none;
}

.body-container {
  background-color: rgba(60, 60, 60, 0.118);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.body-container nav {
  -webkit-transition: 0.1s;
  display: flex;
  flex-direction: column;
  transition: 0.1s;
  position: relative;
  width: 20%;
  min-height: 100vh;
  background-color: white;
  border-right: 1px solid rgba(128, 128, 128, 0.304);
}

.body-container nav ul {
  list-style: none;
  padding: 45px 0;
  width: 100%;
}

.body-container nav ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* justify-content: center; */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 10px 20px 20px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.nav-clicked li {
  justify-content: center;
  padding: 20px 10px 20px 10px !important;

}

.body-container nav ul li svg {
  font-size: 20px;
  width: 20px;
  color: #212529d3 !important;
}

.body-container nav ul li span {
  margin-left: 10px;
  font-size: 17px;
  width: auto;
  color: #212529d3;
}

.notification-li span {
  align-items: center;
}

.body-container nav ul .link-active li {
  background-color: rgba(20, 140, 161, 0.234);
}

.body-container nav ul li:hover {
  background-color: rgba(20, 140, 161, 0.234);
}

.sidebar-link-active {
  background-color: rgba(20, 140, 161, 0.234);
  border-bottom: rgba(20, 140, 161, 0.234);
  border-top: rgba(20, 140, 161, 0.234);
}

#user-info-li {
  border-bottom: 1px solid #dddddd;
}

.navbar-list a {
  color: #212529 !important;
}

#user-info-li:hover {
  /* background-color: rgba(20, 140, 161, 0.234); */
  background-color: transparent;
  cursor: default;
}

#user-info-li i {
  font-size: 25px;
  /* padding: 10px; */
  /* border: 1px solid #212529d3; */
  /* border-radius: 50%; */
  /* color: #212529d3; */
  /* background-color: #dddddd; */
}

#user-info-li span {
  font-size: 15px;
  font-weight: bold;
  /*capitalize all letters*/
  text-transform: uppercase;

}

.body-container nav .nav-open-close-btn {
  cursor: pointer;
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 0;
  height: 50px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid rgba(128, 128, 128, 0.304);
}

.body-container nav .btn-content-clicked {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.body-container nav .nav-btn-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-mobile-clicked {
  width: 300px !important;
}

.nav-mobile-clicked ul li span {
  display: block;
}

@media screen and (max-width:992px) {
  nav {
    position: absolute !important;
    z-index: 999999;
    width: 65px !important;
    transform: translateX(-100%);
  }

  .right-expand {
    width: calc(100%-65px) !important;

  }

  .nav-clicked {
    width: 300px !important;
    transform: translateX(0);
  }

  .nav-clicked li {
    justify-content: unset;
  }

  .nav-clicked .nav-open-close-btn {
    transform: translateX(0);
  }

  .nav-clicked ul li span {
    display: block;
  }


  .nav-clicked .notification-li span {
    display: flex !important;
  }

  .nav-open-close-btn {
    transform: translateX(100%);
    background-color: whitesmoke;
  }

  nav ul li span {
    display: none;
  }

  .notification-li span {
    display: none !important;
  }

  /* .nav-clicked{

  } */
  .right {
    width: 100% !important;
    /* padding-left: 75px !important; */
    padding-bottom: 200px !important;
  }
}

.body-container .right {
  background-color: white;
  padding: 30px;
  border-top-left-radius: 10px;
  margin-top: 25px;
  width: 78%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: relative;
  z-index: 999;
}

.body-container .right .content {
  z-index: 999;
  position: relative;
}

.body-container .right .right-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.body-container .form::before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 10%;
  width: 100%;
  height: 90%;
  opacity: 0.1;
  z-index: -1;
  background-image: url("./../img/copat.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.body-container .right-expand {
  width: 94%;
}

.right .pretension-form {
  margin-top: 50px;
}

.right .pretension-form .selects {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}

.pretension-add-choose-file {
  width: 150px;
  height: 45px;
  border: 1px solid #1a4786 !important;
  box-shadow: none !important;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-right: 10px;
  position: relative;
  background-color: #1a4786 !important;
  color: white;
  padding: 0 !important;
}

.pretension-add-choose-file i {
  font-size: 20px;
  position: absolute;
  left: 6%;
  color: white;
}

.detail-choose-file {
  margin-top: 0 !important;
  height: 30px !important;
  margin-right: 5px !important;
}

.detail-file-icon {
  font-size: 17px !important;
  left: 3% !important;
}

.detail-choose-file-name {
  margin: 0 !important;
  height: 30px !important;
  max-width: 300px;
}

.choose-file-name {
  margin-top: 10px;
  /* margin-left: 10px; */
  height: 45px;
  display: flex;
  align-items: center;
  max-width: 400px;
}

#icaze-verilen-fayllar {
  font-size: 13px;
  color: rgb(136, 136, 136);
}

@media screen and (max-width: 900px) {
  .pretension-form .selects {
    flex-direction: column;
    gap: 40px !important;
  }

  .pretension-form .selects .select-box {
    width: 100% !important;
  }

  .pretension-form .input-box input {
    width: 100% !important;
  }

  .pretension-add-choose-file {
    width: 100%;
  }

  .choose-file-name {
    width: 100%;
  }
}

.right .pretension-form .selects .select-box {
  width: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.right .pretension-form .selects .select-box .label {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 17px;
}

.right .pretension-form .selects .select-box select {
  font-size: 15px;
  height: 35px;
  border-top: none;
  border-left: none;
  border-right: none;
  background-color: transparent;
  outline: none;
  border-bottom: 1px solid black;
}

.right .pretension-form .selects .select-box select option {
  font-size: 15px;
}

.right .pretension-form .inputs {
  margin-top: 50px;
}

.right .pretension-form .inputs .input-box {
  width: 100%;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.right .pretension-form .input-box:nth-last-child(1) {
  margin-bottom: 5px !important;
}

.right .pretension-form .inputs .input-box .label {
  font-weight: 600;
  font-size: 17px;
  /* display: flex; */
}

.right .pretension-form .inputs .input-box .label p {
  margin-bottom: 0 !important;
}

.label-desc p {
  font-size: 14px;
  /* color: rgb(136, 136, 136) !important; */
  color: gray !important;
  /* text-transform: capitalize; */
  font-weight: 300;
}

.right .pretension-form .inputs .input-box input {
  font-size: 15px;
  background-color: transparent;
  outline: none;
  border-radius: 3px;
  margin-top: 10px;
  width: 350px;
}

.right .pretension-form .inputs .input-box input[type=text] {
  height: 35px;
  border: 1px solid gray;
  padding: 0 5px;
}

.right .pretension-form .inputs .input-box input[type=file] {
  width: 250px;
  outline: none;
}

.right .pretension-form .inputs .input-box input[type=text]:focus {
  border: 1px solid #4245a8;
}

.right .pretension-form .inputs .input-box input::file-selector-button {
  background-color: transparent;
  border: 1px solid black;
  height: 35px;
  border-radius: 4px;
  width: 100px;
  cursor: pointer;
}

.right .pretension-form .inputs .input-box input::file-selector-button:hover {
  border: 1px solid #4245a8;
}

.right .pretension-form .inputs .input-box .input-content {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.right .pretension-form .inputs .input-box .input-content .add_more {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #212529;
  border-radius: 5px;
  color: #212529;
}

.right .pretension-form .inputs .input-box:nth-child() {
  background-color: gray;
}

.right .pretension-form .btn-container button {
  width: 100%;
  height: 50px;
  border: none;
  outline: none;
  background-color: #4245a8;
  color: white;
  font-size: 17px;
  margin-top: 30px;
  cursor: pointer;
  border-radius: 10px;
}

.pretension-form .btn-container button:disabled {
  pointer-events: none;
}

.table {
  /* height: 80vh; */
  /* overflow-x: auto; */
}

.table-div {
  overflow-x: auto;
  /* height: 90vh; */
}

.table table {
  margin-top: 50px;
  border-collapse: collapse;
}

.table table input {
  padding: 8px;
  width: 100%;
  height: 100%;
}

.table table tr {
  height: 50px;
}

#pretensionTable tbody tr:hover {
  background-color: rgba(20, 140, 161, 0.234);
  transition: 0.2s;
}

#paymentTable tbody tr:hover {
  background-color: rgba(20, 140, 161, 0.234);
  transition: 0.2s;
}

#paymentTable tr {
  cursor: pointer;
}

#newtab_btn {
  background-color: transparent;
  color: black;
  border: none;
  font-size: 15px;
  outline: none;
  padding: 4px 10px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
  border: 1px solid #1a4786;
  /* margin-top: 20px; */
}

#newtab_btn:hover {
  background-color: #1a4786;
  color: white;
  /* border: 1px solid #1a4786; */
}

/* #pretensionTable tbody tr:nth-child(1):hover {
  background-color: transparent;
  transition: 0.2s;
} */

/* #pretensionTable tr:nth-child(2):hover {
  background-color: #dddddd !important;
} */

.table table th:nth-child(2) {
  min-width: 300px;
}

.table table th:nth-child(3) {
  min-width: 500px;
}

.table table th:nth-child(4) {
  min-width: 200px;
}

.table table th:nth-child(5) {
  min-width: 200px;
}

.table table td,
.table table th {
  min-width: 150px;
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

.table table tr:nth-child(even) {
  background-color: #dddddd;
}

.feedbackTable a {
  cursor: pointer !important;
}

/* #pretensionTable tr:nth-child(even):hover {
  transition: 0.2s;
  background-color: rgba(20, 140, 161, 0.234);
} */

.profil-table {
  /* height: 75vh; */
  /* overflow-x: auto; */
}

.profil-table-content {
  overflow-x: auto;
  /* height: 90vh; */
}

.profil-table table {
  margin-top: 50px;
  border-collapse: collapse;
  width: 100%;
}

.profil-table table tr {
  height: 50px;
}

.profil-table table td,
.profil-table table th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

.profil-table table tr:nth-child(even) {
  background-color: #dddddd;
}

body {
  background-color: rgba(60, 60, 60, 0.118);
  overflow-x: hidden;
}

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: sans-serif;
  letter-spacing: 0.2px;
  /* font-family: 'Quicksand', sans-serif !important; */
  /* font-weight: lighter; */
  /* color: #212529; */
}

a {
  text-decoration: none;
}

.container {
  padding-top: 50px;
  max-width: 900px;
  margin: 0 auto;
  min-height: 100vh;
}

.container .form-container {
  margin-top: 30px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.container .form-container .forms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.container .form-container .forms select {
  width: 200px;
  height: 30px;
  border: 1px solid #98A8F8;
  border-radius: 5px;
}

.container .form-container .new_forms {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.container .form-container .new_forms input[type=text] {
  width: 200px;
  height: 30px;
  border: 1px solid #0c0c0c;
  text-indent: 5px;
  border-radius: 5px;
}

.container .form-container .new_forms .input_box {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.container .form-container .new_forms .input_box .add_more {
  justify-self: flex-end;
  cursor: pointer;
  border: 1px solid black;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 25px;
}

.container .form-container .btn-save {
  width: 250px;
  height: 40px;
  background: green;
  color: white;
  border: none;
  outline: none;
  border-radius: 10px;
  font-size: 18px;
  margin: 50px auto 0 auto;
  cursor: pointer;
}

.container .form-container .btn-save:disabled {
  background: rgba(0, 128, 0, 0.637);
}

.container .loading_container {
  /* background: rgba(255, 255, 255, 0.41); */
  background: white;
  width: 100%;
  position: absolute;
  top: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 999;
}

.container .loading_container .lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
}

.container .loading_container .lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: black transparent black transparent;
  -webkit-animation: lds-dual-ring 1.2s linear infinite;
  animation: lds-dual-ring 1.2s linear infinite;
}

@-webkit-keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loading-container {
  position: absolute;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  background-color: white;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99999999;
  padding-top: 200px;
}

/* .loading-container span{
  font-size: 40px;
  font-weight: bold;
  color: black;
} */


.spinner::after {
  content: '';
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  position: absolute;
  top: calc(50% - 20px);
  left: calc(50% - 20px);
  border-radius: 50%;
  /* color: red; */
  /* background-color: red; */
}



.spinner.smooth::after {
  border-top: 4px solid #0c0c0c;
  border-left: 4px solid #0c0c0c;
  border-right: 4px solid rgba(255, 255, 255, 0.0);
  animation: spinner .6s linear infinite;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

.global-loading-container {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99999999;
  position: fixed;
}

/* .global-loading-container span{
  font-size: 40px;
  font-weight: bold;
  color: black;
} */


.detail-page .fa-file {
  font-size: 27px;
  color: rgb(20, 110, 190);
  /* color: #0c0c0c; */
  cursor: pointer;
}

.detail-page .set-payment-area {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-page .payment-area {
  margin-top: 20px !important;
}

.detail-page .go-payment-page {
  cursor: pointer;
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 5px;
  margin-top: 20px;
  background-color: #1a4786;
  color: white;
  width: 220px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detailupdatebtn:disabled {
  pointer-events: none !important;
  background-color: rgba(0, 128, 0, 0.481) !important;
}

@media screen and (max-width: 620px) {
  .detail-page .go-payment-page {
    width: 100%;
    font-size: 16px;
  }
}

@media screen and (max-width: 620px) {
  .set-payment-area {
    flex-direction: column;
  }

  .go-payment-page {
    margin: 0 0 5px 0 !important;
  }

}



.btn-filter {
  border-top: 1px solid gray;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn-filter button {
  height: 30px;
  width: 100px;
  background-color: gray;
  color: white;
  font-size: 17px;
  cursor: pointer;
  border-radius: 5px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;

  outline: none;
  border: none;
}

.detail-search .btn_axtar {
  height: 30px;
  width: 100px;
  background-color: #4245a8;
  color: white;
  font-size: 15px;
  cursor: pointer;
  border-radius: 5px;
  outline: none;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

.detail-search {
  -webkit-transition: opacity 0s;
  transition: opacity 0s;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 100%;
  height: 0;
  opacity: 0;
  pointer-events: none;
  border: 1px solid gray;
}

.detail-search .date-filter-inputs {
  padding: 10px 0 10px 0;
  /* margin-top: 20px; */
}

.detail-search .date-filter-inputs .created-start-filter {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.detail-search .created-start-inputs {
  display: flex;
  flex-wrap: wrap;
}

.detail-search .date-filter-inputs label {
  font-weight: 600;
}

@media screen and (max-width: 450px) {
  .detail-search .inputs {
    flex-direction: column;
  }

  .detail-search .inputs input {
    width: 100%;
    margin: 5px 0;
  }

  .detail-search .inputs select {
    width: 100%;
    margin: 5px 0;
  }

  .detail-search button {
    width: 100% !important;
  }
}

.detail-search input {
  height: 35px;
  margin: 5px;
  padding: 0 5px !important;
  outline: none;
  border: 1px solid #c5c5c5;
  font-size: 15px;
  border-radius: 5px;
  width: 200px;
}

.detail-search select {
  margin: 5px;
  height: 35px;
  padding: 0 5px;
  outline: none;
  border: 1px solid #c5c5c5;
  font-size: 15px;
  border-radius: 5px;
  width: 200px;
}

.detail-search input:focus {
  border: 1px solid #4245a8;
}

.detail-search select:focus {
  border: 1px solid #4245a8;
}


.search-active {
  margin-top: 30px;
  height: auto;
  padding: 30px 20px;
  opacity: 1;
  pointer-events: all;
}

.page-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 2rem;
  background-color: #fff;
  box-shadow: 0 0 10px #d3d3d3;
  border-radius: 5px;
  padding: 10px 15px;
}

.page-container i {
  padding: 6px 12px;
  cursor: pointer;
  font-size: 18px;
  color: var(--color-dark);
  pointer-events: none;
}

.page-container button {
  cursor: pointer;
  background-color: transparent;
  border: none;
}

.page-container button:disabled i {
  color: #aaadc7;
}

#pagination {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

#pagination li {
  list-style: none;
  cursor: pointer;
  border-radius: 5px;
  overflow: hidden;
  margin: 0 3px;
}

#pagination li.active {
  background-color: #39f;
}

#pagination li.active a {
  color: #fff;
}

#pagination li a {
  text-decoration: none;
  font-weight: 600;
  padding: 8px 13px;
  display: inline-block;
  line-height: 1;
  color: #a9a9a9;
  font-size: 20px;
  pointer-events: none;
}

#pagination li:hover {
  background-color: #39f;
}

#pagination li:hover a {
  color: #fff;
}

.iclas-form {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.iclas-form input {
  margin-bottom: 10px;
  width: 250px;
  height: 45px;
  border: solid 1px #dcdfe5;
  border-radius: 5px;
  outline: none;
  padding: 0 10px;
  font-size: 17px;
}

.iclas-form select {
  margin-bottom: 10px;
  width: 100%;
  height: 45px;
  border: solid 1px #dcdfe5;
  border-radius: 5px;
  outline: none;
  padding: 0 5px;
  font-size: 17px;

}

.iclas-form button {
  margin-top: 10px;
  width: 100%;
  height: 45px;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: green;
  color: white;
  border-radius: 5px;
}

.selected-iclas-users {
  display: flex;
  flex-wrap: wrap;
  /* margin-top: 10px; */
  padding-left: 0 !important;
  padding: 0 !important;
}

.selected-iclas-user {
  padding: 10px 30px 10px 10px;
  font-size: 15px;
  border-radius: 5px;
  border: solid 1px #dcdfe5;
  margin-bottom: 10px;
  margin-right: 10px;
  position: relative;
  background-color: rgb(240, 242, 249);
}

.selected-iclas-user i {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  padding: 5px;
  color: rgb(26, 26, 26)
}

.iclas-save:disabled {
  pointer-events: none !important;
  background: rgba(0, 128, 0, 0.637) !important;
}

.upcoming-meeting:hover {
  background-color: rgb(255, 254, 150) !important;
}

.today-meeting:hover {
  background-color: rgb(178, 235, 174) !important;
}

.passed-meeting:hover {
  background-color: rgb(255, 167, 179) !important;
}

.color-info {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

.color-detail {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  font-size: 15px;
}

.color-span {
  border: 0.5px solid #dddddd;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 10px;
}

.green-span {
  background-color: #B2FFAE;
}

.yellow-span {
  background-color: #FFFEB2;
}

.red-span {
  background-color: #FFB2B2;
}

.participant-text {
  padding: 0 5px 5px 5px !important;
  border-bottom: 1px solid #dddddd;
  margin-bottom: 5px !important;
}

.participant-text:nth-last-child(1) {
  border-bottom: none;
  padding-bottom: 0 !important;
}


#status-edit-btn,
#court-edit-btn,
#created-edit-btn {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  margin-left: 10px;
}

#status-edit-input,
#court-edit-input,
#created-edit-input {
  width: 100%;
  height: 30px;
  border: 1px solid gray;
  border-radius: 5px;
  outline: none;
  padding: 0 5px;
  font-size: 15px;
  margin-top: 10px;
}

#status-save-btn,
#court-save-btn,
#created-save-btn {
  color: white;
  padding: 5px 10px;
  background-color: green;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 10px;
}

.detail-page .confirm-btn {
  color: white;
  padding: 5px 10px;
  background-color: green;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 10px;
}

.detail-page .reject-btn {
  color: white;
  padding: 5px 10px;
  background-color: red;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 10px;
  margin-left: 10px;
}

.detail-page .new-file-area {
  /* background-color: #dddddd; */
  /* background-color: rgba(20,140,161,0.234); */
  border-bottom: 1px solid gray;
  padding: 10px;
  margin-top: 30px;
  display: flex;
  gap: 40px;
}

@media screen and (max-width: 820px) {
  .detail-page .new-file-area {
    flex-direction: column;
  }
}



.detail-page .file-input {
  width: 250px;
}

@media screen and (max-width:390px) {
  .file-input {
    width: 100% !important;
  }
}

.detail-page .filename {
  height: 30px;
  border: 1px solid gray;
  border-radius: 5px;
  outline: none;
  /* margin-right: 10px; */
}

.detail-page .add-file-btn {
  border: none;
  background-color: green;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  outline: none;
}

.detail-page .file-td {
  display: flex;
  flex-direction: column;
}

.detail-page .file-td .content {
  display: flex;
  height: 100%;
  border-bottom: none;
  align-items: center;
  justify-content: space-between;
}

.detail-page .file-td button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  outline: none;
}

.detail-page .file-td .edit-btn {
  background-color: green;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
}

.detail-page .edit-file-btn {
  cursor: pointer;
}

.detail-page .delete-file-btn {
  cursor: pointer;
  color: rgb(220, 58, 58);
  margin-left: 10px;
}

.detail-page .file-td .edit-area {
  display: flex;
  flex-direction: column;
  /* gap: 10px; */
  margin-top: 20px;
}

.detail-page .comment-area .comments {
  display: flex;
  flex-direction: column;

}

.comments .comment-area {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.comment-area textarea {
  width: 100%;
  padding: 5px 10px;
  border-radius: 5px;
}

.comment-area .button {
  display: flex;
  justify-content: flex-end;
}

.comment-area button {
  border: none;
  background-color: green;
  color: white;
  padding: 5px 10px !important;
  border-radius: 5px;
  cursor: pointer;
  outline: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.comments .comment {
  /* border: 1px solid transparent; */
  border-left: 1px solid gray;
  border-radius: 0px;
  padding: 10px;
  margin-top: 20px;
  position: relative;
  background-color: #eeeeee;
  margin-bottom: 30px;
}

.comment-author {
  font-weight: bold;
  font-size: 15px;
}

/* .comments .comment::before{
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  background-color: gray;
  bottom: 0;
  left: 0;
} */

.main-comment {
  margin-top: 10px;
  border-left: none !important;
  border-radius: 5px !important;
}

.comments .buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

@media screen and (max-width: 500px) {
  .comments .buttons {
    flex-direction: column-reverse;
  }

  .comment .buttons .show-reply-btn {
    width: 100%;
    margin-top: 20px;
  }

  .comment .buttons .action-buttons {
    width: 100%;
    margin-top: 10px;
  }

}

.show-reply-btn:disabled {
  cursor: not-allowed;
  color: #1a47868e;
}

.reply-active {
  display: block !important;
}

.detail-page .arrow-active {
  transform: rotate(180deg);
}

.show-reply-btn {
  border: none;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  color: #1a4786;
  text-decoration: underline;
}

.delete-comment-btn {
  background-color: rgb(220, 58, 58);
  color: white;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 5px;
}

.edit-comment-btn {
  background-color: #1a4786;
  color: white;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 5px;
}

.reply-comment-btn {
  background-color: #1a4786;
  color: white;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 5px;
}

.reply-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reply-area-active {
  display: flex !important;
}

.reply-area input {
  width: 100%;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid gray;
  margin-top: 20px;
}

.reply-area .button {
  display: flex;
  justify-content: flex-end;
}

.reply-send-btn {
  background-color: green;
  color: white;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 5px;
}


.comment-content .edit-input {
  width: 80%;
  padding: 5px 10px;
  border: 1px solid gray;
  width: 90%;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  /* margin-top: 20px; */
}

.comment-edit {
  display: none;
  flex-direction: row;
  width: 100%;
  margin-bottom: 10px;
}

.comment-edit button {
  width: 20%;
  background-color: green;
  color: white;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 5px 10px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.edit-input-active {
  display: flex !important;
}

.comment-innertext-deactive {
  display: none !important;
}

/* SIDEBAR NOTIFICATION */

/* .notification-count{
  position: absolute;
  right: 10px;
} */

.notification-li {
  display: flex;
  flex-direction: row;
}

/* @media screen and (max-width: 992px) {
    .notification-li .notification-count{
      display: none !important;
    }
} */

.select-option {
  position: relative;
  padding: 0 !important;
}

.select-option input {
  /* margin-top: 20px; */
  width: 100%;
  cursor: pointer;
  border: solid 1px #dcdfe5;
  border-radius: 5px;
  padding: 10px;
}

.select-option:after {
  content: '';
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -8px;

}

.change-author-area .content {
  display: none;
  background-color: rgb(242 242 242);
  /* opacity: 0; */
  border-radius: 10px;
  position: absolute;
  z-index: 9999;
  /* margin-top: 15px; */
  margin-top: 3px;
  width: 100%;
  height: auto;
  /* transition: 0.2s; */
}

.change-author-area .content .search input {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: white;
  padding: 10px;
  border-radius: 5px;
}

.change-author-area .search {
  padding-left: 10px;
  padding-right: 10px;
}

.change-author-area li {
  cursor: pointer;
  padding: 5px 10px;
  list-style: none;
  border-bottom: 1px solid rgb(221, 221, 221);
}

.change-author-area li:hover {
  background-color: #1a4786;
  color: white;
}

.change-author-area .active {
  /* opacity: 1 !important;
  height: auto !important; */
  display: block !important;
}

.change-author-area .options-active {
  /* min-height: 100px !important;
  opacity: 1 !important; */
  display: block !important;
}

.change-author-area .options {
  max-height: 200px;
  /* opacity: 0; */
  overflow-y: auto;
  display: none;
  /* transition: 0.2s; */
}

.notification-li span {
  display: flex;
}

.notification-count {
  font-size: 13px;
  margin-left: 10px;
  height: 30px;
  width: 30px;
  background-color: #1a4786;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}

.notification-page-item {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #ededed !important;
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 5px 0 !important;
}

.notification-page-item-icon {
  min-width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 520px) {
  .notification-page-item-icon {
    min-width: 60px !important;
  }
}

.notification-page-item-icon i {
  font-size: 30px;
  color: #1a4786;
}

.notification-page-item-content {
  display: flex;
  align-items: center;
  padding: 10px;
  border-left: 1px solid rgb(184, 184, 184);
}

.notification-page-item {
  cursor: pointer;
  position: relative;
  /* background-color: #dddddd !important;
  border-radius: 5px; */
}

.notification-page-item-content h5 {
  margin: 0;
  font-size: 18px;
  word-break: break-all;
}

.notification-unread {
  background-color: #dee4ff !important;
}

.notification-item-date {
  position: absolute;
  right: 5px;
  bottom: 0px;
  font-size: 14px;
  color: #7e7e7e;
}

.set-payment form {
  /* width: 400px; */
  width: 100%;
  display: flex;
  flex-direction: column;

}

.set-payment form button {
  margin-top: 20px;
  width: 200px;
  padding: 10px 20px;
  background-color: green;
  color: white;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 5px;

}

.set-payment form button:disabled {
  pointer-events: none;
  background-color: rgba(0, 128, 0, 0.49);
}

/* .set-payment form select{
  width: 400px;
}

.set-payment form select option{
  width: 400px !important;
} */


/* select box */
label,
input {
  cursor: pointer;
}

h2,
h3,
h4,
h5 {
  font-weight: 600;
  line-height: 1.3;
  color: #1f2949;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 14px;
}

h5 {
  font-size: 12px;
  font-weight: 400;
}

img {
  max-width: 100%;
  display: block;
  vertical-align: middle;
}

.container {
  padding: 0 15px;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
}

.top-text-wrapper {
  margin: 20px 0 30px 0;
}

.top-text-wrapper h4 {
  font-size: 24px;
  margin-bottom: 10px;
}

.top-text-wrapper code {
  font-size: .85em;
  background: linear-gradient(90deg, #fce3ec, #ffe8cc);
  color: #ff2200;
  padding: .1rem .3rem .2rem;
  border-radius: .2rem;
}

.tab-section-wrapper {
  padding: 30px 0;
}

.select-box {
  display: flex;
  width: 400px;
  width: 100%;
  flex-direction: column;
  position: relative;
}

.select-box .options-container {
  max-height: 0;
  width: calc(100% - 12px);
  opacity: 0;
  transition: all 0.4s;
  overflow: hidden;
  border-radius: 5px;
  border: solid 1px #dcdfe5;
  background-color: #ffffff;
  order: 1;
  position: absolute;
  top: 95%;
}

.selected {
  background: #2f3640;
  margin-bottom: 8px;
  position: relative;
  /* width: 388px; */
  /* height: 64px; */
  border-radius: 5px;
  border: solid 1px #dcdfe5;
  background-color: #ffffff;
  order: 0;
}

.selected::after {
  /* Font Awesome	 */
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  /* BG Img	 */
  /* 	content:  url("img/arrow-down.svg");	 */
  position: absolute;
  right: 6px;
  top: 50%;
  transition: transform .5s;
  transform: translateY(-50%);
}


.selected h3,
.select-box label h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.57;
  color: #1f2949;
}

.selected h5,
.select-box label h5 {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.83;
  word-break: break-word;
  /* color: #81878f; */
}

.select-box .options-container.active {
  max-height: 240px;
  opacity: 1;
  overflow-y: scroll;
}

.select-box .options-container.active+.selected::after {
  transform: translateY(-50%) rotateX(180deg);
}

.select-box .options-container::-webkit-scrollbar {
  width: 8px;
  background: #0d141f;
  background: #81878f;
  background: #f1f2f3;
  border-radius: 0 5px 5px 0;
}

.select-box .options-container::-webkit-scrollbar-thumb {
  background: #525861;
  background: #81878f;
  border-radius: 0 5px 5px 0;
}

.select-box .option,
.selected {
  padding: 12px 24px;
  cursor: pointer;
  border-bottom: 1px solid #dcdfe5;
}

.select-box .option:hover {
  background: #dcdfe5;
}

.select-box label {
  cursor: pointer;
  word-break: break-word;
}

.select-box .option .radio {
  display: none;
}

.invalid-token {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  gap: 30px;
}

.invalid-token h2 {
  font-family: "Open Sans", sans-serif !important;
  width: 400px;
  text-align: center;

}

.invalid-token i {
  font-size: 100px;
  color: #ffcc00;
}

.invalid-token a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  padding: 10px 20px;
  background-color: #1a4786;
  color: white !important;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 5px;
}



/* WORKER REGISTER CSS */

.yenile-btn {
  font-size: 13px;
  padding: 2px;
  border: 1px solid #212529;
  outline: none;
  color: white;
  border-radius: 2px;
  /* margin-left: 5px; */
  background-color: #093168;
  width: 50%;
}

.qanunvericilik-icon {
  color: #093168;
  font-size: 20px;
}

.fixed-buttons {
  position: fixed;
  bottom: 0;
  right: 1%;
  z-index: 999999;
  display: flex;
  /* flex-direction: column; */
  flex-direction: row-reverse;
  gap: 10px;
  padding: 10px;
}

.open-button {
  z-index: 999999;
  background-color: #1a4786;
  color: white;
  padding: 10px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  /* position: fixed; */
  /* bottom: 23px; */
  /* right: 2%; */
  /* width: 215px; */
  font-size: 14px;
  font-weight: 200;
  transition: 0.2s;
}

.callcenter-button {
  z-index: 999999;
  background-color: #1a4786;
  color: white;
  padding: 10px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  /* position: fixed; */
  /* bottom: 23px; */
  /* right: 6%; */
  /* width: 215px; */
  font-size: 14px;
  font-weight: 200;
  transition: 0.2s;
  font-size: 18px;
}

.callcenter-button:hover {
  opacity: 1;
  color: white;
}

.callcenter-button i {
  /* font-size: 25px; */
  color: white;
}

.open-button i {
  color: white;
  font-size: 25px;
}

.form-popup {
  z-index: 99999999 !important;
  display: none;
  position: fixed;
  bottom: 0;
  right: 15px;
  border: 2px solid #f1f1f1;
  height: 100%;
}

.teklif-form .form-container {
  max-width: 500px;
  padding: 30px;
  background-color: white;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.teklif-form textarea {
  resize: none;
  height: 130px;
}


.teklif-form .form-container h2 {
  font-size: 18px;
  margin-bottom: 30px;
}

.teklif-form .form-container input {
  width: 100%;
  padding: 5px 10px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
  font-size: 15px;
}

.form-notpopup .form-container input {
  /* width: 50%; */
  height: 35px;
  border: 1px solid #1a47864b;
  background-color: white;
}

.form-notpopup .form-container input:focus {
  border: 1px solid #1a4786;
}


.form-notpopup textarea {
  /* width: 50%; */
  /* height: 40px; */
}

.form-notpopup .form-container .teklif-send {
  width: 50vw;
}

.form-notpopup h2 {
  text-align: center;
  font-size: 30px !important;
}

.form-notpopup .form-popup-main {
  width: 50vw;
}

@media screen and (max-width:768px) {
  .form-notpopup .form-container .teklif-send {
    width: 95vw;
  }

  .form-notpopup .form-popup-main {
    width: 95vw;
  }

  .form-notpopup h2 {
    text-align: center;
    font-size: 20px !important;
  }
}

.teklif-send {
  width: 100%;
  border: none;
  outline: none;
  padding: 10px;
  height: 50px;
  background-color: #1a4786;
  border-radius: 5px;
  color: white;
  margin-bottom: 10px;
  margin-top: 10px;
  cursor: pointer;

}

.form-container input:focus {
  outline: none;
}

.teklif-form .form-container .btn {
  /* color: white; */
  /* padding: 10px; */
  border: none;
  cursor: pointer;
  /* width: 100%; */
  margin-bottom: 10px;
  opacity: 1;
}

.cancel i {
  font-size: 30px;
}

.form-container .cancel {
  position: absolute;
  right: 0;
  top: 0;
  /* background-color: red; */
}

.form-notpopup {
  /* background-color: #f8f8f8; */
  background-image: url("./../img/copat.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.form-notpopup .form-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .form-notpopup .form-container{

} */

/* .form-container .cancel:hover{
  opacity: 1 !important;
  background-color: red !important;
  color: white;
} */

/* Add some hover effects to buttons */
.form-container .btn:hover,
.open-button:hover {
  opacity: 1 !important;
}

.confirm-update {
  border-radius: 2px;
  border: 1px solid #212529;
  padding: 2px;
  font-size: 13px;

  width: 50%;
  /* width: 100% !important; */
  background-color: green;
  outline: none;
  border: none;
  color: white;
  /* margin-bottom: 10px; */
}

.add-worker-form form {
  /* display: flex;
  flex-direction: column;
  flex-wrap: wrap; */

  /* gap: 20px;
  padding: 20px; */
}

.add-worker-form input {
  margin-bottom: 25px;
}

.ana-sehife {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 15px;
}

.home-page-card {
  border: 1px solid rgb(232, 232, 232);
  flex-basis: 32%;
  max-width: 32%;
  display: flex;
  flex-direction: column;
  min-height: 160px;
  justify-content: space-between;
  border-radius: 10px;
  transition: 0.2s;
  background-color: white;
}

@media screen and (max-width: 1205px) {
  .home-page-card {
    flex-basis: 49%;
    max-width: 49%;
    min-width: 30%;
  }
}

@media screen and (max-width:992px) {

  /* .home-page-card{
    padding-top: 30px;
  } */
  .ana-sehife {
    padding-top: 40px;
  }
}

@media screen and (max-width:790px) {
  .home-page-card {
    flex-basis: 100%;
    max-width: 100%;
    min-width: 100%;
  }
}



.home-page-card:hover {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

.home-page-card-main {
  display: flex;
  padding: 10px;
  padding-left: 0px !important;
  height: 100%;
  /* height: 80%; */
}

/* .home-page-card .fa-solid::before{
  content: '';
  position: absolute;
  width: 100%;
  background-color: red;
  height: 100%;
  left: 0;
  top: 0;
} */

.home-page-card-header h3 {
  font-size: 15px;
  /* font-weight: 500; */
}

.home-page-card-body-right p {
  font-size: 13px;
  font-weight: 100;
  color: #000000;
  opacity: 0.7;
}

.card-file {
  padding: 35px;
  position: relative;
  z-index: 22;
}

.card-file-qanunvericilik {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-file::before {
  content: '';
  position: absolute;
  width: 75%;
  background-color: #093168;
  opacity: 0.05;
  /* z-index: -1; */
  height: 50%;
  left: 11%;
  top: 25%;
  border-radius: 100%;
  /* display: flex;
  justify-content: center;
  align-items: center; */
}

.home-page-card-content {
  display: flex;
  flex-direction: column;
  padding: 0 0 5px 10px;
  /* justify-content: center; */
}

.home-page-card .fa-solid {
  /* position: relative; */
  font-size: 35px;
  color: #093168;
}

.home-page-card-link {
  height: 100% !important;
}

/* .home-page-card-link{
  width: 100%;
  height: 20%;
  background-color: #093168;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
} */



/* .add-worker-form .register-inputs{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.add-worker-form form input{
  width: 300px;
  min-width: 150px;
  padding: 10px;
  border: none;
  outline: none;
  border-radius: 5px;
  border: solid 1px #dcdfe5;
  background-color: #ffffff;
  cursor: text;
}

.add-worker-form form input:focus{
  border: solid 1px #1a4786;
}
*/
.add-worker-form .register-button {
  padding: 0 !important;
}


.add-worker-form form button {
  max-width: 300px;
  width: 100%;
  padding: 10px;
  border: none;
  outline: none;
  border-radius: 5px;
  border: solid 1px #dcdfe5;
  background-color: #1a4786;
  color: white;
  cursor: pointer;
}

/* CHANGE PASSWORD CSS */

.change-password .inputs form {
  display: flex;
  flex-direction: column;
}

.change-password .change-inputs {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.change-password form input {
  width: 300px;
  min-width: 150px;
  padding: 10px;
  border: none;
  outline: none;
  border-radius: 5px;
  border: solid 1px #dcdfe5;
  background-color: #ffffff;
  cursor: text;
}

@media screen and (max-width: 660px) {
  .change-password form input {
    width: 100%;
  }

  .change-password form button {
    width: 100% !important;
    max-width: 100% !important;
  }
}

.change-password form input:focus {
  border: solid 1px #1a4786;
}

.change-password .change-button {
  margin-top: 20px;
}

.change-password .change-button button {
  max-width: 300px;
  width: 100%;
  padding: 10px;
  border: none;
  outline: none;
  border-radius: 5px;
  border: solid 1px #dcdfe5;
  background-color: #1a4786;
  color: white;
  cursor: pointer;
}


/* CHANGEAUTHOR CSS */
.change-author-container {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.change-author-content {
  position: relative;
  /* height: 300px; */
  border-bottom: 1px solid gray;
  /* padding: 20px 0 20px 0; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  /* gap: 20px; */
  padding-bottom: 20px;
}

.change-author-content .select-wrapper {
  overflow-y: visible;
}

.change-author-content select {
  height: auto !important;
  min-height: 50px;
}

.change-author-content select {
  width: 100%;
  padding: 10px;
  border: none;
  outline: none;
  border-radius: 5px;
  border: solid 1px #dcdfe5;
  background-color: #ffffff;
  cursor: text;
}

.change-author-content input {
  width: 100%;
  padding: 10px;
  border: none;
  outline: none;
  border-radius: 5px;
  border: solid 1px #dcdfe5;
  background-color: #ffffff;
  cursor: text;
}

.change-author-content button {
  max-width: 300px;
  min-width: 150px;
  width: 300px;
  padding: 10px;
  border: none;
  outline: none;
  border-radius: 5px;
  border: solid 1px #dcdfe5;
  background-color: green;
  color: white;
  cursor: pointer;
}

.change-author-buttons {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: center; */
  /* align-items: center; */
  gap: 20px;
}

.change-author-buttons button {
  width: 300px;
  height: 35px;
  background-color: green;
  border: none;
  outline: none;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}

.close-change-author {
  width: 300px;
  height: 35px;
  background-color: rgb(220, 58, 58) !important;
  color: white;

}


/* PROFIL SEHIFESINDEKI INPUTUN CSS-I */
.user-profile-input {
  width: 100%;
  padding: 10px;
  border: none;
  outline: none;
  border-radius: 5px;
  border: solid 1px #dcdfe5;
  background-color: #ffffff;
  cursor: text;
}

.user-profile-input:focus {
  border: solid 1px #1a4786;
}

.save-profile {
  display: none;
  width: 150px;
  height: 35px;
  background-color: green;
  border: none;
  outline: none;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}

.edit-profile {
  border-radius: 5px;
  width: 150px;
  height: 35px;
  background-color: #1a4786;
  border: none;
  outline: none;
  color: white;
  cursor: pointer;
}

.save-profile-active {
  display: block;
}


/* BTN NEXT BTN PREV FOR PAGINATION */

/* .next-page:disabled{
  pointer-events: none;
  background:red;
} */



/* ALERT CONTAINER CSS */

/* .alert{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0,0,0,0.5);
  z-index: 99999999999999;
  display: flex;
  justify-content: center;
  align-items: center;
} */


.form-error p {
  color: red;
  font-size: 12px;
  margin: 0;
  padding: 0;
}

/* HOMEPAGE */
.home-file {
  font-size: 30px !important;
  color: #1a4786;
}

.card-file {
  display: flex;
  justify-content: center;
  align-items: center;
  /* border-right: 1px solid #e9e9e9; */
  /* padding-left: 20px; */
}

.card {
  width: 100% !important;
  max-width: 100% !important;
  transition: 0.3s;
}

.card:hover {
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
}

.card .col-11 {
  /* padding-left: 20px; */
}

@media screen and (max-width: 400px) {
  .col-1 {
    /* flex: 0 0 auto; */
    width: 100% !important;
    padding-top: 10px;
    /* width: 8.333333%; */
  }

  .col-11 {
    width: 100% !important;
    /* flex: 0 0 auto; */
    /* width: 8.333333%; */
  }

  .card h3 {
    text-align: center;
  }

  /* .card-file{
    justify-content: center;
    padding-left: 0;
    padding-top: 10px;
  } */

  .card .col-11 {
    padding-left: 0;
  }


}


/* USER REGISTER SEHIFESINDEKI DUYME */
.user-add-btn {
  width: 100%;
  height: 50px;
  background-color: #1a4786;
  border: none;
  outline: none;
  color: white;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 20px;
}


/* EMAIL VERIFY */
.email-verify-body .btn_send {
  cursor: pointer;
}


#pagination-input {
  width: 50px !important;
  text-align: center;

}


/* SWEET ALERT */

.swal-footer {
  text-align: center !important;
}

.swal-text {
  text-align: center !important;
}



/* STATISTICS CSS */

.stat-table {
  width: 100%;
  overflow-x: auto;
}

.stat-table caption {
  font-weight: 500;
  font-size: 18px;
  color: black;
}

.stat-table-main table {
  width: 100%;
  /* padding: 20px; */
}

.stat-table .stat-table-main th {
  width: 200px;
  min-width: 100px;
  height: 45px;
  padding: 0 15px;
}

.stat-table-main td:nth-last-child(1) {
  border-right: none !important;
}

.stat-table .stat-table-main td {
  height: 45px;
  padding: 0 15px;
  /* display: flex; */
  /* flex-direction: row; */
  /* justify-content: center; */
  /* align-items: center; */
  border-right: 1px solid rgb(248, 245, 245);
}

.stat-table-main tr {
  /* padding: 0 10px; */
  border-bottom: 1px solid rgb(203, 201, 201);
}

.btn-stat-hesabla {
  width: 100%;
  /* height: 50px; */
  padding: 8px;
  background-color: #1a4786;
  border: none;
  outline: none;
  color: white;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 20px;
}



/* MEHKEME  */

.btn-court-add {
  width: 100% !important;
  background-color: #1a4786 !important;
}

.court-file-create {
  font-size: 11px;
  position: absolute !important;
  bottom: 0;
  right: 5px;
}

#createup {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-radius: 5px;
  outline: none;
}

#createup:hover {
  background-color: #e7e6e6;
  /* color: white; */
}

.form2 {
  /* display: none; */
  height: 0;
  opacity: 0;
  pointer-events: none;
  /* transition: 0.3s; */
}

.form2-active {
  height: auto !important;
  opacity: 1 !important;
  pointer-events: all !important;
  /* transition: 0.3s; */
}

.court-file-link {
  /* box-shadow: 0 0 5px 0 rgba(0,0,0,0.5); */
  border: 1px solid #fce3ec;
  width: 300px;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  align-items: center;
  position: relative;
}

.court-file-link span {
  margin-left: 10px;
}

.court-file-link:hover {
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
}



.back-btn {
  /* border-bottom: 1px solid #1a4786 !important; */
  margin-bottom: 15px;
  color: #0c0c0c !important;
}

.back-btn i {
  margin-right: 7px;
}

/* #0693C4  copat color*/


/* .basecontent-header{
  position: relative;
}


.basecontent-header::after{
  content: "";
  position: absolute;
  top: 50%;
  margin-left: 20px;
  width: 100%;
  height: 2px;
  background: rgb(6,147,196);
background: linear-gradient(90deg, rgba(6,147,196,1) 0%, rgba(255,255,255,1) 50%);
} */




/* ANA SEHIFE VIDEO BACKGROUND */

.home-video {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  margin-top: 30px;
}

.video-background-main {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-background {
  position: relative;
  width: 90%;
  /* height: 80vh; */
  background-color: white;
  padding: 30px 0;
  box-shadow: 2px 0px 20px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-background img {
  width: 50%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(30%);
}

.video-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.video-background button {
  position: absolute;
  background-color: rgb(219, 219, 219);
  border-radius: 50%;
  /* padding: 20px; */
  width: 70px;
  height: 70px;
  /* top: 50%; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: transparent; */
  border: none;
  outline: none;
  z-index: 22;
  /* width: 50px; */
  /* height: 50px; */
  transition: 0.3s;
}

.video-background button:hover {
  background-color: white;
}

.video-background button i {
  font-size: 40px;
  /* color: #1a4786; */
}

.home-video-main {
  display: none;
  /* position: relative; */
  width: 90%;
  height: 80vh;
  background-color: white;
  /* padding: 30px 0; */
  box-shadow: 2px 0px 20px 0px rgba(0, 0, 0, 0.1);
  /* display: flex; */
  justify-content: center;
  align-items: center;
}

.home-video-main-active {
  display: block;
}

.video-background-active::after {
  display: none;
}



/* DERC */
.btn-derc-create {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.btn-derc-create a {
  background-color: #1a4786;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.2s;
}

.btn-derc-create a:hover {
  background-color: #093168;
}

.btn-derc-create {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}


/* 404 page */

.container-404 {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  /* align-items: center; */
}

.main-container-404 {
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-404 h1 {
  padding: 30px;
  font-size: 120px;
  color: #1a4786;
}

.right-404 {
  display: flex;
  flex-direction: column;
}

.error-404 {
  font-size: 35px;
  font-weight: bold;
}

.right-404 span {
  font-size: 30px
}




/* meetinglist edit popup */
.edit-popup {
  display: none;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  background-color: rgb(255, 255, 255);
  position: absolute;
  top: 0;
  bottom: 0;
}

.iclas-edit-btn {
  font-size: 13px;
  padding: 2px;
  border: 1px solid #212529;
  outline: none;
  color: white;
  border-radius: 2px;
  /* margin-left: 5px; */
  background-color: #093168;
  width: 100%;
}

.table>:not(caption)>*>* {
  padding: 0;
}


.swal2-actions {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 20px 20px 20px !important; /* Kənarlardan səliqəli boşluq */
}

.full-width-btn {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top:10px;
}