@font-face {
  font-family: 'PoppinsLight';
  src: url('../fonts/Poppins/Poppins-Light.ttf') format('truetype');
  font-weight: normal; 
  font-style: normal;
}
@font-face {
  font-family: 'PoppinsRegular';
  src: url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-display: swap;
  font-family: 'PoppinsLight2';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/Poppins/poppins-v23-latin-300.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'PoppinsRegular2';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/Poppins/poppins-v23-latin-regular.woff2') format('woff2');
}

body { 
  background-color: rgba(240, 240, 240, 1);
  font-family: 'PoppinsLight2', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* body {
  background-image: url('../background.svg');
  background-size: cover;
  background-repeat: no-repeat;
}  */
/* HTML: <div class="pin"></div> */

.pin {
  height: 16px; /* control the size */
  aspect-ratio: 2/3;
  mask: 
    conic-gradient(from -30deg at bottom,#0000,#000 1deg 59deg,#0000 60deg) bottom/100% 50% no-repeat, 
    radial-gradient(circle at 50% calc(100% / 3),#0000 21.5%,#000 22% 44%,#0000 44.5%);
  background: #ec1a23;
  display: inline-block;
}



html {
  scroll-behavior: smooth;
}

.code {
  background-color: #000;
  padding: 10px;
  border-radius: 5px;
  margin: 10px;
  color: #008000;
  display:inline-block;
}

a {
  text-decoration: none;
  color: rgba(255, 0, 128, 1);
  cursor: pointer;
  display: contents;
  transition: color 0.4s ease-in-out;
  display: contents;
}
a:hover {
  text-decoration:none;
  color: rgba(255,0,102,1);
  cursor: pointer;
  border-bottom: 1px dotted rgba(128,128,128,0.4);
}

a div {
  width: auto;
}
.link {
  color: rgba(255, 0, 128, 1);
  transition: color 0.4s ease-in-out;
}
.link:hover {
  /* font-weight: bold; */
  color: rgba(255, 0, 102, 1);
  cursor: pointer;
}
.link2 {
  color: black;
}
.link2:hover {
  color: rgba(255, 0, 102, 1);
}
thead {
  font-weight: bold;
}
.required {
  color: rgba(255, 0, 102, 1);
}
.screen-height {
  height: 100vh;
  overflow: auto;
  scrollbar-width: thin;
}
.main-button {
  padding: 10px;
  border-radius: 5px;
  background-color: black;
  color: white;
  transition: background-color 0.4s ease-in-out;
  text-align: center;
}
.main-button:hover {
  background-color: white;
  color: rgba(0,0,0,1);
  box-shadow: inset 0 0 0 1px black;
  /* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px, rgb(51, 51, 51) 0px 0px 0px 3px; */
  /* box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px; */
}
.cta-button {
  padding: 10px;
  border-radius: 5px;
  background-color: white;
  color: rgba(255, 0, 128, 1);
  transition: box-shadow 0.4s ease-in-out;
  box-shadow: inset 0 0 0 1px black;
}
.cta-button:hover {
  background-color: white;
  color: rgba(255, 0, 128, 1);
  box-shadow: inset 0 0 0 1px rgba(255, 0, 128, 1);
  /* box-shadow: offset-left | offset-top | blur | spread | color */
}
.fit-image-cover {
  height: inherit;
  width: inherit;
  
}
.fit-image-cover img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.overflow-auto {
  overflow: auto;
}

.hidden {
  display: none;
}
@media (max-width: 768px) {
  .hidden-on-small-screen {
    display: none;
  }
}
@media (min-width: 768px) {
  .hidden-on-big-screen {
    display: none;
  }
}

.hiddendeleteform {
  display: none;
}
.radioOptions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  font-weight: bold;
}

.cuteh3 {
  font-size: 24px;
  color: purple;
}
.cute, .cuteh3 {
  font-family: 'PoppinsLight2', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: bold;
  color: purple;
  padding: 10px;
  font-size: 1.2rem;
}

.cuteH {
  font-family: 'PoppinsLight2', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  color: purple;
  font-weight: bold;
}

.purple {
  color: purple;
}

.hotpink {
  color: rgba(255, 0, 102, 1);
}
.white {
  color: white;
}
.bold {
  font-weight: bold;
}
.green {
  color: green;
}
.small {
  font-size: small;
}
.conerror {
  color: brown;
  font-weight: bold;
  font-style: italic;
}
.error {
  color: rgba(255, 0, 102, 1);
  font-weight: bold;
}

.success {
  color: green;
  font-weight: bold;
}

.delete {
  color: red;
}
.white-spaced {
  width: 100%;
  height: 32vh;
  padding: 10%;
  display: grid;
  place-items: center;

}
.fixed-bottom-center {
  position: fixed;
  bottom: 0;
  right: 50%;
  transform: translate(50%, 0%);
  
}
.fixed-bottom-right {
  position: fixed;
  bottom: 0;
  right: 0;
  /* translate starts with the  width and then height */
  /* transform: translate(0%, 0%); */
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.bottom-right {
  bottom: 0px;
  right: 0px;
}
/* Keyframes for the swaying animation */
@keyframes sway-sway {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(10deg); }
  50% { transform: rotate(0deg); }
  75% { transform: rotate(-10deg); }
  100% { transform: rotate(0deg); }
}
@keyframes moveInCircle {
  0% { transform: translate(-50%, 0) rotate(0deg); }
  25% { transform: translate(50%, 50%) rotate(90deg); }
  50% { transform: translate(-50%, 100%) rotate(180deg); }
  75% { transform: translate(-150%, 50%) rotate(270deg); }
  100% { transform: translate(-50%, 0) rotate(360deg); }
}
.sherehe {
  z-index: 200;
  height: 12vh;
  padding: 10px;
  animation: sway-sway 3s infinite linear;
  /* animation: moveInCircle 5s linear infinite; */
}
.sherehe-image {
  height: 100%;
  
}
.sherehe-image img {
  height: 100%;
}

.flex-side-panel {
  display: flex;
  flex-wrap: nowrap;
  overflow: auto;
}
.flex-side-panel .side-panel {
  flex-shrink: 1;
  flex-grow: 0;
  flex-basis: auto;
}
.flex-side-panel .content-panel {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  /* max-width: fit-content; */
  /* flex: 1 1 auto; */
}
.side-panel {
  background:#000;
  color: white;
  font-weight: bold;
  border-bottom: 1px solid rgba(240, 240, 240, 0.4);
  position: relative;
  font-size: small;
}
.side-panel a{
  color: rgba(240, 240, 240, 1);
}
.side-panel a:hover {
  color: rgba(0, 0, 0, 1);
}
.side-panel .side-nav .nav-icon svg {
  fill: rgba(255,0, 102, 1);
}
.side-panel .side-nav .nav-text {
  display: inline-block;
}
@media (max-width: 768px) {
  .side-panel .side-nav .nav-text {
    display: none;
  }
  .side-panel {
    font-size: small;
    margin-right: 15px;
  }
}
@media (min-width: 768px) {
  .side-panel {
    margin-right: 20px;
    font-size: smaller;
  }
}
.side-panel .expand-button {
  position: absolute;
  top: 5px;
  left: 100%;
  /* z-index: 130; */
  background: #000;
  color: white;
  border-left: 1px solid rgba(240, 240, 240, 0.4);
  padding: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.side-panel .expand-button:hover {
  cursor: pointer;
}
.side-panel .side-nav div {
  border-bottom: 1px solid rgba(240, 240, 240, 0.4);
}
.side-panel .side-nav a:last-child  div{
  border-bottom: none;
  /* background-color: chartreuse; */
}
.side-nav div {
  padding: 10px;
}
.side-nav div:hover {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.8)
}
.blackline {
  border-bottom: 1px solid black;
  margin: 10px 5% 10px 5%;
}
.colourline, .colorline {
  border-bottom: 1px solid;
  border-image: linear-gradient(to right, rgba(255, 0, 102, 1), white, rgba(255, 0, 102, 1));
  border-image-slice: 1;
  margin: 10px 5% 10px 5%;
}
.colourline2, .colorline2 {
  border-bottom: 1px solid;
  border-image: linear-gradient(to right, chartreuse, white, chartreuse);
  border-image-slice: 1;
  margin: 10px 5% 10px 5%;
}
.colourline3, .colorline3 {
  border-bottom: 1px solid;
  border-image: linear-gradient(to right, rgba(255, 0, 102, 1), chartreuse, rgba(255, 0, 102, 1));
  border-image-slice: 1;
  margin: 10px 5% 10px 5%;
}
.colourline4, .colorline4 {
  border-bottom: 1px solid;
  border-image: linear-gradient(to right, rgba(255, 0, 102, 1), grey, rgba(255, 0, 102, 1));
  border-image-slice: 1;
  margin: 10px 5% 10px 5%;
}
.colourline5, .colorline5 {
  border-bottom: 1px solid;
  border-image: linear-gradient(to right, chartreuse, gray, chartreuse);
  border-image-slice: 1;
  margin: 10px 5% 10px 5%;
}
.halfline {
  border-bottom: 1px solid;
  border-image: linear-gradient(to right, rgba(255, 0, 102, 1), white, rgba(255, 0, 102, 1));
  border-image-slice: 1;
  margin: 10px 30% 10px 30%;
}

.whiteline {
  border-bottom: 1px solid white;
}

.hotline {
  border-bottom: 1px solid rgba(255, 0, 102, 1);
}
.greenline {
  border-bottom: 1px solid chartreuse;
}
.purpleline {
  border-top: 1px solid purple;
}
.grayline, .greyline {
  border-bottom: 1px solid rgba(128, 128, 128, 0.8);
}
.table-div {
  overflow: auto;
}
div:has(table) {
  overflow: auto;
}
table {
  border-collapse: collapse;
  border: 1px solid grey;
}

th, td {
  border: 1px solid grey;
  padding: 5px;
}

tbody tr:hover {
  background: lightgrey;
}

.modalPop, .fullmodal {
  position: fixed;
  top: 0px;
  z-index: 1000;
  background: rgba(1, 1, 1, 0.8);
  height: 100vh;
  width: 100%;
  overflow: auto;
  display: grid;
  place-items: center;
  padding: 5vw;
}

.theModal, .modalbox {
  background: linear-gradient(to top right, honeydew, white);
  padding: 10px;
  border-radius: 5px;
}

.modalHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.text-center, .text-centered {
  text-align: center;
}
.grid-center {
  display: grid;
  place-items: center;
}
.flexbox {
  display: flex;
}
.flex-space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  overflow: auto;
  scrollbar-width: none;
}
.flex-space-between  div{
  flex: 1; 
}
.flex-space-between2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  overflow: auto;
  scrollbar-width: none;
}
@media (max-width: 768px) {
  .flex-space-between2 {
      flex-direction: column;
  }
}
@media (min-width: 768px) {
  .flex-space-between2 {
      flex-direction: row;
  }
}
.self-right {
  width: 100%;
  display: flex;
  justify-content: end;
}

.roundimage {
  border-radius: 50%;
}
.fixed {
  position: fixed;
}
.bottomfixed {
  position: fixed;
  bottom: 0;
  z-index: 100;
}
.float-right {
  float: right;
}

@media(max-width: 768px) {
  .mid-size-img {
    width: 20vw;
    height: 20vw;
  }
  
  .mid-size-img img {
    width: 20vw;
    height: 20vw;
    object-fit: cover;
    border-radius: 5px;
  }

  .large-img {
    width: 42vw;
    height: 42vh;
  }

  .large-img img{
    width: 42vw;
    height: 42vh;
    object-fit: cover;
  }
}
@media(min-width: 768px) {
  .mid-size-img {
    width: 13vw;
    height: 13vw;
  }
  
  .mid-size-img img {
    width: 13vw;
    height: 13vw;
    object-fit: cover;
  }

  .large-img {
    width: 42vw;
    height: 42vw;
  }

  .large-img img{
    width: 42vw;
    height: 42vw;
    object-fit: cover;
  }
}

#hideLocation {
  display: none;
}

.honeydew {
  background-color: honeydew;
}
.highlight {
  background-color: honeydew;
  padding: 10px;
  border: 1px solid aquamarine;
  border-radius: 5px;
}
.parent {
  /* background: rgba(250, 255, 250, 1); */
  background-color: rgba(127, 255, 0, 0.2);
  padding: 10px;
  margin: 5px;
}
.parent-head {
  color: purple;
  font-size: larger;
  font-weight: bold;
  background-color: white;
  border-radius: 5x;
  padding: 10px;
  text-align: center;


}
.children {
  padding: 10px;
  display: grid;
  place-items: center;
}
.child {
  background: linear-gradient(to top right, rgba(230, 255, 230, 1), rgba(230, 255, 230, 1));
  padding: 10px;
  border-radius: 5px;
  border-right: 1px solid rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  margin: 5px;
  
}
.child:hover {
  background: linear-gradient(to top right, rgba(255, 255, 255, 1), rgba(240, 255, 240, 1));
}
@media(min-width: 768px){
  .body {margin-right: 10px;
    margin-left: 10px;}

  .grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .grid-4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.grid-4-force {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.all {
  padding: 10px;
}

.tiny-image {
  max-width: 5vw;
  max-height: 5vw;
}
.small-image {
  max-width: 10vw;
  max-height: 10vw;
}
.fit-image, .image-div {
  width: 100%;
}
.fit-image img, .image-div img{
  width: 100%;
}
.info-pad {
  background: honeydew;
  border-radius: 3px;
  padding: 5px;
  display: inline-block;
  font-size: small;
  font-weight: bold;
}
.info-box {
  padding: 10px;
  border-radius: 5px;
  background: white;
  margin: 10px;
  box-shadow: inset 0px 0px 0px 1px chartreuse;
  /* object-fit: contain; */
}
.info-box-head {
  text-align: center;
  font-weight: bold;
}
.form-highlight {
  padding: 10px;
  background: white;
  border-radius: 5px;
  border: 1px solid chartreuse;

}

.formresponse {
  font-weight: bold;
}

.center {
  text-align: center;
}
button {
  border: 0.5px outset;
  border-color: white;
  outline: none;
  border-radius: 5px !important;
  background-color: white;
  box-shadow: inset 0 0 0 0 chartreuse;
  transition: ease-out 0.3s;
}

button:hover {
  outline: none;
  box-shadow: inset 0 0 0 100px rgba(127,255,0,0.8), inset 30px 30px 30px 30px white;
  color: purple;
  font-weight: bolder;
  border: 0.3px inset;
  border-color: white;
  cursor: pointer;
}

.newbuttons, .new-buttons {
  background: white;
  color: rgba(255, 0, 102, 1);
  font-family: 'PoppinsRegular2', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  padding: 5px;
  border-radius: 3px;
  display: inline-block;
  width: initial;
  /* font-weight: bold; */
  margin: 5px;
  font-size: 15px;
}

.newbuttons:hover, .new-buttons:hover {
  font-weight: bolder;
  color: purple;
  cursor: pointer;
}

.beautel {
  padding: 10px;
  margin: 10px;
  border-radius: 5px;
  background: linear-gradient(to top right, rgba(127, 255, 0, 0.75), rgba(255, 255, 255, 0.75));
  font-family: 'PoppinsLight2', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  color: purple;
  font-weight: bold;
  
}

.noItems {
  font-style: italic;
  padding: 10px;
}

button:active {
  transform: translateY(3px);  
}

.objectlist {
  border-bottom: 1px solid rgba(128, 128, 128, 0.8);
}

.objectlist:last-child {
  border-bottom: none;
}

.item {
  border-bottom: 1px solid rgba(128, 128, 128, 0.8);
  cursor: pointer;

}
.item:hover {
  background-color: rgba(127,255, 0, 0.4);
}
.item:last-child {
  border-bottom: none;
}

form sup {
  color: rgba(255, 0, 102, 1);
}
/* button:hover {
  animation-name: sway;
  animation-duration: 3s;
  animation-iteration-count: 3;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
} */

@keyframes sway{
  0%{transform: translateX(5px);}
  100%{transform: translateX(0px);}
}

/*notifications*/
#alerts {
  /* background: rgba(240, 255, 240, 1); */
  min-width: 36vw;
  /* display: flex;
  justify-content:  flex-end;
  align-items: center; */
}

.alerts {
  border-radius: 5px;
  font-weight: bold;
}

.alertsRelative {
  position: relative;
}

#notificationAlertBox {
  position: absolute;
  right: 0px;
  top: 0px;
  max-width: 480px;
  background: white;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  z-index: 130;
  display: none;

}

#notificationsBoxClose {
  display: inline-flex;
}

.theNotificationAlerts {
  padding: 10px;
  max-height: 64vh;
  overflow: auto;
}

#workNotifs {
  display: hidden;
}

#notificationsNumber {
  color: chartreuse;
  cursor: pointer;
  float: right;
}

.pastNotifics {
  background: honeydew;
}
/*close of notifications*/

.green-pad, .black-pad, .hotpink-pad {
  display: inline-block;
  background: white;
  font-size: small;
  padding: 5px;
  border-radius: 3px;
  border: 1px solid chartreuse;
  font-weight: bold;
}
.green-pad {
  color: green;
}
.black-pad {
  color: black;
}
.hotpink-pad {
  color: rgba(255, 0, 102, 1);
}

.stats-section {
  background-color: white;
  padding: 5px;
}
.stats-box {
  display: grid;
  place-items: center;
  text-align: center;
  background: honeydew;
  padding: 10px;
  border-radius: 5px;
  margin: 5px;
  
}
.stats-box:hover {
  background: linear-gradient(to bottom right, white, aquamarine);
  cursor: pointer;
  
}
.stats-box div {
  padding: 1rem;
}
.stats-head {
  font-weight: bold;
  border-bottom: 1px solid gray;
}
/*focus*/
.boxShadow {
  box-shadow: 0 0 5px  chartreuse;
}

.full-width {
  width: 100%;
}

.logo, .user-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.top1, .top3 {
  flex: 1;
}
.top2 {
  flex: 5;
}
/*new - 29th Jan, 2021 Friday*/

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* text-align: center; */
  padding: 2px;
  
}

.top2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .top2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  
}

.mainlogo {
  width: clamp(12px, 12vh, 12vh);
}

.mainlogo img {
  width: 100%;
}

.top1, .top2, .top3 {
  padding: 3px;
}
@media(max-width:768px) {
.top1 {
  display: none;
}
.top3 {
display: none;
}
}

.top1 .logo {
  height: 10vw;
  width: 10vw;
  }

.top1 .logo img {
  width: 10vw;
  border-radius: 50%;
}

.top3 .user-image-pic {
  height: 10vw;
  width: 10vw;
  border-radius: 50%;
}

/*end of new*/
/*May 2021*/
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#modal_login #closeSignInModal:hover {
  font-weight: bold;
  
}

#s-tiny-logo {
  height: 30px;
  width: 30px;
}

#s-tiny-logo img {
  width: 30px;
}
/*End of May 2021*/

.greeting {
  padding: 10px;
  max-width: 80vw;
  }

.greeting .greeting-name, .greeting .greeting-phrase {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  text-align: center;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  background: linear-gradient(to right, rgba(255, 0, 102, 1), rgba(255, 0, 102, 1), white, chartreuse, white, rgba(255, 0, 102, 1), rgba(255, 0, 102, 1));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* text-align: center; */
  padding: 0px;
  /* font-size: clamp(12px, 5vw, 20px); Dynamically adjust font size */
  margin: 0; /* Remove default margins for tighter control */
}
  
.greeting-name {
  /* font-size: 3vw; */
  font-size: clamp(24px, 3vw, 5vw);
  font-weight: bold;
}
.greeting-phrase {
  /* font-size: 1.8vw; */
  font-size: clamp(16px, 1.8vw, 3vw);
} 
.fit-text {
  white-space: nowrap;
}

.mainnavigation {
  z-index: 120;
  background-color: black;
  position: -webkit-sticky;
  position: sticky !important;
  top: 0px;
  opacity: 1;
  transition: top 1s, opacity 1s;
}

#mainmenu:hover #themenu{
  display: block;
  z-index: 130;
}

#usermenu:hover #userOptionsMenu {
  display: flex;
  z-index: 130;
}
/*phone nav bar styles*/

  .phone-nav-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    
    
    /* padding: 10px; */
  }

.phone-menu {
  flex: 3;
  padding: 1.2vmin;
  color: chartreuse;
  font-size: 24px;
  text-align: left;
  font-family: 'PoppinsLight2', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  /* position: relative; */
}
.phone-user-image-title {
  display: block;
  flex: 7;
  position: relative;
}


.phone-menu:hover .phone-nav-label {
  color: white;
  /* font-weight: bold; */
  cursor: pointer;
}

.icon-and-name {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1.2vmin;
  flex-wrap: wrap;
}

/*prof pic and show area */
.prof-icon-image {
  width: 5vh;
  height: 5vh;
  border-radius: 50%;
}

.icon-and-name a {
  text-decoration: none;
}

.icon-and-name .user-title {
  padding-right: 10px;
  font-family: 'PoppinsLight2', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 24px;
  color: chartreuse;
  cursor: pointer;
}

.icon-and-name:hover .user-title {
  font-size: bold;
  color: white;
}


/*Right side Phone menu hover */
.phone-user-options-dropdown {
  display: none;
  position: absolute;
  height: auto;
  box-sizing: border-box;
  padding: 10px;
  border-radius: 3px !important;
  z-index: 120;
  right: 0px;
  color: chartreuse;
  font-size: 18px;
  /* display: flex; */
  flex-direction: column;
  justify-content: left;
  align-items: flex-start;
  background: white;
  min-width: 140px;
  text-align: left;
  cursor: pointer;
  font-family: 'PoppinsLight2', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  
}

.phone-menu-nav {
  display: none;
  position: absolute;
  /* left: 0px;
  bottom: 0px; */
  height: auto; 
  box-sizing: border-box;
  background-color:white;
  padding: 10px;
  border-radius: 5px;
  font-family: 'PoppinsLight2', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  z-index: 120;
  
}
/* #phone-acc-options {
  text-align: right;
} */
.phone-menu-nav .phone-menu-nav-items .phone-nav-item {
  border-bottom: 2px solid chartreuse;
  text-align: left;
}

.phone-menu-nav .phone-menu-nav-items .phone-nav-item:last-child {
  border-bottom: none;
}

.phone-menu-item {
  color: purple;
  font-family: 'PoppinsLight2', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 18px;
}

.phone-menu-nav .phone-menu-nav-items .phone-nav-item a .phone-menu-item {
  padding: 5px;
  width: inherit;
}

.phone-menu-nav .phone-menu-nav-items .phone-nav-item a .phone-menu-item:hover {
  color: rgba(255, 0, 102, 1);
  background: linear-gradient(to top right, honeydew, white);
  font-size: 20px;
  font-weight: bold;
}

.subnav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px;
}
.notifications {
  display: flex;
}

.progressAlerts {
  position: fixed;
  bottom: -100px;
  right: 50%;
  transform: translateX(50%);
  background-color: white;
  border-radius: 5px;
  padding: 10px;
  font-weight: bold;
  border-bottom: 0;
  transition: bottom 0.1s;
  
}

.visiblenotice {
  bottom: 10px;
  z-index: 130;
  animation-name: sway;
  animation-duration: 0.1s;
  animation-iteration-count: 3;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
  border-bottom: 3px solid chartreuse;
  box-shadow: 1px 1px 3px chartreuse;

}

/* new */
.navbarplus {
    position: -webkit-sticky;
    position: sticky !important;
    top: 0px;
    z-index: 120;
}
@media(max-width: 768px) {
  .navbarplus {
    height: auto;
  }
}
/* end of new */
.hiddennav {
  top: -100px;
  opacity: 1;
}

.navlabel {
  display: none;
}
.navbar-in:hover .navlabel {
  display: block;
}
.activenav {
  background: white;
  /* border-bottom: 3px inset;
  border-bottom-color: chartreuse; */
  color: purple;
  fill: chartreuse;
}

#my-account {
  position: relative;
}

#acc-options {
  display: none;
  }


#my-account:hover #acc-options {
  display: block;
  position: absolute;
  padding: 10px;
  border-radius: 3px !important;
  z-index: 120;
  color: purple;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  background: white;
  min-width: 140px;
  text-align: left;
  font-family: 'PoppinsLight2', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.acc-options-item {
  padding: 10px;
  color: purple;
  box-sizing: border-box;
  width: inherit;
  cursor: pointer;
}

.acc-options-item:hover {
  color: rgba(255, 0, 102, 1);
  font-size: 20px;
  background: linear-gradient(to top right, honeydew, white);
  font-weight: bold;
}

.acc-options-item a .full-wide {
  width: 100%;
}

/* svg styles */
/* .navsvgpath {
  fill: chartreuse;
} */

.mid-line {
  border: 1px solid chartreuse;
  box-sizing: border-box;
  width: 90%;
}

.pagetop {
  background-color: black;
  top: 0px;
  z-index: 100;
}

@media (min-width: 768px) {
  .welcome-text h2 {
    font-size: 3em;
  }
  .welcome-text h3 {
    font-size: 2em;
  }
}

@media(max-width: 768px) {
  .welcome-text {
    padding: 10px;
  }
}

.welcome-text {
  margin-top: 5px;
}

.welcome-text h2 {
  font-weight: bold;
  color: chartreuse;
  font-family: 'PoppinsLight2', Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  -webkit-text-stroke: 0.4px purple;
}

.welcome-text h3 {
  font-weight: bolder;
  color: rgba(255, 255, 0, 1);
  font-family: 'PoppinsLight2', Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  -webkit-text-stroke: 0.4px purple;
}

.sehemu2 {
  background-size: cover;
  background-position: center;
  position: relative;
  
}

@media(min-width: 768px) {
  .signIn-or-Up-or-Notes {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 5;
  }
}

@media(max-width: 768px) {
  .signIn-or-Up-or-Notes {
    display: none;
  }
}

.acc-in-out {
  font-size: 16px;
  font-family: 'PoppinsLight2', Arial, Helvetica, sans-serif;
  padding: 5px;
  color: purple;
  border-bottom: 1px solid purple;
  margin: 10px;
  padding: 10px;
  border-radius: 5px;
  background-color: white;
  
}

.acc-in-out:hover {
  font-weight: bold;
  color: rgba(255, 0, 102, 1);
  border-bottom: 1px solid rgba(255, 0, 102, 1);
  cursor: pointer;
  background: linear-gradient(to top right, white, rgba(255, 255, 0, 1));
  
}

.sehemu2 .a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.mainsearch {
  max-width: 48vw;
}
.mainsearchform {
  height: auto;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  background-color: white;
  border-radius: 5px;
  
}
.mainsearch input[type="search"] {
  max-width: 36vw;
  min-width: 24vw;
  border-radius: 5px;
  padding: 3px;
  border: none;
  color: purple;
  border: none;

}
.mainsearch input[type="search"]:focus {
  border: none !important;
  outline: none;
}
.mainsearch .mainsearchbutton {
  background: transparent;
}

.search-tab{
  box-sizing: border-box;
  width: 80%;
  border: 1px solid rgba(255, 0, 102, 1);
  background-color: white;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px;
}

.search-tab form {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;

}

.search-tab form #serch-tab-input {
  flex: 7;
}

#searchSwmGo {
  flex: 3;
  padding: 0px;
  margin: 0px;
  height: 60px;
  text-align: center;
  color: purple;
  font-size: 24px;
  border-top-right-radius: 50px !important; 
  border-bottom-right-radius: 50px !important;
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  border: none !important;
  outline: none !important;
  
}
#s-notifications {
  position: fixed; /*navbarplus shall have position relative*/
  right: 0px;
  top: 100px;
  z-index: 220;
}

@media(min-width: 768px) {
  #searchSwmGo {
    min-width: 140px;
  }
}

.search-tab form input {
  border: none;
  outline: none;
  background-color: inherit;
  padding: 5px;
  margin: 5px;
  box-sizing: inherit;
  width: inherit;
  height: 40px;
  font-family: 'PoppinsLight2', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  color: purple;
  font-size: 24px;
  text-align: center;
}

.search-tab form input::-webkit-input-placeholder {
  color: rgba(255, 0, 102, 0.5);
  font-size: 24px;
}

.happening {
  min-height: 240px;
  width: 80%;
  border-radius: 10px;
  background: linear-gradient(to top right, rgba(255,255,255,0.75), rgba(255,255,255,0.5), rgba(255,255,255,0.25));
  /*backdrop-filter: blur(3px);*/
  padding: 10px;
  margin: 10px;
}

.resultsSwmGot {
  border-bottom: 1px solid purple;
  margin-bottom: 10px;
  border-radius: 5px;
  background: rgba(255,255,255,0.75);
}

.resultsSwmGot:last-child {
  border-bottom: none;
}

@media(min-width: 768px) {
  #bg-image-Copyright {
    transform: rotate(-90deg);
    transform-origin: 0% 0%;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    position: absolute;
    bottom: 0%;
    left: 0%;
    z-index: 90;
  }

}

@media(max-width: 768px) {
  #bg-image-Copyright {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
  }
}

@media (max-width:500px) {
  .bgC-C .middle {
    border-right: 1px solid chartreuse;
    border-left: 1px solid chartreuse;
}
}

#bg-image-Copyright {
   margin: 0px;
  background-color: white;
  padding-right: 10px;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 10px;
}

.bgC-C {
  color: purple;
  text-align: left !important;
  display: flex;
  align-items: center !important;
  justify-content: center;
  
}

#bg-image-Copyright .bgC-C div{
  padding-right: 5px;
  padding-left: 5px;
  padding-top: 0px;
  padding-bottom: 0px;
  font-size: 0.7em;
  font-family: 'PoppinsLight2', Arial, Helvetica, sans-serif;
}

#bg-image-Copyright .bgC-C div span {
  color:rgba(255, 0, 102, 1);
  font-family: 'PoppinsLight2', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.smallpad {
  font-size: small;
  color:green;
  display: inline-block;
  padding: 3px;
  background: white;
  border-radius: 3px;
  margin: 2px;
}
/*part 3*/

@media(min-width:768px){
  .part3 {
    display: flex;
    justify-content: space-between;
  }
}

.p3a {
  flex: 1; 
  animation-name: rangi1; 
  animation-duration: 5s;
  background-color: honeydew;
  padding: 10px;
  border-radius: 10px;
  margin: 10px;
}

.p3b {
  flex: 1;
  animation-name: rangi2; 
  animation-duration: 5s;
  background-color: honeydew;
  padding: 10px;
  border-radius: 10px;
  margin: 10px;
}
.p3inner {
  background: white;
  box-sizing: border-box;
  padding: 10px;
  border-radius: 10px;
  padding-right: 10px;
  margin: 5px;
  border: 1px solid rgba(127, 255, 0, 0.4);
}

.p3inner h2 {
  color: purple;
}

.part3 h2 {
  font-family: 'PoppinsLight2', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.part3 {
  font-family: 'PoppinsLight2', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  background: honeydew;
  padding: 10px;
}

.p4aa img {
  width: 100%;
}

.p4ba img {
  width: 100%;
}

.p4ca img {
  width: 100%;
}

.p4 h4 {
  font-family: 'PoppinsLight2', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.p4 {
  display: flex;
  justify-content: space-between;
  font-family: 'PoppinsLight2', Georgia, 'Times New Roman', Times, serif ;
}

.p4 div {
  border: solid chartreuse 1px;
  padding: 3px;
}

.p4 div {
  flex: 1;
}

.p4head h2 {
  font-family: 'PoppinsLight2', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}



.mvtitle, .f2 {
  font-family: 'PoppinsLight2', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.mvtitle {
  font-weight: bolder;
  color: purple;
  padding: 5px;

}

.fvmission p {
  background: linear-gradient(to right, green, green, rgba(255, 0, 102, 1), green, green);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}


.lineSee {
    border-bottom: 1px solid white;
    margin-bottom: 5px;
}

@media(max-width:768px){
  .line {
    border-bottom: 1px solid white;
    margin-bottom: 5px;
  }
}
@media(min-width:768px){
  .f3 img {
    display: none;
  }
}

.f3 img {
  width: 80%;
}

.f2 {
  margin-top: 5vmin;
}
/*end of new - 29th Jan 2021, Friday*/



.f3, .f2p2 {
  text-align: center;
  font-family: 'PoppinsLight2', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  color: purple;
}

footer.footer {
  /* background-color: rgba(127, 255, 0, 0.4); */
  background-color: #000;
  color: white;
  padding: 5vw;
  font-weight: bold;
  text-align: center;

}

@media (min-width: 768px) {
  .footer-flex {
    display: flex;
    justify-content: space-between;
  }
  footer .footer-right {
    text-align: right;
  }
  footer .footer-left {
    text-align: left;
  }
}

.fvmission {
  background-color: white;
  padding: 10px;
  margin: 10px;
  text-align: center;
  font-family: 'PoppinsLight2', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  
}

hr {
  border-color: rgba(255, 0, 102, 1);
}

.plainline {
  margin: 0px;
  border: 0.3px solid;
}

@keyframes rangi1 {
  0% {background-color: white;}
  50% {background-color: pink;}
  100% {background-color: white;}
}

@keyframes rangi2 {
  0% {background-color: white;}
  50% {background-color: pink;}
  100% {background-color: white;}
}

.errortab .loginerror {
  background-color:chartreuse;
  color: rgba(255, 0, 102, 1);
  margin: 5px;;
}
.theform {
  background-color: cornsilk;
}

.signupform label {
  display: block;
  padding: 5px;
}
/*****************************signup styles.css*********************/
/*signup page styles*/

.signupform{
  background-color: white;
  
}




.errortab {
  background-color: chartreuse;

}
.sqlsignuperror {
  color: blue;
 
}
.signuperror {
  color: rgba(255, 0, 102, 1);
  
}

.signupsuccess {
  color: green;
  
}

.profileimage img {
  width: 100%;
}

.hide{
  display: none;
}
.s-more {
  background: linear-gradient(to right, rgba(127, 255, 0, 0.4), rgba(255, 255, 255, 0.4), rgba(255, 0, 102, 0.4));
  /* background-color: grey; */
  padding: 1px;
}
.superworkmates-more {
  box-sizing: border-box;
  margin: 30px;
  padding: 3rem;
  background-color: rgba(255, 255, 255, 0.55);
  border-radius: 10px;
}
.superworkmates-more .spantag, .swmh4 {
  text-align: center;
  font-weight: bold;
}

/*style for most of the buttons*/
.btn-super{
  height: 36px;
  width: 240px;
  border-radius: 4px;
  background-color:  chartreuse;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  font-family: 'PoppinsLight2', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  color: rgba(255, 0, 102, 1);
  margin: 4px 2px;
  cursor: pointer;
  border: none;
}

.login-success{
  font-size: 20px;
  font-style: italic;
  padding: 10px;
  border-radius: 5px;
  color: #fff;
  display: none;
}

.btn-login{
  background-color:  chartreuse;
  text-align: center;
  border-radius: 5px;
  border: none;
}

  @media screen and (max-width: 500px){
    .col__xsm__6{
    width: 50%;
  }

  }
  .bg-super{
    background-color:  chartreuse;
  }
  .bg-super-1{
    background-color:  rgba(127,255,0,0.1);
  }
  .bg-super-2{
    background-color:  rgba(127,255,0,0.2);
  }
  .bg-super-3{
    background-color:  rgba(127,255,0,0.3);
  }
  .bg-super-4{
    background-color:  rgba(127,255,0,0.4);
  }
  .bg-super-5{
    background-color:  rgba(127,255,0,0.5);
  }
  .bg-super-6{
    background-color:  rgba(127,255,0,0.6);
  }
  .bg-super-7{
    background-color:  rgba(127,255,0,0.7);
  }
  .bg-super-8{
    background-color:  rgba(127,255,0,0.8);
  }
  .bg-super-9{
    background-color:  rgba(127,255,0,0.9);
  }

.product-description{
  max-height: 10rem;
  overflow: scroll;
}
.welcome-msg-equipments{
  font-size: 30px;
  letter-spacing: 2px;
  font-family:'PoppinsLight2', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.btn-post-equipment{
  background-color: chartreuse;
}
div.post-equipment-response{
  display: none;
  background-color:rgb(79,225,79);
  border-radius: 5px;
  font-style: italic;
  font-size: 24px;
  text-align: center;
  color: white;
  min-height: 3rem;
}
ul.equipments-search-results{
  display: none;
  position: absolute;
  list-style: none;
  width: 80%;
  z-index: 100;
  background: #5bfe23;
}
ul.equipments-search-results li{
  padding: 5px 12px;
  transition: all 0.5s ease;
}
ul.equipments-search-results li:hover{
  background: #5add2f;
}

/* livechat styles */
#chatInput{
  width: 95%;
  left: 20%;
  padding: 27px;
  top: 10px;
  border-radius: 16px;
  outline:0px;
}
.btn-send{
  right: 10%;
  padding:5px;
  top: 10%;
  border-radius: 20px;
  background-color: lightgreen;
  }
.input-wrapper {
  position: sticky;
  bottom: 10px;
  margin: auto;
  z-index: 10;
}

  .receiver ul.messages{
    z-index: -1;
    list-style: none;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: 75vh;
    overflow-y: auto;
    background-color: #5add2f;
    margin: 0px 10px;
  }
  .receiver ul.messages .message{
    max-width: 60%;
    height: auto;
    padding: 10px;
    margin-top: 8px;
  }
  .message:last-child{
    margin-bottom: 8px;
  }
  .message-sender{
float: left;
background-color: grey;
border-top-right-radius: 20px;
border-top-left-radius: 2px;
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
margin-left: 3px;
  }
  .message-receiver{
float: right;
border-top-right-radius: 2px;
border-top-left-radius: 20px;
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
background-color: rgb(24, 175, 24);
text-align: justify;
  }
  .users{
    list-style-type:none;
    max-height: 75vh;
    max-width: 100vw;
    display: inline-flex;
    overflow-x: scroll;
  }
  .users li{
    padding: 10px;
    border-radius: 4px;
    margin-right: 5px;
  }
  .user{
    margin: 5px 0px;
    cursor: pointer;
    text-align: center;
  }
  .user-active{
    background-color: grey;
  }

  /*workmates styles*/
  .image-holder{
    max-width: 90px;
    max-height: 90px;
    overflow: hidden;
    border-radius: 45px;
    background-position: center;
  }
  /* .image-holder img{
    
  } */
  .profile-description{
    max-width: 18vw;
    font-style: italic;
    font-size: 18px;
  }
  .top-categories{
    list-style-type: none;
    max-width: 100vw;
    display: inline-flex;
    overflow-x: scroll;
  }
  .top-categories li{
    cursor: pointer;
    border-radius: 5px;
  }


@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.canToggle {
  color: green;
  font-size: small;
}
