/**** start of Standard ****/

body {
  font-family: sans-serif;
  -webkit-text-size-adjust: none;
}

input:focus, select:focus, textarea:focus, button:focus {
    outline: none;
}

div, section, main {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

span, div, section, main {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all;
  word-break: break-word;
}

img {
	border: none;
}

h1, h2, h3, h4, h5, h6 {
 margin: 0px;
 padding: 0px;
 font-size: 25px;

}

p {
  color: #4a4a4a;
  font-size: 18px;
  line-height: 24px;
}

input[type="checkbox"] {
  transform: scale(1.2);
  accent-color: #007bff; /* optional */
}

.custom-h1 {
  margin-bottom: 17px;
  font-size: 23px;
  color: #333333;
}


.hide {
	display: none;
}



/**** End of Standard ****/


.pad {
  border: 1px solid #C9CAD4;
  box-shadow: 1px 1px 1px #B3B3B3;
  padding: 8px;
  background-color: #ffffff;
}

.pad-reduced {
  border: 1px solid #f7f7f7;
  box-shadow: 1px 1px #e2e2e2;
  padding: 6px;
  background-color: #ffffff;
}

.access-pad {
  padding: 15px;
  margin-top: 30px;
}

.general-pad {
  border: 1px solid #fafafa;
  box-shadow: 1px 1px #e2e2e2;
  padding: 6px;
  background-color: #ffffff;
  padding: 15px;
}


.container {
	width: 550px;
	margin-left: auto;
	margin-right: auto;
}

.navigation {
	width: 100%;
	display: flex;
  align-items: center;
}

.navigation-inner:nth-child(1) { flex-basis: 30%; }
.navigation-inner:nth-child(2) { flex-basis: 40%; }
.navigation-inner:nth-child(3) { flex-basis: 30%; }


.navigation-inner-left {
  display: flex;
  align-items: center;
}


.navigation-inner-middle {
  display: flex;
  align-items: center;
  justify-content: center; 
}


.navigation-inner-right {
	display: flex;
  align-items: center;
  justify-content: flex-end; 
}


.navigation-inner-left-inner {
  display: flex;
  align-items: center;
}

.navigation-inner-left-inner:nth-child(1) { flex-basis: 23% }
.navigation-inner-left-inner:nth-child(2) { flex-basis: 77% }


.menu-profile-photo a {
  display: flex;
  align-items: center;
  height: 100%;
}


.clickable-logo {
	font-family: impact;
	font-size: 23px;
	text-decoration: none;
	color: #26b2e0;
}

.logo {
  font-family: impact;
  font-size: 23px;
  color: #26b2e0;
}

.menu-bars {
	font-size: 22px;
	cursor: pointer;
}


.search-icon {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px;

  /* SCALE HERE */
  transform: scale(1.2);
  transform-origin: center;

}

/* Circle (lens) */
.search-icon::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 3px solid #000;
  border-radius: 50%;
  top: 0;
  left: 0;
  box-sizing: border-box;
}

/* Handle (attached) */
.search-icon::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 3px;
  background: #000;
  border-radius: 2px;

  /* KEY PART */
  top: 10px;     /* touches circle edge */
  left: 10px;    /* starts inside circle border */
  transform: rotate(45deg);
  transform-origin: left center;
}


.menu-search-icon-top {
	font-size: 22px;
	cursor: pointer;
  display: none;
  margin-right: 4px;
}


.store-logo {
	color: #c92d24;
}

.posts-logo {
	color: #eb4f46;
}



.button {
  background-color: #F8F8F8;
  background-image: -webkit-linear-gradient(top,#f8f8f8,#f1f1f1);
  background-image: -moz-linear-gradient(top,#f8f8f8,#f1f1f1);
  background-image: -ms-linear-gradient(top,#f8f8f8,#f1f1f1);
  background-image: -o-linear-gradient(top,#f8f8f8,#f1f1f1);
  background-image: linear-gradient(top,#f8f8f8,#f1f1f1);
  border: 1px solid #cfcfcf;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  line-height: 27px;
  padding: 0 8px;
  text-decoration: none;
  font-size: 18px;
  color: #000;
}



.site-button {
  background-color: #d45953;
  background-image: -webkit-linear-gradient(top,#eb4f46,#d4463d);
  background-image: -moz-linear-gradient(top,#eb4f46,#d4463d);
  background-image: -ms-linear-gradient(top,#eb4f46,#d4463d);
  background-image: -o-linear-gradient(top,#eb4f46,#d4463d);
  background-image: linear-gradient(top,#eb4f46,#d4463d);
  border: 1px solid #cc4a43;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 7px;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  line-height: 27px;
  padding: 0 8px;
  text-decoration: none;
  font-size: 18px;
  color: #ffffff;
}


.loggedout-login-link {
	font-weight: bold;
	text-decoration: none;
	color: #000;
}

.search {
	width: 100%;
	margin-top: 20px;
}

.search-query {
	display: flex;
	margin-top: 10px;
}

.search-query-left:nth-child(1) { flex-basis: 88%; }
.search-query-right:nth-child(2) { flex-basis: 12%; }



.box {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
   -webkit-border-radius: 2px;
   -webkit-padding-end: 20px;
   -webkit-padding-start: 2px;
   border: 1px solid #dcdee3;
   font-size: inherit;
   overflow: hidden;
   padding-left: 8px;
   white-space: nowrap;
   background-color: #ffffff;
   appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
   font-size: 17px;
   font-weight: bold;
   width: 100%;
   height: 53px;
   border-top-left-radius: 3px;   
   border-bottom-left-radius: 3px; 
}


.textarea {
  -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
   -webkit-border-radius: 2px;
   -webkit-padding-end: 20px;
   -webkit-padding-start: 2px;
   border: 1px solid #dcdee3;
   font-size: inherit;
   overflow: hidden;
   padding-left: 8px;
   white-space: nowrap;
   background-color: #ffffff;
   appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
   font-size: 17px;
   font-weight: bold;
   width: 100%;
   min-height: 60px;
   border-radius: 3px;
   resize: none;      /* user can’t drag-resize; auto-grow handles it */
   overflow-y: hidden;
}


.search-box {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
   -webkit-border-radius: 2px;
   -webkit-padding-end: 20px;
   -webkit-padding-start: 2px;
   border: 1px solid #dcdee3;
   color: #363636;
   font-size: inherit;
   overflow: hidden;
   padding-left: 8px;
   white-space: nowrap;
   background-color: #ffffff;
   appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
   font-size: 19px;
   font-weight: bold;
   width: 100%;
   height: 60px;
   border-top-left-radius: 8px;   
   border-bottom-left-radius: 8px; 
   border-right: none;
}



.search-button {
	width: 100%;
	height: 60px;
  background-color: #d45953;
  color: #ffffff;
  cursor: pointer; 
  border-top-right-radius: 8px;   
  border-bottom-right-radius: 8px; 
 
  border-top: 1px solid #cc4a43;
  border-right: 1px solid #cc4a43;
  border-bottom: 1px solid #cc4a43;
  border-left: none;
}


.search-magnifying-glass {
	font-size: 19px;
}

.main {
	min-height: 800px;
	margin-top: 30px;
	margin-bottom: 30px;
}

.footer {
  width: 100%;
  margin-bottom: 40px;
  text-align: center;
}

.footer-link {
	font-size: 14px;
	color: #b1b2b3;
  text-decoration: none;
}

.footer-bar {
	font-size: 12px;
	color: #b1b2b3;
}





.menu {
  background-color: #fafbfc;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 7px;
  margin-top: 15px;
  width: 30%;
  display: none;
}

.menu-link {
  text-decoration: none;
  color: #a2a2a3;
  font-size: 15px;
  font-weight: bold;
}

.menu-link-text-logout {
  color: #65a2b5;
}

.menu-icon-log-out {
  color: #65a2b5;
}

.menu-span {
  margin-bottom: 7px;
}



.displayblock {
  display: block; 
}

.no-js-warning {
  width: 100%;
  background-color: #cf3f38;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 5px;
  font-size: 16px;
  margin-bottom: 30px;
  padding-left: 10px;
  padding-right: 10px;
}


.cookie-notice {
  width: 100%;
  background-color: #edf1f5;
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 15px;
  color: #b1b1b3;
  padding: 15px;
  border-radius: 6px;
}

.cookie-notice-top {
  width: 100%;
  margin-bottom: 15px;
  font-size: 16px;
}

.cookie-notice-link {
  color: #b1b1b3;
  font-size: 16px;
}


.accept-all-cookies {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 12px;
  padding-right: 12px;
  background-color: #49a6e3;
  border-radius: 10px;
  color: #ffffff;
  text-decoration: none;
  margin-left: 12px;
}


.only-necessary-cookies {
  color: #5da8d9;
  text-decoration: none;
  font-size: 12px;
}

.menu-hr {
  border: none;
  height: 1px;
  background-color: #ededed; /* light gray */
  margin-top: 17px;
}

.access {
  margin-top: 60px;
  margin-bottom: 30px;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.access-logo {
  width: 100%;
  text-align: center;
}

.access-form {
  width: 100%;
  margin-top: 35px;
}

.access-space {
  margin-bottom: 15px;
}

.access-space-name-check p {
  color: #969696;
  font-size: 17px;
  display: inline;
}

.access-space-button {
  width: 100%;
  margin-top: 30px;
}

.access-button {
  width: 100%;
  padding-top: 13px;
  padding-bottom: 13px;
  font-size: 21px;
}

.error {
  margin-top: 5px;
  color: #cf1b15;
  font-weight: bold;
  font-size: 16px;
}

.access-account-type-desc {
  background-color: #e3f2ff;
  border: 1px solid #cbe2f5;
  border-radius: 5px;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 15px;
  display: none;
}

.access-account-type-desc p {
   color: grey;
   margin: 0;
   padding-top: 10px;
   padding-bottom: 10px;
}


.access-link-section {
  width: 100%;
  text-align: center;
  margin-top: 40px;
}

.access-link {
  color: #307fcf;
  font-weight: bold;
  text-decoration: none;
  font-size: 17px;
}

.signup-terms-privacy {
  width: 100%;
  margin-top: 10px;
}

.signup-terms-privacy p {
  color: #a4a5a6;
  font-size: 16px;
  line-height: 20px;
}

.signup-terms-privacy a {
  color: #818182;
  font-size: 14px;
}

.access-box {
  font-size: 21px; border: 1px solid #ababab; height: 60px; 
}

.reset-password-link-area {
  width: 100%;
  margin-bottom: 15px;
}

.access-space-resetpassword {
  margin-bottom: 5px;
}

.reset-password-link {
  color: #78818f;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
}

 .spinner {
    width: 25px;
    height: 25px;
    border: 4px solid rgba(0,0,0,.12);
    border-top-color: rgba(0,0,0,.75);
    border-radius: 50%;
    animation: spin .8s linear infinite;
  }

  @keyframes spin { to { transform: rotate(360deg); } }


.post-button {
  border-radius: 5px;
  padding-top: 2px;
  padding-bottom: 2px;
  margin-right: 15px;
}

#messages {
  width: 100%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 5px;
  font-size: 18px;
  margin-bottom: 30px;
  padding-left: 10px;
  padding-right: 10px;
  display: none;
}

#messages.redmessage {
  background-color: #e35540;
}

#messages.greenmessage {
  background-color: #54a2de;
}

.access-title-photo {
  text-align: center;
}

.access-space-photo {
  text-align: center;
} 

.account-photo {
  width: 50%;
  margin-top: 30px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
} 

.account-photo-change {
  width: 60%;
}

.changeaccountphoto {
    padding: 6px 14px;
    font-size: 14px;
    border: 1px solid #999;
    border-radius: 4px;
    background: #f5f5f5;
    cursor: pointer;
    font-weight: bold;
    color: #5b5b5c;
}


.changeaccountphoto:hover {
    background: #e9e9e9;
}


.deleteaccountphoto {
   padding-top: 3px;
   padding-bottom: 3px;
   padding-left: 15px;
   padding-right: 15px;
   font-size: 17px;
}

.percentage-load {
  margin-top: 20px;
  font-size: 23px;
  color: #3c85b5;
  font-weight: bold;
  text-align: center;
}

.settings-icon {
  margin-right: 3px;
}

.settings-space {
  margin-bottom: 7px;
}

.settings-space a {
  color: #595959;
  text-decoration: none;
  font-size: 16px;
}

.changeemail-masked-email-title {
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 6px;
  color: #3e9c4e;
}

.changeemail-masked-email {
  margin-bottom: 40px;
}

.linkchahomelink a {
  font-weight: bold;
  font-size: 16px;
  color: #54a2de;
}

.rtsettings {
  margin-top: 15px;
}

.rtsettings a {
  font-weight: bold;
  font-size: 16px;
  color: #54a2de;
}

.ssgreen {
  color: #369955;
  font-weight: bold;
}

.change-password-description {
  margin-bottom: 40px;
}

.deactivatereason {
  border: 1px solid #ababab;
}

.deactpara {
  margin-bottom: 0px;
  margin-top: 10px;
  padding: 0px;
}

.search-bottom {
  margin-top: 10px;
}

.search-bottom-links {
  margin-right: 9px;
}

.search-bottom-link {
  text-decoration: none;
  font-size: 15px;
  color: #525151;
}

.search-type-highlighted {
  font-weight: bold;
  text-decoration: underline;
  text-underline-offset: 6px;   /* controls distance */
  text-decoration-thickness: 2px; /* makes underline bolder */
  color: #3893c9;
}

.front-message {
  margin-top: 100px;
  text-align: center;
}

.front-message h1 {
  margin: 0;
  padding: 0;
  font-size: 21px;
  color: #2e2e2e;
}

.front-message p {
  margin: 0;
  padding: 0;
  font-size: 19px;
  color: #707070;
}

.front-button {
  padding-top: 11px;
  padding-bottom: 11px;
  padding-left: 17px;
  padding-right: 17px;
  font-size: 16px;

  background-image: -webkit-linear-gradient(top,#d45953,#d4463d);
  background-image: -moz-linear-gradient(top,#d45953,#d4463d);
  background-image: -ms-linear-gradient(top,#d45953,#d4463d);
  background-image: -o-linear-gradient(top,#d45953,#d4463d);
  background-image: linear-gradient(top,#d45953,#d4463d);

  border: 1px solid #db675e;
}

.front-message-p {
  margin-top: 12px;
  margin-bottom: 30px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.profile {
  width: 100%;
}

.profile-inner-top {
  width: 100%;
  display: flex;
}


.profile-inner-bio p {
  color: #727273;
  font-size: 16px;
  margin: 0;
  padding: 0;
}

.profile-inner-link {
  margin-top: 5px;
  color: #4a8aba;
}

.profile-inner-link a {
  color: #326b94;
  text-decoration: none;
}

.profile-left {
  flex: 0 0 20%;
}

.profile-right {
  flex: 0 0 80%;
}

.profile-left-inner {
  width: 95%;
}

.profile-usernotfound {
  text-align: center;
  margin-top: 40px;
}

.profile-usernotfound h1 {
  margin-top: 0;
  padding-top: 0;
  font-size: 21px;
  color: #212121;
}

.profile-usernamefound-a {
  margin-top: 8px;
}

.profile-usernamefound-a a {
  color: #3893c9;
  font-weight: bold;
  text-decoration: none;
  font-size: 17px;
}

.round-image {
  border-radius: 50%;
  object-fit: cover;
}

.menu-profile-photo-width {
  width: 90%;
}

.profile-right-inner {
  width: 95%;
  float: right;
}

.edit-profile-accountphoto {
  display: flex;
  width: 100%;
  align-items: center; /* 🔥 vertically center children */
  margin-bottom: 25px;
}

.edit-profile-accountphoto-column:first-child {
  flex: 0 0 20%;
  max-width: 20%;
}

.edit-profile-accountphoto-column:last-child {
  flex: 0 0 80%;
  max-width: 80%;
}

.profile-change-button {
  margin-left: 15px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.profile-socials {
  display:flex;
  justify-content:center;   /* center the whole group */
  align-items:center;
  gap: 40px;                 /* space between items */
  width:100%;
}

.profile-socials-count {
  display:flex;
  flex-direction:column;    /* stack number + label */
  align-items:center;       /* center horizontally */
  justify-content:center;   /* center vertically */
  text-align:center;
}

.profile-socials-count-top {
  font-weight: bold;
  line-height:1.1;
  margin-bottom: 5px;
  font-size: 18px;
}

.profile-socials-count-bottom {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.1;
  font-size: 16px;
}

.profile-edit-message {
  margin-top: 20px;
  text-align: center;
}

.general-button {
  background-color: #F8F8F8;
  background-image: -webkit-linear-gradient(top,#f8f8f8,#f1f1f1);
  background-image: -moz-linear-gradient(top,#f8f8f8,#f1f1f1);
  background-image: -ms-linear-gradient(top,#f8f8f8,#f1f1f1);
  background-image: -o-linear-gradient(top,#f8f8f8,#f1f1f1);
  background-image: linear-gradient(top,#f8f8f8,#f1f1f1);
  border: 1px solid #cfcfcf;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 20px;
  padding-right: 20px;
  text-decoration: none;
  font-size: 18px;
  color: grey;
  display: block;
  width: 100%;   
  box-sizing: border-box;  
}

.profile-edit-message-inner {
  display: flex;
  justify-content: space-between; /* pushes left + right apart */
  align-items: center;            /* vertical alignment */
}

.profile-edit-message-inner-left,
.profile-edit-message-inner-right {
  display: flex;
  justify-content: center; /* horizontal center */
  align-items: center;     /* vertical center */
  width: 50%;
}

.profile-edit-message-inner-left a,
.profile-edit-message-inner-right a {
  width: 95%;
}

.profile-name-username {
  margin-bottom: 23px;
  text-align: center;
}

.profile-name {
  font-weight: bold;
}

.profile-username {
  color: grey;
}

.box-padding {
  border: 1px solid #f7f7f7;
  box-shadow: 1px 1px #e2e2e2;
  background-color: #ffffff;
  padding-top: 6px;
  padding-left: 6px;
  padding-right: 6px;
  padding-bottom: 15px;
}

.profile-bio-link {
  margin-top: 15px;
  border-top: none;
  border-left: none;
  box-shadow: 0 1px #f5f7fa;
  border-right: none;
}

.profile-socials-count a {
  text-decoration: none;
  color: #000;
}

.profile-title-text {
  color: #9e9e9e;
  font-size: 14px;
  margin-top: 3px;
}

.profile-bio-textarea {
  border: 1px solid #ababab;
  min-height: 100px;
}















































