@font-face {
  font-family: Chakra Petch;
  src: url(https://fonts.googleapis.com/css2?family=Rubik+Wet+Paint&family=Chakra+Petch:wght:@600&family=Rubik+Iso&family=Tilt+Prism&display=swap);
}
@font-face {
  font-family: "CustomFont"; /* Font için bir isim belirleyin */
  src: url("/videotype.ttf") format("truetype"); /* Geriye dönük uyumluluk */
  font-weight: normal;
  font-style: normal;
}
:root {
  --colorDarkRed: #190004;
  --colorYellow: #e49c16;
  /* --colorRed: #a01e06; */
  --colorRed: #003807;
  --colorDarkGreen: #005f0b;
  /* --colorDarkGreen: #a04100; */
  --colorLightGreen: #8eda55;
  --colorHoverGreen: #4bae56;
  /* --colorHoverGreen: #cc9c2e; */
  --colorHabboYellow: #ffb900;
  --colorHabboLightYellow: #ffea00;
  --colorOrange: #e78d20;
  --boxShadow: 1px 1px 3px #a04100, -1px -1px 3px #a04100;
  --winterGreen: #005f0b;
  --winterLightGreen: #4bae56;
  --bg-image: url("../images/backgrounds/background.png");
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  /* font-family: "Chakra Petch", cursive; */
}
body {
  overflow-x: hidden;
  background-image: url(--bg-imageSecond), var(--bg-image);
  background-repeat: no-repeat, repeat;
  background-position: center bottom, center center;
  background-attachment: fixed;
  background-size: auto, auto;
  background-color: var(--bg-color);
  z-index: 90;
  position: relative;
}
.content {
  display: grid;
  grid-template-columns: 280px auto; /* Sol: 250px menü, Sağ: otomatik içerik */
}
.content .columnLeft {
  padding: 0 0 0 30px;
}
.content .columnRight {
  border-radius: 10px;
  overflow: auto;
  padding: 30px 30px 0 30px;
}
a {
  color: #fff;
  text-decoration: none;
}
/* ******************************************HEADER START*********************************************** */
header {
  width: 100%;
  background-color: var(--colorDarkRed);
  padding: 20px 0;
  border-radius: 5px;
  box-shadow: var(--boxShadow);
  position: sticky;
  top: 30px;
  bottom: 0;
  z-index: 99;
}
header .userMenu {
  width: 100%;
  height: 200px;
  background: var(--theme-banner);
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-position: center !important;
  margin-bottom: 30px;
}

header .menu .menuButton {
  height: 40px;
  /* background-image: url(../images/forum.png); */
  background-color: var(--colorDarkGreen);
  list-style: none;
  margin: 10px 20px;
  padding-left: 10px;
  backdrop-filter: blur(5px);
  border-radius: 10px;
  font-weight: 500;
  font-size: 16px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  box-shadow: inset 4px -27px 2px rgba(0 0 0 /0.4),
    inset 1px 1px 2px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--forCommentBorder);
  display: flex;
  align-items: center;
  text-shadow: 2px 2px 5px rgba(0 0 0 / 0.4), -2px -2px 5px rgba(0 0 0 / 0.4),
    -2px 2px 5px rgba(0 0 0 / 0.4), 2px -2px 5px rgba(0 0 0 / 0.4);
}
header .menu .menuButton a {
  color: var(--forCommentBorder);
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
}
header .menu .menuButton a:hover {
  text-shadow: 2px 2px 5px rgba(0 0 0 / 0.8), -2px -2px 5px rgba(0 0 0 / 0.8),
    -2px 2px 5px rgba(0 0 0 / 0.8), 2px -2px 5px rgba(0 0 0 / 0.8);
}
header .menu .menuButton img {
  margin-right: 5px;
  width: 35px;
}
header .menu .menuButton:hover {
  cursor: pointer;
}

header .menu div {
  position: absolute;
}
header .menu .menu-bubble-head {
  position: absolute;
  background: url(../images/themes/bubble-header-all.png);
  background-position: left top;
  background-repeat: no-repeat;
  top: -10px;
  left: -5px;
  width: 65px;
  height: 54px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .menu .menu-bubble-body {
  position: absolute;
  background: url(../images/themes/bubble-header-all.png);
  background-position: left -65px;
  background-repeat: repeat-x;
  top: -2px;
  left: 55px;
  right: 20px;
  height: 44px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .menu .menu-bubble-foot {
  position: absolute;
  background: url(../images/themes/bubble-header-all.png);
  background-position: left -111px;
  background-repeat: no-repeat;
  top: -2px;
  right: -5px;
  height: 44px;
  width: 26px;
}
header .menu .admin-bubble-head {
  background: url(../images/themes/bubble.png);
  background-repeat: no-repeat;
  left: -10px;
  top: -11px;
  bottom: 0;
  z-index: 1;
  width: 76px;
  height: 56px;
}
header .menu .admin-bubble-body {
  background: url(../images/themes/bubble.png);
  background-position: center -58px;
  background-repeat: repeat-x;
  right: 20px;
  left: 20px;
  top: -3px;
  bottom: 0;
  z-index: 3;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
header .menu .admin-bubble-body a {
  color: #fff;
}
header .menu .admin-bubble-foot {
  background: url(../images/themes/bubble.png);
  background-position: left -109px;
  background-repeat: no-repeat;
  top: -3px;
  right: -15px;
  z-index: 2;
  height: 52px;
  width: 76px;
}
header .menu .logout {
  background-color: #9d0000 !important;
  border: 1px solid #b50000 !important;
}
header .menu .logout form {
  display: flex;
  align-items: center;
}
header .menu .logout input {
  width: 100%;
  background-color: transparent;
  color: #b50000 !important;
  text-shadow: 3px 3px 7px rgba(0 0 0 / 0.8), -3px -3px 7px rgba(0 0 0 / 0.6),
    -3px 3px 7px rgba(0 0 0 / 0.6), 3px -3px 7px rgba(0 0 0 / 0.6);
  font-weight: 500;
  font-size: 17px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  border: none;
  padding: 0;
  text-align: left;
}
/* ╔═════════════════════════════════════════════════════════RIGHT COLUMN css═════════════════════════════════════════════════════════════════╗
     ╚═════════════════════════════════════════════════════════RIGHT COLUMN css═════════════════════════════════════════════════════════════════╝ */
.columnRight .headerBar {
  width: 100%;
  height: 70px;
  background-color: var(--colorDarkRed);
  box-shadow: var(--boxShadow);
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  align-items: center;
}
.columnRight .headerBar .logoForMobile {
  display: none;
}
.columnRight .headerBar img {
  transition: 200ms all ease-in-out;
}
.columnRight .headerBar img:hover {
  transform: scale(1.1);
}
.columnRight .headerBar .welcomeGuest {
  width: auto;
  height: auto;
  font-size: 20px;
  color: #fff;
  float: right;
  display: flex;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.columnRight .headerBar .welcomeGuest p {
  width: auto;
  padding: 0 20px 0 10px;
}
.columnRight .headerBar .welcomeGuest .userNav {
  position: absolute;
  background-color: rgba(0 0 0 /0.6);
  backdrop-filter: blur(5px);
  top: 100%;
  right: 0;
  padding: 5px 0 10px 0;
  border-radius: 0 0 5px 5px;
}
.columnRight .headerBar .welcomeGuest .userNav ul li {
  width: 110px;
  height: 30px;
  list-style: none;
  font-size: 16px;
  border-bottom: 1px solid rgba(255 255 255 /0.3);
  padding-left: 10px;
  display: flex;
  align-items: center;
  font-weight: 600;
}
.columnRight .headerBar .welcomeGuest .userNav ul li img {
  margin-right: 3px;
}
.columnRight .headerBar .welcomeGuest .userNav ul li input {
  background-color: transparent;
  color: #fff;
  border: none;
  font-weight: 600;
}
.columnRight .headerBar .welcomeGuest .userNav li:hover {
  cursor: pointer;
}
.columnRight .headerBar .guestAvatar {
  width: 55px;
  height: 55px;
  background-color: var(--colorDarkGreen);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  border: 1px solid var(--colorHoverGreen);
  position: absolute;
  left: -15px;
  box-shadow: inset -1px -1px 2px var(--colorDarkRed),
    inset 2px -10px 2px rgba(0, 0, 0, 0.4);
}
.columnRight .headerBar p {
  background-color: var(--colorDarkGreen);
  padding: 0 15px 0 10px;
  border-radius: 4px;
  position: relative;
  border: 1px solid var(--colorHoverGreen);
  margin-left: 30px;
  box-shadow: inset -1px -1px 2px var(--colorDarkRed),
    inset 2px -5px 2px rgba(0, 0, 0, 0.4);
}

.columnRight .headerBar .login {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  display: flex;
  overflow: hidden;
}
.columnRight .headerBar .login label,
.columnRight .headerBar .login input {
  height: 35px;
  background-color: rgb(255, 255, 255);
  margin-right: 10px;
  border: 0;
  border-radius: 10px;
}
.columnRight .headerBar .login label {
  display: flex;
  align-items: center;
}
.columnRight .headerBar .login label img {
  margin-left: 10px;
  margin-right: 5px;
}
.columnRight .headerBar .login label input {
  width: 130px;
}
.columnRight .headerBar .login input {
  padding: 0 10px;
  font-weight: 600;
}
.columnRight .headerBar .login input:focus {
  outline: none;
}
.columnRight .headerBar .login input:hover {
  cursor: pointer;
}
.columnRight .headerBar .login .loginBtn {
  background-color: #0cb00c;
  border: 1px solid var(--colorLightGreen);
  color: #fff;
}
.columnRight .headerBar .login .registerBtn {
  height: 35px;
  width: 70px;
  background-color: #1972e3;
  border: 1px solid #368af5;
  color: #fff;
  padding: 0 10px;
  font-weight: 600;
  border-radius: 10px;
  margin-right: 10px;
  font-size: 13px;
  display: flex;
  align-items: center;
}
.columnRight .headerBar .login .changePass {
  background-color: #9d0000;
  border: 1px solid #b50000;
  color: #fff;
}
.columnRight .headerBar .mobileMenuIcon {
  min-width: 50px;
  min-height: 40px;
  display: none;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 1px 1px 5px#fff;
  padding: 5px;
}
.columnRight .headerBar .mobileMenuIcon span {
  border-top: 3px solid #fff;
  width: 40px;
  position: absolute;
  top: 6px;
}
.columnRight .headerBar .mobileMenuIcon span::before {
  content: "";
  border-top: 3px solid #fff;
  position: absolute;
  top: 9px;
  left: 5px;
  right: 5px;
}
.columnRight .headerBar .mobileMenuIcon span::after {
  content: "";
  width: 40px;
  border-top: 3px solid #fff;
  position: absolute;
  top: 20px;
}
.columnRight .mobileMenu {
  min-width: 50px;
  color: #fff;
  position: relative;
  display: none;
  overflow: hidden;
  transition: 500ms all ease-in-out;
}
.columnRight .mobileMenu ul {
  background-color: var(--colorDarkRed);
  padding: 10px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 0 0 5px 5px;
  border-color: var(--colorLightGreen);
  border-style: solid;
  border-width: 0 1px 1px 1px;
}
.columnRight .mobileMenu ul li {
  list-style: none;
  font-weight: bold;
  font-size: 16px;
  background-color: var(--colorRed);
  width: 100%;
  text-align: center;
  padding: 5px 20px;
  margin: 5px 0;
  border-radius: 5px;
}
.columnRight .mobileMenu .mobileMenu-form {
  width: 100%;
}

.columnRight .mobileMenu .mobileInput {
  padding: 0 !important;
}

.columnRight .mobileMenu .mobileInput input {
  width: 100%;
  height: 30px;
  border-radius: 5px;
  border: none;
}

.columnRight .mobileMenu .mobileInput input[type="submit"] {
  background-color: #0cb00c;
  color: #fff;
  border: 1px solid var(--colorLightGreen);
}

.columnRight .mobileMenu .mobileInput .logout {
  background-color: #9d0000 !important;
  border: 1px solid #b50000 !important;
}

.columnRight .mobileMenu .goProfile {
  background-color: #1972e3 !important;
  border: 1px solid #368af5 !important;
}
.columnRight .announcement {
  width: 100%;
  height: auto;
  background-color: rgba(179 5 147 / 0.3);

  border-radius: 5px;
  border: 1px solid #780b70;
  padding: 10px;
  margin: 20px 0;
  color: #dcdcdc;
  font-size: 17px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.columnRight .newsBar {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
  padding: 20px 0x;
  border-radius: 5px;
}
.columnRight .newsBar .new {
  width: 40%;
  height: 250px;
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 10px 15px#000, inset 0 -15px 10px#000, var(--boxShadow);
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: 200ms all ease-out;
}

.columnRight .newsBar .new:nth-child(1),
.columnRight .newsBar .new:nth-child(4),
.columnRight .newsBar .new:nth-child(5) {
  width: calc(60% - 40px);
  background-position: center;
  background-size: cover;
}
.columnRight .newsBar .new:hover {
  transform: scale(1.02);
  box-shadow: inset 0 10px 15px #000, inset 0 -15px 10px #000,
    1px 1px 5px #80d0f5, -1px -1px 5px #80d0f5;
}
.new .newName {
  min-height: 50px;
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: rgba(0 0 0/0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255 255 255 /0.4);
  border-radius: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.new .reporter {
  color: #fff;
  background: rgba(0 0 0/0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255 255 255 /0.4);
  border-radius: 10px;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 13px;
  padding: 5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.new .added {
  color: #fff;
  position: absolute;
  background: rgba(0 0 0/0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255 255 255 /0.4);
  border-radius: 10px;
  top: 10px;
  left: 10px;
  font-size: 13px;
  padding: 10px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* LAST FURNIS START!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
.columnRight .lastFurnis {
  width: 100%;
  padding: 5px 0;
  /* background-color: var(--colorDarkRed); */
  /* box-shadow: var(--boxShadow); */
  border-radius: 5px;
  margin: 20px 0;
  position: relative;
  display: flex;
}
.columnRight .lastFurnis .progressButton {
  width: 50px;
  background-color: var(--colorDarkRed);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  border: 1px solid var(--themeColorLight);
}
.columnRight .lastFurnis .progressButtonRight {
  width: 50px;
  background-color: var(--colorDarkRed);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  box-shadow: var(--boxShadow);
}
.columnRight .lastFurnis .progressButton img:hover {
  cursor: pointer;
}
.columnRight .furnisContainer {
  width: calc(100% - 100px);
  overflow: hidden;
}
.columnRight .lastFurnis .furniContent {
  width: calc(100% - 100px);
  flex-direction: row;
  display: flex;
  transform: translate3d(0, 0, 0);
  margin-left: 10px;
  transition: 200ms all linear;
  padding: 10px 0;
}
.columnRight .lastFurnis .item {
  min-width: 130px;
  height: 200px;
  background: url(../images/backgrounds/last-item-back.png);
  background-position: center;
  background-color: var(--colorDarkGreen);
  border: 1px solid var(--colorDarkGreen);
  box-shadow: inset 1px 1px 5px #000, inset -1px -1px 5px #000;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-right: 20px;
  z-index: revert-layer;
  overflow: hidden;
  transition: 200ms all ease-in-out;
}
.columnRight .lastFurnis .item:hover {
  transform: scale(1.1);
}
.columnRight .lastFurnis .item .icon {
  position: absolute;
  top: 10px;
  left: 10px;
}
.columnRight .lastFurnis .item .name {
  position: absolute;
  text-align: center;
  border-radius: 5px;
  color: #fff;
  font-size: 11px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0 0 0 / 30%);
  backdrop-filter: blur(5px);
  border-radius: 0 0 5px 5px;
}
.columnRight .lastFurnis .item .furni {
  width: auto;
  height: 40%;
  image-rendering: pixelated;
}

.columnRight .lastBadges {
  width: 100%;
  /* background-color: var(--colorDarkRed);
  box-shadow: var(--boxShadow); */
  border-radius: 5px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.columnRight .lastBadges .item {
  min-width: 60px;
  min-height: 60px;
  background-color: var(--colorDarkGreen);
  border: 1px solid var(--colorAny);
  /* box-shadow: inset 3px 3px 1px var(--colorRed),
    inset -3px -3px 1px var(--colorRed), inset 3px -3px 1px var(--colorRed),
    inset -3px 3px 1px var(--colorRed); */
  box-shadow: inset 1px 1px 5px #000, inset -1px -1px 5px #000;
  margin: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 10px;
  transition: 200ms all ease-in-out;
}

.columnRight .lastBadges .item:hover {
  transform: scale(1.1);
}
.columnRight .lastBadges .item .code {
  min-width: 60px;
  opacity: 0;
  position: absolute;
  background-color: var(--colorYellow);
  color: #fff;
  text-align: center;
  top: -50px;
  font-size: 20px;
  padding: 3px 5px;
  border-radius: 5px;
  transition: 200ms all ease-in;
}
.columnRight .lastBadges .item .code::before {
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 10px solid var(--colorYellow);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  bottom: -8px;
  left: 30%;
}
.columnRight .lastBadges .item:hover .code {
  opacity: 1;
}
.columnRight .title {
  width: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: bold;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  border-radius: 5px;
  padding: 5px 10px;
  margin: 50px 0 20px 0;
  background-color: rgba(179 5 147 /0.2);
  backdrop-filter: blur(5px);
  /* background: linear-gradient(
    to right,
    var(--colorDarkRed),
    var(--themeColorDark)
  ); */
  border: 1px solid #780b70;
}
.columnRight .title span {
  display: flex;
  flex-direction: column;
}
.columnRight .title .subject {
  font-size: 18px;
}
.columnRight .title .info {
  font-weight: normal;
  color: var(--themeColorLight);
  font-size: 14px;
}
.columnRight .title .icon {
  display: flex;
  justify-content: center;

  margin-right: 10px;
}
/* LAST ADD COMMENT AREA START */
.lastComments {
  width: 100%;
  padding: 10px 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  user-select: none;
  /* metin seçimini engeller */
  -webkit-user-drag: none;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.lastComments .lastComments-scroll {
  width: 100%;
  height: 100%;
  display: grid;
  grid-auto-flow: column;
  /* Yorumlar yan yana */
  grid-auto-columns: calc((100% + 9px) / 3);
  /* Ekranın 1/3’ü kadar her kutu */
  transition: transform 0.5s ease;
  align-items: center;
}

/* .lastComments .lastComments-scroll .item-container {} */

.lastComments .lastComments-scroll .item {
  background-color: var(--colorDarkRed);
  border-radius: 5px;
  display: flex;
  border: 1px solid var(--colorDarkGreen);
  overflow: hidden;
  margin-right: 9px;
  position: relative;
  scroll-snap-align: start;
}

.lastComments .item .link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}

.lastComments .lastComments-scroll .item .avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: url(/habboto/images/cardImage.png);
  background-size: contain;
  display: flex;
  align-content: center;
  justify-content: center;
  position: relative;
  margin: 10px;
}

.lastComments .lastComments-scroll .item .avatar .head {
  position: absolute;
  width: 60px;
  z-index: 2;
  top: -8px;
}

.lastComments .lastComments-scroll .item .avatar .body {
  position: absolute;
  width: 50px;
}

.lastComments .lastComments-scroll .item .item-body {
  flex: 1;
  bottom: 2px;
}

.lastComments .lastComments-scroll .item .item-body .item-title {
  width: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  background-color: var(--colorDarkGreen);
  padding-left: 10px;
  border-bottom-left-radius: 5px;
}

.lastComments .lastComments-scroll .item .item-body .item-title a {
  position: relative;
  z-index: 11;
}

.lastComments .lastComments-scroll .item .item-body .item-title p {
  font-size: 12px;
  color: var(--colorDarkRed);
  font-weight: 600;
  padding-left: 10px;
}

.lastComments .lastComments-scroll .item .item-body .text {
  padding-left: 10px;
  padding-top: 10px;
  font-size: 14px;
  color: #fff;
}

/*╔═════════════════════════════════════════════════════════MEMBER PROFILE═════════════════════════════════════════════════════════════════╗-->
  ╚═════════════════════════════════════════════════════════MEMBER PROFILE═════════════════════════════════════════════════════════════════╝-*/
.memberProfile {
  width: 100%;
}
.memberProfile .memberBanner {
  width: 100%;
  height: 430px;
  background: url(https://img.uhdpaper.com/wallpaper/anime-girl-smile--189@0@k-preview.jpg?dl);
  background-position: center;
  background-size: cover;
  border-radius: 5px;
  position: relative;
  box-shadow: inset 0 2px 5px #fff;
}
.memberProfile .memberBanner .memberAvatar {
  width: 200px;
  height: 350px;
  border-radius: 5px;
  background-color: rgba(0 0 0 /0.5);
  backdrop-filter: blur(8px);
  border: 1px solid #000;
  background-image: url(../images/rostrum.png);
  box-shadow: inset 1px 1px 2px rgba(255 255 255 /0.5),
    inset -1px -1px 2px rgba(255 255 255 /0.5);
  background-repeat: no-repeat, repeat;
  background-position: center 98px, center center;
  position: absolute;
  top: 5px;
  left: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  overflow: hidden;
  z-index: 9;
}
.memberProfile .memberBanner .memberAvatar img {
  filter: drop-shadow(1px 1px 0 rgba(255 255 255/0.5))
    drop-shadow(-1px -1px 0 rgba(255 255 255/0.5))
    drop-shadow(1px -1px 0 rgba(255 255 255/0.5))
    drop-shadow(-1px 1px 0 rgba(255 255 255/0.5));
}
.memberProfile .memberBanner .memberAvatar .memberName {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  padding: 5px 20px;
  border-radius: 10px;
  background-color: var(--colorAny);
  border: 2px solid rgba(255 255 255/0.5);
  box-shadow: inset 0 -10px 5px rgba(0 0 0 /0.3), 1px 1px 3px rgba(0 0 0 /0.3),
    -1px -1px 3px rgba(0 0 0 /0.4);
  text-shadow: 2px 2px 5px rgba(0 0 0 / 0.4), -2px -2px 5px rgba(0 0 0 / 0.4),
    -2px 2px 5px rgba(0 0 0 / 0.4), 2px -2px 5px rgba(0 0 0 / 0.4);
}

.memberProfile .memberBanner .memberAvatar ul li {
  list-style: none;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255 255 255/0.6);
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 2px #000);
  background-color: var(--colorRed);
  border: 1px solid rgba(255 255 255/0.5);
  border-radius: 5px;
  height: 27px;
  padding: 0 10px 0 0;
  text-shadow: 2px 2px 5px rgba(0 0 0 / 0.4), -2px -2px 5px rgba(0 0 0 / 0.4),
    -2px 2px 5px rgba(0 0 0 / 0.4), 2px -2px 5px rgba(0 0 0 / 0.4);
}
.memberProfile .memberBanner .memberAvatar ul li span {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255 255 255/0.5);
  padding: 2px;
  background-color: var(--colorDarkRed);
  border-radius: 5px;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 5px;
  margin-left: -5px;
}
.memberProfile .memberBanner .memberAvatar ul li .recordDate {
  background-image: url(../images/icons/record-date.gif);
}
.memberProfile .memberBanner .memberAvatar ul li .rank {
  background-image: url(../images/icons/member-position.gif);
}
.memberProfile .memberBanner .memberAvatar .updateNick {
  width: 65%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #007bff;
  border-radius: 5px;
  border: 1px solid rgba(255 255 255 /0.5);
}
.memberProfile .memberBanner .memberAvatar .updateNick input {
  width: fit-content;
  background-color: transparent;
  margin-left: 3px;
}
.memberProfile .memberBanner input[type="submit"] {
  bottom: 10px;
  right: 5px;
  background-color: green;
  color: #fff;
  width: 50px;
  border-radius: 5px;
  font-size: 15px;
  border: none;
  height: 30px;
}
.memberProfile .memberBanner input[type="file"] {
  bottom: 10px;
  right: 55px;
  color: #fff;
  width: 200px;
  border-radius: 5px;
  font-size: 15px;
}
.memberProfile .memberBanner form {
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 270px;
  height: 50px;
  background-color: rgba(0 0 0 /0.5);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255 255 255 / 0.3);
  border-radius: 5px;
}
/*╔═════════════════════════════════════════════════════════NEW MAIN PAGE═════════════════════════════════════════════════════════════════╗-->
  ╚═════════════════════════════════════════════════════════NEW MAIN PAGE═════════════════════════════════════════════════════════════════╝-*/
.newMain {
  width: 100%;
  height: auto;
  background-color: var(--colorDarkRed);
  box-shadow: var(--boxShadow);
  border-radius: 5px;
  margin-top: 20px;
  overflow: hidden;
  color: #fff;
}
.newMain .banner {
  width: 100%;
  height: 150px;
  background: url(https://images.habbo.com/web_images/habbo-web-articles/NFT-konferans-Promo.png);
  background-position: center;
  background-size: cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 0 30px;
  position: relative;
  border-radius: 5px;
  box-shadow: var(--boxShadow);
  margin-bottom: 30px;
}
.newMain .banner :is(h2, div) {
  background-color: rgba(0 0 0 / 50%);
  backdrop-filter: blur(5px);
  width: fit-content;
  padding: 5px 10px;
  border-radius: 5px;
}
.newMain .banner div {
  font-size: 14px;
  font-weight: 600;
}
.newMain .newContent {
  margin-bottom: 30px;
  padding: 0 40px;
  text-align: center;
}
.newMain .newContent img {
  margin: 20px 0;
}
.newMain .newContent hr {
  margin: 10px 0;
  height: 3px;
  border: none;
  background: linear-gradient(
    to right,
    transparent,
    var(--colorHoverGreen),
    transparent
  );
}
.newMain .newContent h2,
.newMain .newContent h1 {
  margin-bottom: 20px;
}
.newMain .newContent .newFooter {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.newMain .newContent .newFooter img {
  margin: 0;
}
.newMain .newContent .newFooter p {
  font-size: 20px;
  color: #de9a1d;
  padding-left: 20px;
  position: relative;
}
.newMain .newContent .newFooter p:before {
  content: " ";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #de9a1d;
  left: 10px;
  top: calc(50% - 2px);
}
.newMain .comments .addComment {
  min-width: 100%;
  display: flex;
  justify-content: center;
}
.newMain .comments .addComment .warning {
  width: calc(100% - 80px);
  height: 100px;
  background-image: url(../images/Hotel-Nacht.png);
  box-shadow: inset 0 0 100px 0 rgba(255 0 0 / 0.6);
  background-position: center bottom;
  background-size: cover;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-radius: 10px;
  padding: 0 10px;
  border: 2px solid red;
}

.newMain .comments .addComment .warning p {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  margin-left: 10px;
}
.newMain .comments {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 30px;
  border-bottom: 2px solid #373737;
  padding-bottom: 20px;
}
.newMain .comments .item {
  width: calc(100% - 80px);
  height: 130px;
  background-color: var(--colorDarkGreen);
  color: var(--colorDarkRed);
  display: flex;
  border-radius: 10px;
  margin: 10px 30px;
  padding: 0 0 0 10px;
  border: 1px solid var(--forCommentBorder);
  font-weight: 500;
}
.newMain .comments .item .avatar {
  min-width: 70px;
  min-height: 110px;
  background-color: var(--forCommentDark);
  border: 2px solid var(--forCommentBorder);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 10px 0;
}
.newMain .comments .item .commentBody {
  margin-left: 10px;
  width: inherit;
}
.newMain .comments .item .commentBody .commentHead {
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--forCommentBorder);
  border-left: 2px solid var(--forCommentBorder);
  border-radius: 10px;
  background-color: var(--forCommentDark);
}
.newMain .comments .item .commentBody .commentHead .username {
  margin-right: 10px;
  font-weight: bold;
  padding: 3px 10px;
}
.newMain .comments .item .commentBody .commentHead .commentTimeAgo {
  font-weight: bold;
  font-size: 12px;
  color: var(--colorAny);
}
.newMain .comments .item .commentBody .commentHead .commentTimeAgo::before {
  content: "\2022";
  margin-right: 4px;
  margin-left: -5px;
}

.newMain .comments .item .commentBody .text {
  height: fit-content;
  margin-left: 10px;
  margin-top: 10px;
  font-size: 14px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  padding-right: 20px;
  color: var(--colorDarkRed);
}
.newMain .comments .item .commentBody .text-button {
  display: flex;
  padding-right: 20px;
  padding: 10px 10px 0 0;
}
.newMain .comments .item .commentBody textarea {
  width: calc(100% - 10px);
  height: 80px;
  border-radius: 5px;
  resize: none;
  font-size: 15px;
  padding: 0;
  padding: 10px;
}
.newMain .comments .item .commentBody input {
  width: 100px;
  min-height: 80px;
  margin-left: 20px;
  background-color: #0cb00c;
  border: 1px solid green;
  border-radius: 5px;
  font-weight: 600;
  color: #fff;
  transition: 300ms all ease;
}
.newMain .comments .item .commentBody input:hover {
  background-color: #005f0b;
}
.comment-item {
  background-color: #5f1614 !important;
  border-color: #961f1f !important;
}
.comment-item .avatar {
  background-color: #1b1103 !important;
  border-color: #961f1f !important;
  padding: 0 10px;
}
.comment-item .commentHead {
  background-color: #1b1103 !important;
  border-color: #961f1f !important;
  color: #fff !important;
}
.comment-item .commentHead .commentTimeAgo {
  color: #961f1f !important;
}
/*╔═════════════════════════════════════════════════════════HABBOTO TEAM PAGE═════════════════════════════════════════════════════════════════╗-->
  ╚═════════════════════════════════════════════════════════HABBOTO TEAM PAGE═════════════════════════════════════════════════════════════════╝-*/
.team {
  width: 100%;
  margin-top: 40px;
  padding: 20px 10px;
}
.team .rank {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 50px;
  gap: 20px;
}
.team .rank .rankTitle {
  width: 100%;
  background-color: #8b2121;
  color: #d84242;
  font-size: 25px;
  border-radius: 10px;
  line-height: 50px;
  font-weight: bold;
  text-shadow: 0 0 5px #000;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 2px solid #d84242;
}
.team .rank .rankTitle img {
  margin-right: 5px;
}
.team .rank .item {
  width: 200px;
  min-width: 200px;
  height: 145px;
  background-color: #8b2121;
  padding: 10px;
  border-radius: 10px;
  position: relative;
  border: 2px solid #d84242;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: soft-light;
  background-size: inherit;
  display: flex;
  transition: 200ms all ease-in;
}
.team .rank .item:hover {
  transform: translateY(-5px);
}
.team .rank .item .avatar {
  width: 50px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
}
.team .rank .item .memberDetail {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.team .rank .item :is(.username, .memberRank) {
  width: 100%;
  padding: 2px 3px;
  color: #d84242;
  text-align: center;
  border-radius: 5px;
}
.team .rank .item .username {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
}
.team .rank .item .memberRank {
  top: 60px;
  font-size: 18px;
  font-weight: 600;
  text-shadow: 2px 2px 5px rgba(0 0 0/0.4), -2px -2px 5px rgba(0 0 0/0.4),
    -2px 2px 5px rgba(0 0 0/0.4), 2px -2px 5px rgba(0 0 0/0.4);
}
.team .moderator .item {
  background-image: url(../images/backgrounds/moderation.png);
}
.team .development .item {
  background-color: #6a6a6a;
  border-color: #999999;
  background-image: url(../images/backgrounds/developer-image.png);
}
.team .development .item .memberRank {
  color: #999999;
}
.team .development .rankTitle {
  background-color: #6a6a6a;
  border-color: #999999;
  color: #999999;
}
.team .teamLeader .item {
  background-color: #a4600c;
  border-color: #de8e2c;
  background-image: url(../images/backgrounds/team-leader.png);
}
.team .teamLeader .item .memberRank {
  color: #de8e2c;
}
.team .teamLeader .rankTitle {
  background-color: #a4600c;
  border-color: #de8e2c;
  color: #de8e2c;
}
.team .reporter .item {
  background-color: #127830;
  border-color: #279e24;
  background-image: url(../images/backgrounds/Reporter.gif);
}
.team .reporter .item .memberRank {
  color: #279e24;
}
.team .reporter .rankTitle {
  background-color: #127830;
  border-color: #279e24;
  color: #279e24;
}
.team .artist .item {
  background-color: #03633b;
  border-color: #00ca76;
  background-image: url(../images/backgrounds/graphic-artist.png);
}
.team .artist .item .memberRank {
  color: #00ca76;
}
.team .artist .rankTitle {
  background-color: #03633b;
  border-color: #00ca76;
  color: #00ca76;
}
.team .roomDesigner .item {
  background-color: #1f5e7e;
  border-color: #508cab;
  background-image: url(../images/backgrounds/Builder.gif);
}
.team .roomDesigner .item .memberRank {
  color: #508cab;
}
.team .roomDesigner .rankTitle {
  background-color: #1f5e7e;
  border-color: #508cab;
  color: #508cab;
}
.team .inGameSupport .item {
  background-color: #18297b;
  border-color: #3a53cc;
  background-image: url(../images/backgrounds/game-supporter.png);
}
.team .inGameSupport .item .memberRank {
  color: #3a53cc;
}
.team .inGameSupport .rankTitle {
  background-color: #18297b;
  border-color: #3a53cc;
  color: #3a53cc;
}
/*╔═════════════════════════════════════════════════════════HABBOTO HABBO REGISTER═════════════════════════════════════════════════════════════════╗-->
  ╚═════════════════════════════════════════════════════════HABBOTO HABBO REGISTER═════════════════════════════════════════════════════════════════╝-*/

.habboRegister {
  width: 100%;
  margin-top: 40px;
  border-radius: 5px;
  box-shadow: var(--boxShadow);
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  padding: 30px 0;
  background-image: url(../images/backgrounds/moviemagic_background_right.webp);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: rgba(0 0 0/0.5);
  backdrop-filter: blur(2px);
}
.habboRegister .registerRule {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.habboRegister .registerRule .rule {
  border: 2px solid rgba(255 255 255 /0.4);
  color: #dcdcdc;
  background-color: rgba(18 10 32 /0.7);
  width: 100%;
  font-weight: 600;
  backdrop-filter: blur(2px);
}
.habboRegister .registerRule .rule img {
  margin: 0 10px;
  height: 30px;
}
.habboRegister form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45%;
  position: relative;
  overflow: hidden;
}
.habboRegister form .copyBTN {
  width: 40px;
  height: 40px;
  background: red;
  margin-right: 10px;
  border-radius: 10px;
}
.habboRegister label {
  width: 350px;
  height: 60px;
  background: #dcdcdc;
  margin-top: 10px;
  display: flex;
  align-items: center;
  padding-left: 5px;
  border-radius: 5px;
}
.habboRegister label span {
  width: 50px;
  height: 50px;
  background: #999999;
  border-radius: 5px;
  display: grid;
  place-items: center;
  box-shadow: inset 3px 3px 3px #6a6a6a, inset -3px -3px 3px #6a6a6a;
}
.habboRegister label input {
  border: 0;
  height: 50px;
  width: calc(100% - 55px);
  font-size: 17px;
  font-weight: 600;
  background-color: #dcdcdc;
  color: #6a6a6a;
  padding-left: 10px;
}
.habboRegister label input:focus {
  outline: none;
}
.habboRegister .rule b {
  margin-right: 5px;
}
.habboRegister .regSubmit {
  background-color: #0cb00c;
  border: 2px solid var(--colorLightGreen);
  transition: 300ms all ease;
}
.habboRegister label input[type="submit"] {
  background-color: transparent;
  color: #fff;
}
.habboRegister .regSubmit:hover {
  background-color: darkgreen;
}
/*╔═════════════════════════════════════════════════════════HABBOTO FOOTER AREA═════════════════════════════════════════════════════════════════╗-->
  ╚═════════════════════════════════════════════════════════HABBOTO FOOTER AREA═════════════════════════════════════════════════════════════════╝-*/
footer {
  width: 100%;
  margin-top: 50px;
  margin-bottom: 50px;
}
footer .footer {
  width: 100%;
  height: 100%;
  background-color: var(--colorDarkRed);
  box-shadow: var(--boxShadow);
  border-radius: 5px;
  padding: 30px 0 10px 0;
}
footer .footer .footerInformation {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
footer .footer .footerInformation div {
  width: calc(100% / 4);
  color: var(--themeColorLight);
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}
footer .footer .footerInformation div:nth-child(2) {
  width: calc(100% / 2);
}
footer .footer .copyrights {
  width: 100%;
  text-align: center;
  color: var(--themeColorDark);
  font-size: 14px;
  margin-top: 20px;
}

/*╔═════════════════════════════════════════════════════════ALERT STYLES═════════════════════════════════════════════════════════════════╗-->
  ╚═════════════════════════════════════════════════════════ALERT STYLES═════════════════════════════════════════════════════════════════╝-*/
.alertPage {
  width: 400px;
  position: fixed;
  top: 20px;
  right: 15px;
  z-index: 99;
}

.alertPage .alertItem {
  width: 100%;
  height: auto;
  font-size: 18px;
  color: #fff;
  border-radius: 10px;
  padding: 5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: 200ms all ease-in;
  margin-left: 200%;
}

.alertPage .success-alert {
  background-color: #079139;
  border: 2px solid #a9fa71;
  color: #92f769;
}

.alertPage .error-alert {
  background-color: #a6011f;
  border: 2px solid #fd7c79;
  color: #fd7c79;
}

.alertPage .default-alert {
  background-color: #525e7e;
  border: 2px solid #8591ab;
  color: #d4d6df;
}

.alertPage .inform-alert {
  background-color: #0a85e6;
  border: 2px solid #57c6fe;
  color: #002c6d;
}

.alertPage .alertItem .alert-img {
  width: 50px;
  height: 50px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 5px;
  margin-right: 5px;
  background-color: rgba(0 0 0 /0.6);
}

.alertPage .success-alert .alert-img {
  background-image: url(../images/icons/success-icon.png);
  border: 2px solid #a9fa71;
}

.alertPage .error-alert .alert-img {
  background-image: url(../images/icons/error-icon.png);
  border: 2px solid #fd7c79;
}

.alertPage .default-alert .alert-img {
  background-image: url(../images/icons/default-icon.png);
  border: 2px solid #8591ab;
}

.alertPage .inform-alert .alert-img {
  background-image: url(../images/icons/inform-icon.png);
  border: 2px solid #57c6fe;
}

.alertPage .alertItem span {
  width: 100%;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  animation: popupAnimation 15s linear infinite;
}

.alertPage .success-alert span {
  background-color: #a9fa71;
}

.alertPage .error-alert span {
  background-color: #fd7c79;
}

.alertPage .default-alert span {
  background-color: #8591ab;
}

.alertPage .inform-alert span {
  background-color: #57c6fe;
}

@keyframes popupAnimation {
  from {
    width: 100%;
  }

  to {
    width: 0px;
  }
}
/*╔═════════════════════════════════════════════════════════TEXT EFFECTS═════════════════════════════════════════════════════════════════╗-->
  ╚═════════════════════════════════════════════════════════TEXT EFFECTS═════════════════════════════════════════════════════════════════╝-*/
.fireworks {
  background-image: url(../images/text-effects/fireworks.gif);
  background-position-y: -5px;
  background-repeat: no-repeat;
  background-position-x: center;
  color: #3ed3fd !important;
  text-shadow: 2px 2px 5px #000, -2px -2px 5px #000;
}
.confetti {
  background-image: url(../images/text-effects/confetti.gif);
  background-repeat: no-repeat;
  background-position: center;
  color: #fff !important;
  text-shadow: 1px 1px 5px #000;
}
.starfall {
  background-image: url(../images/text-effects/starfall.gif);
  background-position: center;
  background-size: cover;
  color: #f59dff !important;
  text-shadow: 1px 1px 5px #000;
}
.chauves {
  background-image: url(../images/text-effects/chauves.gif);
  background-position: center;
  background-size: cover;
  color: #b9c0ff !important;
  text-shadow: 1px 1px 5px #000;
}
.xmas {
  background-image: url(../images/text-effects/xmas.gif);
  background-position: center;
  background-size: cover;
  color: #00d828 !important;
  text-shadow: 1px 1px 5px #000;
}
/*╔═════════════════════════════════════════════════════════RIGHT COLUMN ON SCREEN═════════════════════════════════════════════════════════════════╗-->
  ╚═════════════════════════════════════════════════════════RIGHT COLUMN ON SCREEN═════════════════════════════════════════════════════════════════╝-*/
@media only screen and (max-width: 800px) {
  .content {
    grid-template-columns: auto;
  }
  .columnLeft {
    display: none !important;
  }
  .columnRight {
    width: 100% !important;
    margin: 10px 0 0 0 !important;
    overflow-y: hidden !important;
    padding: 10px !important;
  }
  .columnRight .headerBar .login {
    display: none !important;
  }
  .headerBar .logoForPC {
    display: none;
  }
  .headerBar .logoForMobile {
    display: block !important;
  }

  .mobileMenuIcon {
    display: block !important;
  }
  .sliderBar #scrollBack {
    overflow-x: auto !important;
  }
  .new {
    width: 100% !important;
  }
  .new .newName {
    font-size: 16px;
  }
  .welcomeGuest {
    display: none !important;
  }
  .lastFurnis .progressButton {
    display: none !important;
  }
  .lastFurnis .furnisContainer {
    width: 100%;
    overflow-x: auto;
  }
  .newMain .comments {
    padding: 0 10px !important;
    width: 100% !important;
    font-size: 13px !important;
  }
  .newMain .comments .item {
    width: 100% !important;
    margin: 10px 10px !important;
    font-size: 13px;
    height: auto !important;
  }
  .lastComments .lastComments-scroll {
    grid-auto-columns: 100%;
    gap: 9px;
  }

  .lastComments .lastComments-scroll .item {
    margin-right: 0;
  }
  .habboRegister {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    padding: 20px;
  }
  .habboRegister .register-area {
    width: 100%;
    margin-top: 10px;
  }
  /* register area responsive */
  .habboRegister {
    padding: 20px 0;
  }
  .habboRegister label {
    width: 100% !important;
  }
  .habboRegister .register-area {
    width: 100%;
    padding: 0 10px !important;
  }
  .habboRegister .register-area .registerTitle {
    font-size: 24px;
  }
  .habboRegister .register-area .alert {
    font-size: 14px;
  }
  /* team responsive  */
  .team .rank {
    justify-content: center;
  }
  .team .rankTitle {
    width: 100% !important;
  }
  footer .footerInformation {
    flex-direction: column !important;
  }
  footer .footerInformation div {
    width: 100% !important;
  }
  #scrollBody {
    width: 100% !important;
    overflow-x: scroll !important;
    padding: 0 2px !important;
  }
  #scrollBody .item {
    margin-right: 10px !important;
  }
}
