@font-face {
  font-family: Playfair Display;
  src: url('./Playfair_Display/PlayfairDisplay-VariableFont_wght.ttf');
}

/* SF Pro Text Font Face */
@font-face {
  font-family: SF Pro-Light;
  src: url('./SF-Pro-Text-Font-Family/SF-Pro-Text-Light.otf');
}
@font-face {
  font-family: SF Pro-Regural;
  src: url('./SF-Pro-Text-Font-Family/SF-Pro-Text-Regular.otf');
}
@font-face {
  font-family: SF Pro-Medium;
  src: url('./SF-Pro-Text-Font-Family/SF-Pro-Text-Medium.otf');
}
@font-face {
  font-family: SF Pro-Semibold;
  src: url('./SF-Pro-Text-Font-Family/SF-Pro-Text-Semibold.otf');
}
@font-face {
  font-family: SF Pro-Bold;
  src: url('./SF-Pro-Text-Font-Family/SF-Pro-Text-Bold.otf');
}

/* Playfair Display font */
.ff-playfair-display {
  font-family: Playfair Display, sans-serif;
}

/* SF Pro Text font */
.font-sf-pro-light {
  font-family: SF Pro-Light, sans-serif;
  font-weight: 300;
}

.font-sf-pro-regular {
  font-family: SF Pro-Regular, sans-serif;
  font-weight: 400;
}

.font-sf-pro-medium {
  font-family: SF Pro-Medium, sans-serif;
  font-weight: 500;
}

.font-sf-pro-semibold {
  font-family: SF Pro-Semibold, sans-serif;
  font-weight: 600;
}

.font-sf-pro-bold {
  font-family: SF Pro-Bold, sans-serif;
  font-weight: 700;
}

.steps .icon {
  background-color: aliceblue;
  width: 60px;
  height: 60px;
  border: gray solid;
}

.steps .step.current .icon {
  background-color: #0041A3;
}

.steps .step.done .icon {
  background-color: gray;
}

.steps .step.current svg,
.steps .step.done svg {
  fill: white;
}

.btn-primary {
  text-decoration: none !important;
  background: rgba(23,47,74,0.9);
  border-width: 1px;
  border-color: rgba(23,47,74,1);
  padding: 12px 20px;
  width: auto;
  font-size: 18px;
  height: auto;
  line-height: normal;
  text-align: center;
  color: #ffffff;
}

/* CIRCLE Progress Bar */
.circular-progress {
  --size: 250px;
  --half-size: calc(var(--size) / 2);
  --stroke-width: 20px;
  --radius: calc((var(--size) - var(--stroke-width)) / 2);
  --circumference: calc(var(--radius) * pi * 2);
  --dash: calc((var(--progress) * var(--circumference)) / 100);
  animation: progress-animation 1s linear 0s 1 forwards;
}

.circular-progress circle {
  cx: var(--half-size);
  cy: var(--half-size);
  r: var(--radius);
  stroke-width: var(--stroke-width);
  fill: none;
  stroke-linecap: round;
}

.circular-progress circle.bg {
  stroke: #B8CBEA;
}

.circular-progress circle.fg {
  transform: rotate(-90deg);
  transform-origin: var(--half-size) var(--half-size);
  stroke-dasharray: var(--dash) calc(var(--circumference) - var(--dash));
  transition: stroke-dasharray 0.3s linear 0s;
  stroke: #104DA9;
}

@property --progress {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

@keyframes progress-animation {
  from {
    --progress: 0;
  }
  to {
    --progress: 88;
  }
}

#card-title{
  color: #F2F2F2!important;
}

/* Request Card CSS */
#view-request {
  position: absolute;
  left: 0;
  bottom: -15%;
  width: 100%;
  transition: all ease-out 0.3s;
}
.premium {
  background-color: #134671 ; 
  color: #F2F2F2; 
  height: 410px;
  border-radius: 21px;
  overflow: hidden;
  border: 4px #ffc107 solid;
}
.view-request-premium {
  height: 60px;
  background-color: #B78C3C;
  /* opacity: 0.8;s */
  display: flex;
  align-items: center;
  border-radius: 0 0 21px 21px;
  border-top: 4px #ffc107 solid;
}
.premium:hover {
  background-color: #775515;
}

.premium:hover > #view-request {
  position: absolute;
  bottom: -0.5%;
  transition: all ease-in-out 0.3s;
}
/* STANDARD HOVER */
.view-request-standard {
  height: 60px;
  background-color: #134671;
  /* opacity: 0.8;s */
  display: flex;
  align-items: center;
  border-radius: 0 0 21px 21px;
}
.standard {
  background-color: #134671 ; 
  color: #F2F2F2; 
  height: 410px;
  border-radius: 21px;
  overflow: hidden;
}
.standard:hover {
  background-color: #0F314E;
}

.standard:hover > #view-request {
  position: absolute;
  bottom: -0.5%;
  transition: all ease-in-out 0.3s;
}

