/* Hotel */
#hotel-container {
    background-color: #000;
    position: fixed;
    top: 0;
    left: -9999px;
    z-index: 600;
    width: 100%;
    height: 100%;
}

.hotel-visible #hotel-container {
    left: 0;
}

/* Cookies */
.cookies-accept-container {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    background-color: #1C1C1A;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    padding: 15px 60px 15px 15px;
    display: none;
}

.cookies-accept-container .close-container {
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    margin: auto;
    font-size: 28px;
    font-weight: 200;
    text-align: center;
}

#hotel-container .client-buttons {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 100;
}

#hotel-container .client-buttons button {
    -webkit-box-shadow: 0 0 0 2px rgb(0 0 0 / 20%);
    box-shadow: 0 0 0 2px rgb(0 0 0 / 20%);
    display: block;
    float: left;
    padding: 7px;
    min-width: 34px;
    height: 34px;
    font-size: 12px;
    margin-right: 10px;
    line-height: normal;
}


#hotel-container .client-buttons button .client-icon {
    -webkit-filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.3));
    filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.3));
    display: inline-block;
    font-style: normal;
    float: left;
}

#hotel-container .client-buttons button .client-icon.client-close-icon {
    background-image: url(/assets/images/favicon-habzo.png?2);
    background-size: 16px 16px;
    width: 16px;
    height: 16px;
}

#hotel-container .client-buttons button .client-icon.client-fullscreen-icon,
#hotel-container .client-buttons button .client-icon.client-fullscreen-icon-back {
    background-image: url(/assets/images/web/fullscreen-icon.png);
    background-position: 0 -14px;
    width: 14px;
    height: 14px;
    margin: 1px;
}

#hotel-container .client-buttons button .client-icon.client-fullscreen-icon-back {
    background-position: 0 0;
}

#hotel-container .client-buttons button .client-icon.hidden {
    display: none;
}

#hotel-container .client-buttons button.client-close .client-close-expand {
    float: left;
    overflow: hidden;
    width: 0;
    text-align: left;
    -webkit-transition: width 0.15s ease-out 0s;
    transition: width 0.15s ease-out 0s;
}

#hotel-container .client-buttons button.client-close .client-close-expand span {
    padding: 1px 0 0 8px;
    display: inline-block;
}

#hotel-container .client-buttons button.client-close:hover .client-close-expand {
    width: 39px;
}

#hotel-container .client-buttons button.client-players {
    cursor: default;
}

#hotel-container .client-buttons button.client-players .client-icon.client-players-icon {
    background-image: url(../images/web/players-icon.png);
    background-size: 16px 16px;
    width: 16px;
    height: 16px;
}

#hotel-container .client-buttons button.client-players .client-players-count {
    float: left;
    text-align: left;
    padding: 0 2px 0 6px;
    font-size: 14px;
    position: relative;
    top: -1px;
    display: inline-block;
}

#hotel-container .client-frame {
    background-color: #000;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: block;
    border: 0 none;
}

/* Buttons */
.rounded-button {
    background-color: transparent;
    -webkit-border-radius: 48px;
    -moz-border-radius: 48px;
    border-radius: 48px;
    padding: 11px 24px;
    display: inline-block;
    text-decoration: none;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    text-transform: uppercase;
    border: 2px solid #333;
    cursor: pointer;
    height: 47px;
    line-height: 21px;
    text-shadow: none;
    text-align: center;
    -webkit-transition: background-color 0.2s, color 0.2s;
    transition: background-color 0.2s, color 0.2s;
}

.rounded-button:not(.white):not([disabled]):not(.no-hover):hover,
.rounded-button:not(.white).plain {
    background-color: #333;
    color: #fff;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

.rounded-button[disabled] {
    opacity: 0.5;
    cursor: default;
}

.rounded-button .purse {
    -webkit-box-shadow: 1px 0 0 rgba(255, 255, 255, 0.2) inset;
    box-shadow: 1px 0 0 rgba(255, 255, 255, 0.2) inset;
    float: right;
    padding: 0 25px 0 9px;
    margin-left: 9px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.rounded-button .purse:before {
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    display: block;
    content: "";
    width: 20px;
    height: 20px;
    top: 0;
    right: 0;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: pixelated;
}

.rounded-button .purse.diamonds:before {
    background-image: url(../images/hotel/purses/diamonds-icon.png);
}

.rounded-button .purse.loyalties:before {
    background-image: url(../images/hotel/purses/loyalty-icon.png);
}

.rounded-button.white {
    color: #fff;
    border-color: #fff;
}

.rounded-button.white:not([disabled]):not(.no-hover):hover,
.rounded-button.white.plain {
    background-color: #fff;
    color: #333;
}

.rounded-button.blue {
    color: #138cc8;
    border-color: #138cc8;
}

.rounded-button.blue:not([disabled]):not(.no-hover):hover,
.rounded-button.blue.plain {
    background-color: #138cc8;
    color: #fff;
}

.rounded-button.blue.plain:not([disabled]):not(.no-hover):hover {
    border-color: #0c83bf;
    background-color: #0c83bf;
}

.rounded-button.lightblue {
    color: #33c8f3;
    border-color: #33c8f3;
}

.rounded-button.lightblue:not([disabled]):not(.no-hover):hover,
.rounded-button.lightblue.plain {
    background-color: #33c8f3;
    color: #fff;
}

.rounded-button.lightblue.plain:not([disabled]):not(.no-hover):hover {
    border-color: #1ebae8;
    background-color: #1ebae8;
}

.rounded-button.darkblue {
    color: #191c3a;
    border-color: #191c3a;
}

.rounded-button.darkblue:not([disabled]):not(.no-hover):hover,
.rounded-button.darkblue.plain {
    background-color: #191c3a;
    color: #fff;
}

.rounded-button.darkblue.plain:not([disabled]):not(.no-hover):hover {
    border-color: #0d0f1f;
    background-color: #0d0f1f;
}

.rounded-button.purple {
    color: #8c45a9;
    border-color: #8c45a9;
}

.rounded-button.purple:not([disabled]):not(.no-hover):hover,
.rounded-button.purple.plain {
    background-color: #8c45a9;
    color: #fff;
}

.rounded-button.purple.plain:not([disabled]):not(.no-hover):hover {
    border-color: #7d3f97;
    background-color: #7d3f97;
}

.rounded-button.red {
    color: #f46048;
    border-color: #f46048;
}

.rounded-button.red:not([disabled]):not(.no-hover):hover,
.rounded-button.red.plain {
    background-color: #f46048;
    color: #fff;
}

.rounded-button.red.plain:not([disabled]):not(.no-hover):hover {
    border-color: #d95843;
    background-color: #d95843;
}

.rounded-button.lightgreen {
    color: #37e397;
    border-color: #37e397;
}

.rounded-button.lightgreen:not([disabled]):not(.no-hover):hover,
.rounded-button.lightgreen.plain {
    background-color: #37e397;
    color: #fff;
}

.rounded-button.lightgreen.plain:not([disabled]):not(.no-hover):hover {
    border-color: #24c880;
    background-color: #24c880;
}

.rounded-button.green {
    color: #67ad4d;
    border-color: #67ad4d;
}

.rounded-button.green:not([disabled]):not(.no-hover):hover,
.rounded-button.green.plain {
    background-color: #67ad4d;
    color: #fff;
}

.rounded-button.green.plain:not([disabled]):not(.no-hover):hover {
    border-color: #598e46;
    background-color: #598e46;
}

.rounded-button.turquoise {
    color: #1baea6;
    border-color: #1baea6;
}

.rounded-button.turquoise:not([disabled]):not(.no-hover):hover,
.rounded-button.turquoise.plain {
    background-color: #1baea6;
    color: #fff;
}

.rounded-button.turquoise.plain:not([disabled]):not(.no-hover):hover {
    border-color: #1a958f;
    background-color: #1a958f;
}

.rounded-button.brown {
    color: #37241c;
    border-color: #37241c;
}

.rounded-button.brown:not([disabled]):not(.no-hover):hover,
.rounded-button.brown.plain {
    background-color: #37241c;
    color: #fff;
}

.rounded-button.brown.plain:not([disabled]):not(.no-hover):hover {
    border-color: #231711;
    background-color: #231711;
}

.rounded-button.browngrey {
    color: #676563;
    border-color: #676563;
}

.rounded-button.browngrey:not([disabled]):not(.no-hover):hover,
.rounded-button.browngrey.plain {
    background-color: #676563;
    color: #fff;
}

.rounded-button.browngrey.plain:not([disabled]):not(.no-hover):hover {
    border-color: #565451;
    background-color: #565451;
}
/* Notifications */
.notifications-container {
    position: fixed;
    top: 40px;
    right: 40px;
    z-index: 2000;
}

.notifications-container .notification-container {
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 15px 15px 15px 45px;
    position: relative;
    margin-bottom: 15px;
    width: 240px;
    display: none;
}

.notifications-container .notification-container:before {
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    background-image: url(/assets/images/web/notifications-icons.png);
    background-color: #000;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    width: 50px;
    height: 50px;
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: -25px;
    bottom: 0;
    margin: auto 0;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: pixelated;
}

.notifications-container .notification-container[data-type="success"]:before {
    background-color: #37e397;
    background-position: 0 0;
}

.notifications-container .notification-container[data-type="error"]:before {
    background-color: #f46048;
    background-position: -50px 0;
}

.notifications-container .notification-container[data-type="info"]:before {
    background-color: #33c8f3;
    background-position: -100px 0;
}

.notifications-container .notification-container .notification-close {
    display: block;
    position: absolute;
    top: 7px;
    right: 7px;
    font-size: 25px;
    font-weight: 300;
    color: #c8c8c8;
    text-decoration: none;
    width: 38px;
    text-align: center;
}

.notifications-container .notification-container .notification-close:before {
    content: "×";
}

.dialog-popup,
#login-dialog,
#about-dialog {
   color: #000;
}

.dialog-popup {
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    position: relative;
    padding: 22px;
    width: auto;
    max-width: 450px;
    margin: 20px auto;
    overflow: hidden;
}

.dialog-popup .mfp-close {
    color: #fff;
    top: 5px;
    right: 7px;
    opacity: 1;
}

.dialog-popup h3 {
    margin: -22px -22px 22px;
    color: #fff;
    padding: 13px 22px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
}

.dialog-popup.confirm-popup h3 {
    background-color: #f46048;
}

.dialog-popup.cancel-popup h3 {
    background-color: #47aeec;
}

.dialog-popup.default-popup h3 {
    background-color: #33c8f3;
}

.dialog-popup .buttons-container {
    margin-top: 25px;
    text-align: center;
}

.dialog-popup .buttons-container .rounded-button {
    display: inline-block;
    margin: 0 10px;
}

.notifications-container .notification-container .notification-title {
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.notifications-container .notification-container[data-type="success"] .notification-title {
    color: #2fd98f;
}

.notifications-container .notification-container[data-type="error"] .notification-title {
    color: #f46048;
}

.notifications-container .notification-container[data-type="info"] .notification-title {
    color: #33c8f3;
}

.notifications-container .notification-container .notification-content {
    font-size: 12px;
    word-break: break-word;
    color: #4e4e4e;
}

        .habboon-nav .nav-link.nitro {
            color: red !important;
        }