html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0
}
a {
    text-decoration: none;
}


body {
    font-family: 'IRANSansLight';
    margin: 0;
    padding: 0;
    height: 100vh; /* full viewport height */
    background: #F8F9F9

}
.datepicker-plot-area * {
     font-family: 'IRANSansLight';
}
:root {
    --main-color : #33a595;
    --light-text : #77869E;
    --dark-text :#042C5C
    
}


/*************
* APP 
**************/
.app {
  width:100%;
    height: 100%;
  overflow-x: hidden;
    overflow-y: auto;
 

}

/*************
* MAP
**************/
#map {
	width:100%;
	height:400px
}
/*************
* HEADER 
**************/
header{
    background: var(--main-color);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    user-select: none;
    
    
}

header:after {
    content:'';
    background: var(--main-color);
    width: 100%;
    height: 400px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1
    
} 


/* Main Logo */
.header-logo {
    margin-top: 3px;
    padding:0 25%;          
} 
.header-logo img {
   width: 100%;
    max-width:350px}

/* Main Title */
.header-title  {
    margin-bottom: 10px
}
.header-title h1 {
    margin: 10px;
    color: #fff;
    text-align: center;
    direction:rtl;
    font-size: 20px;

}

/*************
* NAVBAR 
**************/
.noscroll {
    overflow: hidden
}
.navbar {
    color: #fff;
    position: relative;
    z-index: 2;
    width: calc(100% - 48px);
    margin: 16px 24px;
    height: 44px;
    padding:0 5px;
      
}
.navbar .backdrop {
    background: rgba(0,0,0,.5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none
}
.navbar.active .backdrop{
    display: block
}
/* Menu */
.navbar-menu,
.navbar-title{
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0
}
.navbar-title {
    font-size: 18px
}
.navbar-menu span {
    font-size: 28px;
    padding: 0 5px;
}

.navbar-menu ul {
    visibility: hidden;
    opacity: 0;
    padding: 16px;
    direction: rtl;
    text-align: right;
    position: fixed;
    top: 70px;
    width: 90%;
    height: 100%;
    right:-120%;
    z-index: 9;
    background: #fff;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    -webkit-box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.12);
    -moz-box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.12);
    box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.12);
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.navbar-menu.active ul {
    right: 0;
    opacity: 1;
    visibility: visible;
    height: 80%;
    overflow-y:auto
}

.navbar-menu ul li {
    padding: 12px
}

.navbar-menu ul li.menu-logo {
    text-align: center;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}
.navbar-menu ul li.menu-logo img{
    width: 120px
}
.navbar-menu ul li a {
    color: #000
}
.navbar-menu ul li a:hover {
    color: var(--main-color)
}


/* Notification */
.navbar-notification,
.navbar-back{
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0
}
.navbar-back {
    color: #fff;
    font-size: 30px
}
.navbar-notification span {
    font-size: 28px;
    padding: 0 5px;
}

.navbar-notification ul {
        visibility: hidden;
    opacity: 0;
    padding: 16px 8px;
    direction: rtl;
    text-align: right;
    position: fixed;
    top: 70px;
       left:-120%;
    z-index: 9;
    width: 90%;
    height: 100%;
    background: #fff;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    -webkit-box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.12);
    -moz-box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.12);
    box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.12);
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.navbar-notification.active ul {
    left: 0;
    opacity: 1;
    visibility: visible;
    overflow-y:auto
}
.navbar-notification ul li {
    padding: 8px;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.navbar-notification ul li:before {
    content:"\F12C";
    font-family: "Material Design Icons";
    font-size: 20px;
    color: #ccc;
    padding: 0 5px;
    
}

.navbar-notification ul li a {
    color: #000;
     font-size: 14px
}
.navbar-notification ul li a:hover {
    color: var(--main-color)
}

/*************
* CONTENT 
**************/
.content-wrapper {  
    text-align: center;
    background:rgba(0,0,0,.5);
    padding: 16px;
    background: #fff;
    margin:0 16px 16px 16px;
    position: relative;
    z-index: 1;
    -webkit-box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.12);
    -moz-box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.12);
    box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.12);
}
.content-logo img{
    width: 90px
}


/*************
* LOGIN 
**************/
.content-login {
    padding: 16px 24px;
    direction: rtl
}
.content-login h2 {
    font-size:18px;
    text-align: center;

    color: #4f4f4f;
}
.content-login p {
    margin: 0;
    font-size: 14px;
    color:#939393;
    text-align: center
}
.content-login .message {
    color: red;
    text-align: right;
    

}
.content-login .message span {
    font-size: 20px;
      vertical-align:middle;
}
/*************
* INPUT 
**************/
.input {
    position: relative;
    margin: 24px 0;
    text-align: right;
    direction: rtl
}
.input.numeric input{
    direction: ltr;
    text-align: right
}
.input label {
 font-size: 13px;
    font-weight: 700;
    color: #5a595a;
}
.input input,
.input textarea {
    text-align: center !important;
    font-family: inherit;
    resize: vertical;
    font-size: 15px;
    border-radius: 0;
    height: calc(2.25rem + 2px);
    font-weight: 400;
    line-height: 1.5;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ced4da;
    color: var(--dark-text);
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    background-color: #fff;
    background-clip: padding-box;
    background: white no-repeat;
    background-size: 0 1px, 100% 1px;
    background-position: 50% 100%, 50% 100%;
    transition: background-size 0.4s cubic-bezier(0.64, 0.09, 0.08, 1);
    background-color: white;

}
.input input:disabled ,
.input textarea:disabled  {
   color: var(--light-text) ;
    cursor: no-drop
}
.input input:focus,
.input textarea:focus {
     background-size: 100% 2px, 100% 2px;

}


/*************
* BUTTON 
**************/

.button  {      
    
    text-decoration: none;
    padding: 8px 16px;
    border: 0;
    outline: 0;
    background: none;
    margin-right: 8px;
    margin-bottom: 8px;
    border-radius: 3px;
    position: relative;
   
    cursor: pointer;
    color: var(--text-color);
    fill: var(--text-color);
    font-size:24px;
    transition: ease 0.3s all;	
    font-family: inherit;
    border: 1px solid #ccc;
    display: inline-block;
    background: #fff
}
.button.info  {
    background: var(--main-color);
    color: #fff;

}

/* Effect */
.ripple:before  {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: currentColor;
    visibility: hidden;
    z-index: 2;
}
.ripple:not(:active):before {
    animation: ripple 2s cubic-bezier(0, 0, 0.2, 1);
    transition: visibility 2s step-end;
}
.ripple:active:before {
    visibility: visible;
}

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 0.5;
    }
    100% {
        width: 250px;
        height: 250px;
        opacity: 0;
    }
}
@keyframes ripple-xs {
    0% {
        width: 0;
        height: 0;
        opacity: 0.5;
    }
    100% {
        width: 50px;
        height: 50px;
        opacity: 0;
    }
}

/***********************
* MONEY
************************/
.content-money {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 350px;
    margin-top: 12px
}
#money-chart {
    position: absolute;
    top: 0
    
}
.content-money {
    position: relative;
    padding-top:100px

}
.content-money .money-icon {
    background: url("../images/card.png") no-repeat;  
    background-size: 40px;
    width: 40px;
    height: 40px;
}
.content-money .money-title{
    color: var(--light-text);
    font-size: 18px
}
.content-money .money-value {
    color: var(--dark-text);
    font-size: 40px;

}
.content-money .money-currency {
    color: var(--light-text);
    font-size: 18px;
    margin-bottom: 16px;

}

.content-money .money-filter {
    margin-top: 16px
}
.money-product {
    display: flex;
   flex-direction: column;
    align-items: center
}
.money-product .product-details {
    display: flex;
    flex-direction: column;
    justify-content: space-around
}
.money-product img {
    width: 120px;
    margin-bottom: 24px

}
.money-product .product-title {
    margin-bottom:16px;
    font-size: 20px
}
.money-product .product-price {
    color :var(--main-color);
    font-size: 18px
}
.money-steps {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    
}
.money-step-item{
    margin: 16px;
    font-size: 16px;
    direction: rtl;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: 18px
}
.money-step-item.active {
    color: var(--main-color)
}
.money-step-item span {
    font-size: 28px;
    padding: 0 5px
}
.money-message {
    border:1px solid var(--main-color);
    padding: 10px;
    margin-bottom: 16px
}
.money-search {
    width: 100%;
}
.money-search input {
    width: 100%;
    padding: 12px;
    text-align: right;
    direction: rtl;
    font-family: inherit;
    border: 1px solid #ccc;
    margin: 8px 0
}
/***********************
* Card
************************/
.content-cards {
        margin:0 16px 0 16px;
}
.card-list{


}
.card-item {
    direction: rtl;
    text-align: right;
    background: #fff;
    padding: 10px;
    -webkit-box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.03);
    -moz-box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.03);
    box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 16px 0;
    cursor:pointer;
    border: 2px solid transparent;
    border-radius: 5px;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    
}
.card-item:hover {
    -webkit-box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.05);
    -moz-box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.05);
    box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.05);
    border: 2px solid #ddd
}
.card-icon{
    color: #60a845;
    background:#d2f7c4;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    font-size: 30px;
    text-align: center;
    line-height: 50px
}
.card-image img {
	width:120px;
	height:120px
}
.card-info {
    padding-right: 16px;
direction:ltr

}
.card-title {
    color: var(--dark-text);
     font-size: 16px
}
.card-subtitle {
    color: var(--light-text);
    font-size: 13px

}
.card-link {
    color: var(--light-text);
    font-size: 30px
}
.card-item button {
    background: none;
    border: 0;
    cursor: pointer
}
.card-image {
    display: flex;
    justify-content: center;
    align-items: center
}
/******************
* FORM
*******************/
.content-form {
    padding: 0 8px;
    margin-top:24px
}
.content-form .form-info {
    text-align: right;
    direction: rtl;
    font-size: 14px;
    color: var(--light-text)
}


/******************
* LOADER
*******************/
.preLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0063f8;
    z-index: 99999999999999;
    overflow: hidden;
    background: #478e2c;
}
.preLoader img {
    width: 120px;
    z-index: 1;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.spin {
    -webkit-animation: spin .7s linear infinite; 
    animation: spin .7s linear infinite; 
        background: #fff;
    width: 150px;
    height: 155px;
    position: absolute;
    border: 5px solid #ccc;
    border-top: 5px solid #ccc;
    border-bottom: 5px solid #eee;
    border-radius: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes spin {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}



/**************
* PAGINATION
***************/
.pagination {
    direction: rtl;
    -webkit-box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.03);
    -moz-box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.03);
    box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.03);
    padding: 15px;
    display: flex;
    justify-content: space-between;
   background:#fff;
flex-wrap: wrap;
}




.pagination a:hover {
    color: var(--main-color)
}

.pagination .current-page {
    border-bottom: 1px solid  var(--main-color);
     border-top: 1px solid  var(--main-color);
     color: var(--main-color)
}











/*************************
* PWA Apple Screen
**************************/
:root {
  --pwa-color: #60a845;
}
.pwascreen {
  background: #fff;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
   text-align: center;
  position: fixed;
  bottom: 0;
  z-index: 99;
  box-shadow: 0px -2px 5px 0px rgba(0,0,0,0.20);
  padding: 20px 10px 35px 10px;
  width: 100%;
}
.pwascreen-title {
  padding: 20px;
  font-size: 20px
}
.pwascreen-close {
  position: absolute;
  left: 25px;
  top:25px;
  cursor: pointer
}
.pwascreen ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: center
 
}
.pwascreen ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin: 15px;
  padding: 10px;
  font-size: 14px
  
}

.pwascreen ul li span {
  border: 3px solid var(--pwa-color);
  color: var(--pwa-color);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  line-height: 35px;
  margin-bottom:15px
}

@media screen and (min-width:768px) {
  .pwascreen {
    display: none
  }
}

/*************
* MESSAGE 
**************/
.notification-wrapper .mdi{
	font-size:20px
}
.notification-wrapper {
  background:rgba(0,0,0,.8);
  content:'';
  width:100%;
  height:100%;
  position:fixed;
  top:0;
  left:0;
  z-index:999;
  display:flex;
  align-items:center
}
.notification {
  display:flex;
  justify-content:center;
  align-items:center;
  width:360px;
  background:#fff;
  height:80px;
  border:1px solid #ccc;
  border-radius:5px;
  margin:0 auto;
  z-index:999;
  position:relative
}
.notification-close {
  outline:0;
  border:0;
  background:none;
  color:red;
  cursor:pointer;
  position:absolute;
  left:8px;
  top:8px;
}
.notification-success * {
  color:green !important
}
.menotification-error * {
  color:red !important
}




/***********************
* SEARCH
************************/
.money-search {
  position:relative
}

#search-list {
  border-radius:5px;
  background:#fff;
  padding:0;
  margin:0;
  position:absolute;
  z-index:9;
  left:0;
  top:100%;
  max-height:400px;
  overflow-y:auto;
      -webkit-box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.12);
    -moz-box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.12);
    box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.12);
    width:100%

}
.search-item{
  display:flex;
  flex-direction:column;
  margin-bottom:8px;
  padding:18px;
  text-align:right;
  direction:rtl;
  cursor:pointer;
    border-top:1px solid #ccc;

}
.search-item:firt-child{
  border-top:none

}
.search-item-info {
  display:flex
}
.search-item-details {
  display:flex;
  flex-direction:column
}
.search-item-name {
  font-size:18px;
  color:var(--main-color);
}
.search-item-price{
  font-size:20px
}
.search-item-desc{
  font-size:14px
}


.checkbox input[type="checkbox"], .radio input[type="radio"] {
    opacity: 0;
    position: absolute;
    *visibility: hidden;
}
.invalid .invalid-feedback {
    display: block;
}
.question.requeired {
    border-right-color: #57989e !important;
}
.question:hover {
    border-right-color: #45787d;
}
.question {
    padding: 10px;
    background-color: #f7f8fc91;
    border-right: 5px solid #fff;
    border-right-color: rgb(255, 255, 255);
    border-radius: 5px;
    margin-bottom: 10px;
    -webkit-transition: .3s ease-in-out;
    transition: all .3s ease-in-out;
    box-shadow: 0 0 2px #8c8c8c;
}
.question .title {
    font-weight: 700;
    line-height: 1.8rem;
    color: #4c4c4c;
    font-size: 12pt;
    white-space: pre-line;
}

.question .checkbox, .question .radio {
    font-weight: 700;
}
.checkbox, .radio {
    text-align: right;
}


.checkbox label::after, .checkbox label::before {

    content: " ";
    display: inline-block;
    position: absolute;
    top: 3px;
    right: 3px;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #ced4da;
    -webkit-transition: opacity .3s linear;
    transition: opacity .3s linear;

}
.checkbox label::after {
    content: "\f12c";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: 3px;
    color: #555;
    font-size: 13px;
    font-family: "Material Design Icons";
    opacity: 0;
    border: 0;
}

.checkbox input[type="checkbox"]:checked + label::after {
    color: #fff;
    opacity: 1;
}
.checkbox input[type="checkbox"]:checked + label::after {
    background-color: #51b75e;
}
.checkbox label, .radio label {
    display: inline-block;
    position: relative;
    padding-right: 33px;
    line-height: 27px;
    font-size: 10.5pt;
    margin: 0;
    cursor: pointer;
}


.radio input[type="radio"]:checked + label::before {
    border-color: #51b75e;
    background-color: #51b75e;
}
.radio input[type="radio"]:checked + label::before {
    color: #fff;
}
.radio label::after, .radio label::before {
    content: " ";
    display: inline-block;
    position: absolute;
    top: 3px;
    right: 3px;
    padding: 1px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #ced4da;
    border-top-color: rgb(206, 212, 218);
    border-right-color: rgb(206, 212, 218);
    border-bottom-color: rgb(206, 212, 218);
    border-left-color: rgb(206, 212, 218);
    -webkit-transition: opacity .3s linear;
    transition: opacity .3s linear;
    background-color: #fff;
}
.radio input[type="radio"] + label::after {
    opacity: 0;
}
.radio input[type="radio"]:checked + label::after {
    top: 9px;
    right: 9px;
    width: 8px;
    height: 8px;
    opacity: 1;
    border-color: #fff;
    background-color: #fff;
}

.radio label::after, .radio label::before {
    content: " ";
    display: inline-block;
    position: absolute;
    top: 3px;
    right: 3px;
    padding: 1px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #ced4da;
    border-top-color: rgb(206, 212, 218);
    border-right-color: rgb(206, 212, 218);
    border-bottom-color: rgb(206, 212, 218);
    border-left-color: rgb(206, 212, 218);
    -webkit-transition: opacity .3s linear;
    transition: opacity .3s linear;
    background-color: #fff;
}
  .copyright {
    color: #333;
    direction: rtl;
    font-family: 'IRANSansLight';
    font-size: 12px;
    text-align: center;
    padding-top: 10px;
}
.alert{
    direction: rtl;
    text-align: justify;
}
.leaflet-bottom.leaflet-right {
    display: none;
}
.alert-success {
    text-align: justify;
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.note_salamat {
    font-size: small;
    direction: rtl;
    text-align: justify;
}
.alert-info {
    color: #0c5460;
    padding: 3px;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}


.alert-infonew {
    color: #0c5460;
    padding: 3px;
    text-align: right;
        font-size: x-small;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}


.h4, h4 {
    font-size: 1.5rem;
    color: #33a595;
    font-weight: 700;
}

body .leaflet-container{
    font-family: 'IRANSansLight';
    font-size:11px;
    
}
body .leaflet-popup-content-wrapper{
    text-align:right;
}
.leaflet-popup-content {
    text-align: justify;
    font-family: 'IRANSansLight';
    color: #a603f9;
    font-size: 10px;
    background-color: #fffe02;
    font-weight: 600;
    padding: 8px;
}
.guide-link {
    background-color: #d1ecf1;
    padding: 5px;
    border-radius: 5px;
}
.pl-2, .px-2 {
    padding-right: .5rem!important;
}
.pr-2, .px-2 {
    padding-left: .5rem!important;
}
.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.mr-2, .mx-2 {
    margin-left: .5rem!important;
}
.bedoonkhodezhari {
    background-color: #ffe603;
    border-bottom: 12px solid #000d;
    font-weight: 600;
    padding-bottom: 6px;
    padding-top: 12px;
    color: red;
}


input#token {
    text-align: right;
}