@font-face {
    font-family: estedad-bold;
    src: url(../fonts/Estedad-Bold.ttf);
}
@font-face {
  font-family: logo-font;
  src: url(../fonts/chavosh.ttf);
}
@font-face {
  font-family: iranyekan-regular;
  src: url(../fonts/IRANYekanX-Regular.ttf);
}
@font-face {
  font-family: num-regular;
  src: url(../fonts/IRANYekanXFaNum-Regular.ttf);
}
@font-face {
  font-family: num-bold;
  src: url(../fonts/IRANYekanXFaNum-Bold.ttf);
}
@font-face {
  font-family: iranyekan-bold;
  src: url(../fonts/IRANYekanX-Bold.ttf);
}
@font-face {
  font-family: num-black;
  src: url(../fonts/IRANYekanXFaNum-Black.ttf);
}
@font-face {
  font-family: iranyekan-black;
  src: url(../fonts/IRANYekanX-Black.ttf);
}
@font-face {
  font-family: num-extra;
  src: url(../fonts/IRANYekanXFaNum-ExtraBlack.ttf);
}
@font-face {
  font-family: iranyekan-light;
  src: url(../fonts/IRANYekanX-Light.ttf);
}
@font-face {
  font-family: lato-regular;
  src: url(../fonts/Lato-Regular.ttf);
}
@font-face {
  font-family: lato-bold;
  src: url(../fonts/Lato-Bold.ttf);
}
@font-face {
  font-family: lato-light;
  src: url(../fonts/Lato-Light.ttf);
}
div:where(.swal2-container) div:where(.swal2-html-container) {
    font-family: iranyekan-light;
}
.float-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.d-block {
    display: block;
}
.cf-blue {
   color: #5c96e6; 
}
.shadow {
    box-shadow: 0 0 5px 0 rgb(0 0 0 / 10%);
}
.custom-link {
    text-decoration: none;
    color: unset;
}
/* accordion start */
.accordion .tab {
    position: relative;
  }
 .accordion .tab input {
    position: absolute;
    opacity: 0;
    z-index: -1;
  }
 .accordion .tab__content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s;
    padding-right: 25px;
  }
 .accordion  .tab input:checked ~ .tab__content {
    max-height: 10rem;
  }
  

  .accordion  .tab input:checked ~ .tab__label {
    background-color: #aecbf3;
    border-radius: 11px;
  }
    /* Visual styles */
  .accordion {
    color: var(--theme);
    border-radius: 0.5rem;
    overflow: hidden;
    margin-top: 10px;

  }
 .accordion .tab__label,
  .tab__close {
    display: flex;
    color: #000;
    background: var(--theme);
    cursor: pointer;
    font-family: iranyekan-bold;
    font-size: 14px;
  }
 .accordion .tab__label {
    padding: 5px;
    align-items: center;
  }
 .accordion .tab__label::after {
    content: "";
    width: 1em;
    height: 1em;
    text-align: center;
    transform: rotate(90deg);
    transition: all 0.35s;
  }
 .accordion .tab input:checked + .tab__label::after {
    transform: rotate(270deg);
  }
  .accordion .tab__content p {
    margin: 0;
    padding: 1rem;
  }
  .accordion .tab__close {
    justify-content: flex-end;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
  .accordion .accordion--radio {
    --theme: var(--secondary);
  }
  .accordion .tab__label i {
    padding-left: 10px;
  }
  /* Arrow animation */
  .accordion .tab input:not(:checked) + .tab__label:hover::after {
    animation: bounce .5s infinite;
  }
  @keyframes bounce {
    25% {
      transform: rotate(90deg) translate(.25rem);
    }
    75% {
      transform: rotate(90deg) translate(-.25rem);
    }
  }
  /* accordion end */
.toggle input {
  height: 0;
	width: 0;
	visibility: hidden;
}
.toggle label {
  cursor: pointer;
	text-indent: -9999px;
	width: 60px;
	height: 31px;
	background: grey;
	display: block;
	border-radius: 100px;
	position: relative;
}
.toggle label:after {
  content: '';
	position: absolute;
	top: 5px;
	left: 5px;
	width: 20px;
	height: 20px;
	background: #fff;
	border-radius: 90px;
	transition: 0.3s;
}
.toggle input:checked + label {
  background: #5c96e6;
}
.toggle input:checked + label::after {
  left: calc(100% - 5px);
	transform: translateX(-100%);
}
.toggle label:active::after {
  width: 130px;
}
.row {
  display: flex;
  align-items: center;
}
h1 {
  font-size: 18px;
  font-family: estedad-bold;
}
button:hover {
  cursor: pointer;
}
.spb {
  justify-content: space-between;
}
.cf-40 {
  color: #375a8a;
}
.d-none {
  display: none !important;
}
.st-margins {
  margin: auto;
  width: 93%;
}