/* Toastr custom styles*/
@font-face {
    font-family: 'KarminaSansBasic-Bold';
    /*a name to be used later*/
    src: url('/fonts/TypeTogether - KarminaSansBasic-Bold.otf');
    /*URL to font*/
}

@font-face {
    font-family: 'KarminaSansBasic-Italic';
    /*a name to be used later*/
    src: url('/fonts/TypeTogether - KarminaSansBasic-Italic.otf');
    /*URL to font*/
}

@font-face {
    font-family: 'KarminaSansBasic-Light';
    /*a name to be used later*/
    src: url('/fonts/TypeTogether - KarminaSansBasic-Light.otf');
    /*URL to font*/
}

@font-face {
    font-family: 'KarminaSansBasic-Regular';
    /*a name to be used later*/
    src: url('/fonts/TypeTogether - KarminaSansBasic-Regular.otf');
    /*URL to font*/
}

@font-face {
    font-family: 'KarminaSansBasic-SemiBold';
    /*a name to be used later*/
    src: url('/fonts/TypeTogether - KarminaSansBasic-SemiBold.otf');
    /*URL to font*/
}

@font-face {
    font-family: 'Adobe Heiti Std';
    /*a name to be used later*/
    src: url('/fonts/Adobe Heiti Std R.ttf');
    /*URL to font*/
}

@font-face {
    font-family: 'simhei';
    /*a name to be used later*/
    src: url('/fonts/simhei.ttf');
    /*URL to font*/
}

@font-face {
    font-family: 'MyriadPro Regular';
    /*a name to be used later*/
    src: url('/fonts/MyriadPro-Regular.otf');
    /*URL to font*/
}

body,
.navbar-fixed-top,
.navbar-fixed-bottom {
    /*     min-width: 1120px; */
}

.bazi-body {
    font-family: KarminaSansBasic-Regular;
    color: black;
}

.font-cn {
    font-family: 'Noto Sans SC', sans-serif;
}

.font-number {
    font-family: MyriadPro Regular;
}

.font-italic {
    font-family: KarminaSansBasic-Italic;
}

#toast-container {}

#toast-container.toast-bottom-center>div,
#toast-container.toast-top-center>div {
    margin: 10px auto 0;
}

#toast-container>.toast-info,
#toast-container>.toast-error,
#toast-container>.toast-warning,
#toast-container>.toast-success {
    background-image: none;
}

#toast-container>div {
    background: #fff;
    padding: 20px;
    color: #6a6c6f;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

#toast-container>div:hover {
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toast-close-button {
    color: #000;
    opacity: 0.2;
}

.toast-info {
    background: #fff;
    border-left: 6px solid #3498db;
}

.toast-success {
    background: #fff;
    border-left: 6px solid #62cb31;
}

.toast-warning {
    background: #fff;
    border-left: 6px solid #ffb606;
}

.toast-error {
    background: #fff;
    border-left: 6px solid #e74c3c;
}

.toast-progress {
    opacity: 0.6;
}

.toast-info .toast-progress {
    background-color: #3498db;
}

.toast-success .toast-progress {
    background-color: #62cb31;
}

.toast-warning .toast-progress {
    background-color: #ffb606;
}

.toast-error .toast-progress {
    background-color: #e74c3c;
}

/* Nestable list */
.dd {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 13px;
    line-height: 20px;
}

.dd-list {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.dd-list .dd-list {
    padding-left: 30px;
}

.dd-collapsed .dd-list {
    display: none;
}

.dd-item,
.dd-empty,
.dd-placeholder {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    min-height: 20px;
    font-size: 13px;
    line-height: 20px;
}

.dd-handle {
    display: block;
    margin: 5px 0;
    padding: 5px 10px;
    color: #333;
    text-decoration: none;
    border: 1px solid #e4e5e7;
    background: #f7f9fa;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.dd-handle span {
    font-weight: bold;
}

.dd-handle:hover {
    background: #f0f0f0;
    cursor: pointer;
    font-weight: bold;
}

.dd-item>button {
    display: block;
    position: relative;
    cursor: pointer;
    float: left;
    width: 25px;
    height: 20px;
    margin: 5px 0;
    padding: 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    border: 0;
    background: transparent;
    font-size: 12px;
    line-height: 1;
    text-align: center;
    font-weight: bold;
}

.dd-item>button:before {
    content: '+';
    display: block;
    position: absolute;
    width: 100%;
    text-align: center;
    text-indent: 0;
}

.dd-item>button[data-action="collapse"]:before {
    content: '-';
}

#nestable2 .dd-item>button {
    font-family: FontAwesome;
    height: 34px;
    width: 33px;
    color: #c1c1c1;
}

#nestable2 .dd-item>button:before {
    content: "\f067";
}

#nestable2 .dd-item>button[data-action="collapse"]:before {
    content: "\f068";
}

.dd-placeholder,
.dd-empty {
    margin: 5px 0;
    padding: 0;
    min-height: 30px;
    background: #f2fbff;
    border: 1px dashed #e4e5e7;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.dd-empty {
    border: 1px dashed #bbb;
    min-height: 100px;
    background-color: #e5e5e5;
    background-image: -webkit-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff), -webkit-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
    background-image: -moz-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff), -moz-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
    background-image: linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff), linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
}

.dd-dragel {
    position: absolute;
    z-index: 9999;
    pointer-events: none;
}

.dd-dragel>.dd-item .dd-handle {
    margin-top: 0;
}

.dd-dragel .dd-handle {
    -webkit-box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, .1);
    box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, .1);
}

/**
* Nestable Extras
*/
.nestable-lists {
    display: block;
    clear: both;
    padding: 30px 0;
    width: 100%;
    border: 0;
    border-top: 2px solid #e4e5e7;
    border-bottom: 2px solid #e4e5e7;
}

#nestable-menu {
    padding: 0;
    margin: 10px 0 20px 0;
}

#nestable-output,
#nestable2-output {
    width: 100%;
    font-size: 0.75em;
    line-height: 1.333333em;
    font-family: open sans, lucida grande, lucida sans unicode, helvetica, arial, sans-serif;
    padding: 5px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

#nestable2 .dd-handle {
    color: inherit;
    border: 1px dashed #e4e5e7;
    background: #f7f9fa;
    padding: 10px;
}

#nestable2 .dd-handle:hover {
    /*background: #bbb;*/
}

#nestable2 span.label {
    margin-right: 10px;
}

#nestable-output,
#nestable2-output {
    font-size: 12px;
    padding: 25px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.description-text-age {
    font-size: 19px;
}

.description-text-name {
    font-size: 19px;
    font-weight: 900;
    color: black;
}

.description-text-right {
    float: right;
    font-size: 19px;
}

.hpanel>.box-header {
    /*background-color: #BA0C2F;*/
    border-radius: 0;
    background-color: #A7A9AC;
    border-color: #A7A9AC;
    color: #fff;
    height: 36px;
    font-size: 15px;
    font-family: KarminaSansBasic-SemiBold;
}

.box-body {
    padding: 0px !important;
    border-top: 0px solid #19408e !important;
    /*margin-left: 1px;
    margin-right: 1px;*/
}

.table-bordered {
    border-left: none;
    border-right: none;
}

.bazi-header {
    background-color: #9790C9;
    color: #fff;
    text-align: center;
}

.bazi-header-last {
    -webkit-print-color-adjust: exact !important;
    /* Chrome, Safari */
    color-adjust: exact !important;
    background-color: #A7A8AA !important;
}

.row-gray {
    margin-left: -21px;
    margin-right: -20px;
}

.text-content {
    font-size: 4em;
}

.cell-content {
    text-align: center;
}

.bazi-content-last-row {
    color: #77787B;
    background-color: #E7E7E8 !important;
}

.text-color-black {
    color: #231F20;
    font-size: medium;
}

.animal {
    width: 40px;
    text-align: center;
    position: relative;
}

.name-animal {
    position: absolute;
    margin-top: 10px;
    margin-left: 4px;
    font-weight: 600;
}

.animal-botton {
    margin-left: 40px;
}

.animal-information-tiger {
    /* height: 85px; */
    margin-left: 70px;
}

.animal-peach {
    margin-left: -30px;
}

.row-detail-information {
    margin-top: 15px;
}

.title-col-information {
    padding-left: 0px;
}

.row-important-information-left {
    /*margin: 10px 0;*/
    margin: 4px 0;
    /*padding-bottom: 15px;*/
}

.row-botton {
    border-bottom-color: #E4E3F0;
    border-bottom-style: solid;
    border-bottom-width: 1.5px;
    margin-left: 15px;
    width: 97%;
}

.row-botton-bar-chart {
    border-bottom-color: #B7B4D8;
    border-bottom-style: solid;
    border-bottom-width: thin;
    width: 98%;
    margin-left: 20px;
}

.detail-col {
    padding-left: 5px;
}

.detail-col-child {
    padding-left: 5px;
}

/*.detail-col span {
    padding-left: 5px;
    float: right;
}*/
.colon-day-master {
    float: right;
}

.text-red {
    /*color: red;*/
}

.text-sign {
    position: absolute;
    margin-left: -8px;
}

.text-name-center {
    font-family: simhei;
    font-size: 18px;
}

.inc-size-font {
    /*font-size: 36px;*/
    font-size: 28px;
    margin-top: 2px;
    margin-bottom: 3px;
}

.icon-information {
    width: 35px;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 2px;
}

.icon-information-w {
    width: 45px;
}

.icon-information-se {
    width: 38px;
}

.icon-information {
    width: 25px;
}

.icon-information-w {
    width: 35px;
}

.icon-information-se {
    width: 28px;
}

.animal-detail {
    margin-left: 65px;
    margin-top: -110px;
}

.bazi-chart-td {
    min-width: 170px;
}

.col-left {
    margin-left: -15px;
}

.col-center {
    padding-left: 20px;
    padding-right: 35px;
}

.bazi-chart-label {
    width: 32px;
    position: relative;
}

.bazi-chart-label-lucky {
    width: 35px;
    position: relative;
}

.bazi-chart-god-dentites-lucky {
    /*position: absolute;*/
    /*margin-top: -96px;*/
    /*color: #fff;*/
    /*padding-left: 19%;*/
    /*width: 14px;*/
}

.bazi-chart-god-dentites-lucky,
.bazi-chart-god-dentites-eng-lucky {
    display: block;
}

.bazi-chart-god-dentites-eng-lucky {
    /*position: absolute;*/
    /*margin-top: -64px;*/
    /*color: #fff;*/
    /*padding-left: 11%;*/
}

.bazi-chart-god-dentites,
.bazi-chart-god-dentites-eng {
    /*position: absolute;
    margin-top: -83px;
    color: #fff;
    padding-left: 25%;
    width: 14px;*/

    width: 100%;
    font-size: 12px;
    position: relative;
    margin: 0;
    padding: 0;
    display: block;
}

.bazi-chart-god-dentites-eng {
    /*position: absolute;*/
    /*margin-top: -50px;*/
    /*color: #fff;*/
    /*padding-left: 18%;*/
}

.div-label {
    margin-left: 0;
    margin-right: 0;
}

.cicrl-label {
    width: 24px;
    position: relative;
    margin-left: -15px;
    mix-blend-mode: multiply;
}

.icon-text {
    margin-left: -23px;
    margin-top: 6px;
    color: #fff;
    position: absolute;
    mix-blend-mode: ;
}

.luck-header-last {
    color: #fff;
    text-align: center;
    background-color: #A7A8AA !important;
    width: 55px;
}

.lucky-chart-td {
    background-color: #E0DFEF;
    color: #000;
    font-size: 20px;
    border-color: black;
}

.lucky-chart-td i {
    color: #ba0c2f;
}

.logo-animal {
    width: 82px;
    padding-top: 22px;
    margin-bottom: 30px;
    mix-blend-mode: multiply;
}

.animal-day-master-chin {
    width: 90px;
}

.top-day-master {
    /*background-color: #acacac;*/
    background-color: #ffffff;
    color: #4a4a4a;
}

.day-master-element {
    margin-top: 30px;
    text-align: left;
    color: #2B3393;
}

.day-master-element-desc {
    /*width: 41%;*/
    width: 55%;
    padding-left: 0px;
}

.percent-div {
    border-style: solid;
    border-width: thin;
    height: 25px;
    position: relative;
}

.col-center-detail {
    margin-bottom: 13px;
}

.box_gray {
    background-color: #A7A8AA;
    position: absolute;
    height: 23px;
    margin-left: -15px;
}

.table-botton-none {
    margin-bottom: 0px;
}

.day-column {
    background-color: #E7DFEC;
}

.table-botton-none {
    font-size: 12px;
}

.table-botton-none>thead>tr>th,
.table-botton-none>tbody>tr>th,
.table-botton-none>tfoot>tr>th,
.table-botton-none>thead>tr>td,
.table-botton-none>tbody>tr>td,
.table-botton-none>tfoot>tr>td {
    /*border: 1px solid #808184;*/
    /*border: 1px solid #dddddd !important;*/
    border: 1px solid #7b7d7d !important;
    vertical-align: middle;
    padding: 4px 8px;
}

/*.table-botton-none>thead>tr>td:hover,
.table-botton-none>tbody>tr>td:hover,
.table-botton-none>tfoot>tr>td:hover {
    background-color: #cd163f;
    color: #ffffff;
    box-shadow: 0px 3px 6px rgb(0 0 0 / 50%);
}*/

.bazi-content-last {
    color: #fff;
    background-color: #A7A8AA;
    text-align: center;
}

.bazi-content-last-width {
    /*min-width: 52px;*/
    max-width: 40px;
}

.bazi-td-width {
    max-width: 85px;
    /*min-width: 129px;*/
    /*padding: 14px 2px !important;*/
    padding: 6px 2px !important;
    /*background-color: #eceded;*/
    background-color: #ffffff;
}

.lucky-td-width-last {
    height: 113px;
}

.lucky-td-width {
    max-width: 85px;
    /*min-width: 160px;*/
    /*background-color: #eceded;*/
    background-color: #ffffff;
}

/*.table > tbody > tr > td {
    padding: 8px 0;
}*/
.amcharts-chart-div {
    height: 430px;
}

div.amcharts-chart-div a {
    color: #fff !important;
    display: none !important;
}

.text-noble {
    position: absolute;
    margin-top: 10px;
}

.text-name-animal {
    position: absolute;
    margin-top: 10px;
    margin-left: 10px;
    font-weight: 600;
}

.custom-wrapper {
    background-color: #fff !important;
}

.panel-logo {
    border: none !important;
}

.season-detail {
    padding-top: 8%;
    padding-left: 17%;
    position: absolute;
}

.lucky-name-cn {}

/*.header-logo {
    padding: 20px 0;
}*/

.header-logo {
    padding: 0 0 0 40px;
}

.description-profile {
    color: black;
    margin-bottom: 20px;
    /*padding-top: 70px;
    padding-left: 40px;*/
    position: relative;
}

/*.description-profile ul {
    padding-right: 0px;
}*/

.description-profile ul {
    padding-right: 50px;
    padding-top: 20px;
    margin: 0;
}

.description-profile ul li {
    list-style-type: none;
    text-align: right;
}

.description-profile ul li a {
    display: inline-block;
}

.description-profile ul li a .right-profile {
    padding: 9px;
    border: 1px solid #ececec;
    position: absolute;
    right: 0;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.footer-btns {
    margin-top: 20px;
}

.description-profile-border {
    border-right: 1px solid black;
}

.height-color {
    /*height: 55px;*/
}

.box-important {
    height: 300px;
    background-color: #eceded;
}

.row-detail-information-botton {
    margin-top: 15px;
}

.row-detail-information-sky {
    margin-top: 15px;
}

.col-name {
    position: absolute;
    margin-left: -38px;
    margin-top: 52px;
}

.col-name-first {
    margin-left: -10px;
    margin-top: 6px;
}

.col-name-second {
    margin-left: -10px;
    margin-top: 8px;
}

.col-name-earthly {
    position: absolute;
    margin-left: -38px;
    margin-top: 52px;
}

.col-name-earthly-first {
    margin-left: -10px;
    margin-top: 2px;
}

.col-name-earthly-second {
    margin-left: -10px;
    margin-top: 8px;
}

.col-name-hidden {
    position: absolute;
    margin-left: -20px;
    margin-top: 60px;
}

.col-name-hidden-first {
    margin-left: -50px;
    margin-top: 6px;
}

.col-name-hidden-second {
    margin-left: -10px;
    margin-top: 8px;
}

.col-name-hidden-lucky {
    position: absolute;
    margin-left: -37px;
    margin-top: 52px;
}

.col-name-hidden-first-lucky {
    margin-left: -5px;
    margin-top: 15px;
}

.col-name-hidden-second-lucky {
    margin-left: -5px;
    margin-top: 8px;
}

.col-name-season {
    position: absolute;
    margin-left: -9px;
    margin-top: 22px;
}

.col-name-natural {
    position: absolute;
    margin-left: -21px;
    margin-top: 34px;
}

.col-name-natural-first {
    margin-left: 14px;
    margin-top: 6px;
}

.col-name-natural-second {
    margin-left: 14px;
    margin-top: 8px;
}

.col-name-compound {
    position: absolute;
    margin-left: -14px;
    margin-top: 30px;
}

.col-name-compound-first {
    margin-left: 15px;
    margin-top: 6px;
}

.col-name-compound-second {
    margin-left: 15px;
    margin-top: 8px;
}

.col-name-age {
    position: absolute;
    margin-left: 5px;
    margin-top: 10px;
}

.col-name-age-first {
    margin-left: 11px;
    margin-top: 19px;
}

.col-name-luck-pillar {
    position: absolute;
    margin-left: -26px;
    margin-top: 39px;
}

.col-name-luck-pillar-first {
    margin-left: 11px;
    margin-top: 8px;
}

.text-rotation {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.text-rotation-compund {
    margin-top: 15px;
}

.text-rotaion-season {
    margin-top: 10px;
    margin-left: -19px;
}

.text-rotation-eng {
    padding-top: 60px;
}

.text-rotation-cn {
    margin-left: -20px;
    padding-top: 11px;
}

.text-rotation-eng-hidden {
    padding-top: 90px;
}

.text-rotation-cn-hidden {
    margin-left: -20px;
    padding-top: 70px;
}

.text-rotation-eng-season {
    padding-top: 50px;
}

.text-rotation-cn-season {
    margin-left: -20px;
    padding-top: 25px;
}

.text-rotation-eng-coupon {
    padding-top: 62px;
}

.text-rotation-cn-coupon {
    margin-left: -20px;
    padding-top: 2px;
}

.text-rotation-eng-natural {
    padding-top: 6px;
    padding-left: 15px;
}

.text-rotation-cn-natural {
    margin-left: -20px;
    padding-top: 2px;
}

.bazi-content-last-first {
    height: 101px;
}

.botton-day-master {
    margin-top: 0px;
    height: 345px;
}

.bazi-content-last-compound {
    /*width: 100px;*/
    height: 95px;
}

.bazi-content-last-stage {
    height: 115px;
}

.text-size-last-row {
    font-size: 25px;
}

.bazi-chart-god-dentites-eng-lucky-two {
    /*padding-left: 13%;*/
}

.btn-export-pdf {
    display: block;
    position: absolute;
    margin-top: -32px;
    border-radius: 0px;
    padding-left: 145px;
    font-size: 18px;
}

.lucky-deities-three {
    margin-left: -2px;
}

.col-center .detail-col-child-one {
    width: 4px;
}

#chartdiv-print {
    width: 470px;
    margin-left: -999px;
}

#chartdiv {
    margin-top: -50px;
}

.chartdiv-top {
    margin-top: -4% !important;
}

.footer-row {
    padding-left: 0px;
}

.fotter-row-detail {
    color: #333333;
    padding-left: 44px;
}

.pillar-width {
    /*width: 160px;*/
    /* min-width: : 160px !important;
    max-width: 160px !important;*/
}

.btn-export-pdf-mobile {
    display: none;
}

.deitien-cn {
    margin-left: -10px;
}

.chartdiv-botton {}

.content-width {
    /*min-width: 1211px;*/
    /*max-width: 1211px;*/
}

.content-favourable-element {
    /*max-width: 180px;*/
    width: 100%;
}

.animal {
    width: 30px;
}

.animal-information-tiger {
    margin-left: 70px;
    margin-top: -56px;
}

.name-animal-two {
    margin-top: -34px;
}

.animal-peach {
    margin-left: -30px;
    margin-top: 1px;
}

.logo {
    margin-top: -20px;
    width: 130px;
    margin-left: -20px;
}

.day-master-animal {
    border-right-style: solid;
    border-right-width: 2px;
    text-align: left;
    color: #2B3393;
    margin-top: 17px;
    width: 107px;
    margin-left: 5px;
    font-size: 22px;
}

.day-master-element {
    margin-top: 17px;
    text-align: left;
}

.animal-day-master-chin {
    font-family: Adobe Heiti Std;
}

.favourable-element-detail {
    /*padding-left: 30px;*/
    padding-left: 18px;
    width: 45%;
}

.favourable-element-detail h5,
.day-master-element-desc h5 {
    font-size: 16px;
}

.favourable-element-detail h5 span {
    font-family: Adobe Heiti Std;
}

.description-text-name {
    font-family: KarminaSansBasic-Bold;
}

.description-text-age {
    font-size: 16px;
}

.description-text-age-cn {
    font-family: simhei;
}

.btn-export-pdf {
    margin-top: -30px;
    padding-left: 76px;
    font-size: 15px;
}

.description-text-right {
    float: right;
    font-size: 14px;
    font-family: KarminaSansBasic-SemiBold;
    color: #6d6e70;
}

.logo-animal {
    width: 75px;
    padding-top: 10px;
    height: 105px;
}

.text-content {
    font-size: 30px;
    font-family: simhei;
}

.col-left {
    margin-left: -26px;
}

.detail-col-child {
    padding-left: 0px;
}

.text-sign {
    margin-left: -14px;
}

.text-element-eng {
    margin-left: -6px;
}

.bazi-chart-td {
    min-width: 11%;
}

.col-right {
    position: absolute;
    margin-left: 57px;
}

.detail-col-right-gan {
    margin-left: -8px;
}

.col-center {
    padding-left: 26px;
    padding-right: 29px;
}

.text-content-row-2 {
    font-size: 30px;
    font-family: simhei;
}

.cicrl-label {
    width: 20px;
    margin-left: -15px;
}

.icon-text {
    margin-left: -18px;
    margin-top: 5px;
}

.bazi-chart-label {
    width: 5%;
    position: absolute;
    margin-left: 5px;
}

.bazi-chart-god-dentites {
    /*margin-top: 6px;*/
    /*padding-left: 14px;*/
    font-size: 12px;
}

.lucky-table td {
    padding: 8px 0 !important;
}

.bazi-chart-god-dentites-eng {
    /*margin-top: 22px;*/
    /*padding-left: 11px;*/
    font-size: 10px;
}

.gan-hour-info {
    position: absolute;
    padding-left: 4px;
    padding-top: 5px;
}

.col-name {
    position: absolute;
    margin-left: -45px;
    margin-top: 35px;
    width: 100px;
}

/*.col-name-first {
    margin-left: 4px;
    margin-top: 0px;
    margin-top: -55px;
    font-family: simhei;
}*/

.col-name-first {
    margin-left: 7px;
    /* margin-top: 0px; */
    margin-top: -38px;
    font-family: simhei;
}

.col-name-second {
    margin-left: 4px;
    margin-top: 8px;
    font-family: simhei;
}

.col-name-earthly {
    position: absolute;
    margin-left: -45px;
    margin-top: 35px;
    width: 100px;
}

/*.col-name-earthly-first {
    margin-left: 4px;
    margin-top: 2px;
    margin-top: -59px;
    font-family: simhei;
}*/

.col-name-earthly-first {
    margin-left: 6px;
    /* margin-top: 2px; */
    margin-top: -42px;
    font-family: simhei;
}

.col-name-earthly-second {
    margin-left: 4px;
    margin-top: 8px;
    font-family: simhei;
}

.col-name-hidden {
    position: absolute;
    /*margin-left: -50px;
    margin-top: 31px;
    width: 100px;*/
}

.last-column .col-name-hidden.col-name-earthly {
    margin-top: -31px;
}

.col-name-hidden-first {
    margin-left: 4px;
    /*margin-top: 6px;*/
    margin-top: -53px;
    font-family: simhei;
}

.col-name-hidden-second {
    margin-left: 4px;
    margin-top: 8px;
    font-family: simhei;
}

.col-name-season {
    position: absolute;
    margin-left: -11px;
    margin-top: 13px;
}

.col-name-compound-first {
    margin-left: 13px;
    margin-top: 6px;
    font-family: simhei;
}

.col-name-compound-second {
    margin-left: 13px;
    margin-top: 8px;
    font-family: simhei;
}

.col-name-compound {
    position: absolute;
    margin-left: -19px;
    margin-top: 19px;
    width: -25px;
}

.text-size-last-row {
    /*font-size: 16px;*/
    font-size: 12px;
}

.height-direction {
    /*height: 43px;*/
}

.botton-day-master {
    height: 306px;
}

.bazi-chart-label-lucky {
    width: 33px;
    position: absolute;
    margin-left: 10px;
}

.bazi-chart-god-dentites-lucky {
    /*margin-top: 7px;*/
    /*width: 3%;*/
    /*padding-left: 18px;*/
    font-size: 12px;
}

.bazi-chart-god-dentites-eng-lucky {
    /*margin-top: 37px;*/
    /*margin-top: 22px;*/
    /*padding-left: 15px;*/
    font-size: 10px;
}

.lucky-row-three .row-col-first .bazi-chart-god-dentites-lucky,
.lucky-row-three .row-col-first .bazi-chart-god-dentites-eng-lucky {
    /*width: 100%;
    font-size: 12px;
    position: relative;
    margin: 0;
    padding: 0;
    display: block;*/
    color: #000000 !important;
}

.lucky-chart-td {
    /*font-size: 18px;*/
    font-size: 16px;
    font-family: MyriadPro Regular;
    border-color: black;
}

.pillar-col-right {
    margin-left: 72px;
}

.pillar-text-sign {
    margin-left: -7px;
}

.col-center-bazi .detail-col-child {
    margin-top: -6px;
    position: absolute;
}

.bazi-content-last h5 {
    font-size: 10px;
}

.col-name-luck-pillar {
    position: absolute;
    margin-left: -20px;
    margin-top: 26px;
}

.col-name-hidden-lucky {
    margin-left: -20px;
    margin-top: 38px;
}

.col-name-hidden-first-lucky {
    margin-left: 2px;
    margin-top: 15px;
}

.col-name-hidden-second-lucky {
    margin-left: 0px;
    margin-top: 8px;
}

.luck-header-last h5 {
    font-size: 10px;
}

.box-other {
    font-size: 14px;
}

.title-important-info,
.content-inportant-info {
    padding-top: 0px !important;
}

/*.row-normal-height {
    height: 39px;
}*/
.row-content {
    /*display: table-row-group;*/
}

.row-description {
    display: table-row;
    font-size: 10px;
}

.row-col-first,
.row-col-two,
.row-col-three {
    display: table-cell;
    padding: 4px;
    text-align: center;
    white-space: nowrap;
    /*max-width: 62px;*/
    font-size: 11px;
    width: 33.33%;
    vertical-align: top;
}

.lucky-td-width .row-col-first,
.lucky-td-width .row-col-two,
.lucky-td-width .row-col-three {
    display: table-cell;
    /*padding: 3px;*/
    padding: 4px;
    text-align: center;
    white-space: nowrap;
    /*max-width: 62px;*/
    font-size: 11px;
    width: 33.33%;
    vertical-align: top;
}

.lucky-td-width .row-col-two-one {
    padding: 0px 45px;
}

.lucky-pillar .row-col-two {
    /*padding: 0px 38px;*/
    padding: 4px 6px;
}

.bazi-cell-content {
    text-align: center;
    margin-left: -7px;
}

.bazi-td-description .cicrl-label {
    margin-left: -40px;
}


/* ==== Add Common Classes CSS ==== */

.guest-login-page {
    font-family: KarminaSansBasic-Regular;
    color: black;
}

.display-block {
    display: block !important;
}

.border-radius6 {
    border-radius: 6px;
}

.font-size-9pt {
    font-size: 9pt !important;
}

.font-size-8pt {
    font-size: 8pt !important;
}

.font-size-7pt {
    font-size: 7pt !important;
}

.font-size-6pt {
    font-size: 6pt !important;
}

.font-size-5pt {
    font-size: 5pt !important;
}

.padding-top-0 {
    padding-top: 0 !important;
}

.padding-left-0 {
    padding-left: 0 !important;
}

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

.padding-bottom-0 {
    padding-bottom: 0 !important;
}

.padding-bottom-14 {
    padding-bottom: 14px !important;
}

.margin-left-0 {
    margin-left: 0 !important;
}

.margin-right-0 {
    margin-right: 0 !important;
}

.text-white {
    color: #ffffff !important;
}

.text-black {
    color: #000000 !important;
}

.text-maroon {
    color: #ba0c2f !important;
}

.pink-border {
    border-color: #f4cec7 !important;
}

.gray-gradient {
    background: linear-gradient(180deg, #afafaf, #f5f5f5) !important;
}

.bg-transparent {
    background-color: transparent !important;
}

.border-none {
    border: 0px !important;
}

.profile-head-text {
    padding: 4px 10px !important;
    font-size: 20px !important;
}

.red-shadow-bg,
.day-column,
.lucky-row-three td:hover {
    background-color: #cd163f;
    color: #ffffff;
    box-shadow: 0px 3px 6px rgb(0 0 0 / 50%);
    border-radius: 6px;
}

.lucky-row-three td:hover .div-label span {
    color: #ffffff;
}

.white-bg {
    background-color: #ffffff !important;
}

.pink-bg {
    background-color: #f4cec7 !important;
}

.blue-bg {
    background-color: #2d3494 !important;
}

.red-bg {
    background-color: #cd163f !important;
}

.green-bg {
    background-color: #007054 !important;
}

.brown-bg {
    background-color: #704c30 !important;
}

.metal-bg {
    background-color: #8d8048 !important;
}

.table>thead>tr>th .bazi-header,
.table>thead>tr>th .bazi-header h5 {
    font-size: 12px;
    margin: 4px 0;
}

.site-detail>.white-box:before {
    content: '';
    background: linear-gradient(180deg, #c1c1c1, #ffffff) !important;
    position: absolute;
    width: 100%;
    height: 120px;
    top: 0;
    left: 0;
}

.key-information-box .col-xs-4 {
    padding-bottom: 4px;
}

.profile-box .row {
    margin: 0 -8px;
}

.profile-box .row [class*=col-] {
    padding: 0 8px;
}

.box-day-master {
    width: 45%;
}

.box-bazi-chart {
    width: 55%;
}

.col-name-earthly span {
    display: inline-block;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    margin-left: 6px;
}

.row-col-two.tag-box {
    width: 100%;
}

div#donutchart {
   /*margin-top: -45px;*/
   margin-top: 0px;
}

@media only screen and (max-width: 1280px) {
    .day-master-element-desc {
        /*width: 60%;*/
    }
}

.box-bazi-chart .bazi-first-row .row-col-two h3,
.box-bazi-chart .bazi-row-botton .row-col-two h3 {
    font-size: 32px;
}

/* ==== Key Information New Style ==== */

.key-information-box .hpanel>.box-header {
    background-color: #ffffff;
    color: #000000;
    border: 0;
    font-size: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.key-information-box hr {
    display: none;
}

.key-information-box .row-important-information-left {
    /*padding-left: 40px;*/
    /*padding-left: 12px;*/
    padding-left: 15px;
    padding-right: 40px;
}

@media (min-width: 1367px) {
    .content {
        min-width: 1211px;
        max-width: 1211px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (min-width: 1366px) {

    /*slide menu*/
    #navigation {
        width: 140px;
    }

    #wrapper {
        margin: 0 0 0 138px;
    }

    #logo {
        width: 73px;
    }

    .content {
        padding: 0;
        min-width: 320px;
        /*background-color: #fff;*/
    }
}

.chartdiv-middle {
    margin-top: -89px !important;
}

.chartdiv-top {
    margin-top: -12% !important;
}

.row-col-first h6,
.row-col-three h6,
.row-col-two h6 {
    margin-bottom: 3px;
    font-size: 12px;
    /*margin-top: 8px;*/
    margin-top: 0px;
}

.bazi-row-botton .row-col-two h6 {
    margin-top: 0px;
    font-size: 14px;
}

.bazi-row-botton .row-col-two h3 {
    margin-top: 0px;
    margin-bottom: 3px;
}

.lucky-pillar .row-col-two h3 {
    margin-top: 0px;
    margin-bottom: 0px;
}

.row-col-two h3 {
    /*margin-top: 3px;*/
}

.bazi-first-row .row-col-first {
    /*padding-left: 40px;*/
    margin: 0 auto;
    width: 33%;
    vertical-align: top;
}

.day-column .row-col-first {
    padding-left: 0px;
}

.row-col-first-special {
    padding-right: 41px;
}

.content-width .panel-body.box-body {
    border: 0;
    background-color: #ffffff;
}

/*.lucky-td-width .row-col-three {
    width: 0%;
}*/
@media screen and (min-width: 320px) and (max-width: 1180px) {

    body,
    .navbar-fixed-top,
    .navbar-fixed-bottom {
        /*         min-width: 1200px !important; */


    }

    .bazi-td-width {
        max-width: 85px !important;
        /*padding: 20px 1px !important;*/
        padding: 8px 1px !important;
        /*background-color: #eceded;*/
    }

    .fa {
        font-size: 14px;
    }

    .lucky-td-width {
        max-width: 85px !important;
    }

    .bazi-chart-label-lucky {
        width: 30px;
    }

    .content {
        padding: 25px 0;
    }

    .favourable-element-detail {
        padding-left: 40px;
    }

    .white-box {
        padding: 25px 15px;
    }
}

@media only screen and (max-width: 1024px) {

    .box-day-master,
    .box-bazi-chart {
        float: none;
        width: 100% !important;
    }

    .content-width .panel-body.box-body {
        overflow-x: auto;
        position: relative;
    }

    .content-width .panel-body.box-body table {
        /*min-width: 1000px;*/
        min-width: 620px;
    }

    .content-width .panel-body.box-body table.lucky-table {
        min-width: 1050px;
    }

    .div-label,
    .row-col-first,
    .row-col-two,
    .row-col-three {
        position: relative;
    }

    .bazi-chart-label {
        width: 32px;
    }

    .content-width .hpanel .box-important {
        height: inherit;
    }

    .content-width .hpanel .box-important .botton-day-master {
        height: inherit;
        padding: 30px 0 0;
    }

    .hpanel>.box-header {
        height: inherit;
    }
}

@media only screen and (max-width: 991px) {

    .logo-animal {
        padding: 0;
        margin: 0 0 0 15px;
    }

    .top-day-master .favourable-element-detail {
        padding-left: 0;
        width: 50%;
        float: left;
    }

    .top-day-master .day-master-element-desc {
        width: 50%;
        padding-left: 0px;
        margin: 0;
        float: left;
    }

    .top-day-master .profile-box {
        /*padding-top: 25px;*/
        /*float: right;*/
        /*width: 70%;*/
        /*padding-left: 0;*/
    }

    .top-day-master .profile-box {
        padding: 15px 15px 0;
        /*float: none;*/
        /*width: 100%;*/
    }

    .content-favourable-element {
        max-width: 100%;
    }

    .top-day-master .col-md-2 {
        width: 30%;
        float: left;
    }

    div#donutchart {
        margin: 0 auto;
    }

    .row-col-first, .row-col-two, .row-col-three {
        padding: 4px 12px;
    }
}

@media only screen and (max-width: 767px) {
    .login-wrapper {
        display: block;
        min-height: 100%;
        padding: 30px 0 20px;
    }

    .login-left,
    .login-right {
        display: block;
        height: inherit;
        width: 100%;
    }

    .login-left img {
        max-width: 150px;
        margin-bottom: 16px;
    }

    .login-right .panel-body h3,
    .white-box>h3 {
        display: block;
        margin: 0;
        padding-bottom: 20px;
        position: relative;
    }

    .login-right .panel-body h3 span:first-child,
    .white-box>h3 span:first-child {
        position: unset;
    }

    .login-right .panel-body h3 span:first-child::after,
    .white-box>h3 span:first-child::after {
        bottom: 0;
    }

    .navbar {
        text-align: center;
    }

    .navbar-brand {
        float: none;
        height: inherit;
        padding: 25px 0;
        display: block;
        max-width: 150px;
        margin: 0 auto;
        width: 100%;
    }

    .header-btn {
        margin: 0;
        width: 100%;
        max-width: 170px;
        float: none !important;
    }

    .row-important-information-left {
        min-width: 500px;
    }

    .box-important-information hr {
        width: 100%;
        min-width: 470px;
    }

    .header-logo {
        padding: 0;
    }

    .description-profile ul {
        padding-right: 0;
    }

    .btn {
        margin: 2px 0;
    }

    .box-day-master {
        width: 100%;
    }

    .box-bazi-chart {
        width: 100%;
    }
}

@media only screen and (max-width: 680px) {}

@media only screen and (max-width: 580px) {

    .profile-form [class*=col-] {
        width: 100%;
    }

    .profile-form .btn-success {
        display: block;
    }

    .profile-form [class*=col-].form-group {
        padding: 0 8px;
    }

    .content-width.site-detail .white-box [class*=col-] {
        /* width: 100%; */
        /* text-align: center; */
    }

    .description-profile ul {
        padding: 0;
    }

    .description-profile ul li {
        text-align: center;
    }

    .button-box {
        text-align: center;
    }

    .button-box .btn {
        display: inline-block;
        word-break: break-all;
        white-space: normal;
    }
}

@media only screen and (max-width: 480px) {

    .login-right .panel-body .btn {
        padding: 0px 12px;
        font-size: 11px;
        line-height: 40px;
    }

    .white-box>.row>.col-md-2.col-sm-2.col-xs-2 {
        width: 100%;
        float: none;
        text-align: center;
    }

    .description-profile {
        float: none;
        width: 100%;
        clear: both;
    }
}

@media only screen and (max-width: 420px) {

    .top-day-master>.row>[class*=col-] {
        width: 100%;
        float: none;
        padding: 10px 15px !important;
    }

    .top-day-master .logo-animal {
        padding: 0;
        width: inherit;
        height: inherit;
        max-width: 50px;
        margin-bottom: 0;
    }

    .top-day-master .favourable-element {
        border-bottom: 1px solid #000000;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .top-day-master .day-master-element-desc,
    .top-day-master .favourable-element-detail {
        width: 100%;
        padding: 0 15px;
        margin: 0;
        float: none;
    }

    .top-day-master .favourable-element .content-favourable-element {
        width: auto;
        display: inline-block;
        margin-bottom: 0;
    }

    div#donutchart {
        margin-top: 0px;
    }

}

.bazi-td-width.corner-image-box {
    /*padding-bottom: 30px !important;*/
}