@font-face {
    font-family: 'Inter';
    src: url('../Fonts/Inter/Inter-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../Fonts/Inter/Inter-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../Fonts/Inter/Inter-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../Fonts/Inter/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../Fonts/Inter/Inter-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../Fonts/Inter/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../Fonts/Inter/Inter-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../Fonts/Inter/Inter-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../Fonts/Inter/Inter-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Oswald';
    src: url('../Fonts/Oswald/Oswald-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Oswald';
    src: url('../Fonts/Oswald/Oswald-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

#dynamicContent {
    -webkit-overflow-scrolling: touch;
}

/* LOADER */
.fk-loader {
    max-height: 100vh; overflow: hidden;
}

.fk-lockscreen {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    z-index: 45;
    transition: opacity 0.3s ease-in-out;
}

.fk-loading {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 300px;
    height: 300px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.fk-loading__spinner {
    display: inline-block;
    position: relative;
    width: 136px;
    height: 136px;
}

.fk-loading__spinner div {
    position: absolute;
    border: 6px solid #FC2ACA;
    opacity: 1;
    border-radius: 50%;
    animation: fk-loading 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.fk-loading__spinner div:nth-child(2) {
    animation-delay: -0.5s;
}

@keyframes fk-loading {
    0% {
        top: 72px;
        left: 72px;
        width: 0;
        height: 0;
        opacity: 0;
    }
    4.9% {
        top: 72px;
        left: 72px;
        width: 0;
        height: 0;
        opacity: 0;
    }
    5% {
        top: 72px;
        left: 72px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: 0;
        left: 0;
        width: 144px;
        height: 144px;
        opacity: 0;
    }
}

.fk-blur {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    /*background: rgba(255, 255, 255, 0.1);*/
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.fk-blur_state_visible {
    opacity: 1;
}

.viewportLock {
    max-height: 100vh;
    overflow: hidden;
}

.btn.btn-join.continueButton {
    display: block;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: #FC2ACA;
    color: #FFFFFF;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    cursor: pointer;
    text-align: center;
    margin-top: 12px;

}

.btn.btn-join.continueButton:hover {
    background: #E118AD;
}

.onlineCircle{
    width: 29px;
    height: 29px;
    float: right;
    position: relative;
    margin-right: 14px;
    background-image: url('../Images/chat-icon-green.png');
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.offlineCircle{
    width: 29px;
    height: 29px;
    float: right;
    position: relative;
    background-image: url('../Images/chat-icon-orange.png');
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.subbutton {
    margin-top: 4px;
}

.subbutton .onlineCircle{
    margin-left: auto;
    margin-top: -4px;
}

.offlineCircle{
    width: 29px;
    height: 29px;
    float: right;
    position: relative;
    background-image: url('../Images/chat-icon-orange.png');
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.subbutton .offlineCircle{
    margin-right: 4px;
}