html,
body {
  min-height: 100vh;
  margin: 0;
}

/* app.css */
body {
  font-family: 'Roboto';
}

/* Apply Roboto to specific elements */
h2,
h3,
h4,
h5,
h6,
p,
label {
  font-family: 'Roboto';
}

.sr-body {
  max-height: 500%;
  min-height: calc(100vh - 56px - 80px);
  overflow: inherit;
}

h1 {
  font-size: 35px;
  font-family: 'Roboto';
  font-weight: 900;
}

h3 {
  font-weight: 700;
}

p {
  font-size: 16px;
}

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

.content {
  flex: 1;
}

footer {
  /* background-color: #f8f9fa; */
  padding: 1rem;
  text-align: center;
}

.logo-style {
  width: 215px;
  height: 50px;
  object-fit: cover;
}

.logo-big-style {
  max-width: 415px;
  max-height: 100px;
  object-fit: cover;
}

.intl-tel-input {
  display: table-cell;
}

.intl-tel-input .selected-flag {
  z-index: 4;
}

.intl-tel-input .country-list {
  z-index: 5;
}

.input-group .intl-tel-input .form-control {
  border-top-left-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 0;
}

.flexing {
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}

.vertical-line {
  border-left: 2px solid #D0D0D0;
  /* Adjust width and color as needed */
  height: 100px;
  /* Adjust height as needed */
  margin: 0 auto;
  /* Center the line horizontally */
  transform: rotate(180deg);
  /* Rotate the line to make it vertical */
}


.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid blue;
  border-bottom: 16px solid blue;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

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

.svg-container svg {
  width: 20px;
  /* Adjust size as needed */
  height: 20px;
  /* Adjust size as needed */
  stroke: white;
  /* Change stroke color to white */
}

.otp-box {
  width: 60px;
  height: 84px;
  border-radius: 5px;
  border: 1px solid #D9D9D9;
  font-size: 40pt;
  font-family: roboto;
  text-align: center;
  background-color: #D0D0D0;
  outline: none;
}

.otp-box:focus {
  background-color: #FFFFFF;
}

input[type=checkbox] {
  transform: scale(2);
}

.custom-textbox {
  height: 40px;
}

.custom-textbox:focus {
  outline: none;
  border-color: inherit;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.border-none {
  border: 0px;
}

.icon-pdf {
  background: url('../icon/icon-pdf.svg');
  width: 27px;
  height: 33px;
}

.icon-doc {
  background: url('../icon/icon-doc.svg');
  width: 27px;
  height: 33px;
}

.icon-jpg {
  background: url('../icon/icon-jpg.svg');
  background-repeat: no-repeat;
  width: 27px;
  height: 33px;
}

.icon-other-file {
  background: url('../icon/icon-other-file.svg');
  width: 27px;
  height: 33px;
}

.toast-top-full-width {
  margin-top: 10vh;
  top: 20vh;
}

.toast-bottom-full-width {
  margin-bottom: 5vh;
  /* bottom: 2vh; */
}

.pdf-container {
  width: 100%;
  height: 80vh;
}

/* .modal-dialog {
  max-width: 80%;
  width: auto;
} */

.sr-progress {
  margin-top: 9.25vh;
  width: 75vw;
  height: 40px;
  border-radius: 20px;
}

.sr-progress-bar {
  /* background: linear-gradient(270deg, #ff7e5f, #feb47b, #86a8e7, #91eae4); */
  background-image: linear-gradient(to right, #006837, #00D059, #006837, #00D059);
  /* background: linear-gradient(130deg, #ff7e00, #ffffff, #5cff00); */

  background-size: 400% 400%;
  border-radius: var(--bs-progress-border-radius);

  -webkit-animation: gradient-animation 2s linear infinite;
  -moz-animation: gradient-animation 2s linear infinite;
  animation: gradient-animation 2s linear infinite;
}

@keyframes gradient-animation {
  0% {
    background-position: 200% 150%;
  }

  100% {
    background-position: 100% 150%;
  }
}

.donat-container {
  display: flex;
  align-items: center;
  justify-content: left;
  min-width: 420px;
  width: 420px;
  height: 184px;
  margin-right: 20px;
}

.donat-container canvas {
  width: 190px;
  height: 190px;
}

/* .bd-links {
  overflow: auto;
  font-weight: 600 
} */

.bd-links .btn {
  padding: .25rem .5rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.65);
  background-color: transparent;
  border: 0
}

.bd-links .btn:hover,
.bd-links .btn:focus {
  color: rgba(0, 0, 0, 0.85);
  background-color: rgba(121, 82, 179, 0.1)
}

.bd-links .btn:focus {
  box-shadow: 0 0 0 1px rgba(121, 82, 179, 0.7)
}

.bd-links .btn::before {
  width: 1.25em;
  line-height: 0;
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
  transition: transform 0.35s ease;
  transform-origin: .5em 50%
}

@media (prefers-reduced-motion: reduce) {
  .bd-links .btn::before {
    transition: none
  }
}

.bd-links .btn[aria-expanded="true"] {
  color: rgba(0, 0, 0, 0.85)
}

.bd-links .btn[aria-expanded="true"]::before {
  transform: rotate(90deg)
}

.bd-links .active {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.85)
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid #006837;
}

.nav-tabs .nav-item .nav-link {
  color: #006837 !important;
  opacity: 0.5 !important;
}

.nav-tabs .nav-item .nav-link.active {
  color: #006837 !important;
  opacity: 1 !important;
}

/* spinner */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  position: relative;
}

.spinner {
  display: none;
  /* Hidden by default */
  width: 24px;
  height: 24px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-left-color: #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

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

.btn.loading .button-text {
  display: none;
  /* Hide the text when loading */
}

.btn.loading .spinner {
  display: inline-block;
  /* Show the spinner when loading */
  color: #006837 !important;
}

.currency-superscript {
  align-self: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.currency-main {
  font-weight: bold;
  font-size: 2.5rem;
  align-content: end;
}

.currency-secondary {
  font-weight: bold;
  font-size: 1.2rem;
  align-content: end;
  padding-bottom: 7px;
}

.blinking-text {
  animation: blink-animation 2s ease-in-out infinite;
}

@keyframes blink-animation {

  0%,
  25% {
    opacity: 1;
  }

  25%,
  70% {
    opacity: 0;
  }

  70%,
  100% {
    opacity: 1;
  }
}

.rt-chevron::before {
  display: inline-block;
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
  transition: transform 0.35s ease;
  transform: rotate(0deg);
  transform-origin: .5em 50%;
}

.rt-chevron[aria-expanded="true"] {
  color: rgba(0, 0, 0, 0.85);
}

.rt-chevron[aria-expanded="true"]::before {
  transform: rotate(90deg);
}