body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  --background-color-detail: rgba(217, 217, 217, 0.25);
  --border-color-detail: border: 1px solid rgba(112, 193, 255, 0.15);
}
body .login-form {
  background: linear-gradient(to bottom right, #70c1ff, #498ffc);
}

body .service-login-form {
  background: #fce5d0;
}

body .muni-login-form {
  background: var(--main-color);
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.card {
  width: 450px;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 40px;
  backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-card {
  width: 450px;
  background-color: #ffffff;
  padding: 40px;
  backdrop-filter: blur(10px);
  /* box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); */
}

.muni-card {
  width: 450px;
  background-color: #ffffff;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.logo-image {
  width: 55%;
  display: block;
  margin: 0 auto;
  margin-bottom: 35px;
}

.service-login-form h2 {
  color: #f7b237;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 28px;
}

.show-err {
  margin: 0 0 16px 0;
}

.err-text {
  color: red;
}

.send-button {
  margin: 0 0 16px 0;
}

.muni-login-form h2 {
  /* color: #05a46a; */
  color: var(--button-active-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 28px;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  color: #fff;
  margin-bottom: 5px;
}

.login-form input {
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.8);
}

.service-login-form input {
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 8px;
  background-color: #fce5d0;
}

.muni-login-form input {
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 8px;
  background-color: #dcffe8;
}

.service-login-form p a {
  color: #f7b237;
}

.muni-login-form p a {
  color: #05a46a;
}

.btn-login-service {
  padding: 10px;
  background-color: #f7b237;
  color: #fff;
  border: none;
  border-radius: 5px;
  margin-bottom: 10px;
}

.btn-login-service:hover {
  background-color: #fce5d0;
  color: #000;
}

.btn-login-muni {
  padding: 10px;
  background-color: var(--button-active-color);
  color: var(--active-button-text-color);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 10px;
}

.btn-login-muni:hover {
  background-color: var(--button-color);
  color: var(--hover-button-text-color);
}

.authorize-button {
  padding: 10px;
  background-color: #DCFFE8;
  color: black;
  font-weight: 500;
  border: none;
  border-radius: 5px;
}

.authorize-button:hover {
  padding: 10px;
  background-color: #2095ef;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button {
  padding: 10px;
  background-color: #fff;
  color: #498ffc;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* button:hover {
  background-color: #70c1ff;
} */

@media (max-width: 480px) {
  .card {
    width: 100%;
    max-width: 350px;
  }
}
.description {
  font-size: 12px;
}

.municipal-container {
  width: 98vw;
  padding: 0 50px 50px;
  margin-bottom: 50px;
}
.municipal-nav-tabs-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 15px !important;
  }
  .municipal-container {
    padding: 15px !important;
  }
  .municipal-nav {
    padding: 15px !important;
  }
  .municipal-nav-tabs {
    display: none;
  }
  .municipal-nav-tabs-sp {
    display: block;
  }
}

.nav-tabs {
  margin-bottom: 15px;
  border-bottom: 1px solid var(--button-active-color);
}
.nav-tabs a {
  background: var(--main-color);
  margin-right: 10px;
  font-weight: 700;
  color: #556b2f;
  color: var(--button-text-color);
  min-width: 102px;
}

a.nav-link.active {
  background: var(--button-active-color) !important;
  color: var(--active-button-text-color) !important;
}

a.nav-link:hover {
  color: var(--hover-button-text-color);
}
a.nav-link:focus {
  color: var(--hover-button-text-color);
}

.nav-item .dropdown-content {
  padding: 0;
}
.nav-item .dropdown-content a {
  text-decoration: none;
  background: none;
}

.nav-item .dropdown-content a:hover {
  /* background-color: #70c1ff5c; */
  background-color: var(--main-color);
}

.nav-item .dropdown-content p {
  margin: 0;
  padding: 7px;
  font-weight: 300;
}

.municipal-btn {
  background: #05a46a;
  background: var(--button-active-color);
  border-radius: 10px;
  margin-right: 10px;
  --bs-btn-hover-bg: #04d48c;
  font-weight: 700;
  color: white;
  min-width: 102px;
}

.municipal-btn.disabled {
  opacity: 0.5;
  background: #70c1ff;
  border: none;
  color: white;
}

.service-btn {
  /* background: rgba(112, 193, 255, 1); */
  background: var(--button-color);
  border-radius: 10px;
  margin-right: 10px;
  --bs-btn-hover-bg: #ff7f50;
  font-weight: 700;
  color: var(--button-text-color);
  min-width: 102px;
}

.btn {
  /* background: rgba(112, 193, 255, 1); */
  background: var(--button-color);
  border-radius: 10px;
  margin-right: 10px;
  font-weight: 700;
  color: var(--button-text-color);
  min-width: 102px;
}

.btn:hover {
  background-color: var(--button-active-color);
}

.service-btn.disabled {
  opacity: 0.5;
  background: #70c1ff;
  border: none;
  color: white;
}

.municipal-date {
  border: 1px solid #70c1ff;
  width: 92%;
}

.municipal-date-first::after {
  content: " ~ ";
  padding-left: 8px;
}

.municipal-tbl {
  padding: 10px;
}

.municipal-tbl table thead tr th {
  background: #70c1ff;
  line-height: 34px;
}

.municipal-tbl table thead tr th:last-child {
  width: 80px;
}

.municipal-tbl table td {
  border-bottom-color: #70c1ff;
  line-height: 2;
}

.municipal-tbl label {
  color: black;
}

.municipal-tbl table tbody i {
  font-size: 24px;
  cursor: pointer;
}

.municipal-tbl table tbody i:first-child {
  margin-right: 8px;
}

.municipal-tbl table input.form-check-input {
  margin: 5px;
  cursor: pointer;
}

.municipal-tbl table label.form-check-label {
  margin-bottom: 0;
}

/* Pagination  */
.pagination .prev,
.pagination .next {
  cursor: pointer;
}
.page-item.prev a,
.page-item.next a {
  color: gray;

  background: transparent;
  border: unset;
  font-weight: 700;

  font-size: 28px;
  padding: 0;
  margin: 0 10px;
}

.page-item.next a {
  margin-left: 10px !important;
}

.page-item.prev a:focus,
.page-item.next a:focus {
  box-shadow: none !important;
}

.pagination .page-item:not(.prev, .next) {
  border-radius: 29px;
  width: 45px;
  height: 40px;
  margin-top: 2px;
  margin-right: 3px;
}

.pagination .page-item:not(.prev, .next) > a {
  border-radius: 25px;
  border: 1px solid var(--button-active-color);
  background-color: white;
  color: var(--button-text-color);
  text-align: center;
}

.pagination .page-item > a.active-page {
  /* background-color: #70c1ff; */
  background-color: #05a46a;
  background-color: var(--button-active-color);
  color: var(--active-button-text-color);
}

/* End Pagination  */

.horizontal-center {
  display: flex;
  align-items: center;
}

.login-selection {
  width: 600px;
  text-align: center;
}

.login-selection p {
  font-size: 24px;
}

/* header */
.header {
  padding: 25px 55px;
  display: flex;
  background: var(--main-color);
  border-bottom: 1px solid #f2f2f2;
  width: 100%;
  z-index: 100;
  position: sticky;
  top: 0;
}

.title-header {
  font-size: 25px;
  margin: 0;
  font-weight: 600;
}
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 12px 16px;
  z-index: 999;
}

.dropdown-content a {
  color: #000;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.municipal-nav {
  width: 98vw;
  padding: 20px 50px 0 50px;
}
.logo-header {
  display: flex;
  align-items: center;
  font-size: 25px;
  margin: 0;
  font-weight: 600;
}
.logo-header > img {
  height: 60px;
  width: 60px;
}
.logo-header > span {
  margin-top: 10px;
}
.user-info {
  background-color: white;
  padding: 5px 10px 0;
  border-radius: 4px;
}
/* header */

/* page */
.title-page {
  font-size: 25px;
  margin: 0;
  font-weight: 600;
}
/* page */

/* Start: bread-crumb */
.bread-crumb {
  padding: 10px 0px;
  font-size: 16px;
  background-color: var(--main-color);
  border: none;
  color: var(--button-text-color);
}
.bread-crumb .bc-list {
  margin: 0 auto;
  white-space: nowrap;
  display: flex;
  overflow-x: auto;
  padding: 0 20px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.bread-crumb li {
  list-style: none;
}
@media screen and (max-width: 768px) {
  .bread-crumb .bc-list {
    padding: 0;
  }
}
.bread-crumb .bc-list li {
  float: left;
  position: relative;
}
.bread-crumb .bc-list li a {
  color: #9f8745;
}
.bread-crumb .bc-list li.have-next {
  margin-right: 5px;
  padding-right: 9px;
}
.bread-crumb .bc-list li.have-next:before {
  position: absolute;
  content: "";
  top: 12px;
  right: 0;
  width: 5px;
  height: 1px;
  background: #999;
  transform: rotate(35deg);
}
.bread-crumb .bc-list li.have-next:after {
  position: absolute;
  content: "";
  top: 16px;
  right: 0;
  width: 5px;
  height: 1px;
  background: #999;
  transform: rotate(-35deg);
}
@media screen and (max-width: 768px) {
  .bread-crumb {
    padding: 15px 0;
  }
}
/* End: bread-crumb */

.company-form label {
  color: #000;
}

.company-success-form {
  min-height: 40vh;
}

.w-10 {
  width: 10%;
}
.w-20 {
  width: 20%;
}
.w-40 {
  width: 40%;
}

.mbt-10 {
  margin-bottom: 10px;
}

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

.alert-message {
  color: red;
  text-align: left;
  font-size: 13px;
  font-weight: bold;
}

/* Form_create_item */
form.form_custom {
  flex-direction: unset;
}
.form_custom {
  gap: 0 2%;
  flex-wrap: wrap;
}
.form_custom input,
.form_custom textarea,
.form_custom select,
.form_custom .ant-space-item {
  margin-bottom: 10px;
}
.form_custom_donated textarea {
  margin-bottom: 0;
}
.left-content {
  width: 49%;
}
.right-content {
  width: 49%;
}
.form_custom .img_create {
  width: 100%;
  max-height: 252px;
  object-fit: contain;
}
.content-item {
  margin-bottom: 20px;
}
.form_custom input {
  border-radius: var(--bs-border-radius);
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
}
.title-content {
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
}
.sub-title-content {
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.form-flex {
  display: flex;
  gap: 0 2%;
}
.form-flex .form-flex-item-1 {
  width: 49%;
  margin-bottom: 10px;
}
.form-select {
  padding: 10px 2.25rem 5px 0.75rem;
  margin-bottom: 10px;
}
.form-flex .form-flex-item-2 {
  width: 49%;
  margin-bottom: 10px;
}
.ant-picker-input input,
.form_custom input.ant-radio-input {
  margin: 0;
}
form .ant-picker {
  border-radius: var(--bs-border-radius);
}
.button_form {
  gap: 0 5%;
}
.button_form button {
  border-radius: 10px;
  background: #05a46a;
  background: var(--button-active-color);
  color: var(--active-button-text-color);
  border: none;
  box-shadow: none;
}
.button_form button:hover {
  background-color: var(--hover-button-background-color);
}
.form_custom *:disabled {
  background-color: var(--bs-secondary-bg);
  opacity: 1;
}
/* Form_create_item */

/* START: municipality form */

.form_account .form_inputText {
  padding: 10px;
  border-radius: 5px;
  width: 100%;
  border: 1px solid #d3d3d3;
  margin-bottom: 10px;
}
.form_account .form_inputText:disabled {
  background-color: #f5f5f5;
}
.form_account label {
  color: #000;
  font-weight: 500;
}
.postal-code {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.postal-code .form_inputText {
  width: 50%;
  margin-bottom: unset;
}
.postal-code .input-name {
  width: 50%;
  display: flex;
  align-items: center;
}
.postal-code .input-name .form_inputText {
  width: 100%;
}
div.input-name:first-child {
  margin-right: 12px;
}
div.input-name span {
  margin-right: 5px;
}
.pick-permission-box-wrap {
  display: flex;
  align-items: center;
  padding-left: 60px;
}
.permission-name-wrap .form_inputText {
  width: 100%;
}
.permission-sp {
  display: none;
}
.permission-pick {
  margin-bottom: 10px;
}
.ability-edit {
  margin-bottom: 10px;
}
.ability-edit input {
  margin-bottom: 0;
  margin-right: 3px;
}
.button_form button:disabled {
  background-color: #999;
  border-color: #999;
}
.form_inputText.error {
  border-color: red;
}
.alert-register {
  color: red;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .permission-name-wrap {
    width: 100%;
    margin-bottom: 10px;
  }
  .pick-permission-box-wrap {
    padding-left: 14px;
  }
}
@media screen and (min-width: 430px) and (max-width: 574px) {
  .permission-check-box-wrap {
    margin-right: 10px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 896px) {
  .permission-check-box-wrap {
    margin-right: 30px !important;
  }
}
@media screen and (max-width: 430px) {
  .permission-pc {
    display: none;
  }
  .permission-sp {
    display: flex;
    justify-content: space-between;
  }
}
/* END: municipality form */

/* START: custom checkbox on municipality form */
#municipalityForm {
  margin-bottom: 30px;
}
.permission-check-box-wrap {
  display: block;
  position: relative;
  padding-left: 33px;
  margin-bottom: 12px;
  margin-right: 50px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.permission-check-box-wrap input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 3px;
}
.permission-check-box-wrap:hover input ~ .checkmark {
  background-color: #ccc;
}
.permission-check-box-wrap input:checked ~ .checkmark {
  background-color: #2196f3;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.permission-check-box-wrap input:checked ~ .checkmark:after {
  display: block;
}
.permission-check-box-wrap .checkmark:after {
  left: 9px;
  top: 5px;
  width: 8px;
  height: 15px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* END: custom checkbox on municipality form */

.icon-eyes {
  position: absolute;
  margin-top: -29px;
  right: 30%;
}
/*Start: Municipal - Project */
.ant-table-content thead th {
  background-color: var(--button-color) !important;
}
.ant-table-cell .fa {
  font-size: 1.2rem;
}
.ant-table-wrapper {
  margin-bottom: 30px;
}
.notification-project {
  position: relative;
  display: flex;
}
.text-noti-project {
  display: flex;
  align-items: center;
  font-size: 14px;
  white-space: nowrap;
  margin-right: 20px;
}
.text-noti-project:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #26dc44;
  margin-right: 8px;
}
.text-noti-project.text-draft::before {
  background-color: #02c1f7;
}
.text-noti-project.text-non-public::before {
  background-color: #ffff00;
}
.btn-active-project {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  line-height: 18px;
  border-radius: 4px;
  height: 40px;
  padding: 8px 16px;
}
.btn-active-project.btn-non-public {
  color: #563bff;
  border: 1px solid #563bff;
}
.btn-active-project.btn-draft {
  color: #563bff;
  border: 1px solid #563bff;
}
.btn-active-project.btn-public {
  --background-button-admin: #fc783f;
  --color-text-admin: #fff;
  color: var(--color-text-admin);
  background-color: var(--background-button-admin);
}
.ant-btn-primary.btn-admin-stt.btn-public:hover {
  color: var(--color-text-admin);
  background-color: var(--background-button-admin);
}
.ant-btn-primary.btn-admin-stt.btn-non-public {
  --background-button-admin: #adb5bd;
  --color-text-admin: #000;
  color: var(--color-text-admin);
  background-color: var(--background-button-admin);
  border: none;
}
.ant-btn-primary.btn-admin-stt.btn-non-public:hover {
  color: var(--color-text-admin);
  background-color: var(--background-button-admin);
}
.disable-button {
  cursor: no-drop;
  opacity: 0.8 !important;
  background-color: var(--bs-secondary-bg);
}
/*End: Municipal - Project */

/* :start: dashbroad */
.dashbroad .overview {
  gap: 0 2%;
  display: flex;
  text-align: center;
}
.overview .overview-square {
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  width: 100%;
  padding: 20px;
}
.chart .chart-flex {
  display: flex;
  gap: 0 3%;
}
.chart .chart-flex .w-reponsive {
  width: 48%;
}
.chart-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #70c1ff;
  padding-bottom: 15px;
}
.chart-content {
  box-shadow: 2px 2px 4px 2px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 768px) {
  .dashbroad .overview {
    display: block;
  }
  .overview .overview-square {
    margin-bottom: 15px;
    padding: 10px;
  }
  .chart .chart-flex {
    display: block;
  }
  .chart .chart-flex .w-reponsive {
    width: 100%;
  }
  .mt-sp {
    margin-top: 30px !important;
  }
}
/* :End: dashbroad */
/*Start:  Inquiry-Detail */
.background-color-detail {
  background-color: var(--background-color-detail);
  border: var(--border-color-detail);
}
.show-type {
  padding: 13px 17px;
}
.detail-content {
  background: #fff;
  box-shadow: 0px 2px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 5px 10px;
  margin-bottom: 40px;
  border-radius: 5px;
}
.title-content-inquiry {
  padding: 5px;
}
.form-detail .ant-table-thead th {
  color: #000;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.form-detail .ant-table-tbody td {
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.ant-table-title {
  background-color: var(--background-color-detail);
}
.btn-show-hidden {
  color: #000;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
}
.header-action {
  padding: 5px;
}
.btn-action-add {
  padding: 4px 14px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 12px;
  background: #fff;
  color: #000;
  text-decoration: none;
}
.input-custom {
  border-radius: var(--bs-border-radius);
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
}
/*End: Inquiry-Detail */

.ant-segmented-group {
  /* background: hsl(206deg 58.08% 89.08%) !important; */
  background: var(--main-color);
}

.ant-segmented-item-selected {
  background: var(--button-active-color) !important;
  color: var(--active-button-text-color) !important;
}
.ant-segmented-item {
  color: #8d6e63;
}
.ant-segmented-item-label {
  font-size: 15px !important;
  font-weight: 600 !important;
}
.ant-segmented-item-label:hover {
  color: #5d4037;
}
.table-modal {
  margin: 30px 0;
}

/* History-donation-modal */
.border-none {
  border-radius: 0;
  border: 1px solid #ccc;
  color: #000;
}

.border-left {
  padding: 5px;
  width: 30%;
}

.border-right {
  flex: 1;
  padding: 5px;
  margin-bottom: 0;
  /* overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; */
}

.center-placeholder::placeholder {
  text-align: center;
}

.block-input {
  display: flex;
  gap: 10px;
}
.block-input-text {
  border: 1px solid black;
  padding: 7px 11px;
}
.block-input-item-1 {
  width: 30%;
}
.block-input-item-2 {
  flex: 1;
}

.donation-list-select {
  width: 100%;
  height: 45px;
}

/* profile */
.municipal-profile-container {
  width: 98vw;
  padding: 0 50px 50px;
  margin-bottom: 50px;
}

.user-image-uploader .image-upload-area {
  width: 100%;
  height: 200px;
  cursor: pointer;
  background-image: url(/assets/img/icon-camera-742254750ddac823d4cd.png);
  background-repeat: no-repeat;
  background-position: center center;
  border: 2px #f1f1f1 solid;
}
.option-content {
  position: relative;
  padding: 60px 0;
}
.main-option {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}
.add-btn-position {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%, 50%);
}
.icon-chose-option {
  font-size: 50px;
  cursor: pointer;
}

.profile-img {
  width: 30%;
  height: 200px;
}

.profile-text {
  width: 70%;
  height: 200px;
}

.text-only {
  height: 200px;
}

.main-img {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 200px;
  cursor: pointer;
}

.ant-upload-wrapper {
  display: block;
  width: 100%;
}

.main-img-disable {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 200px;
  cursor: no-drop;
}
.public_flag_option_disable {
  pointer-events: none;
}
.main-img .ant-upload-select,
.main-img .ant-upload-list-item-container {
  width: 100% !important;
  height: 200px !important;
}
/* .main-img .ant-upload-select {
  width: 100%;
  height: 200px;
} */
.anticon-picture {
  font-size: 150px;
}
.create-img {
  object-fit: cover;
  max-height: 200px;
  width: 100%;
}

.image-main {
  object-fit: contain;
  max-width: 500px;
  height: 200px;
}
.option-item {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .profile-img,
  .profile-text {
    width: 100%;
  }
  .municipal-profile-container {
    width: 100%;
    padding: 0 15px;
  }
}

.usage_plan {
  margin-right: 45px;
}

.usage_plan p {
  margin-bottom: 0;
}
.disabled-button {
  opacity: 0.5;
  pointer-events: none;
}
.radio_span {
  font-weight: normal;
  display: inline-block;
  margin-left: 10px;
}
.radio-title {
  display: inline-block;
  margin-right: 30px;
}
.form-usage-plane {
  width: auto;
  display: inline-block;
  margin: 0 5px;
}
.form-rate {
  max-width: 80px;
  display: inline-block;
  margin: 0 5px;
}
.title-usage-plan {
  padding: 0 20px 0 50px;
}
.rate-title {
  min-width: 80px;
}
.rate-form__item-1 {
  display: flex;
  gap: 50px;
  align-items: center;
}
.rate-form__item-2 {
  display: flex;
  gap: 60px;
  align-items: center;
  padding-left: 42px;
}
.rate-title {
  margin-bottom: 0 !important;
}
.label_radio {
  min-width: 115px;
  display: inline-block;
}

.text-validate-password {
  font-size: clamp(0.8125rem, 0.7518rem + 0.2589vw, 1.0625rem);
}

.alert-validate-password {
  color: #198754;
  font-weight: 700;
}

.password-input {
  position: relative;
  margin-bottom: 10px;
}

.hidden-password-img {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.toppage-upload .ant-upload-list.ant-upload-list-picture::before {
  content: "推奨画像サイズ：1200×600　最大アップロードサイズ：1.5MB\A※最大5枚まで表示可能です";
  white-space: pre-line;
}

.feature-upload .ant-upload-drag .ant-upload {
  padding: 16px 12px;
}

.feature-setting-btn-back {
  font-size: 28px;
  margin-right: 10px;
  cursor: pointer;
}

.history-donation-modal-custom .ant-modal-content .ant-modal-close {
  top: 8px;
  inset-inline-end: 8px;
}

.toppage-upload .ant-upload-drag-container {
  padding: 0 10px;
}

.history-donation-custom-form > dl > dt {
  font-weight: 200;
}

.show-detail-history {
  cursor: pointer;
}

.show-detail-history:hover {
  text-decoration: underline;
}

.service-color {
  background-color: #fce5d0;
  border: none;
  color: #8d6e63;
}

.muni-color {
  background-color: var(--button-color);
  border: none;
  color: var(--button-text-color);
}

.service-nav-tabs .nav-item .dropdown-content a:hover {
  /* background-color: #70c1ff5c; */
  background-color: #fce5d0;
  color: var(--main-color);
}

.modal-button {
  background-color: var(--button-active-color);
}
.fs-18 {
  font-size: 18px;
}
.fs-12 {
  font-size: 12px;
}
/* edit-info */
.avatar {
  width: 100%;
  text-align: center;
  display: grid;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
}
.avatar .image {
  width: 210px;
  max-height: 250px;
  border: 1px solid #f2f2f2;
  padding: 15px;
}
.avatar .image img {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.avatar .image .mr-top-avatar {
  margin-top: -25px;
}
.avatar .image .none-mr-top-avatar {
  margin-top: 0px;
}
.delete-avatar-info {
  width: 25px;
  height: 25px;
  background-color: #181717;
  border: none;
  border-radius: 50%;
  position: relative;
  left: 50%;
  top: -10px;
}

.delete-avatar-info::before {
  background-color: #fff;
  content: '';
  height: 2px;
  width: 50%;
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform-origin: center center;
}

.delete-avatar-info::after {
  background-color: #fff;
  content: '';
  height: 50%;
  width: 2px;
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform-origin: center center;
}
.btn-image {
  color: #6c757d;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.5px;
  padding: 12px 10px;
  background: var(--main-color);
}
.btn-image:hover {
  cursor: pointer;
}
@media screen and (max-width: 568px) {
  .usage_plan {
    margin-right: 20px;
  }
}
/* edit-info */
