/* /public/css/.. */
body {
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 300 !important;
    background-image: none !important;
}

/* Below two are for charts */
.chart {
    width: 100%;
    min-height: 350px;
}
.row {
    margin:0 !important;
    width: 100%
}

#urlTitle {
    word-break: break-word;
    margin-top: 3px !important;
    margin-bottom: 1px !important;
}

td {
    vertical-align: middle !important;
}

#container {
    width: 100%;
    height: 300px;
    margin: 0;
    padding: 0;
}
.tabs {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
#tab-button {
    display: table;
    table-layout: fixed;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}
#tab-button li {
    display: table-cell;
    width: 20%;
}
#tab-button li a {
    display: block;
    padding: .5em;
    /*background: #eee;*/
    /*border: 1px solid #ddd;*/
    text-align: center;
    color: #000;
    text-decoration: none;
    border: 1px solid #b9d1f1;
    background: #eff5fb;
}
#tab-button li:not(:first-child) a {
    border-left: none;
}
#tab-button li a:hover,
#tab-button .is-active a {
    border-bottom-color: transparent;
    background: #fff;
}
.tab-contents {
    padding: .5em 2em 1em;
    /*padding-bottom: 50px;*/
    margin-top: 20px;
    box-shadow: 0 0.125rem 1.25rem rgb(220, 232, 247);
    border: 1px solid #b9d2f1 !important;

}
.tab-button-outer {
    display: none;
    /*box-shadow: 0 0.125rem 1.25rem rgb(220, 232, 247);*/
}
@media screen and (min-width: 768px) {
    .tab-button-outer {
        position: relative;
        z-index: 2;
        display: block;
    }
    .tab-select-outer {
        display: none;
    }
    .tab-contents {
        position: relative;
        top: -1px;
        margin-top: 0;
    }
}

/***/
.card {
    margin-top: 30px;
    box-shadow: rgb(221, 224, 224) 5px 5px 16px -1px;
    border: 0px;
}

/** Tabs sliding effect */
.tab-contents {
    animation: slide-down 0.5s ease-in;
}
.tab-contents.active {
    animation: slide-down 1s ease-out;
}
@keyframes slide-down {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/** =========== Tab3 - Geo Percentage ===========  */
.progress {
    width: 70%;
    display: inline-block;
    vertical-align: middle;
    height: 1.5rem !important;
    font-size: inherit !important;
}
.bar {
    background-color: #bcd8f7;
    height: 100%;
    padding-left: 3px;
}

/* =========== HeatMap Styles ===========  */
.heatMapTable {
    border: none;
    border-spacing: 3px;
    border-collapse: separate;
    font-family: 'Trebuchet MS';
}
#heatMapTableId {
    width: 100%;
    text-align: center;
    padding: 5px;
    margin: 5px;
    cursor: pointer;
    border-collapse: initial !important;
}
.linkClicksCell {
    color: rgba(0, 0, 0, 0);
    border-left-color: rgba(0, 0, 0, 0);
    width: 60px;
}
.linkClicksCell:hover {
    background-color: #009dfb !important;
}
.headMapTableHeaderText {
    color: #0687bb;
    font-style: italic;
    padding-right: 5px;
}
/* QR Code Related, Zoom */
#qrCodeId img:hover {
    position: relative;
    -webkit-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -o-transform: scale(2.5);
    transform: scale(2.5);
    z-index: 1000;
    transform-origin: top left;
    box-shadow: rgb(208 221 235) 5px 5px 10px 10px;
    border: 0px;
    padding: 5px;
}
* {
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
    animation-direction: normal;
}