/*#region initail */
:root {
    --font-family-fa: "iransans";
    --font-family-fa-second: "vazirmatn";
    --font-family-en: "opensans";
    --font-size: .875rem;
    --color-main: #2a3a7a;
    --color-second: #ffa200;
    --color-white: #fff;
    --color-black: #000;
  --color-active: #c1000c;
    --color-lightWhite-gray: #F9F9F9;
}

/* iransans Font */
@font-face {
    src: url("../fonts/iransans/IRANSansXV.woff") format("woff");
    font-display: swap;
    font-family: "iransans";
    font-weight: 10 1000;
}

/* vazir Font */
@font-face {
    font-family: 'vazirmatn';
    src: url('../fonts/vazirmatn/Vazirmatn[wght].woff2') format('woff2 supports variations'),
        url('../fonts/vazirmatn/Vazirmatn[wght].woff2') format('woff2-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* OpenSans Font */
@font-face {
    src: url("../fonts/opensans/opensans.woff2") format("woff2"),
        url("../fonts/opensans/opensans.ttf") format("truetype");
    font-display: swap;
    font-family: "opensans";
    font-weight: 300 800;
}


/*#endregion initail */

/*#region general */

body,
html {
    direction: rtl;
    font-family: var(--font-family-fa);
    color: var(--color-black);
    font-size: calc(var(--font-size) + 2px);
    scroll-behavior: smooth;
    text-align: right;
    font-feature-settings: 'ss02', 'ss01';
    background-color: var(--color-lightWhite-gray, #f9f9f9);
    margin: 0;
    overflow-x: hidden;
}

body {
    opacity: 0;
}

body.show {
    opacity: 1;
}

body.ltr-direction {
    direction: rtl;
    font-family: var(--font-family-en), ;
}

.wrap-home {
    position: relative;
}

table,
input,
select {
    font-family: inherit
}

.tooltip {
    font-family: var(--font-family-fa)
}

:focus {
    outline: 0 !important
}

a,
a:hover {
    text-decoration: none
}

/*#endregion general */

/*#region all_part */

main {
    margin-top: 70px;
    margin-bottom: 70px;
}

.wrap-home main {
    margin-bottom: 0;
}

.section-part {
    position: relative;
}

.section-part.main {
    height: 100dvh;
}

.section-part:not(.map) {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.section-part:not(.map) .title {
    text-align: center;
    font-family: var(--font-family-fa-second);
    font-weight: 900;
  margin-bottom: 2rem;
}

.section-part:not(.map) .content,
.pagination {
    text-align: justify;
    width: 70%;
    margin: auto;
    line-height: 1.8rem;
}

body.ltr-direction .section-part:not(.map) .content,
.pagination {
    direction: ltr;
}

body.rtl-direction .leaflet-popup-close-button {
    right: auto;
    left: 0;
}

body.ltr-direction main .leaflet-popup-content {
    font-family: var(--font-family-en);
    font-size: 0.8rem;
    direction: ltr;
    text-align: left;
    min-width: 250px;
}

/*#endregion all_part */

/*#region header */

header {
    display: flex;
    overflow: hidden;
    max-width: 100%;
}

header .header-top {
    height: 80px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: white;
    display: flex;
    z-index: 10000;
}

body.ltr-direction header .header-top,
body.ltr-direction header .header-top .logo {
    flex-direction: row-reverse;
}

header .header-top .logo {
    display: flex;
  color: black;
}

header .header-top .logo h2 {
    font-size: 1rem;
    display: flex;
    align-items: center;
    font-family: var(--font-family-fa-second);
    font-weight: 900;
}

body.ltr-direction header .header-top .logo h2 {
    text-align: left;
}

header .header-top .logo img {
    width: auto;
    height: 100%;
    object-fit: contain;
  margin: 0 1rem 0 0;
}

body.ltr-direction header .header-top .logo img {
  margin: 0 0 0 1rem;
}

header .header-top .select-language {
    display: flex;
    height: 100%;
    align-items: center;
    padding: 0 1rem;
}

header .header-top .select-language input {
    cursor: pointer;
    display: none;
}

header .header-top .select-language label {
    margin: 0 0 0 0.5rem;
    cursor: pointer;
    background: #eee;
  padding: 0.3rem 0.5rem;
    border-radius: 5px;
    width: 55px;
    text-align: center;
    color: #000;
    font-weight: bold;
    font-size: 0.9rem;
}

header .header-top .select-language label:hover,
header .header-top .select-language .selected+label {
    color: var(--color-active);
  transition: 0.3s;
  background: #d2d2d2;
}

.page-link {
    margin: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

body.ltr-direction .page-link {
    flex-direction: row-reverse;
}

.page-link a {
    padding: 0 0.5rem;
    color: var(--color-main);
    font-weight: bold;
}

.page-link a:hover,
.page-link a.active {
    color: var(--color-active);
}

/*#endregion header */

/*#region sidebar */
.sidebar {
    z-index: 9999;
    position: absolute;
    right: 0;
    left: auto;
    top: 80px;
    z-index: 9998;
    background: white;
    width: 259px;
    height: calc(100dvh - 215px);
    max-height: 100dvh;
    padding: 0 0 6.6rem;
    transition: right 0.4s;
}

.sidebar.collapsed {
    right: -210px;
    left: auto;
    transition: 0.4s;
}

.sidebar.collapsed:after {
    content: "";
    background: white;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

body.ltr-direction .sidebar {
    right: auto;
    left: 0;
    transition: left 0.4s;
    direction: ltr;
}

body.ltr-direction .sidebar.collapsed {
    left: -210px;
    transition: left 0.4s;
}

.sidebar .sidebar-collapse {
    position: relative;
}

.sidebar .collapse-icon {
    background: url(../img/menu.svg) no-repeat;
    background-size: contain;
    background-position: center;
    width: 30px;
    height: 45px;
    cursor: pointer;
    position: relative;
    right: 10px;
    top: 0;
    z-index: 99999;
    transform: rotate(-180deg);
}

body.ltr-direction .sidebar .collapse-icon {
    right: auto;
    left: 8px;
    transform: rotate(0deg);
}

.sidebar.collapsed .collapse-icon {
    right: 220px;
    transform: rotate(0deg);
}

body.ltr-direction .sidebar.collapsed .collapse-icon {
    transform: rotate(-180deg);
    left: 220px;
}

.sidebar .marker-default,
.sidebar .filter img {
    position: absolute;
    top: 0;
    left: 15px;
    cursor: pointer;
}

body.ltr-direction .sidebar .marker-default,
body.ltr-direction .sidebar .filter img {
    left: auto;
    right: 15px;
}

.sidebar.collapsed .marker-default,
.sidebar.collapsed .filter img {
    top: 45px;
    left: 15px;
    z-index: 99999;
}

body.ltr-direction .sidebar.collapsed .marker-default,
body.ltr-direction .sidebar.collapsed .filter img {
    left: auto;
    right: 15px;
}

.sidebar .filter {
    width: 100%;
    position: relative;
    display: flex;
  height: 20px;
  padding-bottom: 0.7rem;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
}

.sidebar.collapsed .filter img {
    top: 0;
}
.sidebar .result{
  padding-right: 1rem;
}
.sidebar .result-label,
.sidebar .result-count {
  font-size: 0.8rem;
  margin-left: 0.2rem;
}
.sidebar .result-count{
 color: var(--color-active);
 margin-right: 0.5rem;
}

body.ltr-direction .sidebar .result-label,
body.ltr-direction .sidebar .result-count {
  margin-right: 0.2rem;
}

body.ltr-direction .sidebar .result-count{
  margin-left: 0.5rem;
  font-family: var(--font-family-en);
}

.filter-box {
    position: absolute;
    top: 80px;
    right: 259px;
    background: var(--color-main);
    display: flex;
    flex-wrap: wrap;
    width: 420px;
    z-index: 401;
    border-radius: 5px;
    padding: 0.7rem;
    transition: 0.5s;
    border: 1px solid #eee;
}

body.ltr-direction .filter-box {
    right: auto;
    left: 259px;
    text-align: left;
    direction: ltr;
}

.filter-box.collapsed {
    right: -450px;
    transition: 0.5s;
}

body.ltr-direction .filter-box.collapsed {
    right: auto;
    left: -450px;
}

.sidebar.collapsed+.filter-box {
    right: 49px;
}

body.ltr-direction .sidebar.collapsed+.filter-box {
    right: auto;
    left: 49px;
}

.sidebar.collapsed+.filter-box.collapsed {
    right: -450px;
}

body.ltr-direction .sidebar.collapsed+.filter-box.collapsed {
    right: auto;
    left: -450px;
}

.filter-box .filter-group {
    width: 100%;
}

.filter-box .filter-group.operation,
.filter-box .filter-group.wave {
    width: 49%;
}

.filter-box .filter-group.wave {
    margin-right: auto;
}

body.ltr-direction .filter-box .filter-group.wave {
    margin-left: auto;
    margin-right: 0;
}

.filter-box .filter-group h4 {
    margin: 0 0 0.3rem 0;
    font-size: 0.8rem;
    color: var(--color-second);
    font-weight: 500;
}

.filter-box .filter-group:not(:first-child) h4 {
    margin-top: 0.3rem;
}

.filter-box .filter-head {
    width: 100%;
}

.filter-box .filter-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: .8rem;
    padding: 0.3rem 0.1rem;
    border: 1px solid #43528d;
    border-radius: 5px;
}

.filter-box .icons .filter-body,
.filter-box .wave .filter-body,
.filter-box .operation .filter-body {
    border: 0;
    padding-top: 0;
}

.filter-box .filter-body select {
    width: 100%;
    margin: auto;
    border: 1px solid #ccc;
    height: 30px;
    border-radius: 5px;
}

.filter-box .filter-body label {
    padding-left: 0.2rem;
    min-width: 65px;
    min-height: 22px;
    cursor: pointer;
    color: #bdbdbd;
    display: flex;
  align-items: center;
}

.filter-box .filter-body label:has(input:checked) {
    color: white;
}

.filter-box .filter-button-box {
    width: 100%;
    display: flex;
    justify-content: center;
}

.filter-box .filter-button-box span {
    display: block;
    width: max-content;
    height: auto;
    padding: 0.3rem 0.7rem;
    margin: 1rem 0.5rem 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: bold;
    color: black;
    background: var(--color-second);
    border: 2px solid var(--color-second);
}

.filter-box .filter-button-box span:hover {
    color: var(--color-second);
    background: transparent;
    transition: 0.3s;
}

.datepicker-plot-area {
    font-family: var(--font-family-fa);
}

.datepicker-plot-area .datepicker-day-view .table-days td span {
    font-size: 0.7rem;
}

.filter-box .date-box {
    width: 48%;
    display: flex;
    align-items: center;
    padding: 0 0.2rem;
}

.filter-box .date-box span {
    display: block;
    width: 40px;
    color: white;
}

.filter-box .date-box input {
    border: 1px solid #ccc;
    height: 30px;
    border-radius: 5px;
    width: 100%;
    flex-grow: 1;
    text-align: center;
}

body:not(.lang-Fa) .filter-box .date-box input,
body:not(.lang-Fa) .datepicker-plot-area * {
    font-family: var(--font-family-en);
}

.search-hide,
.attacked-hide,
.attacker-hide,
.wave-hide,
.date-hide,
.icons-hide,
.operation-hide {
    display: none !important;
}


.sidebar .search {
    position: relative;
  padding-bottom: 1rem;
}

.sidebar .sidebar-collapse,
.sidebar .search,
.sidebar .filter{
  background-color: #f9f9f9; 
}

.sidebar .search input {
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 36px;
    width: 96%;
    margin: auto;
    display: flex;
    padding-left: 35px;
    padding-right: 0.5rem;
}

body.ltr-direction .sidebar .search input {
    padding-left: 0.5rem;
    padding-right: 35px;
    direction: ltr;
}

.sidebar .search:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: url(../img/search.svg) no-repeat;
    background-size: contain;
    left: 15px;
    top: 10px;
}

body.ltr-direction .sidebar .search:after {
    left: auto;
    right: 15px;
}

.sidebar .marker-list {
  padding-top: 0.7rem;
    max-height: 100%;
    overflow: auto;
}

.sidebar h3 {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.5rem 1.4rem 0 0.7rem;
    margin: 0;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: start;
  position: relative;
}

.sidebar h3:before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--color-active);
    margin-left: 0.3rem;
    margin-top: 0.4rem;
  position: absolute;
  top: 7px;
  right: 10px;

}

body.ltr-direction .sidebar h3:before {
    margin-left: 0;
    margin-right: 0.3rem;
  right: auto;
  left: 10px;
}

.sidebar h3:last-child {
    margin-bottom: 3rem;
}

body.ltr-direction .sidebar h3 {
    text-align: left;
    direction: ltr;
    font-family: var(--font-family-en);
  padding: 0.5rem 0.7rem 0 1.4rem;
}

.sidebar .title-marker.active {
    color: var(--color-active);
    padding-right: 1.5rem;
    transition: 0.5s;
}

body.ltr-direction .sidebar .title-marker.active {
    padding-right: auto;
    padding-left: 1.5rem;
}

/*#endregion sidebar */

/*#region map */
main .map {
    height: calc(100vh - 108px);
    border: 1px solid #AAA;
}

.leaflet-popup {
    min-width: 320px;
    margin-left: -1.7rem;
}

.leaflet-popup-content {
    color: #333;
    font-size: 0.75rem;
}

body.rtl-direction .leaflet-popup-content {
    direction: rtl;
    text-align: right;
    font-family: var(--font-family-fa);
    font-weight: normal;
}

.leaflet-popup-content span {
    font-weight: bold;
}

main .leaflet-container {
    font-family: var(--font-family-fa);
}

main .leaflet-container a {
    color: #2a3a7a;
    font-weight: bold;
}

.nmp-marker-icon {
    padding: 0.4rem;
    border: 1px solid #009688;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    width: 15px !important;
    height: 15px !important;
    display: flex;
    z-index: 2;
    justify-content: center;
    align-items: center;
}

.leaflet-container .leaflet-marker-pane img {
    object-fit: contain;
    /* max-width: 92% !important;
    max-height: 92% !important; */
    width: 80%;
}



main .map[data-zoom='zoomout'] .leaflet-marker-pane {
    justify-content: center;
    align-items: center;
}

.mapbox-marker-icon {
    object-fit: contain;

}

main .map[data-zoom='4'] .leaflet-marker-pane img,
main .map[data-zoom='5'] .leaflet-marker-pane img,
main .map[data-zoom='6'] .leaflet-marker-pane img,
main .map[data-zoom='7'] .leaflet-marker-pane img,
main .map[data-zoom='8'] .leaflet-marker-pane img,
main .map[data-zoom='9'] .leaflet-marker-pane img,
main .map[data-zoom='zoomout'] .leaflet-marker-pane img {
    object-fit: contain;
    width: 20px;
}

main .map[data-zoom='zoomin'] .leaflet-marker-pane .nmp-marker-icon,
main .map[data-zoom='16'] .leaflet-marker-pane .nmp-marker-icon {
    width: 50px !important;
    height: 50px !important;
}

main .map[data-zoom='15'] .leaflet-marker-pane .nmp-marker-icon {
    width: 46px !important;
    height: 46px !important;
}

main .map[data-zoom='14'] .leaflet-marker-pane .nmp-marker-icon {
    width: 42px !important;
    height: 42px !important;
}

main .map[data-zoom='13'] .leaflet-marker-pane .nmp-marker-icon {
    width: 38px !important;
    height: 38px !important;
}

main .map[data-zoom='12'] .leaflet-marker-pane .nmp-marker-icon {
    width: 35px !important;
    height: 35px !important;
}

main .map[data-zoom='11'] .leaflet-marker-pane .nmp-marker-icon {
    width: 32px !important;
    height: 32px !important;
}

main .map[data-zoom='10'] .leaflet-marker-pane .nmp-marker-icon {
    width: 29px !important;
    height: 29px !important;
}

main .map[data-zoom='9'] .leaflet-marker-pane .nmp-marker-icon {
    width: 26px !important;
    height: 26px !important;
}

main .map[data-zoom='8'] .leaflet-marker-pane .nmp-marker-icon {
    width: 23px !important;
    height: 23px !important;
}

main .map[data-zoom='7'] .leaflet-marker-pane .nmp-marker-icon {
    width: 20px !important;
    height: 20px !important;
}

main .map[data-zoom='6'] .leaflet-marker-pane .nmp-marker-icon {
    width: 17px !important;
    height: 17px !important;
}

.nmp-marker-icon:has(.active) {
    z-index: 9999 !important;
}

body.ltr-direction .leaflet-top.leaflet-left {
    left: auto;
    right: 10px;
}

.google-map-link {
    display: flex;
    align-items: center;
}

.google-map-link::before {
    content: "";
    background: url(../img/pin.svg) no-repeat;
    background-size: 14px 14px;
    width: 11px;
    height: 18px;
    margin: 0 0 0 0.3rem;
    margin-top: 2px;
}

body.ltr-direction .google-map-link::before {
    margin: 0 0.3rem 0 0;
}

.id {
    display: flex;
}

.share {
    position: relative;
}

.share .share-icon {
    display: block;
    width: 20px;
    height: 20px;
    background: url(../img/share.svg) no-repeat;
    background-size: contain !important;
    cursor: pointer;
}

.share .share-icon+.social-share {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    position: absolute;
    top: 0;
    right: 30px;
    margin: 0;
}

body.ltr-direction .share .share-icon+.social-share {
    right: auto;
    left: 30px;
}

.share .share-icon+.social-share.show {
    opacity: 1;
    visibility: visible;
    transition: 0.3s;
}

.share ul {
    display: flex;
    padding: 0 !important;
}

.share li {
    list-style: none;
    padding: 0 0.3rem !important;
}

.share i[class*='icon-'] {
    display: block;
    width: 20px;
    height: 20px;
    background-size: contain !important;

}

.share i.icon-telegram {
    background: url(../img/telegram.svg) no-repeat;
}

.share i.icon-whatsapp {
    background: url(../img/whatsapp.svg) no-repeat;
}

.share i.icon-x {
    background: url(../img/x.png) no-repeat;
}

.image-marker {
    display: flex;
    flex-wrap: wrap;
}

.image-marker img {
    cursor: pointer;
    width: 55px;
    height: 55px;
    margin-left: 0.3rem;
    margin-top: 0.3rem;
    object-fit: contain;
    border: 1px solid #dbd8d8;
    border-radius: 7px;
    padding: 2px;
}

body.ltr-direction .image-marker img {
    margin-left: 0;
    margin-right: 0.3rem;
}

/* ---- Modal Styles ---- */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 100px;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    text-align: center;
    position: relative;
}

#modalImage {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
    padding-top: 1rem;
}

.close-button {
    color: #e20613;
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    background: none;
    line-height: 1;
}

body.ltr-direction .close-button {
    left: auto;
    right: 20px;
}

.filter-head .close-button {
    right: auto;
    left: 12px;
    top: 4px;
    color: white;
    font-weight: 300;
}

body.ltr-direction .filter-head .close-button {
    left: auto;
    right: 12px;
}

.close-button:hover,
.close-button:focus {
    color: #333;
    text-decoration: none;
}

.filter-head .close-button:hover,
.filter-head .close-button:focus {
    color: var(--color-second);
}

/*#endregion map */

/*#region cimes_archive*/

.crime-box {
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: 0fr 1fr;
  background: white;
  border-radius: 10px;
  box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 10%);
}

.crime-box:hover {
  background: #ededed;
  transition: 0.3s;
}

.crime-box .crime-image {
  width: 225px;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
}

.crime-box .crime-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crime-box .crime-content {
  padding: 0.5rem 1rem 0;
}

.crime-box .crime-content .crime-title,
.crime-box .crime-content .description-crimes {
  width: 100%;
  margin: 0;
}

.crime-box .crime-content .crime-title {
  display: grid;
  grid-template-columns: 1fr 0fr;
  margin-bottom: 0.4rem;
}

.crime-box .crime-content .crime-title h3 {
  margin: 0;
  text-overflow: ellipsis;
    display: -webkit-box;
  -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  overflow: hidden;
  height: 30px;
}

.crime-box .crime-content .crime-title h3,
.crime-box .crime-content .crime-title h3 a {
  color: black;
  font-size: 1.05rem;
}

.crime-box .crime-content .crime-title h3:hover,
.crime-box .crime-content .crime-title h3 a:hover {
  color: var(--color-main);
  font-size: 1.05rem;
}

.crime-box .crime-content .crime-title .crime-date {
  width: max-content;
  font-size: 0.8rem;
  color: #4e4e4e;
  padding-right: 0.5rem;
}

.crime-box .crime-content p {
  text-overflow: ellipsis;
  display: -webkit-box;
    -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
    overflow: hidden;
  height: 90px;
  font-size: 0.93rem
}

/*#endregion cimes_archive*/

/*#region cimes_content*/
.wrap-mohtava .content-box .content-title h1 {
  margin: 0 0 1rem 0;
  font-size: 1.13rem;
    color: var(--color-main);
}

.wrap-mohtava .content-box .content-date {
  font-size: 0.87rem;
  color: #4e4e4e;
  padding-right: 0.5rem;
  display: flex;
  justify-content: flex-end;
}

.wrap-mohtava .content-box img {
  width: 75%;
  border-radius: 10px;
  display: flex;
  margin: 0 auto 1rem;
  object-fit: cover;
}

.wrap-mohtava .content-box p {
  margin: 0 0 1rem;
}

.wrap-mohtava a.more {
  margin-right: auto;
  cursor: pointer;
  background: #c1c0c0;
  padding: 0.3rem 0.5rem;
  border-radius: 5px;
  display: block;
  width: 55px;
  text-align: center;
  color: var(--color-active);
  font-weight: bold;
  font-size: 0.9rem;
}

body.ltr-direction .wrap-mohtava a.more {
  margin-right: 0;
  margin-left: auto;
}

.wrap-mohtava a.more:hover {
  color: var(--color-active);
  transition: 0.3s;
}

/*#endregion cimes_content*/

/*#region pagination */
.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    direction: rtl;
}

body.ltr-direction .pagination {
    direction: ltr;
}

.pagination button {
    background-color: #eee;
  border: 1px solid #d9d9d9;
  color: var(--color-main);
  padding: 0.3rem 0.7rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 4px 2px;
    cursor: pointer !important;
    border-radius: 5px;
    font-family: var(--font-family-fa);
}

.pagination button:disabled {
    color: #ccc;
    cursor: not-allowed;
}

.pageNumbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  margin: 0 0.5rem;
}

.pageNumbers span {
  padding: 0 0.3rem;
    margin: 5px;
    min-width: 20px;
    text-align: center;
    cursor: pointer;
    border-radius: 3px;
  border: 1px solid #d9d9d9;
    background: #eee;
    cursor: pointer !important;
  font-size: 0.9rem;
}

body.ltr-direction .pageNumbers span {
    font-family: var(--font-family-en);
}

.pageNumbers span:hover,
.pageNumbers span.active {
    color: var(--color-active);
  background: white;
  transition: 0.3s;
}

/*#endregion pagination */

/*#region losses */
.section-part.losses img {
    width: 75%;
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: auto;
    margin-bottom: 1rem;
    border-radius: 10px;
}

/*#endregion losses */

/*#region about  */
.wrap-inner.wrap-about .about .title,
.wrap-inner.wrap-about .about .content {
    display: none;
}

.wrap-inner.wrap-about .about .title.active,
.wrap-inner.wrap-about .about .content.active {
    display: block;
}

/*#endregion about  */

/*#region footer */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9999;
}

footer .page-link {
    display: none;
    justify-content: center;
    align-items: center;
    background: white;
    height: 35px;
    box-shadow: 0px -5px 10px -6px rgb(0 0 0 / 13%);
}

footer .copyright {
    text-align: center !important;
  font-size: 0.75rem;
  padding: 0.3rem;
  background: rgba(197, 197, 197,1);
  color: black;
    font-weight: bold;
  border: 1px solid #c3c3c3;
}

body.ltr-direction footer .copyright {
    font-family: var(--font-family-en);
    font-size: 0.9rem;
    font-weight: 700;
    direction: ltr;
    text-align: left;
    min-width: 250px;
}

/*#endregion footer */

/*#region responive */
@media (max-width:1399px) {

  .wrap-mohtava .content-box img {
    width: 90%;
  }
}

@media (max-width:1022px) {

    header .header-top .logo h2,
    .page-link a {
    font-size: 0.93rem;
    }

    header .header-top .logo img {
    margin: 0 0.3rem 0 0;
  }

  body.ltr-direction header .header-top .logo img {
    margin: 0 0 0 0.3rem;
    }

    header .header-top .select-language {
        padding: 0 0.3rem;
    }

    .page-link a {
        padding: 0 0.3rem;
    }
}

@media (max-width:991px) {

    header .header-top .select-language label {
        font-size: 0.8rem;
        padding: 0.3rem;
    }

    header .header-top .logo h2,
    .page-link a {
    font-size: 0.87rem;
    }

    .page-link a {
        padding: 0 0.2rem;
    }

    .section-part:not(.map) .content,
    .pagination {
        width: 80%;
        font-size: 0.9rem;
    }

  .wrap-mohtava a.more {
    font-size: 0.84rem;
    padding: 0.1rem 0.3rem;
  }

  .wrap-mohtava .content-box img {
    width: 100%;
  }

}

@media (max-width:767px) {
    header .header-top {
        flex-wrap: wrap;
    }

    header .header-top .logo img {
        margin-left: 0;
        width: 60px;
    }

    header .header-top .select-language {
        height: auto;
        margin: 0 auto;
        padding: 0;
    }

    .modal-content {
        margin: 5% 45px 5% 0;
    }

    body.ltr-direction .modal-content {
        margin: 5% 0 5% 45px;
    }

    .section-part:not(.map) .content,
    .pagination {
        width: 90%;
    }

    .section-part:not(.map) .title {
        font-size: 1.4rem;
    }

    footer .page-link {
        display: flex;
    }

    header .page-link {
        display: none;
    }

    footer .copyright {
        background: white;
    }

    .sidebar.collapsed {
        right: -210px;
        left: auto;
    }

    body.ltr-direction .sidebar.collapsed {
        right: auto;
        left: -210px;
    }

    .filter-box {
        width: 350px;
    }

    .section-part:not(.map) .content,
    .pagination {
        width: 90%;
    }

    .section-part:not(.map) .title {
        font-size: 1.4rem;
    }

    footer .copyright {
        background: white;
    font-size: 0.7rem !important;
    border: 1px solid #eee;
    }

}

@media (max-width:575px) {
    .section-part {
        height: auto;
    }

    .section-part:not(.map) .content,
    .pagination {
        width: 95%;
        font-size: 0.8rem;
    }

  .section-part:not(.map) {
    padding-top: 2rem;
    }

    .page-link {
        margin: 0 auto;
    }

    .section-part.losses img {
        width: 100%;
    }

  .crime-box {
    margin-bottom: 1rem;
    grid-template-columns: auto;
  }

  .crime-box .crime-image {
    width: 100%;
    height: 280px;
  }

  .crime-box .crime-content {
    padding: 0.5rem 0.3rem;
  }

  .section-part:not(.map) {
    padding-bottom: 2rem;
  }

  .crime-box .crime-content .crime-title {
    padding: 0;
    margin: 0.5rem 0;
  }

  .wrap-mohtava .content-box p {
    font-size: 0.87rem;
  }
}

@media (max-width:425px) {
    .filter-box {
        width: 300px;
    }

    .filter-box .date-box {
        width: 47%;
    }

    header .header-top .logo img {
        width: 45px;
    }

    header .header-top .logo h2 {
        font-size: 0.7rem;
    }

    header .header-top .select-language label {
        font-size: 0.7rem;
        padding: 0.2rem 0.1rem;
  }

  .wrap-mohtava a.more {
    font-size: 0.8rem;
    padding: 0 0.2rem;
  }

  .crime-box .crime-image {
    width: 100%;
    height: 200px;
    }
}

@media (max-width:375px) {

  header .header-top .logo h2,
  header .header-top .select-language label {
    font-size: 0.65rem;
  }

  body.ltr-direction header .header-top .select-language label {
    padding: 0.2rem 0;
  }

  body.ltr-direction header .header-top .logo h2 {
    font-size: 0.6rem;
  }

  body.ltr-direction header .header-top .logo img {
    margin: 0;
    width: 40px;

  }

    .page-link a,
    .footer .copyright {
    font-size: 0.85rem;
    }

    .filter-box {
        width: 270px;
    }

}

/*#endregion responive */