
  /* Omid Shayan 2024 */
  /* omidshanyan.dev */
  
@font-face {
    font-family: 'vazir';
    src: url('../fonts/Vazir.ttf');
}
html {
  scroll-behavior: smooth;
}
* {
    font-family: "vazir" !important;
}
.fb{
    font-weight: bold;
}
.dot{
    list-style-type: disc; 
  }
.pb0{
    padding-bottom: 3rem !important;
}
.hr{
    border: 1px solid rgba(66, 66, 66, 0.226);
}
.b-err{
  border: 1px solid red !important;
  box-shadow: 0px 0px 10px rgba(255, 0, 0, 0.63);
}
.check{
  position: relative;
}
.logo-w{
  width: 200px;
}
.logo-p {
  padding-bottom: 0.5rem !important;
  padding-top: 0.5rem !important;
}
.err-msg{
  color: red;
  font-size: 15px;
  position: absolute;
  right: 0;
  bottom: -22px;
  display: none;
}
/* font size */
.fs22{
  font-size: 22px;
}
/* loading*/
.custom-loader {
  width: 50px;
  height: 50px;
  display: grid;
  border-radius: 50%;
  -webkit-mask: radial-gradient(farthest-side,#0000 40%,#000 41%);
  background: linear-gradient(0deg ,#766DF480 50%,#766DF4FF 0) center/4px 100%,
    linear-gradient(90deg,#766DF440 50%,#766DF4BF 0) center/100% 4px;
  background-repeat: no-repeat;
  animation: s3 1s infinite steps(12);
  margin-right: 44px;
}
.custom-loader::before,
.custom-loader::after {
  content: "";
  grid-area: 1/1;
  border-radius: 50%;
  background: inherit;
  opacity: 0.915;
  transform: rotate(30deg);
}
.custom-loader::after {
  opacity: 0.83;
  transform: rotate(60deg);
}
@keyframes s3 {
  100% {
    transform: rotate(1turn)
  }
}

.underline{
  text-decoration: underline;
}

/* sweetAlert */
div:where(.swal2-container) div:where(.swal2-popup){
  background-color: rgb(39, 36, 36) !important;
}
.swal2-title {
  color: #b6b6b6;
}
.swal2-html-container{
  color: #b6b6b6 !important;
}


/* index loader */
.index-loader {
  width: 40px;
  height: 40px;
  display: grid;
  border-radius: 50%;
  -webkit-mask: radial-gradient(farthest-side,#0000 40%,#000 41%);
  background: linear-gradient(0deg ,#766DF480 50%,#766DF4FF 0) center/4px 100%,
    linear-gradient(90deg,#766DF440 50%,#766DF4BF 0) center/100% 4px;
  background-repeat: no-repeat;
  animation: s3 1s infinite steps(12);
  margin-right: 44px;
}

.index-loader::before,
.index-loader::after {
  content: "";
  grid-area: 1/1;
  border-radius: 50%;
  background: inherit;
  opacity: 0.915;
  transform: rotate(30deg);
}

.index-loader::after {
  opacity: 0.83;
  transform: rotate(60deg);
}

@keyframes s3 {
  100% {
    transform: rotate(1turn)
  }
}
  /* end loading */

  /* alert */
  #success-alert {
    position: fixed;
    bottom: -50px; 
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 45px;
    background-color: #139117;
    color: white;
    text-align: center;
    line-height: 50px; 
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    transition: bottom 0.5s ease-in-out; 
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 9;
  }
  
  #success-alert.show {
    bottom: 50px; 
  }
  
  .close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    line-height: 1;
  }
  
  .close-btn:hover {
    color: #ff0000;
  }
  
  /* استایل نوار پیشرفت */
  .progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0; 
    height: 3px; 
    background-color: #044e08; 
    transition: width 5s linear; 
  }
  
  /* error */
  #error-alert {
    position: fixed;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 330px;
    height: 45px;
    background-color: #FF7043; 
    color: white;
    text-align: center;
    line-height: 50px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    transition: bottom 0.5s ease-in-out;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 9;
  }
  
  #error-alert.show {
    bottom: 50px; 
  }

  .progress-bar-error {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0; 
    height: 3px;
    background-color: #a30000;
    transition: width 5s linear; 
  }
  .close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    line-height: 1;
  }
  
  .close-btn:hover {
    color: #ff0000;
  }
  /* end alert */



/* genral */
.d-none{
  display: none;
}
.input-error{
  color: red;
  margin-top: 38px;
  font-size: 10px !important;
}
.border-error{
  border: 1px solid red !important;
  box-shadow: 0 0 8px red !important;
}

/* paddings */
.p3{
  padding: 3px;
}

/* user panel */
.img-pro{
  width: 110px;
  border: 1px solid gray;
}
.user-panel{
  width: 60%;
  height: auto;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}
.user-panel-contact{
  width: 70%;
  height: 100%;
  padding: 10px 20px;
  margin: 0 auto;
}
.user-panel-item{
  display: flex;
  justify-content: space-between;
  margin: 18px;
}
.b-hr{
  border-bottom: 1px solid rgba(66, 66, 66, 0.226);
}

.user-profile-input{
  display: flex;
  justify-content: space-around;
}
.c-input-profile{
  width: 48%;
}
.img-profile{
  border-radius: 50%;
  width: 70px;
  height: 70px;
  margin: 0 auto;
}

/* end user profile */

/* colors & border color*/
.border-red{
  border: 1px solid red;
}
.border-green{
  border: 1px solid green;
}
.border-yellow{
  border: 1px solid yellow;
}

/* media query */
@media screen and (max-width: 1024px) {
    .m-t80 {
        margin-top: 80px;
    }
}

/* modal images */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.582);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}
.rounded-b-\[1\.25rem\] {
  height: 200px !important;
}

.m-card {
  height: 150px !important;
}
.abs{
  position: relative;
}
.b10{
  position: absolute;
  bottom: 10px;
  right: 15px;
}

.bcard{
  position: absolute;
  bottom: 50px;
  
}
.dfb{
  display: flex;
  justify-content: space-between;
}
.d-flex{
  display: flex;
}
.m5{
  margin: 2px;
}