
@font-face {
  font-family: "futurapt_book";
  src: url("./fonts/futurapt/FuturaPT-Book.woff") format("woff"), url("./fonts/futurapt/FuturaPT-Book.ttf") format("truetype");
  font-style: normal;
}
@font-face {
  font-family: "futurapt_bold";
  src: url("./fonts/futurapt/FuturaPT-Bold.woff") format("woff"), url("./fonts/futurapt/FuturaPT-Bold.ttf") format("truetype");
  font-style: normal;
}
@font-face {
  font-family: "futurapt_medium";
  src: url("./fonts/futurapt/FuturaPT-Medium.woff") format("woff"), url("./fonts/futurapt/FuturaPT-Medium.ttf") format("truetype");
  font-style: normal;
}
@font-face {
  font-family: "futurapt_demi";
  src: url("./fonts/futurapt/FuturaPT-Demi.woff") format("woff"), url("./fonts/futurapt/FuturaPT-Demi.ttf") format("truetype");
  font-style: normal;
}



@font-face {
  font-family: "Roboto";
  src: url("./fonts/Roboto/Roboto-Regular.ttf") format("truetype");
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("./fonts/Roboto/Roboto-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: bold;
}

@font-face {
  font-family: "Roboto";
  src: url("./fonts/Roboto/Roboto-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-size: 1rem;
  line-height: 1.5;
  font-family: Roboto;
}

.h-100-header {
  height: calc(100vh - 56px);
}

.no-margins {
  margin: 0;
}

.side-bar-icon {
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

.analysis-component {
  position: relative;
}

.analysis-component:hover .side-bar-icon, .text-widget-container:hover .side-bar-icon {
  visibility: visible;
  opacity: 1;
}

.folders-list {
  display: flex;
  padding: 0 10px 0 10px;
  flex-wrap: wrap;
}

.folder-container {
  display: flex;
  flex: 0 1;
  white-space: nowrap;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 0px 1px #FFFFFF inset;
  padding: 14px 26px;
  border-radius: 110px;
  margin-bottom: 10px;
  cursor: pointer;
  margin-right: 10px;
}

.folder-container:last-child {
  margin-right: 0px;
}

.folder-container.active {
  border: 1px solid #00B2FF;
  box-shadow: 0px 0px 0px 1px #00B2FF inset;
}

.folder-container.active .folder-name {
  font-weight: 500;
}

.folder-name, .folder-add {
  /*display: flex;*/
  position: relative;
  align-items: center;
  width: 100%;
  color: #333333;
  font-family: Roboto;
  font-size: 13.5px;
}

.folder-add {
  margin: auto;
}

.folder-name::after {
  display: block;
  content: attr(title);
  font-weight: 500;
  height: 1px;
  color: transparent;
  overflow: hidden;
  visibility: hidden;
}

.process-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0 10px 0 0;
}

.node-percent__stat {
  border-radius: 100%;
  background-color: #00AEF9;
  color: #FFFFFF;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  font-size: 16px;
  vertical-align: middle;
  text-align: center;
  font-weight: bold;
  transition: background-color 2s, opacity 2s;
}

.p-flex-container {
  display: flex;
}

.v-flex-container {
  display: flex;
  flex-direction: column;
}

.overflow-hidden {
  overflow: hidden;
}


.h-100 {
  height: 100% !important;
}

*, :after, :before {
  box-sizing: border-box;
}

img, svg {
  vertical-align: middle;
}

img {
  border-style: none;
}

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}

.v-context {
  position: absolute;
  z-index: 1000;
  list-style: none;
  padding: 10px;
  margin: 0;
  font-family: Roboto;
  font-size: 14px;
  font-weight: normal;
  background: #FFFFFF;
  box-shadow: 0px 0px 34px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  text-decoration: none;
  color: #333333;
  top: 80px;
  min-width: 170px;
}

.v-context.top-arrow:before {
  content: '';
  display: block;
  position: absolute;
  left: calc(50% - 5px);
  bottom: 100%;
  width: 0;
  height: 0;
  border: 10px solid transparent;
}

.v-context.top-arrow:after {
  content: '';
  display: block;
  position: absolute;
  left: calc(50% - 5px);
  bottom: 100%;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-bottom-color: white;
}

.parent-full-size {
  width: 100%;
  height: 100%;
}

/*h6 {*/
/*  font-size: 15px;*/
/*  font-family: Roboto;*/
/*}*/
/*.profile-container {*/
/*  padding: 80px 40px 0 40px;*/
/*}*/

/*.profile-form__container {*/
/*  display: flex;*/

/*}*/
/*.form-col {*/
/*  flex-basis: 50%;*/
/*  max-width: 500px;*/
/*}*/

/*.form-col + .form-col {*/
/*  margin-left: 50px;*/
/*}*/


/*.form-buttons {*/
/*  display: flex;*/
/*  margin: 10px 0;*/
/*}*/

/*.form-buttons__btn {*/
/*  padding: 0.75rem 1.75rem;*/
/*}*/
/*.form-buttons__btn:not(.no-width) {*/
/*  flex-basis: 50%;*/
/*}*/

/*.form-buttons__btn + .form-buttons__btn {*/
/*  margin-left: 10px;*/
/*}*/


.new-source-file {
  border: 1px dashed rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  height: 209px;
  cursor: pointer;
}

.new-file-container, .uploaded-file-container {
  display: flex;
  align-items: center;
  height: 100%;
}

.uploaded-file-container, .container-drag-over {
  background-color: rgba(0, 249, 55, 0.11);
}

.source-file-upload-info {
  display: flex;
  align-items: center;
}

.new-source-file-icon {
  height: 100%;
  width: 120px;
  flex: 0 0 120px;
  display: flex;
  margin: auto;
}

.new-file-container .new-source-file-icon {
  border-right: 1px dashed rgba(0, 0, 0, 0.15);
}

.uploaded-file-container .new-source-file-icon {
  border-right: none;
  border-left: 1px solid rgba(0, 249, 55, 0.2);
}

.uploaded-file-container .new-source-file-icon img {
  transform: rotate(45deg);
}

.new-source-file-icon img {
  margin: auto;
}

.new-source-file-text {
  font-size: 13px;
  font-family: Roboto;
  line-height: 140%;
  padding: 0 48px;
  margin: auto;
  display: flex;
}

.new-source-file-text span {
  margin: auto;
}

.uploaded-file-icon {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  border-radius: 100%;
  background-color: #00F937;
}

.hidden-upload {
  display: none;
  opacity: 0;
  z-index: -2;
}

.upload-vertical .uploaded-file-container .new-source-file-icon {
  border-left: none;
  border-top: 1px solid rgba(0, 249, 55, 0.2);
}

.upload-vertical .new-file-container, .upload-vertical .uploaded-file-container {
  flex-direction: column;
}

.upload-vertical .new-source-file-icon {
  width: 100%;
  height: 120px;
  flex: 0 0 50%;
  display: flex;
  margin: 0 !important;
}

.upload-vertical .new-file-container .new-source-file-icon {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
}

.rtl-dir {
  direction: rtl;
}

.CodeMirror {
  height: 200px !important;
  font-size: 13px !important;
}