@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

/* CSS Document */
body, html{
    height: 100%;
}
body{
    background: #fff;
    font-family: 'Poppins', sans-serif;
}
h1 {
    font-size: 38px;
}
h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
h4, h5, h6{
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}
p, a, input, label, span, textarea, small{
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}
a {
    text-decoration: none !important;
    transition: all 0.5s;
}
ul {
    margin: 0;
    padding: 0;
}
li {
    list-style: none;
}

/*Header Css Start*/
header {
    width: 100%;
    z-index: 9;
    background-color: #fff;
    top: 0;
}
.border-line img {
    width: 100%;
    display: inherit;
}
.hdr-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 20px;
}
.logo img {
    width: 60px;
    animation: animName 5s linear infinite;
}
@keyframes animName {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
.logo a {
    display: flex;
    align-items: center;
}
.logo h3 {
    margin: 0;
    font-size: 22px;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 10px;
}
.logo-btn {
    display: inline-flex;
    align-items: center;
}
.logo-btn a {
    background-color: #e01767;
    display: inline-block;
    padding: 8px 20px;
    color: #fff !important;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    margin-right: 10px;
}
.logo-btn a span {
    position: relative;
    z-index: 9;
}
.logo-btn a::before {
    content: '';
    height: 100%;
    width: 100%;
    background-color: #4ca345;
    position: absolute;
    bottom: 0;
    left: -200px;
    transition: all 0.5s;
}
.logo-btn a span i {
    margin-right: 6px;
}
.logo-btn a:hover::before {
    left: 0;
}

/*Sidebar Css Start*/
.sidebar-blk {
    margin-top: 0;
    top: 0;
    bottom: 0;
    z-index: 1029;
    background-color: #f0f0f0;
    width: 100%;
    left: 0;
    border-right: 1px solid #e3e3e3;
    text-align: center;
    padding: 0;
}
.sidebar-blk li {
    display: inline-block;
}
.sidebar-blk li img {
    width: 100%;
    padding: 0 10px;
    border-radius: 12px;
    transition: all 0.5s;
    object-fit: cover;
    height: 50px;
}
.sidebar-blk li:hover img {
    transform: scale(1.1);
    filter: brightness(0) invert(1);
}
.sidebar-blk .tablinks.active img {
    filter: brightness(0) invert(1);
} 
.sidebar-blk button {
    display: inline-block;
    padding: 0;
    border: none;
    outline: none !important;
    cursor: pointer;
}

.tab-content-blk {
    position: relative;
    left: 0;
    margin-left: 0;
    min-height: 100%;
    margin-top: 0;
}
.nav-tabs {
    border: none !important;
    align-items: center;
    justify-content: center;
}
.tab-content-blk .tabcontent {
    display: none;
    min-height: 100vh;
    height: 100%;
    padding: 40px;
}
.tabcontent {
  animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}
.dashboard-pg {
    height: 100%;
}
.title-blk {
    display: flex;
    align-items: center;
    margin: 0 0 30px;
}
.title-blk img {
    border: 2px solid #fff;
    margin-right: 20px;
    border-radius: 15px;
}
.title-blk h1, .title-blk h3 {
    margin: 0;
    color: #fff;
}
.title-blk a {
    font-size: 22px;
    color: #fff;
    margin: 0 8px;
}
.title-blk h1 {
    margin-right: 15px;
    position: relative;
    padding-left: 0;
}
.title-blk h3 {
    margin-left: 15px;
}
.title-blk a:hover {
    transform: scale(1.5);
    color: #fff;
}

.accordion .card {
    margin-bottom: 10px;
    border: 1px solid #fff;
    padding: 0 20px;
}
.accordion .card .card-header .btn-header-link {
    display: block;
    text-align: left;
    color: #fff;
    padding: 10px 20px;
    border-radius: 0;
    border-bottom: 1px solid #ffffffba;
    box-shadow: none !important;
}
.accordion .card .card-header .btn-header-link:after {
    content: "\f107";
    font-family: 'FontAwesome';
    font-weight: 900;
    float: right;
}
.accordion .card .card-header .btn-header-link.collapsed:after {
    content: "\f106";
}
.accordion .card .collapse {
    border: 0;
}
.accordion .card .collapse .card-body {
    padding: 20px;
}
.accordion .card-body {
    color: #fff !important;
}
.accordion .card-body p {
    margin: 0;
}
.accordion .card-body ul {
    margin: 20px 0 0;
}
.accordion .card-body ul span {
    display: block;
    margin: 0 0 30px;
    font-weight: bold;
    padding-left: 20px;
    position: relative;
}
.accordion .card-body ul span::before {
    content: '';
    position: absolute;
    height: 10px;
    width: 10px;
    background-color: #fff;
    left: 0;
    border-radius: 100%;
    top: 5px;
}
.accordion .card-body ul small {
    font-size: 18px;
    word-spacing: 10px;
    padding-left: 19px;
    display: block;
}
.accordion .card-body ul small i {
    color: #fff;
    margin-right: 10px;
}

.search-form {
    right: 200px;
    top: 200px;
}
.search-field {
    background-color: transparent;
    background-image: url(../images/search-icon.png);
    background-position: 5px  center;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    border: none;
    cursor: pointer;
    height: 40px;
    margin: 3px 0;
    padding: 0 0 0 34px;
    position: relative;
    -webkit-transition: width 400ms ease, background 400ms ease;
    transition:         width 400ms ease, background 400ms ease;
    width:0px;
    cursor: pointer;
}
.search-field:focus {
    border: 2px solid #c3c0ab;
    cursor: text;
    outline: 0;
    width: 250px;
    color: #000;
    margin: 0;
}
.search-form
.search-submit { 
display:none;
}

.logo-btn label {
    margin: 0;
}

.chart-img img {
    width: 100%;
    pointer-events: none;
}
.chart-img {
    background-color: #d5d7da;
}
.modal-dialog-centered {
    margin-right: 30px !important;
}
.chart-img p {
    padding: 20px 50px;
    margin: 0;
}

.sdgTarget {
    transition: all 0.3s;
}
.sdgTarget:hover {
    margin-left: 0.2em !important;
}

/*Compare Page Css Start*/
.select-sec {
    display: flex;
    background-color: #00000014;
    padding: 30px 0;
    margin: 20px 0;
}
.select-sec span {
    display: inline-block;
    width: 100%;
    padding: 0 13px;
}
.select-sec select {
    width: 100%;
    border: 2px solid #00000057;
    height: 48px;
    padding: 0 10px;
    outline: none !important;
}
.tbl-blk {
    background-color: #ebebeb;
    padding: 20px 20px;
}
.compare-box {
    border: 1px solid #a8a8a8;
    background-color: #fff;
    padding: 20px 20px;
}
.compare-box h2 {
    text-align: center;
    border-bottom: 1px solid #a8a8a8;
    margin: 0 0 30px;
    padding-bottom: 10px;
}
.compare-box li {
    border-bottom: 1px solid #a8a8a8;
    padding: 15px 0;
}
.compare-box li:last-child {
    border-bottom: none;
}
.compare-box ul {
    margin: 0;
}
.compare-box li b {
    min-width: 150px;
    display: inline-block;
}

/*Login Page Css Start*/
.hide-login {
    display: none;
}
.container-custm {
    max-width: 1300px !important;
    position: relative;
    z-index: 99999;
}
.panel-logo {
    position: absolute;
    width: 100%;
    z-index: 99;
}
.panel-logo img {
    width: 100%;
}
.panel-logo a {
    background-color: #fff;
    display: inline-block;
    width: 15%;
    padding: 25px 10px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 0 4px #0000007d;
}
section.login-panel {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.login-text img {
    width: 530px;
}
.login-text h5 {
    font-size: 36px;
    color: #494949;
}
section.login-panel .row {
    align-items: center;
}

.login-form {
    box-shadow: 0 0 4px #0000007d;
    width: 80%;
    /* float: right; */
    text-align: center;
    padding: 40px 40px;
    height: 100%;
    border-radius: 20px;
    background-color: #fff;
}
.login-form h3 {
    color: #050505;
    font-size: 40px;
    font-weight: bold;
    margin: 0 0 40px;
}
.form-outline {
    text-align: left;
    margin: 17px 0;
}
.form-outline label {
    font-size: 20px;
    color: #000;
}
.flx-btw {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flx-btw a {
    font-size: 13px;
    color: #050505;
}
.form-check-blk {
    text-align: left;
    margin: 0 0 17px;
}
.form-check-blk input[type=checkbox] {
    display: none;
}
.form-check-blk input[type=checkbox] + label:before {
    content: "\2714";
    border: 0.1em solid #b7b6b6;
    border-radius: 0.2em;
    display: inline-block;
    width: 20px;
    height: 20px;
    padding-left: 0.2em;
    padding-bottom: 0.3em;
    margin-right: 0.2em;
    vertical-align: bottom;
    color: transparent;
    transition: .2s;
    background-color: #b7b6b6;
    top: -3px;
    position: relative;
}
.form-check-blk input[type=checkbox] + label:active:before {
    transform: scale(0);
}
.form-check-blk input[type=checkbox]:checked + label:before {
    background-color: transparent;
    border-color: transparent;
    color: #009edb;
}
.form-outline input {
    border: 1px solid #b6b6b6;
    height: 55px;
    border-radius: 8px;
    font-size: 18px;
}
.login-form button {
    height: 55px;
    margin: 0 !important;
    background-color: #009edb;
    border: none;
    font-size: 20px;
    border-radius: 8px;
}
.login-form p {
    margin: 90px 0 0;
}
.login-form p a {
    color: #000;
    font-weight: bold;
}

.field-icon {
    float: right;
    margin-top: -33px;
    position: relative;
    z-index: 2;
    right: 12px;
    color: #a1a1a1;
}
span.user-icon {
    float: right;
    margin-top: -35px;
    position: relative;
    z-index: 2;
    right: 12px;
    color: #a1a1a1;
}
.bullet-blk {
    position: fixed;
    right: 30px;
    width: 150px;
    z-index: 9999;
}
.bullet-blk ul {
    margin: 0;
}
.bullet-blk a {
    box-shadow: 0 0 4px #0000007d;
    padding: 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    margin: 20px 0;
    background-color: #fff;
    border-radius: 6px;
}
.bullet-blk img {
    width: 110px;
}
.ftr-img, .ftr-line {
    position: absolute;
    bottom: 0;
}
.ftr-img img, .ftr-line img {
    width: 100vw;
    object-fit: cover;
}
img.point {
    position: absolute;
    opacity: 0.8;
    animation: animName 9s linear infinite;
}
.point1 {
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 30px;
    width: 200px;
}
.point2 {
    top: 100px;
    left: 40px;
    width: 100px;
}
.point3 {
    width: 150px;
    left: 430px;
    bottom: 200px;
    z-index: 9999999;
}
.point4 {
    width: 90px;
    right: 40px;
    top: 20px;
    z-index: 9999;
}

@media print {
    .no-print, .no-print *
    {
        display: none !important;
    }
}

@media screen and (max-width: 900px) {
    .logo img {
        width: 36px;
    }
    .logo h3 {
        font-size: 16px;
    }
    .logo-btn a {
        padding: 4px 8px;
    }
    .logo-btn a span {
        font-size: 12px;
    }
    .logo-btn a span i {
        display: none;
    }
}

@media screen and (max-width: 520px) {
    .logo img {
        width: 32px;
    }
    .logo h3 {
        font-size: 14px;
    }
}

/* @media only screen and (min-device-width:520px) and (max-device-width:767px) and (orientation:portrait) {}
@media only screen and (min-device-width:120px) and (max-device-width:750px) and (orientation:landscape) {}
@media only screen and (min-device-width:751px) and (max-device-width:999px) and (orientation:portrait) {}
@media only screen and (min-device-width:751px) and (max-device-width:999px) and (orientation:landscape) {}
@media only screen and (min-device-width:1000px) and (max-device-width:1030px) and (orientation:portrait) {}
@media only screen and (min-device-width:1000px) and (max-device-width:1030px) and (orientation:landscape) {}

@media only screen and (min-width: 1366px) and (max-width: 1920px){}
@media only screen and (min-width: 1200px) and (max-width: 1365px){}
@media only screen and (min-width: 992px) and (max-width: 1199px){}
@media only screen and (min-width: 768px) and (max-width: 991px){}
@media only screen and (min-width: 520px) and (max-width: 767px){}
@media only screen and (min-width: 300px) and (max-width: 519px){} */
