/*#region main variables*/
.clear {
  clear: both;
  content: '';
  display: table;
}
/*#endregion main variables*/
/*#region div templates*/
/*#endregion div templates*/
/*#region bootstrap-select*/
/*#endregon bootstrap-select*/

/*#region statusbar*/

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@-moz-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@-ms-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@-o-keyframes progress-bar-stripes {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 40px 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  overflow: hidden;
  height: 20px;
  margin-bottom: 20px;
  background-color: #f7f7f7;
  background-image: -moz-linear-gradient(top, whitesmoke, #f9f9f9);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(whitesmoke), to(#f9f9f9));
  background-image: -webkit-linear-gradient(top, whitesmoke, #f9f9f9);
  background-image: -o-linear-gradient(top, whitesmoke, #f9f9f9);
  background-image: linear-gradient(to bottom, whitesmoke, #f9f9f9);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.progress .bar {
  width: 0%;
  height: 100%;
  color: white;
  float: left;
  font-size: 12px;
  text-align: center;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #0e90d2;
  background-image: -moz-linear-gradient(top, #149bdf, #0480be);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
  background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
  background-image: -o-linear-gradient(top, #149bdf, #0480be);
  background-image: linear-gradient(to bottom, #149bdf, #0480be);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: width 0.6s ease;
  -moz-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}
.progress .bar + .bar {
  -webkit-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}
.progress-striped .bar {
  background-color: #149bdf;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  -webkit-background-size: 40px 40px;
  -moz-background-size: 40px 40px;
  -o-background-size: 40px 40px;
  background-size: 40px 40px;
}
.progress.active .bar {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -moz-animation: progress-bar-stripes 2s linear infinite;
  -ms-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}
.progress-danger .bar,
.progress .bar-danger {
  background-color: #dd514c;
  background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));
  background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: linear-gradient(to bottom, #ee5f5b, #c43c35);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0);
}
.progress-danger.progress-striped .bar,
.progress-striped .bar-danger {
  background-color: #ee5f5b;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-success .bar,
.progress .bar-success {
  background-color: #5eb95e;
  background-image: -moz-linear-gradient(top, #62c462, #57a957);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));
  background-image: -webkit-linear-gradient(top, #62c462, #57a957);
  background-image: -o-linear-gradient(top, #62c462, #57a957);
  background-image: linear-gradient(to bottom, #62c462, #57a957);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0);
}
.progress-success.progress-striped .bar,
.progress-striped .bar-success {
  background-color: #62c462;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-info .bar,
.progress .bar-info {
  background-color: #4bb1cf;
  background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));
  background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
  background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
  background-image: linear-gradient(to bottom, #5bc0de, #339bb9);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0);
}
.progress-info.progress-striped .bar,
.progress-striped .bar-info {
  background-color: #5bc0de;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-warning .bar,
.progress .bar-warning {
  background-color: #faa732;
  background-image: -moz-linear-gradient(top, #fbb450, #f89406);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
  background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
  background-image: -o-linear-gradient(top, #fbb450, #f89406);
  background-image: linear-gradient(to bottom, #fbb450, #f89406);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
}
.progress-warning.progress-striped .bar,
.progress-striped .bar-warning {
  background-color: #fbb450;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.fsz12 {
  font-size: 12px !important;
}
.fsz13 {
  font-size: 13px !important;
}
.fsz14 {
  font-size: 14px !important;
}
.z3 {
  z-index: 3 !important;
}
.fsz15 {
  font-size: 15px !important;
}
.fsz16 {
  font-size: 16px !important;
}
.fsz18 {
  font-size: 18px !important;
}
.fsz20 {
  font-size: 20px !important;
}
.fsz21 {
  font-size: 21px !important;
}
.fsz22 {
  font-size: 22px !important;
}
.fsz23 {
  font-size: 23px !important;
}
.fsz24 {
  font-size: 24px !important;
}
.fsz25 {
  font-size: 25px !important;
}
.fsz26 {
  font-size: 26px !important;
}
.fsz27 {
  font-size: 27px !important;
}
.fsz28 {
  font-size: 28px !important;
}
.fsz29 {
  font-size: 29px !important;
}
.fsz30 {
  font-size: 30px !important;
}
.fsz32 {
  font-size: 32px !important;
}
.fsz33 {
  font-size: 33px !important;
}
.fsz34 {
  font-size: 34px !important;
}
.fsz35 {
  font-size: 35px !important;
}
.fsz36 {
  font-size: 36px !important;
}
.fsz40 {
  font-size: 40px !important;
}
.fsz45 {
  font-size: 45px !important;
}
.fsz50 {
  font-size: 50px !important;
}
.fsz70 {
  font-size: 70px !important;
}
.fsz75 {
  font-size: 75px !important;
}
.fsz80 {
  font-size: 80px !important;
}
.fsz100 {
  font-size: 100px !important;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  color: #171b30;
}
.pr0 {
  padding-right: 0px;
}
.plr-40 {
  padding: 0 40px;
}
.blueGradient {
  background: #4ab9e9;
  background: -moz-linear-gradient(45deg, #4ab9e9 0%, #5ac3b9 100%);
  background: -webkit-linear-gradient(45deg, #4ab9e9 0%, #5ac3b9 100%);
  background: linear-gradient(45deg, #4ab9e9 0%, #5ac3b9 100%);
}
.orangeGradient {
  background: #f5634a;
  background: -moz-linear-gradient(-45deg, #f5634a 0%, #fbb885 100%);
  background: -webkit-linear-gradient(-45deg, #f5634a 0%, #fbb885 100%);
  background: linear-gradient(-45deg, #fbb885 0%, #f5634a 100%);
}
.greenGradient {
  background: #6cc57f;
  background: -moz-linear-gradient(-45deg, #6cc57f 0%, #9fcd5d 100%);
  background: -webkit-linear-gradient(-45deg, #6cc57f 0%, #9fcd5d 100%);
  background: linear-gradient(-45deg, #6cc57f 0%, #9fcd5d 100%);
}
.bluePurpleGradient {
  background: #6ac8ed;
  background: -moz-linear-gradient(45deg, #6ac8ed 0%, #8a3c6a 100%);
  background: -webkit-linear-gradient(45deg, #6ac8ed 0%, #8a3c6a 100%);
  background: linear-gradient(45deg, #6ac8ed 0%, #8a3c6a 100%);
}
.ionIcon {
  display: inline-block;
  font-family: "Ionicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.pointer {
  cursor: pointer;
}
.accept {
  color: black !important;
  cursor: default !important;
  text-transform: uppercase !important;
}
.doc-submit {
  line-height: 10px;
  display: inline-block;
  font-size: 33px !important;
  margin-top: 8px;
}
.t0 {
  top: 0px !important;
}
.mt0 {
  margin-top: 0px !important;
}
.mb0 {
  margin-bottom: 0px !important;
}
.mt90 {
  margin-top: 90px !important;
}
.mt140 {
  margin-top: 140px !important;
}
.mt50 {
  margin-top: 50px !important;
}
.ml20 {
  margin-left: 20px !important;
}
.ml15 {
  margin-left: 15px !important;
}
.alertTotal {
  color: #ff6969;
  background-color: white;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ie-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #ff6969;
  padding: 15px;
  margin: 0px 0 !important;
  color: #9e2d61 !important;
  background-color: #f3e3ee;
  border-color: #ebccd1;
  position: fixed;
  top: 125px;
  left: 0;
  right: 0;
  text-align: center;
  border: none;
  z-index: 2;
}
.alertTotal p:before {
  content: '-';
  padding-right: 5px;
  display: inline;
}
.alertTotal p + p {
  margin: 0px;
}
.alertTotal label {
  font-size: 17px;
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translate(0, -50%);
  text-transform: uppercase;
}
.alertTotal label i {
  padding: 0 10px;
  font-size: 26px !important;
  vertical-align: sub;
}
#body .inner-content-box {
  padding: 0 15px;
}
#ns-header #navigationBar {
  top: 73px;
  height: 55px;
}
#ns-header #navigationBar #eServices > a {
  padding: 15px 20px !important;
  height: 55px;
  background: transparent;
  line-height: 28px;
}
#ns-header #navigationBar #searchAbc > a {
  padding: 14px 20px !important;
  line-height: 29px;
  background: transparent !important;
}
#ns-header #navigationBar #mainMenuClick > a {
  height: 55px;
}
@media (min-width: 768px) {
  #ns-header .navbar-collapse.collapse {
    height: 55px !important;
  }
  #ns-header #categories_events .navbar-nav > li {
    height: 55px;
  }
  #ns-header #categories_events .navbar-nav > li > a {
    padding: 18px;
  }
}
#ns-header #topBar #getHelp > p span,
#ns-header #topBar #settings > p span {
  font-size: 15px;
  font-family: 'Mulish-Bold';
}
#ns-header #topBar #divEID #loginSso .user_not_logged_system {
  font-size: 15px;
  font-family: 'Mulish-Bold';
}
#ns-header #divEID {
  position: relative;
}
#ns-header #divEID .user_logged_system > a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
#ns-header #divEID .user_logged_system > ul li {
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ie-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  font-family: 'Mulish-Bold';
}
#ns-header #divEID .user_logged_system > ul li:hover {
  background: #edeff2;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ie-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#ns-header #divEID .user_logged_system .full_name_system:before {
  opacity: 0.5;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ie-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#ns-header #divEID .user_logged_system:hover > ul {
  display: block;
  top: 73px;
}
#ns-header #divEID .user_logged_system:hover .full_name_system:before {
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ie-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#ns-header .loginBar #userNotifications {
  position: absolute;
  top: 0px;
  width: initial;
  height: initial;
  left: -70px;
  bottom: 0;
  margin: auto 0;
  padding: 20px 20px;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ie-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#ns-header .loginBar #userNotifications:hover {
  background: transparent linear-gradient(120deg, #ffffff30 0%, #eaecf333 100%) 0% 0% no-repeat padding-box !important;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ie-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#ns-header .loginBar #userNotifications a {
  margin-left: 0;
}
#ns-header .loginBar #userNotifications a i {
  color: white;
  position: relative;
  width: 30px;
  height: 30px;
  display: block;
  top: 2px;
}
#ns-header .eIdMyProfile {
  position: relative;
  z-index: 1;
}
#ns-header .eIdMyProfile:before {
  content: '';
  background: transparent linear-gradient(120deg, #ffffff30 0%, #eaecf333 100%) 0% 0% no-repeat padding-box !important;
  position: absolute;
  top: -23px;
  left: -22px;
  right: -10px;
  bottom: -22px;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ie-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#ns-header .eIdMyProfile:hover:before {
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ie-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 767px) {
  .widgetSideRight {
    display: none;
  }
  .menuItemsWrapper {
    align-items: flex-start;
  }
}
#main_content {
  padding-top: 128px;
}
.full-content {
  padding: 30px 0 0;
}
.wrapperAdvancedSearch {
  margin-top: 20px;
}
.profileHeader h3 {
  margin-top: 15px;
}
.loader {
  top: 125px;
}
.loader:before {
  background-color: #38b2e6;
}
#mainMenuClick .no-service {
  opacity: 0.5;
  padding-left: 10px;
}
#ns-header #navigationBar #categories_events > #menuMain > .nav > li > .dropdown-menu.serviceMenu > li.active > a {
  background-color: #62ccfd4a;
  color: black;
}
#ns-header #navigationBar #categories_events > #menuMain > .nav > li > .dropdown-menu.serviceMenu > li.active > a:after {
  background-color: #62ccfd4a;
}
#ns-header #navigationBar #categories_events > #menuMain > .nav > li > .dropdown-menu.serviceMenu > li.open > a {
  background-color: #62ccfd4a;
  color: black;
}
#ns-header #navigationBar #categories_events > #menuMain > .nav > li > .dropdown-menu.serviceMenu > li.open > a:after {
  background-color: #62ccfd4a;
  color: black;
}
#ns-header #navigationBar #categories_events > #menuMain > .nav > li > .dropdown-menu.serviceMenu > li.active .dropdown-menu {
  -webkit-animation: fadeIn 0.5s;
  align-content: flex-start;
  align-items: stretch;
  animation: fadeIn 0.5s;
  background: transparent;
  display: flex;
  flex-wrap: wrap;
  overflow: auto;
}
@media (min-width: 1199px) {
  #ns-header #navigationBar #categories_events > #menuMain > .nav > li > .dropdown-menu.serviceMenu > li.active .dropdown-menu {
    padding-left: 20px;
  }
}
#ns-header #navigationBar #categories_events > #menuMain > .nav > li > .dropdown-menu.serviceMenu > li.active .dropdown-menu li {
  margin-bottom: 5px;
  min-height: auto;
}
#ns-header #navigationBar #categories_events > #menuMain > .nav > li > .dropdown-menu.serviceMenu > li.active .dropdown-menu li a {
  height: auto !important;
  padding: 0 10px 5px !important;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ie-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#ns-header #navigationBar #categories_events > #menuMain > .nav > li > .dropdown-menu.serviceMenu > li.active .dropdown-menu li a:after {
  display: none;
}
#ns-header #navigationBar #categories_events > #menuMain > .nav > li > .dropdown-menu.serviceMenu > li.active .dropdown-menu li a b {
  padding: 10px 0 0px;
}
#ns-header #navigationBar #categories_events > #menuMain > .nav > li > .dropdown-menu.serviceMenu > li.active .dropdown-menu li:hover a {
  background: #f0eff8 !important;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ie-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#ns-header #navigationBar #categories_events > #menuMain > .nav > li > .dropdown-menu.serviceMenu > li.active .dropdown-menu li b {
  font-size: 14px !important;
  padding: 10px 0 0;
}
#ns-header #navigationBar #categories_events > #menuMain > .nav > li > .dropdown-menu.serviceMenu > li.open .dropdown-menu {
  -webkit-animation: fadeIn 0.5s;
  align-content: flex-start;
  align-items: stretch;
  animation: fadeIn 0.5s;
  background: transparent;
  display: flex;
  flex-wrap: wrap;
}
#ns-header #navigationBar #categories_events > #menuMain > .nav > li > .dropdown-menu.serviceMenu > li.open .dropdown-menu li {
  margin-bottom: 5px;
  min-height: auto;
}
#ns-header #navigationBar #categories_events > #menuMain > .nav > li > .dropdown-menu.serviceMenu > li.open .dropdown-menu li a {
  height: 100% !important;
  padding: 0 10px 5px !important;
}
#ns-header #navigationBar #categories_events > #menuMain > .nav > li > .dropdown-menu.serviceMenu > li.open .dropdown-menu li a:after {
  display: none;
}
#ns-header #navigationBar #categories_events > #menuMain > .nav > li > .dropdown-menu.serviceMenu > li.open .dropdown-menu li a b {
  padding: 10px 0 0px;
}
#ns-header #navigationBar #categories_events > #menuMain > .nav > li > .dropdown-menu.serviceMenu > li.open .dropdown-menu li:hover a {
  background: #f0eff8 !important;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ie-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#ns-header #navigationBar #categories_events > #menuMain > .nav > li > .dropdown-menu.serviceMenu > li.open .dropdown-menu li b {
  font-size: 14px !important;
  padding: 10px 0 0;
}
#ns-header #navigationBar #categories_events > #menuMain > .nav > li > .dropdown-menu.serviceMenu > li.open .dropdown-menu,
#ns-header #navigationBar #categories_events > #menuMain > .nav > li > .dropdown-menu.serviceMenu > li .dropdown-menu {
  padding-top: 15px;
}
.advancedMainSearchWrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}
.advancedMainSearchWrapper .advWrap {
  padding: 10px 20px;
}
.advancedMainSearchWrapper .advWrap .entrance h3,
.advancedMainSearchWrapper .advWrap .inFocus h3 {
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 20px;
  font-size: 18px;
  font-family: 'Mulish-ExtraBold';
  padding-left: 10px;
}
.advancedMainSearchWrapper .advWrap .entrance h4,
.advancedMainSearchWrapper .advWrap .inFocus h4 {
  color: #11346f;
  font-family: 'Mulish-ExtraBold';
  font-size: 16px;
}
.advancedMainSearchWrapper .advWrap .entrance h4 img,
.advancedMainSearchWrapper .advWrap .inFocus h4 img {
  width: 35px;
}
.advancedMainSearchWrapper .advWrap .entrance .servicesBox,
.advancedMainSearchWrapper .advWrap .inFocus .servicesBox {
  padding: 10px;
}
.advancedMainSearchWrapper .advWrap .entrance .servicesBox ul,
.advancedMainSearchWrapper .advWrap .inFocus .servicesBox ul {
  list-style-type: disc;
  margin-left: 10px;
  padding-left: 10px;
}
.advancedMainSearchWrapper .advWrap .entrance .servicesBox ul li,
.advancedMainSearchWrapper .advWrap .inFocus .servicesBox ul li {
  padding-left: 10px;
  margin-bottom: 10px;
  padding-right: 50px;
  line-height: 1.3;
}
.advancedMainSearchWrapper .advWrap .entrance .servicesBox ul li a,
.advancedMainSearchWrapper .advWrap .inFocus .servicesBox ul li a {
  color: #171b30;
  font-size: 14px;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ie-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.advancedMainSearchWrapper .advWrap .entrance .servicesBox ul li a:hover,
.advancedMainSearchWrapper .advWrap .inFocus .servicesBox ul li a:hover {
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ie-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #11346f;
}
.advancedMainSearchWrapper .advWrap .inFocus h4 {
  padding: 10px;
}
.advancedMainSearchWrapper .advWrap .inFocus h4 img {
  width: 25px;
  margin-right: 5px;
}
.advancedMainSearchWrapper .advWrap .inFocus .fizichki h4 {
  color: #b02c84;
  background: rgba(176, 44, 132, 0.05) 0% 0% no-repeat padding-box;
}
.advancedMainSearchWrapper .advWrap .inFocus .pravni h4 {
  color: #10336e;
  background: rgba(16, 51, 110, 0.05) 0% 0% no-repeat padding-box;
}
.advancedMainSearchWrapper .advWrap .inFocus .servicesBox {
  padding-top: 0;
}
.advancedMainSearchWrapper .advWrap .inFocus .servicesBox ul {
  margin-left: 17px;
}
.advancedMainSearchWrapper .helper {
  padding: 20px;
  text-align: center;
}
.advancedMainSearchWrapper .advancedMainSearchFooter {
  background: transparent linear-gradient(180deg, #28477d14 0%, #3768bd00 100%) 0% 0% no-repeat padding-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 30px;
  align-items: center;
  font-size: 14px;
}
.advancedMainSearchWrapper .advancedMainSearchFooter .inFlex {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.advancedMainSearchWrapper .advancedMainSearchFooter .inFlex ul {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.advancedMainSearchWrapper .advancedMainSearchFooter .inFlex ul li a {
  color: #171b30;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ie-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.advancedMainSearchWrapper .advancedMainSearchFooter .inFlex ul li a:hover {
  color: #11346f;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ie-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.advancedMainSearchWrapper .advancedMainSearchFooter .inFlex ul li + li {
  border-left: 1px solid #cccccc;
  padding-left: 10px;
}
.titleFixed > div .language {
  display: flex;
  justify-content: flex-end;
  padding-right: 5px;
}
.titleFixed > div .language label {
  float: none;
}
.col-md-push-9 .dropMenu .btn-default {
  -webkit-box-shadow: none !important;
  -khtml-box-shadow: none !important;
  -moz-box-shadow: none !important;
  -ie-box-shadow: none !important;
  -o-box-shadow: none !important;
  -ms-box-shadow: none !important;
  box-shadow: none !important;
  padding: 15px 20px !important;
}
.col-md-push-9 .appsHead h4 {
  font-size: 14px !important;
  line-height: 21px;
  margin-top: 20px;
}
.serviceDetailsBox .serviceRequest {
  position: relative;
  margin-top: 0px;
}
.serviceDetailsBox .affixWrap {
  margin-top: 0;
}
.recoveryMail h4 {
  font-family: 'Mulish-ExtraBold';
  font-size: 17px;
}
.recoveryMail p {
  margin-bottom: 20px;
  font-size: 14px;
}
.recoveryMail .mb5 {
  margin-bottom: 5px;
  font-size: 15px;
}
.recoveryMail a {
  font-size: 14px;
}
#ns-header .loginBar .user_not_logged_system #userNotifications {
  display: none;
}
.appDetails .serviceStatus strong {
  background: #62ccfd4a;
  padding: 2px 10px;
  border-radius: 3px;
}
.wrapperWidget.newWidget:before {
  background: transparent linear-gradient(183deg, #db45f633 0%, #b02c84 100%) 0% 0% no-repeat padding-box;
}
.appDetails .appInstanceService li .fancyBox.waitDocument .bigIcon {
  font-size: 55px !important;
  opacity: 0.2;
  padding: 0px 15px;
  display: block;
}
.complain .modal-dialog,
.modal-dialog {
  background-size: 100% 105% !important;
  background-position: center center;
}
@media (max-width: 767px) {
  #institutions.tab-pane .container {
    padding: 0px;
  }
  #institutions.tab-pane .container .col-lg-12 {
    padding: 0px;
  }
  .mm-menu.mm-offcanvas {
    z-index: 111 !important;
    top: 117px;
  }
  .interactiveMap {
    padding-bottom: 0;
  }
  .interactiveMap .pagination {
    padding: 0px;
  }
}
.body-right .contentNow h3 {
  text-align: right;
  padding-right: 20px !important;
}
.body-right .contentNow h3 img {
  right: auto !important;
  left: 0px !important;
}
.body-right .contentNow .whiteBox img {
  right: auto;
  left: 20px;
}
.body-right .contactWrapper .cardText {
  text-align: right;
}
.body-right .contactWrapper .helpWrap a.askQuestionLink {
  float: right;
}
.body-right .applyNow .schema-form-radios .radio label span {
  left: auto;
  right: 69px;
  text-indent: 13px;
}
.body-center .applyNow .schema-form-radios .radio label span {
  left: auto;
  right: 50%;
  text-indent: 13px;
}
