:root {
  --mainColors : #F58357 ;
  --subColors : #2f82c8 ;
  --deactiveLinks : #A5A5A7 ;
  --bgActive : #BFD7FF ;
  --borderActive : #4285F4 ;
  --blueLight : #768EA2 ;
  --lightColor : #D1D9E0 ;
  --grayColor : #F3F5F7 ;
  --btnSubHeight : 46px ;
}
.btnPrimary {
    background-color: var(--mainColors);
    color: white;
}
.btnSecondary {
    background-color: var(--subColors);
    color: white;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.ckeditor-html5-video {
 margin: 15px auto;
 max-width: 700px;
}
.ckeditor-html5-video > video {
    width: 100%;
}
.grecaptcha-badge {
    display: none !important ;
}
html , body {
    min-height: 100vh;
    max-width: 100vw;
}
a {
    text-decoration: none;
    color:#000
}
.lazy {
    overflow: hidden;
    display: inline-block;
}
.containerRadio, .containerCheckBox {
    display: inline-block !important;;
    position: relative;
    padding-right: 20px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.containerRadio>.bg-fix, .containerCheckBox>.bg-fix {
    position: absolute;
    right: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    border: 1px solid #777;
    border-radius: 50%;
}
.containerCheckBox>.bg-fix {
    border-radius: 3px;
}
.containerRadio input, .containerCheckBox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.containerRadio .checkmark {
    position: absolute;
    top:5px;
    right: 0;
    height: 20px;
    width: 20px;
    transition: all 0.5s;
}
.containerCheckBox .checkmark {
    position: absolute;
    top: 5px;
    right: 0;
    height: 20px;
    width: 20px;
    background-color: #000;
    transition: all 0.5s;
    transform: scale(0);
}
.containerRadio:hover input~.checkmark{
    background-color: transparent;
    border-radius : 50%;
}
.containerCheckBox:hover input~.checkmark {
    background-color: #000;
    border-radius :3px;
}
.containerRadio input:checked~.checkmark, .containerCheckBox input:checked~.checkmark {
    /* background-color: #2196F3; */
    transform: scale(1);
    border-radius: 50%;
}
.containerCheckBox input:checked~.checkmark {
    border-radius: 3px;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.containerRadio input:checked~.checkmark:after, .containerCheckBox input:checked~.checkmark:after {
    display: block;
}
.containerRadio .checkmark:after {
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--subColors);
}
.containerCheckBox .checkmark:after {
    left: 6px;
    top:1px;
    width: 5px;
    height: 11px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.containerCheckBox .checkmark ~ span , .containerCheckBox .checkmark ~ div , .containerCheckBox .checkmark ~ small , .containerCheckBox .checkmark ~ img {
    margin-right: 10px;
}
.containerRadio .checkmark ~ span , .containerRadio .checkmark ~ div , .containerRadio .checkmark ~ small , .containerRadio .checkmark ~ img {
   margin-right: 10px;
}
@font-face {
	font-family: IRANYekanX;
    font-display: swap;
	font-style: normal;
	font-weight: 500;
	src: url('/assets/fonts/iranYekan/IRANYekanXFaNum-Regular.woff2') format('woff2');
}
@font-face {
    font-family: arabicFont;
    font-display: swap;
    font-style: normal;
    font-weight: 500;
    src: url('/assets/fonts/arabic/ArabicBold.woff')format('truetype');
}
ul {
    padding: 0;
    margin: 0;
}
ul li {
    list-style: none;
}
.btn{
    border: 0 ;
    padding: 4px 12px ;
    cursor: pointer ;
    min-width: 43px ;
    min-height: var(--btnSubHeight) ;
}
.rounded {
    border-radius: 5px;
}
.dir-ltr {
    direction: ltr;
}
.pl-rtl::placeholder{
    direction: rtl;
    text-align: right;
}
.flex-1 {
    flex: 1;
}
.flex-column {
    flex-direction: column;
}
.flex-end {
    justify-content: flex-end;
}
.justify-space-between {
    justify-content: space-between;
}
.justify-space-around {
    justify-content: space-around;
}
.justify-space-evenly {
    justify-content: space-evenly;
}
.justify-center{
    justify-content: center;
}
.align-center {
    align-items: center;
}
.align-end {
    align-items: flex-end;
}
.align-start {
    align-items: flex-start;
}
.align-stretch {
    align-items: stretch;
}
.flex-wrap {
    flex-wrap: wrap;
}
.text-center {
    text-align: center;
}
.text-justify {
    text-align: justify;
}
.text-right {
    text-align: right;
}
.text-left {
    text-align: left;
}
.bg-white {
    background-color: white;
}
.white--text {
    color: white;
}
.myCursor {
    cursor: pointer
}
.border-light {
    border: 1px solid #e1e1e1 !important;
}
.border-bottom-light {
    border-bottom: 1px solid #d9d9d9;
}
.border-top-light {
    border-top: 1px solid #d9d9d9;
}
.border-right-light {
    border-right: 1px solid #d9d9d9;
}
.border-left-light {
    border-left: 1px solid #d9d9d9;
}
.redBorder{
    border: 1px solid #c52323 !important;
}
.w-100 {
    width: 100% !important;
}
.w-50 {
    width: 50% !important;
}
.h-100 {
    height: 100%;
}
.position-relative {
    position: relative;
}
.bg-light {
    background-color: #F3F5F7;
}
.form-control {
    width: 100%;
    padding: 5px 10px;
    border: 1px solid #cacaca;
    height: 100%;
    font-size: 16px;
}
.table-responsive {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    border: 1px solid #ddd;
}
.table-responsive th, .table-responsive td {
    padding: 8px;
}
.bold--text {
    font-weight: bold;
}
.light--text {
    font-weight: lighter;
}
.normal--text {
    font-weight: normal;
}
.text-truncate {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.no-wrap{
    white-space: nowrap;
}
.spacer {
    flex-grow: 1!important;
}
.px-15 {
    padding-left: 15px;
    padding-right: 15px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.red--text{
    color : #c52323 ;
}
.primary--text {
   color: #0077DB;
}
.grey--text{
   color: grey;
}
.noScroll {
   overflow: hidden;
}
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  border-radius: 5px;
}
::-webkit-scrollbar-thumb {
  background: #BEC6CC;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #BEC6CC;
}
.sm-txt {
    font-size: 10px;
}
/* .wrpTextContent :is(p , li ) {
  text-align: justify;

} */
.wrpTextContent img  {
    min-height: 385px;
    height: 385px;
    width: auto !important;
    display: block;
    margin: 25px auto;
    max-width: 100% !important;
    max-height: 100%;
    object-fit: cover;
}
.wrpTextContent video {
    display: block;
    max-width: 100%;
    max-height: 400px;
    min-height: 400px;
    border-radius: 15px;
    height: 400px;
}
.wrpTextContent > div {
    width: 100%;
    overflow-x: auto;
}
.wrpTextContent h1, .wrpTextContent h2, .wrpTextContent h3, .wrpTextContent h4, .wrpTextContent h5, .wrpTextContent h6 {
    margin: 20px 0 5px 0 !important;
}
.wrpTextContent h2 {
    margin-top: -80px !important ;
    padding-top: 80px !important ;
    line-height: 32px;
}
blockquote {
    margin: 0;
}
.wrpTextContent ol {
    padding-right: 15px;
}
.wrpTextContent h5 {
    font-size: 14px;
}
.wrpTextContent h4 {
    font-size: 18px;
}
.overflow-hidden {
    overflow: hidden;
    display: inline-block;
}
.wrpTextContent a {
    color: #0077DB;
}
.wrpTextContent p , .wrpTextContent li {
    text-align: justify;
}
.wrpTextContent aside li {
    text-align : right ;
}
.enNumber {
    font-family: Arial, Helvetica, sans-serif;
}
.btnSub {
    min-width: 60px;
    min-height: var(--btnSubHeight) ;
}
@media all and (max-width: 992px){
    .wrpTextContent video {
        min-height: 253px;
        height: 253px;
    }
}
@media all and (max-width: 767px){
    .wrpTextContent video {
        min-height: 286px;
        height: 286px;
    }
    .wrpTextContent img {
        min-height: 215px !important;
        height: 220px !important;
        margin: 15px auto;
        width: 100% !important;
        max-width: 100% !important;
        display: block;
        object-fit: contain;
    }
    .wrpTextContent table {
        max-width: 100% !important ;
        width: 97.5% !important;
    }
    .wrpTextContent table tr td {
        width : auto !important;
        height: auto !important;
        padding: 5px;
        white-space: break-spaces;
    }
    .wrpTextContent table tr td p , .wrpTextContent table tr td p span {
        white-space: break-spaces;
    }
}

.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow: 0 1px 3px 0 rgba(60,64,67,.3), 0 4px 8px 3px rgba(60,64,67,.15);}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}

.wrpmodal{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;}
.wrpmodal .mainModal{background-color: #fff;
    border-radius: 8px;
    width: 500px;
    max-width: 90%;}
 .natification {
    min-width: 150px;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 1px;
    border: none;
    background-color: #f77066;
    color: #fff;
    position: fixed;
    top: 15px;
    right: 15px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,.2), 0 1px 2px rgba(0,0,0,.24);
    display: none;
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    display: none;
    z-index: 1300; }
@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight
}
  .natification.show {
    display: block;
}
.loading {
    position: relative;
    width: 25px;
    height: 25px;
    animation: loadeingPrd 0.5s ease-in-out;
    animation-iteration-count: infinite;
}
.loading span::after,  .loading span::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
}

 .loading span:first-of-type::after {
    top: 0;
    left: calc(50% - 2px);
}

 .loading span:first-of-type::before {
    bottom: 0;
    left: calc(50% - 2px);
}

 .loading span:last-of-type::after {
    left: 0;
    top: calc(50% - 2px);
}

 .loading span:last-of-type::before {
    right: 0;
    top: calc(50% - 2px);
}

@keyframes loadeingPrd {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
