.upload-files-modal-content {
  padding: 31px 25px;
}

.modal-content {
  width: 365px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
}

.modal-content.sent-success-content {
  align-self: center;
}

.upload-circle {
  height: 95px;
  width: 95px;
  background: #F3A02E;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.upload-circle img {
  height: 30px;
}

span.upload-file-text {
  font-size: 32px;
  font-weight: 600;
  margin-top: 24px;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.upload-files-modal-content input,
.upload-files-modal-content textarea {
  padding: 8px 0;
}

.upload-files-modal-content textarea:focus-visible {
  outline: none;
}

.upload-files-modal-content button.send-btn {
  font-size: 18px;
  text-decoration: none;
  width: 220px;
}

.upload-files-modal-content .form-md input[type=checkbox] {
  width: fit-content;
  position: absolute;
  top: 2px;
}

.upload-files-modal-content .form-md input[type=checkbox]+label {
  position: relative;
  top: unset;
  left: unset;
  transform: unset;
}

.upload-files-modal-content .form-md {
  text-align: left;
}

.upload-files-modal-content .close-icon {
  position: absolute;
  right: 20px;
  top: 20px;
}

/* --------------------------- plans css ------------------------- */
.current-plan-card {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.10);
  overflow: hidden;
}

.current-plan-card .plan-title {
  margin-bottom: 35px;
}

.current-plan-card .plan-value {
  font-size: 40px;
  color: var(--primary-color);
}

/* progress bar */

.current-plan-card .progress {
  height: 256px;
  width: 256px;
  background: none;
  position: relative;
  border: none;
  cursor: pointer;
  margin-bottom: 0;
  border-radius: 50%;
}

.current-plan-card .progress::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 25px solid #E8E9EF;
  position: absolute;
  top: 0;
  left: 0;
}

.current-plan-card .progress>span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}

.current-plan-card .progress .progress-left {
  left: 0;
}

.current-plan-card .progress .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 25px;
  border-style: solid;
  position: absolute;
  top: 0;
  border-color: #EF9632;
}

.current-plan-card .progress .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 124px;
  border-bottom-right-radius: 124px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.current-plan-card .progress .progress-right {
  right: 0;
}

.current-plan-card .progress .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 124px;
  border-bottom-left-radius: 124px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.current-plan-card .progress .progress-value {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 10px;
}


.current-plan-card .details-plan-sec .plan-title {
  margin-bottom: 29px;
}

.current-plan-card .upper-border {
  height: 32px;
  background: #0681BB;
}

.current-plan-card .row {
  padding: 24px;
}


.current-plan-card .progress {
  height: 215px;
  width: 215px;
}

.current-plan-card .progress .progress-bar {
  border-width: 25px;
}

.plans-cards-wrapper {
  margin-top: 40px;
}

.plans-cards-wrapper .plans-card {
  border-radius: 10px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.plans-cards-wrapper .header-block {
  background: #F9F9F9;
  padding: 18px 28px;
}

.plans-cards-wrapper .content-block {
  padding: 24px;
}

.plans-cards-wrapper .content-block li {
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 500;
}

.plans-card.active {
  border: 2px solid #0681BB;
  overflow: hidden;
}

.plans-card.active .header-block {
  background: #0681BB;
}

.plans-card.active .header-block span {
  color: white;
}

.plans-card {
  height: 100%;
}

.content-block {
  height: calc(100% - 91px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* --------------------------- plans css ------------------------- */