html {
    min-height: 100vh;
}
.d-none {
    display: none;
}
.d-block {
    display: block;
}
.d-inline-block{
    display: inline-block;
}
.d-flex {
    display: flex;
}
html {
    scroll-behavior: smooth;
}
a {
    text-decoration: none;
}
.containerRadio, .containerCheckBox {
    display: block;
    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: 0px;
    width: 20px;
    height: 20px;
    border: 1px solid #777;
    border-radius: 50%;
}
.containerRadio input, .containerCheckBox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.containerRadio .checkmark {
    position: absolute;
    top:0px;
    right: 0;
    height: 20px;
    width: 20px;
    transition: all 0.5s;
}
.containerCheckBox .checkmark {
    position: absolute;
    top: 0px;
    right: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    transition: all 0.5s;
    transform: scale(0);
}
.containerRadio:hover input~.checkmark{
    background-color: #ccc;
    border-radius : 50%;
}
.containerCheckBox:hover input~.checkmark {
    background-color: #ccc;
    border-radius :3px;
}
.containerRadio input:checked~.checkmark, .containerCheckBox input:checked~.checkmark {
    background-color: #2196F3;
    transform: scale(1);
    border-radius: 50%;
}
.containerCheckBox input:checked~.checkmark, .containerCheckBox>.bg-fix{
    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: 6px;
    left: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}
.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: myiransans;
    font-display: swap;
    src: url('../font/iranYekanPro/IRANYekanXFaNum-Regular.woff2');
}

ul {
    padding: 0;
    margin: 0;
}
ul li {
    list-style: none;
}
.btn{
    border: 0;
    padding: 4px 12px;
    cursor: pointer;
    height: 46px;
}
.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: end;
}
.justify-space-between {
    justify-content: space-between;
}
.justify-space-around {
    justify-content: space-around;
}
.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-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 red !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: 35px;
}
input[type=text] {
    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 : red ;
}
.primary--text {
   color: #0077DB;
}
.grey--text{
    color: grey;
}
.noScroll {
    position: fixed;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
}
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: #dddddd;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #dddddd;
}
.wrpTextContent img  {
    height: auto!important;
    width: auto !important;
    display: block;
    margin: 10px auto;
    max-width: 100% !important;
    max-height: 100%;
}
.wrpTextContent video {
    margin: 0 auto;
    display: block;
    max-width: 100%;
}
.wrpTextContent div {
    width: 100%;
    overflow-x: auto;
}
.overflow-hidden{overflow: hidden;}

.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;
}
.lazy {
    overflow: hidden;
    display: inline-block;
}

/* @font-face {
	font-family: IRANYekanX;
    font-display: swap;
	font-style: normal;
	font-weight: 500;
	src: url('../font/iranYekan/IRANYekanXFaNum-Regular.woff2') format('woff2');
} */
ul {
    padding: 0;
    margin: 0;
}
ul li {
    list-style: none;
}

.justify-space-evenly {
    justify-content: space-evenly;
}
/* .wrpTextContent :is(p , li ) {
  text-align: justify;

} */
@media all and (min-width : 768px) {
    /* .wrpTextContent img  {
        min-height: 385px;
    } */
}
