.phoneFormFixGap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  gap: 30px;
  margin: 0 auto;
}

.circleOne {
  width: 150px;
  height: 150px;
  background-color: #00A674; /* Orange background */
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 7px solid #11cf96;
}
.circleOne::before {
  content: "";
  position: absolute;
  top: -13px;
  left: -13px;
  right: -13px;
  bottom: -13px;
  border: 7px solid #76f7d0;
  border-radius: 50%;
}
.circleThree {
  width: 150px;
  height: 150px;
  background-color: #FE3737; /* Orange background */
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 7px solid #fd6363;
}
.circleThree::before {
  content: "";
  position: absolute;
  top: -13px;
  left: -13px;
  right: -13px;
  bottom: -13px;
  border: 7px solid #fd6363;
  border-radius: 50%;
}
.classimg
{
  max-width: 450px;
}
.cvalue
{
  display:inline-block;
  margin-right: 1.2rem;
  background:var(--body);
  padding:8px;
  border-radius: var(--radius);
}
body.dark .cvalue
{
  color:#000;
}
.btn
{
  cursor: pointer;
}
@media (max-width: 1024px) {
  .table_margin {
    margin-bottom: 20%;
  }
}

/* Ų±ŪŲ³Ł¾Ų§Ł†Ų³ŪŁ ŲØŲ±Ų§Ū ŲŖŲØŁ„ŲŖ (ŪŚ© Ų³ŲŖŁŁ†) */
@media (max-width: 768px) {
  .table_margin {
    margin-bottom: 20%;
  }
  .btnmob{
    margin:0 !important;
    width: 100% !important;
  }
  .codemob
  {
    width: 100% !important;
  }
}

/* Ų±ŪŲ³Ł¾Ų§Ł†Ų³ŪŁ ŲØŲ±Ų§Ū Ł…ŁŲØŲ§ŪŁ„ (ŪŚ© Ų³ŲŖŁŁ†) */
@media (max-width: 480px) {
  .table_margin {
    margin-bottom: 20%;
  }
  .btnmob{
    margin:0 !important;
    width: 100% !important;
  }
  .codemob
  {
    width: 100% !important;
  }
}
.table {
  display: block;
  position: relative;
}
.table::before {
  content: "";
  position: absolute;
  height: 80%;
  width: 6px;
  top: 50%;
  right: 0;
  border-radius: 25px 0 0 25px;
  transform: translate(0, -50%);
  z-index: 0;
}
.table.info::before {
  background: var(--info);
}
.table.warning::before {
  background: var(--warning);
}
.table .thead {
  top: -8px;
  z-index: 1;
  color: var(--dark);
}
body.dark .table .thead {
  color: var(--textLight);
}
.table .tr {
  display: grid;
  padding: 16px 0;
  /* border-bottom: 2px solid var(--body); */
}
.table .thead .tr {
  min-height: 50px;
  align-items: center;
  border-bottom: 2px solid var(--body);
  margin-top: 30px;
}
.table .th {
  border-left: 0px;
  font-weight: bold;
}
.table .th,
.table .td {
  display: flex;
  /* justify-content: center; */
  /* padding: 10px 16px; */
  font-size: 10pt;
  position: relative;
}
.center {
  text-align: center;
}
.table .tbody {
  display: block;
}
.tbody .tr:not(:last-child) {
  border-bottom: 2px solid var(--body);
}
.tbody .tr:last-child {
  padding-bottom: 0;
}
.table .td.center {
  /* justify-content: center; */
}
.table .td {
  display: flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--dark);
  overflow: unset;
}
body.dark .table .td {
  color: var(--gray);
}
.table .td.gray {
  color: var(--gray);
}
body.dark .table .td.gray {
  color: var(--textLight);
}
.form-inline {  
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
@font-face {
  font-family: "Peydafanum";
  
  src: url("../Font/peydafanum.ttf") format("truetype"),
  url("../Font/peydafanum.eot") format("eot"),
  url("../Font/peydafanum.woff") format("woff"),
  url("../Font/peydafanum.woff2") format("woff2");
  font-weight: 400;
}
.number-text {
  font-family: 'peydafanum';
}
.time-value
{
  font-family: 'peydafanum';
}
ans-dropdown a
{
  margin-bottom: 10px;
}
ans-dropdown
{
  min-width: 265px !important;
  top: 35px !important;
  left:-15px;
}
.downb {
  content: "";
  position: absolute;
  display: inline-block;
  -webkit-mask-image: url(../Icon/download.svg);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  width: 18px;
  height: 18px;
  background: var(--success);
  vertical-align: middle;
  margin-right: 6px;
}
.mosh
{
    color: var(--success);
    font-weight: 500;
    position: relative;
    font-size: 11pt;
    cursor: pointer !important;
}