@import "colors.css";
@import "topnews.css?2";

@font-face {
    font-family: 'Ubuntu Habbo';
    src: url(/assets/fonts/UbuntuHabbo-211026.woff) format("woff2"), url(/assets/fonts/UbuntuHabbo-211026.woff) format("woff");
    unicode-range: U+007C, U+2020, U+2022, U+00B6, U+00B1, U+00A5, U+00B5, U+00AA, U+00BA, U+00AC, U+0192, U+00BB, U+2014, U+2018, U+2021
}

html {
    overflow-x: hidden;
}

*, html, body {
    font-family: "Roboto", sans-serif;
    image-rendering: pixelated;
}

.container {
    max-width: 1300px;
}

.slick-slider {
    touch-action: pan-y;
    -ms-touch-action: pan-y;
}

img {
    image-rendering: pixelated;
}

.btn:hover {
    color: rgba(255, 255, 255, .75);
}

.btn-hm {
    margin-top: 10px;
    background-color: var(--default);
    color: #ffffff;
}

.btn-hm:hover {
    color: rgba(255, 255, 255, .75);
}

.btn-primary {
    background-color: var(--default);
}

.btn-danger {
    background-color: #dc3545!important;
    border-color: #dc3545;
}

.btn-hm:hover {
    color: rgba(255, 255, 255, .75);
}

body {
    background-color: var(--background);
}

nav {
    box-sizing: content-box;
    background-color: var(--nav-background);
    height: 80px;
    box-shadow: 0 3px #39464E, 0 4px #282E32;
    transition: all .2s linear;
}

nav::before {
    content: "";
    background-image: -webkit-linear-gradient(top, #30383C, #343C41);
    background-image: -moz-linear-gradient(top, #30383C, #343C41);
    width: 100%;
    height: 6px;
    box-shadow: 0 1px #515C65;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .2s linear;
}

.toggler-icon {
    color: var(--nav-items);
    font-size: 30px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
}

.navbar-nav > .nav-item {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all .2s linear;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
    padding: 8px 30px;
    cursor: pointer;
    border-right: 1px solid var(--nav-border);
}

.navbar-nav > .nav-item::before {
    content: "";
    background-color: var(--nav-hover);
    height: 4px;
    border-bottom: 4px solid var(--nav-hover);
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease-in-out;
}

.navbar-nav > .nav-item:hover::before {
    transition: visibility 0s, opacity .2s linear;
    opacity: 1;
    visibility: visible;
}


.navbar-left.navbar-nav .nav-item:first-of-type {
    border-left: 1px solid var(--nav-border);
}


.navbar-nav > .nav-item > a {
    transition: all .2s linear;
}

.navbar-nav > .nav-item > a,
.navbar-nav > .nav-item > a:visited,
.navbar-nav > .nav-item > a:link {
    color: var(--nav-items);
    transition: all .2s linear;
}

.navbar-nav > .nav-item:hover > a,
.navbar-nav > .nav-item:hover > a.nav-link > .nav-icon {
    color: var(--nav-hover) !important;
    transition: all .2s linear;
}

.navbar-nav > .nav-item > .dropdown-menu {
    width: 13rem;
    background-color: var(--nav-dropdown-background);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16), 0 1px 2px rgba(0, 0, 0, 0.1);
    padding: 0;
    border: none;
    margin-top: -10px;
    left: 50%;
    transform: translate(-50%, 0);
    opacity: 0;
    visibility: hidden;
    border-radius: 3px;
    transition: visibility 0s, opacity .5s linear;
    animation: fadeOut .5s;
}

.navbar-nav > .nav-item > .badge-notification {
    position: absolute;
    font-size: .6rem;
    margin-top: -4.1rem;
    margin-left: 3.9rem;
    padding: .2em .45em;
}

.navbar-nav > .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    animation: fadeIn .5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.navbar-nav > .nav-item > a.nav-link > .nav-icon {
    position: relative;
    top: 15px;
    height: 45px;
    color: var(--nav-items-icons);
    font-size: 20px;
    text-align: center;
    display: block;
    transition: all .2s linear;
}

.navbar-nav > .nav-item:hover > a > .nav-icon {
    color: var(--nav-hover);
    transition: all .2s linear;
}

.navbar-left > .nav-item:hover {
    background-color: #42505a;
    transition: all .2s linear;
}

.navbar-nav > .nav-item > .dropdown-menu > .dropdown-item:first-of-type {
    transition: all .2s linear;
}


.navbar-nav > .nav-item > .dropdown-menu > .dropdown-item:first-of-type::before {
    content: "";
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-bottom-color: var(--nav-dropdown-background);
    box-sizing: border-box;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translate(-50%, 0);
    transition: all .2s linear;
}

.navbar-nav > .nav-item > .dropdown-menu > .dropdown-item:first-of-type:hover::before {
    border-bottom-color: var(--nav-hover);
    transition: all .2s linear;
}

.navbar-toggler {
    margin-top: 5px;
}

.navbar-nav > .nav-item > .dropdown-menu > a.dropdown-item {
    font-size: 13px;
    text-transform: none;
    color: var(--nav-dropdown-font);
    text-shadow: 0 1px #fff;
    padding: 15px 12px;
    transition: all .2s linear;
}

.navbar-nav > .nav-item > .dropdown-menu > a.dropdown-item:last-of-type {
    box-shadow: none;
    border-radius: 0 0 3px 3px;
}

.navbar-nav > .nav-item > .dropdown-menu > a.dropdown-item:hover {
    box-shadow: inset 0 1px #93B122, inset 0 2px rgba(255, 255, 255, 0.30), inset 0 -3px rgba(0, 0, 0, 0.06), inset 0 -1px #728A19;
    background-color: var(--nav-hover);
    color: var(--nav-dropdown-hover-font);
    padding-left: 20px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.40);
    transition: all .2s linear;
}

.navbar-nav > .nav-item > .dropdown-menu > a.dropdown-item:hover:first-of-type {
    border-radius: 3px 3px 0 0;
    box-shadow: inset 0 -3px rgba(0, 0, 0, 0.06), inset 0 -1px #728A19;
}

.navbar-nav > .nav-item > .dropdown-menu > a.dropdown-item:hover:last-of-type {
    border-radius: 0 0 3px 3px;
    box-shadow: inset 0 1px #93B122, inset 0 2px rgba(255, 255, 255, 0.30);
}

.navbar-right > .nav-item {
    font-size: 20px;
    border: none;
    padding: 0;
    margin-right: 15px;
}

.navbar-right > .nav-item:last-of-type {
    margin-right: 0;
}

.navbar-right > .nav-item > a,
.navbar-right > .nav-item > a:visited,
.navbar-right > .nav-item > a:link {
    color: var(--nav-items-icons);
    line-height: 80px;
}

.navbar-right > .nav-item > .nav-link > .nav-profile {
    background-size: cover;
    overflow: hidden;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    margin-top: 15px;
    image-rendering: auto;
    box-shadow: 0 1px rgba(255, 255, 255, 0.05);
}

.navbar-right > .nav-item > .nav-link > .nav-profile > img {
    margin-top: -17px;
    margin-left: -5px;
}

.feed {
    background-color: var(--feed-background);
    background-image: url("../../img/mask.png");
    width: 100%;
    min-height: 50px;
    box-shadow: inset 0 2px 1px rgba(0, 0, 0, 0.1);
    padding: 15px 10px;
    font-size: 15px;
    color: var(--feed-tweets);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.30);
    overflow: hidden;
}

.tweets {
    width: 100%;
    float: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin: 0;
}

.tweets > span:first-of-type,
.tweets > span a {
    color: var(--default);
    font-weight: var(--font-semibold);
    text-decoration: none;
}

.tweets-icon {
    background-image: url("../../img/feed-twitter.png");
    background-repeat: no-repeat;
    width: 78px;
    height: 50px;
    float: left;
}

#feed-right {
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: end;
    height: 100%;
}

#feed-right > a {
    text-decoration: none;
    font-weight: bold;
    color: var(--feed-tweets);
    transition: all .2s linear;
}

#feed-right > a:hover {
    color: var(--nav-hover);
}

#feed-right > a:last-of-type::before {
    content: "";
    border-left: rgba(255, 255, 255, .1) 1px solid;
    width: 1px;
    height: 20px;
    margin: -1px 15px 0 11px;
}

#feed-right > a > i {
    padding-right: 10px;
}

.header {
    height: 400px;
    background-image: url("../../img/header_bg.png");
    background-repeat: repeat-x;
    background-color: var(--background);
    -webkit-box-shadow: inset 0px 4px 0px 0px rgba(255, 255, 255, 0.25), inset 0px -4px 0px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: inset 0px 4px 0px 0px rgba(255, 255, 255, 0.25), inset 0px -4px 0px 0px rgba(0, 0, 0, 0.25);
    box-shadow: inset 0px 4px 0px 0px rgba(255, 255, 255, 0.25), inset 0px -4px 0px 0px rgba(0, 0, 0, 0.25);
}

.logo {
    cursor: pointer;
    padding-top: 25px;
}

.header-spacing {
    font-size: 22px;
    font-weight: bold;
    opacity: .75;
    padding: 20px 0 15px;
}

.content-left {
    padding-right: 25px;
}

.content-right {
    padding-left: 25px;
}

.content-splitter {
    width: 100%;
    height: 1px;
    background-color: var(--content-splitter);
    padding-top: 5px;
    padding-bottom: 5px;
    position: relative;
}

.slider > .carousel-inner {
    border-radius: 6px;
    overflow: hidden;
}

.slider > .carousel-inner > .carousel-item > img {
    width: 100%;
    height: auto;
    display: block;
}

.slider > .carousel-indicators {
    justify-content: normal;
    margin-left: 15px;
}

.slider > .carousel-indicators > li {
    border-radius: 50%;
    width: 12px;
    height: 12px;
    position: relative;
    top: 15px;
}

#slider-bg {
    -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
}

#slider-bg .carousel-item {
    height: 125px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.profile-header {
    width: 100%;
    height: 104px;
    background-color: #FFFFFF;
    -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
}

.profile-header > .avatar {
    width: 104px;
    height: 104px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    margin-left: 20px;
    float: left;
}

.profile-header > .avatar > img {
    margin: 10px 15px;
}

.profile-header .user-header {
    padding: 25px;
    font-weight: var(--font-semibold);
}

.profile-header > p {
    float: left;
    margin-left: 20px;
}

.profile-header > .motto {
    float: left;
    margin-top: 20px;
}

.profile-header .dj-subscribe {
    position: absolute;
    right: 10px;
    top: 55%;
    transform: translate(-10px, -65%);
}

.profile-header .dj-subscribe .subscribe-button {
    padding: 15px 25px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
}

/*.habmusic-player {
    height: 110px;
    background-color: var(--player-background);
    -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
    border-radius: 6px 6px 0 0;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 999;
}*/

#habmusic-player {
    height: 110px;
    background-color: var(--player-background);
    -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
    border-radius: 6px 6px 0 0;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 999;
}

.habmusic-player-parent {
    width: 100%;
    height: 110px;
    position: relative;
    margin-top: 50px;
}

.player .cover {
    width: 110px;
    height: 110px;
    float: left;
    background-size: contain;
    background-position: center;
    overflow: hidden;
    margin-left: 15px;
}

.player .cover > img {
    margin-top: 20px;
    margin-left: 20px;
}

.player .cover > .player-micro {
    background-image: url("../../img/player-micro.png");
    width: 26px;
    height: 39px;
    position: absolute;
    margin-top: 75px;
    margin-left: -30px;
    overflow: hidden;
}

.player .program {
    padding-left: 25px;
}

.player .player-info {
    width: 100%;
    background-color: var(--background);
    border-radius: 6px;
    padding: 5px;
    margin: 15px 0 0 25px;
    height: 85px;
}

.player .player-info > i {
    background-color: var(--player-icon-background);
    color: var(--news-font);
    padding: 15px;
    margin-right: 20px;
    margin-left: 10px;
    font-size: 15px;
    border-radius: 50%;
    float: left;
    margin-top: 15px;
}

.player .player-info > p {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 15px;
}

.player .player-info > p:first-of-type {
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 0;
}

.player .room-follow > i {
    background-color: var(--background);
    color: var(--player-icon-background);
    font-size: 15px;
    padding: 20px;
    border-radius: 50%;
    margin-left: 10px;
    margin-top: 24px;
    cursor: pointer;
}

.player .play > i {
    background-color: var(--player-play-background);
    color: var(--player-play-icon);
    font-size: 15px;
    padding: 30px;
    border-radius: 50%;
    margin-left: -20px;
    margin-top: 15px;
    cursor: pointer;
}

.footer-nav {
    background-image: -webkit-linear-gradient(top, #2E78B3, #3498DB);
    width: 100%;
    height: 60px;
    box-shadow: 0 -2px rgba(255, 255, 255, 0.5);
}

.footer-nav::before {
    content: "";
    background-image: url("../../img/footer-mask.png");
    width: 100%;
    height: 60px;
    position: absolute;
    left: 0;
}

.footer-nav .list-nav {
    list-style: none;
    position: relative;
    padding: 0;
    display: inline;
}

.footer-nav .footer-list > li {
    transition: all .2s linear;
    font-size: 15px;
    font-weight: var(--font-semibold);
    margin-right: 35px;
    float: left;
    position: relative;
}

.footer-content {
    background-color: var(--footer-background);
}

.footer-content::before {
    content: "";
    background-image: -webkit-linear-gradient(top, #30383C, #343C41);
    background-image: -moz-linear-gradient(top, #30383C, #343C41);
    width: 100%;
    height: 6px;
    box-shadow: 0 1px #515C65;
    display: block;
}

.footer-content > .container {
    margin-top: 15px;
}

.footer-list {
    list-style: none;
    padding-left: 0;
}

.footer-list > li:first-of-type {
    font-size: 16px;
    color: var(--footer-list-heading);
    padding: 5px 0;
}

.footer-list > li {
    font-size: 15px;
    font-weight: bold;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.40);
    padding: 5px 0;
    display: flex;
}

.footer-list > li > a,
.footer-list > li > a:visited,
.footer-list > li > a:link,
.footer-list > li > p {
    color: var(--footer-list-font);
    text-decoration: none;
    transition: all .1s linear;
}

.footer-list > li > a:hover {
    color: var(--footer-hover);
    padding-left: 5px;
}

.footer-list > li > p {
    font-weight: lighter;
}

.footer-list#tweets > li > img {
    float: left;
    margin-right: 10px;
}

.footer-list#tweets > li > .tweet {
    color: var(--footer-list-font);
    font-weight: normal;
}

.footer-list#tweets > li > .tweet a {
    color: var(--default);
    text-decoration: none;
}

.footer-list#official-disclaimer > li > p {
    text-align: justify;
}

.online-user {
    padding: 10px 0 30px;
    box-shadow: inset 0 -1px #2B3135, inset 0 -4px #39464E, 0 1px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: inset 0 -1px #2B3135, inset 0 -4px #39464E, 0 1px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: inset 0 -1px #2B3135, inset 0 -4px #39464E, 0 1px rgba(0, 0, 0, 0.1);
}

.user-box {
    width: 100%;
    height: 80px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, .1);
    border: transparent 2px solid;
    border-radius: 6px;
    transition: all .2s linear;
    font-size: 15px;
    font-weight: bold;
    color: var(--footer-user-font);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.30);
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: 20px;
}

.user-box:hover {
    border: var(--footer-hover) 2px solid;
}

.comment-bubble > .user-avatar,
.content-header > .user-avatar,
.user-box > .user-avatar {
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    width: 64px;
    height: 64px;
    float: left;
    margin: 7px 0 7px 7px;
    image-rendering: auto;
}

.user-box > .user-avatar > img {
    transition: all .2s linear;
    margin-top: -10px;
}

.user-header {
    padding: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 15px;
    font-weight: var(--font-semibold);
}

.user-icon {
    float: left;
    padding-right: 5px;
    max-height: 25px;
    max-width: 25px;
}

.user-icon + a {
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    color: var(--footer-user-font);
}

.user-header > .user-motto {
    font-size: 15px;
    color: var(--footer-user-motto);
    margin-top: 5px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-family: "Ubuntu Habbo", "Roboto", sans-serif;
}

.user-header > .user-motto[title="@@Kev22222@@"] {
    display: none;
}

.copyright {
    background-image: url("../../img/footer_copyright.png");
    width: 100%;
    height: 60px;
}

.copyright p {
    color: var(--footer-list-font);
    font-size: 15px;
    padding-top: 22px;
}

.text-highlight {
    font-weight: 500;
    color: var(--text-highlight);
}

.content-box {
    background-color: #ffff;
    border-radius: 6px;
    -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
    margin: 35px 0 35px;
    overflow: hidden;
    position: relative;
}

.content-left .content-box:first-of-type,
.content-right .content-box:first-of-type {
    margin-top: 0;
}

.content {
    margin-top: -100px;
}

.topnews-event + .content {
    margin-top: 25px;
}

.content-box > .content-header {
    height: 65px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.content-box > .content-header > h1 {
    font-size: 16px;
    font-weight: var(--font-semibold);
    color: #666666;
    padding: 25px 20px 25px 20px;
}

.content-box > .content-body {
    padding: 20px;
}

.list-icons {
    list-style: none;
    display: inline-block;
    padding-left: 0;
    margin-bottom: 0;
    overflow: hidden;
}

.sm-sld-left,
.sm-sld-right {
    position: absolute;
    font-size: 16px;
    margin-top: -73px;
    z-index: 1;
    cursor: pointer;
    background-color: var(--default);
    width: 40px;
    height: 40px;
    border-radius: 6px;
    color: #FFFFFF;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.30);
    text-align: center;
    transition: all .2s linear;
}

.sm-sld-right {
    right: 20px;
}

.sm-sld-left {
    right: 65px;
}

.sm-sld-right > i,
.sm-sld-left > i {
    padding-top: 10px;
}

.slick-disabled {
    background-color: #DBDEDF;
    color: #9A9A9A;
}

.list-icons .list-item {
    background-color: var(--background);
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid rgba(0, 0, 0, .1);
    width: 68px;
    height: 68px;
    border-radius: 6px;
    margin-right: 10px;
    cursor: pointer;
    float: left;
    transition: all .2s linear;
}

.list-icons .list-item img {
    margin-top: 50px;
    margin-left: 45px;
}

.list-icons .list-item:last-of-type {
    margin-right: 0;
}

.list-icons .list-item:hover {
    background-color: var(--footer-hover);
}

.list-habbo .user-box {
    margin-top: 0;
    background-color: #9A9A9A;
    color: #fff;
    font-size: 13px;
    border: 0;
    transition: all .2s linear;
}

.list-habbo .user-icon + a {
    color: #fff;
}

.list-habbo .staff {
    background-color: var(--default) !important;
}

.list-habbo .user-box.staff > .user-header > .user-motto {
    color: #83CBFB;
}

.list-habbo .user-box > .user-header > .user-motto {
    transition: all .2s linear;
    font-size: 15px;
    color: #CFCFCF;
}

.list-habbo .user-box > .user-avatar {
    border-radius: 6px 0 0 6px;
    width: auto;
    height: 100%;
    background-color: #DBDEDF;
    margin: 0 0 20px 0;
    transition: background-color .2s linear;
}

.list-habbo .user-box:hover {
    background-color: var(--default);
}

.list-habbo .user-box:hover > .user-header > .user-motto {
    color: #83CBFB;
}

.list-habbo .user-box:hover > .user-avatar {
    background-color: var(--default-light);
}

.list-habbo .user-box:hover > .user-avatar > img {
    margin-top: -15px;
}

.list-icons-sml {
    list-style: none;
    padding: 0;
    margin: -5px;
}

.list-icons-sml > li {
    background-color: #ECF0F1;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, .1);
    width: 62px;
    height: 62px;
    cursor: pointer;
    float: left;
    margin: 5px;
    transition: all .2s linear;
}

.list-icons-sml > li:hover {
    background-color: var(--default);
}

.list-icons-sml.avatars > li {
    border-radius: 50%;
}

.list-icons-xl {
    list-style: none;
    padding: 0;
    margin: -13px;
}

.list-icons-xl > .list-item {
    margin: 13px;
    cursor: pointer;
}

.list-icons-xl .list-item .showcase {
    background-repeat: no-repeat;
    background-position: center 25px;
    background-color: #DBDEDF;
    height: 80px;
    border-radius: 5px 5px 0 0;
    transition: background 0.2s ease-in-out;
    box-shadow: inset 0 -1px #DBDEDF;
}

.list-icons-xl .list-item:hover .showcase {
    background-position: center 15px;
}

.list-icons-xl .list-item:hover .showcase-title {
    background-color: var(--default);
}

.list-icons-xl .list-item .showcase-title {
    background-color: #9A9A9A;
    height: 40px;
    border-radius: 0 0 5px 5px;
    box-sizing: border-box;
    padding: 10px 5px;
    transition: background 0.2s ease-in-out;
    text-align: center;
    color: #fff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.30);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.list-icons-xl .list-item .showcase-title a {
    font-size: 15px;
    font-weight: var(--font-semibold);
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease-in-out;
}

.list-icons-xl.images .list-item .showcase {
    background-position: center top;
    background-size: cover;
    height: 120px;
}

.list-beats {
    list-style: none;
    margin: -17px;
    padding-left: 0;
}

.list-beats > li {
    height: 80px;
    margin-bottom: 10px;
}

.list-beats > li > .circle {
    background-color: rgb(230, 233, 234);
    width: 62px;
    height: 62px;
    cursor: pointer;
    float: left;
    background-position: center center;
    border-radius: 100%;
    border: 1px solid rgba(0, 0, 0, .1);
    margin: 14px 0px 0px 14px;
    transition: all 0.3s linear 0s;
}

.list-beats > li:hover > span > a {
    color: var(--default);
}

.list-beats > li:hover > .circle {
    background-color: var(--default);
}

.list-beats > li > span {
    color: rgb(153, 153, 153);
    float: left;
    margin-top: 25px;
    margin-left: 20px;
    font-size: 15px;
}

.list-beats > li > span > a {
    color: rgb(102, 102, 102);
    font-size: 16px;
    font-weight: var(--font-semibold);
    transition: color .2s linear;
}

.list-beats > li > span > a:visited,
.list-beats > li > span > a:hover,
.list-beats > li > span > a {
    text-decoration: none;
}

.next-show {
    color: #fff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.30);
}

.next-show .show-dj {
    font-size: 15px;
    font-weight: var(--font-semibold);
    background-color: var(--default-light);
    border-radius: 6px 6px 0 0;
    padding: 10px 15px 10px 15px;
    margin-bottom: 0;
}

.next-show .show-dj > .show-time {
    float: right;
}

.schedules {
    font-size: 15px;
    color: #666666;
    margin-bottom: 10px;
    cursor: pointer;
    float: left;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0 15px;
}

.schedules tr {
    height: 80px;
}

.schedules tr > th:first-of-type {
    background-position: center 5px;
    background-repeat: no-repeat;
    background-color: #E2E2E2;
    padding: 0 20px 0 20px;
    border-radius: 6px 0 0 6px;
    transition: all .2s linear;
}

.schedules tr > td {
    text-align: center;
    background-color: #F0F0F0;
    transition: all .2s linear;
    border: 0;
    vertical-align: middle;
}

.schedules tr > td:last-of-type {
    border-radius: 0 6px 6px 0;
}

.schedules tr > td:not(:nth-child(3)) {
    font-weight: var(--font-semibold);
}

.schedules tr > td:not(:first-of-type) {
    border-left: 1px solid rgba(226, 226, 226, 0.5);
}

.schedules tr > th {
    border: 0;
}

.schedules tr:hover > td {
    color: #FFFFFF;
    background-color: var(--default);
}

.schedules tr:hover > th:first-of-type {
    background-position: center 0;
    background-color: var(--default-light);
}

.schedules-none {
    text-align: center;
}

.schedules-none::before {
    content: url("../../img/frank_sad.png");
    position: absolute;
    left: 0;
    margin-top: -30px;
    margin-right: 10px;
}

.next-show .show-name {
    font-size: 15px;
    background-color: var(--default);
    padding: 10px 15px 10px 15px;
    border-radius: 0 0 6px 6px;
    margin-bottom: 0;
}

.form-no-captions .form-control {
    background-color: var(--background);
    font-size: 15px;
}

.form-no-captions button {
    background-color: #3498DB;
    color: #fff;
    font-size: 15px;
    font-weight: var(--font-semibold);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.30);
}

.form-no-captions textarea {
    width: 100%;
    resize: none;
}

.form-no-captions input, select {
    height: 48px !important;
}

.form-no-captions > div {
    margin-bottom: 10px;
}

.form-habbo {
    background-image: url("../../img/default.png");
    background-position: bottom;
    background-repeat: no-repeat;
    background-color: #F6F6F6;
    width: 56px;
    border-radius: 3px 0 0 3px;
}

.news-body {
    width: 100%;
    overflow: hidden;
    -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
    border-radius: 6px 0 6px 6px;
}

.news-body > .news-header {
    height: 200px;
    width: 100%;
    background-size: 200%;
    background-position: 75%;
    image-rendering: pixelated;
    color: #FFFFFF;
    padding: 25px 20px 25px 20px;
}

.news-body > .news-header:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
    border-radius: 6px 0 0 0;
    height: 200px;
}

.news-body > .news-header > h1 {
    font-size: 20px;
    font-weight: var(--font-semibold);
    mix-blend-mode: screen;
}

.news-body > .news-header > p {
    font-size: 16px;
    opacity: .5;
}

.news-body > .news-header > .news-author {
    border-radius: 6px;
    background-color: rgba(0, 0, 0, .25);
    width: auto;
    height: auto;
    padding: 15px;
    position: absolute;
}

.news-body > .news-text {
    background-color: #ffffff;
    padding: 30px;
    font-size: 1rem !important;
}

.news-body > .news-text img {
    margin: 10px;
}

.news-body > .news-text .swipebox img {
    image-rendering: auto;
}

.news-body > .news-text a.pixelated-images > img {
    image-rendering: pixelated;
}

.news-comments {
    padding: 30px !important;
    -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
    border-radius: 0 6px 6px 6px;
    background-color: #f3f8f9;
}

.news-comments > h1 {
    font-size: 20px;
    font-weight: var(--font-semibold);
    color: #303030;
    padding: 25px 0;
}

.news-comments > h1 > span {
    color: #9e9e9e;
}

.profile-comments .content-body,
.news-comments .content-body {
    font-size: 15px;
    color: #999999;
}

.profile-comments .content-header,
.news-comments .content-header {
    height: 80px;
}

.profile-comments .content-header > .user-avatar,
.news-comments .content-header > .user-avatar {
    width: 56px;
    height: 56px;
    margin: 10px;
}

.profile-comments .content-header > h1,
.profile-comments .content-header a,
.news-comments .content-header > h1 > a {
    color: #303030;
    text-decoration: none;
}

.profile-comments .content-header > h1 > p,
.news-comments .content-header > h1 > p {
    font-weight: normal;
    font-size: 12px;
    float: right;
}

.profile-comments .content-header > .user-avatar > img,
.news-comments .content-header > .user-avatar > img {
    margin: -15px 0 0 -3px;
}

.comment-bubble {
    height: 65px;
    background-color: #ffffff;
    padding: 5px;
    -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
    border-radius: 30px;
    cursor: pointer;
    transition: all .2s linear;
    margin-top: 160px;
}

.comment-bubble:hover {
    transform: scale(.95);
}

.comment-bubble > .user-avatar {
    margin: 3px;
    width: 48px;
    height: 48px;
}

.comment-bubble > .user-avatar > img {
    margin: -15px 0 0 -8px;
}

.comment-bubble > p {
    margin-bottom: 0;
    margin-left: 70px;
    margin-right: 20px;
    font-size: 15px;
    color: #999999;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.comment-bubble > p:first-of-type {
    color: #303030;
    font-weight: var(--font-semibold);
    margin-top: 5px;
}

.bubble-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(0, 0, 0, .25);
    color: #ffffff;
    text-align: center;
    position: absolute;
    border-radius: 50%;
    margin-left: 240px;
    margin-top: 160px;
}

.bubble-icon > i {
    margin-top: 23px;
}

.badge-name {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.badge-name > img {
    margin-right: 10px;
}

.badge-name > a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 15px;
    font-weight: var(--font-semibold);
}

.cookie-message {
    border-radius: 6px;
    padding: 15px 0;
    background: #F7F9FB;
    border: 1px solid rgba(0, 0, 0, .15);
    box-shadow: 0 0 16px 2px rgba(0, 0, 0, .05), 0 10px 10px 2px rgba(0, 0, 0, .05);
    font-size: 15px;
    line-height: 40px;
    border-top: 1px solid #E4E4E4;
    position: fixed;
    z-index: 999;
    bottom: 5%;
    left: 2%;
    margin: auto;
    max-width: 225px;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 14px;
}

.cookie-message img {
    height: 42px;
    width: auto;
    align-self: center;
    margin-bottom: 15px;
}

.cookie-message span {
    display: inline-block;
    line-height: 1.5;
    padding-right: 10px;
    padding-left: 10px;
    border-right: 1px solid rgba(0, 0, 0, .1);
}

.cookie-message a.close {
    flex: 1 1 auto;
    border: none;
    font-size: 24px;
    padding: 0 2px 0 16px;
    position: relative;
    align-self: center;
    color: #919191;
    transition: color .2s linear;
}

.cookie-message a {
    display: inline-block;
    margin: 5px 0 0;
    color: var(--default);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.modal-open {
    padding-right: 0 !important;
}

.modal-dialog {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) !important;
}

input.search[type=text] {
    color: #898989;
    box-sizing: border-box;
    border: 2px solid #dddcdc;
    border-radius: 4px;
    font-family: 'Helvetica Neue', sans-serif, 'Source Code Pro';
    font-size: 18px;
    background-color: white;
    background-image: url('../../img/search-submit.png');
    background-position: 11px 11px;
    background-repeat: no-repeat;
    padding: 12px 20px 12px 40px;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
    width: 480px;
    height: 46px;
    box-shadow: 0 14px 25px 1px rgba(0, 0, 0, 0.28);
}

input.search[type=text]::placeholder {
    color: #bab7b7;
}

input.search[type=text]:focus {
    outline: none;
}

a[data-toggle="modal"] {
    cursor: pointer;
}

.loginForm {
    padding: 60px 60px 30px 60px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.loginForm + p {
    padding: 30px;
    text-align: center;
}

.loginForm + p > a {
    color: #696969;
    text-decoration: none;
}

.loginForm + p > a:hover {
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.loginForm h1 {
    font-size: 25px;
    font-weight: var(--font-semibold);
    color: #303030;
    text-align: center;
}

.loginForm p {
    font-size: 18px;
    color: #696969;
    text-align: center;
    padding: 30px;
}

.loginForm label {
    font-size: 16px;
    color: #6a6a6a;
}

.loginForm input[type="text"],
.loginForm input[type="password"] {
    height: 55px;
    font-size: 16px;
    color: #6a6a6a;
    border: 2px solid #e6e6e6;
    padding: 30px 55px 30px;
    border-radius: 5px;
}

.loginForm input[type="text"]:focus,
.loginForm input[type="password"]:focus {
    border: 2px solid #1084dd;
}

.loginForm input[type="text"]:focus + i.input-icon,
.loginForm input[type="password"]:focus + i.input-icon {
    color: #1084dd;
}

.loginForm i.input-icon {
    float: left;
    margin-top: -40px;
    margin-left: 25px;
}

.loginForm button.btn-primary {
    background-color: #1084dd;
    margin-top: 15px;
    padding: 20px 0 20px;
}

.loginForm #saveLogin {
    padding-left: 0;
}

.loginForm .password-forget {
    position: absolute;
    right: 0;
    font-size: 14px;
}

.loginForm .password-forget a {
    color: var(--blue);
}


.habbo_dance {
    width: 246px;
    height: 140px;
    position: absolute;
    margin: 0;
    top: -56px;
    left: 20px;
}

.habbo_dance .habbo {
    width: 64px;
    height: 110px;
    position: absolute;
}

.habbo_dance .habbo .shadow {
    background-color: rgba(0, 0, 0, 0.15);
    width: 34px;
    height: 16px;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    left: 18px;
}

.habbo_dance .habbo div {
    width: 64px;
    height: 110px;
    opacity: 1;
    position: absolute;
}

.habbo_dance .message {
    width: 35px;
    height: 80px;
    position: absolute;
    z-index: 10;
}

.tanzbanner {
    margin-right: auto;
    margin-left: auto;
    float: right;
    margin: 0 auto;
    padding-top: 105px;
    position: relative;
}

.platform-habbo {
    background-image: url(../../img/platform-habbo.png);
    width: 245px;
    height: 100px;
    position: absolute;
    padding-top: 20px;
    right: 10%;
    background-position: center top;
    margin-right: 30px;
}

@-webkit-keyframes dance1 {
    0%, 49.9% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

.habbo_dance .habbo .dance_1 {
    -webkit-animation: dance1 0.8s infinite;
}

@-webkit-keyframes dance2 {
    0%, 49.9% {
        opacity: 0;
    }
    50%, 100% {
        opacity: 1;
    }
}

.habbo_dance .habbo .dance_2 {
    -webkit-animation: dance2 0.8s infinite;
}

.habbo_dance .habbo.delay .dance_1 {
    -webkit-animation: dance1 0.8s 0.3s infinite;
}

.habbo_dance .habbo.delay .dance_2 {
    -webkit-animation: dance2 0.8s 0.3s infinite;
}

textarea:hover,
input[type="text"]:hover,
input[type="password"]:hover,
textarea:active,
input[type="text"]:active,
input[type="password"]:active,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
button:focus,
button:active,
button:hover,
label:focus,
select:focus,
.btn:active,
.btn.active {
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
}

.vt-karte {
    height: 165px;
    background-image: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, #943948 80%), url("/img/valentinstag/background.png");
    background-position: right bottom;
    background-position: center right;
    border-radius: 8px;
    position: relative;
    box-shadow: 0px 1px 4px 0px rgba(18, 16, 11, 0.15);
    margin-bottom: 30px;
}

.vt-karte::before {
    content: url("/img/valentinstag/vale_hearts.png");
    position: absolute;
    left: 50%;
    top: -15px;
    transform: translateX(-50%);
    border-radius: 50%;
    background-color: #ECF0F1;
    padding: 4px 5px;
    height: 30px;
    width: 30px;
}

.vt-karte > .paar {
    display: flex;
    justify-content: center;
}

.vt-karte > .paar img {
    height: 70px;
    width: 70px;
    border: 2px solid #fa5b74;
    border-radius: 50%;
    margin: 15px 10px;
    box-shadow: 0px 1px 4px 0px rgba(18, 16, 11, 0.15);
    image-rendering: auto;
}

.vt-karte > .namen,
.vt-karte > .motto {
    text-align: center;
    color: #fff;
    font-weight: 500;
}

.vt-karte > .motto {
    opacity: .5;
    font-size: 14px;
}

.vt-karte-neu {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 146px;
    background-position: right bottom;
    border-radius: 6px;
    box-shadow: 0px 1px 4px 0px rgba(18, 16, 11, 0.15);
}

.vt-karte-neu > .btn-vt-karte {
    border-radius: 50px;
    background-color: rgb(255, 255, 255);
    opacity: .75;
    color: #393c3d;
    height: 32px;
    line-height: 16px;
}

@keyframes pulse {
    0% {
        opacity: .5;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }

}

.stamp-selector input {
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.stamp1 {
    background-image: url("/img/valentinstag/stamp1.png");
}

.stamp2 {
    background-image: url("/img/valentinstag/stamp2.png");
}

.stamp3 {
    background-image: url("/img/valentinstag/stamp3.png");
}

.stamp-selector input:active + .stamp-card {
    opacity: .9;
}

.stamp-selector input:checked + .stamp-card {
    -webkit-filter: none;
    -moz-filter: none;
    filter: none;
}

.stamp-card {
    cursor: pointer;
    background-size: 250%;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    width: 120px;
    height: 120px;
    border-radius: 8px;
    -webkit-transition: all 100ms ease-in;
    -moz-transition: all 100ms ease-in;
    transition: all 100ms ease-in;
    -webkit-filter: brightness(1.8) grayscale(1) opacity(.7);
    -moz-filter: brightness(1.8) grayscale(1) opacity(.7);
    filter: brightness(1.8) grayscale(1) opacity(.7);
}

.stamp-card:hover {
    -webkit-filter: brightness(1.2) grayscale(.5) opacity(.9);
    -moz-filter: brightness(1.2) grayscale(.5) opacity(.9);
    filter: brightness(1.2) grayscale(.5) opacity(.9);
}

#vt-karte-offen .vt-stamp {
    width: 310px;
    height: 146px;
    margin: 0 auto;
    border-radius: 8px;
}

#vt-karte-offen .modal-title,
#vt-karte-offen .modal-footer {
    margin: 0 auto;
}

#vt-karte-offen .vt-inhalt {
    text-align: center;
    margin-top: 15px;
    white-space: pre-line;
}

.activity-check .ac-header {
    margin-bottom: 15px;
    font-weight: 500;
    color: #666;
}

.activity-check .ac-tasks {
    font-size: 14px;
}

.activity-check .ac-tasks > .ac-success {
    margin-right: 10px;
    color: var(--green);
}

.activity-check .ac-tasks > .ac-missing {
    margin: 0 12px 0 2px;
    color: var(--red);
}

.activity-check .ac-badge {
    transform: translate(-50%, -50%);
    top: 50%;
    left: 75%;
    position: relative;
    background-color: var(--light);
    padding: 12px;
    border-radius: 50%;
    width: 62px;
}

.activity-check .ac-progress {
    overflow: hidden;
    height: 25px;
    margin-top: 10px;
    background-color: #f7f7f7;
    background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
    background-image: -ms-linear-gradient(top, #f5f5f5, #f9f9f9);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
    background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
    background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
    background-image: linear-gradient(top, #f5f5f5, #f9f9f9);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    line-height: 25px;
    font-size: 14px;
    color: #fff;
    text-align: center;
}

.activity-check .ac-progress .ac-bar {
    height: 25px;
    background-color: #0e90d2;
    background-image: -moz-linear-gradient(top, #149bdf, #0480be);
    background-image: -ms-linear-gradient(top, #149bdf, #0480be);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
    background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
    background-image: -o-linear-gradient(top, #149bdf, #0480be);
    background-image: linear-gradient(top, #149bdf, #0480be);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#149bdf', endColorstr='#0480be', GradientType=0);
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: width 0.6s ease;
    -moz-transition: width 0.6s ease;
    -ms-transition: width 0.6s ease;
    -o-transition: width 0.6s ease;
    transition: width 0.6s ease;
}

.content-spacer {
    padding: 20px 0px;
}

.comment-moderation {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: var(--default);
    padding: 0 10px;
    border-radius: 8px 0;
}

.comment-moderation .moderation-action {
    font-size: 12px;
    color: #fff;
    text-decoration: none;
}

.badge-wrapper {
    width: 68px;
    height: 68px;
    background-color: #ecf0f1;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, .1);
    position: relative;
    transition: background-color .2s linear;
}

.badge-wrapper:hover {
    background-color: #3498db;
}

.badge-wrapper .badge-image {
    image-rendering: pixelated;
}

.badge-wrapper .badge-country {
    position: absolute;
    bottom: 5px;
    right: 5px;
}

.swiper-button-next, .swiper-button-prev {
    width: 42px;
    height: 42px;
    background-color: var(--default);
    color: #fff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.30);
    font-size: 16px;
    border-radius: 6px;
    transition: all .2s linear;
}

.swiper-button-next:focus, .swiper-button-prev:focus {
    outline: 0;
}

.swiper-button-prev {
    top: 35px;
    right: 65px;
    left: auto;
}

.swiper-button-next {
    top: 35px;
    right: 20px;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 16px;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    background-color: #DBDEDF;
    color: #9A9A9A;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 16px;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    background-color: #DBDEDF;
    color: #9A9A9A;
}

.whiteTitle {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin: 20px 0;
}

.whiteTitle > i {
    margin-right: 10px;
}

.news .news-body .news-text h5, .news .news-body .news-text h1, .news .news-body .news-text h2, .news .news-body .news-text h3, .news .news-body .news-text h4 {
    background: #3498db;
    width: 100%;
    color: #FFF !important;
    font-size: 18px;
    padding: 20px 25px 20px 20px;
    margin: 20px 0 20px 0;
    position: relative;
    left: -37px;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    box-shadow: 0px 3px 2px -2px rgb(52 152 219 / 50%);
    border-radius: 10px;
}

.news .news-body .news-text h5 span, .news .news-body .news-text h1 span, .news .news-body .news-text h2 span, .news .news-body .news-text h3 span, .news .news-body .news-text h4 span {
    color: #FFF !important;
}


table {
    border-collapse: collapse;
    font-size: 0.9em;
    font-family: sans-serif;
    min-width: 400px;
    border: 0px;
}

table thead tr {
    background-color: #009879;
    color: #ffffff;
    text-align: left;
}

table th,
table td {
    padding: 12px 15px;
}

table tbody tr {
    border-bottom: 1px solid #dddddd;
}

table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

table tbody tr:last-of-type {
    border-bottom: 2px solid #3498db;
}

table tbody tr.active-row {
    font-weight: bold;
    color: #009879;
}

form .form-group {
    position: relative;
}

form .form-group i.toggle-password {
    position: absolute;
    right: 0;
    transform: translate(-15px, -25px);
}

.tracklist-item {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    background-color: #ffffff;
    border-radius: 6px;
    height: 120px;
    margin-bottom: 20px;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
    transition: background-color .3s linear;
}

.tracklist-item:hover {
    cursor: pointer;
    background-color: var(--default);
}

.tracklist-item:hover > .playtime > p {
    background-color: #ffffff;
    color: #666666;
}

.tracklist-item:hover > .track-info > p {
    color: #ffffff;
}

.tracklist-item:hover > .cover-image {
    background-color: #2f89c5;
}

.tracklist-item > .cover-image {
    background-size: cover;
    height: 120px;
    width: 120px;
    background-color: #ffffff;
    border-radius: 6px 0 0 6px;
    transition: background-color .3s linear;
}

.tracklist-item > .cover-image > img {
    height: 120px;
    width: auto;
    border-radius: 6px 0 0 6px;
    image-rendering: smooth !important;
}

.tracklist-item > .playtime {
    padding: 0 20px;
}

.tracklist-item > .playtime > p {
    background-color: var(--default);
    padding: 7px 15px;
    border-radius: 50px;
    color: #ffffff;
    transition: background-color .3s linear, color .3s linear;
    margin: 0;
}

.tracklist-item > .track-info {
    white-space: nowrap;
    overflow: hidden;
    padding-right: 15px;
}

.tracklist-item > .track-info > p {
    text-overflow: ellipsis;
    overflow: hidden;
    transition: color .3s linear;
    margin: 0;
}

.tracklist-item > .track-info > p:first-of-type {
    font-weight: var(--font-semibold);
}

h4 {
    font-size: 1rem !important;
}

.promo-banner__item {
    position: relative;
    height: 150px;
    border-radius: 6px;
    -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
}

.promo-banner__item::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
    border-radius: 6px;
}

.promo-banner a:hover {
    text-decoration: none;
}

.promo-banner__item--left {
    background-position: center -56px;
}

.promo-banner__item--right {
    background-position: right -40px;
    transform: scale(-1, 1);
}

.promo-banner__text {
    font-size: 18px;
    font-weight: var(--font-semibold);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
    color: #FFFFFF;
    width: 70%;
    text-decoration: none;
    padding: 20px;
    position: relative;
}

.promo-banner__item--right .promo-banner__text {
    transform: scale(-1, 1);
    text-align: right;
}

.next-event {
    display: flex;
    gap: 0 20px;
}

.next-event__item p:not(p.next-event__title) {
    font-weight: 600;
    margin: 0;
}

.next-event__title {
    text-transform: uppercase;
    color: rgba(255, 255, 255, .15);
    margin: 0;
    font-size: 14px;
}

.next-event__item {
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.next-event__pill {
    text-transform: uppercase;
    background-color: #98af42;
    border-radius: 50px;
    padding: 6px 12px;
    color: #fff;
    font-size: 12px;
}

@media (-webkit-device-pixel-ratio: 1.25) {
.badges__item__image img {
    width: 80%!important;
}

.badge-wrapper .badge-image {
    max-width: 32px;
    max-height: 32px;
}
}


blockquote{
  margin:50px auto;
  padding:1.2em 30px 1.2em 75px;
  border-left:8px solid var(--default) ;
  line-height:1.6;
  position: relative;
  background:#EDEDED;
  border-radius: 10px;
}

blockquote::before{
  font-family:Arial;
  content: "\201C";
  color: var(--default);
  font-size:4em;
  position: absolute;
  left: 10px;
  top:-10px;
}

blockquote::after{
  content: '';
}