@font-face{font-family:"Yekan";font-style:normal;font-weight:400;src:url(fonts/Yekan.eot?#iefix) format("embedded-opentype"),url(fonts/Yekan.woff) format("woff"),url(fonts/Yekan.ttf) format("truetype"),url(fonts/Yekan.svg#BYekan) format("svg")}

* {
  box-sizing: border-radius;
  font-family: Yekan,'BYekan',tahoma;
}
body {
	direction: rtl;
}
a {
	text-decoration: none;
	color: #000;
}
.container {
  border: 1px solid black;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: grid;
  place-items: center;
  background-color: #fd4d09;
}

.items {
  width: 100%;
  height: 100%;
  background: #fffffe;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  border-top: 10px solid #fd4d09;
}

.items-head h2 {
  padding: 5px 20px;
  margin: 10px;
  color: #fd4d09;
  font-size: 60px;
}

.items-head hr {
  width: 80%;
  margin: 0px 30px;
  border: 1px solid #fd4d09;
}

.items-body {
  padding: 10px;
  margin: 10px;
  display: grid;
  grid-gap: 10px;
}

.items-body-content {
  padding: 15px;
  padding-right: 0px;
  display: grid;
  grid-template-columns: 10fr 1fr;
  font-size: 30px;
  grid-gap: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  border-bottom: 1px solid #000;
}
.fa {
  font-size: 30px !important;
}

.items-body-content:hover {
  border-radius: 15px;
  border: 1px solid #fd4d09;
}

.items-body-content i {
  align-self: center;
  font-size: 15px;
  color: #fd4d09;
  font-weight: bold;
  animation: icon 1.5s infinite forwards;
}

@keyframes icon {
  0%, 100% {
    transform: translate(0px);
  }
  50% {
    transform: translate(3px);
  }
}