@import url(https://fonts.googleapis.com/css?family=Pontano%20Sans:100,200,300,400,500,600);
@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap);

* {
  box-sizing: border-box;
}
body {
  background: #f9f8f8;
  margin: 0;
  padding: 0;
}
.hide {
  display: none !important;
}
.disabled {
  opacity: .5;
}
.wrapper {
  margin-top: 41px;
}
.action-bar {
  display: flex;
  justify-content: center;
  background-color: black;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px;
  z-index: 10;
}
.action-bar button{
  margin: 0 5px;
}
.flex {
  display: flex;
}
.flex-end {
  align-items: flex-end;
}
.modal {
  display: none;
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto;
  position: absolute;
  opacity: 0;
  z-index: -1;
  transition: all 300ms ease-out; /* Fade speed */
}
.modal::after{
  content: "";
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgb(0,0,0); 
  background-color: rgba(0,0,0,0.4); 
  position: fixed;
}
.modal.open-modal {
  opacity: 1;
  z-index: 100;
}
.modal-content {
  background-color: #fefefe;
  position: relative;
  margin: 2% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 50%; /* Modal size */
  transition: all 300ms ease-out; /* Up/down speed */
  z-index: 101;
}
.modal.open-modal .modal-content {
  margin: 5% auto;
}
.modal .close-modal-btn {
  color: #aaa;
  position: absolute;
  top: 0;
  right: 7px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.modal .close:hover,
.modal .close:focus {
  color: black;
  text-decoration: none;
}

.block.third {
  width: 33.3333%;
}

#app {
  position: relative;
  width: 100%;
}
#preloader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #50aa6c;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #5fc53b;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}
#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #5ba342;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}
#toast-container {
  font-family: "Pontano Sans",sans-serif;
}
table {
  width: 100%;
  text-align: left;
}
table th,
table td {
  border-left: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
  padding: 10px;
  font-size: 13px;
}
table th:first-child,
table td:first-child {
  border-left: 0;
}
canvas {
  width: 100%;
}
.btn {
  min-width: 140px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  outline: 0;
  cursor: pointer;
  border: 0;
  padding: 10px 20px;
  background: lightgrey;
  color: #535353;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-center {
  margin: 0 auto;
  display: block;
}
.btn-right {
  float: right;
}
.btn-red {
  color: #fff;
  background: #ea4858;
}
.btn-green {
  color: #fff;
  background: #45a857;
}

.small-text {
  font-size: 12px;
  color: #bcbab9;
  margin: 20px 0 30px;
}
@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}