body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
}


.loader {
  width: 40px;
  aspect-ratio: 1;
  color: #f03355;
  position: relative;
  background: radial-gradient(10px,currentColor 94%,#0000);
}
.loader:before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(9px at bottom right,#0000 94%,currentColor) top    left,
    radial-gradient(9px at bottom left ,#0000 94%,currentColor) top    right,
    radial-gradient(9px at top    right,#0000 94%,currentColor) bottom left,
    radial-gradient(9px at top    left ,#0000 94%,currentColor) bottom right;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  animation: l18 1.5s infinite cubic-bezier(0.3,1,0,1);
}
@keyframes l18 {
   33%  {inset:-10px;transform: rotate(0deg)}
   66%  {inset:-10px;transform: rotate(90deg)}
   100% {inset:0    ;transform: rotate(90deg)}
}


* {
  box-sizing: border-box;
}

.body-div {
  margin: 0;
  font-family: 'Trebuchet MS', sans-serif;
  width: 100%;
  background: linear-gradient(to top, #ECEDB0 40%, #D6D85D);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.wrap {
  width: 100%;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 16px 0
}

.title {
  font-size: xx-large;
  font-weight: 700;
  letter-spacing: .2px
}

.controls {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 8px;
  flex-wrap: wrap
}

.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 10px 14px;
  letter-spacing: .2px;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  background: #F68537;
  color: var(--white);
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-1px)
}

.btn[aria-pressed="true"],
.btn.active {
  background: var(--accent);
  box-shadow: 0 0 5px white;
}

.card {
  background: #F68537;
  border-radius: var(--radius);
  box-shadow: 0 0 10px rgb(223, 255, 42), inset 0 1px 0 rgb(255, 241, 44);
  padding: 20px;
}

.grid {
  display: grid;
  gap: 18px
}

@media (min-width: 820px) {
  .grid.two {
    grid-template-columns: 1fr 1fr
  }

  .rtl .row,
  .row {
    grid-template-columns: 150px 1fr;
  }
}

.column {
  background: #7D8D86;
  border: 3px solid var(--white);
  border-radius: var(--radius);
  box-shadow: 0px 0px 15px var(--bg);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.column::after {
  content: "";
  position: absolute;
  inset: auto -40% -40% auto;
  width: 220px;
  height: 220px;
  filter: blur(50px);
  background: radial-gradient(circle at center, rgba(79, 124, 255, .18), transparent 60%)
}

@media print {
  body {
    margin: 0;
    padding: 10px;
  }

  .column {
    page-break-after: always;
  }
}

.name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.name h2 {
  color: white;
  margin: 0;
  font-size: clamp(18px, 2vw, 24px)
}

.badge {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 0 6px rgba(46, 46, 46, 0.582);
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: .4px
}

.meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 10px
}

.chip {
  font-size: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--yellow);
  box-shadow: 0 0 5px rgba(255, 255, 255);
}

.row {
  display: flex;
  flex-direction: row;
  justify-content: start;
  padding: 15px;
  gap: 20px;
  border-top: 1px dashed var(--white);
  align-items: center;
}

.row:first-of-type {
  border-top: 0;
  padding-top: 0
}

li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  white-space: nowrap;
}

.label {
  color: gold;
  font-weight: 500;
  font-size: 20px;
  width: 160px;
}

.value {
  color: white;
    line-height: 1.3;
    font-size: 18px;
    width: -webkit-fill-available;
}


.rtl {
  direction: rtl;
  font-family: 'Jameel Noori Nastaleeq', serif;
}

.rtl .value {
  font-size: x-large;
}

.rtl .label {
  font-size: xx-large;
}

.rtl ul {
  line-height: 1.3em;
  padding-left: 0;
  padding-right: 18px;
  font-size: larger;
}

.hidden {
  display: none
}


@media screen and (max-width: 550px) {
.label {
  color: gold;
  font-weight: 500;
  font-size: 20px;
  width: 160px;
}

.value {
    line-height: 1.3;
    font-size: 18px;
    width: -webkit-fill-available;
}
.rtl .value {
  font-size: larger;
}

.rtl .label {
  font-size: x-large;
}
}
@media screen and (max-width: 480px) {
  li {
    flex-wrap: wrap;
  }
}