@font-face {
  font-family: 'Nunito Sans';
  src: url('/css/NunitoSans-Regular.ttf')  format('truetype'); /* Safari, Android, iOS */
}

:root {
  --mm-green: #73bf00;  
  --side-nav-bg: #313a46;
  --table-head: #eef2f7;
  --table-border: #f0f2f5;
  --danger-red: #fa5c7c;
  --title-color: #494949;
}
body {
  font-family: 'Nunito Sans';
  background-color: #f0f0f0;
  margin: 0px;
  /* background-color: #fafbfe; */
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Column system */
* {
  box-sizing: border-box;
}

.user-menu {
  float: right;
  margin-right: 15px;
}
.user-menu .frontix-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-right: 20px;
  vertical-align: middle;
}

.user-menu-name {
  font-weight: 600;
  margin-right: 30px;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  padding: 10px;
}

.column-10 {
  width: 10%;
}
.column-20 {
  width: 20%;
}
.column-30 {
  width: 30%;
}
.column-40 {
  width: 40%;
}
.column-50 {
  width: 50%;
}
.column-60 {
  width: 60%;
}
.column-70 {
  width: 70%;
}
.column-80 {
  width: 80%;
}
.column-90 {
  width: 90%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Style the tab */
.tab {
  overflow: hidden;
  border: 0;
  background-color: inherit;
  border-bottom: 1px #f1f1f1 solid;
  margin-bottom: 10px;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: #fff;
  float: left;
  border: 0px;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  font-size: 17px;
  transition: none;
}

.tablinks {
  background-color: #fff;
}

.tab button.active {
  border-bottom: 2px solid var(--mm-green);
  /* margin-bottom: -1px; */
  background-color: #fff;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #fff;
  color: var(--mm-green);
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 0;
  border-top: none;
}

/* BUTTON */
.button {
  border: none;

  padding: 6px 16px 6px 16px;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  display: inline-block;
  font-size: 14px;
  margin: 4px 2px;
  height: 35px;
  line-height: 1.75;
  /* text-transform: uppercase; */
  cursor: pointer;
  border-radius: 4px;
}

.button-primary {
  /* background-color: #3f51b5; */
  background-color: var(--mm-green);
  color: white;
}
.button-controll {
  background: none;
  height: 24;
}
.button-controll:hover {
  background-color: #222;
}
.button-icon {
  width: 16px;
  height: 16px;
  padding: auto;
  margin-top: 4px;
}
.button-disabled {
  background-color: #aaa;
}
/* Pager */
.pager-container {
  float: right;
  margin: 15px 0px 15px 0px;
}
.button-pager {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #e9e9e9;
  margin-left: 10px;
  padding: 3px;
}
.button-pager:hover {
  background-color: #e6e6e6;
  /* color: #fff; */
}
.button-pager-actual {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-color: var(--mm-green);
  color: #fff;
}
.pager-button-container {
  margin-left: 35px;
}


/* MESSAGES */
.alert {
  padding: 20px;
  background-color: var(--danger-red);
  color: white;
}
.warning {
  padding: 20px;
  background-color: #f4b136;
  color: white;
}
.info {
  padding: 20px;
  background-color: #36b8f4;
  color: white;
}
.success {
  padding: 20px;
  background-color: #21b140;
  color: white;
}
.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.closebtn:hover {
  color: black;
}

/* CODE EDITOR */
code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
    monospace;
}

/* Redam */
.redam-runner-container {
  float: left;
  width: 100%;
}
.selected-row {
  background-color: rgb(59, 67, 82);
}
.debugger-area {
  background-color: #282c34;
  font-family:  Verdana, Geneva, Tahoma, sans-serif;
}
.code-area {
  background-color: #1e1e1e;
  color: #f2f2f2;
  font-family: "Courier New";
  font-size: 13px;
  height: 70vh;
  overflow-y: scroll;
  /* border-radius: 10px; */
  /* float: left; */
  width: 100%;
}
.code-line-number {
  color: #aaa;
  display: inline-block;
  width: 30px;
  margin-right: 10px;
  align-content: right;
  border-right: 1px solid #999;
}
.code-area-rasm {
  background-color: rgb(52, 47, 40);
  width: 70%;
}
.watch-area-rasm {
  width: 30%;
}
.selected-row-rasm {
  background-color: rgb(82, 76, 59);
}
.code-line {
  white-space: nowrap;
}
.code-line-value {
  display: inline;
}
.watch-area {
  width: 100%;
  max-width: 350px;
  font-size: 12px;
  padding: 5px 0px 5px 10px;
  font-family: "Courier New";
  overflow: auto;
  max-height: 150px;
  color: #818181;
}
.watch-area-title {
  text-transform: uppercase;
  color: #ececec;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: .1em;
}
.watch-variable-name {
  color: #c678dd;
}
.watch-variable-value {
  color: rgb(172, 172, 172);
}
.watch-array-value {
  color: rgb(194, 192, 163);
}
.watch-string-value {
  color: #d69d85;
}
.watch-variable-white {
  color: #fff;
}
.mike-area {
  width: 20%;
  float: left;
}
.mike_monitor {
  max-width: 350px;
  width: 100%;
  height: auto;
  border: 2px #222 solid;
}
/* .keyword {
        color: blueviolet;
    } */
.color_string {
  /* white-space: nowrap; */
  display: contents;
  color: #d69d85;
}
.color_redam_string {
  /* white-space: nowrap; */
  display: contents;
  color: #6582d1;
}
.color_keyword {
  display: contents;
  color: #c678dd;
}
.color_functions {
  display: contents;
  color: #4ca3da;
}
.color_type_keyword {
  display: contents;
  color: #008866;
}
.color_bracket {
  display: contents;
  color: #dac619;
}
.color_comment {
  display: contents;
  color: #05885c;
}

/* MMQ builder */
.post-data-input {
  width: 100%;
}

.cursor-pointer {
  cursor: pointer;
}

/* SIDE NAVIGATION*/
#navbar_logo {
  position: absolute; 
  top: 13px; 
  left: 60px;
  color: var(--mm-green);
  font-size: 18px;
  transition: 1s;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: .07em;
  display: block;
  width: 250px;
}
.nav-title {
  font-size: 10px;
  text-transform: uppercase;
  /* color: #99a7b8; */
  color: #c1d1e3;
  padding-left: 15px;
  font-weight: bold;
  letter-spacing: .1em;
  width: 250px;
  display: block;
  margin-top: 10px;
}
.nav-title:hover {
  color: #fff;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 40;
  background-color: var(--side-nav-bg);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 9px 8px 9px 15px;
  text-decoration: none;
  font-size: 15px;
  color: #8391a2;
  fill: #8391a2;
  display: block;
  width: 250px;
  transition: 0.2s;
}

.sidenav a:hover{
  color: #bccee4;
  fill: #bccee4;
}
.sidenav .active {
  color: #fff;
  fill: #fff;
}

.sidenav .frontix-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 23px;
  vertical-align: middle;
}

.sidenav-closebtn {
  position: absolute;
  top: 0px;
  /* color: var(--title-color); */
  font-size: 22px !important;
}

.collapse-active {

}
.collapsible {
  cursor: pointer;
}
.collapse-content {
  overflow: hidden;
  /* max-height: 0; */
  transition: max-height 0.2s ease-out;
}

#main_area {
  transition: margin-left .5s;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

.topbar {
  background-color: #fff;
  height: 55px;
  padding: 15px;
}

.content {
  margin: 20px;
  background-color: #fff;
  padding: 15px;
  overflow-x: scroll;
}

#admin_page_title {
  font-weight: bold;
  color: var(--title-color);
  font-size: 20px;
  margin-left: 7px;
}

.bigbox-img-preview {
  width: 80%;
  padding: 10px;
  border: 1px solid #e4e4e4;
  border-radius: 5px;
  margin: 20px;
}

/* FRONTIX mod */
.container {
  padding: 0;
  margin: 0;
  background-color: #fff;
}
.frontix-container {
  padding: 0;
}
.frontix-table-all {
  border: none;
  font-size: 14px;
  margin: 0px;
}
.frontix-table-all tr:nth-child(2n) {
  /* background-color: #f7f7f7; */
  background-color:  #fff;
}
.frontix-bordered tr, .frontix-table-all tr {
  border-bottom: 1px solid var(--table-border);
}
.frontix-table th {
  font-weight: bold;
  color: #222;
  font-size: 14px;
  background-color: var(--table-head);
  text-transform: capitalize;
  height: 60px;
}

.filter-container {
  margin-bottom: 20px;
  float: left;
}

.button-right {
  float: right;
}
#export_import {
  float: left;
}