div:has(textarea:focus) .textareaFocusedInline{
  display:inline !important;
}

div:has(textarea:focus) .textareaFocusedBlock{
  display:block !important;
}

.textareaFocusedInline, .textareaFocusedBlock{
  display: none;
}
  
  
.pImage{
  width: 100%;height: 100%;object-fit: cover;
}

.pContainer {
    width: 100%;
    overflow: auto;
    /* padding-right: 20px; */
    /* min-width: 0; */
    max-width: 100%;
}

.pImageContainer{
  aspect-ratio: 1 / 1;
  width: min(400px, 70%);
  flex:0 0 auto;
}

.slowTransition{
    transition:all ease 0.5s 0s !important;
}
.fastTransition{
    transition:all ease 0.25s 0s !important;
}



@keyframes loadBarAnimation {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.loadBarWidth{
    top: 0;
    position: absolute;
    height: 5px;
    background: #FFCD4A;
    transform-origin: left;
}

.loadBarOpacity{
    opacity:0;
    transition: opacity linear 0.5s 0s !important;
}

@keyframes move{
	0% {margin-left: 0px;}
	50% {margin-left: 10px;}
	100% {margin-left: 0px;}
}

.moveMessage{
    animation: move 0.3s linear 5;
}

@keyframes rotateAnimation{
	100% { transform: rotate(360deg); }
}

.loadIcon{
  width:25px;
  height:25px;
  display:block;
  animation: rotateAnimation 0.4s cubic-bezier(0.5, 0.5, 1, 1) infinite;
  transform-origin: center;
}

.uploadImage{
    content:url('/web/lightWhite/cloud-upload.svg');
    height:35px;
    box-sizing:border-box;
    padding:5px;
}

#uploadImage{
    padding:0 !important;
}

.postContents{
  display: flex;
  flex-direction: column;
  line-height:150%;
}

.postContents > span{
  line-height:inherit;
}

.postReactionInfo{
  align-items: flex-end;
  gap:10px;
}


.postWriterTextInfo{
  display:flex;
  text-overflow: clip;
  flex-direction: row;
  gap:5px;
}

.postWriterProfileInfo{
    max-width:40px;
    border-radius:1000px;
}


.postBottom{
  width:100%;
  user-select: none;
  align-items: flex-end;
  justify-content: space-between;
}



@media (min-width: 900px){
.postImg{
  display: block;
  width: auto;
  height: auto;
  max-width: 400px;
  max-height: 700px;
  box-sizing:border-box;
  padding:0;
}

.menuImg{
  width:40px;
}
}


@media (max-width: 899px){
.postImg{
  display: block;
  width:auto;
  height: auto;
  max-width:min(calc(100vw - 100px), 100%);
  max-height: 700px;
  box-sizing:border-box;
  padding:0;
}
.menuImg{
  width:35px;
}
.bottomNotice{
    z-index:9999;
    position:fixed;
    bottom:0; 
    height:75px;
}

.voteThumb:hover{
    content: url(/web/img/voteThis.svg) !important;
}

}
@media (min-width: 900px){ 
.smallBox{
    width:350px; padding:60px 30px;
    position: absolute;
    top:50%;
    transform: translate(0, -50%);
    border: 2px solid var(--slang-bg-3);

}
}

@media (max-width: 899px){
  .smallBox{
    border:none;
    background:none !important;
    box-shadow:none;
    margin:0 auto;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
  }
  .smallBox #submit{ 
    right:0 !important;
  }
}

/* - */

.settingsSwitch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 30px;
}

.settingsSwitch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.settingsSlider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.settingsSlider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .3s;
  transition: .3s;
  border-radius: 100%;
}

input:checked + .settingsSlider {
  background-color: #ffcd4a;
}

input:focus + .settingsSlider {
  box-shadow: 0 0 1px #ffcd4a;
}

input:checked + .settingsSlider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

.settingsGroup{
  padding:20px 20px 0px 20px;
}
.settingsContainer{
  padding:5px 20px;
}
.settingsInput{
  height:45px; 
  border:2px solid var(--slang-bg-3);
  border-radius: 10px;
}
.inputfocus{
  border:2px solid var(--slang-bg-3);background:var(--slang-bg-2);
}
.inputfocus:focus{
  border:2px solid #ffcd4a;
}