@font-face {
    font-family: sahel;
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/Sahel-Light.woff') format('woff');
}

@font-face {
    font-family: sahel;
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Sahel.woff') format('woff');
}

@font-face {
    font-family: sahel;
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/Sahel-Bold.woff') format('woff');
}

@font-face {
    font-family: sahel;
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/Sahel-Black.woff') format('woff');
}

html,
body,
.mapContainer {
    padding: 0;
    margin: 0;
    direction: rtl;
    text-align: right;
}

* {
    font-family: sahel;
    scrollbar-width: thin;
}

*:focus {
    outline: none;
}

.mapContainer {
    width: 100%;
    height: 100%;
}
.main {
    position: relative;
    width: 600px;
    height: 400px;
    overflow: hidden;
    margin: 3% auto;
    box-shadow: 0 0 7px -3px #000;
    border: 1px solid #000;
    border-radius: 10px;
}
#map {
    width: 600px;
    height: 400px;
    box-shadow: 0 0 4px -1px #000000cc;
    border: 1px solid #ffffffcc;
    overflow: hidden;

}

.head {
    width: 50%;
    position: absolute;
    top: 15px;
    z-index: 999;
    right: 6px;
}

.head #search {
    float: right;
    text-align: right;
    border: 1px solid #d8d6d2;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 400;
    line-height: 3px;
    padding: 5px 10px;
    direction: rtl;
    font-family: sahel;
    opacity: 0.9;
    outline: 0;
    width: 100%;
    box-sizing: border-box;
}


/* Modal Overlay Styles */

.modal-overlay {
    position: fixed;
    z-index: 999;
    background: rgba(0, 0, 0, 0.7);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.modal-overlay .modal {
    width: 50%;
    background: #fff;
    padding: 20px;
    border-radius: 7px;
    margin-top: -100px;
    position: relative;
}

.modal-overlay .modal .close {
    position: absolute;
    top: 7px;
    left: 15px;
    color: #a90909;
    font-size: 20px;
    cursor: pointer;
}

.modal-overlay .modal h3.modal-title {
    padding: 0;
    margin: 0 0 30px 0;
}

.modal-overlay .modal h3.modal-content {}

.field-row {
    margin: 10px 0;
}

.field-row::after {
    content: ' ';
    display: block;
    clear: both;
    width: 100%;
}

.field-row div.field-title {
    width: 20%;
    float: right;
}

.field-row div.field-content {
    width: 80%;
    float: right;
}

.field-row textarea,
.field-row select,
.field-row input {
    line-height: 36px;
    padding: 0 10px;
    border-radius: 5px;
    border: 1px solid #e7e7e7;
    font-size: 16px;
    font-weight: 400;
    width: 97%;
}

input[type="submit"] {
    background: #007bec;
    color: #fff;
    cursor: pointer;
}

input[type="submit"]:hover {
    opacity: 0.7;
}


/* Search Box new */

.clear {
    clear: both;
}

.search-results {
    margin: -3px 50px 0 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 12px;
    border-radius: 0 0 10px 10px;
    border: 1px solid #d9d7d4;
}

.result-item {
    padding: 10px 5px;
    border-bottom: 0px solid #f2f2f2;
    max-width: 400px;
}

.result-item:hover {
    background: #f2f2f2;
    cursor: pointer;
}

.result-item span,
.result-item a {
    display: inline-block;
}

.result-item span.loc-type {
    background: #149999;
    color: #fff;
    padding: 0px 7px 2px 7px;
    border-radius: 3px;
    font-size: 13px;
}

.result-item span.loc-title {
    font-size: 15px;
}

img.currentLoc {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    width: 32px;
    background: rgba(242, 209, 99, 0.8);
    padding: 7px;
    border-radius: 30px;
    box-shadow: 1px 2px 13px #777;
}

img.currentLoc:hover {
    cursor: pointer;
    opacity: 0.7;
}
.body {
    width: 100%;
    height: 300px;
    background: #fff;
    padding: 10px;
    box-sizing: border-box;
    overflow-y: scroll;
    display: none;
}
.body p {
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
}
.body p span {
    font-weight: 400;
    color: #919191;
    font-size: 15px;
}
.leaflet-popup-content {
    text-align: right;
}
