/* font-family: 'Archivo', sans-serif;
font-family: 'Inconsolata', monospace;
font-family: 'Merriweather', serif;
font-family: 'Poppins', sans-serif;
font-family: 'Roboto', sans-serif;
font-family: 'Signika', sans-serif; */ :root {
  --background-color: rgb(252, 251, 251);
  --font-color: rgb(0, 0, 0);
  --secod-font-color: rgb(101, 101, 101);
  --secondary-font-color: rgb(179, 179, 179);
  --background-on-hover: rgb(215, 214, 214);
}
.dark-mode {
  --background-color: rgb(15, 15, 15);
  --font-color: rgb(254, 252, 252);
  --secod-font-color: rgb(197, 195, 195);
  --secondary-font-color: rgb(108, 106, 106);
  --background-on-hover: rgba(52, 51, 51, 0.834);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
p {
  font-family: 'Roboto', sans-serif;
}
.container {
  display: flex;
  /* gap: 10px; */
  /* overflow-x: hidden; */
}
.middle-section {
  display: flex;
  justify-content: space-evenly;
  /* width: 100%; */
}
a {
  text-decoration: none;
  color: var(--font-color);
  font-family: 'Signika', sans-serif;
  font-size: 0.9rem;
  font-weight: 550;
}
body {
  background-color: var(--background-color);
  overflow-x: hidden;
  /* border: 1px solid red; */
  min-height: 100vh;
  width: 100vw;
  overflow-x: hidden;
}
/* styling navbar section  */
.navbar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100vh;
  width: 245px;
  /* justify-content: space-between; */
  background-color: var(--background-color);
  padding-top: 20px;
  padding-bottom: 10px;
  padding-inline: 10px;
  border-right: 0.1px solid rgba(76, 75, 75, 0.737);
  position: sticky;
  top: 0px;
}
@media (max-width:750px) {
  .container .navbar {
    flex-direction: row;
    background-color: var(--background-color);
    position: fixed;
    z-index: 1000;
    height: 60px;
    bottom: -1px;
    top: auto;
    gap: 0;
    border-right: none;
    width: 100vw;
    justify-content: space-around;
    align-items: center;
    padding: 0;
    box-shadow: -1px 14px 20px 4px black;
  }
  .middle-section .post-section {
    padding: 40px 5px;
  }
  .navbar a {
    display: none;
  }
  .navbar .sub-section {
    padding: 10px 10px;
  }
  #hidden {
    display: none;
  }
  #hidden1 {
    display: none;
  }
  #hidden2 {
    display: none;
  }
  .instagram-text-logo {
    display: none;
  }
}
@media (max-width:1198px) {
  .navbar .sub-section a {
    display: none;
  }
  .navbar .menu-section a {
    display: none;
  }
  .navbar .sub-section {
    gap: 0;
  }
  .instagram-text-logo {
    display: none;
    /* position: absolute; */
  }
  .navbar {
    width: 79px;
  }
}
@media (max-width:1003px) {
  .follow-section {
    display: none;
  }
  .middle-section .post-area {
    padding-inline: 0;
  }
}
@media (max-width:690px) {
  .post-section .story-section {
    justify-content: space-evenly;
  }
  .story-section #story-7 {
    display: none;
  }
}
@media (max-width:562px) {
  .story-section #story-6 {
    display: none;
  }
}
@media (max-width:482px) {
  .story-section #story-5 {
    display: none;
  }
}
@media (max-width:402px) {
  .story-section #story-4 {
    display: none;
  }
}
@media (max-width:323px) {
  #story-3 {
    display: none;
  }
}
@media (max-width:259px) {
  #story-2 {
    display: none;
  }
}
.instagram-text-logo {
  width: 150px;
  margin: 5px 30px;
  cursor: pointer;
}
.instagram-text-logo img {
  width: 100%;
  /* filter: brightness(5); */
}
.sub-section {
  display: flex;
  align-items: center;
  gap: 25px;
  border-radius: 5px;
  cursor: pointer;
  padding: 10px 20px;
  transition: all 0.2s ease;
}
.sub-section:hover {
  background-color: var(--background-on-hover);
}
.sub-section:hover i {
  transform: scale(1.07);
  transition: all 0.2s ease;
}
.sub-section:hover a {
  font-weight: 600;
}
.sub-section:hover .profile-img {
  transform: scale(1.07);
  transition: all 0.2s ease;
}
.sub-section i {
  font-size: 1.3rem;
  color: var(--font-color);
  transition: all 0.2s ease;
}
.profile-img {
  width: 22px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.profile-img img {
  width: 100%;
  border-radius: 50%;
}
.menu-section {
  display: flex;
  gap: 25px;
  align-items: center;
  /* position: absolute;
    bottom: 10px; */
  margin-top: 23px;
  border-radius: 5px;
  cursor: pointer;
  padding: 10px 20px;
  transition: all 0.3s ease;
}
.menu-section:hover {
  background-color: var(--background-on-hover);
}
.menu-section:hover i {
  transform: scale(1.07);
  transition: all 0.2s ease;
}
.menu-section i {
  color: var(--font-color);
  font-size: 1.2rem;
  transition: all 0.2s ease;
}
/* post section started frome here */
.post-section {
  padding: 20px 20px;
  /* border: 2px solid pink; */
  background-color: var(--background-color);
}
.story-section {
  display: flex;
  gap: 10px;
  justify-content: center;
  /* flex-wrap: wrap; */
  /* width: 100%;
    overflow:scroll; */
  /* overflow-x: auto; */
}

.add-story .story-image {
  border: 2px dashed #aaa;
  background-color: #f0f0f0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-story .add-icon {
  font-size: 2rem;
  color: #555;
  font-weight: bold;
  line-height: 1;
}

.add-story span {
  color: #555;
}


.story {
  overflow: hidden;
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.story-image {
  /* height: 60px; 
    width: 55px; */
  background-color: #4158D0;
  background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 65px;
  width: 65px;
  background-image: cover;
}
.story-image img {
  width: 90%;
  height: 90%;
  border: 2px solid var(--background-color);
  border-radius: 50%;
  background-image: cover;
  background-position: center;
  background-size: cover;
}
.story span {
  font-family: 'Roboto', sans-serif;
  color: var(--font-color);
  font-size: 0.8rem;
  font-weight: 500;
}
.post-area {
  margin-top: 50px;
  padding-inline: 80px;
  margin-bottom: 50px;
}
.post-main {
  color: var(--font-color);
}
.post-image {
  width: 40px;
  height: 40px;
  background-color: #4158D0;
  background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.post-image img {
  width: 90%;
  height: 90%;
  border: 2px solid var(--background-color);
  border-radius: 50%;
}
.post-username {
  color: var(--font-color);
  font-size: 1rem;
}
.one-day {
  font-size: 0.8rem;
  color: var(--secod-font-color);
}
.post-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-inline: 5px;
}
.post-header i {
  color: var(--font-color);
  cursor: pointer;
  transition: all 0.2s ease;
	margin-right: 25px;
}
.post-header i:hover {
  color: var(--secondary-font-color);
	
}
.post-left-header {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.post-left-header i {
  color: rgb(85, 85, 250);
}
.post-left-header i:hover {
  color: rgb(30, 30, 150);
}
.post-main-image {
  margin-top: 10px;
  width: 100%;
}
.post-main-image img {
  width: 100%;
  border-radius: 1px;
}
.post-fotter {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
  padding-inline: 5px;
	    margin-right: 25px;
}
.post-fotter i {
  font-size: 1.2rem;
  cursor: pointer;
  /* font-weight: 2000; */
  transition: all 0.2s ease;
}
.post-fotter i:hover {
  color: var(--secondary-font-color);
}
.post-fotter-left {
  display: flex;
  gap: 20px;
	margin-left: 20px;
}
.post-description {
  margin-block: 3px;
  padding-inline: 5px;
}
.post-liked {
  margin-block: 7px;
  font-size: 0.8rem;
  color: var(--secod-font-color);
  cursor: pointer;
}
.title {
  font-size: 0.9rem;
  color: var(--secod-font-color);
  cursor: pointer;
}
.title span {
  color: var(--font-color);
  font-weight: bold;
	
}
.comments {
  margin-block: 5px;
  font-size: 0.8rem;
  color: var(--secod-font-color);
  cursor: pointer;
}
/* profile follow section startted fome here */
.profile-follow-image {
  width: 40px;
  height: 40px;
}
.profile-follow-image img {
  width: 100%;
  border-radius: 50%;
  height: 100%;
}
.profile-follow-content {
  color: var(--font-color)
}
.profile-follow-left {
  display: flex;
  gap: 20px;
  cursor: pointer;
}
.profile-follow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-block: 7px;
}
.profile-follow-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.follow {
  color: rgb(19, 85, 240);
  font-weight: 20;
  font-size: 0.7rem;
  font-weight: 550;
  line-height: 0.1;
  transition: all 0.1s ease;
}
.follow:hover {
  color: var(--font-color);
}
.profile-id {
  color: var(--font-color);
  font-size: 0.8rem;
  font-weight: 550;
}
.profile-name {
  color: var(--secod-font-color);
  font-size: 0.7rem;
  margin-top: 5px;
  font-weight: 100;
}
.suggestion {
  color: var(--secod-font-color);
  font-size: 0.9rem;
  font-weight: 500;
}
.see-all {
  color: var(--secod-font-color);
  font-size: 0.8rem;
  transition: all 0.1s ease;
}
.see-all:hover {
  color: var(--secondary-font-color);
}
.follow-section {
  margin-top: 46px;
  width: 320px;
  padding: 10px 20px;
}
.suggestion-follow {
  display: flex;
  justify-content: space-between;
  color: var(--font-color);
  margin-block: 10px;
}
.copyrights {
  color: var(--secod-font-color);
  font-size: 0.9rem;
  margin-top: 50px;
  text-align: center;
}
.profile-foolow-hovering {
  padding: 5px;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.1s ease-in-out;
}
.profile-foolow-hovering:hover {
  background-color: var(--background-on-hover);
}
#swipeInfo {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  display: none;
	z-index: 999;
}




#main {
  position: fixed;
  top: 0;
  left: 240px;
  bottom: 0;
  right: 0;
  z-index: 1;
  transition-duration: 0.3s;
  padding-left: 4px;
  box-shadow: inset 4px 0 0 #EFEFEF, inset 5px 0 0 #e2e2e2;
}
#main .overlay {
  position: absolute;
  top: 0;
  left: -10px;
  right: 0;
  bottom: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 5;
  opacity: 0;
  transition-duration: 0s;
  transition-property: opacity;
}
.show-main-overlay #main .overlay {
  opacity: 1;
  bottom: 0;
  transition-duration: 0.5s;
}
#main .header {
  padding: 50px 60px;
  border-bottom: 1px solid #EFEFEF;
  overflow: hidden;
}
#main .header .page-title {
  display: block;
}
#main .header .page-title .sidebar-toggle-btn {
  width: 0;
  margin-top: 1px;
  padding: 11px 0 0 0;
  float: left;
  position: relative;
  display: block;
  cursor: pointer;
  transition-duration: 0.3s;
  transition-delay: 0.5s;
  opacity: 0;
  margin-right: 0;
}
.show-sidebar #main .header .page-title .sidebar-toggle-btn {
  transition-delay: 0s;
}
#main .header .page-title .sidebar-toggle-btn .line {
  height: 3px;
  display: block;
  background: #888;
  margin-bottom: 4px;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
}
.show-sidebar #main .header .page-title .sidebar-toggle-btn .line-angle1 {
  transform: rotate(-120deg);
}
.show-sidebar #main .header .page-title .sidebar-toggle-btn .line-angle2 {
  transform: rotate(120deg);
}
#main .header .page-title .sidebar-toggle-btn .line-angle1 {
  width: 8px;
  margin: 0;
  position: absolute;
  top: 15px;
  left: -11px;
  transform: rotate(-60deg);
}
#main .header .page-title .sidebar-toggle-btn .line-angle2 {
  width: 8px;
  margin: 0;
  position: absolute;
  top: 21px;
  left: -11px;
  transform: rotate(60deg);
}
#main .header .page-title .icon {
  font-size: 15px;
  margin-left: 20px;
  position: relative;
  top: -5px;
  cursor: pointer;
}
#main .header .search-box {
  float: right;
  width: 150px;
  height: 40px;
  position: relative;
}
#main .header .search-box input,
#main .header .search-box .icon {
  transition-duration: 0.3s;
}
#main .header .search-box input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  text-indent: 15px;
  height: 40px;
  z-index: 2;
  outline: none;
  color: #999;
  background: transparent;
  border: 2px solid #EFEFEF;
  border-radius: 5px;
  transition-timing-function: cubic-bezier(0.3, 1.5, 0.6, 1);
}
#main .header .search-box input:focus {
  color: #333;
  border-color: #d6d6d6;
  width: 150%;
}
#main .header .search-box input:focus ~ .icon {
  opacity: 1;
  z-index: 3;
  color: #61C7B3;
}
#main .header .search-box .icon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
  text-align: center;
  line-height: 40px;
  z-index: 1;
  cursor: pointer;
  opacity: 0.5;
}
#main .action-bar {
  padding: 20px 60px;
  border-bottom: 1px solid #EFEFEF;
  overflow: hidden;
}
#main .action-bar li {
  float: left;
  margin-right: 10px;
}
#main #main-nano-wrapper {
  position: absolute;
  top: 60px;
  bottom: 0;
  height: auto;
}
#main .message-list {
  display: block;
}
#main .message-list li {
  position: relative;
  display: block;
  height: 50px;
  line-height: 50px;
  cursor: default;
  transition-duration: 0.3s;
  /*
			.col-1 {
				width: 140px;
				text-align: right;
				padding-right: 37px;
				padding-top: 15px;

				.checkbox-wrapper, .icon, .dot {
					float: right;
					display: block;
				}

				.icon {
					margin-left: 10px;
					font-size: 20px;
				}

				.dot {
					border: 5px solid transparent;
					border-radius: 100px;
					margin-right: 24px;
					margin-top: 5px;
				}
			}
			.col-2 {
				width: 270px;
			}
			.col-3 {
				position: absolute;
				top: 0;
				left: 390px; // Covers previous cols
				right: 120px;

				.grey {
					opacity: .7;
				}
			}
			.col-4 {
				width: 120px;
				padding-left: 20px;
				float: right;
			}
			*/
}
#main .message-list li:hover,
#main .message-list li.active,
#main .message-list li.selected {
  background: #EFEFEF;
  transition-duration: 0.05s;
}
#main .message-list li.active,
#main .message-list li.active:hover {
  box-shadow: inset 5px 0 0 #61C7B3;
}
#main .message-list li.unread {
  font-weight: 600;
  color: #555;
}
#main .message-list li .col {
  float: left;
  position: relative;
}
#main .message-list li.blue-dot .col-1 .dot {
  border-color: #1BC3E1;
}
#main .message-list li.orange-dot .col-1 .dot {
  border-color: #E2A917;
}
#main .message-list li.green-dot .col-1 .dot {
  border-color: #9AE14F;
}
#main .message-list li .col-1 {
  width: 400px;
}
#main .message-list li .col-1 .star-toggle,
#main .message-list li .col-1 .checkbox-wrapper,
#main .message-list li .col-1 .dot {
  display: block;
  float: left;
}
#main .message-list li .col-1 .dot {
  border: 4px solid transparent;
  border-radius: 100px;
  margin: 22px 26px 0;
  height: 0;
  width: 0;
  line-height: 0;
  font-size: 0;
}
#main .message-list li .col-1 .checkbox-wrapper {
  margin-top: 15px;
  margin-right: 10px;
}
#main .message-list li .col-1 .star-toggle {
  margin-top: 15px;
}
#main .message-list li .col-1 .title {
  position: absolute;
  top: 0;
  left: 140px;
  right: 0;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
#main .message-list li .col-2 {
  position: absolute;
  top: 0;
  left: 400px;
  right: 0;
  bottom: 0;
}
#main .message-list li .col-2 .subject,
#main .message-list li .col-2 .date {
  position: absolute;
  top: 0;
}
#main .message-list li .col-2 .subject {
  left: 0;
  right: 200px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
#main .message-list li .col-2 .date {
  right: 0;
  width: 200px;
  padding-left: 80px;
}
#main .load-more-link {
  display: block;
  text-align: center;
  margin: 30px 0 100px 0;
}
#message {
  position: fixed;
  top: 0;
  left: 60%;
  bottom: 0;
  width: 40%;
  z-index: 5;
  transform: translateX(200%);
  transition-duration: 0.5s;
  padding: 50px 30px;
  background: #EFEFEF;
}
.show-message #message {
  transition-duration: 0.3s;
}
#message .header {
  margin-bottom: 30px;
  padding: 0;
}
#message .header .page-title {
  display: block;
  float: none;
  margin-bottom: 20px;
}
#message .header .page-title .icon {
  margin-top: 4px;
  margin-right: 10px;
}
#message .header .grey {
  margin-left: 10px;
  color: #999;
}
#message #message-nano-wrapper {
  position: absolute;
  top: 165px;
  bottom: 0;
  height: auto;
  left: 0;
  right: 0;
  width: auto;
}
#message .message-container {
  padding: 0 30px;
}
#message .message-container li {
  padding: 25px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #FFF;
  margin: 0 0 30px 0;
  position: relative;
}
#message .message-container li:hover .details .left .arrow {
  background: #61C7B3;
  border: 0px solid #61C7B3;
}
#message .message-container li:hover .details .left .arrow.orange {
  background: #E2A917;
  border: 0px solid #E2A917;
}
#message .message-container li .details {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  overflow: hidden;
}
#message .message-container li .details .left {
  float: left;
  font-weight: 600;
  color: #888;
  transition-duration: 0.3s;
}
#message .message-container li .details .left .arrow {
  display: inline-block;
  position: relative;
  height: 2px;
  width: 20px;
  background: rgba(0, 0, 0, 0.15);
  vertical-align: top;
  margin-top: 12px;
  margin: 12px 20px 0 15px;
  border: 0px solid rgba(0, 0, 0, 0.15);
  transition-duration: 0.3s;
}
#message .message-container li .details .left .arrow:after {
  position: absolute;
  top: -4px;
  left: 100%;
  height: 0;
  width: 0;
  border: inherit;
  border-width: 7px;
  border-style: solid;
  content: '';
  border-right: 0;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-top-width: 5px;
  border-bottom-width: 5px;
}
#message .message-container li .details .right {
  float: right;
  color: #999;
}
#message .message-container li .message {
  margin-bottom: 40px;
}
#message .message-container li .message p:last-child {
  margin-bottom: 0;
}
#message .message-container li:hover .tool-box .red-hover {
  color: #D23B3D;
  border-color: #D23B3D;
}
#message .message-container li:hover .tool-box .red-hover:hover {
  color: #791C1E;
  border-color: #791C1E;
}
#message .message-container li .tool-box {
  position: absolute;
  bottom: 0;
  right: 0;
  border: 0px solid #DDDFE1;
  border-top-width: 1px;
  border-left-width: 1px;
  padding: 8px 10px;
  transition-duration: 0.3s;
}
#message .message-container li .tool-box a {
  margin-right: 10px;
}
#message .message-container li .tool-box a:last-child {
  margin-right: 0;
}
.show-message #message {
  transform: none;
}
.show-message #main {
  margin-right: 40%;
}
@media only screen and (min-width: 1499px) {
  #main .overlay {
    display: none;
  }
}
@media only screen and (max-width: 1500px) {
  .show-message #main {
    margin-right: 0;
  }
  .show-message #message {
    left: 50%;
    width: 50%;
  }
}
@media only screen and (max-width: 1024px) {
  #sidebar {
    transform: translateX(-100%);
  }
  #main {
left: 0px;
	  box-shadow: none;
  }
  #main .header .page-title .sidebar-toggle-btn {
    margin-right: 20px;
    opacity: 1;
    width: 20px;
  }
  .show-sidebar #sidebar {
    transform: none;
  }
  .show-sidebar #main {
    transform: translateX(300px);
  }
  .show-message #main {
    margin-right: 0;
  }
  .show-message #message {
    left: 20%;
    width: 80%;
  }
}
@media only screen and (max-width: 600px) {
  #main .header .search-box {
    float: none;
    width: 100%;
    margin-bottom: -110px;
    margin-top: 70px;
  }
  #main .header .search-box input,
  #main .header .search-box input:focus {
    width: 100%;
  }
  #main .header .page-title {
    margin-bottom: 50px;
  }
  #main #main-nano-wrapper {
    position: absolute;
    top: 60px;
    bottom: 0;
    height: auto;
  }
  #main .message-list li .col-1 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 120px;
    width: auto;
  }
  #main .message-list li .col-2 {
    right: 0;
    left: auto;
    width: 120px;
  }
  #main .message-list li .col-2 .date {
    padding-left: 0;
    position: static;
  }
  #main .message-list li .col-2 .subject {
    display: none;
  }
}
/**
 * Nano scroll stuff
*/
.nano {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.nano > .nano-content {
  position: absolute;
  overflow: scroll;
  overflow-x: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.nano > .nano-content:focus {
  outline: none;
}
.nano > .nano-content::-webkit-scrollbar {
  visibility: hidden;
}
.has-scrollbar > .nano-content::-webkit-scrollbar {
  visibility: visible;
}
.nano > .nano-pane {
  background: rgba(117, 117, 117, 0.2);
  position: absolute;
  width: 8px;
  right: 8px;
  top: 8px;
  bottom: 8px;
  visibility: hidden\9;
  /* Target only IE7 and IE8 with this hack */
  opacity: 0.01;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.nano > .nano-pane > .nano-slider {
  background: #444;
  background: #C7C7C7;
  position: relative;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-property: background;
  -moz-transition-property: background;
  -o-transition-property: background;
  transition-property: background;
}
.nano > .nano-pane:hover > .nano-slider,
.nano > .nano-pane.active > .nano-slider {
  background: #A6A6A6;
}
.nano:hover > .nano-pane,
.nano-pane.active,
.nano-pane.flashed {
  visibility: visible\9;
  /* Target only IE7 and IE8 with this hack */
  opacity: 0.99;
}



/* Modal Grundlayout */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1000;
}

/* Das Bild im Modal */
.image-modal img {
    max-width: 100%;
    max-height: 100vh;
    border-radius: 10px;
}

/* Buttons */
.modal-controls {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.modal-controls button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 10px 15px;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
}

.modal-buttons a i {
	
	color: white;
	opacity: 0.7;
	font-size: 30px;
}
.modal-buttons a i:hover {
	
	opacity: 1;
}
/* Navigation Pfeile */
.modal-nav {
    bottom: 10%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    cursor: pointer;
    padding: 10px;
    user-select: none;
    text-align: center;
}

.modal-nav.left {
    left: 10px;
}

.modal-nav.right {
    right: 10px;
}


/* Modal Styles */
.modal {
  display: none; /* Initially hidden */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Background overlay */
  padding-top: 0px;
}

.modal-content-create {
	background: white;
  margin: 1% auto;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
}

.close-btn {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 20px;
}

.close-btn:hover,
.close-btn:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.close-btn-comment {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 20px;
}

.close-btn-comment:hover,
.close-btn-comment:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.close-btn-image {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 20px;
}

.close-btn-image:hover,
.close-btn-image:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Additional styling for the drop area, text, and spellcheck components can go here */
#drop-area {
  border: 2px dashed #aaa;
  padding: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ececec;
  border-radius: 8px;
  min-height: 2in;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
}

.drop-text {
  font-size: 18px;
  color: #888;
}

#dropped-content {
  width: calc(100% - 0px);
  height: 100px;
  min-height: 69px;
  max-height: 312px;
  margin-top: 20px;
  font-size: 16px;
  padding: 10px;
  border: 1px solid #555;
  resize: vertical;
  background-color: #ececec;
  color: #505050;
  outline: none;
  border-radius: 8px;
}

#dropped-content::-webkit-scrollbar {
  width: 8px;
}

#dropped-content::-webkit-scrollbar-track {
  background-color: #444;
}

#dropped-content::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px;
}

#dropped-content::-webkit-scrollbar-thumb:hover {
  background-color: #aaa;
}

.drop-icon i {
  color: #888;
  font-size: 4.5rem;
}

/* Preview Styles */
.preview-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.preview-item {
  position: relative;
  width: 100px;
  height: 100px;
}

.preview-item img,
.preview-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.remove-preview {
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 2px 5px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 50%;
}

#chars {
  color: #888;
  float: right;
}

#spellcheck {
  display: flex;
  align-items: center;
  gap: 5px;
	margin-bottom: 15px;
}

.smiley-container {
    position: relative;
}

#smiley-selection {
    position: absolute;
        top: 30px;
    left: 25%;
    width: 50%;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    display: none;
	    text-align: center;
}

.smiley {
    display: inline-block;
    margin: 5px;
    cursor: pointer;
    font-size: 20px;
}

.smiley:hover {
    background-color: #f0f0f0;
    border-radius: 5px;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.checkbox-group > * {
  margin: 0.5rem 0.5rem;
}

.checkbox-group-legend {
  font-size: 1.5rem;
  font-weight: 700;
  color: #9c9c9c;
  text-align: center;
  line-height: 1.125;
  margin-bottom: 1.25rem;
}

.checkbox-input {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.checkbox-input:checked + .checkbox-tile {
  border-color: #2260ff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: #2260ff;
}
.checkbox-input:checked + .checkbox-tile:before {
  transform: scale(1);
  opacity: 1;
  background-color: #2260ff;
  border-color: #2260ff;
}
.checkbox-input:checked + .checkbox-tile .checkbox-icon, .checkbox-input:checked + .checkbox-tile .checkbox-label {
  color: #2260ff;
}
.checkbox-input:focus + .checkbox-tile {
  border-color: #2260ff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), 0 0 0 4px #b5c9fc;
}
.checkbox-input:focus + .checkbox-tile:before {
  transform: scale(1);
  opacity: 1;
}

.checkbox-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 7rem;
  min-height: 7rem;
  border-radius: 0.5rem;
  border: 2px solid #b5bfd9;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.15s ease;
  cursor: pointer;
  position: relative;
}
.checkbox-tile:before {
  content: "";
  position: absolute;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #b5bfd9;
  background-color: #fff;
  border-radius: 50%;
  top: 0.25rem;
  left: 0.25rem;
  opacity: 0;
  transform: scale(0);
  transition: 0.25s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' fill='%23FFFFFF' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='none'%3E%3C/rect%3E%3Cpolyline points='216 72.005 104 184 48 128.005' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.checkbox-tile:hover {
  border-color: #2260ff;
}
.checkbox-tile:hover:before {
  transform: scale(1);
  opacity: 1;
}

.checkbox-icon {
  transition: 0.375s ease;
  color: #494949;
}
.checkbox-icon svg {
  width: 3rem;
  height: 3rem;
}

.checkbox-label {
  color: #707070;
  transition: 0.375s ease;
  text-align: center;
}

/* CSS */
.button-82-pushable {
  position: relative;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  outline-offset: 4px;
  transition: filter 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
	width: 100%;
}

.button-82-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: hsl(0deg 0% 0% / 0.25);
  will-change: transform;
  transform: translateY(2px);
  transition:
    transform
    600ms
    cubic-bezier(.3, .7, .4, 1);
}

.button-82-edge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: linear-gradient(
    to left,
    hsl(340deg 100% 16%) 0%,
    hsl(340deg 100% 32%) 8%,
    hsl(340deg 100% 32%) 92%,
    hsl(340deg 100% 16%) 100%
  );
}

.button-82-front {
  display: block;
  position: relative;
  padding: 12px 27px;
  border-radius: 12px;
  font-size: 1.1rem;
  color: white;
  background: hsl(345deg 100% 47%);
  will-change: transform;
  transform: translateY(-4px);
  transition:
    transform
    600ms
    cubic-bezier(.3, .7, .4, 1);
}

@media (min-width: 768px) {
  .button-82-front {
    font-size: 1.25rem;
    padding: 12px 42px;
  }
}

.button-82-pushable:hover {
  filter: brightness(110%);
  -webkit-filter: brightness(110%);
}

.button-82-pushable:hover .button-82-front {
  transform: translateY(-6px);
  transition:
    transform
    250ms
    cubic-bezier(.3, .7, .4, 1.5);
}

.button-82-pushable:active .button-82-front {
  transform: translateY(-2px);
  transition: transform 34ms;
}

.button-82-pushable:hover .button-82-shadow {
  transform: translateY(4px);
  transition:
    transform
    250ms
    cubic-bezier(.3, .7, .4, 1.5);
}

.button-82-pushable:active .button-82-shadow {
  transform: translateY(1px);
  transition: transform 34ms;
}

.button-82-pushable:focus:not(:focus-visible) {
  outline: none;
}

.swipe-icon {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9999;
  pointer-events: none;
  color: red;
}

/* Overlay Styles */
.overlays {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  opacity: 0;
  /*Transition for opacity -  Opacity transition: duration (1s) can be adjusted for timing */
  transition: opacity 1s ease;
}

/* Show Overlay on Hover */
.post-main:hover .overlays {
  opacity: 0.5;
}


.comment-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content-comment {
  background: white;
  margin: 10% auto;
  padding: 20px;
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

#modal-comments {
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 20px;
}

#comment-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#comment-input {
  resize: vertical;
  height: 80px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

#comment-form button {
  padding: 10px;
  background-color: #007bff;
  border: none;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}


/* Icon Styles */
.icon {
  color: white;
  font-size: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
	
}

/* Change Icon Color on Hover */
.fa-user:hover {
  color: #eee;
}


.nav-hidden {
  display: none;
}
.nav-hidden i {
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--font-color);
  transition: all 0.2s ease;
}
.nav-hidden i:hover {
  color: var(--secondary-font-color);
}
.nav-hidden-logo {
  width: 136px;
  cursor: pointer;
}
.nav-hidden-logo img {
  width: 100%;
}
.nav-hide-2 {
  display: flex;
  gap: 30px;
}
@media (max-width:750px) {
  .nav-hidden {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-inline: 10px;
    align-items: center;
  }
  .middle-section .post-section {
    padding: 0;
    padding-bottom: 20px;
  }
}