@import url('https://fonts.googleapis.com/css?family=Questrial&amp;display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900&amp;display=swap');
:root {
  scroll-behavior: smooth;
}
:root {
    --swiper-theme-color: #34a853 !important;
}
body {
  font-family: poppins;
  color: #373737;
}

a {
  color: #373737;
  text-decoration: none;
}
p{
	margin:0px;
	padding:0px;
	font-size: 14px;
}
a:hover {
  color: #6695F2;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: poppins;
}

th {font-size:13px;}
td{font-size:14px;}
/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  padding: 77px 0;
  overflow: hidden;
  background-color: #fff;
}
.bg-w{background-color:#fff;border-radius: 5px;}
.section-header {
  text-align: center;
  /* padding-bottom: 40px; */
  padding-bottom: 10px;
}

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  color: #373737;
  text-transform: uppercase;
}

.section-header p {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
  color: #373737;
}

@media (max-width: 768px) {
  .section-header p {
    font-size: 28px;
    line-height: 32px;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 7px 0;
  border-bottom: 1px solid #ededed;
  background-color: #fff;
}

.header.header-scrolled {
  background: #fff;
  padding: 8px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo {
  line-height: 0;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #012970;
  font-family: poppins;
  margin-top: 3px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  /*display: flex;*/
  list-style: none;
  align-items: center;
}

.navbar li {
  padding-top: 10px;
  float:left;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 10px 20px;
  font-family: poppins;
  font-size: 13px;
  font-weight: 400;
  color: #373737;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: #34a853;
}
.navbar .active{
	color: #34a853;
    /* background-color: #dad9d9; */
    padding: 4px 20px;
    display: flex;
    border-radius: 3px;
	margin-top: 5px;
}

/* .navbar .getstarted { */
  /* background: #4154f1; */
  /* padding: 8px 20px; */
  /* margin-left: 30px; */
  /* border-radius: 4px; */
  /* color: #fff; */
/* } */
.navbar .getstarted {
  background: #34a853;
  padding: 8px 14px;
  margin-left: 5px;
  border-radius: 50px;
  color: #fff;
}
.navbar .getstarted:hover {
  color: #fff;
  background: #34a853;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
      padding: 0px 0px;
}
.navbar .dropdown ul li:hover{
	background-color:transparent;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 13px;
  text-transform: none;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #34a853;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #012970;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  /* color: #fff; */
  color: #172a4e;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(1, 22, 61, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  /* top: 15px; */
  /* right: 15px; */
  top: 1px;
  right: 25px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #012970;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #4154f1;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #4154f1;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
/*--------------------------------------------------------------
# Values
--------------------------------------------------------------*/
.values .box {
  padding: 30px;
  box-shadow: 0px 0px 6px 0px #37494852;
  transition: 0.3s;
  height: 100%;
}
.btn-check:active+.btn-primary, .btn-check:checked+.btn-primary, .btn-primary.active, .btn-primary:active, .show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #34a853 !important;
    border-color: #34a853 !important;
	box-shadow: 0 0 0 0.25rem rgb(52 168 83 / 49%);
}
.values .box img {
  padding: 30px 50px;
  transition: 0.5s;
  transform: scale(1.1);
}

.values .box h3 {
  font-size: 24px;
  color: #012970;
  font-weight: 700;
  margin-bottom: 18px;
}

.values .box:hover {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

.values .box:hover img {
  transform: scale(1);
}
.dot {
  height: 10px;
    width: 10px;
    background-color: #34a853;
    border-radius: 50%;
    display: inline-block;
	margin-right: 5px;
}
.dot1 {
  height: 10px;
    width: 10px;
    background-color: #fca120;
    border-radius: 50%;
    display: inline-block;
	margin-right: 5px;
}
.dot2 {
  height: 10px;
    width: 10px;
    background-color: #34a853;
    border-radius: 50%;
    display: inline-block;
	margin-right: 5px;
}
#chart-tooltip p { text-align: center; }
#myChart{
	margin: 0px auto;
    display: flex;
	 width:300;
	 height:300;
}
.top-right p{text-align: end;}
.bottom-right p{text-align: end;}
#myChart1{
	margin: 0px auto;
    display: flex;
}
#chart-tooltip {
   position: fixed;
   z-index: 999;
   background: #000000;
   padding: 2px;
   display: none;
   overflow: hidden;
  color: white;
   font-size: 10px;
   font-family: poppins;
}
.canvasjs-chart-credit{
	display:none;
}
.canvasjs-chart-toolbar{display:none;}
/* ------------- Sidebar Sarts here---------- */
 #sidebar-wrapper {
    margin-right: -250px;
    right: -10px;
    width: 250px;
	border-left: 1px solid #bdbdbd;
    box-shadow: 0px 0px 8px 2px #797676;
    background: #f9f9f9;
    position: fixed;
    height: 100%;
    overflow-y: auto;
    z-index: 1000;
    transition: all 0.5s ease-in 0s;
    -webkit-transition: all 0.5s ease-in 0s;
    -moz-transition: all 0.5s ease-in 0s;
    -ms-transition: all 0.5s ease-in 0s;
    -o-transition: all 0.5s ease-in 0s;
  }
.small-font{
	font-size: 12px;
    color: #5d5959;
    position: absolute;
    top: 150px;
    left: 68px;
}
.close-icon{
	color: #000;
    background-color: #c3c3c3;
    padding: 2px 8px;
    border-radius: 4px;
}
.border-dot{
	border-bottom: 2px dotted #c7c1c1;
    margin: 13px 0px 0px 0px;
}
.profile-name p{
	 padding-left: 45px;
	 padding-top: 18px;
	 color: #000;
    font-weight: 700;
}
.profile-img img{
	padding-left: 40px;
}
.profile-img-text{padding-top: 4px;}
.profile-img-text h6{color:#000;}
.profile-img-text p{color:#989898;font-size: 14px;}
  .sidebar-nav {
    position: absolute;
    top: 0px;
    width: 300px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .sidebar-nav li {
    line-height: 50px;
    text-indent: 20px;
	display: contents;
  }
  .sidebar-nav  li img {
    /*width:15%;
	padding-right: 10px;*/
	width: 15%;
    padding-right: 17px;
  }
.avatar{margin-top: 15px;}
  .sidebar-nav li a {
    color: #000 !important;
	padding: 10px 0 0px 25px;
    display: block;
    text-decoration: none;
  }
.sidebar-nav li a:hover {
    color: #34a853 !important;
    background: rgba(255,255,255,0.2);
    text-decoration: none;
  }

  .sidebar-nav li a:active, .sidebar-nav li a:focus {
    text-decoration: none;
  }

  .sidebar-nav > .sidebar-brand {
    height: 55px;
    line-height: 55px;
    font-size: 18px;
  }

  .sidebar-nav > .sidebar-brand a {
    color: #999999;
  }

  .sidebar-nav > .sidebar-brand a:hover {
    color: #fff;
    background: none;
  }

  #menu-toggle {
    top: 0;
    right: 0;
    /*position: fixed;*/
    z-index: 1;
  }

  #sidebar-wrapper.active {
    right: 250px;
	top: 0px;
    width: 315px;
  }

  .toggle {
    margin: 5px 15px 0 0;
  }
/* ------------- Sidebar Ends here---------- */
/* ------------- Tabs Starts here---------- */

/* Style the tab */
.tab {
  border: 1px solid #ededed;
    background-color: #ffffff;
	box-shadow:0px 0px 6px 0px #37494852;
    height: 100%;
    border-radius: 5px;
	padding: 25px 25px;
}
.tab p{
	font-weight: 700;
    padding-bottom: 20px;
}

/* Style the buttons inside the tab */
.tab button {
  display: block;
  margin-bottom: 10px;
  background-color: inherit;
  color: black;
  padding: 10px 25px 10px 10px;
  width: 100%;
  border: none;
  border-radius: 6px;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 15px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current "tab button" class */
.tab button.active {
     background-color: #e6e8f0;
    color: #34a853;
}

/* Style the tab content */
.tabcontent {
  padding: 25px 12px;
    border: 1px solid #ededed;
	box-shadow:0px 0px 6px 0px #37494852;
    height: 100%;
    background-color: #fff;
    border-radius: 5px;
}
.tab-text-left p{font-weight: 700;}
.form-text-left p{
	font-weight: 400;
    font-size: 14px;
    margin-top: 10px;
}
.tab-text-right p{text-align: end;font-weight: 600;}
.profile-box{
	border: 1px solid #ededed;
    width: 158px;
    border-radius: 10px;
	    margin-bottom: 25px;
}
.profile-box img{}
.pull-right{float:right !important;text-align: end;}
.btn-primary {
    color: #fff;
    background-color: #34a853;
    border-color: #34a853;
}
.btn-primary:hover {
    color: #fff;
    background-color: #34a853 !important;
    border-color: #34a853 !important;
}
.segment-activate{
	padding: 20px 25px;
}
.documents-activate{
	padding: 40px 45px;
}
.email-btn{
	margin-top: 40px;
}
.container-fluid:before{
	display:none;
}
.segment-table{
	padding: 5px 45px;
}
.segment-table  p{
	margin-bottom: 15px;
}
.segment-activate p{
	margin-bottom: 15px;
}
table {
  font-family: poppins;
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
  border-right: 0px;
    border-left: 0px;
}
.commodity-active p{
	margin-bottom: 20px;
    font-size: 15px;
}
/* ------------- Tabs Ends here---------- */
.empty-report{
	text-align: center;
    padding-bottom: 15px;
    padding-top: 35px;
}
.empty-report img{
	width: 25%;
    transition: auto !important;
    transform: initial !important;
}
.empty-report p{}
.selectize-input{
	background-color: #fff !important;
	border: 1px solid #ededed !important;
}
.tablink {
  color: #000;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 5px 10px;
  font-size: 14px;
  width: 33%;
}
.content{
	padding-top:55px;
}
/*#defaultOpen{
	color: #4154f1;
    font-weight: 600;
}*/
.dropup {
  position: relative;
  display: inline-block;
}

.drop-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.drop-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.dropbtn{
	background-color: #34a853;
    padding: 0px 8px 0px 8px;
    border: 1px solid #34a853;
    border-radius: 5px;
    color: #fff;
    line-height: 4px;
    height: 12px;
    font-weight: 900;
    display: flex;
}
.show {display: block;}
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
#box{
  width: 65%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 10px black;
  border-radius: 10px;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  padding: 10px;
  text-align: center;
  display: none;
}
#box1, #box2, #box3{width: 65%;overflow: hidden;background: #fff;box-shadow: 0 0 10px black;border-radius: 10px;position: absolute;top: 0%;left: 50%;transform: translate(-50%, -50%);z-index: 9999;padding: 20px;text-align: center;display: none;}
#box span{color: hotpink;font-size: 40px;display: block;margin: 20px 0;}
#box1 span{color: hotpink;font-size: 40px;display: block;margin: 20px 0;}
#box h1{color: brown;}
.close-button {
  float: right;
  width: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  cursor: pointer;
  border-radius: 0.25rem;
  background-color: lightgray;
}
.close{
  font-size: 18px;
  color: #191919;
  cursor: pointer;
  display: inline-block;
  border-radius: 1px solid #000;
}
.box-head{
	border-bottom:1px solid #dddddd;
	height: 30px;
}
.box-head a{
font-size: 18px;
  color: #000;
  padding: 0px 20px;
  cursor: pointer;
  display: inline-block;
  border-radius: 1px solid #000;
}
.box-body{
	padding: 15px 0px;
	height:100%;
}
.box-footer {
    border-top: 1px solid #dddddd;
    height: 30px;
    padding: 3px 0px;
    text-align: end;
}
.theme-selector{display:none;}
.color-ash{
	background-color: #e0dcdc;
    padding: 7px 0px;
}
.instructions{
	background-color: #f3f4f8;
    text-align: left;
    padding: 15px 25px;
    border: 2px solid #bfbfbf;
    border-radius: 3px;
}
.instructions p{
	color:#c78400;
}
.empty-box{
	width:150px;
	height:150px;
	background-color:#787878;
	margin: 0px auto;
    margin-bottom: 20px;
}
.calendar,.datepicker {display: table-cell;}
.dropdown-menu>li>a{cursor: pointer;}
.modebar-container{display:none;}
.js-plotly-plot .plotly{margin:0px auto;display: flex;justify-content: center;}
.fa-pencil-square-o{color: #34a853;padding-left: 5px;width: 10%;margin-top: -5px;}
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 70px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: transparent /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 65%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

/* The Close Button */
.close {color: #191919;float: right;font-size: 28px;font-weight: bold;}
.close1 {color: #191919;float: right;font-size: 28px;font-weight: bold;}
.close2 {color: #191919;float: right;font-size: 28px;font-weight: bold;}

.close:hover,.close:focus {color: #000;text-decoration: none;cursor: pointer;}
.close1:hover,.close1:focus {color: #000;text-decoration: none;cursor: pointer;}
.close2:hover,.close2:focus {color: #000;text-decoration: none;cursor: pointer;}

.modal-header {padding:8px 20px;background-color: #ffffff;color: #373737;}
.modal-header h2{font-size:16px;}
.modal-body {padding: 25px 30px;}
.modal-text{text-align: justify;font-size: 14px;}
.modal-footer {padding: 8px 30px;background-color: #ffffff;color: white;}
.mb-25{margin-bottom:20px;}
.msg-text{margin-bottom:15px;}
.msg-text p{color: #9b9b9b;margin-top: 5px;font-size: 13px;}
.text-box.yellow {background-color: #fffaeb;border-color: #fff3cf;}
.text-box {padding: 10px 20px;margin-bottom: 20px;border-radius: 2px;color: rgba(0,0,0,.65);border-left: 5px solid #f4f4f4;}
.notice ul {margin: 0;padding: 0;list-style: none;}
.notice ul li {margin-bottom: 5px;font-size: 13px;font-weight: 400;}
.form-control{font-family: 'Poppins', sans-serif;font-size: 12px;color: #373737;}
.selectize-input{padding: 6px 10px !important;box-shadow: none !important;font-size: 12px !important;}
label{font-size: 14px;}
.btn{padding: 4px 5px;font-size: 14px;}
.small-text{color:#787878;font-size:13px;}
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: transparent;
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  /* margin: 70px auto; */
  top: 15%;
  left: 15%;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 75%;
  border: 1px solid #ededed;
  width: 65%;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
  position: relative;
  transition: all 5s ease-in-out;
}

.popup h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
  }
.popup .close:hover {color: #06D85F;}
.popup .content {max-height: 30%;overflow: auto;}
#exTab1 .tab-content {padding : 5px 15px;}
#exTab2 h3 {padding : 5px 15px;}
#exTab1 .nav-pills > li > a {border-radius: 0;font-size: 16px;}
#exTab3 .nav-pills > li > a {border-radius: 4px 4px 0 0 ;}
#exTab3 .tab-content {padding : 5px 15px;}
#exTab1{margin-top: 45px;}
#exTab1 ul{margin-bottom: 15px;background-color: #efefef;}
#exTab1 ul li{padding: 10px 30px;}
#exTab1 ul li.active{color: #282828;background-color: #d0cccc;text-decoration:none;}
.dm-l{margin-left: -44px;}
.dm-l1{margin-left: -38px;}
.dm-12{margin-left: 64px !important;}

btn-check:active+.btn-outline-success, .btn-check:checked+.btn-outline-success, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show, .btn-outline-success:active {
  color: #fff;
  background-color: #34a853 !important;
  border-color: #34a853 !important;
}
.btn-outline-success {
  color: #34a853;
  border-color: #34a853;
  color:#fff;
}
.btn-outline-success:visited {
  color: #34a853;
  border-color: #34a853;
  color:#fff;
}

@media screen and (max-width: 700px){
  .box{
    width: 70%;
  }
  .popup{
    width: 70%;
  }
}
@media screen and (max-width: 479px){
  .txt-sm-right{text-align:right;}
  .ssm-50{-webkit-flex: 0 0 50%;-ms-flex: 0 0 50%;flex: 0 0 50%;max-width: 50%;}
	.sm-w-50{width:50%;float:left;}
	section {padding: 45px 0;overflow: hidden;}
	.top-right{ margin-top: -36px;}
	.bottom-left{position: relative;top: 30px;}
	.top-left p{font-size: 11px;}
	.top-right p{font-size: 11px;}
	.bottom-left p{font-size: 11px;}
	.bottom-right p{font-size: 11px;}
	#myChart {margin: 0px auto;display: flex;margin-left: -33px;padding: 20px;}
	#myChart1 {margin: 0px auto;display: flex;margin-left: -33px;padding: 20px;}
	.navbar li {padding-top: 10px;float: initial;}
	.navbar-mobile ul{top: 1px;}
	.profile-name p{padding-top: 18px;padding-left: 10px;}
	.profile-name{width:50%;float:left;}
	.cc-icon{width:50%;float:left;}
	.profile-img{float:left;width: 32%;}
	.profile-img-text{float:left;width: 68%;}
	.profile-img-text h6{font-size:12px;}
	.profile-img-text p{font-size: 11px;padding-bottom: 10px;}
	.profile-img img{padding-left: 10px;}
	.small-font{top: 155px;left: 45px;}
	.sidebar-nav li a{padding: 0px 0 0px 0px;}
	.mb-mr{margin-top:20px;}
	label{font-size: 11px;}
	.form-control{font-size: 9px;height: 25px;padding: 1px 7px;}
	.box {width: 100%;}
	.calendar, .datepicker{display: flex;width: 90% !important;}
	.tablink{width: 30% !important;font-size: 10px;text-align: left;float: initial;margin-bottom: 10px;padding: 3px 8px;}
	.tabcontent{padding: 5px 10px;height: auto;}
	.cust-class{padding: 20px 10px !important;}
	.cust-class1{padding: 0px 15px !important;margin: 0px 0px !important;}
	.cust-class2{padding: 0px 15px !important;}
	.cust-class4{padding: 15px 10px !important;}
	.cust-class3{margin-top: 15px;}
	.values .box{padding: 10px;}
	.top-left p {font-size: 13px;text-align: justify;}
	.mb-top-2{margin-top:20px;}
	.empty-report{margin: 20px 0px !important;padding-top: 15px;}
	.pull-right{float: initial !important;text-align: initial;}
	.segment-table {padding: 5px 10px;}
	.segment-activate {padding: 10px 10px;}
	.documents-activate {padding: 10px 10px;}
	.hold-menu{display: none !important;}
	.values .box img{padding: 0px 0px;}
	.fa-pencil-square-o{width: 6%;}
	.xs-right{padding-left: 84px;}
	.xs-top{padding-top: 20px !important;}
	.xsm-top{margin-top: 20px !important;}
	.cust-nav{position: relative;left: 90%;min-height: 0px;margin-bottom: 0px;border: 1px solid transparent;}
	.cust-toggle{margin-top: -35px;}
	.hold-section{padding-bottom: 0px;}
	.dropdown-menu>li>a{font-size: 9px;padding: 3px 10px;}
	th {font-size: 9px;}
	td {font-size: 9px;}
	.dropbtn{font-size: 9px;padding: 0px 5px 0px 5px;}
	.fa-sort-down{font-size: inherit !important;}
	.mb-logo{padding: 0px 0px !important;}
	hr{margin: 0.3rem 0;}
	.btn{font-size: 10px;padding: 5px 8px;}
	.sm-top{margin-top: 5px !important;text-align: end;}
	.sm-top a{font-size: 12px;}
	#pandlContinueBtn, #taxandlContinueBtn, #overviewProceedBtn, #overviewCommodityBtn{margin-top: 5px !important;}
	.download a{font-size: 11px;}
	.empty-report{padding: 0px 15px !important;}
	.empty-report p {font-size: 12px;margin-bottom: 5px;}
	.sm-mt{margin-top: 0px !important;}
	.sm-mt p{font-size: 11px;}
	.sm-mb{margin-bottom:10px !important;}
	.sm-fl{text-align: left !important;}
	.top-left{margin-top: 10px;	}
	.sm-m{margin-top: 5px !important;margin-bottom: 10px !important;}
	.sm-pd-l{padding-left: 15px !important;}
	.sm-mt-0{margin-top: 0px !important;}
	.sm-mt-1{margin-top: 10px !important;}
	.tab{padding: 10px 15px;}
	.tab button{font-size: 11px;padding: 5px 10px;margin-bottom: 3px;}
	.tab button>img{width: 10% !important;}
	.tab-text-left p{font-size: 11px;}
	.sm-w-100{width: 100%;}
	#ckycno, #ckycNumbber{text-align: left;font-size: 11px !important;display: inline;}
	.profile-box{margin-bottom: 0px;}
	.f-12{font-size: 10px !important;margin-top: 5px !important;}
	.f-7{font-size: 7px !important;}
	.f-10{font-size: 10px !important;}
	.f-11{font-size: 11px !important;}
	.holdings-table{margin-top:15px !important;}
	.popup{width: 100%;left: 0px;top: 25px;}
	.modal-header{padding: 0px 0px;}
	.popup .content{padding: 0px 0px !important;}
	.modal-footer{padding: 0px 0px !important;}
	.popup .close{top: 13px;font-size: 20px;}
	.modal-text{font-size: 11px;}
	.msg-text p{font-size: 10px;}
	.modal-header h2 {font-size: 13px;}
	#pfCancel, #pfSaveChanges{display:inline;}
	.email-btn {	margin-top: 0px;}
	#exTab1 ul li {padding: 2px 17px;}
	#exTab1 .nav-pills > li > a {border-radius: 0;font-size: 13px;}
	#imageData{width: 100px !important;}
	.sm-image{width: 100px !important;}
	.header .logo img{max-height: 35px;}
}
@media (min-width: 1200px){
  .container, .container-lg, .container-md, .container-sm, .container-xl {max-width: 1240px;}
}
#mytableFull tr th{text-align: left !important;font-weight: 400;font-size: 13px;background: #fafafb; color: #9b9b9b;border-bottom: 0px;}
#myTable tr td{font-size: 12px;font-weight: 400;text-align: left !important;font-family: 'Poppins', sans-serif;text-transform: capitalize;}
.disabled {pointer-events: none;cursor: default;}
.dropdown-divider {height: 0;width: 100%;margin: 0.5rem 0;overflow: hidden;border-top: 1px solid rgba(0,0,0,.15);}
      