:root{
  --blue: #000000!important;
  --black: #000000!important;
  --bluetext: #072641!important;
  --white: #ffffff!important;
  --sixes: #666666!important;
  --nines: #999999!important;
  --efefef: #efefef!important;
}

.text-blue{
  color: var(--bluetext);

}

body {
  /* min-height: 100vh; */
  min-height: -webkit-fill-available;
}

html {
  height: -webkit-fill-available;
}

body.loading:before{
  content: '';
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: white;
  z-index: 9999999;
}

*{
  transition: all .25s ease;
}

.StripeElement {
  background-color: white;
  height: 40px;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  box-shadow: 0 1px 3px 0 #e6ebf1;
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease;
}

.StripeElement--focus {
  box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
  border-color: #fa755a;
}

.StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}

#photos{
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  gap: 10px;
  margin-bottom: 20px;
}

img{
  max-width:100%;
}

#loader{
  position: fixed;
  width:100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #eee;
  z-index: 100;
}

#header{
  position: sticky;
  max-width: 100vw;
  background-color: var(--black);
  padding: 20px 0px;
  font-size: 24px;
  color: var(--white);
  width: 100%;
  top: -1px;
  z-index: 50;
  /* border-bottom: solid 1px white;
  box-shadow: 0px 2px 0px var(--black); */
}

#container{
  margin-top: 95px!important;
}

#upgrade-container{
  line-height: 1;
}

#upgrade-button{
  display: inline-block;
  font-size: 12px;
  background-color: var(--white);
  border-radius: 100px;
  color: var(--black);
  text-align: center;
  padding: 5px 10px;
  padding-bottom: 8px;
}

#logo{
  max-width: 500px;
  margin: auto;
}

#logo a{
  font-size: 16px;
  /* border: solid 1px white; */
  color: var(--white)!important;
  text-decoration: none;
  padding: 5px 20px;
  display: block;
  letter-spacing: 7px;
  white-space: nowrap;
}

#logo a:hover{
  text-decoration: none;
}

a.btn-primary,
input.btn-primary{
  color: var(--white)!important;
  background-color: var(--black);
  border-color: var(--black);
}

a.btn-secondary,
input.btn-secondary {
  color: var(--white) !important;
  background-color: var(--nines);
  border-color: var(--nines);
}

a{
  color: var(--black)!important;
  text-decoration: none!important;
}

.post-content-edit a,
.post-content a{
  text-decoration: underline!important;
}

#all-chats{
  max-width: 100%;
}

#all-chats .nav {
  border: 0px;
}

#nav{
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #eaeaea;
  border-top: solid 3px white;
  box-shadow: 0px -1px 0px #ccc;
}

@media (max-width:550px){
  #nav{
    padding-bottom: 15px;
  }
}

#nav ul{
  max-width: 600px;
  display: flex;
  flex-direction: row !important;
  justify-content: center;
  width: 100%;
}

#nav li{
  width: 100%;
  position: relative;
}

#nav li[data-pageXXXX]:before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

#nav li a{
  display: flex;
  flex-direction: column !important;
  text-align: center;
  font-size: 11px;
  color: var(--black) !important;
}

#nav li a i{
  font-size: 21px;
  margin-bottom: 5px;
}

#nav .nav-link.active span{
  text-decoration: underline;
  /* text-shadow: 0px 3px 0px #fff,
    0px 3px 23px #666; */
}

#filter{
  color: black;
  /* max-height: 660px; */
  overflow: scroll;
}

#filter .btn{
  width: 49%;
  background-color: var(--black);
  color: white;
}

select{
  width: 100%;
  padding: 5px;
  border: 0px;
  border-radius: 5px;
  background-color: whitesmoke;
}

.select-container{
  margin-bottom: 15px;
}

.panel-header{
  position: sticky;
  top: 0;
  left: 0;
  background-color: var(--white);
  z-index: 999;
  max-width: 100%;
  min-width: 100%;
}

#profile-panel{
  display: flex;
  flex-direction: column;
}

#profile-panel .pb-3{
  flex-grow: 2;
  display: flex;
  flex-direction: column;
}

.profile-swipe{
  flex-grow: 2;
}

#profile-panel .panel-header,
#singlePost .panel-header{
  margin-bottom: -43px!important;
  background-color: transparent;
}

#users .panel-header,
#filter-panel .panel-header,
#tagFilter .panel-header{
  box-shadow: 0px 5px 10px rgba(0, 0, 0, .25);
}

.close-panel{
  color: var(--black);
  text-shadow: 0 1px white;
  line-height: 0.7;
  top: 0px;
  right: 0;
  z-index: 999;
  font-size: 32px;
  /* translate: 0px 10px; */
  /* text-shadow: 0 2px 0px black; */
  font-weight: lighter;
}

#edit-profile{
  /* margin-top: 100px!important; */
}

textarea{
  width: 100%!important;
  min-width: 100%!important;
  min-height: 50vh;
  resize: vertical;
}

#profile{
  padding-bottom: 30px;
}

.a-group{
  
}

.a-row{
  padding: 7px 0px;
}

div.panel{
  max-width: 650px;
  position: fixed;
  left: 0px;
  margin: auto;
  top: 100%;
  right: 0px;
  height: calc(100vh - 150px);
  /* z-index: 90; */
  transition: all .25s ease-in-out;
  opacity: 0;
  overflow: auto;
  font-size: 15px;
  background-color: white;
  color: black;
  /* height: -webkit-fill-available;
  min-height: -webkit-fill-available; */
}

.filter-attr{
  margin-bottom: 10px;
}

.users-container{
  display: flex;
  flex-wrap: wrap;
}

.users-container .profile-link {
  width: 33.333%;
}

.users-container img,
#all-profiles img{
  border-radius: 100px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.users-container .col,
#all-profiles .col{
  position: relative;
}

#profile-rows{
  display: flex;
  flex-wrap: wrap;
}

#profile-rows .profile-link{
  width: 33.333%;
}

#all-profiles .add-button{
  position: absolute;
  right: 15px;
  bottom: 10px;
  border-radius: 20px;
  border: solid 1px #efefef;
  background-color: #19466D;
  color: white!important;
  width: 40px;
  height: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: larger;
  line-height: 0;
}

.panel.open,
#upgrade-panel.open,
#filter-panel.open{
  top: 66px;
  opacity: 1;
  z-index: 9999;
}

.slider-pills:empty{
  display: none;
}

.slider-pill{
  padding: 3px;
  background-color: #0e2d49;
  display: inline-block;
  margin: 0px 5px;
  border-radius: 20px;
}

#filter-panel input{
  /* width: 100%; */
}

.pill-option{
  background-color: #2a5f8d;
  border: solid 2px #19466D;
  color: white;
  padding: 5px 10px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 2px;
}

.pill-option input{
  position: absolute;
  opacity: 0;
}

.pill-option:has(input:checked) {
  box-shadow: inset 0px 0px 10px #0e2d49;
  background-color: #437fb4;
}

.profile-data{
  margin-bottom: 5px;
}

.slider * {
  box-sizing: border-box;
}

.slider {
  text-align: center;
  overflow: hidden;
  margin-bottom: 0px;
}

.slides {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.slider .slides img{
  aspect-ratio: 1/1;
  object-fit: contain;
}

.slider .slides img.zoom {

}

::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 0px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

.slides>div {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 100%;
  /* height: 300px; */
  margin-right: 50px;
  transform-origin: center center;
  transform: scale(1);
  transition: transform 0.5s;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 100px;
}

.slider img {
  /* object-fit: contain;
  position: absolute; */
  top: 0;
  left: 0;
  width: 100%;
  /* height: 100%; */
  overflow: hidden;
}

.slider>a {
  display: inline-flex;
  width: 1.5rem;
  height: 1.5rem;
  background: white;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 0 0.5rem 0;
  position: relative;
}

.slider>a:active {
  top: 1px;
}

.slider>a:focus {
  background: var(--black);
}

.green-check{
  opacity: .5;
}

@media (max-width:768px){
  #all-profiles .col:nth-child(odd) {
    /* padding-right: 7px !important; */
  }

  #all-profiles .col:nth-child(even) {
    /* padding-left: 7px !important; */
  }
}

html:has(.loggedout-disable),
body.loggedout-disable{
  position: relative;
  overflow: auto!important;
}
body.loggedout:after{
  content: '';
  position: fixed;
  border-top: solid 2px var(--nines);
  height: 4px;
  background-color: white;
  bottom: 0px;
  width: 100%;
}

span.loggedout #header{
  position: relative;
  padding: 0px;
}

span.loggedout #header #logo{
  /* height: 38vh; */
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0px;
}

.dropdown{
  max-height: 0px;
  overflow: hidden;
  transition: all .25s ease-in-out;
}

.dropdown.open{
  max-height: 100px;
  overflow: auto;
  background-color: whitesmoke;
  margin-top: 4px;
  border-radius: 5px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, .25);
}

.dropdown div{
  padding: 10px;
}

.dropdown div:focus{
  background-color: silver;
}

.dropdown div + div{
  border-top: solid 1px #dcd8d8;
}

.form-group{
  margin-bottom: 10px;
  max-width: 600px;
}

.form-group label{
  font-weight: bold;
}

.form-group > div{
  position: relative;
}

.interestToClone{
  position: relative;
}

.dd_arrow,
.delete-interest{
  position: absolute;
  z-index: 15;
  color:white;
  text-align: center;
  top: 10px;
  right: 20px;
  aspect-ratio: 1 / 1;
  width: 20px;
  border-radius: 50%;
  background-color: #999;
  line-height: 1;
}

.dd_arrow{
  font-size: 12px;
  line-height: 1.5;
}

.high-z{
  /* z-index: 100!important; */
}

.tabs{
  display: flex;
  gap: 10px;
}

.tab{
  width: 100%;
  background-color: #999999;
  padding: 5px;
  text-align: center;
  border-radius: 5px;
}

.tab.active-tab{
  background-color: #eee;
}

/* .tab-content{
  display: none;
}
.tab-content.active-tab-content{
  display: block;
} */

/* BOOTSTRAP TABS */
#myTab .nav-link{
  color: #666;
  background-color: #eee;
}
#myTab .nav-link.active{
  color: white!important;
  background-color: #19466D;
}
/* /BOOTSTRAP TABS */


.edit-profile-photo{
  position: relative;
  aspect-ratio: 1 / 1;
}

.edit-profile-photo img{
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 5px;
}

.profile-photo-delete{
  position: absolute!important;
  right: -2px;
  top: -8px;
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50px;
  text-align: center;
  line-height: 1.1;
  box-shadow: 0px 0px 5px black;
}

.edit-profile-photo *{
  position: relative;
}

.profile-photo-upload{
  position: absolute;
  left: 5px;
  top: 5px;
  bottom: 5px;
  right: 5px;
  background: #eee;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: #ccc;
  border-radius: 10px;
}

#edit-profile{
  textarea{
    field-sizing: content;
  }
}

/* comments */

#screens{
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  /* padding-top: 100px; */
  box-sizing: border-box;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;

}

.screen{
  display: none;
  width: 100vw;
   min-width: 100vw;
  /* max-height: 100vh; */ */
  /* overflow-y: auto; */
  padding-top: 100px;
  padding-bottom: 100px;
}

.screen.active{
  display: block;
}

.screen:nth-of-type(2){
  max-height: calc(100vh - 150px);
  overflow: scroll;
}

#accordionContainer .accordion-body{
  min-height: initial!important;
  max-height: initial!important;
}

.accordion-item{
  border-radius: 0px !important;
}

.form-control:focus,
.accordion-button:focus{
  border-color: var(--nines)!important;
  box-shadow: none!important;
}

.accordion-button:not(.collapsed){
  background-color: var(--efefef)!important;
}

.btn-primary{
  background-color: var(--black)!important;
}

div:has(.profile-photo-delete) {
  position: relative;
}

.post-tag-input{
  position: relative;
  display: block;
}

.post-img img{
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
  box-shadow: 0px 6px 10px #ccc;
}

.panel.open .post-img img{
  aspect-ratio: initial;
  object-fit: initial;
}

.post-tag-input:first-of-type .delete-field {
  display:none;
}

#testimony{
  position: relative;
  padding-bottom: 50px;
  transition: all .5 ease-in-out;
}

.delete-field{
  position: absolute;
  border-radius: 50px;
  background-color: var(--efefef);
  padding: 5px;
  right: 5px;
  top: 6px;
  height: 25px;
  width: 25px;
  text-align: center;
  line-height: 0.5;
  font-weight: bolder;
  font-size: 21px;
  border: solid 1px var(--nines);
}

.edit-post:last-of-type button.btn-danger{
  display: none;
}

.loader-dots:before,
.loader-dots:after{
  content: '';
  color: white;
  /* animation: loaderDots infinite ease-in-out 0s; */
    animation-name: loaderDots;
    animation-duration: .75s;
    animation-direction: alternate-reverse;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

@keyframes loaderDots{
  25%{content:'.';}
  50%{content:'.';}
  75%{content: '..';}
  100%{content: '...';}
}

.post-container .badge{
  font-weight: normal!important;
  background-color: #19466D!important;
}

@media (min-width:650px) {
  /* .post-container {
    display: flex;
  } */

  .post-container:nth-child(odd){
    flex-direction: row-reverse;
  }

    .post-container > div{
      width: 100%;
    }
}


#tagFilter .close-panel{
  text-shadow: none;
  color: var(--black);
}

.tag-filter-title{
  position: sticky;
  top: 0px;
  background-color: white;
}

img.zoomed{
  min-width: 100%;
  aspect-ratio: initial!important;
}

#google_translate_element {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 1000;
  background: white;
  padding: 5px;
  border: 1px solid #ccc;
}

font {
  color: inherit !important;
}

.nicEdit-main,
.mb-3>div:has(.nicEdit-panelContain) + div,
.mb-3 > div:has(.nicEdit-panelContain){
width: 100%;
min-width: 100%;
outline: none;
}

.nicEdit-main{
  min-width: calc(100% - 20px);
  margin: auto;
}

.post-content{
  font-size: 14px;
}

.post-tags{
  margin-top: 20px;
}

.post-content span:empty,
.post-content-edit div:empty,
.post-content div:empty,
.post-content-edit span:empty{
  min-height: 20px;
  display: block;
}

.nicEdit-button-undefined{
  /* border: none!important; */
}
.nicEdit-button-undefined,
.nicEdit-panelContain{
  background-color: transparent!important;
}

.nicEdit-panel{
  display: flex;
  flex-wrap: wrap;
}

.nicEdit-panel > div{
  float: none!important;
  margin: 10px!important;
}

.nicEdit-panel .nicEdit-button{
  background-size: auto 90%;
  background-repeat: no-repeat;
}

a.nicEdit-panel > :first-child .nicEdit-button:before{
  content: 'Bold';
}
a.nicEdit-panel > :nth-child(2) .nicEdit-button:before{
  content: 'Italic';
}
a.nicEdit-panel > :nth-child(3) .nicEdit-button:before{
  content: 'Underline';
}
a.nicEdit-panel > :nth-child(4) .nicEdit-button:before{
  content: 'Left';
}
a.nicEdit-panel > :nth-child(5) .nicEdit-button:before{
  content: 'Center';
}
a.nicEdit-panel > :nth-child(6) .nicEdit-button:before{
  content: 'Right';
}
a.nicEdit-panel > :nth-child(7) .nicEdit-button:before{
  content: 'Justified';
}
a.nicEdit-panel > :nth-child(8) .nicEdit-button:before{
  content: '• Numbered';
}
a.nicEdit-panel > :nth-child(9) .nicEdit-button:before{
  content: '• Dotted';
}
a.nicEdit-panel > :nth-child(10) .nicEdit-button:before{
  content: 'Link';
}
a.nicEdit-panel > :nth-child(11) .nicEdit-button:before{
  content: 'Remove Link';
}
a.nicEdit-panel > :nth-child(12) .nicEdit-button:before{
  content: 'Remove Formatting';
}
a.nicEdit-panel > :nth-child(13) .nicEdit-button:before{
  content: 'Indent';
}
a.nicEdit-panel > :nth-child(14) .nicEdit-button:before{
  content: 'Unindent';
}

a.nicEdit-panel .nicEdit-buttonContain,
a.nicEdit-panel .nicEdit-button{
  width: initial!important;
}

.nicEdit-button-undefined[style*='221,'],
.nicEdit-button-undefined[style*='102,']{
  /* border: dashed 1px red!important; */
  border-color: transparent!important;
}
.nicEdit-button-undefined[style*='221,'] div,
.nicEdit-button-undefined[style*='102,'] div{
  /* border: dashed 1px red!important; */
  filter: drop-shadow(0px 0px 4px #666);
}

.nicEdit-button-undefined[style*='239,']{
  border: none!important;
}

div[unselectable="on"]{
  top: 50vh!important;
}

#location strong{
  display: block;
}

#x.form-control[type="text"]{
  border:0px!important;
  border-radius: 0px!important;
  padding: 0px!important;
  border-bottom: solid 1px #ccc!important;
}

.checkbox-container div:has(>input[type="checkbox"]:checked){
  order:-1;
}

.checkbox-container{
  overflow: auto;
  max-height: 25vh;
  border-bottom: solid 1px #eee;
  padding-bottom: 5px;
}

.dont-show{
  display: none;
}