:root {
  --main: #1B364F;
  --content:#ffffff;
  --header: #000000;
  --text:#000000;
  --button:#ffffff;
  --nav:#ffffff;
}


html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  background: var(--main) !important;
  font-family: "Satoshi-Regular", sans-serif;
  font-size: 20px;
  overflow: hidden;
  line-height: 1.2;
}

.header{
  position: fixed;
  top: 0;
  left: 0;
  width: 170px;
  z-index: 101;
  overflow: hidden;
  padding-top:30px;
  height: 100%;
}

.sitelogo{
  display: block;
  width: 120px;
  margin:0 auto;
}

.digitalmavens-nav{
  margin-top: 19px;
}

.digitalmavens-nav li{
  list-style-type: none;
  padding-left:10px;
  margin-bottom:2px
}

.digitalmavens-nav li a:link,
.digitalmavens-nav li a:visited,
.digitalmavens-nav li a:active{
  color: var(--nav);
  font-family: "Satoshi-Black", sans-serif;
  text-transform: capitalize;
  font-size: 12px;
  padding-left:35px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.digitalmavens-nav li a:hover,
.digitalmavens-nav li.current_page_item a:active,
.digitalmavens-nav li.current_page_item a:visited,
.digitalmavens-nav li.current_page_item a:link{
  color:var(--main);
  background-color: var(--nav);
  padding-left:35px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.digitalmavensContent{
  position: fixed;
  top: 18px;
  left: 170px;
  width: calc(100% - 188px);
  height: calc(100% - 36px);
  box-sizing: border-box;
  z-index: 100;
  overflow: auto;
  padding-top:30px;
  background-color: var(--content);
  border-radius: 10px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 50px;
  display:flex;
  flex-direction:column;
}

h1{
  font-family: "Satoshi-Black", sans-serif;
  font-size: 30px;
  color: var(--header);
  margin-top:0px;
  margin-bottom:30px
}

h2{
  font-family: "Satoshi-Black", sans-serif;
  font-size: 20px;
  color: var(--header);
  margin-top:0px;
  margin-bottom:20px
}

p{
  font-family: "Satoshi-Bold", sans-serif;
  font-size: 16px;
  color: var(--text);
}

button{
  font-family: "Satoshi-Bold", sans-serif;
  font-size: 16px;
  color: var(--button);
  background-color: var(--main);
  border: none;
  padding: 10px 25px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom:10px;
  position: relative;
}

button:hover{
  opacity: 0.8;
}

button.iconRight span,
button.iconLeft span{
  display: block;
  font-size: 20px !important;
  position: absolute;
  top:12px
}

button.iconRight{
  padding-right:45px !important;
}
button.iconRight span{
  right:15px;
}

button.iconLeft{
  padding-left:45px !important;
}
button.iconLeft span{
  left:15px;
}

hr{
  border-top: 1px solid #DDD;
  margin-top: 20px;
  margin-bottom: 0px;
  height:1px;
  width:100%;
  color:#DDD;
  clear:both;
}

/* add icons */
.menu-item-description{
  font-family: 'Material Symbols Outlined';
  font-weight: 400;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
}

.menu-item a span.menu-item-description {
  position: absolute;
  top: 6px;
  left:5px
}

.userProfile{
  position: absolute;
  bottom:30px;
  left:20px;
  font-family: "Satoshi-Bold", sans-serif;
  font-size: 12px;
  color: var(--nav);
}

.userProfile img{
  border-radius: 50%;
  margin-right:10px
}

.flexTop{
  display: block;
  justify-content: space-between;
}

.toolboxRow{
  margin-top:20px;
  display: none;
}

.tableContent{
  width: 100%;
  border-collapse: collapse;
  overflow: auto;
  margin-top:20px;
  min-height: 200px;
  padding-right:5px;
}

.tableContent::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.tableContent::-webkit-scrollbar-thumb {
  background-color: var(--main);
  border-radius: 10px;
}

.tableContent::-webkit-scrollbar-track {
  background-color: #efefef;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.ui-pnotify-text{
  font-family: "Satoshi-Bold", sans-serif;
  font-size: 14px;
}

.ui-pnotify-title{
  font-family: "Satoshi-Black", sans-serif;
  font-size: 16px;
}

.ui-pnotify-icon .glyphicon {
  font-size: 13px;
}

.table td{
  font-size:13px;
  color:var(--text);
  font-family: "Satoshi-Medium", sans-serif;
}

.table th{
  font-size:13px;
  color:var(--text);
  font-family: "Satoshi-black", sans-serif;
}

select.form-control{
  -webkit-appearance: auto;
}

@media screen and (max-width: 1200px) {
  .table th{
    min-width: calc(50vw - 200px);
  }
 
}