/* This is the core CSS of Tooltipster */
/* GENERAL STRUCTURE RULES (do not edit this section) */
.tooltipster-base {
    /* this ensures that a constrained height set by functionPosition,
    if greater that the natural height of the tooltip, will be enforced
    in browsers that support display:flex */
    display: -ms-flexbox;
    display: flex;
    pointer-events: none;
    /* this may be overriden in JS for fixed position origins */
    position: absolute;
}

.tooltipster-box {
    /* see .tooltipster-base. flex-shrink 1 is only necessary for IE10-
    and flex-basis auto for IE11- (at least) */
    -ms-flex: 1 1 auto;
        flex: 1 1 auto;
}

.tooltipster-content {
    /* prevents an overflow if the user adds padding to the div */
    box-sizing: border-box;
    /* these make sure we'll be able to detect any overflow */
    max-height: 100%;
    max-width: 100%;
    overflow: auto;
}

.tooltipster-ruler {
    /* these let us test the size of the tooltip without overflowing the window */
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden;
}

/* ANIMATIONS */
/* Open/close animations */
/* fade */
.tooltipster-fade {
    opacity: 0;
    transition-property: opacity;
}

.tooltipster-fade.tooltipster-show {
    opacity: 1;
}

/* grow */
.tooltipster-grow {
    -ms-transform: scale(0, 0);
    transform: scale(0, 0);
    transition-property: transform;
    -webkit-backface-visibility: hidden;
}

.tooltipster-grow.tooltipster-show {
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

/* swing */
.tooltipster-swing {
    opacity: 0;
    -ms-transform: rotateZ(4deg);
    transform: rotateZ(4deg);
    transition-property: transform;
}

.tooltipster-swing.tooltipster-show {
    opacity: 1;
    -ms-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
    transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
}

/* fall */
.tooltipster-fall {
    transition-property: top;
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-fall.tooltipster-initial {
    top: 0 !important;
}

.tooltipster-fall.tooltipster-dying {
    transition-property: all;
    top: 0 !important;
    opacity: 0;
}

/* slide */
.tooltipster-slide {
    transition-property: left;
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-slide.tooltipster-initial {
    left: -40px !important;
}

.tooltipster-slide.tooltipster-dying {
    transition-property: all;
    left: 0 !important;
    opacity: 0;
}

/* Update animations */
/* We use animations rather than transitions here because
 transition durations may be specified in the style tag due to
 animationDuration, and we try to avoid collisions and the use
 of !important */
/* fade */
@keyframes tooltipster-fading {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.tooltipster-update-fade {
    animation: tooltipster-fading 400ms;
}

/* rotate */
@keyframes tooltipster-rotating {
    25% {
        transform: rotate(-2deg);
    }
    75% {
        transform: rotate(2deg);
    }
    100% {
        transform: rotate(0);
    }
}

.tooltipster-update-rotate {
    animation: tooltipster-rotating 600ms;
}

/* scale */
@keyframes tooltipster-scaling {
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.tooltipster-update-scale {
    animation: tooltipster-scaling 600ms;
}

/**
 * DEFAULT STYLE OF THE SIDETIP PLUGIN
 *
 * All styles are "namespaced" with .tooltipster-sidetip to prevent
 * conflicts between plugins.
 */
/* .tooltipster-box */
.tooltipster-sidetip .tooltipster-box {
    background: #565656;
    border: 2px solid black;
    border-radius: 3px;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
    margin-top: 8px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-box {
    margin-right: 8px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-box {
    margin-left: 8px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-box {
    margin-bottom: 8px;
}

/* .tooltipster-content */
.tooltipster-sidetip .tooltipster-content {
    color: white;
    line-height: 18px;
    padding: 6px 14px;
}

/* .tooltipster-arrow : will keep only the zone of .tooltipster-arrow-uncropped that
corresponds to the arrow we want to display */
.tooltipster-sidetip .tooltipster-arrow {
    overflow: hidden;
    position: absolute;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
    height: 12px;
    /* half the width, for centering */
    margin-left: -12px;
    top: -3px;
    width: 24px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
    height: 24px;
    margin-top: -12px;
    right: -3px;
    /* top 0 to keep the arrow from overflowing .tooltipster-base when it has not
    been positioned yet */
    top: 0;
    width: 12px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
    height: 24px;
    margin-top: -12px;
    left: -3px;
    /* same as .tooltipster-left .tooltipster-arrow */
    top: 0;
    width: 12px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
    bottom: -3px;
    height: 12px;
    margin-left: -12px;
    width: 24px;
}

/* common rules between .tooltipster-arrow-background and .tooltipster-arrow-border */
.tooltipster-sidetip .tooltipster-arrow-background, .tooltipster-sidetip .tooltipster-arrow-border {
    height: 0;
    position: absolute;
    width: 0;
}

/* .tooltipster-arrow-background */
.tooltipster-sidetip .tooltipster-arrow-background {
    border: 12px solid transparent;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
    border-bottom-color: #565656;
    left: 0px;
    top: 3px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
    border-left-color: #565656;
    left: -2px;
    top: 0px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
    border-right-color: #565656;
    left: 3px;
    top: 0px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
    border-top-color: #565656;
    left: 0px;
    top: -2px;
}

/* .tooltipster-arrow-border */
.tooltipster-sidetip .tooltipster-arrow-border {
    border: 12px solid transparent;
    left: 0;
    top: 0;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
    border-bottom-color: black;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
    border-left-color: black;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
    border-right-color: black;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
    border-top-color: black;
}

/* tooltipster-arrow-uncropped */
.tooltipster-sidetip .tooltipster-arrow-uncropped {
    position: relative;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
    top: -12px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
    left: -12px;
}

.tooltipster-sidetip.tooltip-customized .tooltipster-content {
    padding: 16px 30px;
}

.tooltip-customized .tooltipster-box {
    background: #040c1e;
    border: 1px solid rgba(69, 103, 165, 0.63);
}

.tooltipster-sidetip.tooltipster-bottom.tooltip-customized .tooltipster-arrow-background {
    border-bottom-color: #040c1e;
}

.tooltipster-sidetip.tooltipster-left.tooltip-customized .tooltipster-arrow-background {
    border-left-color: #040c1e;
}

.tooltipster-sidetip.tooltipster-right.tooltip-customized .tooltipster-arrow-background {
    border-right-color: #040c1e;
}

.tooltipster-sidetip.tooltipster-top.tooltip-customized .tooltipster-arrow-background {
    border-top-color: #040c1e;
}

.tooltipster-sidetip.tooltipster-bottom.tooltip-customized .tooltipster-arrow-border {
    border-bottom-color: rgba(69, 103, 165, 0.63);
}

.tooltipster-sidetip.tooltipster-left.tooltip-customized .tooltipster-arrow-border {
    border-left-color: rgba(69, 103, 165, 0.63);
}

.tooltipster-sidetip.tooltipster-right.tooltip-customized .tooltipster-arrow-border {
    border-right-color: rgba(69, 103, 165, 0.63);
}

.tooltipster-sidetip.tooltipster-top.tooltip-customized .tooltipster-arrow-border {
    border-top-color: rgba(69, 103, 165, 0.63);
}

.container {
    overflow: hidden;
    min-width: 1102px;
    position: relative;
}

.hd-promo-wrap {
    position: relative;
    height: 526px;
    z-index: 0;
}

.hd-promo-filter {
    overflow: hidden;
    position: relative;
    height: 100%;
    width: 1920px;
    left: 50%;
    margin: 0 0 0 -960px;
    top: 0;
}

.hd-promo-list {
    font-size: 0;
    white-space: nowrap;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.hd-promo-list__item {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
}

.hd-promo-list__item-img, .hd-promo-list__item-a {
    width: 100%;
    height: 100%;
    display: block;
}

.hd-promo-pg {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 17px 0;
    font-size: 0;
    text-align: center;
    background: rgba(32, 18, 50, 0.6);
    width: 100%;
}

.hd-promo-pg__item {
    display: inline-block;
    vertical-align: middle;
    margin: 0 18px 0 0;
}

.hd-promo-pg__item:last-child {
    margin: 0;
}

.hd-promo-pg__item-a {
    display: block;
    width: 13px;
    height: 13px;
    border-radius: 100%;
    background-color: #653CA6;
    transition: background-color .3s;
    box-shadow: 0 0 6px rgba(120, 66, 66, 0.6);
}

.hd-promo-pg__item-a:hover, .hd-promo-pg__item-a--cur {
    background-color: #A481D1;
}

.feature-wrap {
    clear: both;
    width: 1000px;
    margin: 0 auto 15px;
}

.feature-filter {
    margin: 0 0 18px;
    border: 1px solid #534C6D;
    overflow: hidden;
    position: relative;
    height: 486px;
}

.feature-list {
    font-size: 0;
    white-space: nowrap;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.feature-list__item {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
}

.feature-list__item-img {
    width: 100%;
    height: 100%;
    display: block;
}

.feature-pg {
    font-size: 0;
    text-align: center;
}

.feature-pg__item {
    display: inline-block;
    vertical-align: middle;
    margin: 0 18px 0 0;
}

.feature-pg__item:last-child {
    margin: 0;
}

.feature-pg__item-a {
    display: block;
    width: 13px;
    height: 13px;
    border-radius: 100%;
    background-color: #653CA6;
    transition: background-color .3s;
    box-shadow: 0 0 6px rgba(120, 66, 66, 0.6);
}

.feature-pg__item-a:hover, .feature-pg__item-a--cur {
    background-color: #A481D1;
}

.feature-ctrl {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
}

.feature-ctrl__prev {
    width: 42px;
    height: 74px;
    display: block;
    background: url(../img/same/banner_L.png);
    position: absolute;
    left: 3px;
    top: -37px;
}

.feature-ctrl__next {
    width: 42px;
    height: 74px;
    display: block;
    background: url(../img/same/banner_R.png);
    position: absolute;
    right: 3px;
    top: -37px;
}

.feature-ctrl--hidden {
    display: none;
}

.hero_banner-filter {
    overflow: hidden;
    position: relative;
    height: 100%;
    width: 1920px;
    left: 50%;
    margin: 0 0 0 -960px;
    top: 0;
}

.hero_banner-list {
    font-size: 0;
    white-space: nowrap;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.hero_banner-list__item {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
}

.hero_banner-list__item-img {
    width: 100%;
    height: 100%;
    display: block;
}

.tooltip {
    font-size: 16px;
    line-height: 1.5;
    width: 335px;
}

.tooltip-katha {
    text-align: center;
    width: auto;
}

.tooltip-name {
    color: #ead99f;
    font-size: 18px;
}

.tooltip-desc {
    color: #fff;
}

.tooltip-tip {
    margin: 10px 0 0;
    color: #a5baeb;
}

.pop {
    margin: auto;
    position: relative;
    box-sizing: border-box;
    height: 100%;
    z-index: 1;
}

.pop-container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    transition: opacity .6s,visibility .6s;
    visibility: hidden;
    opacity: 0;
}

.pop-container--show {
    visibility: visible;
    opacity: 1;
}

.pop-dimmer {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.pop-close {
    position: absolute;
    right: 0;
    top: 0;
}

.pop-content {
    height: 100%;
    overflow: auto;
}

.pop-content-i {
    width: 100%;
    height: 100%;
    table-layout: fixed;
    display: table;
    margin: auto;
}

.pop-content-ri {
    display: table-cell;
    vertical-align: middle;
    color: #fff;
}

.pop-src {
    display: none;
}

.index-promo {
    background: url(../img/index/idxpromobd.png);
    height: 100%;
    position: relative;
}

.index-promo__filter {
    overflow: hidden;
    height: 100%;
    position: relative;
}

.index-promo__list {
    font-size: 0;
    white-space: nowrap;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.index-promo__item {
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: 100%;
}

.index-promo__item-i {
    display: block;
    height: 100%;
    width: 100%;
}

.index-promo__pg {
    overflow: hidden;
    height: 100%;
    display: table-cell;
    position: relative;
    background-color: rgba(27, 17, 49, 0.7);
}

.index-promo__pg-list {
    white-space: nowrap;
    position: absolute;
    left: 0;
    top: 0;
    height: 54px;
    min-width: 100%;
    display: table;
    table-layout: fixed;
}

.index-promo__pg-item {
    display: table-cell;
    height: 100%;
    min-width: 185.33px;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #cdcdcd;
    font-size: 16px;
    transition: background-color .3s;
}

.index-promo__pg-item--cur, .index-promo__pg-item:hover {
    background-color: rgba(225, 225, 225, 0.4);
}

.index-promo__prev {
    height: 100%;
    display: table-cell;
    width: 60px;
}

.index-promo__prev-a {
    display: block;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    position: relative;
}

.index-promo__prev-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -10px 0 0 -6px;
    width: 12px;
    height: 20px;
    background: url(../img/index/prev.png);
}

.index-promo__next {
    height: 100%;
    display: table-cell;
    width: 60px;
}

.index-promo__next-a {
    display: block;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    position: relative;
}

.index-promo__next-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -10px 0 0 -6px;
    width: 12px;
    height: 20px;
    background: url(../img/index/next.png);
}

.index-promo__ctrl {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    display: table;
    table-layout: fixed;
    height: 54px;
    width: 100%;
}

.index-promo__ctrl--hidden {
    width: 0;
    overflow: hidden;
}

.index-yt {
    width: 100%;
    height: 100%;
}

.index-yt-wrap {
    background-image: url(../img/index/idxpromobd.png);
    position: relative;
    background-color: #000;
    width: 1098px;
    height: 626px;
    padding: 1px;
    margin: auto;
}

.index-yt-if {
    display: block;
    width: 100%;
    height: 100%;
}

.index-yt-pop-container .pop {
    width: 1100px;
    height: 628px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -314px 0 0 -550px;
}

.index-yt-pop-container .pop-close {
    position: absolute;
    overflow: hidden;
    top: 0;
    right: -36px;
    width: 30px;
    height: 30px;
    color: #d9c787;
}

.index-yt-pop-container .pop-close:before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 100%;
    -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    border-top-style: solid;
    border-top-width: 2px;
    border-radius: 2px;
}

.index-yt-pop-container .pop-close:after {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 100%;
    -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    border-top-style: solid;
    border-top-width: 2px;
    border-radius: 2px;
}

.index-yt-pop-container .pop-dimmer {
    background: rgba(0, 0, 0, 0.8);
}

/* FOOTER */
.gsitefooter__copyrights,
.gsitefooter__lv-texti {
    color: white;
}
.gsitefooter__logos {
    width: 145px;
    height: 45px;
    background: url(https://dlgarenanow-a.akamaihd.net/mgames/kgtw/footer/img/FooterLogoW.png);
}
