/*
################################################################
#     __                                                       #
#   /\__/\   @system: turtle 1.0                               #
#  /_/  \_\  @author: Krystian Kulik <krystian@itros.us>       #
#  \ \__/ /  @homepage: turtle-system.com                      #
#   \/__\/   @license: http://turtle-system.com/license.txt    #
#                                                              #
################################################################
*/
/* Base for label styling */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
  position: relative;
  cursor: pointer;
  height: 35px;
  margin-bottom: 0px;
  padding-left: 45px;
  line-height: 35px;
}
/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0px;
  width: 35px;
  height: 35px;
  border: 2px solid #efad4d;
  background: #fff;
  border-radius: 5px;
}
/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
  content: '✔';
  position: absolute;
  top: 6px;
  left: 6px;
  font-size: 28px;
  line-height: 0.8;
  color: #46b163;
  transition: all 0.2s;
}
/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #46b163;
}
[type="checkbox"]:disabled:checked + label:after {
  color: #999;
}
[type="checkbox"]:disabled + label {
  color: #aaa;
}
/* accessibility */
[type="checkbox"]:checked:focus + label:before,
[type="checkbox"]:not(:checked):focus + label:before {
  border: 2px solid #eb971e;
}
/* hover style just for information */
label:hover:before {
  border: 2px solid #eb971e !important;
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
html {
  width: 100%;
  height: 100%;
}
body {
  width: 100%;
  height: 100%;
  padding: 0px;
  margin: 0px;
  font-size: 14px;
  font-family: 'Exo 2', sans-serif;
  background: #fff;
}
ul {
  margin: 0px;
}
a {
  transition: color 0.3s;
  text-decoration: none!important;
  outline: none!important;
}
*:focus {
  outline: none!important;
}
.overlay {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
}
.overlay span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 195px;
  height: 195px;
  margin-left: -97px;
  margin-top: -97px;
}
.overlay span i {
  font-size: 200px;
  color: #fff;
}
.loginpage-top {
  width: 100%;
  height: 50%;
  background: #fff;
  position: relative;
}
.loginpage-top .logo {
  position: absolute;
  bottom: 33px;
  left: 50%;
  margin-left: 200px;
  width: 190px;
  margin-left: -95px;
  text-align: center;
}
.loginpage-top .logo img {
  display: block;
  width: 100%;
  margin: auto;
  max-width: 140px;
}
.loginpage-top .logo h1 {
  color: #1f4c2d;
  font-size: 30px;
  margin: 0px;
  font-size: 48px;
}
.loginpage-bottom {
  background: #1f4c2d;
  width: 100%;
  height: 50%;
  padding-top: 40px;
  font-size: 16px;
}
.loginpage-bottom .alert-danger {
  padding: 15px;
  background: #d72324;
  border: 0px;
  color: #fff;
  margin: auto;
  max-width: 600px;
  width: 100%;
  margin-bottom: 20px;
  box-shadow: none;
}
.loginpage-bottom .alert-success {
  margin: auto;
  max-width: 600px;
  width: 100%;
  margin-bottom: 20px;
}
.loginpage-bottom .login-form {
  width: 100%;
  max-width: 300px;
  margin: auto;
}
.loginpage-bottom .login-form .row-input {
  display: block;
  width: 100%;
  position: relative;
  margin-bottom: 15px;
}
.loginpage-bottom .login-form .row-input i {
  display: block;
  position: absolute;
  color: #1f4c2d;
  font-size: 20px;
  top: 10px;
  left: 15px;
}
.loginpage-bottom .login-form .row-input input {
  height: 40px;
  width: 100%;
  border-radius: 5px;
  padding-left: 40px;
  border: 3px solid #fff;
  color: #1f4c2d;
}
.loginpage-bottom .login-form .row-input input:focus {
  border: 3px solid #46b163;
  outline: none;
}
.loginpage-bottom .login-form .login-go {
  float: right;
  font-family: FontAwesome, 'Exo 2', sans-serif;
}
.loginpage-bottom .login-form .reset-password-link {
  color: #fff;
}
.loginpage-bottom .login-form .reset-password-link:hover {
  color: #46b163;
}
.menu-wrapper {
  width: 100%;
  height: 60px;
  background: #1f4c2d;
  position: relative;
  color: #fff;
}
.menu-wrapper .logo-menu {
  display: block;
  float: left;
  height: 60px;
  width: 80px;
  border-right: 1px solid #1a3e24;
}
.menu-wrapper .logo-menu img {
  max-height: 40px;
  display: block;
  margin: auto;
  margin-top: 10px;
}
.menu-wrapper .menu {
  width: calc(100% - 80px);
  float: left;
}
.menu-wrapper .menu .active {
  color: #fff;
  background: #46b163;
}
.menu-wrapper .menu .active i {
  color: #1f4c2d;
}
.menu-wrapper .menu ul {
  margin: 0px;
  padding: 0px;
}
.menu-wrapper .menu ul li {
  float: left;
  height: 60px;
  line-height: 60px;
  list-style: none;
  padding: 0px 15px;
  cursor: pointer;
  position: relative;
  border-right: 1px solid #1a3e24;
  font-size: 14px;
}
.menu-wrapper .menu ul li i {
  font-size: 28px;
  margin-right: 10px;
  color: #46b163;
  position: relative;
  top: 5px;
  transition: color 0.3s;
}
.menu-wrapper .menu ul li ul {
  display: none;
  position: absolute;
  top: 60px;
  left: 0px;
  width: 300px;
  background: #46b163;
  margin: 0px;
  padding: 0px;
  z-index: 100;
  border-radius: 0px 0px 5px 5px;
}
.menu-wrapper .menu ul li ul li {
  float: none;
  height: 40px;
  line-height: 40px;
  margin: 0px;
  font-size: 15px;
  padding: 0px;
  border-right: 0px;
}
.menu-wrapper .menu ul li ul li .active {
  background: #1f4c2d;
}
.menu-wrapper .menu ul li ul li a {
  color: #fff;
  background: none;
  display: block;
  width: 100%;
  height: 40px;
  border-bottom: 1px solid #7ec991;
  padding: 0px 20px;
}
.menu-wrapper .menu ul li ul li:nth-last-child(1) {
  border-radius: 0px 0px 5px 5px;
}
.menu-wrapper .menu ul li ul li:nth-last-child(1) a {
  border-bottom: 0px;
  border-radius: 0px 0px 5px 5px;
}
.menu-wrapper .menu ul li ul li:hover {
  background: #1f4c2d;
}
.menu-wrapper .menu ul li:hover {
  background: #46b163;
}
.menu-wrapper .menu ul li:hover i {
  color: #1f4c2d;
}
.menu-wrapper .menu-user {
  position: absolute;
  top: 0px;
  right: 0px;
  width: auto;
}
.menu-wrapper .menu-user ul li {
  border-right: 0px;
}
.menu-wrapper .menu-user ul li ul {
  left: auto;
  right: 0px;
}
.box-filter {
  margin-bottom: 30px;
}
.wrapper-faq-mini {
  display: flex;
}
.wrapper-faq-mini .col25 {
  width: calc(25% - 10px);
  margin-right: 10px;
}
.data-products {
  margin-bottom: 20px;
}
.data-products .row-head {
  display: flex;
  max-width: 1200px;
  font-weight: 600;
}
.data-products .row-head .col25 {
  width: calc(25% - 10px);
  margin-right: 10px;
}
.data-products .row-data {
  display: flex;
  max-width: 1200px;
  margin-bottom: 10px;
}
.data-products .row-data .col25 {
  width: calc(25% - 10px);
  margin-right: 10px;
}
.data-products .input-box {
  margin-bottom: 0!important;
}
.box-hide {
  display: none;
  padding-top: 20px;
}
.main-wrapper {
  padding: 30px;
}
.main-wrapper h1 {
  font-size: 30px;
  color: #46b163;
  margin-bottom: 30px;
  font-weight: 400;
}
.main-wrapper h3 {
  font-size: 20px;
  color: #252525;
  margin-bottom: 15px;
  font-weight: 400;
}
.main-wrapper .table-turtle {
  border-collapse: separate;
  border-spacing: 10px 0px;
  margin: 0px;
  padding: 0px;
  border: 0px;
  width: calc(100% + 20px) !important;
  margin-left: -10px;
  padding-top: 20px;
}
.main-wrapper .table-turtle thead tr td {
  border: 0px;
  border-bottom: 2px solid #b6ddc0;
  color: #204d2c;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 400;
  padding: 10px 5px;
  cursor: pointer;
}
.main-wrapper .table-turtle thead .sorting:after {
  font: normal normal normal 20px FontAwesome;
  content: '\f0dc';
  color: #46b163;
  opacity: 1;
  margin-left: 15px;
}
.main-wrapper .table-turtle thead .sorting_asc:after {
  font: normal normal normal 20px FontAwesome;
  content: '\f160';
  color: #46b163;
  opacity: 1;
  margin-left: 15px;
}
.main-wrapper .table-turtle thead .sorting_desc:after {
  font: normal normal normal 20px FontAwesome;
  content: '\f161';
  color: #46b163;
  opacity: 1;
  margin-left: 15px;
}
.main-wrapper .table-turtle tbody tr td {
  border-bottom: 1px solid #b6ddc0;
  padding: 10px 5px;
  font-size: 16px;
  color: #204d2c;
}
.main-wrapper .table-turtle tbody tr td:nth-last-child(1) {
  min-width: 230px;
}
.main-wrapper .table-turtle tbody tr:nth-child(even) {
  background: #f0f9f2;
}
.main-wrapper .table-turtle tbody tr:hover {
  background: #b6ddc0;
}
.main-wrapper .miniinfo {
  color: #0071b7;
  font-weight: bold;
  font-size: 12px;
}
.main-wrapper .dataTables_wrapper {
  padding-top: 20px;
}
.main-wrapper .dataTables_wrapper .dataTables_filter {
  float: right;
  width: 300px;
  text-align: right;
}
.main-wrapper .dataTables_wrapper .dataTables_filter i {
  background: #efad4d;
  display: block;
  float: left;
  color: #fff;
  height: 40px;
  width: 40px;
  text-align: center;
  font-size: 20px;
  line-height: 40px;
  border-radius: 5px 0px 0px 5px;
}
.main-wrapper .dataTables_wrapper .dataTables_filter input {
  height: 40px;
  border: 1px solid #b6ddc0;
  color: #1f4c2d;
  font-weight: 400;
  font-size: 16px;
  display: block;
  float: left;
  padding: 5px;
  border-radius: 0px 5px 5px 0px;
}
.main-wrapper .dataTables_wrapper .dataTables_filter input:focus {
  border-color: #efad4d;
}
.main-wrapper .dataTables_wrapper .dataTables_length {
  width: 215px;
  float: left;
  font-size: 16px;
  padding-left: 5px;
}
.main-wrapper .dataTables_wrapper .dataTables_length label {
  display: block;
  width: 100%;
  line-height: 40px;
  height: 40px;
  position: relative;
  margin-bottom: 10px;
  background: none;
  color: #46b163;
  font-weight: 400;
}
.main-wrapper .dataTables_wrapper .dataTables_length label select {
  width: 90px;
  cursor: pointer;
  float: right;
  line-height: 35px;
  height: 40px;
  padding-left: 5px;
  outline: none;
  border: 1px solid #b6ddc0;
  border-right: 0px;
  background: none;
  border-radius: 5px;
  -webkit-appearance: none;
}
.main-wrapper .dataTables_wrapper .dataTables_length label select:focus {
  border-color: #efad4d;
}
.main-wrapper .dataTables_wrapper .dataTables_length label:after {
  font: normal normal normal 20px FontAwesome;
  color: #fff;
  border-radius: 0px 5px 5px 0px;
  content: '\f078';
  position: absolute;
  background: #efad4d;
  text-align: center;
  border-left: 0px;
  pointer-events: none;
  top: 0px;
  right: 0px;
  line-height: 40px;
  width: 40px;
  height: 40px;
  font-size: 20px;
}
.main-wrapper .dataTables_wrapper .dataTables_info {
  padding-top: 20px;
  padding-left: 5px;
  color: #1f4c2d;
  font-size: 16px;
}
.main-wrapper .dataTables_wrapper .dataTables_paginate {
  margin-top: 30px;
  clear: both;
  height: 40px;
}
.main-wrapper .dataTables_wrapper .dataTables_paginate .paginate_button {
  display: block;
  width: 40px;
  height: 40px;
  float: left;
  line-height: 40px;
  text-align: center;
  color: #1f4c2d;
  cursor: pointer;
}
.main-wrapper .dataTables_wrapper .dataTables_paginate .current {
  font-weight: 600;
  background: #efad4d;
  color: #fff;
  border-radius: 5px;
}
.main-wrapper .dataTables_wrapper .dataTables_paginate .ellipsis {
  display: block;
  width: 40px;
  height: 40px;
  float: left;
  text-align: center;
  line-height: 40px;
}
.main-wrapper .dataTables_wrapper .dataTables_paginate .previous {
  background: #46b163;
  border-radius: 5px;
  color: #fff;
  margin-right: 5px;
  transition: background 0.3s;
}
.main-wrapper .dataTables_wrapper .dataTables_paginate .previous:hover {
  background: #1f4c2d;
}
.main-wrapper .dataTables_wrapper .dataTables_paginate .next {
  background: #46b163;
  border-radius: 5px;
  color: #fff;
  margin-left: 5px;
  transition: background 0.3s;
}
.main-wrapper .dataTables_wrapper .dataTables_paginate .next:hover {
  background: #1f4c2d;
}
.main-wrapper .nav-tabs {
  border-bottom: 1px solid #b6ddc0;
}
.main-wrapper .nav-tabs > li.active > a,
.main-wrapper .nav-tabs > li.active > a:focus,
.main-wrapper .nav-tabs > li.active > a:hover {
  color: #1f4c2d;
  border: 1px solid #b6ddc0;
  border-bottom-color: transparent;
  font-size: 16px;
}
.main-wrapper .nav-tabs > li > a {
  color: #1f4c2d;
  font-size: 16px;
}
.main-wrapper .nav-tabs > li > a:hover {
  background: #f0f9f2;
  border-color: #b6ddc0;
}
.main-wrapper .tab-content {
  padding: 20px 0px;
}
.main-wrapper .input-box {
  width: 100%;
  margin-bottom: 20px;
}
.main-wrapper .input-box .title {
  display: block;
  color: #1f4c2d;
  margin-bottom: 7px;
  font-size: 16px;
}
.main-wrapper .input-box .title .fa {
  font-size: 22px;
  margin-right: 5px;
}
.main-wrapper .input-box .title .mceEditor {
  height: 300px;
}
.main-wrapper .input-box .password_generated {
  display: block;
  margin-top: 5px;
  margin-bottom: 4px;
}
.main-wrapper .input-box .description3line,
.main-wrapper .input-box .description5line,
.main-wrapper .input-box input[type="text"],
.main-wrapper .input-box input[type="password"],
.main-wrapper .input-box input[type="email"],
.main-wrapper .input-box input[type="date"] {
  font-size: 16px;
  display: block;
  width: 100%;
  height: 40px;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid #b6ddc0;
  color: #1f4c2d;
}
.main-wrapper .input-box .description3line:focus,
.main-wrapper .input-box .description5line:focus,
.main-wrapper .input-box input[type="text"]:focus,
.main-wrapper .input-box input[type="password"]:focus,
.main-wrapper .input-box input[type="email"]:focus,
.main-wrapper .input-box input[type="date"]:focus {
  border-color: #efad4d;
}
.main-wrapper .input-box .description3line:-moz-read-only,
.main-wrapper .input-box .description5line:-moz-read-only,
.main-wrapper .input-box input[type="text"]:-moz-read-only,
.main-wrapper .input-box input[type="password"]:-moz-read-only,
.main-wrapper .input-box input[type="email"]:-moz-read-only,
.main-wrapper .input-box input[type="date"]:-moz-read-only {
  background: #dcdcdc;
}
.main-wrapper .input-box .description3line:read-only,
.main-wrapper .input-box .description5line:read-only,
.main-wrapper .input-box input[type="text"]:read-only,
.main-wrapper .input-box input[type="password"]:read-only,
.main-wrapper .input-box input[type="email"]:read-only,
.main-wrapper .input-box input[type="date"]:read-only {
  background: #dcdcdc;
}
.main-wrapper .input-box input[type="password"] {
  width: calc(100% - 185px) !important;
  border-right: 0px!important;
  border-radius: 5px 0px 0px 5px!important;
  float: left;
}
.main-wrapper .input-box .description3line {
  width: 100%;
  resize: none;
  height: 100px;
}
.main-wrapper .input-box .description5line {
  width: 100%;
  resize: none;
  height: 250px;
}
.main-wrapper .input-box .input-media {
  width: calc(100% - 185px) !important;
  border-right: 0px!important;
  border-radius: 5px 0px 0px 5px!important;
  float: left;
}
.main-wrapper .input-box .custom-select {
  display: block;
  width: 100%;
  line-height: 40px;
  height: 40px;
  position: relative;
  margin-bottom: 10px;
  background: none;
  color: #1f4c2d;
  font-weight: 400;
}
.main-wrapper .input-box .custom-select select {
  width: 100%;
  cursor: pointer;
  line-height: 40px;
  font-size: 16px;
  height: 40px;
  padding-left: 5px;
  outline: none;
  border: 1px solid #b6ddc0;
  border-right: 0px;
  background: none;
  border-radius: 5px;
  -webkit-appearance: none;
}
.main-wrapper .input-box .custom-select select:focus {
  border-color: #efad4d;
}
.main-wrapper .input-box .custom-select:after {
  font: normal normal normal 20px FontAwesome;
  color: #fff;
  border-radius: 0px 5px 5px 0px;
  content: '\f078';
  position: absolute;
  background: #efad4d;
  text-align: center;
  border-left: 0px;
  pointer-events: none;
  top: 0px;
  right: 0px;
  line-height: 40px;
  width: 40px;
  height: 40px;
  font-size: 20px;
}
.main-wrapper .input-box .custom-select-multiple {
  display: block;
  width: 100%;
  height: 250px;
  position: relative;
  margin-bottom: 10px;
  background: none;
  color: #1f4c2d;
  font-weight: 400;
}
.main-wrapper .input-box .custom-select-multiple select {
  width: 100%;
  cursor: pointer;
  line-height: 40px;
  font-size: 16px;
  height: 250px;
  padding-left: 5px;
  outline: none;
  border: 1px solid #b6ddc0;
  border-right: 0px;
  background: none;
  border-radius: 5px;
  -webkit-appearance: none;
}
.main-wrapper .input-box .custom-select-multiple select:focus {
  border-color: #efad4d;
}
.main-wrapper .goldbutton-submit {
  display: block;
  font-size: 16px;
  margin-right: 20px;
  line-height: 40px;
  display: inline-block;
  padding: 0px 20px;
  cursor: pointer;
  background: #efad4d;
  color: #fff;
  height: 40px;
  text-align: center;
  border: 0px;
  text-transform: uppercase;
  border-radius: 5px;
  transition: background 0.3s;
}
.main-wrapper .goldbutton-submit:hover {
  background: #eb971e;
}
.main-wrapper .goldbutton {
  display: block;
  font-size: 16px;
  margin-right: 20px;
  line-height: 40px;
  display: inline-block;
  padding: 0px 20px;
  cursor: pointer;
  background: #efad4d;
  color: #fff;
  height: 40px;
  text-align: center;
  border: 0px;
  text-transform: uppercase;
  border-radius: 5px;
  transition: background 0.3s;
}
.main-wrapper .goldbutton i {
  margin-left: 10px;
  position: relative;
  top: 1px;
}
.main-wrapper .goldbutton:hover {
  background: #eb971e;
}
.main-wrapper .greenbutton {
  display: block;
  font-size: 16px;
  line-height: 40px;
  display: inline-block;
  padding: 0px 20px;
  cursor: pointer;
  background: #7ec991;
  color: #fff;
  height: 40px;
  text-align: center;
  border: 0px;
  text-transform: uppercase;
  border-radius: 5px;
  transition: background 0.3s;
}
.main-wrapper .greenbutton i {
  margin-right: 10px;
  position: relative;
  top: 1px;
}
.main-wrapper .greenbutton:hover {
  background: #46b163;
}
.main-wrapper .bluebutton {
  display: block;
  font-size: 16px;
  line-height: 40px;
  display: inline-block;
  padding: 0px 20px;
  cursor: pointer;
  background: #0071b7;
  color: #fff;
  height: 40px;
  text-align: center;
  border: 0px;
  text-transform: uppercase;
  border-radius: 5px;
  transition: background 0.3s;
}
.main-wrapper .bluebutton i {
  margin-left: 10px;
  position: relative;
  top: 1px;
}
.main-wrapper .bluebutton:hover {
  background: #005284;
}
.main-wrapper .btn-action {
  display: block;
  float: left;
  margin-right: 10px;
  width: 50px;
  height: 35px;
  font-size: 24px;
  line-height: 37x;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  transition: background 0.3s;
  cursor: pointer;
  position: relative;
}
.main-wrapper .btn-action span {
  display: block;
  opacity: 0;
  width: 100px;
  position: absolute;
  left: 50%;
  margin-left: -50px;
  top: 0px;
  border-radius: 5px;
  height: 0px;
  line-height: 23px;
  transition: opacity 0.4s, top 0.4s;
  font-size: 16px;
  text-align: center;
  overflow: hidden;
}
.main-wrapper .btn-action span:before {
  content: "\f0d7";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  font-size: 28px;
  position: absolute;
  bottom: -14px;
  margin-left: -9px;
  left: 50%;
}
.main-wrapper .btn-action:hover span {
  opacity: 1;
  top: -40px;
  height: 25px;
  overflow: visible;
}
.main-wrapper .btn-gennpassword {
  background: #0071b7;
  display: block;
  float: left;
  width: 185px;
  height: 40px;
  font-size: 16px;
  border-radius: 0px 5px 5px 0px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  transition: background 0.3s;
  cursor: pointer;
  position: relative;
}
.main-wrapper .btn-gennpassword i {
  font-size: 18px;
  position: relative;
  top: 2px;
  margin-right: 12px!important;
}
.main-wrapper .btn-gennpassword:hover {
  background: #005284;
}
.main-wrapper .btn-del {
  background: #df4746;
}
.main-wrapper .btn-del span {
  background: #df4746;
}
.main-wrapper .btn-del span:before {
  color: #df4746;
}
.main-wrapper .btn-del:hover {
  background: #d72324;
}
.main-wrapper .btn-url {
  background: #0071b7;
  line-height: 38px;
}
.main-wrapper .btn-url span {
  background: #0071b7;
}
.main-wrapper .btn-url span:before {
  color: #0071b7;
}
.main-wrapper .btn-url:hover {
  background: #005284;
}
.main-wrapper .btn-duplicate {
  background: #46b163;
}
.main-wrapper .btn-duplicate span {
  background: #46b163;
}
.main-wrapper .btn-duplicate span:before {
  color: #46b163;
}
.main-wrapper .btn-duplicate:hover {
  background: #7ec991;
}
.main-wrapper .btn-edit {
  background: #efad4d;
  line-height: 37px;
}
.main-wrapper .btn-edit span {
  background: #efad4d;
}
.main-wrapper .btn-edit span:before {
  color: #efad4d;
}
.main-wrapper .btn-edit:hover {
  background: #eb971e;
}
.main-wrapper .btn-see {
  background: #ff6600;
}
.main-wrapper .btn-see span {
  background: #ff6600;
}
.main-wrapper .btn-see span:before {
  color: #ff6600;
}
.main-wrapper .btn-see:hover {
  background: #cc5200;
}
.main-wrapper .text-file-edit {
  width: 100%;
  height: 500px;
  font-size: 16px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #b6ddc0;
  color: #1f4c2d;
}
.main-wrapper .text-file-edit:focus {
  border-color: #efad4d;
}
.main-wrapper .text-file-edit-mini {
  height: 200px;
}
.main-wrapper .buttom-media {
  width: 185px;
  background: #efad4d;
  float: right;
  border-radius: 0px 5px 5px 0px;
  margin-right: 0px;
}
.main-wrapper .buttom-media i {
  font-size: 20px;
}
.main-wrapper .second-row td:nth-child(1) {
  padding-left: 20px!important;
}
.main-wrapper .three-row td:nth-child(1) {
  padding-left: 40px!important;
}
.main-wrapper .four-row td:nth-child(1) {
  padding-left: 60px!important;
}
.main-wrapper .five-row td:nth-child(1) {
  padding-left: 80px!important;
}
.main-wrapper #map {
  width: 100%;
  height: 400px;
}
.btn-danger {
  background: #df4746;
  transition: background 0.3s;
  border: 0px;
}
.btn-danger:hover {
  background: #d72324;
}
.alert-fixed {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 9999;
  width: 800px;
}
/* ==========================================================================
   Media Queries
   ========================================================================== */
/* ==========================================================================
   Helper classes
   ========================================================================== */
.hidden {
  display: none !important;
  visibility: hidden;
}
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
.invisible {
  visibility: hidden;
}
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  *zoom: 1;
}
/* ==========================================================================
   Print styles
   ========================================================================== */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
/*# sourceMappingURL=main.css.map */