:root {
  --dark-yellow: #bc9528;
  --gray: #b1b1b1;
  --red: #fa2845;
  --red-label: #9a0000;
  --bg-gray: #f5f5f5;
  --sidebar-gray: #ebebeb;
  --green: #3c763d;
  --light-gray: #e1e1e1;
  --dark-gray: #737373;
  --star: #e1e1e1;
  --yellow: #ffc007;
  --light-yellow: #eecd6d;
  --light-green: #c9eec9;
  --button-gray: #979797;
}

/*================ FONTS START ===================*/

@font-face {
  font-family: "kalameh";
  src: url("../fonts/kalame/KALAMEH\ REGULAR.TTF");
}

@font-face {
  font-family: "yekan";
  src: url("../fonts/yekan.ttf");
}

@font-face {
  font-family: "kalameh-bold";
  src: url("../fonts/kalame/KALAMEH-BOLD.TTF");
}

@font-face {
  font-family: "kalameh-black";
  src: url("../fonts/kalame/KALAMEH-BLACK.TTF");
}

@font-face {
  font-family: "IRANSans";
  src: url("../fonts/iransans/IRANSans-Light-web.ttf");
}

@font-face {
  font-family: "IRANSans-bold";
  src: url("../fonts/iransans/IRANSans-Bold-web.ttf");
}

@font-face {
  font-family: "Iransans-number";
  src: url("../fonts/iransans/FaNum/IRANSansWeb\(FaNum\).ttf");
}

/*================== FONTS END ==============*/
/*=======  Fonts size ============*/
.font-10 {
  font-size: 0.625rem;
}

.font-12 {
  font-size: 0.75rem;
}

.font-14 {
  font-size: 0.875rem;
}

.font-16 {
  font-size: 1rem;
}

.font-18 {
  font-size: 1.125rem;
}

.font-20 {
  font-size: 1.25rem;
}

.font-24 {
  font-size: 1.5rem;
}

.font-26 {
  font-size: 1.625rem;
}

.font-27 {
  font-size: 1.6875rem;
}

.font-28 {
  font-size: 1.75rem;
}

.font-30 {
  font-size: 1.875rem;
}

.font-32 {
  font-size: 2rem;
}

.font-family--kalameh {
  font-family: "kalameh";
}

.font-family--kalameh-bold {
  font-family: "kalameh-bold";
}

.font-family--kalameh-black {
  font-family: "kalameh-black";
}

html {
  direction: rtl;
  /* overflow-x: hidden !important; */
}

body {
  /* overflow-x: hidden; */
}

/* h1, h2, h3, h4, h5, h6 {
    font-family: 'Iransans' !important;

} */

body * {
  font-family: "Iransans";
}

span[id*="-error"] {
  color: var(--red);
}

.corporate {
  position: relative;
}

.page-title {
  font-family: "Iransans" !important;
}

.pagination {
  float: none;
  margin: 0 auto;
  display: block;
  text-align: center;
}

.pagination > li > span,
.pagination > li > span:hover {
  background: var(--sidebar-gray);
  color: var(--gray);
  padding: 0px 8px;
  text-align: center;
}

a:hover {
  color: var(--gray);
}

.breadcrumb > .active {
  color: var(--gray);
}

a {
  outline: none !important;
  text-decoration: none !important;
  color: var(--gray);
}

.fa-star {
  color: var(--star);
}

.fa-star.checked {
  color: var(--yellow);
}

.user-profile .dropdown-toggle::after {
  display: none;
}

.user-profile .dropdown-menu {
  min-width: 120px !important;
}

body.loading .overlay {
  display: block;
}

.overlay {
  /* position: absolute;
    width: 100%;
    background: #3333334a url("../images/loader.gif") center no-repeat;
    height: 100%;
    z-index: 4;
    right: 1;
    bottom: 0; */

  display: none;
  background: #3333338a;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}

.loader {
  border: 16px solid #f3f3f3;
  border-top: 16px solid #957828;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  animation: spin 2s linear infinite;
  position: relative;
  left: 60%;
  right: 40%;
  /* width: 15%; */
  top: 50%;
  /* text-align: center; */
  border-radius: 50% !important;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.text-dark-gray {
  color: var(--dark-gray);
}

.no-border {
  border: none;
}

select:focus-visible {
  outline: none;
}

.label {
  border-radius: 5px !important;
}

.bg-sidebar-gray {
  background-color: var(--sidebar-gray);
}

.bg-light-yellow {
  background-color: var(--light-yellow);
}

.bg-dark--gray {
  background: var(--dark-gray);
}

.text-gray {
  color: var(--gray);
}

.bg-light-green {
  background-color: var(--light-green) !important;
}

.bg-green {
  background-color: var(--green) !important;
  outline: none;
  border: none;
}

.button-gray {
  background: var(--button-gray);
  outline: none;
  border: none;
}

.bg-light-gray {
  background-color: var(--light-gray);
}

.sidebar-gray {
  background-color: var(--sidebar-gray);
  height: 100%;
  position: fixed;
  width: 17%;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

li {
  list-style: none;
  position: relative;
}

/* ul li::before {
    content: "\2022";  
    margin-right: 1em; 
  } */

li::before {
  content: "•";
  color: var(--dark-yellow);
  font-size: 25px;
  position: absolute;
  top: -7px;
  right: -15px;
}

ul.breadcrumb li::before,
ul.pagination li::before,
li.no-style::before {
  content: "";
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 0 !important;
}

.red-bg {
  background: var(--red);
}

.yekan--font {
  font-family: "yekan";
}

p {
  text-align: justify;
}

.bg-gray {
  background: var(--bg-gray);
}

/*:lang(fa) {*/
/*    direction: rtl;*/
/*}*/

.hidden {
  display: none;
}

.lh-2 {
  line-height: 2;
}

.font-weight-bold {
  font-weight: bold;
}

.green--text {
  color: var(--green);
}

.red--text {
  color: var(--red);
}

.red--text--label {
  color: var(--red-label);
}

.dark-yellow--text {
  color: var(--dark-yellow);
}

.dark-yellow--bg {
  background-color: var(--dark-yellow);
}

.gray-text {
  color: var(--gray);
}

.number {
  font-family: "Iransans-number";
}

.text-justify {
  text-align: justify;
}

p {
  font-family: "IRANSans";
  text-align: justify;
}

.select2-results .select2-highlighted {
  color: #333 !important;
}

.breadcrumb a,
.breadcrumb li {
  font-size: 11px;
}

img.portimg {
  display: none;
  max-width: 200px;
  max-height: 200px;
}

.next-action {
}

.link {
  cursor: pointer;
}

input[type="checkbox"] {
  border: 1px solid #ddd !important;
  padding: 8px;
  box-shadow: none;
  margin: 0 5px;
}

.delbtn.removebtn {
  height: 30px;
  margin: auto 0;
}

button {
  outline: 0 !important;
}

.btn-close:focus {
  box-shadow: none !important;
}

.rounded {
  border-radius: 0.55rem !important;
}

/*============= Table =======*/

table thead th {
  color: var(--dark-gray);
  font-weight: bold;
  padding: 15px 5px !important;
  border-left: 4px solid #fff;
  margin: 0 2px;
  background-color: var(--sidebar-gray) !important;
  text-align: center;
}

table th,
table td {
  text-align: center;
  font-size: 11px !important;
  white-space: normal !important;
  vertical-align: middle;
}

table tr {
  border: none;
  border-bottom: 3px solid #fff;
  border-width: 4px 0 !important;
}

tr.even {
  background-color: rgb(245, 245, 245) !important;
  /*--bs-table-accent-bg: rgb(245, 245, 245) !important;*/
}

tr.odd {
  background-color: rgb(245, 245, 245) !important;
  /*--bs-table-accent-bg: rgb(235, 235, 235) !important;*/
}

tr.odd td,
div.odd {
  background-color: var(--sidebar-gray);
}

.table-hover > tbody > tr:hover {
  --bs-table-accent-bg: var(--bs-table-hover-bg) !important;
  color: var(--bs-table-hover-color) !important;
}

tr.even td,
div.even {
  background-color: var(--bg-gray);
}

.table-scrollable {
  border: none;
}

.table-bordered > :not(caption) > * > * {
  border-width: 0 4px !important;
  border-left: 4px solid #fff;
  padding: 0.5rem 0.1rem !important;
}

/*============= Table =======*/

.section--title {
  font-size: 2.5rem;
}

.notConfirmed_input {
  border-left: solid 8px red !important;
}

.edited_input {
  border-left: solid 8px #ffd558 !important;
}

.confirmed_input {
  border-left: solid 8px green !important;
}

input.date {
  height: 35px !important;
}

.form-control-custom:focus {
  /* width: 85% !important; */
  height: 45px;
  /* margin: 0 25px; */
  border-radius: 10px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background-color: #f5f5f5 !important;
  border: none;
  border-radius: 7px !important;
}

textarea.form-control-custom:focus {
  height: auto !important;
}

input.form-control-custom:focus,
textarea.form-control-custom:focus {
  height: 45px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background-color: #fff !important;
  border: none;
  border-radius: 7px !important;
}

select:focus {
  background: #fff;
}

input:-webkit-autofill {
  color: #f5f5f5;
}

textarea.form-control-custom {
  border-radius: 7px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background-color: #fff;
  border: none;
  border-radius: 7px !important;
}

#home_part1 .rata-card {
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
  padding: 15px 20px;
  box-shadow: 10px;
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 16%);
  background-color: #fff;
}

#home_part1 .page-login label {
  width: 15%;
}

/*button[type="submit"], .dark-yellow--bg.submit {*/
/*    border-radius: 0.55rem !important;*/
/*    padding: 10px;*/
/*}*/

/**================= SELECT2 ======*/
div.select2-container,
select.form-control-custom {
  height: 35px;
  /* margin: 0 25px; */
  border-radius: 10px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16) !important;
  background-color: #f5f5f5 !important;
  border: none !important;
  border-radius: 5px !important;
  font-size: 11px;
}

.form-control-custom.select:focus {
  height: 35px !important;
  outline: none;
}

.select2-container .select2-choice .select2-arrow {
  left: 5px !important;
  background: transparent !important;
  border: none;
  right: 85%;
}

.select2-results li {
  background: transparent !important;
}

.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--dark-yellow) !important;
}

.select2-results {
  font-size: 12px;
  background: transparent !important;
  border-radius: 5px !important;
}

/**================= SELECT2 ======*/

/*====== SVG ICON ==============*/
.item-icon {
  position: relative;
}

.svg--item {
  height: 115px;
  max-height: 115px;
}

.item-icon svg {
  fill: var(--dark-yellow);
  /* height: 75px !important; */
  width: 100%;
  /* max-width: 80px; */
  max-height: 60px;
  display: block;
  /* height: 100% !important; */
  max-width: 100%;
  margin-bottom: 0;
}

/*====== SVG ICON ==============*/

.main-wrpper--content {
  z-index: 0;
}

.main--wrapper {
  /* height: 100%; */
  height: calc(100% - 5.5em);
  height: -moz-calc(100% - 15.5em);
  height: -webkit-calc(100% - 15.5em);
  min-height: 698px;
}

.main-header {
  height: 160px;
  max-height: 160px;
}

.main-wrapper {
  /* margin: 50px 0;     */
  /* height: 100vh; */
  overflow: hidden;
  /* height: 160px; */
  /* max-height: 160px; */
}

.reset--password {
  height: 100%;
}

#home_part1 {
  position: relative;
  height: 100vh;
}

#home_part1 form button {
  float: left;
}

.footer-left--side {
  float: left;
}

.footer .footer-left--side p {
  font-family: "Iransans-bold";
}

.footer .footer-left--side .item {
  /* border-radius: 10px;
    border: solid 2px #fff;
    margin: 0 3px; */
}

.footer--icon {
  border-radius: 50% !important;
  padding: 7px 10px !important;
  width: 30px;
  height: 30px;
  max-width: 32px;
}

.footer--icon a {
  display: block;
}

/***================= RESET PASSWORD =========*/
.reset--password .front-left--sidebar {
  margin-top: 1rem !important;
}

/***================= RESET PASSWORD =========*/

/****************** SWIPPER *******************/
.slider--company {
  /* position: absolute; */
  position: relative;
  bottom: 0;
  max-width: 900px;
}

.swiper {
  max-width: 890px;
  width: 100%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
  color: #535353;
}

.swiper .item {
  /* box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    background-color: #fff;
    border-radius: 50%;
    height: 70px; */
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  outline: none;
}

.swiper .item img {
  /* margin-top: 15px;
    height: 40px; */
}

.swiper-wrapper {
  height: 75px;
  max-height: 75px;
}

/*************** TOP HEADER ************/
.top--header {
  height: 91px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background-color: #fff;
}

.top-header--social .item a i {
  background: #b1b1b1;
  padding: 7px 8px;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  text-align: center;
}

.top-header .top-header--banner img {
  max-height: 160px;
}

.top--header .item {
  letter-spacing: 1.5px;
}

/*************** TOP HEADER ************/

.front-right--sidebar {
  /* position: absolute;
    height: 100%; */
}

.front-left--sidebar {
  /* position: absolute;
    left: 0;
    top: 25%; */
  margin-top: calc(10rem - 1rem);
  position: relative;
}

.front-left--sidebar .inner {
  margin: 35px 0;
  padding: 0 8rem;
}

.landing-page--banner {
  height: 400px;
  object-fit: cover;
  max-height: 400px;
  min-height: 150px;
}

.landing-page--banner img {
  object-fit: cover;
  height: 100%;
}

.landing-page--title {
  position: relative;
}

.landing-page--title .item {
  position: absolute;
  left: -155px;
  /* top: -150px; */
  top: calc(700px - 860px);
}

/*===================== USER ===============*/

.top-header {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  position: fixed;
  width: 100%;
  background: #fff;
  height: 160px;
  max-height: 160px;
  display: block;
  z-index: 999;
  right: 0;
}

.main-content {
  height: calc(100% - 5.5em);
  height: -moz-calc(100% - 15.5em);
  height: -webkit-calc(100% - 15.5em);
  height: auto;
  min-height: 100vh;
  /* padding-top: 160px; */
  z-index: 0;
}

.sidebar--profile .userTitle {
  overflow: hidden;
  width: 100%;
  white-space: initial;
  max-width: 80px;
}

.sidebar--profile img {
  border-radius: 50% !important;
}

.sidebar--items a {
  display: block;
}

.sidebar--items img {
  width: 1.2rem;
  height: auto;
}

.sidebar--items img.img-width-3 {
  width: 1.3rem;
}

.sidebar--items a {
  color: #737373;
}

.sidebar--items .active,
.sidebar-item:hover {
  background-color: #f5f5f5;
}

.sidebar--items .sidebar-item span {
  font-size: 12px;
}

/*===================== USER ===============*/

/*================= PROFILE ========*/

.odd .profile-page--item {
  background-color: var(--bg-gray);
}

.even .profile-page--item {
  background-color: var(--sidebar-gray);
}

.profile-page--item span {
  color: var(--dark-gray);
}

/**================== HEALTH ==========*/

.page--item {
  position: relative;
  border-radius: 7px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  /* height: 110px;
    max-height: 110px; */
}

.page--item a {
  display: block;
  font-size: 11px;
  font-size: 11px;
}

.svg--item span {
  top: 55px;
  position: relative;
}

.svg--item a {
  position: absolute;
  left: 15px;
  right: 15px;
  top: 0;
  bottom: 15px;
}

.svg--item svg {
  top: 15px;
  position: relative;
}

.page--item span {
  color: var(--dark-gray);
  text-align: center;
}

.page--item:hover {
  background: var(--dark-yellow);
}

.page--item:hover span {
  color: #fff;
}

.page--item:hover svg {
  fill: #fff !important;
}

/*** ===== Contract page ====*/

/**================== HEALTH ==========*/

/***===== Contract page ====*/
.contractCenters-page form button[type="submit"] {
  float: left;
}

.contractCenters-page .search-result-item {
  padding: 10px 5px;
  border: solid 1px #a4a4a4;
}

/***===== Contract page ====*/
/*================= PROFILE ========*/

/************** FOOTER ***************/
footer {
  position: relative;
}

.main-wrapper .footer {
  height: 110px !important;
}

.footer {
  /* position: relative; */
  position: relative;
  bottom: 0;
  width: 100%;
  height: 64px;
  line-height: 0;
  background: var(--sidebar-gray);
  /* z-index: -1; */
}

#home_part1 .footer {
  background-image: linear-gradient(to bottom, #cfa633, #7b6219);
  position: absolute;
}

.small-business a {
  padding: 8px 38px !important;
}

.myRequired:after {
  content: "*";
  color: red;
  font-size: 15px;
  font-weight: bold;
  margin-right: 3px;
  display: inline-block;
}

.faq-question {
  /*font-family: "B Yekan",Tahoma ,Sans-Serif;*/
  font-style: normal;
  /*font-size: 17px;*/
  font-weight: 100 !important;
}

.faq-answer {
  /*font-family: "B Yekan",Tahoma ,Sans-Serif;*/
  font-style: normal;
  font-size: 16px;
  font-weight: 100 !important;
  padding: 3%;
  color: black;
}

/*#1*/
.content_style1 {
  color: #42697b;
  font-size: 15px;
  line-height: 30px;
  text-align: justify;
  direction: rtl;
  /*overflow-x: scroll;*/
}

.content_style1 strong {
  font-weight: bold;
}

.content_style1 ul,
.content_style1 ol,
.content_style1 ul,
.content_style1 ol {
  margin-right: 20px;
  list-style-type: inherit;
  padding-right: 0;
  margin-top: 0;
}

ul.list ul,
ul.list ol,
ol.list ul,
ol.list ol {
  margin-right: 0;
}

.content_style1 ul.list,
.content_style1 ol.list,
.content_style1 ul.list ul,
.content_style1 ul.list ol,
.content_style1 ol.list ol,
.content_style1 ol.list ul {
  list-style: none;
}

.content_style1 ul.list li,
.content_style1 ol.list li {
  padding: 0 30px 0 0;
  position: relative;
}

.content_style1 ol.list li:before,
.content_style1 ul.list li:before {
  content: "P";
  font-family: "bimemahan";
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  font-size: 13px;
  height: 30px;
  color: #549e82;
}

.content_style1 img.center {
  max-width: 100%;
  display: block;
  margin: 15px auto;
}

.content_style1 img.left {
  float: left;
  margin: 10px 20px 10px 0;
}

.content_style1 img.right {
  float: right;
  margin: 10px 0 10px 20px;
}

.content_style1 p {
  margin-top: 5px;
  margin-bottom: 5px;
}

.content_style1 .title {
  border-bottom: 2px solid #32d29638;
  color: #00bf8f;
  display: inline-block;
  font-size: 10px;
  line-height: 20px;
  padding-bottom: 10px;
  position: relative;
  margin-top: 10px;
  margin-bottom: 0;
}

.content_style1 .title:before {
  background-color: #fff;
  bottom: -2px;
  content: "";
  height: 2px;
  right: 20px;
  position: absolute;
  width: 5px;
}

.content_style1 .title:after {
  background-color: #fff;
  bottom: -2px;
  content: "";
  height: 2px;
  left: 20px;
  position: absolute;
  width: 6px;
}

.content_style1 .title.center {
  display: block;
  text-align: center;
  border-bottom: 0 none;
}

.content_style1 .title.center:before {
  bottom: -5px;
  content: "";
  right: 0;
  left: 0;
  margin: 0 auto;
  position: absolute;
  width: 240px;
  height: 5px;
  /*background: url('../_images/bg/title.png') no-repeat center center / contain;*/
}

.content_style1 .title.center:after {
  display: none;
}

.content_style1 .title.center * {
  margin: 0;
}

.content_style1 table th {
  text-align: center;
}

.content_style1 table {
  font-size: 13px;
  background: #fdfdfd;
  text-align: center;
  min-width: 800px;
}

.content_style1 td {
  border: 1px dashed #e6e6e6;
  padding: 5px;
}

.content_style1 .overflow {
  overflow-x: scroll;
}

/*=========== TICKET =============*/
.ticket--box {
  max-width: 200px;
  white-space: initial;
  overflow: hidden;
}

.tickets {
  max-height: 400px;
  overflow-y: scroll;
}

/*=========== TICKET =============*/

/**==================== MODAL ====================*/
.modal-header {
  background-color: var(--dark-yellow);
  border-radius: 7px 7px 0 0 !important;
  border: none;
}

.modal-footer {
  border: none;
}

.modal-content {
  border-radius: 10px !important;
  border: none;
}

.modal-dialog {
  position: relative;
  top: 20%;
}

/**==================== MODAL ====================*/

/*===================== Mother Day ==================*/
.social--media {
  position: relative;
  bottom: 200px;
  left: 15rem;
}

.mother-day .nav-bar {
  position: relative;
}

.mother-day .nav--bar--icon {
  position: relative;
  bottom: 40px;
  left: 0;
  right: 0;
  /* background: url('../../images/motherday/buttom.png'); */
}

.mother-content--wrapper h3,
.mother-content--wrapper label {
  background: #b0dcdf;
  padding: 10px;
  width: 50%;
  margin: 0 auto;
  border-radius: 12px;
  font-weight: bold;
  font-family: yekan;
  font-size: 40px;
  color: #ec4b45;
}

.mother-day .mother-content--wrapper {
  /*background: url('../../images/motherday/bg-back.png');*/
  background-position: 0 -4px;
  background-size: contain;
  background-repeat: repeat;
  margin-top: -115px;
}

.mother-day .mother-content--wrapper .item:hover .item--title {
  background: var(--red);
  color: #fff;
}

.mother-day .mother-content--wrapper .item .item--title {
  margin-top: -15px;
  padding: 22px;
  border-radius: 0 0 15px 15px;
  /* padding: 16px 109px 7px 108px; */
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background-color: #fff;
  line-height: 15px;
  padding-top: 35px;
}

.mother-day .btn:focus {
  border: none;
}

.mother-day .btn {
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.14);
  background-color: #fa2845;
  border: none;
  margin: 30px auto;
  display: block;
  width: 100%;
  font-size: 1.7rem;
}

.mother-day .form-control:focus {
  width: 100% !important;
  height: 67.8px;
  /* margin: 0 25px; */
  border-radius: 10px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background-color: #fff !important;
  border: none;
  border-radius: 20px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.14) !important;
  background-color: #fff !important;
  border: none;
}

.mother-day label {
  font-size: 1.7rem;
}

.mother-day input {
  text-align: left;
  height: 67.8px;
  /* margin: 15px 165.9px 31.2px 166px; */
  border-radius: 20px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.14) !important;
  background-color: #fff !important;
  border: none;
}

.mother-day .mother-content--wrapper .item img {
  /* height: 185px; */
  max-height: 185px;
  border-radius: 15px 15px 0 0;
}

.modal.mother-day {
  border-radius: 7px;
  padding: 10px;
}

.modal.mother-day .modal-dialog {
  max-width: 1200px;
  padding: 0;
}

.modal.mother-day .modal-body {
  padding: 100px;
}

.modal.mother-day .modal-content {
  background: url(../../images/motherday/bg-modal.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /* padding: 0; */
  /* margin: 0; */
  border: 0;
}

.mother-day .link {
  cursor: pointer;
}

.modal.mother-day .modal-title {
  font-family: Kalameh-black;
  font-size: 6rem;
  font-weight: 900;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.12;
  letter-spacing: normal;
  text-align: left;
  color: #fa2845;
}

.modal.mother-day .modal-sub--title {
  font-family: Yekan;
  font-size: 40px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.53;
  letter-spacing: normal;
  text-align: left;
  color: #484848;
}

.modal.mother-day .main--title {
  font-family: Yekan;
  font-size: 36px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.56;
  letter-spacing: normal;
  text-align: center;
  color: #fa2845;
  width: 51%;
  float: left;
}

.modal.mother-day p {
  color: #484848;
  font-size: 24px;
  font-family: yekan;
  text-align: justify;
}

.modal.mother-day .tracking--box {
  width: 50%;
  height: 75px;
  font-size: 1.7rem;
  /* margin: 1px 15px 17px 16px; */
  padding: 9px 35px 9px 35px;
  border-radius: 20px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background-color: #fa2845;
  float: left;
  font-family: yekan;
  color: #fff;
}

.modal.mother-day .main--content {
  width: 50%;
  margin: 17px 1px 18px 0px;
  padding: 12px 51px 12px 48px;
  border-radius: 20px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background-color: #fff;
  float: left;
}

.modal.mother-day .modal-footer {
  float: left;
  border-top: 0 !important;
  float: left;
  width: 50%;
}

.modal.mother-day .modal-footer p {
  font-size: 20px;
  text-align: center;
  width: 100%;
}

/*===================== Mother Day ==================*/

@media screen and (min-width: 420px) and (max-width: 575px) {
  .swiper .item {
    width: 19% !important;
  }
}

@media screen and (max-width: 575px) {
  .section--title {
    font-size: 1.9rem;
  }

  .footer .footer-left--side .item {
    width: 40% !important;
  }

  .mother-day .footer--social .item,
  .mother-day .social--top .item {
    width: 40% !important;
    margin: 25px auto !important;
  }

  .mother-day .footer--social .armin-logo.item,
  .mother-day .social--top .item.logo-armin {
    width: 30% !important;
  }

  .mother-day .footer--social .item img,
  .mother-day .social--top .item img {
    padding: 0 !important;
    height: auto;
  }
}

@media screen and (max-width: 420px) {
  .main--wrapper {
    /* padding: 0 25px; */
  }

  .mobile--text {
    display: block;
  }

  .number {
    font-size: 0.75rem !important;
  }

  .top--header .item {
    letter-spacing: 1px;
    text-align: left;
  }

  .swiper-wrapper {
    max-height: 60px;
    margin-bottom: 13px;
  }

  .swiper .item {
    width: calc(100% - 75%);
  }

  .mother-day--slide img {
    height: 100%;
    max-height: 200px;
  }

  .inner h5 {
    margin-top: 0 !important;
  }

  /* .description p:first-child {
        display: none;
    }

    .description p:nth-child(2) {
        color: #333;
    } */
}

/*ehsan*/
.scrollToTop {
  display: none;
  position: fixed;
  z-index: 50;
  bottom: 3%;
  left: 3%;
}

.scrollToTop i {
  width: 40px;
  height: 40px;
  background-color: var(--dark-yellow);
  border-radius: 50px !important;
  color: #fff0f6;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pwa-box {
  display: none;
  background-color: #fff;
  position: fixed;
  z-index: 100000;
  width: 100%;
  height: 100%;
  inset: 0;
  line-height: 2;
}

.pwa-bg {
  background-image: url("/assets/front/pwa-back.png");
  background-size: cover;
}

.loading-container {
  display: none;
  background-color: rgba(255, 255, 255, 0.78);
  position: fixed;
  z-index: 100000;
  width: 100%;
  height: 100%;
  inset: 0;
  line-height: 2;
}

/*ehsan*/

/*#hossein_style start*/
.set-align-table-details {
  text-align: right !important;
}

.textarea-style {
  padding: 12px 20px;
  box-sizing: border-box;
  border-radius: 10px !important;
  background-color: #f8f8f8;
  font-size: 16px;
  resize: none;
}

table.t-welfare tbody tr td {
  color: var(--dark-gray);
  font-weight: bold;
  padding: 15px 5px !important;
  border-left: 4px solid #fff;
  margin: 0 2px;
  background-color: var(--sidebar-gray);
  text-align: center;
}

.set-number-font {
  font-family: "Iransans-number", serif !important;
}

/*.form-control, option {*/
/*    font-family: 'Iransans-number', serif !important;*/
/*    font-size: 14px;*/
/*    ;*/
/*}*/

.select-box {
  height: 50px;
  /* margin: 0 25px; */
  border-radius: 5px !important;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16) !important;
  background-color: #f5f5f5 !important;
  border: none;
}

.request-page-title {
  color: var(--dark-yellow);
  font-weight: bold;
}

.rating-checked {
  color: darkgrey;
}

.rating-unchecked {
  color: var(--dark-yellow);
}

.item-box-shadow {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.btn-radius {
  border-radius: 10px !important;
}

.welfare-btn {
  min-height: 83px;
  cursor: pointer;
}

.card-golden {
  transition: 200ms;
  position: relative;
}

.card-golden:hover a {
  color: #fff0f6;
}

.card-golden a {
  color: #000000;
}

.card-golden svg {
  fill: #bc9528;
  max-height: 51px;
}

.card-golden:hover {
  color: #fff;
  background-color: #bc9528;
  border-color: #bc9528;
}

.card-golden:hover svg {
  fill: #fff;
}

.card-golden .img-white {
  display: none;
}

.btn-golden {
  background-color: #f5f5f5;
  width: 100%;
}

.btn-check:active + .btn-golden,
.btn-check:checked + .btn-golden,
.btn-golden.active,
.btn-golden.dropdown-toggle.show,
.btn-golden:active {
  color: #fff;
  background-color: #bc9528;
  border-color: #bc9528;
}

.notice-banner {
  width: 100%;
  height: 196px;
  object-fit: cover;
}

/*collapse*/
.accordion > input[name="collapse"] {
  display: none;
}

.accordion label,
.accordion .content {
  margin: 0 auto;
}

.accordion .content {
  overflow: hidden;
  height: 0;
  transition: 0.5s;
}

.accordion > input[name="collapse"]:checked ~ .content {
  height: auto;
  transition: height 0.5s;
}

.accordion label {
  display: block;
}

.accordion {
  margin-bottom: 1em;
}

.accordion > input[name="collapse"]:checked ~ .content {
  border-top: 0;
  transition: 0.3s;
}

.accordion .handle {
  margin: 0;
  font-size: 16px;
}

.accordion label {
  color: #252525;
  cursor: pointer;
  font-weight: normal;
  user-select: none;
  font-size: 12px;
  padding: 10px 0;
}

.accordion .handle label:after {
  /* font-family: FontAwesome; */
  /* content: "\f107"; */
  display: inline-block;
  margin-right: 10px;
  font-size: 1em;
  line-height: 1.556em;
  vertical-align: middle;
  transition: 0.4s;
}

.accordion > input[name="collapse"]:checked ~ .handle i {
  transform: rotate(180deg);
  transform-origin: center;
  transition: 0.4s;
}

.accordion > input[name="collapse"]:checked ~ .handle label:after {
  transform: rotate(180deg);
  transform-origin: center;
  transition: 0.4s;
}

/*collapse*/

.btn-golden {
  background-color: #f5f5f5;
}

.btn-check:active + .btn-golden,
.btn-check:checked + .btn-golden,
.btn-golden.active,
.btn-golden.dropdown-toggle.show,
.btn-golden:active {
  color: #fff;
  background-color: #bc9528;
  border-color: #bc9528;
}

.chat-box {
  min-height: 300px;
  max-width: 500px;
  background-color: #eaeaea;
  padding: 10px;
  margin: 0 auto;
}

.chat-box .chat-rows {
  display: flex;
  flex-direction: column;
  max-height: 250px;
  overflow-y: auto;
}

.chat-box .chat-row {
  padding: 5px 10px;
  background-color: floralwhite;
  width: auto;
  display: inline-block;
  min-width: 130px;
}

.chat-box .admin-row {
  margin-right: auto;
  margin-bottom: 5px;
}

.chat-box .user-row {
  margin-left: auto;
  margin-bottom: 5px;
}

/*#hossein_style end*/

/**======================== 503 Error =================*/
.main-error-page {
  margin: 0px auto;
  width: auto;
  max-width: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.error-title {
  max-width: 529px;
  font-family: Roboto;
  font-size: 38px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #4b4b62;
  margin-bottom: 16px;
}

.error-subtitle {
  max-width: 568px;
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.31;
  letter-spacing: normal;
  text-align: center;
  color: #4b4b62;
  margin-bottom: 24px;
}

svg {
  margin-bottom: 16px;
}

.pao-atras {
  animation: leftright 1s alternate infinite;
  transform-origin: center;
}

.pao-frente {
  animation: leftright 1s 0.3s alternate infinite;
  transform-origin: center;
}

.olho-esq {
  animation: sad 2s alternate infinite;
  transform-origin: center;
}

.olho-dir {
  animation: sad 2s alternate infinite;
  transform-origin: center;
}

.boca {
  animation: sad 2s alternate infinite;
  transform-origin: center;
}

.raios {
  -webkit-animation: flicker-4 4s linear infinite both;
  animation: flicker-4 4s linear infinite both;
}

.tomada {
  -webkit-animation: vibrate-1 3s linear infinite both;
  animation: vibrate-1 3s linear infinite both;
}

.fio-500 {
  -webkit-animation: vibrate-1 3s linear infinite both;
  animation: vibrate-1 3s linear infinite both;
}

.fio {
  -webkit-animation: vibrate-1 3s linear infinite both;
  animation: vibrate-1 3s linear infinite both;
}

@keyframes scales {
  from {
    transform: scale(0.98);
  }

  to {
    transform: scale(1);
  }
}

/**
 * ----------------------------------------
 * animation flicker-4
 * ----------------------------------------
 */
@-webkit-keyframes flicker-4 {
  0%,
  100% {
    opacity: 1;
  }

  31.98% {
    opacity: 1;
  }

  32% {
    opacity: 0;
  }

  32.8% {
    opacity: 0;
  }

  32.82% {
    opacity: 1;
  }

  34.98% {
    opacity: 1;
  }

  35% {
    opacity: 0;
  }

  35.7% {
    opacity: 0;
  }

  35.72% {
    opacity: 1;
  }

  36.98% {
    opacity: 1;
  }

  37% {
    opacity: 0;
  }

  37.6% {
    opacity: 0;
  }

  37.62% {
    opacity: 1;
  }

  67.98% {
    opacity: 1;
  }

  68% {
    opacity: 0;
  }

  68.4% {
    opacity: 0;
  }

  68.42% {
    opacity: 1;
  }

  95.98% {
    opacity: 1;
  }

  96% {
    opacity: 0;
  }

  96.7% {
    opacity: 0;
  }

  96.72% {
    opacity: 1;
  }

  98.98% {
    opacity: 1;
  }

  99% {
    opacity: 0;
  }

  99.6% {
    opacity: 0;
  }

  99.62% {
    opacity: 1;
  }
}

@keyframes flicker-4 {
  0%,
  100% {
    opacity: 1;
  }

  31.98% {
    opacity: 1;
  }

  32% {
    opacity: 0;
  }

  32.8% {
    opacity: 0;
  }

  32.82% {
    opacity: 1;
  }

  34.98% {
    opacity: 1;
  }

  35% {
    opacity: 0;
  }

  35.7% {
    opacity: 0;
  }

  35.72% {
    opacity: 1;
  }

  36.98% {
    opacity: 1;
  }

  37% {
    opacity: 0;
  }

  37.6% {
    opacity: 0;
  }

  37.62% {
    opacity: 1;
  }

  67.98% {
    opacity: 1;
  }

  68% {
    opacity: 0;
  }

  68.4% {
    opacity: 0;
  }

  68.42% {
    opacity: 1;
  }

  95.98% {
    opacity: 1;
  }

  96% {
    opacity: 0;
  }

  96.7% {
    opacity: 0;
  }

  96.72% {
    opacity: 1;
  }

  98.98% {
    opacity: 1;
  }

  99% {
    opacity: 0;
  }

  99.6% {
    opacity: 0;
  }

  99.62% {
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation vibrate-1
 * ----------------------------------------
 */
@-webkit-keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }

  20% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }

  40% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }

  60% {
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
  }

  80% {
    -webkit-transform: translate(2px, -2px);
    transform: translate(2px, -2px);
  }

  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

@keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }

  20% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }

  40% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }

  60% {
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
  }

  80% {
    -webkit-transform: translate(2px, -2px);
    transform: translate(2px, -2px);
  }

  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

/**
 * ----------------------------------------
 * animation wobble-ver-right
 * ----------------------------------------
 */
@-webkit-keyframes wobble-ver-right {
  0%,
  100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
  }

  15% {
    -webkit-transform: translateY(-30px) rotate(6deg);
    transform: translateY(-30px) rotate(6deg);
  }

  30% {
    -webkit-transform: translateY(15px) rotate(-6deg);
    transform: translateY(15px) rotate(-6deg);
  }

  45% {
    -webkit-transform: translateY(-15px) rotate(3.6deg);
    transform: translateY(-15px) rotate(3.6deg);
  }

  60% {
    -webkit-transform: translateY(9px) rotate(-2.4deg);
    transform: translateY(9px) rotate(-2.4deg);
  }

  75% {
    -webkit-transform: translateY(-6px) rotate(1.2deg);
    transform: translateY(-6px) rotate(1.2deg);
  }
}

@keyframes sad {
  0% {
    transform: rotateX(0deg) rotateY(0deg);
  }

  100% {
    transform: rotateX(10deg) rotateY(5deg);
  }
}

@keyframes leftright {
  0% {
    transform: rotateZ(0deg);
  }

  100% {
    transform: rotateZ(-15deg);
  }
}

/*=============  Body Building =============*/
.card .content--data {
  border: 3px solid #a4a4a4;
}

.body-building--register-page .plans-page .card-body {
  /* max-height: 370px; */
  /* min-height: 185px; */
}

.plans-page .card-footer {
  opacity: 1 !important;
  background: transparent;
}

.plan-select--item {
  border-bottom: 4px solid #ddd;
}

.main--box {
  border: 3px solid #7d7d7d !important;
  border-radius: 9px !important;
  margin-bottom: 15px;
}

.package--item {
  border: 2px solid #ddd;
  border-bottom: 0;
  border-radius: 5px 5px 0 0 !important;
  padding: 10px;
  background: #ddd;
  margin: 0 60px;
}

.body-building--register-page img {
  max-height: 150px;
}

.body-building--register-page #progressbar li {
  width: 13.33%;
}

#grad1 {
  background-color: #9c27b0;
  background-image: linear-gradient(120deg, #ff4081, #81d4fa);
}

#msform {
  position: relative;
  margin-top: 20px;
}

#msform li.active + .msform--arrow {
  color: var(--dark-yellow);
}

#msform .msform--arrow {
  color: var(--bg-gray);
}

#msform li.active {
  background: var(--dark-yellow) !important;
}

#msform fieldset .form-card {
  background: white;
  border: 0 none;
  border-radius: 0px;
  box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
  padding: 20px 40px 30px 40px;
  box-sizing: border-box;
  width: 94%;
  margin: 0 3% 20px 3%;
  position: relative;
}

#msform fieldset {
  background: white;
  border: 0 none;
  border-radius: 0.5rem;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding-bottom: 20px;
  position: relative;
}

#msform fieldset:not(:first-of-type) {
  display: none;
}

#msform fieldset .form-card {
  color: #9e9e9e;
}

#msform button,
#msform .action-button,
#msform .action-button-previous {
  border: none;
  outline: none;
}

#msform input:focus,
#msform textarea:focus {
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: none;
  font-weight: bold;
  /* border-bottom: 2px solid skyblue; */
  outline-width: 0;
}

#msform .rounded {
  border-radius: 8px !important;
}

#msform .edit-detail .row .bg-light-gray.edit-detail--data {
  height: 35px;
}

select.list-dt {
  border: none;
  outline: 0;
  border-bottom: 1px solid #ccc;
  padding: 2px 5px 3px 5px;
  margin: 2px;
}

select.list-dt:focus {
  border-bottom: 2px solid skyblue;
}

.card {
  z-index: 0;
  border: none;
  border-radius: 0.5rem;
  position: relative;
}

.radio-group {
  position: relative;
  margin-bottom: 25px;
}

.radio {
  display: inline-block;
  width: 204;
  height: 104;
  border-radius: 0;
  background: lightblue;
  box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  cursor: pointer;
  margin: 8px 2px;
}

.radio:hover {
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.radio.selected {
  box-shadow: 1px 1px 2px 2px rgba(0, 0, 0, 0.1);
}

.fit-image {
  width: 100%;
  object-fit: cover;
}

.icon-chevron {
  transition: 200ms;
}

.accordion-btn:not(.collapsed) .icon-chevron {
  transform: rotate(-180deg);
}

.search-collapse:not(.collapsed) .icon-chevron {
  transform: rotate(-180deg);
}

.body-building--register-page hr {
  border: 2px solid #bc9528;
  background: #bc9528;
  margin: 35px;
  border-radius: 10px;
  box-shadow: 1px 1px 1px #fff;
}

#msform .budget {
  border-radius: 50% !important;
  background: #bc9528;
  /* width: 25px; */
  /* height: 25px; */
  padding: 2px 10px !important;
  color: #fff;
}

#msform .fill--image + .help-block {
  display: none !important;
}

.circle-sm {
  width: 20px;
  height: 20px;
  border-radius: 10px !important;
  background: var(--dark-yellow);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.farzamsoft--installment {
  display: none !important;
}
