@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');


/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

html {
    font-family: sans-serif;
    min-height: 100vh;
    scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  background: var(--white);
  color: var(--black);
  font-family: 'Inter', sans-serif;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* Links default styles */
a {
  display: block;
  color: var(--white);
  text-decoration: none;
  outline: none;
  transition: color 0.1s linear;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
}
button {
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

/* CSS VARIABLES */
:root{
  /* colors */
  --white: #fff;
  --grey-light: #333;
  --grey-dark: #1a1a1a;
  --black: #000;
  --blue-dark: #44B5C3;
  --cyan-light: #94d6df;
  --cyan-dark: #3396a1;
  --font-grey: #999;
  --footer-text: #656565;
}





/* global classes */
#app-container{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.main-container{
    display: flex;
    flex: 1 1;
    position: relative;
    background-image: -webkit-linear-gradient(top, #ffffff 5%, #777777 100%);
    background-image: linear-gradient(to bottom, #ffffff 5%, #777777 100%);
}
.page-content{
    flex: 1 1;
    transition: margin-left 0.2s ease-in-out;
    min-height: 50vh;
}
.page-content h2{
    font-size: 14px;
    padding: 10px 10px 5px 10px;
    font-weight: 500;
}
.page-content.live{
    min-height: unset;
}
.center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.disable-scroll {
    overflow-y: hidden;
}
.page-content p a{
    color:#000;
    display:inline;
    text-decoration: underline;
}
/* HEADER */

.header{
    height: 56px;
    background: var(--white);
    display: flex;
    align-items: center;
}
#menu-btn{
    height: 40px;
    width: 46px;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.item-switcher{
    display: flex;
    align-items: center;
    flex: 1 1;
}
.free-account-btn{
    height: 28px;
    margin: 0 5px;
    padding: 4px 6px;
    background-color: #ffcb00;
    border: 1px solid #987900;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 10px;
    display: flex;
    align-items: center;
    margin-left: auto;
    border-radius: 2px;
}
.logo-container{
    /* flex: 1 1; */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-container .logo{
    height: 44px;
}

/* TOPNAV DESKTOP */
.topnav{
    /* height: 40px; */
    height: 34px;
    background: var(--cyan-dark);
    display: flex;
    align-items: center;
}
.topnav h1{
    padding: 0 10px;
    font-size: 15px;
    font-weight: 400;
    color: var(--white);
    text-transform: capitalize;
    text-shadow: 1px 1px rgb(0 0 0 / 50%);
}
.topnav .toggle-categories-btn{
    display: none;
    background: var(--blue-dark);
    color: var(--white);
    width: 180px;
    height: 34px;
    padding: 0 10px;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    cursor: pointer;
    transition: 0.1s;
}
.topnav .toggle-categories-btn:hover{
    background: #203581;
    color: #e6e6e6;
}
.topnav .toggle-categories-btn i{
    font-size: 11px;
    transition: transform 0.2s linear;
}
.topnav .toggle-categories-btn i.rotate{
    transform: rotate(180deg);
}
.topnav-filters{
    display: none;
    margin-left: auto;
}
.topnav-filters .filterbox{
    min-width: 135px;
    width: 100%;
    color: var(--white);
    font-size: 10px;
    position: relative;
    margin-right: 1px;
    position: relative;
}
.topnav-filters .filterbox i{
    margin-left: 6px;
}
.topnav-filters .filterbox label{
    display: flex;
    flex-direction: column;
    padding: 0 8px;
    background: var(--cyan-light);
    position: relative;
    height: 40px;
    width: 100%;
    z-index: 50;
}
.topnav-filters .filterbox label:hover{
    background: #0ab9ff;
    cursor: pointer;
}
.topnav-filters .filterbox label span:first-child{
    display: inline-block;
    padding-top: 10px;
}
.topnav-filters .filterbox label span{
    padding-top: 2px;
}
.topnav-filters .filterbox select{
    position: absolute;
    opacity: 0;
    display: none;
    visibility: visible;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
}
.filter-options{
    display: none;
    width: 100%;
    position: absolute;
    top: 100%;
    z-index: 100;
    padding: 15px 0;
    background: var(--cyan-light);
    box-shadow: 2px 3px 4px rgb(0 0 0 / 40%);
    z-index: 10;
}
.filter-options li{
    padding: 0 20px;
    line-height: 25px;
    background: var(--cyan-light);
    color: var(--white);
    font-size: 11px;
    cursor: pointer;
}
.filter-options li:hover, li.selected{
    background: #0ab9ff;
}
.search-form{
    padding: 0 20px;
    display: none;
    align-items: center;
}
.search-form input{
    width: 100%;
    min-width: 150px;
    height: 26px;
    padding: 5px 10px;
    border: 1px solid var(--font-grey);
    border-right: none;
    font-size: 12px;
    background: #eeeeee;
    color: #000;
}
.search-form input:focus{
    border: 1px solid var(--cyan-dark);
    border-right: none;
}
.search-form input::placeholder{
    font-size: 12px;
}
.search-form button {
    height: 26px;
    padding: 0 9px;
    background: #e6e6e6;
    color: #44B5C3;
    border: 1px solid var(--font-grey);
    font-size: 16px;
}
.search-form button:hover, .search-form button:active{
    background: #ccc;
}

/* SIDENAV */
.sidenav{
    height: calc(100% - 56px);
    width: 220px;
    top: 56px;
    position: fixed;
    left: -220px;
    background: var(--grey-dark);
    transition: left 0.2s ease-in-out;
    z-index: 100;
}
.sidenav.slided{
    left: 0;
}
.sidenav.hiddenNav{
    display: block;
}
.sidenav-searchbox{
    height: 73px;
    display: flex;
    align-items: center;
    background: var(--grey-light);
}
.sidenav-searchbox input{
    width: 100%;
    padding: 8px 10px;
    background: #eee;
    font-size: 12px;
    font-weight: 500;
}
.sidenav-searchbox input::placeholder{
    font-size: 12px;
    font-weight: 500;
}
.sidenav-searchbox button{
    width: 40px;
    background: #eee;
    outline: none;
    border: none;
}
.sidenav-searchbox i{
    color: var(--grey-light);
    font-size: 14px;
}
.sidenav-form{
    display: flex;
    margin: 0 10px;
    border: 1px solid #999;
    transition: 0.2s;
}
.sidenav-form:hover{
    border: 1px solid var(--cyan-light);
}
.sidenav-top{
    display: none;
    height: 42px;
    background: var(--grey-light);
}
.sidenav-top a{
    height: 100%;
    padding: 0 15px;
    font-size: 13px;
    font-weight: 600;
    line-height: 42px;
    color: #eaeaea;
}
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 56px;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.8);
    visibility: hidden;
    opacity: 0;
    transition: 0.2s ease-in-out;
    z-index: 1;
}
.overlay.darker {
    visibility: visible;
    opacity: 1;
    transition: 0.2s ease-in-out;
}
.category-list{
    height: calc(100% - 73px);
    overflow-y: scroll;
}
.category-list::-webkit-scrollbar{
    display: none;
}
.category-list li{
    border-bottom: 1px solid var(--grey-light);
}
.category-list li a{
    height: 34px;
    line-height: 34px;
    padding: 0 15px;
    font-size: 13px;
    background: var(--grey-dark);
    color: #999999;
    display: flex;
    justify-content: space-between;
    transition: 0.1s;
}
.category-list li a:hover{
    background: #1f1f1f;
    color: var(--white);
}
.category-count{
    font-size: 10px;
    font-weight: 600;
    color: var(--cyan-dark);
}
.category-count i{
    margin-left: 6px;
    color: #999999;
}


/* USERS */
.users{
    display: flex;
    flex-wrap: wrap;
    padding: 2px;
}
.user{
    flex-basis: calc(50% - 4px);
    margin: 2px 2px 24px 2px;
    background: #ccc;
    position: relative;
}
/* user hover effects */
.user:hover .userImage{
    transform: scale(1.1);
}
.user:hover .userInfo{
    bottom: 0;
}
.user:hover .userStatus{
    height: 22px;
}
/*  */
.userImage{
    height: 100%;
    width: 100%;
    transition: transform 0.15s ease-out;
}
.aspectRatio{
    width: 100%;
    padding-bottom: 75%;
    overflow: hidden;
    box-shadow: 0 1px 1px rgb(0 0 0 / 75%);
}
.userContainer{
    position: relative;
}
.userWrapper{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.userWrapper a{
    position: relative;
    color: #222;
    font-size: 12px;
    box-shadow: 0 1px 1px rgb(0 0 0 / 75%);
    display: flex;
    align-items: baseline;
}
.userInfo{
    opacity: 0;
    position: absolute;
    width: 100%;
    bottom: -28px;
    color: var(--white);
    transition: all 0.15s ease-out;
}
.userRating{
    background: transparent;
    color: gold;
    font-size: 8px;
    padding: 0 4px;
    height: 12px;
    line-height: 12px;
}
.userRating i{
    text-shadow: 0 0 2px #b39500;
    margin-right: 1px;
}
.userDetails{
    display: flex;
    padding: 0 4px;
    background: rgba(0, 0, 0, 0.5);
    font-family: 'Noto Sans JP', sans-serif;
    height: 16px;
    line-height: 16px;
    font-size: 10px;
    font-weight: 600;
    text-transform: capitalize;
    text-shadow: 0.5px 0.5px 1px var(--black);
}
.userName{
    width: 70%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.userCountryAge{
    width: 30%;
    display: flex;
    justify-content: flex-end;
}
.userCountryAge span.spacer{
    color: var(--font-grey);
    margin: 0 4px;
    font-size: 8px;
}
.hiddenInfo{
    height: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    background: rgba(0, 0, 0, 0.5);
    padding: 0 4px 4px 4px;
}
.hiddenInfo p{
    height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 12px;
    font-size: 10px;
    font-weight: 400;
    text-shadow: 0.5px 0.5px 1px var(--black);
    text-transform: capitalize;
}
.userStatus{
    background: #33CC00;
    color: var(--black);
    height: 14px;
    line-height: 14px;
    font-size: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
    transition: height 0.15s ease-out;
    box-shadow: 0 1px 1px rgb(0 0 0 / 75%);
}
.userStatus.offline{
    background: #222;
    color: var(--white);
}
.userStatusLink{
    width: 100%;
    height: 24px;
    position: absolute;
    bottom: -24px;
}

/* load more */
.load-more-container{
    height: 40px;
    margin: 10px 0 20px 0;
    text-align: center;
}
#load-more-btn{
    height: 40px;
    padding: 0 20px;
    color: var(--white);
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    font-size: 12px;
    font-weight: 500;
    background-color: var(--grey-light);
    border: none;
    border-radius: 2px;
    outline: none;
    transition: background-color 0.2s;
}
#load-more-btn:hover{
    background-color: #1b2d6d;
}
#user-shell{
    display: none;
}
.spinner {
    display: none;
    height: 40px;
    margin: 0 auto;
}

/* CHATROOM */
.chatroom{
    height: 100%;
    padding: 10px;
}
iframe{
    display: flex;
    height: 720px;
    border:none;
}
.chatroom-link{ position:relative; display:inline-block; width:100%; height:100%; }
.chatroom-link iframe { z-index: 2; }
.iframe-block { position:absolute; height:100%; width:100%; z-index:1; }
h3.similar-users{
    color: var(--grey-dark);
    font-size: 14px;
    padding: 4px 10px;
    text-transform: capitalize;
}
.info-box{
    margin: 20px 0;
    text-transform: capitalize;
    line-height: 18px;
    padding: 10px;
    position: relative;
    background: #efefef;
}
.box-tag{
    position: absolute;
    top: 0;
    right: 0;
    height: 38px;
    width: 38px;
    background-color: #ffcb00;
    color: #000;
}
.box-tag img{
    height: 100%;
}
.info-box li{
    color: var(--grey-dark);
    font-size: 13px;
    font-weight: 500;
}
.info-box li.label{
    margin: 10px 0;
    color: var(--cyan-dark);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 700;
}
.gallery-link{
    display: flex;
    position: relative;
    max-width: 414px;
    margin: 20px auto;
    box-shadow: 0 1px 1px rgb(0 0 0 / 75%);
}
.gallery-link img{
    width: 100%;
    height: 100%;
}
.gallery-link img.watermark{
    position: absolute;
    top: 2px;
    left: 2px;
    height: 26px;
    width: auto;
}
.gallery-title{
    position: absolute;
    width: 100%;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
    transition: 0.1s;
}
.gallery-title:hover{
    color: #ffcb00;
}

/* FOOTER */
footer{
    padding: 30px 10px 20px 10px;
    background: var(--black);
    color: var(--font-grey);
    border-top: 3px solid #fff;
    text-align: justify;
    display: flex;
    flex-direction: column;
}
footer h2{
    font-size: 14px;
    margin-bottom: 10px;
    color: #bbb;
}
footer p{
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 30px;
}
.footer-contents{
    border-top: 1px solid #212121;
}
.footer-language{
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.footer-language span{
    margin-right: 10px;
}
#select-language{
    background: #d2d2d2;
    padding: 2px 4px;
}
.footer-links{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin: 10px 0;
    color: #212121;
}
.footer-links li a{
    font-size: 12px;
    padding: 0 12px;
    color: #bbb;
    font-weight: 500;
    transition: 0.2s;
}
.footer-links li a:hover, .assistance-icons a:hover, .translation-links li a:hover{
    color: var(--white);
}
.translation-links{
    display: none;
    align-items: center;
}
.translation-links li a{
    font-size: 11px;
    color: #bbb;
    font-weight: 500;
    transition: 0.2s;
    margin-left: 8px;
}
.footer-intro{
    color: #efefef;
    max-width: 600px;
    margin: 20px auto 0 auto;
    width: 100%;
}
.footer-intro h2{
    font-size: 1.3rem;
    line-height: 1.2;
    margin: 1em 0 0.7em;
    font-weight: 400;
    color:#efefef;
}
.footer-intro ul{
    list-style: disc;
    margin: 20px 15px;
    font-size: 13px;
    line-height: 20px;
}

.assistance{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.assistance h2{
    margin: 0;
    margin-right: 5px;
    font-weight: 400;
    color: var(--font-grey);
}
.assistance-icons{
    display: flex;
}
.assistance-icons a{
    margin-left: 5px;
    padding: 5px;
    color: var(--font-grey);
}
.compliance{
    text-align: center;
}
.compliance a{
    font-size: 12px;
    line-height: 16px;
    color: var(--font-grey);
    transition: 0.2s;
    padding: 0 10px;
}
.compliance a:hover{
    color: #bbb;
}
.compliance p{
    margin-bottom: 5px;
    font-size: 12px;
}
.compliance a p{
    font-size: 12px;
}
.compliance-links{
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--grey-light);
}

.compliance-links a{
    border-right: 1px solid #212121;
}

/* not found */
.thumbs-title.notfound{
    font-size: 18px;
}


/* MEDIA QUERIES */

@media (min-width: 375px) {
    #menu-btn{
        margin-right: 5px;
    }
    .account-btn{
        padding: 4px 10px;
    }
    .logo-container .logo{
        height: 50px;
    }
}
@media (min-width: 414px){
    .gallery-link{
        max-width: 260px;
        margin: 10px;
    }
}
@media (min-width: 480px){
    .user{
        flex-basis: calc(33.3333% - 4px);
    }
}
@media (min-width: 540px) {
    .footer-links li a {
        padding: 0px 8px;
    }
    .footer-links li a.gohome {
        padding: 0px 8px 0px 0;
    }
    .compliance-links{
        display: flex;
    }
}

@media (min-width: 640px){
    .user{
        flex-basis: calc(25% - 4px);
    }
}
@media (min-width: 768px){
    .footer-contents{
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
        flex-wrap: wrap;
    }
    .footer-language, .footer-links{
        margin: 10px 0;
    }
    .assistance{
        margin: 10px 0;
        width: 100%;
    }
    .assistance h2{
        font-size: 16px;
    }
    .profile-info{
        display: flex;
        flex-direction: row-reverse;
        margin: 20px 0;
        height: 234px;
        background: #efefef;
    }
    .info-box{
        flex: 1 1;
        margin: 10px;
        margin-left: 0;
        height: calc(100% - 20px);
        overflow-y: scroll;
    }
    .box-tag{
        right: 5px;
        border-radius: 100%;
    }
    .gallery{
        background: #efefef;
    }
    .gallery-link{
        margin: 10px;
        max-width: calc(100% - 20px);
        height: calc(100% - 20px);
    }
    h3.similar-users{
        font-size: 16px;
    }
    /* chat info scrollbar */
    .info-box::-webkit-scrollbar {
        display: block;
        width: 14px;
        cursor: pointer;
    }
    .info-box::-webkit-scrollbar-track {
        background-color: #efefef;
        background-clip: content-box;
        border-radius: 10px;
        padding-left: 2px;
    }
    .info-box::-webkit-scrollbar-thumb {
        background-color: var(--footer-text);
        cursor: pointer;
        transition: 0.1s ease-in-out;
        border-left: 5px solid #efefef;
    }
    .info-box::-webkit-scrollbar-thumb:hover {
        background-color: var(--blue-dark);
    }
}

@media (min-width: 1024px) {
    /* reset mobile nav animation classes */
    .sidenav.slided{
        left: -220px;
    }
    .sidenav.hiddenNav{
        display: none;
    }
    .disable-scroll{
        overflow-y: auto;
    }
    /* - */
    #menu-btn, .overlay, .sidenav-searchbox{
        display: none;
    }
    .header{
        padding: 0 20px;
        justify-content: space-between;
    }
    .item-switcher{
        justify-content: space-between;
    }
    .logo-container{
        flex: unset;
    }
    .page-content{
        padding: 10px 60px;
        min-height: 707px;
    }
    .page-content h2{
        padding: 5px 2px;
        font-size: 16px;
    }
    .page-content.live{
        padding: 20px;
    }
    .logo-container .logo{
        height: 54px;
        margin-top: 2px;
    }
    .free-account-btn{
        margin: 0;
        height: 36px;
        line-height: 36px;
        padding: 0 20px;
        font-size: 10px;
        margin-left: auto;
        font-weight: bold;
        background-color: #ffcb00;
        background-image: -webkit-linear-gradient(bottom, rgba(255, 180, 0, 0.67) 0%, rgba(255, 210, 0, 0.67) 17.26%, rgba(255, 252, 0, 0.67) 47%, rgba(255, 252, 0, 0.67) 100%);
        background-image: linear-gradient(to top, rgba(255, 180, 0, 0.67) 0%, rgba(255, 210, 0, 0.67) 17.26%, rgba(255, 252, 0, 0.67) 47%, rgba(255, 252, 0, 0.67) 100%);
    }
    .topnav{
        height: 40px;
    }
    .topnav h1{
        padding: 0 30px;
        font-size: 18px;
    }
    .topnav-filters{
        display: flex;
    }
    .search-form{
        display: flex;
    }
    .sidenav-top{
        display: block;
    }
    .category-list{
        height: 100%;
    }
    .user{
        margin: 2px 2px 28px 2px;
    }
    .userDetails{
        height: 20px;
        line-height: 20px;
        font-size: 12px;
        font-weight: 500;
    }
    .userRating{
        height: 14px;
        line-height: 14px;
    }
    footer{
        padding: 10px 20px;
    }
    footer p{
        margin-bottom: 10px;
        font-size: 13px;
    }
    .footer-contents{
        border: none;
        order: 1;
    }
    .footer-intro{
        order: 3;

    }
    .assistance{
        margin: 0;
        justify-content: flex-start;
    }
    .assistance h2{
        font-size: 18px;
    }
    .compliance{
        text-align: right;
        font-style: italic;
    }
    .compliance p{
        margin: 0;
        font-size: 11px;
    }
    .compliance a{
        padding: 0 4px;
        font-size: 11px;
    }
    .compliance a p{
        font-size: 11px;
    }
    .compliance-links{
        justify-content: flex-end;
    }
    .footer-links li a{
        padding: 0 6px;
    }
    .footer-links li a.gohome {
        padding: 0px 6px 0px 0;
    }
    .page-content.move-right{
        margin-left: 220px;
    }
    .sidenav{
        width: 220px;
        height: 100%;
        position: absolute;
        top: 0;
        left: -220px;
    }
    .sidenav.slide-left{
        left: 0;
    }
    #trigger{
        height: 30px;
        background-color: var(--blue-dark);
        color: var(--white);
        padding: 0 10px;
        font-size: 12px;
        font-weight: 600;
        width: 140px;
        position: absolute;
        top: 15px;
        right: 0;
        transform-origin: right top;
        transform: rotateZ(-90deg);
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: background-color 0.2s;
        letter-spacing: 2px;
    }
    #trigger:hover{
        background-color: #3396a1;
    }
    #trigger i{
        font-size: 10px;
        transition: all 0.2s linear;
    }
    #trigger i.animate{
        transform: rotate(180deg);
    }
    .chatroom{
        padding: 0;
    }
    h3.similar-users{
        padding: 20px 4px 10px 4px;
    }
    .thumbs-title.notfound{
        font-size: 20px;
    }
    .profile-info{
        height: 244px;
    }
    .gallery-link{
        max-width: 360px;
    }
}
@media (min-width: 1200px) {
    .user{
        flex-basis: calc(20% - 4px);
    }
    .footer-contents{
        justify-content: flex-end;
    }
    .footer-language{
        margin-left: 30px;
    }
    .columns{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .col1{
        max-width: 670px;
    }
    .footer-intro{
        margin-top: 20px;
    }
}
@media (min-width: 1400px){
    .user{
        flex-basis: calc(16.6666666667% - 4px);
    }
}
@media (min-width: 1630px){
    .footer-language{
        display: none;
    }
    .translation-links{
        display: flex;
        flex: 1 1;
        justify-content: center;
    }
    .col1{
        max-width: 1100px;
    }
    .page-content{
        padding: 10px 80px;
    }
}
@media (min-width: 1700px){
    .user{
        flex-basis: calc(14.2857142857% - 4px);
    }
}
@media (min-width: 1920px){

}
@media (min-width: 2146px){
    .user{
        flex-basis: calc(12.5% - 4px);
    }
}