/* This is the universal stylesheet */

* {
    box-sizing: border-box;
}

.qv-object .qv-inner-object {
    overflow: visible !important;
}

.rtl{
    direction: rtl;
}

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

* {
    font-family: inherit, sans-serif !important;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    background: #fff;
}

input, select {
    font-size: 14px !important;
}

img {
    max-width: 100%;
    display: block;
    /* max-height: 100%; */
}

select {
    font-size: 15px;
}

.h-line {
    width: 100%;
    height: 1px;
    background: #d9e0e8;
}

.bar {
    width: 1px;
    height: 14px;
    background: #d9e0e8;
    margin: 0 8px;
}

.wrapper {
    width: 100%;
    padding: 0 23px;
    z-index: 10;
}

.wrapper.add-blur {
    -webkit-filter: blur(2px);
    filter: blur(2px);
}

/* Insight Header */
.insight-header {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-end;
    padding-bottom: 1px;
    padding-top: 5px;
}

.insight-header > div {
    flex: 1 0 auto;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.insight-header .right {
    margin-left: auto;
}

.insight-header .left .inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: baseline;
    padding-right: 10px;
    margin-right: auto;
}

.insight-header .right .inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: baseline;
    padding-left: 10px;
    margin-left: auto;
    justify-content: flex-end;
}

.insight-header .right .inner.spacer {
    padding-left: 160px;
}

.insight-logo {
    width: 30px;
    height: 28px;
}

.insight-header .left h1 {
    margin: 0;
    padding: 0 5px;

    font-size:24px; font-weight:600;
    color: #00b1e0;
}

.insight-header .left p {
    margin: 0;
    color: #4d586a;
    font-size:13px; font-weight:600;
}

.insight-header .center .inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: baseline;
}

.insight-header .center h4 {
    margin: 0;
    color: #4d586a;
    font-size:19px; font-weight:600;
    padding-right: 6px;
}

.insight-header .center p {
    font-size:13px; font-weight:400;
    margin: 0;
    color: #4d586a;
}

.insight-header .center h6 {
    margin: 0;
    font-size:13px; font-weight:600;
    color: #4d586a;
}

.insight-header .center h6 span {
    font-weight: 600;
    color: #00b1e0;
    padding: 0 2px;
}

.insight-header .right {
    display: flex;
    justify-content: flex-end;
}

.insight-header .btn-sidebar {
    border: none;
    box-shadow: none;
    text-shadow: none;
    border-radius: 6px;
    background-image: none;
    width: 153px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: #4d586a;
    color: #fff;
    position: relative;
    cursor: pointer;
    font-size:13px; font-weight:400;
}
.insight-header .btn-sidebar:focus,
.insight-header .btn-sidebar:active {
    outline: none;
}

.insight-header .btn-sidebar img {
    width: 19px;
    height: 21px;
}

.insight-header .btn-sidebar .tag {
    position: absolute;
    width: 23px;
    height: 14px;
    border-radius: 7px;
    right: -11.5px;
    top: -7px;
    background: #00b1e0;
    color: #fff;
    box-shadow: 0 0 2px rgba(0, 157, 198, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:10px; font-weight:400;
}
.sidebar-header.insights-inline-header h2 {
    position:relative;
    margin-top:1px;
}

.sidebar-header .tag {
    position: relative;
    width: 23px;
    height: 14px;
    border-radius: 7px;
    background: #00b1e0;
    color: #fff;
    box-shadow: 0 0 2px rgba(0, 157, 198, 0.5);
    display: inline-block;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    margin-left: 8px;
}
/* Sidebar */
.sidebar-overlay {
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.9);
    background: rgba(51, 61, 79, 0.6);
    top: 0;
    left: 0;
    transition: all 0.3s ease;
}

.sidebar-overlay.sidebar-open {
    animation: fronte 0.3s linear forwards;
}
.sidebar-overlay.sidebar-close {
    animation: backe 0.3s linear forwards;
}

@keyframes fronte {
    from {
        z-index: -1;
        transform: scale(1);
        opacity: 0;
    }
    to {
        z-index: 11;
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes backe {
    from {
        z-index: 11;
        transform: scale(1);
        opacity: 1;
    }
    to {
        z-index: -1;
        transform: scale(1);
        opacity: 0;
    }
}

.sidebar {
    width: 100%;
    max-width: 340px;
    height: 100%;
    position: fixed;
    z-index: 200;
    right: 0;
    top: 0;
    background: #eaf0f3;
    overflow: hidden;
    padding-right: 0px;
    transform: translateX(100%);
    transition: all 0.5s ease-out;
}

.sidebar-open.sidebar {
    transform: translateX(0);
}

.sidebar-inner {
    padding: 0 13.5px;
}

.sidebar-header {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar h2 {
    margin: 0;
    color: #696f89;
    font-size:15px; font-weight:400;
}

.sidebar .btn-close {
    box-shadow: none;
    text-shadow: none;
    border: none;
    background-image: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
}
.sidebar .btn-close:focus,
.sidebar .btn-close:active {
    outline: none;
}

.insight-box {
    width: 100%;
    min-height: 121px;
    box-shadow: 0px 2.61px 2.61px rgba(0, 0, 0, 0.15);
    background: #fff;
    border-radius: 0 0 5px 5px;
    border-top: 4px solid #00b1e0;
    padding: 15px 18px;
    margin: 0 0 13px 0;
}

.insight-box h1 {
    margin: 0 0 10px 0;
    position: relative;
    /* padding: 0 0 0 31px; */
    color: #696f89;
    font-size:14px; font-weight:600;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.insight-box h1 img {
    /* position: absolute;
    left: 0;
    top: 0; */
    width: 24px;
    height: 27px;
    margin-right: 10px;

}

.insight-box p {
    margin: 0;
    color: #696f89;
    font-size:13px; font-weight:400;
}

.insight-box small {
    font-size:11px;
    font-weight:600;
    font-style:normal;
    line-height:2.18;
    text-align:left;
    color:#a3a6b7;
}
.insight-box .insight_createdOn {
    float:left;
    margin-top: 10px;
}

.ps--active-y > .ps__rail-y {
    opacity: 1;
    background: #d9e0e8;
    width: 9px;
}
.ps--active-y > .ps__rail-y:hover {
    opacity: 1;
    background: #d9e0e8;
}
.ps__thumb-y {
    background: #a3a6b7;
    width: 9px;
    right: 0;
    border-radius: 5px;
}
.ps__thumb-y:hover {
    background: #a3a6b7;
}

/* Dropdown row */
.dropdown-row {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 10px 0 10px 0;
}

.dropdown-row .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.selectric-wrapper {
    max-width: 360px;
    min-width: 170px;
    text-align: center;
}

.chart .selectric-wrapper {
    min-width: 300px;
}
.container .selectric-wrapper {
    min-width: 290px;
}
.chart .select ric-wrapper {
    text-align: center;
}
.l-chart-header .selectric-wrapper {
    text-align: left;
    width: 170px;
}
.selectric {
    background: transparent;
    border: none;
    border-bottom: 1px solid #a3a6b7;
    font-size:15px; font-weight:600;
}
.selectric-open .selectric-items {
    margin-top: 2px;
}
.selectric-hover .selectric,
.selectric-open .selectric {
    border-color: #00b1e0;
}
.selectric-label, .selectric .label {
    height: 20px;
    line-height: 20px;
    color: #4d586a;
    font-size: 14px;
    margin: 0 0 0 0;
}
.selectric-button, .selectric .button {
    height: 20px;
}
.selectric-items {
    box-shadow: 0px 0px 3.2px rgba(0, 0, 0, 0.2);
    border: none;
    border-radius: 5px;
    background: #fff;
}
.selectric-items li {
    min-height: 41px;
    color: #696f89;
    font-size:11px; font-weight:600;
    display: flex;
    align-items: center;
}
.selectric-items li:first-child {
    border-radius: 5px 5px 0 0;
}
.selectric-items li:last-child {
    border-radius: 0 0 5px 5px;
}
.selectric-items li.highlighted, .selectric-items li.selected {
    background: rgba(0, 177, 224, 0.1);
    color: #696f89;
}
.selectric-items li:hover {
    background: rgba(0, 177, 224, 0.1);
    color: #696f89;
}

.dropdown-row p {
    margin: 4px 0 0 0;
    color: #4d586a;
    font-size:12px; font-weight:400;
}

/* Info boxes */
.info-box {
    padding-bottom: 11px;
}
.info-box .row {
    margin: 0 -6px;
    overflow: hidden;
    display: flex;
}
.info-box .col {
    padding: 0 6px;
    width: 50%;
    float: left;
}
.info-box .box, .info-box .box_static {
    width: 100%;
    height: 153px;
    background: #fff;
    border-top: 4px solid #00b1e0;
    border-right: 1px solid #d9e0e8;
    border-left: 1px solid #d9e0e8;
    box-shadow: 0px 2.45px 2.45px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 5px 5px;
    padding: 6px 6px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    overflow: hidden;
    margin: 0 auto 12px auto;
}
.info-box .box .box-content, .info-box .box_static .box-content {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.info-box .box.hover .box-content {
    -webkit-filter: blur(2px);
    filter: blur(2px);
}
.info-box .box-close {
    position: absolute;
    right: 16px;
    top: 10px;
    box-shadow: none;
    text-shadow: none;
    cursor: pointer;
    background-image: none;
    border-radius: 50%;
    border: 1px solid #a3a6b7;
    padding: 4px;
    background: #fff;
    width: 20px;
    height: 20px;
    transform: translateX(200%);
    transition: all 0.2s linear;
}
.info-box .box-close:focus,
.info-box .box-close:active {
    outline: none;
}
.info-box .box.expand .box-close {
    transform: translateX(0);
}

.box h4, .box_static h4 {
    margin: 0 0 2px 0;
    color: #4d586a;
    font-size:14px; font-weight:600;
    transition: all 0.3s linear;
}
.box.expand h4 {
    font-size: 13px;
}

.box h1, .box_static h1 {
    margin: 0 0 8px 0;
    color: #00b1e0;
    font-size:32px; font-weight:600;
    transition: all 0.3s linear;
}
.box.expand h1 {
    font-size: 24px;
    line-height: 23px;
}
.box .box-icon , .box_static .box-icon{
    width: auto;
    transition: all 0.3s linear;
    margin: 6px;
    display: block;
    height: 35px;
}
.box.expand .box-icon {
    width: 20px;
    display: none;
}
.box p, .box_static p {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0 0 0px 0;
    color: #a3a6b7;
    font-size:16px; font-weight:500;
    transition: all 0.3s linear;
}
.box.expand p {
    font-size: 13px;
    line-height: 13px;
}
.box .up-down, .box_static .up-down {
    width: 15px;
    height: 15px;
    margin-right: 4px;
    transition: all 0.3s linear;
}
.box.expand .up-down {
    width: 12px;
    height: 12px;
}

.box .box-inner, .box_static .box-inner {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.3s linear;
}
.box.expand .box-inner {
    opacity: 1;
    transform: translateY(0);
    display: flex;
}
.box-inner > div {
    flex: 1 0 auto;
}

.box-inner ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}
.box-inner li {
    display: inline-block;
    padding: 0;
    text-align: center;
}

.box-inner li.half {
    width: 48%;
}
.box-inner li.h-bar {
    width: 1%;
}

.box h6, .box_static h6 {
    margin: 0 0 3px 0;
    color: #4d586a;
    font-size:12px; font-weight:600;
}
.box h2, .box_static h2 {
    margin: 0 0 5px 0;
    color: #00b1e0;
    font-size:20px; font-weight:600;
    transition: all 0.3s linear;
}

.box .v-line, .box_static .v-line {
    height: 34px;
    width: 1px;
    background: #d9e0e8;
    margin: 0 auto;
}

.box .box-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(51, 61, 79, 0.7);
    transform: translateY(-100%);
    transition: all 0.2s linear;
    opacity: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.box.expand.hover .box-overlay {
    transform: translateY(-100%);
}
.box.hover .box-overlay {
    transform: translateY(0);
    opacity: 1;
}

.box .btn-expand {
    box-shadow: none;
    text-shadow: none;
    border-radius: 50%;
    height: 24px;
    width: 24px;
    margin: 0 0 10px 0;
    padding: 4px;
    position: relative;
    background-image: none;
    background: transparent;
    border: 1px solid #fff;
    cursor: pointer;
}
.box .btn-expand:focus,
.box .btn-expand:active {
    outline: none;
}
.box .btn-expand .line {
    position: absolute;
    left: 4px;
    top: 50%;
    margin-top: -0.5px;
    width: calc(100% - 8px);
    transform-origin: center center;
    height: 1px;
    background: #fff;
    transition: all 0.2s linear;
}
.box .btn-expand .line.vertical {
    transform: rotate(90deg);
}
.box.expand.hover .btn-expand .line.vertical {
    transform: rotate(0deg);
}

.box .box-overlay p {
    margin: 0;
    color: #fff;
    font-size:14px; font-weight:300;
}

.box.chart {
    height: 100%;
    height: 318px;
}
.box .chart-box {
    display: flex;
    flex-grow: 1;
}

/* Large chart section */
.l-chart {
    padding: 10px 0 0 0;
}

.l-chart-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 10px;
    align-items: baseline;
}

.l-chart h1 {
    margin: 0 10px 0 0;
    color: #4d586a;
    font-size:19px; font-weight:600;
}

.l-chart .selectric, .chart .selectric {
    border-bottom: none;
}

.l-chart .selectric-label {
    font-size:14px; font-weight:600;
}

.l-chart .chart-box {
    width: 100%;
    height: 270px;
    background: #fff;
    border: 1px solid #d9e0e8;
    box-shadow: 0px 2.45px 2.45px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 5px 5px;
    padding: 15px 25px;
    position: relative;
}

.l-chart .large-chart {
    width: 80%;
    margin: 0 auto;
}

.l-chart .selectric-open .selectric-items {
    margin-bottom: 5px;
}

@media screen and (max-width: 1173px) {
    .info-box .row.parent {
        display: block;
    }
    .info-box .row.parent > .col {
        width: 100%;
        float: none;
    }
}

@media screen and (max-width: 670px) {
    .info-box .row.child {
        display: block;
    }
    .info-box .row.child .col {
        float: none;
        width: 100%;
    }
}

@media screen and (max-width: 440px) {
    .insight-header .center {
        flex-shrink: 1;
    }
    .insight-header .center .inner {
        flex-wrap: wrap;
    }

    .sidebar {
        max-width: 290px;
    }
}

/* qlik styles */

#popup {
    background-color: #c3534b;
    color: #FFFFFF;
    position: fixed;
    max-width: 250px;
    padding: 10px;
    margin: 10px;
    bottom: 0;
    right: 0;
    display: none;
    border-radius: 5px;
    z-index: 6;
    font-family: sans-serif;
}

.close {
    cursor: pointer;
    background: 0 0;
    border: 0;
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .2;
    position: absolute;
    right: 9px;
    top: 7px;
}

.close:hover {
    opacity: .5;
}

#popupText {
    margin-right: 23px;
}

.m-r-5 {
    margin-right: 5px !important;
}

.m-r-10 {
    margin-right: 10px;
}

.m-t-5 {
    margin-top: 5px
}


.d-flex {
    display: flex;
}

div.tooltip {
    position: absolute;
    text-align: center;
    width: 100px;
    height: 28px;
    padding: 2px;
    font: 12px sans-serif;
    background-color: #4d586a;
    color: #b7bcd2;
    border: 0px;
    border-radius: 2px;
    pointer-events: none;
    display: none;
    justify-content:center;
    align-items: center;


}

.selectric-button, .selectric .button {

    width: 16px !important;

}

.card-title .title-tooltip {
    text-align: left;
}

.info-box .box, .info-box .box_static {
    overflow: visible !important;
}

.title-tooltip {
    z-index: 5000;
}

.info-box .row .col .child .col .box:nth-child(2) {
    overflow: hidden !important;
}

.info-box .row {
    overflow: visible !important;
}

/* .card-title:hover .title-tooltip {
  max-width: 256%;
} */
