@font-face {
    font-family: 'Outfit-Medium';
    src: url('fonts/Outfit-Medium.ttf');
}

@font-face {
    font-family: 'Outfit-Regular';
    src: url('fonts/Outfit-Regular.ttf');
}

@font-face {
    font-family: 'Outfit-SemiBold';
    src: url('fonts/Outfit-SemiBold.ttf');
}

@font-face {
    font-family: 'Outfit-Thin';
    src: url('fonts/Outfit-Thin.ttf');
}

@font-face {
    font-family: 'Outfit-Black';
    src: url('fonts/Outfit-Black.ttf');
}

@font-face {
    font-family: 'Outfit-Bold';
    src: url('fonts/Outfit-Bold.ttf');
}

@font-face {
    font-family: 'Outfit-ExtraBold';
    src: url('fonts/Outfit-ExtraBold.ttf');
}

@font-face {
    font-family: 'Outfit-ExtraLight';
    src: url('fonts/Outfit-ExtraLight.ttf');
}

@font-face {
    font-family: 'Outfit-Light';
    src: url('fonts/Outfit-Light.ttf');
}


:root {
    --theme-color: #64AAFF;
    --theme-color-trans: #64AAFF30;
    --bg-color: #FFF;
    --fg-color: #000;
    --bg-color-light: #FFF7;
    --fg-color-light: #0003;
    --fg-color-light-extra: #0001;
    --fg-color-gray: #AAA;
}

html {
    padding: 0;
    background-color: var(--bg-color);
}

h1 {
    font-size: 34px;
    margin: 0 0 10px 0;
    color: var(--fg-color);
    font-family: 'Outfit-SemiBold';
    transform: translateY(-2.125px);
}

h2 {
    font-size: 22px;
    margin: 0 0 10px 0;
    color: var(--fg-color);
    font-family: 'Outfit-SemiBold';
    transform: translateY(-2.125px);
}

h3 {
    font-size: 16px;
    margin: 0 0 0px 0;
    color: var(--fg-color);
    font-family: 'Outfit-SemiBold';
    transform: translateY(-2.125px);
}

div {
    box-sizing: border-box;
    /*overflow-wrap: break-word;*/
    /*white-space: initial;*/
    /*word-wrap: break-word;*/
    overflow: hidden;
}

p {
    margin-top: 0;
    font-size: 16px;
    /*font-family: 'Outfit-Light';*/
}

/*b {
    font-family: 'Outfit-SemiBold';
}*/

body {
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    overflow-y: scroll;
    /*font-family: 'Outfit-Light';*/
}

div {
    color: var(--fg-color);
    box-sizing: border-box;
}

hr {
    border: 0px;
    border-bottom: solid 1px var(--fg-color-light);
    width: 100%;
    margin: 0px;
}

button {
    height: 40px;
    background-color: var(--theme-color);
    color: #FFF;
    border-radius: 20px;
    padding: 0px 20px;
    /*display: flex;*/
    align-items: center;
    font-size: 16px;
    cursor: pointer;
    border: solid 1px transparent;
    font-weight: bold;
}

img.emoji
{
    height: 1em;
    width: 1em;
    margin: 0 .05em 0 .1em;
    vertical-align: -0.1em;
}

.default-loading-container {
    /*width: 36px;*/
    height: 36px;
    width: 100%;
    display: flex;
    justify-content: center;
    /*height: 150px;*/
    align-items: center;
}

.loading-circle {
    width: 36px;
    height: 36px;
    animation: spin;
    animation-duration: 0.75s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
  }

.verified-svg
{
    /*zoom: 85%;*/
    /*width: 16px;
    height: 16px;*/
    width: 18px;
    height: 18px;
    overflow: visible;
    /*transform: translateY(1px);*/
    transform: translateY(0px);
}

.st0{display:none;fill:var(--theme-color);}
.st1{fill:var(--theme-color);}
.st2{display:none;fill:var(--theme-color);stroke:#FFFFFF;stroke-width:0.1417;stroke-miterlimit:10;}

.c-verified
{
    margin-left: 2px;
}

.c-header
{
    display: flex;
    margin-bottom: 15px;
}

.c-spec
{
    /*color: #999;*/
    color: var(--fg-color-gray);
    margin-left: 5px;
}

.c-verified
{
    margin-left: 2px;
    display: flex;
}

.n-black
{
    color: var(--fg-color);
    text-decoration: none;
}
.n-black:hover
{
    text-decoration: underline;
    text-decoration-thickness: 1px;
}

a
{
    color: var(--theme-color);
    text-decoration: none;
    cursor: pointer;
}
a:hover
{
    text-decoration: underline;
    text-decoration-thickness: 1px;
}

.pan1 {
    display: block;
    width: 250px;
    max-width: 250px;
    padding: 20px;
    top: 0px;
    bottom: 0px;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
    position: sticky;
    height: 100dvh;
}

.pan2 {
    display: block;
    border-left: solid 1px var(--fg-color-light);
    border-right: solid 1px var(--fg-color-light);
    width: 600px;
    min-width: 600px;
    min-height: 100dvh;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

.pan3 {
    padding: 5px 20px;
    display: block;
    max-width: 375px;
    width: 375px;
    top: 0px;
    bottom: 0px;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
    position: sticky;
}

button.transparent {
    background-color: transparent;
    color: var(--fg-color);
    transition: .25s;
}
button.transparent:hover {
    background-color: var(--fg-color-light-extra);
}

.qt {
    padding: 20px;
    border: solid 1px var(--fg-color-light);
    border-radius: 20px;
}

.c {
    padding: 0px 20px;
}

.cc {
    margin: 128px auto;
    max-width: 400px;
    /*padding: 20px;*/
    padding: 5px;
}

.ico {
    fill: var(--fg-color);
}

/*.nav {
    min-width: 100%;
}*/

.nav-e {
    min-width: 100%;
    box-sizing: border-box;
    font-size: 20px;
    overflow: hidden;
    text-decoration: none;
    font-weight: lighter;
}
.nav-e:link {
    color: var(--fg-color);
}
.nav-e:hover {
    color: var(--fg-color);
    text-decoration: none;
}
.nav-e:visited {
    color: var(--fg-color);
}

.nav-e-on {
    font-weight: bold;
}

.nav-e-box {
    display: flex;
    align-items: center;
    height: 50px;
    padding: 0px 15px;
    box-sizing: border-box;
    border-radius: 30px;
    transition: .125s;
}
.nav-e-box:hover {
    background-color: var(--fg-color-light-extra);
}

.init-splash {
    z-index: 100;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.init-splash-icon {
    max-width: 200px;
}

.tl {
    /*padding: 0px 20px;*/
}

.tl-placeholder {
    height: 51px;
    border-bottom: solid 1px var(--fg-color-light);
    box-sizing: content-box;
}

.tl-header {
    background-color: var(--bg-color-light);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    width: 598px;
    overflow: hidden;
    margin: 0;
    height: 51px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 0px 20px;
    z-index: 20;
}

.tl-header h2 {
    margin: 0;
}

input, textarea {
    background-color: var(--fg-color-light-extra);
    box-sizing: border-box;
    border: solid 1px transparent;
    padding: 0px 20px 0px 20px;
    height: 40px;
    border-radius: 25px;
    outline: none;
    margin-bottom: 20px;
}
input:focus, textarea:focus {
    border: solid 1px var(--theme-color);
    background-color: transparent;
}

input[type="text"], textarea {
    color: var(--fg-color);
}




.col-flx {
    display: flex;
    flex-grow: 1;
    flex-grow: inherit;
    overflow: hidden;
    margin-bottom: 10px;
}

.col-e {
    flex: 1;
}

.col-settings {
    flex: 1;
    align-items: center;
}

.nav-compact-el {
    height: 100%;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    /*transform: translateY(-7px);*/
}

.dis-900
{
    margin-left: 20px;
}

.dialog-bkg
{
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed;
    background-color: #0009;
}

.dialog-box
{
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-color);
    max-width: 550px;
    height: 350px;
    padding: 30px;
    padding-top: 15px;
    border-radius: 30px;
}

.post-input
{
    border: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 22px;
    resize: none;
}

.app-main-icon {
    width: 120px; height: 120px;
}

.c-int {
    background-color: inherit;
    transition: .125s;
    cursor: pointer;
}
.c-int:hover {
    background-color: #00000011;;
}

@media screen and (max-width: 1000px)
{
    .app-main-icon {
        width: 75px; height: 75px;
    }

    .h-icon
    {
        width: 50px;
        height: 50px;
        transform: translateX(-7.5px);
    }

    .pan1
    {
        width: 75px;
        padding: 0;
        justify-content: center;
    }

    .tl-header
    {
        width: 100%;
    }

    .pan3
    {
        display: none;
    }

    .pan2
    {
        width: calc(100% - 75px);
        /*border-left: solid #0001 .5px;
        border-right: solid #0001 .5px;*/
        min-height: 100dvh;
        min-width: unset;
    }

    .dis-900
    {
        display: none;
    }
    
    .nav
    {
        width: fit-content;
        margin: 0 auto;
    }
    
    .nav-e-box 
    {
        padding: 10px;
    }
    
    .nav-e
    {
        min-width: 0px;
        width: 50px;
        display: block;
    }
}




.bottom-bar
{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 51px;
    background-color: var(--bg-color);
    border-top: solid 1px var(--fg-color-light);
    display: none;
    z-index: 99;
}

.bottom-bar-ph
{
    width: 100%;
    height: 51px;
    display: none;
}

label.cf
{
    position: absolute;
    width: 150px;
}

div.cf
{
    margin-left: 150px;
}

input[type=button].cf
{
    height: 40px;
    width: fit-content;
    cursor: pointer;
    border: solid var(--theme-color) 1px;
    background-color: transparent;
    transition: .25s;
}
input[type=button].cf:hover
{
    background-color: #0002;
}

input[type=text].cf, input[type=password].cf, input[type=number].cf, textarea.cf, input[type=color].cf
{
    margin-left: 150px;
    width: calc(100% - 150px);
    box-sizing: border-box;
    max-width: unset;
	/*margin-bottom: 5px;*/
}

textarea.post-input-area
{
    background-color: transparent;
    resize: none;
    color: var(--fg-color);
}
textarea.post-input-area:focus
{
    outline: none;
}

textarea {
    resize: vertical;
    min-height: 64px;
    font-family: Arial, Helvetica, sans-serif;
    border-radius: 20px;
}

.comp-only
{
    display: none;
}

.nav-ico
{
    width: 30px;
    height: 30px;
    /*width: 22.5px;*/
    transform: translateY(8%);
    overflow: visible;
    fill: var(--fg-color);
}

@media screen and (max-width: 500px), (max-height: 500px)
{
    .comp-only
    {
        display: unset;
    }

    .pan3
    {
        display: none;
    }
    
    .pan1
    {
        display: none;
    }

    .bottom-bar
    {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 51px;
        display: flex;
    }

    .tl-header
    {
        max-width: 100%;
        width: 100%;
    }

    .pan2
    {
        width: 100%;
        border-left: solid #0001 .5px;
        border-right: solid #0001 .5px;
        min-height: 100dvh;
        border: none;
    }

    .dis-900
    {
        display: none;
    }

    .bottom-bar-ph
    {
        display: block;
    }

    body
    {
        display: block;
    }
    
    .nav-ico
    {
        width: 22.5px;
        /*width: 15px;*/
    }

    label.cf
    {
        display: block;
        position: static;
        width: 100%;
    }

    div.cf
    {
        margin-left: 0px;
    }

    input[type="text"].cf, input[type=password].cf, input[type=number].cf, textarea.cf, input[type=color].cf
    {
        margin-left: 0;
        width: 100%;
    }
}

.int-ico
{
    width: 17.5px;
    height: 17.5px;
    fill: #777;
    /*border-radius: 50%;*/
}

.int-like-filled
{
    width: 17.5px;
    height: 17.5px;
    fill: #FF5599;
    /*fill: var(--theme-red);*/
    /*fill: red;*/
}

.int-ctrl
{
    align-items: center;
    display: flex;
    font-size: 14px;
}

.int-btn
{
    width: 27px;
    height: 27px;
    border-radius: 50%;
    overflow: hidden;
    justify-content: center;
    display: flex;
    align-items: center;
}
.int-btn:hover
{
    background-color: #0002;
}

.int-counter
{
    margin-left: 5px;
    color: #777;
    line-height: 1.5;
}

.int-counter-like-active
{
    color: #FF5599;
    /*fill: var(--theme-red);*/
    /*fill: red;*/
}

.fill-3rd
{
    fill: #999;
}

.more-opts
{
    background-color: none;
}
.more-opts:hover
{
    background-color: #0001;
}

a.list-e {
    text-decoration: none;
    color: unset;
}

.list-e img {
    width: 30px;
    margin-right: 10px;
}

div.list-e {
    /*background-color: transparent;*/
    display: flex;
    align-items: center;
    padding: 0 10px;
}
div.list-e:hover {
    background-color: var(--slct-color);
    /*color: white;*/
}

.notf-active {
	background-color: var(--theme-color-trans);
}

.floating-menu {
    position: absolute;
    z-index: 20;
    background-color: var(--bg-color);
    color: var(--fg-color);
    border-radius: 20px;
    /*top: 300px;
    left: 300px;*/
    width: 200px;
    height: 200px;
    box-shadow: 0px 0px 7px var(--fg-color);
}

button.low {
    background-color: transparent;
    border: solid 2px #AAA;
    transition: .125s;
    color: var(--fg-color);
}
button.low:hover {
    background-color: #00000011;
}