/* Default css reset */
html,
body,
div,
section,
article,
aside,
header,
hgroup,
footer,
nav,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
address,
time,
span,
em,
strong,
img,
ol,
ul,
li,
figure,
canvas,
video,
th,
td,
tr {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    font: inherit;
}

/* Zooming out */
.sideBarContainer,
article {
    /* -moz-transform: scale(0.9, 0.9);
    zoom: 0.9; 
    zoom: 90%;  */
}

.sideBarContainer {
    margin-top: 0;
}

/* Color scheme */
:root {
    --primaryColor: #FF7555;
    --primaryHoverColor: #EE5D3B;
    --bgColor: #424242;
    --borderColor: #707070;
    --headColor: #AA5E4C;
    --engageColor: #4D4D4D;
    --fullMissionColor: #4F4F4F;
    --charityColor: #8DBE36;
    --cleaningColor: #13A8FF;
    --artisticColor: #981758;
    --cookingColor: #983A17;
    --gardenColor: #175F08;
    --specialOfferColor: #E1AC00;
    --jobAdvertiseColor: #043276;
    --personalAdvertiseColor: #E6E3BF;
}

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

/******* Styling scrollbars ******/
/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--bgColor);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--borderColor);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--primaryColor);
}

/* ***************************** */
.slogan {
    font-family: 'Dancing Script', cursive;
    font-size: 1rem;
    padding-bottom: 0.4em;
}

.link {
    text-decoration: underline;
    cursor: pointer;
}

.divider {
    border-top: 1px solid var(--borderColor);
}

.mobileNav {
    display: none;
}

body {
    background: #272727;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

textarea,
input {
    font-family: Poppins, sans-serif;
}

a {
    text-decoration: none;
    color: #fff;
}

.active {
    border-bottom: 1px solid #CBC473;
}

.cancelMsg {
    background: var(--primaryColor);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.25em 0.5em;
    margin-top: 1em;
    box-shadow: 0px 0px 5px 0px #666;
    cursor: pointer;
    outline: none;
}

.cancelMsg:hover {
    background: var(--primaryHoverColor);
}

.cancelMsg:focus {
    box-shadow: none;
}

.confirmMsg {
    color: #7D7D7D;
    border: none;
    border-radius: 10px;
    padding: 0.25em 0.5em;
    box-shadow: 0px 0px 5px 0px #777;
    cursor: pointer;
    outline: none;
}

.confirmMsg:hover {
    background: var(--primaryColor);
    color: #fff;
}

.confirmMsg:focus {
    box-shadow: none;
}

.payBtn,
.confirmInstBtn {
    background: var(--primaryColor);
    color: #fff;
}

.payBtn:hover,
.confirmInstBtn:hover {
    background: var(--primaryHoverColor);
}

.cancelBtn {
    background: #EFEFEF;
    color: #7D7D7D;
}

.cancelBtn:hover {
    background: var(--primaryColor);
    color: #fff;
}

.confirmInstBtn {
    display: block;
    margin: auto;
}

.powerIcon {
    width: 20px;
}

.notificationDiv {
    display: flex;
    place-content: space-evenly;
    width: 25%;
}

.notificationDiv .bell img,
.notificationDiv .diamond img {
    height: 25px;
}

.activeSection {
    color: #CBC473;
}

.activeSection:hover {
    border-bottom: 1px solid #CBC473;
}

.inactiveSection {
    color: #989898;
    font-size: 0.75rem;
}

.soon {
    position: absolute;
    top: 0;
    margin-top: -11px;
    margin-left: -13px;
}

.soonNotification {
    position: relative;
    top: 5px;
    left: 25px;
}

.mobileSoon {
    margin-top: -26px;
    margin-left: -10px;
}

textarea {
    resize: vertical;
    outline: none;
}

.msgBox textarea {
    width: 100%;
    height: 8em;
    background: var(--bgColor);
    color: #fff;
    padding: 0.5em;
    margin-top: 0.5em;
    border-right: none;
    border-left: none;
}

input {
    outline: none;
}

/******* Post a mission *******/
.container {
    position: absolute;
    top: 150px;
    width: 100%;
}

.alert-danger {
    color: red;
    text-align: center;
}

.postMission {
    max-width: 45%;
    margin: 0em auto;
}

.missionCategories {
    display: flex;
    justify-content: space-around;
    background: var(--bgColor);
    border-radius: 5px 5px 0 0;
    box-shadow: inset 0px 0px 5px #272727;
    padding: 0.5em;
    cursor: pointer;
    font-size: 13px;
}

.dropDown {
    background: var(--bgColor);
    color: #fff;
    color: #fff;
    border: none;
    outline: none;
}

.postForm {
    display: flex;
    flex-direction: column;
}

.postForm textarea {
    width: 100%;
    height: 7em;
    background: var(--bgColor);
    border: none;
    color: #fff;
    padding: 1em;
    font-size: 13px;
}

#clickForNew {
    width: 100%;
    height: 12em;
    background: var(--bgColor);
    border: none;
    color: #fff;
    padding: 1em;
}

.postFormBtn {
    width: 6em;
    padding: 0.5em;
    background: var(--primaryColor);
    color: #fff;
    font-weight: bold;
    border: 0;
    border-radius: 25px;
    align-self: flex-end;
    margin: 0px 20px 0 0;
    z-index: 2;
    cursor: pointer;
}

/******* Post a mission lightbox *******/
.multimediaBtn,
.multimediaBtnEdit {
    width: 100px;
    margin: 10px 10px 0 auto;
    padding: 0.5em 1em;
    border: none;
    border-radius: 20px;
    background: var(--borderColor);
    color: #fff;
    cursor: pointer;
    font-size: 0.8rem;
    text-align: center;
}

.multimediaBtn:hover,
.multimediaBtnProfile:hover,
.multimediaBtnEdit:hover {
    background: #7D7D7D;
}

.multimediaBtnProfile {
    width: 100px;
    padding: 0.5em 1em;
    border: none;
    border-radius: 20px;
    background: var(--borderColor);
    color: #fff;
    cursor: pointer;
    font-size: 0.8rem;
    text-align: center;
}

#customText {
    font-size: 0.75rem;
    text-align: center;
    margin-right: 20px;
}

.postMissionContainer {
    background: var(--bgColor);
    max-width: 1000px;
}

.textInputs {
    display: flex;
    flex-wrap: wrap;
    padding: 1em;
    justify-content: flex-start;
    font-size: 13px;
}

.textInputs label {
    color: var(--primaryColor);
}

.inputItem {
    margin: 1em;
}

.address {
    width: 100%;
}

.address .textInput {
    width: 100%;
}

.dateInput,
.timeInput,
.numberInput,
.textInput {
    outline: none;
    background: var(--bgColor);
    border: none;
    color: #fff;
    border-bottom: 1px solid var(--borderColor);
}

.numberInput {
    width: 6em;
}

/* Optional section in the post mission lightbox window */
.optionalTitle {
    text-align: center;
    background: var(--bgColor);
    width: 6em;
    margin: -1em auto 0 auto;

}

.optionalOptions {
    padding: 1em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 13px;
}

.optionalOptions input {
    margin: 0.5em;
}

.optionalTextInput {
    background: var(--borderColor);
    color: #fff;
    border: 0;
    border-radius: 50px;
    padding: 0.7em;
    outline: none;
}

.optionalTextInput::placeholder {
    color: #fff;
    border-bottom: 1px solid #fff;
}

/* For Internet Explorer 10-11 */
.optionalTextInput:-ms-input-placeholder {
    color: #fff;
}

/* For Microsoft Edge */
.optionalTextInput::-ms-input-placeholder {
    color: #fff;
}

/* Total, Payment methods, and Post button section */
.totalLightBox {
    display: flex;
    justify-content: space-between;
    background: #333;
    padding-left: 0.5em;
    font-size: 0.8rem;
}

.totalLightBox h4 {
    color: var(--primaryColor);
}

.totalCost {
    display: flex;
    flex-wrap: wrap;
}

#radioGroup1 {
    border: none;
}

.paymentMethod,
.totalCost {
    margin: 0.5em 0;
}

.paymentMethod {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.missionShare {
    display: flex;
    cursor: pointer;
    padding: 0.5em;
    align-items: center;
    font-size: 12px;
}

.missionReply {
    align-items: center;
    display: flex;
    padding: 0.5em 0 0.5em 1.5em;
    font-size: 12px;
}

.totalLightBox button {
    background: var(--primaryColor);
    color: #fff;
    border: none;
    width: 8em;
    height: 2em;
}

.totalLightBox button:hover {
    background: var(--primaryHoverColor);
    cursor: pointer;
}

#element_to_pop_up,
#postEditInputs,
#postEditInputsSpecial {
    display: none;
}

/******* All Missions **************/
.allMissions {
    width: 100%;
    max-width: 600px;
    margin: auto;
    padding: 0.25em 0.5em;
    display: flex;
    justify-content: space-between;
    background: var(--headColor);
    border-radius: 3px;
}

/* Mission Box */
.missionBox {
    width: 45%;
    margin: 1em auto;
    background: var(--bgColor);
    border-radius: 30px 3px 20px 3px;
    position: relative;
}

.missionBoxSingle {
    width: 100%;
    max-width: 600px;
    margin: 1em auto;
    background: var(--bgColor);
    border-radius: 30px 3px 20px 3px;
    position: relative;
    border: 1px dashed #cbc473;
}

.missionHeader {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.4em 0.5em;
    border-radius: 30px 3px 0 0;
    color: #E1AC00;
    font-size: 13px;
}

.missionHeader i {
    color: #fff;
    cursor: pointer;
}

.missionHeaderItem {
    display: flex;
}

.missionHeaderItem h4 {
    margin-left: 0.5em;
}

.missionPicAndName {
    background: var(--bgColor);
    padding: 1em;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
}

.missionUserPic {
    width: 5em;
    border-radius: 50px;
}

.missionUserName {
    display: flex;
    flex-direction: column;
    width: 70%;
}

.missionUserName h2 {
    font-size: 14px;
}

.countryAndStatus {
    display: flex;
    justify-content: space-between;
    width: 10em;
}

.country {
    padding-right: 1em;
}

.postStatus,
.globe {
    padding: 0 1em;
    font-size: 12px;
}

.country,
.globe {
    border-right: 1px solid var(--borderColor);
    font-size: 12px;
}

.missionP {
    width: 95%;
    padding: 1em;
    border-top: 1px solid var(--borderColor);
    margin: auto;
    font-weight: 100;
    font-size: 16px;
    text-align: justify;
    color: #f3f3f3;
}

.missionEngageBtns {
    background: var(--engageColor);
    font-size: 0.9rem;
    /* padding: 0.5em; */
    border-radius: 0 0 20px 0;
}

.missionEngageTriggers {
    display: flex;
    justify-content: space-around;
}

.missionEngageBtn {
    display: flex;
    cursor: pointer;
    font-size: 12px;
    margin: auto;
}

.missionEngageBtn:nth-of-type(2) {
    border-right: 1px solid var(--borderColor);
    border-left: 1px solid var(--borderColor);
}

.missionEngageBtn img,
.missionShare img {
    margin-right: 0.5em;
    width: 20px !important;
}

/* Mission box settings menu */
.missionBoxSettings {
    font-family: 'Poppins', sans-serif;
    background: var(--fullMissionColor);
    position: absolute;
    right: 15px;
    font-size: 0.7rem;
    padding: 1em;
    border: 1px solid var(--borderColor);
    width: 60%;
    max-width: 400px;
    border-radius: 0 0 20px 20px;
    color: #fff;
    font-weight: 100;
}

.missionBoxSettings ul {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.missionBoxSettingsItem {
    display: flex;
    padding: 0.5em;
    border-bottom: 1px solid var(--borderColor);
    cursor: pointer;
}

.missionBoxSettingsItem:hover {
    background: var(--primaryColor);
}

.missionBoxSettingsItem:nth-last-of-type(1) {
    border: none;
    border-radius: 0 0 10px 10px;
}

.missionBoxSettingsItem p {
    padding-left: 0.5em;
}

.mission-location {
    padding: var(--ct-padding);
    border-radius: var(--ct-border-radius);
    border: none;
    width: 14.4em em;
    box-sizing: border-box;
    padding-right: 24px;
    background: var(--ct-border-color);
    color: #fff;
    font-size: 1em;
}

.MessengerBtn {
    padding: 0.5em !important;
    border-radius: 25px !important;
}

.anonymousMask {
    display: flex;
    background-color: #815a49;
    width: 140px;
    padding: 3px;
    margin: 6px 0;
    border-radius: 15px;
    justify-content: space-evenly;
    font-size: 12px;
}

.anonymousMask img {
    height: 20px;
}

.anonymousMaskComments {
    display: flex;
    background-color: #815a49;
    width: 120px;
    padding: 0.2em;
    border-radius: 10px;
    height: fit-content;
}

.anonymousMaskReplays {
    display: flex;
    background-color: #815a49;
    width: 120px;
    padding: 0.2em;
    border-radius: 13px;
    margin-left: 2%;
}

.profileNameA {
    display: flex;
}

.notiDivItemsContainer:hover {
    background-color: #4d4d4d;
}

.emergencyBtn {
    display: flex;
    cursor: pointer;
    padding: 0.5em;
    align-items: center;
    font-size: 12px;
}

.userSelected {
    display: flex;
    color: #00d500;
    width: fit-content;
    padding: 5px;
}

.userSelected i {
    font-size: 1.5em;
    margin: 0 10px;
}

.userSelectedImg {
    width: 80px;
}

.userSelectedImg:hover {
    position: absolute;
    width: 80vw !important;
    height: auto;
    display: block;
    z-index: 999;
    left: 5%;
}

.PaymentMethodDiv p {
    font-size: 13px;
    font-weight: normal;
    color: #ccc;
    text-align: justify;
}

/******* Ads column *******/
.ads {
    order: 2;
    width: 25.5%;
    margin: 0em 0.5em 0 0;
    position: fixed;
    right: 0;
    z-index: 2;
}

.ad {
    width: 100%;
    height: 12.5em;
    margin-bottom: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.ad-alex-logo {
    width: 100%;
    height: 5em;
    margin-bottom: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #dcdcdc;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Share buttons */
.shareBtns {
    background: #2C2C2C;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shareBtns img {
    width: 50px;
    cursor: pointer;
    margin: 0 0.5em;
}

/* **************** */

/* Ratethe employer dialog box */
.rate {
    background: var(--borderColor);
    padding: 0.25em 0.5em;
    border-radius: 5px;
    margin-right: 0.5em;
}

.rateAndBonus {
    display: flex;
}

.rateAndBonus h4 {
    margin-right: 1em;
}

.experiencePicAndName {
    display: flex;
}

/* .experiencePicAndName img{
    width: 100px;
    border-radius: 100px;
} */
.experienceUserName {
    margin-left: 1em;
}

.progressBarLabel {
    position: absolute;
    top: 20%;
    left: 45%;
}

.ratePercentage {
    display: flex;
    align-items: center;
    margin: 1em auto;
}

.ratePercentage h4 {
    width: 7rem;
}

.rateItem {
    margin-right: 1em;
}

.rateItem:last-child {
    margin: 0;
}

.progressBtn {
    background: var(--borderColor);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 0.5em;
}

.progressBarContainer {
    width: 50%;
    height: 1.8em;
    background: var(--borderColor);
    border-radius: 5px;
}

.progressItem {
    width: 0px;
    height: 1.8em;
    border-radius: 5px;
    text-align: center;
}

#qualityRateprogress {
    background: #60A324;
}

#behaviorRateprogress {
    background: #B8802B;
}

#timeRateprogress {
    background: #A29E2A;
}

/* Select menus */
.expSelectMenu {
    background: var(--borderColor);
    color: #fff;
    border-radius: 50px;
    padding: 0.25em;
    cursor: pointer;
    outline: none;
}

/* Top bar */
.topBar {
    background: var(--bgColor);
    padding: 1em 3em 0 3em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    right: 0;
    width: 100%;
    z-index: 9;
}

.veryTopBar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.earthIcon {
    width: 15px;
}

.mainNav ul {
    display: flex;
    align-items: center;
}

.mainNav li {
    list-style: none;
    margin: 0 0.75em;
    font-size: 14px;
}

.mainNav ul a {
    border-right: 1px solid #989898;
}

.mainNav ul a:last-child {
    border-right: none;
    border-left: 1px solid #989898;
}

.logo {
    text-align: center;
    font-style: italic;
}

.bars::before {
    display: none;
}

/* Notifications bar */
.notificationsBar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bgColor);
    border-top: 1px solid var(--borderColor);
    padding: 5px 0;
    flex-wrap: wrap;
}

.searchBarForm {
    display: flex;
    width: 25%;
}

.searchBar {
    padding: 0 0.75em;
    background: var(--borderColor);
    color: #fff;
    border: none;
    border-radius: 50px 0 0 50px;
    width: 100%;
}

.searchBar::placeholder {
    color: #d7d7d7;
}

.searchBtn {
    background: var(--primaryColor);
    border: none;
    border-radius: 0 50px 50px 0;
    width: 40px;
    height: 30px;
    background-image: url(../assets/search.svg);
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.searchBtn:hover {
    background: var(--primaryHoverColor);
    background-image: url(../assets/search.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.bubble {
    position: relative;
    top: 0px;
}

.friends {
    position: relative;
    top: -10px;
}

.picAndName {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 13em;
    margin: 0.2em 0;
    padding: 0.2em;
    background: #815A49;
    border-radius: 25px;
    font-size: 12px;
}

.soonPicAndName {
    display: flex;
    align-items: center;
    width: 210px;
    color: #a7a7a7;
}

.soonPicAndName .pic {
    opacity: 0.7;
}

.soonPicAndName .soonNotification {
    top: -13px;
}

.userName {
    display: flex;
    width: 11em;
    justify-content: space-around;
    margin: 0 0.2em;
}

.picAndName img,
.userName img {
    width: 20%;
    margin: 0 5px 0 0;
}

.notificationItem {
    cursor: pointer;
    position: relative;
}

.notiNumber {
    width: 20px;
    height: 20px;
    font-size: 0.9rem;
    background: var(--primaryColor);
    position: absolute;
    right: -15px;
    top: -5px;
    padding: 0.25em;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.notiNumberMessenger {
    width: 40px;
    height: 20px;
    font-size: 11px;
    background: var(--primaryColor);
    position: absolute;
    right: -23px;
    top: 8px;
    padding: 0.25em;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.speechBubble {
    /* opacity: .5; */
}

.optionalTextArea {
    width: auto !important;
    height: 4em !important;
    background: var(--bgColor);
    border: none;
    color: #fff;
    padding: 1em;
    font-size: 1em !important;
}

.attachBtn {
    width: 8em;
    padding: 0.75em;
    background: var(--borderColor);
    color: #fff;
    font-weight: bold;
    border: 0;
    border-radius: 20px;
    align-self: flex-end;
    margin: 10px 20px 0 0;
    cursor: pointer;
}

/* Notification dropdown */
.notiDiv {
    overflow-y: scroll;
    max-height: 400px;
    min-width: 400px;
    background: #6A6A6A;
    position: absolute;
    left: -1em;
    z-index: 1;
    border-radius: 10px;
    font-size: 12px;
}

.notiDivItemsContainer {
    display: flex;
    border-bottom: 1px solid var(--bgColor);
}

.notiDivItemsContainer:nth-last-child(1) {
    border: none;
}

.notiDivImg img {
    width: 100px;
}

.notiDivCol {
    margin: 0 5px;
}

.notiDivNumber {
    margin-left: 0;
    background: #6F6F6F;
    padding-right: 0.5em;
    text-align: center;
    border-radius: 10px 0 0 10px;
}

.notiDivNumber h5 {
    background: var(--primaryColor);
    padding: 5px 10px 5px 5px;
    clip-path: polygon(0 0, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
    margin: 10px 0;
}

.notiDivNumber p {
    color: var(--primaryColor);
}

.notiDivImg {
    display: flex;
    margin: 0.5em;
    width: 50px;
    height: 50px;
}

.notiDivImg img {
    border-radius: 20px 0;
    height: 100% !important;
}

.notiDivContent {
    width: 150px;
    margin-left: -5px;
    padding: 10px 5px;
}

.notiDivContentName {
    padding: 0 0 10px 10px;
    border-bottom: 1px solid var(--primaryColor);
}

.notiDivContentText {
    padding: 10px;
    color: #C9C9C9;
    font-size: 12px;
}

.notiDivTime {
    color: var(--primaryColor);
    padding: 10px 10px 0 0;
}

.notiDivTime img {
    width: 2em;
    display: block;
    margin: 1em auto;
}

/************ Side bar **************/
.sideBarContainer {
    height: 100%;
    position: fixed;
    z-index: 20;
    padding-bottom: 11rem;
}

.sideBar {
    padding: 0 0.5em;
    order: 0;
    z-index: 7;
    height: 100%;
    width: 84%;
}

.asideNotifications {
    background: #313131;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    position: relative;
    font-size: 0.87rem;
}

.notificationCategories {
    background: var(--bgColor);
    width: 30em;
    border-radius: 5px;
}

.newNotifications {
    order: 1;
    width: 53%;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    border-radius: 150px 0 0 150px;
    background: #313131;
}

.notificationsDiamond {
    width: 50px;
    align-self: center;
}

.notificationCategories ul {
    list-style: none;
    padding: 1em;
}

.notificationCategory {
    display: flex;
    padding: 0.25em 0;
}

.notificationCategory h4 {
    padding-left: 0.5em;
    color: var(--borderColor);
}

.newNotifications {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.notificationBadge {
    padding: 1em;
    background: var(--headColor);
    margin-right: 0.75em;
    border-radius: 0 25px 25px 0;
}

.notificationInner {
    border: 1px solid #fff;
    border-left: none;
    padding: 1em 0;
    display: flex;
    flex-direction: column;
}

.notificationsDiamond {
    margin-bottom: 0.5em;
}

.notificationsNumber {
    font-size: 0.8rem;
    display: flex;
}

.notificationsNumber p {
    margin-left: 0.3em;
}

.notificationsTime {
    font-size: 0.6rem;
    text-align: center;
}

.container {
    display: flex;
}

article {
    order: 1;
    margin: auto;
    min-width: 100%;
}

.sideSoon {
    position: absolute;
}

.lowOpacity {
    opacity: 0.5;
}

/******* Chat and messages section in the side bar ******/
.sideChat {
    position: relative;
    margin-top: 1em;
    background: var(--bgColor);
    color: var(--borderColor);
}

.sideChatSearch {
    display: flex;
    justify-content: space-between;
    padding: 0.5em;
    background: var(--headColor);
}

.chatSearch {
    padding: 0.5em;
    width: 20em;
    border-radius: 50px;
    border: none;
    outline: none;
    background: #c7c7c7;
}

.sideContactsHead {
    display: flex;
    justify-content: space-between;
    background: var(--headColor);
    margin-top: 0.1em;
    color: #C7C7C7;
}

.sideContactsHead h4 {
    padding: 0.25em 0.5em;
}

.sideContactsActive {
    background: var(--primaryColor);
}

.sideUser {
    display: flex;
    padding: 1em;
    align-items: center;
    border-bottom: 1px solid var(--borderColor);
    opacity: 0.5;
}

.sideUserPic {
    width: 2.5em;
    border-radius: 50px;
    margin-left: 0.5em;
}

.sideUserName {
    margin-left: 0.5em;
}

.onlineUser {
    width: 10px;
    height: 10px;
    background: green;
    border-radius: 50px;
    margin-left: auto;
}

.offlineUser {
    width: 10px;
    height: 10px;
    background: red;
    border-radius: 50px;
    margin-left: auto;
}

.sideMessagesHead {
    display: flex;
    justify-content: space-around;
    color: #C7C7C7;
    background: var(--headColor);
    padding: 0.25em 0;
}

.sideSubject {
    padding: 0 1em;
    color: #fff;
}

.sideEnvelope {
    margin-left: auto;
}

.sideBarReveal {
    position: absolute;
    top: 10px;
    left: -5px;
    z-index: 8;
    width: 2em;
    height: 2em;
    background: var(--primaryColor);
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

/* Comment */
.activeCommentBtn {
    color: var(--primaryColor);
}

.missionEngageBtns {
    position: relative;
}

.replyDivContainer {
    /* position: absolute;
    left: 0;
    top: 37px; */
    width: 100%;
    z-index: 5;
    background: var(--bgColor);
    border-radius: 0 20px 0 0;
}

.emergencyDivContainer {
    position: absolute;
    left: 0;
    top: 37px;
    width: 100%;
    z-index: 5;
    background: var(--bgColor);
    border-radius: 0 20px 0 0;
}

.replyDiv {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1em;
    background: #2c2c2c;
    border-radius: 0 20px 0 0;
}

.commentImg {
    width: 30px;
    height: 30px;
}

.commentBox {
    flex-grow: 1;
    margin: 0 0.4em;
    background: #1c1c1c;
    padding: 0 0.9em;
    border: none;
    /* border-radius: 50px; */
    color: #ccc;
    font-size: 14px;
}

.uploadMediaBtn {
    display: flex;
    align-items: center;
    font-size: 0.7rem;
    padding: 0.5em;
    background: #00FF66;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 400;
}

.uploadMediaBtn:hover {
    background: #00CC66;
}

.uploadMediaBtn img {
    width: 10px;
    margin-right: 5px;
}

.uploadReplayMediaBtn {
    display: flex;
    align-items: center;
    font-size: 0.7rem;
    padding: 0.5em;
    background: #00FF66;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 400;
    margin-top: 5px;
}

.uploadReplayMediaBtn:hover {
    background: #00CC66;
}

.uploadReplayMediaBtn img {
    width: 10px;
    margin-right: 5px;
}

/* Comment details */
.commentDetails {
    padding: 1em;
    display: flex;
    flex-wrap: wrap;
}

.commentDetailsUserPic {
    width: 60px;
    height: 60px;
    border-radius: 20px 0;
}

.commentDetailsUserName {
    margin-left: 10px;
    font-weight: 400;
}

.commentDetailsUserName h4 {
    padding-bottom: 5px;
    border-bottom: 1px solid var(--borderColor);
    font-size: 14px;
}

.commentDetailsUserName p {
    font-size: 12px;
}

.commentDetailsInsBtn {
    height: 30px;
    margin-left: auto;
    background: #D12D2D;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0 1em;
    cursor: pointer;
}

.commentDetailsInsBtn:hover {
    background: var(--primaryHoverColor);
}

.commentDetailsText {
    padding: 0 1em;
    font-size: 13px;
    font-weight: 400;
}

.commentDetailsText p {
    color: #aaa;
    border-bottom: 1px solid var(--borderColor);
    margin: 0.5em 0;
    text-align: left;
}

.commentDetailsPic {
    display: flex;
    flex-direction: column;
}

.commentDetailsSeen {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    color: #AF8600;
}

.commentDetailsDate {
    display: flex;
    justify-content: space-between
}

.commentDetailsOptions {
    padding: 1em;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--borderColor);
    font-size: 13px;
}

.commentDetailsOptions h5 {
    padding: 0.25em 0.75em;
    background: var(--borderColor);
    border-radius: 50px;
    margin: 0.5em 0;
    font-weight: 400;
}

.commentDetailsaverageRate {
    height: 35px;
    margin-left: auto;
    display: flex;
    align-items: center;
    background: var(--borderColor);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0 1em;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
}

.commentDetailsNameAndRate {
    display: flex;
    flex-wrap: wrap;
}

.commentDetailsP {
    padding: 1em;
    font-weight: 400;
}

.missionCommentBtns {
    display: flex;
    justify-content: center;
    background: var(--engageColor);
    font-size: 0.9rem;
    padding: 0.5em;
}

.replayHead {
    display: flex;
}

.replayProfileName {
    padding: 0.65em;
    font-weight: 400;
    font-size: 14px;
}

.emergencyCusServContainer {
    width: 100%;
    font-size: 1rem;
    border-top: 1px solid var(--borderColor);
    display: flex;
    justify-content: center;
}

.emergencyCusServ {
    border-right: none !important;
}

.emergencyCusServ h4 {
    padding: 0.5em 0;
    font-size: 0.9rem;
}

.emergencyCusServ img {
    width: 1.8em;
}

.sendMoney {
    border-right: none !important;
}

/* .sendMoneyBox p{
    padding-bottom: 1em;
} */
.moreComments {
    padding: 0.25em;
    cursor: pointer;
    font-size: 12px;
    padding: 5px 15px;
    color: #aaa;
}

.rateEmployerBtn {
    background: var(--borderColor);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.5em 2em;
    display: block;
    margin: 1em auto;
    cursor: pointer;
}

.rateEmployerBtn:hover {
    background: var(--primaryColor);
}

.receiptImageSelect {
    cursor: pointer;
    background-color: #ff7555;
    padding: 0.5em;
    border-radius: 15px;
    font-weight: bold;
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgb(136, 133, 133);
    opacity: 1;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: rgb(136, 133, 133);
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: rgb(136, 133, 133);
}

.arabicSpan {
    color: rgb(136, 133, 133);
    opacity: 1;
}

.commentSendBtn {
    background-color: #ff7555;
    color: white;
    width: 7%;
    font-size: 18px;
    border-radius: 12px;
}

.commentReplaySendBtn {
    background-color: #ff7555;
    color: white;
    width: 7%;
    font-size: 18px;
    border-radius: 12px;
}

.commentSendBtn:hover {
    background-color: #efa796;
}

.commentReplaySendBtn:hover {
    background-color: #efa796;
}

.emailVerify {
    width: 45%;
    background-color: #dcdcdc;
    text-align: center;
    color: black;
    padding: 0.4em;
    border-radius: 15px;
}

#emailVerify,
#changeEmailDil {
    color: #ffffff;
    background-color: #e60000;
    cursor: pointer;
    padding: 0.5em;
    border-radius: 15px;
    border-color: #ff7555;
    font-weight: bold;
}

.bodyRtl {
    direction: rtl;
}

/* Smaller screen size */
@media (max-width: 1162px) {

    /* Replacing the desktop nav with the mobile one */
    article {
        margin: 0;
    }

    .bars::before {
        display: block;
    }

    .menuIcon {
        position: absolute;
        right: 50px;
    }

    .mainNav {
        display: none;
    }

    .mobileNav {
        display: block;
    }

    /* Styling the mobile nav */
    .bars {
        padding: 0.8rem;
        background: var(--primaryColor);
        cursor: pointer;
    }

    .bars:hover {
        background: var(--primaryHoverColor);
    }

    .mobileNav {
        width: 200px;
        height: 100%;
        position: fixed;
        top: 0;
        right: 0;
        transform-origin: right;
        transform: scale(0, 1);
        background: var(--bgColor);
        z-index: 10;
        border-left: 2px solid var(--borderColor);
        cursor: pointer;
        overflow: auto;
    }

    .mobileNav ul {
        list-style: none;
        padding: 1em;
        margin-top: 6em;
        font-size: 14px;
    }

    .mobileNav ul li {
        padding: 1em 0.5em;
        border-bottom: 1px solid var(--borderColor);
    }

    .activeSection:hover,
    .logOut:hover {
        background: var(--primaryColor);
        color: #fff;
    }

    .logOut {
        display: flex;
    }

    .logOut p {
        padding-left: 1rem;
    }

    .closeMenuIcon {
        position: absolute;
        right: 20px;
        top: 20px;
        padding: 1em;
        background: var(--borderColor);
        font-size: 1em !important;
    }

    .openMenu {
        transform: scale(1, 1);
        transition: all 0.2s ease;
    }

    .closeMenu {
        transition: all 0.2s ease;
    }

    .soonPicAndName {
        display: none;
    }

    /* Post a mission */
    .missionCategories {
        font-size: 13px;
    }


}

@media (max-width: 1300px) {
    .sideBar {
        width: 80%;
    }
}

@media (max-width: 1190px) {
    .sideBar {
        width: 275px !important;
        background-color: #3a3a3a !important;
    }
}

@media (max-width: 1125px) {
    .postMission {
        max-width: 65%;
        margin: 2em 4em;
    }

    .missionBox {
        width: 65%;
        margin: 2em 4em;
    }

    .closeSideBar {
        position: absolute;
        left: -355px;
        transition: left 0.2s ease;
    }

    .sideBarReveal {
        display: flex;
        cursor: pointer;
        transition: left 0.2s ease;
        z-index: 21;
    }

    .sideBarReveal:hover {
        background: var(--primaryHoverColor);
    }

    .openSideBar {
        position: absolute;
        left: 0;
        transition: left 0.2s ease;
    }

    .sideBarRevealOpened {
        left: 237px;
        transform: rotate(180deg);
        transition: left 0.2s ease;
    }

    .emailVerify {
        width: 80%;
    }
}

@media (max-width: 979px) {

    .postMission,
    .missionBox {
        margin: 0 2.5em 2em;
    }

    #businessNotifications,
    #specialNotifications {
        left: 0;
    }
}

@media (max-width: 740px) {
    .container {
        flex-wrap: wrap;
        margin-top: 40px;
    }

    .ads {
        position: static;
        width: 100%;
        padding: 0 1em 0 2em;
        margin-bottom: 25em;
    }

    .missionBox {
        width: 87%;
    }

    .postMission {
        max-width: 87%;
        width: 87%;
    }

    .missionBoxes {
        margin-bottom: 0;
    }

    .searchBarForm {
        width: 80%;
        margin: 5px auto;
    }

    .notificationDiv {
        width: 20%;
    }

    #businessNotifications,
    #specialNotifications {
        left: -25em;
    }

    .commentSendBtn {
        width: 12%;
    }
}

@media (max-width: 600px) {

    /* Notification bar */
    .bubble,
    .friends {
        display: none;
    }

    .PaymentMethodDiv p {
        font-size: 1em;
        font-weight: bold;
    }

    .profileArtical {
        padding: 0 0.5em !important;
        display: block !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 515px) {
    .container {
        margin-top: 5px;
    }

    .missionEngageTriggers {
        display: inherit;
    }

    .missionReply,
    .missionShare {
        display: inline-flex;
        width: 49%;
        justify-content: center;
    }

    .postMission,
    .missionBox {
        margin: 2em 2.1em;
    }

    .emergencyBtn {
        padding: 0.5em;
        width: 100%;
        justify-content: center;
    }

    .commentDetailsaverageRate {
        font-size: 3px;
    }

    .emailVerify {
        width: 100%;
    }
}

@media (max-width: 450px) {
    .container {
        margin-top: 20px;
    }

    .commentTrigger {
        width: 50%;
        float: left;
    }

    .missionShare {
        width: 50%;
    }

    .topbar {
        padding: 1em 1.5em 0 1.5em;
    }

    #specialNotifications {
        overflow-y: scroll;
        max-height: 400px;
        min-width: 340px;
        background: #6A6A6A;
        position: absolute;
        left: -22em;
        z-index: 1;
        border-radius: 10px;
    }

    #businessNotifications {
        overflow-y: scroll;
        max-height: 400px;
        min-width: 340px;
        background: #6A6A6A;
        position: absolute;
        left: -22em;
        z-index: 1;
        border-radius: 10px;
    }

    .notificationsBar {
        width: auto;
        justify-content: space-between;
        align-items: center;
        background: var(--bgColor);
        border-top: 1px solid var(--borderColor);
    }

    .notificationDiv {
        display: flex;
        justify-content: center;
        place-content: space-evenly;
    }

    .notificationsBar {
        margin-top: 5%;
    }

    .profilePic {
        width: 8em;
        height: 7em;
        margin: -8em auto 0 auto;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .menuIcon {
        right: 2.5em;
    }

    /* .replyDivContainer {
        display: flow-root !important;
    } */

}

@media (max-width: 418px) {
    .uploadMediaBtn {
        margin-top: 5px;
    }

}

@media (max-width: 413px) {
    .picAndName {
        width: 12em;
    }

    .notificationsBar {
        justify-content: space-evenly;
    }

    .notificationDiv .bell img,
    .notificationDiv .diamond img {
        height: 20px;
    }
}

@media (max-width: 390px) {
    .menuIcon {
        right: 1.5em;
    }

    .postMission,
    .missionBox {
        margin: 2em 1.6em;
    }

    .topBar {
        padding: 1em 1.5em 0 1.5em;
    }

    #businessNotifications,
    #specialNotifications {
        min-width: 280px;
        left: -20em;
    }

}

@media (max-width: 341px) {
    .container {
        margin-top: 54px;
    }

    #businessNotifications,
    #specialNotifications {
        left: -18em;
    }

}

@media (max-width: 320px) {

    .postMission,
    .missionBox {
        margin: 2em 1.2em;
    }

}


/* Hide anything */
.hide {
    display: none;
}

/* ------------ */