/* IE 10,11 */
@import url('template_styles_ie.css?v=10') all and (-ms-high-contrast: none), (-ms-high-contrast: active);

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    src: local('Open Sans Light'), local('OpenSans-Light'), url('/css/fonts/OpenSans-Light.woff') format('woff');
}
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: local('Open Sans'), local('OpenSans'), url('/css/fonts/OpenSans.woff') format('woff');
}
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url('/css/fonts/OpenSans-Semibold.woff') format('woff');
}
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: local('Open Sans Bold'), local('OpenSans-Bold'), url('/css/fonts/OpenSans-Bold.woff') format('woff');
}
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 800;
    src: local('Open Sans Extrabold'), local('OpenSans-Extrabold'), url('/css/fonts/OpenSans-Extrabold.woff') format('woff');
}
@font-face {
    font-family: 'Open Sans Condensed';
    font-style: normal;
    font-weight: 700;
    src: local('Open Sans Condensed Bold'), local('OpenSans-CondensedBold'), url('/css/fonts/OpenSans-CondensedBold.woff') format('woff');
}

.user-icon {
  position: relative;
  display: inline-block;
  height: 48px;
  width: 48px;
  border-radius: 100%;
  overflow: hidden;
  cursor: pointer;
}

.user-icon > img {
  position: absolute;
  height: 100%;
  left: -8px;
  vertical-align: top;
}

.user-menu-open ~ #user-menu {
  opacity: 1;
  visibility: visible;
  display:block;
}

/* Begin Reset settings */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    overflow-y: scroll;
    overflow-x: hidden;
}
ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a {
    text-decoration: none;
}
html, body {
    height: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
}
/* End Reset settings */

/* Begin Fix text-align: justify; */
.content-justify {
    text-align: justify;
}
.content-justify:after {
    content: "";
    display: inline-block;
    height: 0;
    width: 100%;
    visibility: hidden;
    overflow: hidden;
    pointer-events: none;
}
.content-justify > * {
    display: inline-block;
}
/* End Fix text-align: justify; */

/* Begin Base settings */
#wrapper {
    position: relative;
    min-height: 100%;
    margin-bottom: -105px; /* The latter figure depends on the height of the footer */
    width: 100%;
}
#wrapper > iframe {
    position: absolute;
    bottom: 0;
}
.hide {
    display: none;
}
/* End Base settings */

/* Begin Content not selectable */
.not-selectable,
.custom-input[type="checkbox"] + label {
    user-select: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
}
/* End Content not selectable */

/* Begin Clearfix settings */
.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.clearfix {
    *zoom: 1;
}
/* End Clearfix settings */

body > iframe {
    display: none;
}

/* Begin Navigation static menu */
#input-sandwich {
    display: none;
}
#nav-static-wrapper {
    position: relative;
    height: 87px;
    width: 100%;
    background-color: #fff; /*rgba(255, 255, 255, .13);*/
    opacity: 0.95;
    z-index: 2;
}
#nav-static {
    position: relative;
    height: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    border-bottom: 1px solid #e9e9e9;
    box-sizing: border-box;
    line-height: 87px;
    vertical-align: middle;
}
.nav-logo {
    position: relative;
    display: inline-block;
    height: 36px;
    width: 162px;
    margin-right: -100%;
    vertical-align: middle;
    z-index: 1;
}
.nav-logo > svg {
    vertical-align: top;
}
.nav-menu,
.nav-menu-links > a {
    display: inline-block;
    font-size: 16px;
    vertical-align: top;
}
#nav-static > .nav-menu.device-version {
    z-index: 0;
    top: 86px;
    right: 0;
    width: 100%;
    height: 0;
    transition: height 0.7s ease 0s;
}
.nav-menu {
    height: 100%;
    width: 100%;
    color: #fff;
    overflow: hidden;
}
.nav-menu.auth {
    padding-right: 43px;
}
.nav-menu-links {
    display: inline;
    cursor: default;
}
.nav-menu-links:before {
    content: "";
    display: inline-block;
    width: 150px;
    height: 0;
    visibility: hidden;
    overflow: hidden;
}
.nav-menu-links > a {
    position: relative;
    height: 100%;
    padding: 0 1%;
    box-sizing: border-box;
    color: #414141;
    transition: color .2s;
}
.nav-menu-links > a:before {
    content: "";
    position: absolute;
    display: block;
    height: 4px;
    width: 100%;
    bottom: -1px;
    left: 0;
    background-color: #4ab6ed;
    cursor: default;
    opacity: 0;
    transition: opacity .2s;
}
.nav-menu-links > a.active {
    cursor: default;
}
.nav-menu-links > a:hover,
.nav-menu-links > a.active {
    color: #10b8ed;
}
.nav-menu-links > a:hover:before,
.nav-menu-links > a.active:before {
    opacity: 1;
}
.nav-btns {
    display: inline-block;
}
.nav-btns > a {
    display: inline-block;
    padding: 10px 15px 12px;
    font-weight: 400;
    line-height: 1;
    transition: background-color .2s,
    color .2s;
}
.nav-btns > div {
    position: relative;
}
.nav-btn-sign-on {
    border: 1px solid #41b7ef;
}
.nav-btn-sign-on {
    font-family: "Open Sans";
    color: #41b7ef;
}


.nav-btn-sign-on:hover {
    border: 1px solid #41b7ef;
    background-color: #41b7ef;
    color: #fff;
}

.nav-btn-instant-room {
    font-family: "Open Sans";
    border: 1px solid #41b7ef;
    background-color: #41b7ef;
    color: #fff;
    margin-right: 20px;
}

.nav-sandwich-menu-button {
    position: relative;
    display: none;
    height: 22px;
    width: 24px;
    background-color: #999;
    cursor: pointer;
}
.nav-sandwich-menu-button:before,
.nav-sandwich-menu-button:after {
    content: "";
    position: absolute;
    display: block;
    height: 5px;
    width: 100%;
    top: 4px;
    left: 0;
    background-color: #fff;
}
.nav-sandwich-menu-button:after {
    top: auto;
    bottom: 4px;
}

#header-user {
    position: absolute;
    top: 19px;
    right: 25px;
    line-height: 1;
}
#nav-fixed > #header-user {
    top: 6px;
}
#input-user {
    display: none;
}
#label-user {
    position: relative;
    display: inline-block;
    height: 48px;
    width: 48px;
    border-radius: 100%;
    overflow: hidden;
    cursor: pointer;
}
#label-user > img {
    position: absolute;
    height: 100%;
    left: -8px;
    vertical-align: top;
}
#user-menu {
    position: absolute;
    display: none;
    width: 178px;
    top: 58px;
    right: 0;
    padding-bottom: 17px;
    border: 1px solid rgba(0, 0, 0, .06);
    box-sizing: border-box;
    border-radius: 3px;
    color: #535353;
    background-color: #fff;
    line-height: 1;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .09);
    z-index: 1;
}
#user-menu:before,
#user-menu:after {
    content: "";
    position: absolute;
    display: block;
    height: 0;
    width: 0;
    top: -6px;
    right: 19px;
    border-width: 0 5px 5px;
    border-style: solid;
    border-color: rgba(0, 0, 0, .06) transparent;
}
#user-menu:after {
    top: -5px;
    border-color: #fff transparent;
}
#nav-fixed-wrapper #user-menu {
    top: 56px;
}
#input-user:checked ~ #nav-static-wrapper #user-menu,
#input-user:checked ~ #nav-fixed-wrapper #user-menu {
    display: block;
}
#user-menu > span {
    display: inline-block;
    width: 100%;
    padding: 20px 27px;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: default;
    overflow: hidden;
}
#user-menu > a {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 10px 50px 10px 27px;
    box-sizing: border-box;
    font-size: 14px;
    color: #535353;
    cursor: pointer;
    transition: .2s;
}
#user-menu > a:hover {
    background-color: #f6f6f6;
    color: #10b8ed;
}
#user-menu > a > span {
    position: absolute;
    font-weight: 600;
    right: 25px;
}
/* End Navigation static menu */

/* Begin Content Styles */
#content {
    position: relative;
    width: 100%;
    padding-bottom: 100px;
    box-sizing: border-box;
    font-size: 12px;
    line-height: normal;
    text-align: center;
}
#content > * {
    display: inline-block;
    max-width: 1360px;
    padding: 0 30px;
    box-sizing: border-box;
}
/* End Content Styles */

/* Begin Navigation fixed menu */
#nav-fixed-wrapper {
    position: fixed;
    height: 60px;
    width: 100%;
    top: -400px;
    left: 0;
    font-family: "Open Sans";
    background-color: #fff;
    opacity: 0.95;
    z-index: 2;
    transition: top .3s;
}
body.show-fixed #nav-fixed-wrapper {
    top: 0;
}
#nav-fixed {
    position: relative;
    height: 60px;
    max-width: 1300px;
    margin: auto;
    padding: 0 30px;
    border-bottom: 1px solid #e9e9e9;
    line-height: 60px;
}
/* End Navigation fixed menu */

/* Header */
@media screen and (max-width: 1000px) {
    .nav-sandwich-menu-button {
        position: absolute;
        display: inline-block;
        top: 36px;
        right: 34px;
    }
    #nav-fixed-wrapper .nav-sandwich-menu-button {
        top: 19px;
    }
    .nav-menu {
        position: absolute;
        display: block;
        height: auto;
        width: 200px;
        top: 80px;
        right: 34px;
        border: 1px solid rgba(0, 0, 0, .06);
        border-radius: 3px;
        box-sizing: border-box;
        background-color: #fff;
        box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .09);
        visibility: hidden;
        z-index: 1;
    }
    .nav-menu:before,
    .nav-menu:after {
        content: "";
        position: absolute;
        display: block;
        height: 0;
        width: 0;
        top: -6px;
        right: 10px;
        border-width: 0 5px 5px;
        border-style: solid;
        border-color: rgba(0, 0, 0, .06) transparent;
        visibility: inherit;
    }
    .nav-menu:after {
        top: -5px;
        border-color: #fff transparent;
    }
    #input-sandwich:checked ~ #nav-static-wrapper .nav-menu,
    #input-sandwich:checked ~ #nav-fixed-wrapper .nav-menu {
        visibility: visible;
    }
    #nav-fixed-wrapper .nav-menu {
        top: 62px;
        right: 34px;
    }
    .nav-menu-links {
        padding: 17px 0 0;
        line-height: 1;
    }
    .nav-menu-links:before {
        display: none;
    }
    #nav-fixed-wrapper #user-menu {
        top: 56px;
    }
    .nav-btns {
        margin: 0;
        padding-bottom: 17px;
    }
    .nav-menu > *,
    .nav-menu-links > a,
    .nav-btns > a {
        display: block;
        width: 200px;
    }
    .nav-menu-links > a,
    .nav-btns > a {
        padding: 10px 20px;
        margin: 0;
        box-sizing: border-box;
        background-color: transparent;
        font-size: 14px;
        font-weight: 300;
        color: #535353;
        border: none;
        transition: background-color .2s,
        color .2s;
    }
    .nav-menu-links > a:hover,
    .nav-menu-links > a.active,
    .nav-btns > a:hover {
        border: none;
        background-color: transparent;
        color: #10b8ed;
    }
    .nav-menu-links > a:hover,
    .nav-btns > a:hover {
        background-color: #f6f6f6;
    }
    .nav-menu-links > a:hover:before,
    .nav-menu-links > a.active:before {
        display: none;
    }
    #header-user {
        right: 83px;
    }
}

/* Begin Footer Styles */
#footer {
    position: relative;
    /*height: 104px;*/
    height: 190px;
    width: 100%;
    padding: 0;
    background-color: #f3f3f3;
    border-top: 1px solid #dbdbdb;
}
/* Social section */
#footer-social {
    position: absolute;
    width: 650px;
    min-height: 54px;
    top: -30px;
    left: 30px;
    right: 30px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid #e1e1e1;
    background-color: #fff;
    color: transparent;
}
#footer-social > div {
    padding: 0 30px;
    margin: 15px 0;
    box-sizing: border-box;
}
#footer-social > div > * {
    /*padding-bottom: 10px;*/
}
.fb-like > span {
    height: 22px !important;
}
/* Footer content */
#footer-content-wrapper {
    background-color: #f3f3f3;
}
#footer-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 50px 30px 20px;
    font-size: 11px;
    color: #8f8f9b;
}
#footer-content > div {
    vertical-align: top;
}
#footer-menu {
    text-align: left;
}
#footer-menu > a {
    display: inline-block;
    margin: 10px 10px 0 0;
    font-size: 13px;
    font-weight: 600;
    color: #8f8f9b;
    white-space: nowrap;
    transition: color .2s;
}
#footer-menu > a:hover {
    color: #10b8ed;
}
#footer-privacy-copyright {
    display: inline-block;
    font-size: 13px;
    color: #8f8f9b;
    text-align: right;
    transition: color .2s;
}
#footer-privacy-copyright > a {
    display: inline-block;
    margin: 10px 0 0 10px;
    color: #8f8f9b;
    white-space: nowrap;
}
#footer-privacy-copyright > a:hover {
    color: #10b8ed;
}
#footer-copyright {
    margin-left: 30px;
}

/* Footer */
@media screen and (max-width: 1200px) {
    #footer-copyright {
        display: block;
        text-align: right;
        padding-top: 8px;
    }
}

@media screen and (max-width: 1050px) {
    #footer-menu {
        max-width: 48%;
    }
}

@media screen and (max-width: 800px) {
    #footer-privacy-copyright {
        max-width: 48%;
    }
}

@media screen and (max-width: 650px) {
    #footer-social {
        max-width: 90%;
        left: 5%;
        right: auto;
    }
    #footer-menu,
    #footer-privacy-copyright {
        width: 100%;
        max-width: none;
    }
    #footer-menu > a,
    #footer-privacy-copyright > a,
    #footer-copyright {
        width: 100%;
        padding: 20px 0;
        margin: 0;
        font-size: 16px;
        font-weight: normal;
        text-align: center;
    }
    #footer-menu > a,
    #footer-privacy-copyright > a {
        border-bottom: 1px solid #e1e1e1;
    }
}
/* End Footer Styles */

.gift-count-notify {
    position: absolute;
    height: 10px;
    right: -5px;
    top: 2px;
    padding: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .5);
    border-radius: 3px;
    background: #e90000;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    line-height: 10px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .5);
    z-index: 101;
}

/* Begin Content info in box */
.content-box {
    width: 100%;
    color: #363636;
    text-align: center;
}
.content-box > h1 {
    font-size: 50px;
}
.content-box > span {
    display: inline-block;
    padding-top: 8px;
    font-size: 20px;
    line-height: 26px;
}
.content-box > span > b {
    font-weight: 600;
    font-size: 18px;
}
.content-box-button {
    display: inline-block;
    height: 48px;
    width: 280px;
    background-color: #41b7ef;
    font-size: 16px;
    color: #fff;
    line-height: 48px;
    vertical-align: middle;
    cursor: pointer;
    transition: background-color .2s;
}
.content-box-button:hover {
    background-color: #2aaae6;
}
/* End Content info in box */

/* Begin Custom Elements */
input,
button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
input,
textarea,
select {
    outline: none;
}
input[type="file"],
input[type="radio"] {
    display: none;
}
.custom-input {
    font-family: 'Open Sans', sans-serif;
}
.custom-input[type="text"],
.custom-input[type="password"],
textarea.custom-input {
    height: 40px;
    padding: 0 44px 0 15px;
    border: 1px solid #c4d4dc;
    box-sizing: border-box;
    font-size: 14px;
    color: #414141;
    line-height: 38px;
    background-color: #fff;
    transition: .2s;
}
textarea.custom-input {
    height: 110px;
    resize: none;
}
.custom-input[type="text"]:hover,
.custom-input[type="text"]:focus,
.custom-input[type="password"]:hover,
.custom-input[type="password"]:focus,
textarea.custom-input:hover,
textarea.custom-input:focus {
    border-color: #41b7ef;
}
.custom-input[type="checkbox"] {
    display: none;
}
.custom-input[type="checkbox"] + label {
    cursor: pointer;
}
.custom-input[type="checkbox"] + label.checkbox {
    transition: .2s;
}
.custom-input[type="checkbox"] + label.checkbox:before {
    content: "";
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    border: 1px solid #c4d4dc;
    box-sizing: border-box;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAAXNSR0IArs4c6QAAAKBJREFUOBFjYBgFoyGAEgL///9nAuKVQByNIkEMB6hJG4j9kNUC+ZOAGAaakOXwsoE69ID4FRD/BuJQkGIgXQjEyKAaryHIkkBdu5F0/gGypwDxXySxOcjqCbKBGoWA+AySAcjMnUAOC0FD0BUANQkA8Ulkk4DsC0DMi66WaD5QMx8QHwdiEHgMxNJEa8alEGgILxBvBWI9XGpGxUdaCAAAWaW6NTfd+OcAAAAASUVORK5CYII=);
    background-position: center;
    background-color: #fff;
    transition: .2s;
}
.custom-input[type="checkbox"] + label.checkbox:hover:before,
.custom-input[type="checkbox"]:checked + label.checkbox:before {
    border-color: #41b7ef;
}
.custom-input[type="checkbox"]:checked + label.checkbox:before {
    background-color: #41b7ef;
}
.custom-input[type="checkbox"][disabled] + label.checkbox {
    cursor: default;
    opacity: .2;
}
.custom-input[type="checkbox"][disabled] + label.checkbox:before {
    border-color: #c4d4dc;
}
.custom-input[type="checkbox"][disabled]:checked + label.checkbox:before {
    background-color: #c4d4dc;
}
.custom-input[type="button"],
.custom-input[type="submit"],
a.custom-button {
    display: inline-block;
    height: 40px;
    min-width: 280px;
    padding: 0 15px;
    border: 1px solid transparent;
    box-sizing: border-box;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 700;
    line-height: 38px;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: .2s;
}
.custom-input[type="button"].blue-button,
.custom-input[type="submit"].blue-button,
a.custom-button.blue-button {
    color: #fff;
    background-color: #41b7ef;
}
.custom-input[type="button"].blue-button:hover,
.custom-input[type="submit"].blue-button:hover,
a.custom-button.blue-button:hover {
    background-color: #54ccf3;
}
.custom-input[type="button"].blue-button:active,
.custom-input[type="submit"].blue-button:active,
a.custom-button.blue-button:active {
    background-color: #38a8dd;
}
.custom-input[type="button"].white-button,
.custom-input[type="submit"].white-button,
a.custom-button.white-button {
    border-color: #41b7ef;
    color: #41b7ef;
    background-color: #fff;
}
.custom-input[type="button"].white-button:hover,
.custom-input[type="submit"].white-button:hover,
a.custom-button.white-button:hover {
    border-color: transparent;
    color: #fff;
    background-color: #41b7ef;
}
.custom-input[type="button"].white-button:active,
.custom-input[type="submit"].white-button:active,
a.custom-button.white-button:active {
    border-color: transparent;
    color: #fff;
    background-color: #38a8dd;
}
.custom-input[type="button"].red-button,
.custom-input[type="submit"].red-button,
a.custom-button.red-button {
    border-color: #e53951;
    color: #e53951;
    background-color: #fff;
}
.custom-input[type="button"].red-button:hover,
.custom-input[type="submit"].red-button:hover,
a.custom-button.red-button:hover {
    border-color: transparent;
    color: #fff;
    background-color: #e53951;
}
.custom-input[type="button"].red-button:active,
.custom-input[type="submit"].red-button:active,
a.custom-button.red-button:active {
    border-color: transparent;
    color: #fff;
    background-color: #ca2f45;
}

@media screen and (max-width: 360px) {
    .custom-input[type="text"],
    .custom-input[type="password"],
    .custom-input[type="button"],
    .custom-input[type="submit"],
    a.custom-button {
        height: 46px;
        font-size: 16px;
        line-height: 44px;
    }
}
/* End Custom Elements */

/* Begin Coins Text */
.coins {
    font-size: 24px;
    font-weight: 700;
    color: #61686b;
    vertical-align: bottom;
}
.coins:before {
    content: "";
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    top: 3px;
    margin: 0 4px 0 11px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUBAMAAAB/pwA+AAAAJ1BMVEUAAAD50Uf700j60Ub60Uf50Ub//2b50Eb1uSP3wzL3vyz4zD72vSibivxDAAAAB3RSTlMA21PzpYoFqEgRIwAAAIRJREFUCNdjYGBgUxE2dEpgAAHFciAQArFYy8EgAMgMhzBLGRiYyqFAgSGxvLx6Rdf28nIxBvXy8hkn53SWlxcxuJdXdwJ528tLGMTLq45Xrq5ZXl7IYF5eMX1GV2V7eTGYuQLMBCvYBVGA0AY1rANoGNSKOdPLxZAtRjgH4UgUpyM8BADKJkx4A1X8xgAAAABJRU5ErkJggg==);
    background-repeat: no-repeat;
    vertical-align: middle;
}
/* End Coins Text */
