.login .main-content {
  width: 50%;
  border-radius: 20px;
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
  margin: 5em auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.login .info {
  background-color: #228B22;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
}

.login .form-group {
  width: 100% !important;
}

.login .row h2 {
  color: #999999 !important;
  margin: 20px auto 0 auto;
  text-align: center;
}

.login .login-form {
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid #ccc;
}

.login form {
  padding: 0 2em;
}

.login .form-input {
  text-align: center;
  width: 50%;
  border: 0px solid transparent;
  border-radius: 0;
  border-bottom: 1px solid #aaa;
  outline: none;
  margin: 1.5em auto;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.login .form-input:focus {
  border-bottom-color: #228B22;
  -webkit-box-shadow: 0 0 5px rgba(0, 80, 80, 0.4);
          box-shadow: 0 0 5px rgba(0, 80, 80, 0.4);
  border-radius: 4px;
}

.login .error p {
  margin: auto;
  color: red;
}

@media all and (max-width: 768px) {
  .login .form-input {
    width: 100%;
  }
  .login .main-content {
    width: 70%;
  }
  .login .info {
    display: none;
  }
  .login .login-form {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
  }
}

@media all and (max-width: 600px) {
  .login .main-content {
    width: 90%;
  }
}

.btn-green {
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  border-radius: 30px;
  color: #999999;
  font-weight: 600;
  width: 50%;
  background-color: #fff;
  border: 1px solid #999999;
  margin-top: 1.5em;
  margin-bottom: 1em;
}

.btn-green:hover, .btn-green:focus {
  background-color: #999999;
  color: #fff;
}

@media all and (max-width: 600px) {
  .btn-green {
    width: 100%;
  }
}

.detect-pro {
  margin: 6em auto;
}

.detect-pro button {
  margin: auto;
  width: 80%;
  display: block;
}

.detect-pro .big-det {
  border-radius: 20px;
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  padding: 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.detect-pro .big-det img {
  padding: 10px;
  width: 100%;
  max-height: 2000px;
}

.detect-pro .big-det img:hover {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.detect-pro .big-det textarea, .detect-pro .big-det input {
  width: 100%;
}

.detect-pro .big-det .big-name {
  font-size: 2rem;
}

.detect-pro .small-det {
  padding: 10px;
}

.detect-pro .small-det h2 {
  color: #228B22;
  margin: 20px auto 0 auto;
}

.detect-pro .sm-pro-detect {
  padding: 10px;
  border-radius: 10px;
  border: solid 1px black;
  margin: 10px auto;
  height: 300px;
}

@media all and (max-width: 425px) {
  .detect-pro .sm-pro-detect {
    height: 350px;
  }
}

.detect-pro .sm-pro-detect button {
  margin-top: 30px;
}

.detect-pro .sm-pro-detect img {
  width: 100%;
  max-height: 200px;
}

.detect-pro .sm-pro-detect .btn-green {
  width: auto !important;
}

.detect-pro .pagination li {
  margin: auto 10px;
}

.detect-pro .pagination li a {
  color: black;
}

.detect-pro .pagination li:hover {
  cursor: pointer;
}

/* Style the Image Used to Trigger the Modal */
.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: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.9);
  /* Black w/ opacity */
  /* Modal Content (Image) */
  /* Caption of Modal Image (Image Text) - Same Width as the Image */
  /* Add Animation - Zoom in the Modal */
  /* The Close Button */
  /* 100% Image Width on Smaller Screens */
}

.modal .modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 1000px;
}

.modal #caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

.modal .modal-content, .modal #caption {
  -webkit-animation-name: zoom;
          animation-name: zoom;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoom {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.modal .close {
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 10px 20% 0 70%;
}

.modal .close:hover,
.modal .close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 700px) {
  .modal .modal-content {
    width: 100%;
  }
}

.zoom {
  border-radius: 5px;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.zoom-out {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

header {
  padding: 36.5px 0;
  background: #474A51;
}

header .container {
  max-width: 80% !important;
}

header .navbar {
  padding: 0;
}

header .navbar .logo {
  height: 50px;
}

header .navbar .nav-link {
  color: #D3D3D3 !important;
}

header .navbar .nav-link:hover {
  color: white !important;
}

header .navbar .active > .nav-link {
  color: white !important;
}

header li {
  padding: 0 7px;
}

@media all and (max-width: 1250px) {
  header {
    font-size: 18px;
  }
  header .logo {
    height: 35px !important;
  }
  header .container {
    max-width: 100% !important;
  }
}

@media all and (max-width: 991px) {
  header .container {
    max-width: 80% !important;
  }
}

header button {
  background: none;
  color: white !important;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

.pro-profile .info {
  text-align: center;
  margin: 30px auto;
}

.pro-profile input {
  max-width: 300px;
  margin: auto;
}

.file-upload input[type="file"] {
  display: none;
}

.file-upload .custom-file-upload {
  font-size: 20px;
}

.file-upload .crop-image-button {
  font-size: 20px;
}

.file-upload .left {
  float: left;
}

.file-upload .sel-kind {
  margin: auto;
}

.detekce-pro #plant_name {
  width: 100%;
  max-width: 300px;
}

.detekce-pro img {
  max-width: 100%;
}

.detekce-neural .sel-kind {
  margin: 0 auto 30px auto;
}

.sensorie-select {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto;
  z-index: 10;
  float: left;
  margin: 20px 10px;
  /* Transition */
}

.sensorie-select select {
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 3px solid black;
  border-radius: 5px;
  margin: 0;
  display: block;
  width: 100%;
  padding: 12px 55px 15px 15px;
  font-size: 14px;
  color: black;
  cursor: pointer;
}

.sensorie-select select:hover {
  color: black;
  border-color: black;
}

.sensorie-select:after {
  position: absolute;
  right: 0;
  top: 6px;
  width: 50px;
  height: 100%;
  line-height: 38px;
  content: '\2228';
  text-align: center;
  color: black;
  font-size: 24px;
  pointer-events: none;
}

.sensorie-select:hover::after {
  color: black;
}

.sensorie-select option {
  padding: 20px 20px;
}

.custom-add-button {
  background: none;
  border: none;
  color: #228B22;
  margin: 10px;
}

.custom-add-button:hover {
  color: #39B54A;
}

.custom-btn-group {
  margin: 20px 0;
}

.sensorie-select-green select {
  border: 3px solid #228B22 !important;
  color: #228B22 !important;
}

.sensorie-select-green select:hover {
  color: green !important;
  border-color: green !important;
}

.sensorie-select-green:after {
  color: #228B22 !important;
}

.sensorie-select-green:hover::after {
  color: green !important;
}

.sensorie-select-orange select {
  border: 3px solid #FF6600;
  color: #FF6600;
}

.sensorie-select-orange select:hover {
  color: orange !important;
  border-color: orange !important;
}

.sensorie-select-orange:after {
  color: #FF6600;
}

.sensorie-select-orange:hover::after {
  color: orange !important;
}

.sensorie-select-red select {
  border: 3px solid #ed5565;
  color: #ed5565;
}

.sensorie-select-red select:hover {
  color: red !important;
  border-color: red !important;
}

.sensorie-select-red:after {
  color: #ed5565;
}

.sensorie-select-red:hover::after {
  color: red !important;
}

.custom-add-button {
  background: none;
  border: none;
  color: #228B22;
  margin: 10px;
}

.custom-add-button:hover {
  color: #39B54A;
}

.custom-btn-group {
  margin: 20px 0;
}

.custom-btn-group #auto-water {
  border-radius: 0 5px 5px 0;
}

#manual_selects {
  margin: 20px 0;
}

.icon {
  max-width: 30px;
  margin: auto;
  -webkit-filter: invert(56%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
          filter: invert(56%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
  display: block;
}

.faja {
  -webkit-filter: invert(66%) sepia(69%) saturate(2613%) hue-rotate(102deg) brightness(97%) contrast(87%);
          filter: invert(66%) sepia(69%) saturate(2613%) hue-rotate(102deg) brightness(97%) contrast(87%);
}

.help {
  margin-top: 40px;
}

.help #help-neural {
  float: right;
  font-size: 20px;
  font-weight: bold;
  display: block;
}

.help .help-text {
  background: #171717 !important;
  width: 100%;
  float: left;
  margin-top: 30px;
  border-radius: 10px;
  color: white;
}

.help .help-text img {
  display: block;
  margin: auto;
}

.help .help-text button {
  display: block;
  margin: auto;
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  width: 80%;
}

.help .help-text h3, .help .help-text p {
  padding: 15px;
}

.help .slideup, .help .slidedown {
  max-height: 0;
  padding: 0;
  overflow-y: hidden;
  -webkit-transition: max-height 0.5s ease-in-out;
  transition: max-height 0.5s ease-in-out;
}

.help .slidedown {
  max-height: 100%;
}

.customAlert, .infoPopup {
  display: none;
  position: fixed;
  width: 100%;
  max-width: 500px;
  min-width: 250px !important;
  height: auto;
  margin: auto;
  top: 100px;
  left: 0;
  right: 0;
  padding: 10px 30px 0 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #171717 !important;
  text-align: center;
  border-radius: 5px;
  z-index: 1000;
}

@media all and (max-width: 1300px) {
  .customAlert .message, .infoPopup .message {
    font-size: 14px !important;
  }
  .customAlert input[type='button'], .infoPopup input[type='button'] {
    height: 15% !important;
  }
}

.customAlert .message, .infoPopup .message {
  padding: 5px;
  color: white;
  line-height: 20px;
  text-align: justify;
}

.customAlert button, .infoPopup button {
  width: 50%;
  margin: 30px auto;
}

.customAlert img, .infoPopup img {
  margin: 30px auto 0 auto;
  display: block;
}

.rab {
  width: 200px;
  height: 30px;
  outline: 0;
  border: 0;
  color: white;
  background: #00D05B !important;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.infoPopup {
  padding: 20px auto;
  overflow: scroll;
  max-width: none !important;
  height: 300px;
  width: 80% !important;
  top: 20%;
  left: 20%;
}

.infoPopup input[type='button'] {
  left: auto;
  position: relative;
  margin: auto;
  padding: auto;
}

.infoPopup input[type='button']:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  background: darkGreen;
}

body {
  background: white;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 20px;
}

@media all and (max-width: 1109px) {
  body {
    font-size: 18px;
  }
}

.center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.error {
  color: red;
}

.success {
  color: green;
}

.hide {
  display: none;
}

.show {
  display: inline-block;
}

#reg-form .btn-green {
  width: 100% !important;
}

.block-bottom {
  padding-bottom: 30px;
}

.block-top {
  padding-top: 30px;
}
/*# sourceMappingURL=styles.css.map */