/**==================== Body ====================**/
@font-face {
  font-family: "Tanha";
  src: url('../fonts/Tanha.eot');
  src: url('../fonts/Tanha.eot?#iefix') format('FontName-opentype'),
    url('../fonts/Tanha.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

body {
  color: #333333;
  font-family: 'Tanha', sans-serif;
  font-size: 14px;
  direction: rtl;
  text-align: right;
  background: rgba(246, 246, 246, 0.6);
}



/**==================== Main ====================**/
.dcenter {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

img.dcenter {
  display: block;
}

.dleft {
  text-align: left;
}



/**==================== Time Line ====================**/
.c-timeline {
    width: 100%;
    height: 20px;
    display: none;
    margin-bottom: 30px;
    border-radius: 3px;
    overflow: hidden;
    background: #ccc;
}

.c-timeline__inside {
    width: 0;
    height: 100%;
    background: #8bc34a;
    background: linear-gradient(45deg, #8bc34a, #49721a);
    transition: all 250ms linear;
}



/**==================== Alert ====================**/
.alert {
  width: 100%;
}

.alert h5,
.alert h6 {
  font-weight: 700;
}

.alert-light {
  background-color: rgba(238, 238, 238, 0.8);
  border-color: rgba(238, 238, 238, 0.9);
  color: #fff;
  color: #2a3142;
  background-color: #eeeeee;
}

.alert-light hr {
  border-top-color: #eeeeee;
}

.alert p {
  margin-bottom: 0;
}

.intro .alert p {
    margin-bottom: 8px;
    line-height: 1.75rem;
}

.intro .list-circle li {
    margin: 10px 0;
}



/**==================== Card ====================**/
.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}

.card:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.card .card-body {
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
  width: 100%;
  border: 0;
  padding: 30px 15px;
  background: #fff;
  -webkit-box-shadow: 0 1px 11px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 11px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 960px) {
  .card .card-body {
    padding: 15px;
  }
}

.BtnSForm.is-disabled {
  opacity: 0.5;
  pointer-events: none;
  border-color: #ccc !important;
  background: #000 !important;
}



/**==================== Loader ====================**/
.loader {
  padding: 50px 0;
  text-align: center;
}

.loader .line {
  -webkit-animation: expand 1s ease-in-out infinite;
  animation: expand 1s ease-in-out infinite;
  border-radius: 10px;
  display: inline-block;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
      transform-origin: center center;
  margin: 0 3px;
  width: 1px;
  height: 25px;
}

.loader .line:nth-child(1) {
  background: #00c292;
}

.loader .line:nth-child(2) {
  -webkit-animation-delay: 180ms;
  animation-delay: 180ms;
  background: #ab8ce4;
}

.loader .line:nth-child(3) {
  -webkit-animation-delay: 360ms;
  animation-delay: 360ms;
  background: #FF5370;
}

.loader .line:nth-child(4) {
  -webkit-animation-delay: 540ms;
  animation-delay: 540ms;
  background: #4099ff;
}

@-webkit-keyframes expand {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}

@keyframes expand {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}



/**==================== Checkbox ====================**/
.checkbox {
  position: relative;
  width: 100%;
}

.checkbox label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  margin: 0;
  padding: 12px;
  border-radius: 3px;
  border: 1px solid #ccc;
  -webkit-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}

.checkbox label::before {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  border-radius: 3px;
  opacity: 0;
  border: 1px solid #2c8f05;
  -webkit-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}

.checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.checkbox img {
  width: 100%;
  max-width: 100%;
  padding: 2px;
  margin-bottom: 8px;
  border-radius: 3px;
  border: 1px solid #ccc;
  -webkit-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}

.checkbox span {
  font-size: 13px;
  line-height: 1.8;
  font-weight: 700;
  text-align: center;
  -webkit-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}

@media screen and (max-width: 960px) {
  .checkbox span {
    font-size: 12px;
  }
}

.checkbox input[type="checkbox"]:checked+label,
.checkbox input[type="checkbox"]:checked+label img {
  border-color: #2c8f05;
}

.checkbox input[type="checkbox"]:checked+label span {
  color: #185500;
}

.checkbox input[type="checkbox"]:checked+label::before {
  opacity: 1;
}






/**====================  ====================**/
.step {
  display: none;
}

.c-list {}

.c-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 15px 0;
  font-weight: 700;
}

.c-list .checkbox input[type="checkbox"]:checked+label {
  opacity: 1;
  pointer-events: all;
}

.c-list.is-disabled {
  pointer-events: none;
}

.c-list.is-disabled .checkbox label {
  opacity: 0.5;
}

.c-list__sort {
  width: 100%;
  counter-reset: item;
  overflow: hidden;
  position: relative;
}

.c-list__sort p:not(:last-child) {
  display: none;
}

.c-list__sort__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-right: 40px;
  margin-bottom: 6px;
  padding: 12px 10px;
  color: #fff;
  cursor: -webkit-grab;
  cursor: grab;
  border-radius: 3px 0 0 3px;
  background: rgba(0, 90, 0, 1);
}

.c-list__sort__item a {
  width: 26px;
  height: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2px 0 0 1px;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  border-radius: 100%;
  text-decoration: none;
  background: rgba(180, 0, 0, 1);
  -webkit-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}

.c-list__sort__item a:hover {
  background: rgba(210, 0, 0, 1);
}

.c-list__sort__item:not(.ui-sortable-placeholder):before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  top: 0;
  right: -40px;
  bottom: 0;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: rgba(0, 20, 0, 1);
  font-size: 16px;
  font-weight: 700;
  border-radius: 0 3px 3px 0;
  background: rgba(0, 90, 0, 0.375);
}

.ui-sortable-placeholder {
  background: #000;
}

.c-list__sort__item.ui-sortable-helper {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}



/**==================== Button ====================**/
.btn-secondary {
  background-color: #26c6da !important;
  border-color: #26c6da !important;
}

.btn-secondary.disabled {
  background-color: #26c6da !important;
  border-color: #26c6da !important;
}

.btn-secondary:disabled {
  background-color: #26c6da !important;
  border-color: #26c6da !important;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #1e9faf !important;
  border-color: #1e9faf !important;
}

.btn-secondary:focus {
  -webkit-box-shadow: 0 0 0 0.2rem #a9e8f0;
  box-shadow: 0 0 0 0.2rem #a9e8f0;
}

.BtnSForm {
  padding: 0.75rem 1.75rem;
  font-weight: 700;
  font-size: 1rem;
}



.table th, .table td {
    vertical-align: middle;
}

.table th img, .table td img {
    margin-left: 15px;
}