.Toastify__toast-container {
  z-index: 9999;
  -webkit-transform: translate3d(0, 0, 9999px);
  position: fixed;
  padding: 4px;
  width: 320px;
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: 64px;
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 1px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-height: 800px;
  overflow: hidden;
  font-family: sans-serif;
  cursor: pointer;
  direction: ltr;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast--dark {
  background: #121212;
  color: #fff;
}
.Toastify__toast--default {
  background: #fff;
  color: #aaa;
}
.Toastify__toast--info {
  background: #3498db;
}
.Toastify__toast--success {
  background: #07bc0c;
}
.Toastify__toast--warning {
  background: #f1c40f;
}
.Toastify__toast--error {
  background: #e74c3c;
}
.Toastify__toast-body {
  margin: auto 0;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
  }
}
.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.Toastify__close-button--default {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 9999;
  opacity: 0.7;
  background-color: rgba(255, 255, 255, 0.7);
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}
.Toastify__progress-bar--default {
  background: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
}
.Toastify__progress-bar--dark {
  background: #bb86fc;
}
@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  /* background-color: white !important; */
  background-color: rgb(237, 237, 237) !important;
}

img {
  pointer-events: none;
}

.App {
  /* text-align: center; */
  background-color: rgb(237, 237, 237) !important;
}

.modal-content {
  border-radius: 10px !important;
  margin-bottom: 170px !important;
}

.App-comingsoon {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.App-comingsoon > h1 {
  font-weight: bold;
}

.App-footer-landscape {
  position: absolute;
  bottom: 25px;
  right: 65px;
}

.myDialog {
  border-radius: 30px;
}

.app-modal-backdrop {
  opacity: 0.8 !important;
}

.App-footer-portrait {
  /* background-color: #e1e1e1;
      margin-top: 35px; */
  background-color: rgb(237, 237, 237);
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
  /* testing */
  position: absolute;
  width: 100%;
  bottom: 0;
}

/* Override to prevent gap with custom .row and .col*/

.row {
  margin-left: 0px;
  margin-right: 0px;
}

[class^="col-"],
[class*=" col-"] {
  padding-left: 0px;
  padding-right: 0px;
}

/* [class*="col-"] {
    
    } */

.App-logo {
  animation: App-logo-spin infinite 20s linear;
  height: 80px;
}

.App-header {
  background-color: #222;
  height: 150px;
  padding: 20px;
  color: white;
}

.App-title {
  font-size: 1.5em;
}

.App-intro {
  font-size: large;
}

.padding-0 {
  padding-right: 0;
  padding-left: 0;
}

.col-centered {
  float: none;
  margin: 0 auto;
}

@keyframes App-logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #9b9b9b !important;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #9b9b9b !important;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #9b9b9b !important;
}

.dropdown-toggle::after {
  border-top: 0em solid;
  border-right: 0em solid transparent;
  border-bottom: 0;
  border-left: 0em solid transparent;
}

/* Make clicks pass-through */
#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #ff9a00;

  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;

  width: 100%;
  height: 2px;
}

/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #ff9a00, 0 0 5px #ff9a00;
  opacity: 1;

  -webkit-transform: rotate(3deg) translate(0px, -4px);
  -ms-transform: rotate(3deg) translate(0px, -4px);
  transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}

#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;

  border: solid 2px transparent;
  border-top-color: #ff9a00;
  border-left-color: #ff9a00;
  border-radius: 50%;

  -webkit-animation: nprogress-spinner 400ms linear infinite;
  animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}

@-webkit-keyframes nprogress-spinner {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes nprogress-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
}

.separator {
    display: flex;
    align-items: center;
    text-align: center;
}
.separator::before,
.separator::after {
    content: "";
    flex: 0.5;
    border-bottom: 2px solid #c1c1c1;
}
.separator::before {
    margin-right: 1em;
}
.separator::after {
    margin-left: 1em;
}

.my-facebook-button-class {
    background-color: #3b5998;
    color: white;
    border-radius: 20px;
}

/* * {
    box-sizing: border-box;
}
body {
    background: #1c8ef9 !important;
    min-height: 100vh;
    display: flex;
    font-weight: 400;
    font-family: "Fira Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
label,
span {
    font-weight: 500;
    font-family: "Fira Sans", sans-serif;
}

body,
html,
.App,
#root,
.auth-wrapper {
    width: 100%;
    height: 100%;
}

.navbar-light {
    background-color: #ffffff;
    box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
}

.auth-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: left;
}

.auth-inner {
    width: 450px;
    margin: auto;
    background: #ffffff;
    box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
    padding: 40px 55px 45px 55px;
    border-radius: 15px;
    transition: all 0.3s;
}

.auth-wrapper .form-control:focus {
    border-color: #167bff;
    box-shadow: none;
}

.auth-wrapper h3 {
    text-align: center;
    margin: 0;
    line-height: 1;
    padding-bottom: 20px;
}

.custom-control-label {
    font-weight: 400;
}

.forgot-password,
.forgot-password a {
    text-align: right;
    font-size: 13px;
    padding-top: 10px;
    color: #7f7d7d;
    margin: 0;
}

.forgot-password a {
    color: #167bff;
} */


.Navigation-nav-link {
  font-size: 14px;
  font-weight: bold;
  color: black;
  font-family: Arial, Helvetica, sans-serif;
  /* padding-left: 20px;
    padding-right: 20px; */
}

.hover-orange:hover {
  color: #ff9a00;
}

.Nav-Header-profile-picture-wrapper {
  display: inline-block;
}

.Nav-Header-profile-picture {
  width: 30px;
  height: 30px;
  border-radius: 15px;
}

.navbar-toggler-icon {
  width: 24px;
  height: 24px;
}

.navbar-toggler {
  margin-right: 2px;
  border-style: none;
}

.Navigation-dropdown-item {
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  color: #383838;
}

.Navigation-navbar {
  /* height: 100px; */
  background-color: white;
}

.Navigation {
  background-color: white;
  border-width: 0px 0px 1px 0px;
  border-style: solid;
}

i.Nav {
  background-color: #fff;
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.0975); */
  border-bottom: 1px solid red;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
  -webkit-transition: height 0.2s ease-in-out;
  transition: height 0.2s ease-in-out;
  height: 77px;
}

.Nav-menus {
  display: flex;
  flex-direction: row;
  height: 77px;
  /* justify-content: center; */
  width: 70%;
  margin: 0 auto;
  padding: 26px 40px;
}

.Nav-brand {
  /* height: auto; */
}

.Nav-brand-logo {
  display: block;
  background-position: -176px 0px;
  /* background-image: url(../../sprite.png); */
  background-size: 405px 379px;
  background-repeat: no-repeat;
  height: 35px;
  width: 176px;
  text-indent: -1000%;
}

.nav-notification {
  position: absolute;
  color: white;
  border-radius: 100%;
  background-color: orange;
  top: -5px;
  right: -5px;
  text-align: center;
  width: 20px;
  height: 20px;
  font-size: 14px;
}

.nav-mobile-sidemap-overlay {
  position: fixed;
  height: 100vh;
  width: 100vw;
  z-index: 100;
  top: 0px;
  left: 0px;
}

.nav-mobile-sidemap {
  z-index: 1000;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: #EDEDED;
  position: fixed;
  top: 55px;
  left: 0px;
  bottom: 0px;
}

.notification-item {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  border-bottom: 2px solid rgb(237, 237, 237);
}
.notification-item-valid-notread {
  /* background-color: #FFF5E5; */
  background-color: white;
}
.notification-item-valid-notread:hover {
  /* background-color: #FFE9C6; */
  background-color: #EDEDED;
}
.notification-item-valid-read {
  background-color: white;
}
.notification-item-valid-read:hover {
  background-color: #EDEDED;
}
.notification-icon {
  color: #acacac;
  cursor: pointer;
  margin-left: 15px;
  font-size: 28px;
}
.notification-icon:hover {
  color: #9b9b9b;
}
.notification-line-limit {
  /* line-height: 1em; */
  max-height: 4.5em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.search-box__component {
  border: 1px solid rgb(205, 205, 205);
  border-radius: 6px;
  padding: 1px;
  background-color: #f7f7f7;
  padding: 0px 7px 0px 10px;
  display: flex;
  align-items: center;
  width: 300px;
  height: 27px;
  position: relative;
}

.search-box__magnify-icon {
  color: #9b9b9b;
  font-size: 12px;
  margin-right: 5px;
}

.search-box__input {
  outline: 0;
  border: none;
  background-color: #f7f7f7;
  height: 25px;
  width: 100%;
  font-size: 14px;
}

.search-box__component input::-webkit-input-placeholder {
  font-size: 14px;
}

.search-box__remove-icon {
  color: #9b9b9b;
  font-size: 19px;
  cursor: pointer;
}

.search-box__results {
  z-index: 100;
  width: 300px;
  max-height: 50vh;
  background-color: white;
  position: absolute;
  top: 35px;
  left: 0;
  border-radius: 4px;
  box-shadow: 0px 0px 5px #888888;
  overflow: auto;
  overflow-x: hidden;
}

.search-box__no-users-found {
  display: flex;
  justify-content: center;
  padding: 10px 0px 10px 0px;
  font-size: 15px;
  overflow: hidden;
}

.search-box__result {
  display: flex;
  padding: 8px 12px;
  cursor: pointer;
}

.search-box__result-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.search-box__result:hover {
  background-color: #ededed;
}

.search-box__profile-pic {
  border-radius: 100%;
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.search-box__username {
  font-size: 14px;
  font-weight: bold;
  margin-left: 12px;
  word-wrap: break-word;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-box__display-name {
  font-size: 12px;
  margin-left: 12px;
  word-wrap: break-word;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-box__overlay {
  left: 0;
  top: 0;
  position: fixed;
  height: 100vh;
  width: 100vw;
  background-color: white;
  opacity: 0;
}

.search-box__mobile-div {
  background-color: white;
  height: 55px;
  display: flex;
  align-items: center;
  padding: 12px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.search-box__mobile-cancel {
  font-size: 14px;
  font-weight: 650;
  color: #acacac;
  cursor: pointer;
}

@media only screen and (max-width: 899px) {
  .search-box__component {
    width: 100%;
  }
  .search-box__results {
    width: 100%;
    position: fixed;
    top: 55px;
    box-shadow: none;
    border-radius: 0px;
  }
}
.profile-menu_black-ring {
  border: 1px solid black;
  border-radius: 50%;
  height: 31px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 31px;
}
/* body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: white !important;
} */

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ededed !important;
}
.display-linebreak {
    white-space: pre-line;
}

.category-page__category-item {
  padding: 5px 15px;
  font-size: 15px;
  border: 1px solid #bbbbbb;
  border-radius: 18px;
  margin-left: 10px;
  color: #9b9b9b;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
}

.category-page__article-item {
  width: 33%;
  padding: 12px;
  cursor: pointer;
}

@media only screen and (max-width: 600px) {
  .category-page__article-item {
    width: 50%;
  }
}

@media only screen and (max-width: 375px) {
  .category-page__article-item {
    width: 100%;
    padding: 12px 0px;
  }
}

.main-list {
    margin: 0 0 1.5em;
    padding: 0;
    counter-reset: item;
}

.main-list>li {
    margin: 2em 0 0 0;
    padding: 0 0 0 4em;
    text-indent: -1em;
    list-style-type: none;
    counter-increment: item;
}

.main-list>li:before {
    display: inline-block;
    width: 1em;
    padding-right: 1em;
    font-weight: bold;
    text-align: right;
    content: counter(item) ".";
}

.main-list>li>div>p {
    text-indent: 0em;
    /* padding-left: 1.25em; */
}

.sub-list>li {
    text-indent: 0em;
    font-size: 15px;
    padding-bottom: 5px;
}
.sharepanel__copy-button{
  display: flex;
  background-color: #838383;
  justify-content: center;
  cursor: pointer;
  align-items: center;
}

.sharepanel__copy-button:active {
  background-color: #636363;
}

.sharepanel-container button:focus{
  outline:0
}

.sharepanel__tooltip {
  position:relative; /* making the .tooltip span a container for the tooltip text */

}


.sharepanel__tooltip:hover:before {
  /* display:block; */
  opacity: 100;
}
.sharepanel__tooltip:before {
  z-index: 1000;
  content: attr(data-text); /* here's the magic */
  position:absolute;
  box-shadow: 0px 0px 2px #888888;

  
  /* vertically center */
  /* top:50%; */
  transform:translateY(105%);
  
  /* move to right */
  left:-30%;
  margin-left:15px; /* and add a small left margin */
  
  /* basic styles */
  /* width:200px; */
  font-size: 12px;
  padding:3px;
  border-radius:2px;
  background:#efefef;
  color: #333333;
  white-space: nowrap;
  /* text-align:center; */
  transition: all 200ms ease-in-out 600ms;
  opacity: 0;
  /* display: block; */
  /* display:none; */
}

.flip-horiz {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

/* .slick-prev {
  left: 25px;
} */

/* Hide button with opacity */

.slick-prev {
    opacity: 0;
    background-color: green;
    left: 0px;
    width: 25%;
    height: 100%;
    z-index: 1;
    position: absolute;
}

.slick-next {
    opacity: 0;
    background-color: brown;
    right: 0px;
    width: 25%;
    height: 100%;
    position: absolute;
    top: 0px;
}

.ImageCarousel-slide-no {
    flex: 0.5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ImageCarousel-slide-no>span {
    color: #dbdbdb;
    font-weight: bold;
    font-size: 14px;
}

.ImageCarousel-slide-no>span>span {
    color: #838383;
    font-weight: normal;
    font-size: 14px;
}

.ImageCarousel-navigate-btn {
    flex: 0.25;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.ImageCarousel-navigate-btn:hover {
    opacity: 0.8;
}

.ImageCarousel-navigate-btn:active {
    opacity: 1;
}
.Post-Header {
    display: flex;
}

.Post-Header-profile-picture-wrapper {
    display: inline-block;
}

.Post-Header-profile-picture {
    width: 36px;
    height: 36px;
    border-radius: 18px;
    /* border-width: 1px;
    border-color: red; */
}

.Post-Header-detail-wrapper {
    padding-left: 12px;
    display: inline-block;
}

.Post-Header-username {
    font-weight: bold;
    font-size: 14px;
}

.Post-Header-tagged-username {
    font-weight: bold;
    font-size: 12.5px;
    background-color: #EDEDED;
    padding-left: 8.5px;
    padding-right: 8.5px;
    padding-top: 4px;
    padding-bottom: 4px;
    border-radius: 100px;
    margin-right: 5.5px;
}

.Post-Header-tagged-username>span {
    font-size: 14px;
    color: #9b9b9b
}
.fullstory-detail-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
}

.load-more-comments-span {
    cursor: pointer;
}

.blog-overall {
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    padding-left: 13px; 
    padding-right: 5px; 
    margin-top: 10px;
}

.blog-overall p{
    font-size: 18px;
    color: #5D5D5D;
    padding-left: 33px;
    padding-right: 33px;
} 

.blog-overall img {
    width: 700px;
    margin-top: 24px;
    margin-bottom: 25px;
}

.blog-overall span {
    padding-left: 33px;
    padding-right: 33px;
};
.blog-overall ul {
    font-size: 1.125rem;
    padding-left: 0;
    list-style: none;
} 

.blog-overall hr {
    width: 97%;
    top: 20px;
    border-color: #CCCCCC;
    margin-bottom: 0;
} 

.blog-overall a {
    color: #ff9a00;
}
.blog-overall h1 {
    color: #3D3D3D;
    text-align: center;
    font-size: 35px;
    font-weight: bold;
    margin-top: 55px;
    padding-left: 50px;
    padding-right: 50px;
} 

.blog-overall h2 {
    color: #3D3D3D;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.1875;
    margin-top: 55px;
    margin-bottom: 15px;
    padding-left: 33px;
    padding-right: 33px;
} 
.blog-overall h3 {
    color: #3D3D3D;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.45;
    margin-bottom: 15px;
    padding-left: 33px;
    padding-right: 33px;
} 
.blog-overall .blog-div{
    border-radius: 5px; 
    border-style: solid; 
    border-color: #CDCDCD; 
    border-width: 1px 1px 1px 1px; 
    background-color: white; 
    padding-bottom: 33px 
}
.blog-overall .sharepanel-container{
    padding-left: 33px;
}
@media only screen and (max-width: 540px) {
    .blog-overall {
        padding-left: 0px; 
        padding-right: 0px;
    }
    .blog-overall .blog-div {
        border-radius: 0; 
        border-width: 1px 0px 0px 0px; 
        background-color: white; 
        padding-bottom: 29px 
    }
    .blog-overall p{
        padding-left: 29px;
        padding-right: 29px;
    }
    .blog-overall h1 {
        font-size: 33px;    
        margin-top: 40px;
        padding-left: 35px;
        padding-right: 35px;
    } 
    
    .blog-overall h2 {
        padding-left: 29px;
        padding-right: 29px;
    } 
    .blog-overall h3 {
        padding-left: 29px;
        padding-right: 29px;
    } 
    .blog-overall hr {
        width: 92%;
        border-color: #C0C0C0;
    } 
    .blog-overall .sharepanel-container{
        padding-left: 29px;
    }
  }








.Comments-username {
    font-size: 14px;
    font-weight: bold;
}

.Comments-text {
    font-size: 14px;
}

.Comments-text>span {
    font-size: 14px;
    color: #ff9a00;
}

.Comments-text>a {
    font-size: 14px;
    color: #ff9a00;
}



.PostPage-detail-container {
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* .transparent-button {
    background-color: transparent;
    outline: none;
    border-width: 0px;
} */

.padding-horiz-22 {
    padding-left: 22px;
    padding-right: 22px;
}

.load-more-comments-span {
    cursor: pointer;
    font-weight: bold;
    color: #9b9b9b;
    font-size: 14px;
}

.PostPage-caption {
    font-size: 14px;
}

.PostPage-caption>span {
    font-size: 14px;
    color: #ff9a00;
}

.PostPage-caption>a {
    font-size: 14px;
    color: #ff9a00;
}

.icon-btn {
    cursor: pointer
}



/* .PostPage-username {
    font-size: 15px
}

.PostPage-tagged-icon {
    color: #9b9b9b
}

.PostPage-tagged-username {
    font-size: 14px;
}

.PostPage-location-icon {
    color: #9b9b9b
} */
.Post-Panel-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  height: 42px;
  border-style: solid;
  border-width: 1px 0px 1px 0px;
  border-color: #dbdbdb;
  /* background-color: green; */
}

.Post-Panel-share-container {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  padding-right: 42px;
  padding-top: 14px;
  padding-bottom: 9px;
}

.Post-Panel-share {
  height: 27px;
  display: flex;
  justify-items: center;
  cursor: pointer;
}

/* .Post-Panel-share:hover {
    background-color: yellow;
} */

.Post-Panel-share-span:hover {
  /* font-weight: bold; */
  color: black;
}

.Post-Panel-share-span {
  color: #4a4a4a;
}

.Post-Panel-share-span > span {
  color: #4a4a4a;
  padding-left: 5px;
}

.txt:hover {
    text-decoration: underline;
}

