/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
html,
body {
  margin: 0px;
  padding: 0px;
  height: 100%;
  width: 100%;
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  font-family: 'HelveticaNeue', Arial, Helvetica, sans-serif;
}
.body-bg-color {
  background-color: #95D3FF;
}
.login {
  background-color: #00bcd4;
  padding-top: 25px;
  min-height: 100%;
}
.login .login-image-holder {
  margin-bottom: 25px;
}
.login .login-image-holder img {
  display: inline;
}
.group {
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}
.group .label-form {
  color: #999;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: 0.4s ease all;
}
.group .bar {
  position: relative;
  display: block;
  width: 100%;
}
.group .bar:before {
  content: '';
  height: 2px;
  width: 0px;
  bottom: 1px;
  position: absolute;
  background: #00bcd4;
  transition: 0.2s ease all;
  left: 50%;
}
.group .bar:after {
  content: '';
  height: 2px;
  width: 0px;
  bottom: 1px;
  position: absolute;
  background: #00bcd4;
  transition: 0.2s ease all;
  right: 50%;
}
.group .highlight {
  position: absolute;
  height: 60%;
  width: 60%;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}
.group .input-form {
  padding: 10px 10px 10px 5px;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #757575;
}
.group .input-form:focus,
.group .input-form:valid {
  outline: none;
}
.group .input-form:focus ~ .label-form,
.group .input-form:valid ~ .label-form {
  top: -20px;
  color: #00bcd4;
}
.group .input-form:focus ~ .bar:before,
.group .input-form:focus ~ .bar:after {
  width: 50%;
}
.group .input-form:focus ~ .highlight {
  animation: inputHighlighter 0.3s ease;
}
@keyframes inputHighlighter {
  from {
    background: #00bcd4;
  }
  to {
    width: 0;
    background: transparent;
  }
}
.page-buttons {
  width: 120px;
  float: right;
  margin-right: 45px;
  height: 85px;
}
.ripple-holder {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  overflow: hidden;
  width: 100%;
}
.box-shade {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.box-shade:hover {
  box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}
.buton {
  position: relative;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  overflow: hidden;
  transition: all 0.3 ease-out;
  color: #FFFFFF;
  text-align: center;
  border: none;
  border-radius: 2px;
  height: 36px;
  line-height: 36px;
  text-transform: uppercase;
}
.buton-verde {
  background-color: #5EB221;
}
.buton-verde:hover {
  background-color: #49BA35;
  text-decoration: none;
  color: #ffffff;
}
.buton-rosu {
  background-color: #F72C2C;
}
.buton-rosu:hover {
  background-color: #BF2A2A;
  text-decoration: none;
  color: #ffffff;
}
.login-container {
  border-radius: 2px;
  background-color: #fff;
  box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21);
}
a {
  transition: all 0.5s ease;
}
.margin-top {
  margin-top: 20px;
}
div.logo-login {
  margin: 30px 0px 30px 0px;
}
.error {
  color: #ff0000;
}
.message-box {
  width: 100%;
  text-align: center;
  padding: 20px 0px;
  font-family: "Roboto";
  font-weight: 500;
}
.has-bg-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.success {
  color: #000000;
  background-color: #71BF60;
}
.error {
  color: #ffffff;
  background-color: #FF472A;
}
div.login-container {
  background-color: #ffffff;
  font-family: "Roboto";
  font-weight: 300;
  padding: 40px 40px 30px 40px;
  border-radius: 3px;
}
div.login-container h2 {
  color: #565656;
  margin: 0px 0px 35px 0px;
  font-weight: 300;
}
.form input[type=text],
.form input[type=password],
.form textarea,
.form select {
  background-color: #fcfcfc;
  border: 2px solid #e7e7e7;
  border-radius: 3px;
  display: block;
  margin: 0px auto 20px auto;
  padding: 15px;
  width: 100%;
}
.form input[type=submit],
.form input[type=button] {
  background: none repeat scroll 0 0 #3686be;
  border: 0 none;
  color: white;
  cursor: pointer;
  font-weight: 500;
  margin-bottom: 0;
  text-align: center
		transition: opacity 0.4s ease 0s;
  width: 100%;
  padding: 15px;
}
.form input[type=submit]:hover,
.form input[type=button]:hover {
  background-color: #272727;
  transition: background 0.1s ease 0s;
}
.form a {
  color: #bbb;
  text-decoration: underline;
}
.form a:hover {
  font-weight: 500;
}
.form #content-inline,
.form #content-inline-1 {
  width: 75%;
  display: inline;
}
.form #generate-code,
.form #generate-code-1 {
  display: inline;
  width: 24%;
  padding: 19px 16px 15px 17px;
}
.operation-title {
  display: inline;
  margin-bottom: 20px;
}
.beacon-color {
  width: 15px;
  height: 15px;
  border-radius: 15px;
  float: left;
  margin-right: 10px;
  margin-top: 3px;
}
.beacon-text-name {
  float: left;
}
.right-button {
  font-weight: 500;
  margin-bottom: 0;
  text-align: center;
  transition: opacity 0.4s ease 0s;
  padding: 8px;
  display: inline-block;
  float: right;
  cursor: pointer;
}
.cancel {
  background-color: #FF472A;
  color: #ffffff;
}
.cancel:hover {
  color: #ffffff;
  background-color: #FF2100;
  text-decoration: none;
}
.success {
  background-color: #82C872;
  color: #ffffff;
}
.success:hover {
  color: #ffffff;
  background-color: #71bf60;
  text-decoration: none;
}
.success-button {
  background: #82c872;
  color: #ffffff;
}
.success-button:hover {
  background-color: #71bf60;
  color: #ffffff;
  text-decoration: none;
}
div.sign-up {
  color: #4A6A7F;
  margin: 20px 0px;
}
div.sign-up a {
  font-weight: 700;
  color: #4A6A7F;
  text-decoration: underline;
}
div.sign-up a:hover {
  color: #ffffff;
}
.responsive-menu .secondary-button-container {
  height: 50px;
}
@media (min-width: 992px) {
  .responsive-menu .secondary-button-container {
    display: none;
  }
}
.responsive-menu .horizontal-menu {
  width: 100%;
  display: none;
}
@media (min-width: 992px) {
  .responsive-menu .horizontal-menu {
    display: inline-block;
  }
}
.responsive-menu .horizontal-menu li {
  display: block;
  padding: 10px;
}
@media (min-width: 992px) {
  .responsive-menu .horizontal-menu li {
    display: inline;
    padding: 0px;
  }
}
#show-menu {
  margin-top: 10px;
}
.lines-button {
  display: inline-block;
  padding: 1.25rem 0.625rem;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 0.35714286rem;
  background-color: transparent;
  border: 1px solid #B2B2B2;
  float: right;
  margin-right: 20px;
}
.lines-button:hover {
  opacity: 1;
}
.lines-button:active {
  -webkit-transition: all 0s ease-out;
  -moz-transition: all 0s ease-out;
  -o-transition: all 0s ease-out;
  transition: all 0s ease-out;
  background: rgba(0, 0, 0, 0.1);
}
.line {
  display: inline-block;
  width: 2.5rem;
  height: 0.35714286rem;
  background: #B2B2B2;
  border-radius: 0.17857143rem;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
}
.lines {
  display: inline-block;
  width: 2.5rem;
  height: 0.35714286rem;
  background: #B2B2B2;
  border-radius: 0.17857143rem;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  position: relative;
}
.lines:before,
.lines:after {
  display: inline-block;
  width: 2.5rem;
  height: 0.35714286rem;
  background: #B2B2B2;
  border-radius: 0.17857143rem;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  position: absolute;
  left: 0;
  content: '';
  -moz-transform-origin: 0.17857143rem center;
  -o-transform-origin: 0.17857143rem center;
  -webkit-transform-origin: 0.17857143rem center;
  transform-origin: 0.17857143rem center;
}
.lines:before {
  top: 0.625rem;
}
.lines:after {
  top: -0.625rem;
}
.lines-button:hover {
  opacity: 1;
}
.lines-button:hover .lines:before {
  top: 0.71428571rem;
}
.lines-button:hover .lines:after {
  top: -0.71428571rem;
}
.lines-button.x.close .lines {
  background: transparent;
  height: 50px;
}
.lines-button.x.close .lines:before,
.lines-button.x.close .lines:after {
  transform-origin: 50% 50%;
  top: 20px;
  width: 2.5rem;
}
.lines-button.x.close .lines:before {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  -moz-transform: rotate3d(0, 0, 1, 45deg);
  -o-transform: rotate3d(0, 0, 1, 45deg);
  -ms-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
}
.lines-button.x.close .lines:after {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  -moz-transform: rotate3d(0, 0, 1, -45deg);
  -o-transform: rotate3d(0, 0, 1, -45deg);
  -ms-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
}
.menu-closed {
  display: none !important;
}
@media (min-width: 992px) {
  .menu-closed {
    display: inline !important;
  }
}
.menu-opened {
  display: inline !important;
}
.header .navbar-fixed {
  height: 64px;
  position: relative;
  z-index: 998;
}
.header .navbar-fixed nav {
  position: fixed;
  color: #FFFFFF;
  width: 100%;
  height: 64px;
  line-height: 64px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.header .navbar-fixed nav .logo-holder {
  padding: 0px 15px;
  height: 100%;
  display: inline-block;
  min-width: 240px;
}
.header .navbar-fixed nav .right-menu-buttons {
  float: right;
  padding: 0px 15px;
  margin: 0px;
}
.header .navbar-fixed nav .right-menu-buttons li {
  float: left;
  padding: 0px;
  transition: backround-color 0.3 ease 0s;
  list-style-type: none;
  display: list-item;
  height: 64px;
  position: relative;
  overflow: hidden;
}
.header .navbar-fixed nav .right-menu-buttons li:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.header .navbar-fixed nav .right-menu-buttons a {
  color: #fff;
  padding: 0 15px;
  position: relative;
  overflow: hidden;
  line-height: 64px;
}
.header .navbar-fixed nav .right-menu-buttons a:hover {
  text-decoration: none;
}
.main {
  padding-left: 240px;
}
@media (max-width: 992px) {
  .main {
    padding-left: 0px;
  }
}
.main .wrapper .left-sidebar-nav {
  height: auto;
  position: fixed;
  width: 240px;
  z-index: 999;
  display: block;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  margin-left: -240px;
  bottom: 0px;
  top: 65px;
  left: 0px;
  overflow-y: scroll;
}
@media (min-width: 992px) {
  .main .wrapper .left-sidebar-nav {
    margin-left: 0px;
  }
}
.main .wrapper .left-sidebar-nav .user-details {
  background: rgba(0, 0, 0, 0) url("../img/img_admin/user-bg.jpg") no-repeat scroll center center / cover;
  padding: 15px 0 15px 15px;
  margin-bottom: 15px;
}
.main .wrapper .left-sidebar-nav .user-details .admin-details {
  margin: 0;
  padding: 0;
  text-shadow: 1px 1px 1px #444;
  text-transform: capitalize;
  color: #fff;
}
.main .wrapper .left-sidebar-nav .user-details #smaller-line-height {
  line-height: 25px;
  word-wrap: break-word;
  padding-right: 7px;
}
.main .wrapper .content-window .content-with-margin-top {
  margin-top: 20px;
}
.main .wrapper .content-window .content-holder .border-bottom {
  border-bottom: 5px solid #CECECE;
  padding-bottom: 5px;
}
.main .wrapper .content-window .content-holder .dashboard .text-center {
  margin-bottom: 15px;
}
.main .wrapper .content-window .header-page {
  background-color: #EEEEEE;
}
.main .wrapper .content-window .header-page .col-md-6 {
  height: 45px;
  line-height: 45px;
}
@media (min-width: 768px) {
  .main .wrapper .content-window .header-page .col-md-6 {
    height: 85px;
    line-height: 85px;
  }
}
.main .wrapper .content-window .header-page .col-md-6 a.btn {
  line-height: 85px;
  display: inline;
}
.analitice-toolbar {
  border-bottom: 2px solid #CECECE;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.analitice-toolbar input[type=text],
.analitice-toolbar select {
  width: 100%;
}
.select2-container .select2-selection--single {
  height: 35px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 34px;
}
.statistic-box {
  border: 1px solid #CECECE;
  border-radius: 4px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  min-height: 360px;
  padding: 5px;
}
.white-text {
  color: #FFFFFF;
}
.grey-bg {
  background-color: #607d8b;
}
.fb-blue {
  background-color: #3b5998;
}
.fb-like {
  background-color: #8b9dc3;
}
.g-plus {
  background-color: #dd4b39;
}
.light-green-bg {
  background-color: #83A300;
}
.purple-bg {
  background-color: #55024A;
}
.yellow-bg {
  background-color: #F6AA3D;
}
.turcuaz-bg {
  background-color: #00BCD4;
}
.turcuaz-bg .col-xs-6 {
  padding-left: 0px;
  padding-right: 0px;
}
.turcuaz-bg .page-title {
  font-size: 1.5rem;
  color: #000000;
  text-decoration: underline;
}
.white-bg {
  background-color: #FFFFFF;
}
.animate-menu-out {
  -webkit-animation: slide-out-from-left 0.45s linear;
  -moz-animation: slide-out-from-left 0.45s linear;
  -o-animation: slide-out-from-left 0.45s linear;
  animation: slide-out-from-left 0.45s linear;
  -webkit-animation-fill-mode: forwards;
  /*Chrome 16+, Safari 4+*/
  -moz-animation-fill-mode: forwards;
  /*FF 5+*/
  -o-animation-fill-mode: forwards;
  /*Not implemented yet*/
  -ms-animation-fill-mode: forwards;
  /*IE 10+*/
  animation-fill-mode: forwards;
}
@-webkit-keyframes slide-out-from-left {
  from {
    margin-left: -240px;
  }
  to {
    margin-left: 0px;
  }
}
@-moz-keyframes slide-out-from-left {
  from {
    margin-left: -240px;
  }
  to {
    margin-left: 0px;
  }
}
@-o-keyframes slide-out-from-left {
  from {
    margin-left: -240px;
  }
  to {
    margin-left: 0px;
  }
}
@keyframes slide-out-from-left {
  from {
    margin-left: -240px;
  }
  to {
    margin-left: 0px;
  }
}
.animate-menu-in {
  -webkit-animation: slide-out-to-left 1s linear;
  -moz-animation: slide-out-to-left 1s linear;
  -o-animation: slide-out-to-left 1s linear;
  animation: slide-out-to-left 1s linear;
  -webkit-animation-fill-mode: forwards;
  /*Chrome 16+, Safari 4+*/
  -moz-animation-fill-mode: forwards;
  /*FF 5+*/
  -o-animation-fill-mode: forwards;
  /*Not implemented yet*/
  -ms-animation-fill-mode: forwards;
  /*IE 10+*/
  animation-fill-mode: forwards;
}
@-webkit-keyframes slide-out-to-left {
  from {
    margin-left: 0px;
  }
  to {
    margin-left: -240px;
  }
}
@-moz-keyframes slide-out-to-left {
  from {
    margin-left: 0px;
  }
  to {
    margin-left: -240px;
  }
}
@-o-keyframes slide-out-to-left {
  from {
    margin-left: 0px;
  }
  to {
    margin-left: -240px;
  }
}
@keyframes slide-out-to-left {
  from {
    margin-left: 0px;
  }
  to {
    margin-left: -240px;
  }
}
.ink {
  display: block;
  position: absolute;
  background: #b8e0e0;
  border-radius: 100%;
  transform: scale(0);
}
.ink.animate {
  animation: ripple 0.65s linear;
  z-index: 200;
}
@keyframes ripple {
  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}
.horizontal-menu {
  margin: 0px 0px 20px 15px;
  padding: 10px 0px;
  overflow: hidden;
}
.horizontal-menu li {
  position: relative;
  overflow: hidden;
  list-style-type: none;
  display: inline;
}
.horizontal-menu li .selected {
  background-color: #444;
  color: #00BCD4;
}
.horizontal-menu li .selected:hover {
  background-color: #444;
  color: #FFFFFF;
}
.horizontal-menu li a {
  position: relative;
  overflow: hidden;
  padding: 10px 20px;
  color: #444444;
  user-select: none;
}
.horizontal-menu li a:hover {
  background-color: rgba(0, 0, 0, 0.05);
  text-decoration: none;
}
form .col-md-6,
form .col-md-12 {
  margin-bottom: 10px;
}
div.margin-top-content {
  margin-top: 50px;
}
@media (max-width: 768px) {
  div.margin-top-content {
    margin-top: 10px;
  }
}
div.general-options {
  margin-top: 30px;
}
div.general-options a {
  padding: 15px;
  background-color: #E2E2E2;
  margin-left: 15px;
  border-radius: 4px;
}
div.general-options a span {
  color: #B8B8B8;
}
div.general-options a:hover {
  background-color: #606060;
}
.mobile-header {
  margin-bottom: 20px;
}
.table-responsive {
  margin-top: 20px;
}
.table-responsive .table .delete {
  cursor: pointer;
}
@media (max-width: 768px) {
  .table-responsive .table {
    margin-top: 0px;
  }
}
.table-responsive .paid {
  background-color: #71BF60;
  color: #ffffff;
  padding: 5px;
  display: block;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}
.table-responsive .not-paid {
  background-color: #FF472A;
  color: #ffffff;
  padding: 5px;
  display: block;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}
.form-one-line div {
  display: inline;
  float: left;
  width: 24%;
  margin-right: 1%;
}
.form-one-line div input[type=text],
.form-one-line div input[type=submit],
.form-one-line div select {
  width: 100%;
  padding: 5px;
}
.form-one-line div select {
  padding: 7px;
}
.pagination {
  width: 100%;
  text-align: right;
}
.pagination a {
  margin: 0px 5px;
  padding: 5px 10px;
  border: 1px solid #CECECE;
  color: #000000;
}
.pagination a:hover {
  background-color: #e2e2e2;
  text-decoration: none;
  color: #FFFFFF;
}
.pagination b {
  margin: 0px 5px;
  padding: 5px 10px;
  background-color: #606060;
  color: #FFFFFF;
  border: 1px solid #CECECE;
}
.navbar-toggle {
  border: 1px solid #CECECE;
}
.navbar-toggle .icon-bar {
  color: #CECECE;
  background-color: #cecece;
}
.glyphicon.spinning {
  animation: spin 1s infinite linear;
  -webkit-animation: spin2 1s infinite linear;
}
@keyframes spin {
  from {
    transform: scale(1) rotate(0deg);
  }
  to {
    transform: scale(1) rotate(360deg);
  }
}
@-webkit-keyframes spin2 {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
.action-container {
  margin-top: 15px;
  border: 1px solid #fcfcfc;
  float: left;
  width: 100%;
}
.action-container h2 {
  margin-top: 0px;
  border-bottom: 1px solid #5A5A5A;
}
.action-content {
  display: none;
}
.extend-action,
.delete-action {
  cursor: pointer;
}
#add-action {
  margin-bottom: 15px;
}
.help-button {
  color: #248F8D;
  cursor: pointer;
}
.no-left-padding {
  padding-left: 0px;
}
.retrage,
.reda {
  cursor: pointer;
}
.bg-image {
  background-position: 50% 50%;
  background-size: cover;
}
.facebook-box {
  width: 100%;
  background-color: #f0f0f0;
  color: white;
  cursor: pointer;
}
.facebook-box .user-picture {
  height: 100px;
}
.facebook-box .user-picture .profile-image {
  margin-left: 15px;
  height: 90px;
  width: 90px;
  float: left;
}
.facebook-box .user-picture .img-circle {
  height: 90px;
  margin-top: 7px;
}
.facebook-box .user-picture .name {
  margin-top: 30px;
  color: #6C6C6C;
}
.facebook-box .facebook-details {
  height: 37px;
  background-color: #3a5795;
  color: white;
}
.facebook-box .facebook-details .total-vizite {
  float: left;
  margin-left: 10px;
}
.facebook-box .facebook-details .last-visit {
  float: right;
}
.facebook-box i {
  color: white;
  margin-top: 6px;
  padding-left: 5px;
}
.google-box {
  width: 100%;
  background-color: #f0f0f0;
  color: white;
  cursor: pointer;
}
.google-box .user-picture {
  height: 100px;
}
.google-box .user-picture .profile-image {
  margin-left: 15px;
  height: 90px;
  width: 90px;
  float: left;
}
.google-box .user-picture .img-circle {
  height: 90px;
  margin-top: 7px;
}
.google-box .user-picture .name {
  margin-top: 30px;
  color: #6C6C6C;
}
.google-box .facebook-details {
  height: 37px;
  background-color: #dd4b39;
  color: white;
}
.google-box .facebook-details .total-vizite {
  float: left;
  margin-left: 10px;
}
.google-box .facebook-details .last-visit {
  float: right;
}
.google-box i {
  color: white;
  margin-top: 6px;
  padding-left: 5px;
}
.no-padding {
  padding-left: 0px;
  padding-right: 0px;
}
.right-template {
  background-color: #ffffff;
  height: 100%;
  padding-top: 40px;
}
#facebook-template-data-container {
  display: none;
}
#parola-login-container {
  display: none;
}
.dz-message {
  width: 100%;
  float: left;
}
.dz-details {
  width: 135px;
  float: left;
}
.loading {
  width: 100%;
  height: 100%;
  position: absolute;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  /* IE 8 */
  filter: alpha(opacity=50);
  /* IE 5-7 */
  -moz-opacity: 0.5;
  /* Netscape */
  -khtml-opacity: 0.5;
  /* Safari 1.x */
  opacity: 0.5;
  background-color: #000000;
  z-index: 20000;
  top: 0px;
  left: 0px;
  display: none;
}
.ajax-loading {
  display: none;
}
.loading-icon {
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 60px;
}
.small-loading {
  color: #000000;
  font-size: 18px;
  display: none;
}
.white-spinner {
  font-size: 24px;
  color: #FFFFFF;
}
.dz-message {
  padding: 30px 15px;
  border: 1px dotted #CECECE;
}
.dz-message:hover {
  border: 1px solid #009926;
  background-color: #dff1ff;
}
.img-responsive {
  margin-top: 10px;
  margin-bottom: 10px;
}
.ordered-list li {
  list-style-type: none;
  text-align: left;
}
.ordered-list li a {
  color: #ffffff;
}
.flexigrid div.form-div input[type="text"],
.flexigrid div.form-div input[type="password"] {
  height: 38px;
}
.input-align-right {
  text-align: right;
}
.medium-input-width {
  width: 74px;
}
.large-input-width {
  width: 235px;
}
.small-input-width {
  width: 40px;
}
.delete-row-transformare {
  color: red;
  cursor: pointer;
}
.delete-row-transformare:hover {
  color: darkred;
}
.eroare {
  color: red;
}
.erori-pop-up-transformari {
  color: red;
  display: none;
}
.rezultat-final-popup-transformare {
  font-weight: bold;
  color: #0B3C75;
}
.loading {
  color: #ffffff;
  font-size: 56px;
}
.rand-intrare td {
  border-right: 1px solid #ddd;
  padding: 3px 3px;
}
.rand-intrare td:last-child {
  border-right: none;
}
.cantitate-complex {
  font-size: 11px;
}
.inputError {
  border: 1px solid red !important;
}
.removeValuta {
  color: red;
  cursor: pointer;
}
.form-control {
  height: 23px;
  font-size: 12px;
  padding: 0px 4px;
}
.input-group-addon {
  padding: 2px 12px;
}
.table tr th,
.table tr td {
  font-size: 12px;
}
.form-group {
  margin-bottom: 7px;
}
.margin-bottom5 {
  margin-bottom: 5px;
}
hr {
  margin-bottom: 5px;
  margin-top: 5px;
}
#totalVerificare,
#discountFacturaGeneral {
  width: 70px;
}
#tabel-produse-nir tr td,
#tabel-produse-nir tr th {
  font-size: 10px;
  padding: 2px;
}
.table-responsive {
  margin-top: 0px;
}
.info-not-allowed {
  position: absolute;
  z-index: 10;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  color: #FFFFFF;
  text-transform: uppercase;
}
