﻿@font-face {
  font-family: RobotoRegular;
  src: url("/common/font/Roboto/Roboto-Regular.ttf") format("opentype");
}
@font-face {
  font-family: RobotoCondensedBold;
  src: url("/common/font/Roboto_Condensed/RobotoCondensed-Bold.ttf")
    format("opentype");
}

body {
  height: 100vh;
  font-family: RobotoRegular;
  color: #161c21;
  font-size: 15px;
}
.login {
  background-size: auto;
  height: 100%;
  background-size: 100%;
}
a {
  color: rgba(22, 28, 33, 1);
}
a:hover {
  color: rgba(22, 28, 33, 0.71);
  text-decoration: none;
}

/* STRUCTURE LOGIN */
.wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 20px;
}
#formContent {
  max-width: 450px;
  position: relative;
  top: 50%;
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
#formContent p {
  font-family: RobotoRegular;
  font-size: 20px;
  color: #161c21;
  font-weight: 300;
}
/* TABS */
h2 .inactive {
  color: #cccccc;
}
h2.active {
  color: #0d0d0d;
  border-bottom: 2px solid #5fbae9;
}
#login_error {
  margin-top: 6%;
  color: #bc201a;
  font-size: 125%;
  font-family: RobotoCondensedBold;
  letter-spacing: 1.3px;
  padding: 15px 12%;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -ms-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
#login_error.visible {
  opacity: 1;
}
#login_change_lang > span,
#login_change_lang > div {
  display: inline-block;
}

/* FORM TYPOGRAPHY*/
input[type="button"],
input[type="submit"],
input[type="reset"] {
  background-color: #c9c9c9; /*border: none;*/
  border: 0;
  color: #161c21;
  padding: 15px 12%;
  margin-top: 6%;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 22px;
  -webkit-box-shadow: 0 10px 30px 0 rgba(201, 201, 201, 0.4);
  box-shadow: 0 10px 30px 0 rgba(201, 201, 201, 0.4);
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-family: RobotoCondensedBold;
}
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover {
  background-color: #c9c9c9;
}
input[type="button"]:active,
input[type="submit"]:active,
input[type="reset"]:active {
  -moz-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -o-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
input[type="number"],
input[type="text"],
input[type="password"] {
  background-color: #e8e8ed; /*border: none;*/
  border: 0;
  border-bottom: 2px solid transparent;
  color: #0d0d0d;
  padding: 26px 60px;
  text-align: left;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 7% 5px;
  width: 85%;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}
input[type="number"]:focus,
input[type="text"]:focus,
input[type="password"]:focus {
  background-color: #fff;
  border-bottom: 2px solid #bc201a;
}
input[type="number"]:placeholder,
input[type="text"]:placeholder,
input[type="password"]:placeholder {
  color: #cccccc;
}
.login input[type="text"],
.login input[type="password"] {
  text-transform: none;
}

/* ********************
***** ANIMATIONS ******
******************** */

.loading {
  display: block;
  border: 2px solid #9095ad;
  border-radius: 50%;
  border-top: 2px solid #bc201a;
  width: 15px;
  height: 15px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  font-size: 0px !important;
}
.loading.inline {
  display: inline-block;
}
.loading.right {
  margin-left: auto;
}
.loading.big {
  border: 10px solid #9095ad;
  border-top: 10px solid #bc201a;
  width: 120px;
  height: 120px;
  margin: 5% auto;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadePrev {
  -webkit-animation-name: fadePrev;
  animation-name: fadePrev;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadePrev {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-moz-keyframes fadePrev {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadePrev {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeNext {
  -webkit-animation-name: fadeNext;
  animation-name: fadeNext;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeNext {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-moz-keyframes fadeNext {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeNext {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* Picker Revolver Animation */
@-webkit-keyframes fadeInPickersExt {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.3;
  }
}

@-moz-keyframes fadeInPickersInt {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 0.6;
  }
}

@keyframes fadeInPickersCent {
  from {
    opacity: 0.7;
  }
  to {
    opacity: 1;
  }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Open Street Map animation */
@-webkit-keyframes fadeAppear {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@-moz-keyframes fadeAppear {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes fadeAppear {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

/* Download buttons animation */
@-webkit-keyframes downloadBounce {
  25% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  75% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@-moz-keyframes downloadBounce {
  25% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  75% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes downloadBounce {
  25% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  75% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

/* Go Back Animation */
@-webkit-keyframes pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  50% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  75% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  50% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  75% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  50% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  75% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.fadeIn {
  opacity: 0;
  -webkit-animation: fadeIn ease-in 0.6s;
  -moz-animation: fadeIn ease-in 0.6s;
  animation: fadeIn ease-in 0.6s;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 0.6s;
  -moz-animation-duration: 0.6s;
  animation-duration: 0.6s;
}
.fadeIn.first {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.fadeIn.second {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.fadeIn.third {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.fadeIn.fourth {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}
.fadeIn.fifth {
  -webkit-animation-delay: 1.2s;
  -moz-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
  display: block;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #56baed;
  content: "";
  -webkit-transition: width 0.2s;
  -moz-transition: width 0.2s;
  -ms-transition: width 0.2s;
  -o-transition: width 0.2s;
  transition: width 0.2s;
}

@keyframes move_wave {
  0% {
    transform: translateX(0) translateZ(0) scaleY(1);
  }
  50% {
    transform: translateX(-25%) translateZ(0) scaleY(0.55);
  }
  100% {
    transform: translateX(-50%) translateZ(0) scaleY(1);
  }
}
.underlineHover:hover {
  color: #0d0d0d;
}
.underlineHover:hover:after {
  width: 100%;
}

/* OTHERS */
*:focus {
  outline: none;
}
.login .container-fluid,
.login .row {
  height: 100%;
}
#login-left {
  background: rgb(188, 32, 26);
  background: linear-gradient(20deg, rgba(188, 32, 26, 1) 35%, #3e0d0d 100%);
  height: 100%;
}
#login-left #logo {
  position: absolute;
  top: 26.7%;
  left: 50%;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 90%;
  max-width: 542px;
  z-index: 1;
}
#login-left #caetec {
  position: absolute;
  bottom: 1.4%;
  left: 50%;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#login-right .wave-content,
#login-right #logo_form_mobile,
#login-right #logo_form_mobile_cae {
  display: none;
}
#login-right #logo_form_mobile {
  position: absolute;
  top: 12.5%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 249px;
  z-index: 1;
}
#login-right #logo_form_mobile_cae {
  position: absolute;
  top: 25%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 63px;
  z-index: 1;
  right: -2.5%;
}
#login_change_lang {
  display: block;
  position: absolute;
  bottom: 1.4%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: rgba(22, 28, 33, 1);
  font-size: 12px;
  line-height: 13px;
}
#login_change_lang a {
  color: rgba(255, 255, 255, 1);
  font-size: 13px;
  line-height: 14px;
  border-radius: 1rem;
  padding: 5px 15px;
  margin-left: 5px;
  background-color: rgba(155, 27, 23, 1);
  -webkit-transition: background-color 0.6s, color 0.6s;
  -moz-transition: background-color 0.6s, color 0.6s;
  -ms-transition: background-color 0.6s, color 0.6s;
  -o-transition: background-color 0.6s, color 0.6s;
  transition: background-color 0.6s, color 0.6s;
}
#login_change_lang a:hover,
#login_change_lang a:focus,
#login_change_lang a:active {
  background-color: rgba(155, 27, 23, 0.81);
  color: rgba(255, 255, 255, 0.85);
  -webkit-transition: background-color 0.6s, color 0.6s;
  -moz-transition: background-color 0.6s, color 0.6s;
  -ms-transition: background-color 0.6s, color 0.6s;
  -o-transition: background-color 0.6s, color 0.6s;
  transition: background-color 0.6s, color 0.6s;
  text-decoration: none;
  outline: 0;
}
.wave-content {
  overflow: hidden;
  height: 100%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.wave {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  left: 0;
  animation: move-wave 3s;
  -webkit-animation: move-wave 3s;
  width: 334.793%;
  background-size: 100% !important;
}
@keyframes wave1 {
  0% {
    left: -60%;
  }
  100% {
    left: -88%;
  }
}
@keyframes wave2 {
  0% {
    left: -16.9%;
  }
  100% {
    left: -68.9%;
  }
}
@keyframes wave3 {
  0% {
    left: -187%;
  }
  100% {
    left: -126%;
  }
}
@keyframes wave4 {
  0% {
    left: -150%;
  }
  100% {
    left: -84.4%;
  }
}
#wave1 {
  background: url("/common/img/wave1.svg") no-repeat;
  left: -88%;
  bottom: -34%;
  animation: wave1 4s alternate;
}
#wave2 {
  background: url("/common/img/wave2.svg") no-repeat;
  bottom: -31.7%;
  left: -68.9%;
  animation: wave2 4s;
}
#wave3 {
  background: url("/common/img/wave3.svg") no-repeat;
  left: -126%;
  bottom: -46.4%;
  animation: wave3 6s;
}
#wave4 {
  background: url("/common/img/wave2.svg") no-repeat;
  left: -84.4%;
  bottom: -57.8%;
  animation: wave4 4s;
}
#formContent {
  text-align: center;
}
#top_menu.navbar {
  padding: 25px 0.62125%;
  background: #fff;
  border: none;
  border-radius: 0;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  height: 106px;
}
.line {
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #ddd;
  margin: 40px 0;
}

/* *****************************************************
********************** SIDEBAR *************************
***************************************************** */

#compact_version {
  position: absolute;
  bottom: 5px;
  left: 10px;
  font-size: 11px;
  letter-spacing: 1.3px;
  z-index: 0;
  color: rgba(255, 255, 255, 0.91);
}

a.user-manual {
  background-image: url("/common/img/ico-usermanual.png");
  background-size: 30px 30px;
  background-repeat: no-repeat;
  background-position: center;
  height: 35px;
  width: 35px;
}

.wrapper {
  display: flex;
  width: 100%;
}
#sidebar {
  width: 293px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 999; /*background: url(/common/img/caetec.svg) no-repeat #BC201A center 93%;*/
  background: #bc201a;
  color: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#sidebar .mCSB_container {
  z-index: 1;
}
#sidebar #cae_logo {
  padding-bottom: 1%;
  background-color: #bc201a;
}
#sidebar #cae_logo > img {
  display: block;
  margin: 0 auto 2.5%;
}
.sidemenu-mobile-obj {
  display: none;
}
#sidebar #caetec {
  position: absolute;
  bottom: 1.4%;
  left: 50%;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#logo-sidebar {
  max-width: 228px;
  width: 100%;
}
#sidebar #logo-tec {
  position: absolute;
  left: 50%;
  bottom: 0;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#sidebar.active {
  margin-left: -293px;
}
#sidebar .sidebar-header {
  padding: 35px 36px 16px 29px;
}
#sidebar ul.components {
  padding: 10px 0 20px;
}
#sidebar ul.components {
  background: #bc201a;
  margin-bottom: 0;
}
#sidebar ul p {
  color: #fff;
  padding: 10px;
}
#sidebar ul li a {
  position: relative;
  padding: 18px 10px 18px 17.12222%;
  font-size: 16px;
  display: block;
  background: rgba(67, 66, 93, 0.12);
  color: #fff;
  margin-bottom: 7px;
  text-transform: uppercase;
  background-repeat: no-repeat;
  background-position: 9.125%;
  -webkit-transition: background-color 0.4s;
  -moz-transition: background-color 0.4s;
  -ms-transition: background-color 0.4s;
  -o-transition: background-color 0.4s;
  transition: background-color 0.4s;
  background-size: 25px 25px;
}
#sidebar ul li a.disabled {
  opacity: 0.51;
  cursor: not-allowed;
}
#sidebar ul li ul li a {
  padding: 13px 10px 11px 28%;
  background-repeat: no-repeat;
  background-position: 12.5555%;
  font-size: 14px;
  line-height: 16px;
}
#sidebar ul li a.dropdown-toggle {
  margin-bottom: 5px;
}
#sidebar ul li a span {
  padding-left: 12.5px;
}
#sidebar ul li a#sidemenu_info {
  background-image: url("/common/img/ico-info.svg");
}
#sidebar ul li a#sidemenu_data {
  background-image: url("/common/img/ico-data.svg");
}
#sidebar ul li a#sidemenu_media {
  background-image: url("/common/img/ico-media.svg");
}

#sidebar ul li a#sidemenu_config {
  background-image: url("/common/img/ico-config.svg");
}

#sidebar ul li a#sidemenu_measures {
  background-image: url("/common/img/ico-measures.svg");
}
#sidebar ul li a#sidemenu_service {
  background-image: url("/common/img/ico-service.svg");
}
#sidebar ul li a#sidemenu_service_dateTime {
  background-image: url("/common/img/ico-dataora.svg");
}
#sidebar ul li a#sidemenu_service_diagnostic {
  background-image: url("/common/img/ico-diagnostic.svg");
}
#sidebar ul li a#sidemenu_service_status {
  background-image: url("/common/img/ico-status.svg");
}
#sidebar ul li a#sidemenu_service_sysLog {
  background-image: url("/common/img/ico-syslog.svg");
}
#sidebar ul li a#sidemenu_service_modemLog {
  background-image: url("/common/img/ico-modlog.svg");
}
#sidebar ul li a#sidemenu_service_wifi {
  background-image: url("/common/img/ico-wifi-on-new.svg");
}
#sidebar ul li a#sidemenu_service_wifi.wiFiOff {
  background-image: url("/common/img/ico-wifi-off-new.svg");
}
#sidebar ul li a#sidemenu_service_download {
  background-image: url("/common/img/ico-download-data.png");
}
#sidebar ul li a#sidemenu_maintenance {
  background-image: url("/common/img/ico-maintenance.svg");
}
#sidebar ul li a#sidemenu_maintenance_hydrometerAlignment {
  background-image: url("/common/img/ico-hydrometer.svg");
}
#sidebar ul li a#sidemenu_maintenance_gaugeClean {
  background-image: url("/common/img/ico-rainclean.svg");
}
#sidebar ul li a#sidemenu_maintenance_gaugeReset {
  background-image: url("/common/img/ico-rainreset.svg");
}
#sidebar ul li a#sidemenu_maintenance_maintenanceMode {
  background-image: url("/common/img/ico-mainmode.svg");
}
#sidebar ul li a#sidemenu_maintenance_reebot {
  background-image: url("/common/img/ico-reebot.svg");
}
#sidebar ul li a#sidemenu_maintenance_shutdown {
  background-image: url("/common/img/ico-shutdown.svg");
}
#sidebar ul li a#sidemenu_account_logout {
  background-image: url("/common/img/ico-account.svg");
}
#sidebar ul li a#sidemenu_languages {
  background-image: url("/common/img/ico-language.svg");
}
#sidebar ul li a#sidemenu_language {
  background-image: url("/common/img/ico-language.svg");
}
#sidebar ul li a[aria-expanded="true"],
#sidebar ul li a:hover,
#sidebar ul li a.active {
  background-color: rgba(155, 27, 23, 1);
  text-decoration: none;
  -webkit-transition: background-color 0.4s;
  -moz-transition: background-color 0.4s;
  -ms-transition: background-color 0.4s;
  -o-transition: background-color 0.4s;
  transition: background-color 0.4s;
}
#sidebar ul li a[aria-expanded="true"]:after {
  -moz-transform: translateY(-50%) rotate(180deg);
  -webkit-transform: translateY(-50%) rotate(180deg);
  -o-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
  -webkit-transition: transform 0.6s;
  -moz-transition: transform 0.6s;
  -ms-transition: transform 0.6s;
  -o-transition: transform 0.6s;
  transition: transform 0.6s;
}
#sidebar ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 60px;
  background: #fff;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
#sidebar ul li a[aria-expanded="true"]::before,
#sidebar ul li a:hover::before,
#sidebar ul li a.active::before {
  opacity: 1;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
#sidebar ul li ul li a::before {
  height: 40px;
}
#sidebar ul li.active > a[aria-expandend="true"] {
  background-color: rgba(155, 27, 23, 1);
}
#sidemenu_maintenance_submenu,
#sidemenu_service_submenu {
  margin-left: 32px;
}
a[data-toggle="collapse"] {
  position: relative;
}
.dropdown-toggle::after {
  border: 0;
  vertical-align: 0.125em;
  margin-left: 0.5em;
  background: url("/common/img/ico-dd-small-dark.svg") center no-repeat;
  width: 13.5px;
  height: 8.5px;
  -webkit-transition: transform 0.4s, background 0.2s;
  -moz-transition: transform 0.4s, background 0.2s;
  -ms-transition: transform 0.4s, background 0.2s;
  -o-transition: transform 0.4s, background 0.2s;
  transition: transform 0.4s, background 0.2s;
}
.dropdown-toggle:hover::after {
  background: url("/common/img/ico-dd-small.svg") center no-repeat;
}
.dropdown-toggle[aria-expanded="true"]::after {
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  background: url("/common/img/ico-dd-small-dark.svg") center no-repeat;
}
#sidebar .dropdown-toggle::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url("/common/img/ico-dd-small-white.svg") center no-repeat;
  width: 11px;
  height: 7px;
}
ul.CTAs {
  padding: 20px;
}
ul.CTAs a {
  text-align: center;
  font-size: 0.9em !important;
  display: block;
  border-radius: 5px;
  margin-bottom: 5px;
}
a.download {
  background: #fff;
  color: #7386d5;
}
a.article,
a.article:hover {
  background: #6d7fcc !important;
  color: #fff !important;
}

/* *****************************************************
********************** NAVBAR TOP **********************
***************************************************** */
.info-station-mobile,
.info-time-mobile,
#logo_top_mobile {
  display: none;
  text-align: center;
  color: #bc201a;
  font-size: 18px;
  line-height: 21px;
  font-weight: 400;
  text-transform: uppercase;
  -webkit-transition: display 0.6s;
  -moz-transition: display 0.6s;
  -ms-transition: display 0.6s;
  -o-transition: display 0.6s;
  transition: display 0.6s;
}
#sidebarCollapse.btn {
  box-shadow: none;
  outline: none !important;
  border: none;
}
#sidebar.active #sidebarCollapse {
  background: url(/common/img/ico-arrow-right.svg) center no-repeat #bc201a;
  left: 0;
  background-size: 15px 15px;
  outline: 0;
  -webkit-transition: left 0.4s;
  -moz-transition: left 0.4s;
  -ms-transition: left 0.4s;
  -o-transition: left 0.4s;
  transition: left 0.4s;
  position: fixed;
  top: 40px;
  border-radius: 0 12px 12px 0;
  padding: 14px 19px;
}
#sidebarCollapse {
  position: absolute;
  top: 8px;
  right: 17.5px;
  z-index: 999;
  padding: 0;
  background: 0;
  border: 0;
  background: url(/common/img/ico-close.svg) center no-repeat;
  height: 15px;
  width: 15px;
  outline: 0;
  -webkit-transition: left 0.4s;
  -moz-transition: left 0.4s;
  -ms-transition: left 0.4s;
  -o-transition: left 0.4s;
  transition: left 0.4s;
}
#top_menu.navbar-expand > .container,
#top_menu.navbar-expand > .container-fluid {
  padding-right: 15px;
  padding-left: 15px;
}
#top_menu.navbar-light .navbar-nav .nav-link:focus,
#top_menu.navbar-light .navbar-nav .nav-link:hover {
  color: rgba(22, 28, 33, 0.7);
}
#top_menu.navbar-light a.navbar-brand:focus,
#top_menu.navbar-light a.navbar-brand:hover {
  color: rgba(22, 28, 33, 0.7);
}
#top_menu.navbar-light .navbar-brand {
  margin-left: 2.565%;
  margin-right: 1.0265%;
  font-size: 15px;
  color: #161c21;
}
#top_menu .navbar-brand img#logo-header {
  width: 46px;
  height: 46px;
  margin-right: 1.125rem;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #bc201a;
}
#top_menu .navbar-brand.organization-logo {
  margin-right: 2.3085%;
  padding: 0;
}
#top_menu .navbar-brand.organization-logo img {
  max-width: 170px;
  max-height: 70px;
}
#top_menu.navbar-light .navbar-brand.station {
  margin: 0 auto;
  font-size: 32px;
  font-weight: 700;
  line-height: 14px;
  -webkit-transition: font-size 0.6s;
  -moz-transition: font-size 0.6s;
  -ms-transition: font-size 0.6s;
  -o-transition: font-size 0.6s;
  transition: font-size 0.6s;
}
#top_menu.navbar-light .navbar-nav .nav-link,
#top_menu.navbar-light .navbar-nav .nav-link:focus,
#top_menu.navbar-light .navbar-nav .show > .nav-link,
#top_menu.navbar-light .navbar-nav .show > .nav-link:focus {
  color: #161c21;
  font-size: 15px;
}
#separator-line {
  width: 14px;
  height: 34px;
}
#separator-line svg {
  height: 100%;
  width: 100%;
}
#navbarSupportedContent .navbar-nav .dropdown-menu {
  border-radius: 0;
  padding: 0.175rem 0;
}
#navbarSupportedContent .dropdown-item {
  font-size: 15px;
  color: #161c21;
}
#go_back {
  width: 30px;
  height: 30px;
  background-color: transparent;
  background-image: url("/common/img/back.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  top: 3px;
  left: 3px;
  cursor: pointer;
}
#go_back:hover {
  -webkit-animation: pulse 0.7s ease;
  -moz-animation: pulse 0.7s ease;
  animation: pulse 0.7s ease;
}
#go_back.home {
  background-image: url("/common/img/home.svg");
}

/* *****************************************************
****************** CONTENT STYLE ***********************
***************************************************** */
#content {
  width: calc(100% - 293px);
  background: url("/common/img/bg-station-info.svg") no-repeat center bottom
    #efefef;
  min-height: 100vh;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  top: 0;
  right: 0;
}
#content .data {
  padding: 1.23% 2.828% 1.8445% 3.1065%;
  color: #161c21;
}
#content.active {
  width: 100%;
}

/* *****************************************************
****************** DATA STYLE **************************
***************************************************** */

.red-head {
  position: relative;
}
.info-time {
  position: relative;
  text-align: right;
  font-size: 25px;
  line-height: 31px;
  -webkit-transition: font-size 0.4s;
  -moz-transition: font-size 0.4s;
  -ms-transition: font-size 0.4s;
  -o-transition: font-size 0.4s;
  transition: font-size 0.4s;
  height: 62px;
}
.context-main {
  position: relative;
}
h2.context-main-title {
  color: #bc201a;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 2.1795%;
  -webkit-transition: color 0.6s, font-size 0.6s;
  -moz-transition: color 0.6s, font-size 0.6s;
  -ms-transition: color 0.6s, font-size 0.6s;
  -o-transition: color 0.6s, font-size 0.6s;
  transition: color 0.6s, font-size 0.6s;
}
h2#context_title_media.context-main-title {
  display: none;
}
.title-big,
.title-bigger {
  text-transform: uppercase;
  line-height: 1.125;
  -webkit-transition: font-size 0.4s;
  -moz-transition: font-size 0.4s;
  -ms-transition: font-size 0.4s;
  -o-transition: font-size 0.4s;
  transition: font-size 0.4s;
}
.title-big {
  display: none; /*MODIFICA: mail 19/05/2020 s.Goldoni*/
  font-weight: 700;
  font-size: 32px;
  color: #c1c1c1;
  letter-spacing: 1.6px;
  margin-top: -1.125%;
}
.title-bigger {
  font-weight: 100;
  font-size: 84px;
  color: #e2e2e2;
  letter-spacing: 4.2px;
  margin-top: -0.625%;
  margin-bottom: 0.675%;
}
.slash {
  display: none;
}

/* *****************************************************
************************* MAP **************************
***************************************************** */

#map {
  width: 100%;
  height: 300px;
}

.ol-popup {
  position: absolute;
  min-width: 175px;
  padding: 15px 10px;
  border-radius: 0.25rem;
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid #bc201a;
  bottom: 12px;
  left: -49px;
  font-size: 13px;
  text-align: center;
  color: #161c21;
  -webkit-animation: fadeAppear 0.3s ease-in;
  -moz-animation: fadeAppear 0.3s ease-in;
  animation: fadeAppear 0.3s ease-in;
}
.ol-popup:before,
.ol-popup:after {
  top: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.ol-popup:after {
  border-top-color: #fff;
  border-width: 10px;
  left: 48px;
  margin-left: -10px;
}
.ol-popup:before {
  border-top-color: #bc201a;
  border-width: 11px;
  left: 48px;
  margin-left: -11px;
}
.ol-popup .ol-popup-closer {
  text-decoration: none;
  position: absolute;
  top: 2px;
  right: 8px;
}
.ol-popup .ol-popup-closer:after {
  content: "✖";
  color: rgba(77, 79, 92, 0.5);
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  -ms-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
}
.ol-popup .ol-popup-closer:hover:after {
  content: "✖";
  color: rgba(22, 28, 33, 0.7);
}
.ol-popup .station_name {
  font-weight: 600;
}
.ol-popup .coordinates {
  font-size: 11px;
}

/* *****************************************************
******************** STATION BOXES *********************
***************************************************** */
.station-box-container {
  max-width: 1140px;
}
.station-box {
  background-color: #fff;
  border-radius: 0.25rem;
  color: rgba(77, 79, 92, 0.5);
  padding: 3.8225% 2.9225%;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1607843137254902);
}
.station-box sup {
  font-size: 50%;
  top: -0.75em;
}
.station-box.medium {
  margin-bottom: 15%;
}
.station-box.large {
  margin-bottom: 20.75%;
}
.station-box a.station-link {
  display: block;
  color: rgba(77, 79, 92, 0.5);
  text-align: right;
  text-transform: uppercase; /*font-size: 7px;*/
  font-size: 8px;
  line-height: 9px; /*line-height: 8px;*/
  background-repeat: no-repeat;
  background-position: 99% center;
  background-image: url(/common/img/ico-cards-link.svg);
  background-size: 10.5px 7.5px;
  padding: 0 8% 0 0;
  text-decoration: none;
}
.station-box .station-box-content a.station-link {
  text-align: left;
  padding: 0 10% 0 0;
}
.station-box.small a.station-link {
  background-size: 7.5px 5.5px;
}
.station-box.medium a.station-link {
  font-size: 9px;
  line-height: 10px;
}
.station-box.large a.station-link {
  font-size: 10px;
  line-height: 11px;
}
.station-box a.station-link:hover {
  color: rgba(22, 28, 33, 0.7);
  -webkit-transition: color 0.2s, background-image 0.2s;
  -moz-transition: color 0.2s, background-image 0.2s;
  -ms-transition: color 0.2s, background-image 0.2s;
  -o-transition: color 0.2s, background-image 0.2s;
  transition: color 0.2s, background-image 0.2s;
  background-image: url(/common/img/ico-cards-link-hover.svg);
}
.station-box-header {
  color: rgba(22, 28, 33, 1);
  padding: 0.125% 10% 2.5% 0;
  border-bottom: 1px solid #f0f2f7;
  font-family: RobotoCondensedBold;
  font-size: 13px;
  line-height: 15px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  background-repeat: no-repeat;
  background-position: 99.5% 0%;
}
.small .station-box-header {
  background-size: 16px 16px;
}
.medium .station-box-header {
  padding: 0.125% 5% 3.75% 0;
  background-size: 12px 25px;
}
.large .station-box-header {
  background-size: 21px 21px;
}
#box_humidity .station-box-header {
  background-image: url("/common/img/ico-cards-barometer.svg");
  background-size: 17px 19px;
}
#box_temperature .station-box-header {
  background-image: url("/common/img/ico-cards-temp.svg");
}
#box_photo .station-box-header {
  background-image: url("/common/img/ico-cards-photo.svg");
}
#box_map .station-box-header {
  background-image: url("/common/img/ico-cards-map.svg");
}
#box_battery .station-box-header {
  background-image: url("/common/img/ico-cards-beat.svg");
}
#box_uptime .station-box-header {
  background-image: url("/common/img/ico-cards-infos.svg");
}
#box_status .station-box-header {
  background-image: url("/common/img/ico-cards-nodes.svg");
}
#box_error .station-box-header {
  background-image: url("/common/img/ico-error.svg");
}
.station-box-content {
  margin: 2.5% 0 1.25%;
}
.station-box-content {
  font-size: 18px;
  line-height: 19px;
}
.small .station-box-content {
  font-size: 13px;
  line-height: 14px;
}
.station-box-img {
  margin: 3.75% 0 0;
}
.station-box-img img {
  display: block;
  margin: 0 auto;
  width: 100%;
}
.station-box-title {
  color: rgba(77, 79, 92, 0.2);
  font-size: 17px;
  line-height: 18px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.station-box-subtitle {
  margin-bottom: 0.5rem;
  margin-top: 0;
  font-size: 10px;
  line-height: 14px;
}
.double-content {
  display: flex;
  flex-flow: row wrap;
  margin-top: 2.78%;
}
.content-left {
  flex: 0 0 50%;
  width: 100%;
}
.measure,
.unit,
.update {
  color: rgba(77, 79, 92, 0.2);
  -webkit-transition: font-size 0.2s ease-in-out;
  -moz-transition: font-size 0.2s ease-in-out;
  -ms-transition: font-size 0.2s ease-in-out;
  -o-transition: font-size 0.2s ease-in-out;
  transition: font-size 0.2s ease-in-out;
}
.measure {
  font-size: 49px;
  line-height: 40px;
  letter-spacing: -2.1px;
}
.small .measure {
  font-size: 40px;
  letter-spacing: -0.98px;
}
.unit {
  margin-left: 1px;
  font-size: 28px;
  line-height: 40px;
  letter-spacing: -1.44px;
}
.small .unit {
  font-size: 20px;
  letter-spacing: -0.34px;
}
.content-right {
  flex: 0 0 48%;
  width: 100%;
}
.station-summary {
  max-width: 98%;
  margin: 0 0 0 auto;
}

/* *****************************************************
*********************** TABLES *************************
***************************************************** */
.custom-table-container {
  font-family: RobotoRegular;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.1607843137254902);
  padding: 3.0375% 2.0475% 2.113%;
  margin-bottom: 2%;
}
.custom-table-container table.table {
  color: rgba(22, 28, 33, 1);
  font-size: 13px;
  line-height: 15px;
  margin-bottom: 0;
}
.custom-table-container table.table td {
  border-bottom: 1px solid #f0f2f7;
  border-top: 0;
  padding: 8.5px 10px 6.5px;
  letter-spacing: 0.65px;
}
.custom-table-container table.table.tbl-statusVersion td,
.custom-table-container table.table.tbl-statusInfo td {
  width: 50%;
}
.custom-table-container table.table tr.clickable.selected td {
  background-color: #f0f2f7;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -ms-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  border-bottom: 1px solid #fff;
}
.custom-table-container table.table tr.clickable.selected td:first-child {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.custom-table-container table.table tr.clickable.selected td:last-child {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.custom-table-container table.table tr.clickable:hover {
  color: rgba(22, 28, 33, 0.71);
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  cursor: pointer;
}
.custom-table-container tr.clickable:hover .icon-chart {
  background-image: url(/common/img/ico-chart-hover.svg);
  -webkit-transition: background-image 0.3s;
  -moz-transition: background-image 0.3s;
  -ms-transition: background-image 0.3s;
  -o-transition: background-image 0.3s;
  transition: background-image 0.3s;
}
.custom-table-container tr.selected .icon-chart {
  background-image: url(/common/img/ico-chart-selected.svg);
  -webkit-transition: background-image 0.3s;
  -moz-transition: background-image 0.3s;
  -ms-transition: background-image 0.3s;
  -o-transition: background-image 0.3s;
  transition: background-image 0.3s;
}
.custom-table-container table.table td.empty-row {
  border-bottom: 0;
  border-top: 0;
}
.custom-table-container table.table tbody tr:last-child td {
  border-bottom: 0;
}
.custom-table-container table.table thead tr th .config-label {
  border-top: 0;
  padding: 3px 10px 1px;
  font-family: RobotoCondensedBold;
  border-bottom: 1px solid #f0f2f7;
  letter-spacing: 1.3px;
}
.custom-table-container table.table.tbl-data tbody td {
  vertical-align: middle;
}
.custom-table-container .icon-chart {
  margin: 0 0 0 auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 25px 25px;
  width: 25px;
  height: 25px;
  -webkit-transition: background-image 0.3s;
  -moz-transition: background-image 0.3s;
  -ms-transition: background-image 0.3s;
  -o-transition: background-image 0.3s;
  transition: background-image 0.3s;
  background-image: url(/common/img/ico-chart.svg);
}
.custom-table-container table.table tr.selected.clickable:hover .icon-chart,
.custom-table-container tr.clickable.selected .icon-chart:hover,
.custom-table-container tr.selected .icon-chart:hover {
  background-image: url(/common/img/ico-chart-selected.svg);
  -webkit-transition: background-image 0.3s;
  -moz-transition: background-image 0.3s;
  -ms-transition: background-image 0.3s;
  -o-transition: background-image 0.3s;
  transition: background-image 0.3s;
}
.custom-table-container tr td:first-child,
.custom-table-container tr th:first-child {
  text-align: left;
}


.custom-table-container tr td.right ,
.custom-table-container tr th.right {
  text-align: right !important;
}

.custom-table-container tr td.width-100,
.custom-table-container tr th.width-100 {
  width:100% !important;
}
.custom-table-container tr td.white-space-nowrap,
.custom-table-container tr th.white-space-nowrap {
  white-space: nowrap !important;
}
.custom-table-container tr td.word-break-normal,
.custom-table-container tr th.word-break-normal {
  word-break: normal !important;
}
.custom-table-container tr td,
.custom-table-container tr th {
  text-align: left;
}
.custom-table-container tr td {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  /*-ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;*/
}
.custom-table-container tr td:last-child,
.custom-table-container tr th:last-child {
  text-align: left;
}

.button-download {
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 28px;
  background-color: transparent;
  background-image: url("/common/img/ico-download-generic.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  cursor: pointer;
}
.button-download.csv {
  background-image: url("/common/img/ico-download-csv.svg");
}
.button-download.png {
  background-image: url("/common/img/ico-download-png.svg");
}
.button-download.jpg {
  background-image: url("/common/img/ico-download-jpg.svg");
}
.button-download.clicked {
  -webkit-animation: downloadBounce 0.7s ease-in;
  -moz-animation: downloadBounce 0.7s ease-in;
  animation: downloadBounce 0.7s ease-in;
}

/* *****************************************************
********************** CALENDAR ************************
***************************************************** */
.picker-container {
  position: fixed;
}
.picker-container .picker-opened > .picker-dialog {
  background: rgb(
    188,
    32,
    26
  ); /*background: linear-gradient(0deg, rgba(188,32,26,1) 75%, #3E0D0D 100%);*/
  border: 0;
}
.picker-container .picker .picker-body {
  background-color: #bc201a;
}
.picker-container .picker {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  line-height: 1.125;
}
.picker-container .picker-title {
  font-size: 100%;
  font-weight: 400;
  line-height: 1.125;
}
.picker-container .picker-confirm,
.picker-container .picker-cancel {
  border: 0;
  color: #fff;
  font-size: 100%;
  background: rgb(188, 32, 26);
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -ms-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.picker-container .picker-cancel {
  border-right: 1px solid #fff;
}
.picker-container .picker-confirm:hover,
.picker-container .picker-cancel:hover {
  background: #f0f2f7;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -ms-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  color: #bc201a;
}
.picker-container .picker-cancel:hover {
  border-right: 1px solid #fff;
}
.picker-container .picker-confirm:hover {
  border-left: 1px solid #fff;
}
.picker-container .picker-cell__control:before {
  -webkit-transition: border-color 0.3s;
  -moz-transition: border-color 0.3s;
  -ms-transition: border-color 0.3s;
  -o-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.picker-container .picker-cell__control:hover:before {
  border-color: #fff;
  -webkit-transition: border-color 0.3s;
  -moz-transition: border-color 0.3s;
  -ms-transition: border-color 0.3s;
  -o-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.picker-container .picker-cell__body:after,
.picker-container .picker-cell:after,
.picker-container .picker-cell__body:before,
.picker-container .picker-cell:before {
  background-image: none;
}
.picker-container .picker-close {
  font-size: 200%;
  width: 4%;
  height: 100%;
  right: 1.75%;
  top: 47.5%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  transition: opacity 0.3s;
}
.active .picker-container .picker-fixed {
  left: 0;
  -webkit-transition: left 0.3s;
  -moz-transition: left 0.3s;
  -ms-transition: left 0.3s;
  -o-transition: left 0.3s;
  transition: left 0.3s;
}
.picker-container .picker-fixed {
  left: 293px;
  -webkit-transition: left 0.3s;
  -moz-transition: left 0.3s;
  -ms-transition: left 0.3s;
  -o-transition: left 0.3s;
  transition: left 0.3s;
}
.picker-container .picker-header {
  padding: 0.75rem 4%;
  border-bottom: 1px solid #fff;
}
.picker-container .picker-cell__header {
  color: #fff;
}
.picker-container .picker-item.picker-picked {
  color: #fff;
  font-size: 100%;
  font-weight: 400;
  text-transform: uppercase;
  opacity: 0.7;
  -webkit-animation: fadeInPickersCent ease-in 0.4s;
  -moz-animation: fadeInPickersCent ease-in 0.4s;
  animation: fadeInPickersCent ease-in 0.4s;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 0.4s;
  -moz-animation-duration: 0.4s;
  animation-duration: 0.4s;
}
.picker-container .picker-item {
  color: rgb(255, 255, 255);
  padding: 0.375rem 0.5rem;
  background-color: rgb(155, 27, 23);
  opacity: 0.4;
  -webkit-animation: fadeInPickersInt ease-in 0.4s;
  -moz-animation: fadeInPickersInt ease-in 0.4s;
  animation: fadeInPickersInt ease-in 0.4s;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 0.4s;
  -moz-animation-duration: 0.4s;
  animation-duration: 0.4s;
}
.picker-container
  .picker-cell
  .picker-cell__body
  .picker-list
  .picker-item:first-child,
.picker-container
  .picker-cell
  .picker-cell__body
  .picker-list
  .picker-item:last-child {
  opacity: 0;
  -webkit-animation: fadeInPickersExt ease-in 0.4s;
  -moz-animation: fadeInPickersext ease-in 0.4s;
  animation: fadeInPickersExt ease-in 0.4s;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 0.4s;
  -moz-animation-duration: 0.4s;
  animation-duration: 0.4s;
}
.picker-container .picker-item:hover {
  cursor: grab;
}
.picker-container .picker-footer {
  border-top: 1px solid #fff;
}

.popup.custom-popup {
  display: none;
  text-align: center;
  margin: 2.5% auto;
}
.popup.custom-popup .spinner-border {
  width: 2.5rem;
  height: 2.5rem;
  color: #9b1b17;
  vertical-align: middle;
}

.custom-calendar .fc-header-right,
.custom-calendar .fc-header-left,
.active .custom-calendar .fc-header-left,
.active .custom-calendar .fc-header-right {
  -webkit-transition: width 0.3s;
  -moz-transition: width 0.3s;
  -ms-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}
.custom-calendar .fc-header-right,
.custom-calendar .fc-header-left {
  width: 40%;
}
.active .custom-calendar .fc-header-left,
.active .custom-calendar .fc-header-right {
  width: 41%;
}
.custom-calendar .fc-header-left {
  text-align: right;
}
.custom-calendar .fc-header-right {
  text-align: left;
}
.custom-calendar .fc-header .fc-button {
  margin: 4.6% 0;
}
.custom-calendar .icon-Arrow-Left,
.custom-calendar .icon-Arrow-Right {
  padding: 0;
  height: 34px;
  width: 35px;
  background-color: #fff;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1607843137254902);
  border-radius: 0.25rem;
  color: #bc201a;
  font-size: 45px;
  line-height: 26px;
  text-align: center;
}
.custom-calendar .fc-state-hover {
  color: rgba(188, 32, 26, 0.71);
  text-decoration: none;
  outline: 0;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1607843137254902);
  -webkit-transition: box-shadow 0.2s linear, color 0.2s linear;
  -moz-transition: box-shadow 0.2s linear, color 0.2s linear;
  -ms-transition: box-shadow 0.2s linear, color 0.2s linear;
  -o-transition: box-shadow 0.2s linear, color 0.2s linear;
  transition: box-shadow 0.2s linear, color 0.2s linear;
}
.custom-calendar .fc-content {
  padding: 3.30125% 2.7625%;
  background-color: #fff;
  box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.1607843137254902);
  border-radius: 0.25rem;
  color: rgba(22, 28, 33, 0.71);
  font-size: 14px;
  line-height: 1.25;
}
.custom-calendar .fc-widget-header,
.custom-calendar .fc-widget-content {
  border: 1px solid #f0f2f7;
}
.custom-calendar .fc-widget-header {
  text-transform: uppercase;
  font-size: 13px;
  font-family: RobotoCondensedBold;
  letter-spacing: 1.3px;
  padding: 1px 0;
  color: rgba(22, 28, 33, 1);
}
.custom-calendar .fc-header-center,
.active .custom-calendar .fc-header-center {
  vertical-align: middle;
  -webkit-transition: width 0.3s;
  -moz-transition: width 0.3s;
  -ms-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}
.custom-calendar .fc-header .fc-button,
.custom-calendar .fc-header-title {
  vertical-align: middle;
}
.custom-calendar .fc-header-center {
  width: 20%;
}
.active .custom-calendar .fc-header-center {
  width: 18%;
}
.custom-calendar .fc-header-title:hover h2 {
  cursor: pointer;
  text-decoration: none;
  outline: 0;
  color: rgba(188, 32, 26, 0.71);
  -webkit-transition: color 0.2s linear;
  -moz-transition: color 0.2s linear;
  -ms-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
}
.custom-calendar .fc-header-title h2,
.active .custom-calendar .fc-header-title h2 {
  margin: 0;
  letter-spacing: 1.2px;
  color: #bc201a;
  text-transform: uppercase;
  font-weight: 700;
  -webkit-transition: color 0.2s linear, font-size 0.3s;
  -moz-transition: color 0.2s linear, font-size 0.3s;
  -ms-transition: color 0.2s linear, font-size 0.3s;
  -o-transition: color 0.2s linear, font-size 0.3s;
  transition: color 0.2s linear, font-size 0.3s;
}
.custom-calendar .fc-header-title h2 {
  font-size: 22px;
  transition: color 0.2s linear, font-size 0.3s;
}
.active .custom-calendar .fc-header-title h2 {
  font-size: 24px;
  -webkit-transition: color 0.2s linear, font-size 0.3s;
  -moz-transition: color 0.2s linear, font-size 0.3s;
  -ms-transition: color 0.2s linear, font-size 0.3s;
  -o-transition: color 0.2s linear, font-size 0.3s;
  transition: color 0.2s linear, font-size 0.3s;
}
.custom-calendar .fc-grid .fc-other-month .fc-day-number {
  opacity: 0.41;
}
.custom-calendar .fc-state-highlight {
  background: rgba(77, 79, 92, 0.21);
  color: rgb(255, 255, 255);
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.custom-calendar .fc-state-highlight.withPhoto .fc-day-content {
  background: rgba(77, 79, 92, 0.21);
  border-radius: 0.25rem;
  padding: 1.0125%;
}
.custom-calendar .fc-state-highlight > div {
  background: rgba(255, 255, 255, 1);
}
.custom-calendar .fc-grid .fc-state-highlight .fc-day-number {
  background-color: #bc201a;
  border-radius: 0.5rem;
  box-shadow: 0px 1px 2px rgba(155, 27, 23, 0.31);
}
.custom-calendar .fc-grid .fc-day-number {
  float: none;
  padding: 0;
  width: 100%;
  text-align: center;
  font-size: 15px;
}
.fc-other-month .event-counter {
  display: none;
}
.event-counter {
  display: none;
  top: 18%;
  right: 18%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(50%, -50%);
  z-index: 10;
  position: absolute;
  font-size: 9pt;
  color: #161c21;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #9d1b17;
  height: 20px;
  width: 20px;
  text-align: center;
  -webkit-transition: color 0.3s, background 0.3s, border 0.3s;
  -moz-transition: color 0.3s, background 0.3s, border 0.3s;
  -ms-transition: color 0.3s, background 0.3s, border 0.3s;
  -o-transition: color 0.3s, background 0.3s, border 0.3s;
  transition: color 0.3s, background 0.3s, border 0.3s;
}
.event-counter:hover,
.event-counter:active,
.event-counter:focus {
  text-decoration: none;
  outline: 0;
  color: #fff;
  background: #9d1b17;
  -webkit-transition: color 0.3s, background 0.3s, border 0.3s;
  -moz-transition: color 0.3s, background 0.3s, border 0.3s;
  -ms-transition: color 0.3s, background 0.3s, border 0.3s;
  -o-transition: color 0.3s, background 0.3s, border 0.3s;
  transition: color 0.3s, background 0.3s, border 0.3s;
  border: 1px solid #fff;
}
.event-counter > span {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.fc-event.custom-event {
  border: 1px solid #bc201a;
  color: #bc201a;
  font-size: 13px;
  line-height: 1.125;
  background-color: #d9dadc;
  -webkit-transition: color 0.3s, background-color 0.3s, box-shadow 0.3s;
  -moz-transition: color 0.3s, background-color 0.3s, box-shadow 0.3s;
  -ms-transition: color 0.3s, background-color 0.3s, box-shadow 0.3s;
  -o-transition: color 0.3s, background-color 0.3s, box-shadow 0.3s;
  transition: color 0.3s, background-color 0.3s, box-shadow 0.3s;
}
.custom-event-today.fc-event.custom-event:hover,
.fc-event.custom-event:hover {
  cursor: pointer;
  background-color: #bc211b;
  color: #ffffff;
  box-shadow: 0px 1px 2px rgba(155, 27, 23, 0.51);
}
.custom-event-today.fc-event.custom-event {
  background-color: #fff;
}
.fc-event-hori.custom-event {
  margin-bottom: 0.125rem;
}
.custom-event .fc-event-inner {
  padding: 1.307% 2.61%;
}
.fc-ltr .fc-event-hori.fc-event-end.custom-event,
.fc-rtl .fc-event-hori.fc-event-start.custom-event {
  border-right-width: 1px;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.fc-ltr .fc-event-hori.fc-event-start.custom-event,
.fc-rtl .fc-event-hori.fc-event-end.custom-event {
  border-left-width: 1px;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

/* *****************************************************
***************** CUSTOM RESOURCES *********************
***************************************************** */
/*common classes*/
.z10 {
  z-index: 10;
}
.z20 {
  z-index: 20;
}

/*boxes*/
.box-custom {
  padding: 2.9175% 3.5%;
  color: rgba(77, 79, 92, 1);
}

/*shadow*/
.shadow-custom {
  background-color: #fff;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.1607843137254902);
  border-radius: 0.25rem;
}

/*buttons*/
.btn-group-custom {
  margin: 0 0 2.2525% 0;
  font-family: RobotoCondensedBold;
  letter-spacing: 1.3px;
}
.four-elements .btn-custom,
.btn-group-custom.withTable .btn-custom {
  width: 100%;
}
.btn-custom.btn-send {
  color: #9095ad;
}
.btn-custom.btn-send:hover {
  color: #bc201a;
}
.btn-custom {
  font-size: 100%;
  color: rgba(77, 79, 92, 0.5);
  -webkit-transition: background-color 0.3s, color 0.3s, box-shadow 0.3s,
    background-image 0.3s ease-in-out;
  -moz-transition: background-color 0.3s, color 0.3s, box-shadow 0.3s,
    background-image 0.3s ease-in-out;
  -ms-transition: background-color 0.3s, color 0.3s, box-shadow 0.3s,
    background-image 0.3s ease-in-out;
  -o-transition: background-color 0.3s, color 0.3s, box-shadow 0.3s,
    background-image 0.3s ease-in-out;
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s,
    background-image 0.3s ease-in-out;
  text-align: center;
  padding: 2.9175% 2.5%;
  width: 50%;
  margin: 0 auto;
  display: block;
  border: 1px solid transparent;
}
.btn-custom:hover {
  cursor: pointer;
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.1607843137254902);
  color: rgba(77, 79, 92, 1);
}
.btn-custom.disabled {
  opacity: 0.71;
}
.btn-custom.disabled:hover {
  cursor: not-allowed;
  color: #9095ad;
}
.btn-custom.red-button {
  background-color: #bc201a;
  color: #fff;
  -webkit-transition: background-image 0.3s, background-color 0.3s, color 0.2s;
  background-position: 50% 50%;
  background-size: 30px 30px;
  background-repeat: no-repeat;
  -moz-transition: background-image 0.3s, background-color 0.3s, color 0.2s;
  -ms-transition: background-image 0.3s, background-color 0.3s, color 0.2s;
  -o-transition: background-image 0.3s, background-color 0.3s, color 0.2s;
  transition: background-image 0.3s, background-color 0.3s, color 0.2s;
}
.btn-custom.red-button:hover {
  color: transparent;
  background-image: url(/common/img/ico-refresh.svg);
  -webkit-transition: background-image 0.3s, background-color 0.3s, color 0.2s;
  -moz-transition: background-image 0.3s, background-color 0.3s, color 0.2s;
  -ms-transition: background-image 0.3s, background-color 0.3s, color 0.2s;
  -o-transition: background-image 0.3s, background-color 0.3s, color 0.2s;
  transition: background-image 0.3s, background-color 0.3s, color 0.2s;
}
.btn-group-custom .table-content {
  margin-top: 2.2525%;
}

/*modal*/

.modal-custom .modal-dialog {
  -webkit-transition: unset;
  -moz-transition: unset;
  -ms-transition: unset;
  -o-transition: unset;
  transition: unset;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
  width: 100%;
  margin: 0;
  max-width: 500px;
}
.modal.show.modal-custom .modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: unset;
  -moz-transition: unset;
  -ms-transition: unset;
  -o-transition: unset;
  transition: unset;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
  margin: 0;
}
.modal-custom {
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-custom .modal-content {
  border: 0;
  background: rgba(155, 27, 23, 1);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1607843137254902);
  border-radius: 0.25rem;
  font-size: 100%;
  font-weight: 400;
  color: #fff;
}
.modal-custom .modal-content a {
  color: #fff;
}
.modal-custom .modal-header {
  border-radius: 0;
  border-bottom: 1px solid #fff;
  font-size: 120%;
}
.modal-custom .modal-title {
  text-align: center;
  width: 100%;
}
.modal-custom .modal-body {
  text-align: center;
  padding: 3rem 1rem;
}
.modal-custom .modal-footer {
  justify-content: center;
  border-top: 1px solid #fff;
  padding: 0;
  font-family: RobotoCondensedBold;
  letter-spacing: 1.3px;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  word-break: break-word;
}
.modal-custom .modal-footer a {
  width: 100%;
  text-align: center;
  padding: 1rem;
  display: block;
  margin: 0 auto;
  -webkit-transition: color 0.4s, background-color 0.4s,
    border-bottom-left-radius 0.4s, border-bottom-right-radius 0.4s;
  -moz-transition: color 0.4s, background-color 0.4s,
    border-bottom-left-radius 0.4s, border-bottom-right-radius 0.4s;
  -ms-transition: color 0.4s, background-color 0.4s,
    border-bottom-left-radius 0.4s, border-bottom-right-radius 0.4s;
  -o-transition: color 0.4s, background-color 0.4s,
    border-bottom-left-radius 0.4s, border-bottom-right-radius 0.4s;
  transition: color 0.4s, background-color 0.4s, border-bottom-left-radius 0.4s,
    border-bottom-right-radius 0.4s;
}
.modal-custom .modal-footer a:first-child {
  border-right: 1px solid #fff;
}
.modal-custom .modal-footer a:first-child:hover {
  border-bottom-left-radius: 0.25rem;
}
.modal-custom .modal-footer a:last-child:hover {
  border-bottom-right-radius: 0.25rem;
}
.modal-custom .modal-footer a:hover {
  background-color: #fff;
  color: #bc201a;
}
.modal-custom a:hover {
  cursor: pointer;
}
.modal-custom a:focus,
.modal-custom a:active {
  outline: 0;
  text-decoration: none;
}
.modal-custom.gallery .modal-dialog {
  max-width: 625px;
}
.modal-custom.gallery .modal-body {
  padding: 1.25rem 1.875rem;
  position: relative;
}
.modal-custom.gallery .modal-body img {
  width: 100%;
}
.modal-custom.gallery .modal-body a {
  display: block;
  margin: 0 auto;
  position: absolute;
  font-size: 125%;
  color: #fff;
  width: 100%;
  max-width: 25px;
  -webkit-transition: color 0.2s linear, background 0.3s ease-in-out,
    box-shadow 0.4s ease-in-out;
  -moz-transition: color 0.2s linear, background 0.3s ease-in-out,
    box-shadow 0.4s ease-in-out;
  -ms-transition: color 0.2s linear, background 0.3s ease-in-out,
    box-shadow 0.4s ease-in-out;
  -o-transition: color 0.2s linear, background 0.3s ease-in-out,
    box-shadow 0.4s ease-in-out;
  transition: color 0.2s linear, background 0.3s ease-in-out,
    box-shadow 0.4s ease-in-out;
  border-radius: 0.25rem;
}
.modal-custom.gallery .modal-body a:hover {
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.71);
  border-radius: 0.25rem;
  background: #fff;
  color: #bc201a;
}
.modal-custom.gallery .modal-body a:hover > span {
}
.modal-custom.gallery .modal-body a > span {
  vertical-align: text-bottom;
}
.modal-custom.gallery .modal-body a#modal_btn_prev {
  top: 50%;
  left: 2.375%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.modal-custom.gallery .modal-body a#modal_btn_next {
  top: 50%;
  right: 2.375%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(50%, -50%);
}
.modal-custom.gallery .modal-footer,
.modal-custom.gallery .modal-header {
  padding: 1.125rem 1.875rem;
}
/*tabs*/
.tab-custom .nav.nav-tabs {
  border: 0;
  position: relative;
}
.tab-custom .nav.nav-tabs .nav-item {
  margin-bottom: 0;
}
.tab-custom .nav.nav-tabs .nav-item .nav-link {
  border: 0;
  border: 0;
  color: rgba(77, 79, 92, 0.5);
  font-family: RobotoCondensedBold;
  letter-spacing: 1.3px;
  font-size: 100%;
  text-transform: uppercase;
  padding: 0.75rem 3.125rem 0.75rem 1rem;
  background-position: 85% center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tab-custom .nav.nav-tabs .nav-item .nav-link:hover {
  cursor: pointer;
  color: rgba(77, 79, 92, 1);
}
#graph_tab {
  background-image: url("/common/img/ico-tab-chart.svg");
}
#graph_tab:hover {
  background-image: url("/common/img/ico-tab-chart-hover.svg");
}
#graph_tab.active {
  background-image: url("/common/img/ico-tab-chart-active.svg");
}
#table_tab {
  background-image: url("/common/img/ico-tab-table.svg");
}
#table_tab:hover {
  background-image: url("/common/img/ico-tab-table-hover.svg");
}
#table_tab.active {
  background-image: url("/common/img/ico-tab-table-active.svg");
}
.tab-custom .nav.nav-tabs .nav-item .nav-link.active {
  color: #bc201a;
}

.tab-custom .tab-content .tab-pane {
  background-color: #fff;
  border-top-right-radius: 0.25rem;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.1607843137254902);
}

/*graph*/
.graph {
  width: 100%;
  height: 100%;
}
.graph:hover {
  cursor: pointer;
}
.inPage {
  padding: 1.348% 1.01125%;
}
.inPage .graph {
  min-height: 450px;
}
.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  display: none;
  background-color: #fff;
  z-index: 1000;
}

/*select*/
.select-custom {
  position: relative;
  font-size: 100%;
}
.select-custom select {
  display: none;
}
.select-selected {
  padding: 2.9175% 3.5%;
  border: 0;
  cursor: pointer;
  background-color: #fff;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.1607843137254902);
  border-radius: 0.25rem;
  color: rgba(77, 79, 92, 0.5);
  -webkit-transition: color 0.4s, box-shadow 0.4s;
  -moz-transition: color 0.4s, box-shadow 0.4s;
  -ms-transition: color 0.4s, box-shadow 0.4s;
  -o-transition: color 0.4s, box-shadow 0.4s;
  transition: color 0.4s, box-shadow 0.4s;
  border: 1px solid transparent;
}
.select-selected:hover {
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.1607843137254902);
  color: rgba(77, 79, 92, 1);
}
.select-selected:hover:after {
  border-color: rgba(77, 79, 92, 1) transparent transparent transparent;
  background: url(/common/img/ico-dd-small-dark.svg) center no-repeat;
}
.select-selected.select-arrow-active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  color: rgba(77, 79, 92, 1);
}
.select-selected:after {
  position: absolute;
  content: "";
  border: 0;
  vertical-align: 0.125em;
  margin-left: 0.5em;
  background: url(/common/img/ico-dd-small.svg) center no-repeat;
  width: 16px;
  height: 16px;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: transform 0.4s, background 0.2s;
  -moz-transition: transform 0.4s, background 0.2s;
  -ms-transition: transform 0.4s, background 0.2s;
  -o-transition: transform 0.4s, background 0.2s;
  transition: transform 0.4s, background 0.2s;
  display: block;
  top: 50%;
  right: 20px;
}
.select-selected.select-arrow-active:after {
  background: url(/common/img/ico-dd-small-dark.svg) center no-repeat;
  -moz-transform: translateY(-50%) rotate(180deg);
  -webkit-transform: translateY(-50%) rotate(180deg);
  -o-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.select-items div {
  color: rgba(77, 79, 92, 0.5);
  padding: 2.9175% 3.5%;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  -webkit-transition: color 0.4s, background-color 0.4s;
  -moz-transition: color 0.4s, background-color 0.4s;
  -ms-transition: color 0.4s, background-color 0.4s;
  -o-transition: color 0.4s, background-color 0.4s;
  transition: color 0.4s, background-color 0.4s;
}
.select-items div:last-child {
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  border-color: transparent transparent transparent transparent;
}
.select-items {
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -ms-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
  opacity: 1;
  position: absolute;
  background-color: #fff;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.1607843137254902);
}
.select-hide {
  opacity: 0;
  display: none;
}
.select-items div:hover,
.select-items .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
  color: rgba(77, 79, 92, 1);
}

/*input*/
.input-custom input[type="number"] {
  width: 100%;
  margin: 0;
  padding: 2.9175% 3.5%;
  background: #fff;
  color: rgba(77, 79, 92, 1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.input-custom input[type="number"]:focus {
  border-bottom: 0;
  box-shadow: 0px 2px 0px rgb(188, 32, 26);
}

/* *****************************************************
********************* MEDIAQUERIES *********************
***************************************************** */

/* Responsive */
@media (min-width: 991px) {
  .picker-container .picker-opened > .picker-dialog {
    position: absolute;
    top: 50%;
    height: 23.75%;
    max-width: 70%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 1600px) {
  #top_menu .navbar-brand.organization-logo img {
    max-width: 150px;
  }
}
@media (max-width: 1499px) {
  .active .custom-calendar .fc-header-right,
  .active .custom-calendar .fc-header-left {
    width: 38%;
  }
  .active .custom-calendar .fc-header-center {
    width: 24%;
  }
  .custom-calendar .fc-header-right,
  .custom-calendar .fc-header-left {
    width: 37%;
  }
  .custom-calendar .fc-header-center {
    width: 26%;
  }
}
@media (max-width: 1399px) {
  .measure,
  .small .measure {
    font-size: 42px;
  }
  .unit,
  .small .unit {
    font-size: 22px;
  }
}

@media (max-width: 1199px) {
  #top_menu .navbar-brand.organization-logo img {
    max-width: 130px;
  }
  .active #top_menu.navbar-light .navbar-brand.station {
    font-size: 30px;
  }
  #top_menu.navbar-light .navbar-brand.station {
    font-size: 28px;
  }
  .title-bigger {
    font-size: 74px;
  }
  .active .title-bigger {
    font-size: 79px;
  }
  .title-big {
    font-size: 30px;
  }
  .active .title-big {
    font-size: 32px;
  }
  .station-box.large {
    margin-bottom: 15%;
  }
  .large .station-box-header {
    background-size: 20px 20px;
  }
  .medium .station-box-header {
    background-size: 11px 23px;
  }
  .station-summary {
    max-width: 95%;
    font-size: 17px;
  }
  .measure,
  .small .measure {
    font-size: 34px;
    line-height: 35px;
  }
  .unit,
  .small .unit {
    font-size: 21px;
    line-height: 35px;
  }
  .info-time {
    font-size: 23px;
  }
  .active .info-time {
    font-size: 24px;
  }
  .custom-calendar .icon-Arrow-Left,
  .custom-calendar .icon-Arrow-Right {
    height: 29px;
    width: 30px;
    font-size: 36px;
    line-height: 24px;
  }
  .custom-calendar .fc-header-title h2 {
    font-size: 18px;
  }
  .active .custom-calendar .fc-header-title h2 {
    font-size: 20px;
  }
  .custom-calendar .fc-header-right,
  .custom-calendar .fc-header-left {
    width: 35%;
  }
  .custom-calendar .fc-header-center {
    width: 30%;
  }
  .active .custom-calendar .fc-header-right,
  .active .custom-calendar .fc-header-left {
    width: 37%;
  }
  .active .custom-calendar .fc-header-center {
    width: 26%;
  }
  .custom-calendar .fc-header .fc-button {
    margin: 5.25% 0;
  }
  .btn-custom {
    width: 66.67%;
  }
  .four-elements .select-custom,
  .four-elements .box-custom,
  .four-elements .input-custom {
    margin-bottom: 11.81%;
  }
  .inPage .graph {
    min-height: 400px;
  }
}

@media (max-width: 1024px) {
  #top_menu .navbar-brand.organization-logo img {
    max-width: 110px;
  }
}

@media (max-width: 991px) {
  #top_menu .navbar-brand.organization-logo {
    margin-left: 1%;
  }
  #top_menu .navbar-brand.organization-logo img {
    max-width: 90px;
  }
  .custom-calendar .fc-header .fc-button {
    margin: 5.5% 0;
  }
  #sidebar.active #sidebarCollapse {
    top: 117px;
    padding: 13px 18px;
  }
  .station-box.medium {
    margin-bottom: 10%;
  }
  .station-box.large {
    margin-bottom: 7.5%;
  }
  .station-box.small {
    margin-bottom: 3.25%;
  }
  .station-box-title {
    font-size: 14px;
  }
  #top_menu.navbar-light .navbar-brand.station {
    font-size: 20px;
  }
  .active #top_menu.navbar-light .navbar-brand.station {
    font-size: 24px;
  }
  .title-bigger {
    font-size: 64px;
  }
  .active .title-bigger {
    font-size: 69px;
  }
  .title-big {
    font-size: 28px;
  }
  .active .title-big {
    font-size: 30px;
  }
  .measure,
  .small .measure {
    font-size: 32px;
    line-height: 1.125;
  }
  .unit,
  .small .unit {
    font-size: 19px;
    line-height: 1.125;
  }
  .info-time {
    font-size: 22px;
  }
  .active .info-time {
    font-size: 23px;
  }
  .medium .station-box-header {
    background-size: 10px 20px;
  }
  #box_humidity .station-box-header {
    background-size: 16px 18px;
  }
  .custom-calendar .fc-header-center {
    width: 40%;
  }
  .active .custom-calendar .fc-header-center {
    width: 30%;
  }
  .custom-calendar .fc-header-right,
  .custom-calendar .fc-header-left {
    width: 30%;
  }
  .active .custom-calendar .fc-header-right,
  .active .custom-calendar .fc-header-left {
    width: 35%;
  }
  .custom-calendar .fc-header-title h2 {
    font-size: 16px;
  }
  .active .custom-calendar .fc-header-title h2 {
    font-size: 18px;
  }
  .custom-calendar .icon-Arrow-Left,
  .custom-calendar .icon-Arrow-Right {
    height: 28px;
    width: 30px;
    font-size: 30px;
    line-height: 22px;
  }
  .btn-custom {
    width: 75%;
  }
  .four-elements .input-custom {
    margin-bottom: 0;
  }
  .inPage .graph {
    min-height: 350px;
  }
  .tab-custom .nav.nav-tabs .nav-item .nav-link {
    background-size: 18px 18px;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    background-position: 87.5% center;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .double-content {
    flex-flow: wrap column;
  }
  .station-summary {
    margin: 2.125% 0;
    max-width: 100%;
  }
  .content-left,
  .content-right {
    text-align: center;
  }
}

@media (max-width: 812px) {
  #top_menu .navbar-brand.organization-logo img {
    max-width: 75px;
  }
  #top_menu.navbar-light .navbar-brand.station {
    font-size: 18px;
  }
  .active #top_menu.navbar-light .navbar-brand.station {
    font-size: 22px;
  }
}

@media (max-width: 767px), (max-width: 825px) and (orientation: landscape) {
  #compact_version {
    font-size: 10px;
  }
  #top_menu .navbar-brand.organization-logo img {
    max-width: 60px;
  }
  .picker-container .picker-fixed {
    left: 0;
  }
  .picker-container .picker-close {
    width: 4%;
    right: 2.5%;
  }
  .active .picker-container .picker-fixed {
    left: 293px;
  }
  .custom-calendar .fc-header .fc-button {
    margin: 6% 0;
  }
  .custom-calendar .icon-Arrow-Left,
  .custom-calendar .icon-Arrow-Right {
    height: 26px;
    width: 28px;
    font-size: 28px;
    line-height: 21px;
  }
  .custom-calendar .fc-header-title h2,
  .active .custom-calendar .fc-header-title h2 {
    font-size: 17px;
  }
  .custom-calendar .fc-header-center,
  .active .custom-calendar .fc-header-center {
    width: 40%;
  }
  .custom-calendar .fc-header-right,
  .custom-calendar .fc-header-left,
  .active .custom-calendar .fc-header-right,
  .active .custom-calendar .fc-header-left {
    width: 30%;
  }
  .custom-calendar .fc-grid .fc-day-number {
    font-size: 14px;
  }
  .custom-calendar .fc-widget-header {
    font-size: 12px;
  }
  .station-summary,
  .active .station-summary {
    font-size: 17px;
    line-height: 1.5;
  }
  #sidebar {
    margin-left: -293px;
  }
  #sidebar.active {
    margin-left: 0;
  }
  #content {
    width: 100%;
  }
  #content.active {
    width: 100%;
  }
  #sidebarCollapse {
    background: url(/common/img/ico-arrow-right.svg) center no-repeat #bc201a;
    left: 0;
    background-size: 15px 15px;
    outline: 0;
    -webkit-transition: left 0.4s;
    -moz-transition: left 0.4s;
    -ms-transition: left 0.4s;
    -o-transition: left 0.4s;
    transition: left 0.4s;
    position: fixed;
    top: 115px;
    border-radius: 0 12px 12px 0;
    padding: 13px 18px;
  }
  #sidebarCollapse span {
    display: none;
  }
  #sidebar.active #sidebarCollapse {
    position: absolute;
    top: 8px;
    right: 12.5px;
    left: auto;
    z-index: 999;
    padding: 0;
    border-radius: 0;
    border: 0;
    background: url(/common/img/ico-close.svg) center no-repeat;
    height: 15px;
    width: 15px;
    outline: 0;
    -webkit-transition: left 0.4s;
    -moz-transition: left 0.4s;
    -ms-transition: left 0.4s;
    -o-transition: left 0.4s;
    transition: left 0.4s;
  }
  #top_menu.navbar-light .navbar-brand.station,
  .active #top_menu.navbar-light .navbar-brand.station {
    font-size: 20px;
  }
  .station-box-title {
    font-size: 15px;
  }
  .station-box-subtitle {
    font-size: 13px;
  }
  .title-big,
  .active .title-big {
    font-size: 26px;
  }
  .title-bigger,
  .active .title-bigger {
    font-size: 54px;
  }
  .measure,
  .small .measure {
    font-size: 46px;
    line-height: 1.125;
  }
  .unit,
  .small .unit {
    font-size: 26px;
    line-height: 1.125;
  }
  .info-time,
  .active .info-time {
    font-size: 21px;
  }
  .station-box.small,
  .station-box.large,
  .station-box.medium {
    margin-bottom: 5%;
  }
  .large .station-box-header {
    padding: 0% 5.5% 1.75% 0;
  }
  .medium .station-box-header {
    padding: 0% 3.125% 1.75% 0;
  }
  .small .station-box-header {
    padding: 0% 3.875% 1.25% 0;
  }
  .station-box.large a.station-link {
    font-size: 11px;
    line-height: 12px;
  }
  .station-box.medium a.station-link {
    font-size: 10px;
    line-height: 11px;
  }
  .station-box.small a.station-link {
    font-size: 9px;
    line-height: 10px;
  }
  .btn-custom {
    width: 85%;
  }
  .inPage .graph {
    min-height: 300px;
  }
  .modal-custom .modal-dialog {
    margin: 0;
    width: 85%;
  }
  .modal-custom.gallery .modal-body a {
    max-width: 20px;
    font-size: 100%;
  }
  .modal-custom.gallery .modal-body a#modal_btn_next {
    right: 3%;
  }
  .modal-custom.gallery .modal-body a#modal_btn_prev {
    left: 3%;
  }
}

@media (max-width: 736px) {
  #sidebarCollapse {
    padding: 12px 15.5px;
    background-size: 12.5px 12.5px;
  }
}

@media (max-width: 575px) {
  #sidebar.active {
    margin-left: 0;
    width: 100%;
  }
  #sidebar .sidebar-header > a {
    display: block;
    margin: 0 auto;
    text-align: center;
  }
  #top_menu .navbar-brand.organization-logo img {
    max-width: 50px;
  }
  .btn-group-custom .table-content {
    margin-top: 0;
  }
  .four-elements .select-custom,
  .four-elements .box-custom,
  .four-elements .input-custom,
  .select-custom {
    margin-bottom: 3.9175%;
    text-align: center;
  }
  .four-elements .input-custom > input {
    text-align: center;
    font-size: 15px;
  }
  .btn-custom {
    width: 75%;
    margin-bottom: 3.9175%;
  }
  .btn-group-custom {
    margin: 0;
  }
  .picker-container {
    z-index: 10000;
  }
  .active .picker-container .picker-fixed {
    left: 0px;
  }
  .title-bigger,
  .active .title-bigger {
    font-size: 44px;
  }
  .title-big,
  .active .title-big {
    font-size: 24px;
  }
  #top_menu.navbar-light .navbar-brand.station,
  .active #top_menu.navbar-light .navbar-brand.station {
    font-size: 18px;
  }
  .info-time,
  .active .info-time {
    font-size: 20px;
  }
  .station-summary,
  .active .station-summary {
    font-size: 16px;
  }
  .large .station-box-header {
    padding: 0% 5.5% 2.125% 0;
  }
  .medium .station-box-header {
    padding: 0% 3.125% 2% 0;
  }
  #login_error {
    color: #fff;
  }
  #login-left {
    display: none;
  }
  #login-right #logo_form_mobile,
  #login-right #logo_form_mobile_cae {
    display: block;
  }
  #login-right .wave-content {
    display: block;
    background: rgb(188, 32, 26);
    background: linear-gradient(20deg, rgba(188, 32, 26, 1) 35%, #3e0d0d 100%);
  }
  #login_change_lang {
    bottom: 2.5%;
    color: rgba(255, 255, 255, 0.71);
  }
  #login_change_lang a {
    color: rgba(255, 255, 255, 0.71);
    background-color: rgba(155, 27, 23, 1);
  }
  #login_change_lang a:hover,
  #login_change_lang a:focus,
  #login_change_lang a:active {
    background-color: rgba(67, 66, 93, 0.12);
    color: rgba(255, 255, 255, 1);
  }
  #formContent {
    max-width: 100%;
    margin: 0 auto;
  }
  #formContent h1,
  #formContent p {
    display: none;
  }
  #formContent input[type="submit"],
  #formContent input[type="text"],
  #formContent input[type="password"],
  #formContent input[type="button"] {
    margin: 2.0295% 0px;
    padding: 17px 16px;
    width: 100%;
    color: #161c21;
    font-size: 16px;
    line-height: 19px;
    font-weight: 400;
    letter-spacing: 0.48px;
    background-color: #fff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.16);
  }
  #formContent input[type="submit"],
  #formContent input[type="button"] {
    margin: 7.25% 0 0;
    font-weight: 600;
    color: #bc201a;
    text-align: center;
  }
  #formContent input[type="text"]:placeholder,
  #formContent input[type="password"]:placeholder {
    color: #161c21;
  }
  .custom-calendar .fc-header-title h2,
  .active .custom-calendar .fc-header-title h2 {
    font-size: 16px;
  }
  .custom-calendar .fc-header-right,
  .custom-calendar .fc-header-left,
  .active .custom-calendar .fc-header-right,
  .active .custom-calendar .fc-header-left {
    width: 25%;
  }
  .custom-calendar .fc-header-center,
  .active .custom-calendar .fc-header-center {
    width: 50%;
  }
  .custom-calendar .icon-Arrow-Left,
  .custom-calendar .icon-Arrow-Right {
    height: 24px;
    width: 26px;
    font-size: 26px;
  }
  .custom-calendar .fc-header .fc-button {
    margin: 6.5% 0;
  }
  .inPage .graph {
    min-height: 250px;
  }
  .fadeIn.first.delay-mobile {
    -webkit-animation-delay: 0.7s;
    -moz-animation-delay: 0.7s;
    animation-delay: 0.7s;
  }
  .fadeIn.second.delay-mobile {
    -webkit-animation-delay: 0.9s;
    -moz-animation-delay: 0.9s;
    animation-delay: 0.9s;
  }
  .fadeIn.third.delay-mobile {
    -webkit-animation-delay: 1.2s;
    -moz-animation-delay: 1.2s;
    animation-delay: 1.2s;
  }
  .fadeIn.fourth.delay-mobile {
    -webkit-animation-delay: 1.5s;
    -moz-animation-delay: 1.5s;
    animation-delay: 1.5s;
  }
  .fadeIn.fifth.delay-mobile {
    -webkit-animation-delay: 1.8s;
    -moz-animation-delay: 1.8s;
    animation-delay: 1.8s;
  }
  .modal-custom.gallery .modal-body a#modal_btn_next {
    right: 3.5%;
  }
  .modal-custom.gallery .modal-body a#modal_btn_prev {
    left: 3.5%;
  }
  .measure,
  .small .measure {
    font-size: 42px;
  }
  .unit,
  .small .unit {
    font-size: 22px;
  }
}

@media (max-width: 564px) {
  .btn-custom,
  .select-custom {
    font-size: 90%;
  }
  #sidebarCollapse {
    padding: 10px 14px;
    background-size: 12px 12px;
  }
}

@media (max-width: 480px) {
  #compact_version {
    font-size: 9px;
  }
  .loader-container {
    background-color: #fff;
    border-bottom-left-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    padding: 5% 0;
  }
  .hidden-loader.big {
    margin: 0 auto;
  }
  .four-elements .select-custom,
  .four-elements .box-custom,
  .four-elements .input-custom,
  .select-custom,
  .btn-custom {
    font-size: 80%;
    width: 100%;
    margin-bottom: 1px;
    border-radius: 0;
    box-shadow: none;
  }
  .btn-custom:hover {
    box-shadow: none;
  }
  .select-selected {
    box-shadow: none;
    border-radius: 0;
  }
  .btn-group-custom {
    margin: 0;
  }
  .four-elements .input-custom > input {
    font-size: 12px;
  }
  h2.context-main-title {
    color: #fff;
    letter-spacing: 0.48pt;
    text-align: left;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 0;
    background-color: #bc201a;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding: 5.53% 2.407% 5.53% 14.905%;
    background-repeat: no-repeat;
    background-position: 4.875% center;
    -webkit-transition: background 0.6s, color 0.6s, font-size 0.6s;
    -moz-transition: background 0.6s, color 0.6s, font-size 0.6s;
    -ms-transition: background 0.6s, color 0.6s, font-size 0.6s;
    -o-transition: background 0.6s, color 0.6s, font-size 0.6s;
    transition: background 0.6s, color 0.6s, font-size 0.6s;
    background-size: 25px 25px;
  }
  h2#context_title_station.context-main-title {
    background-image: url("/common/img/ico-info.svg");
  }
  h2#context_title_data.context-main-title {
    background-image: url("/common/img/ico-data.svg");
  }
  h2#context_title_measures.context-main-title {
    background-image: url("/common/img/ico-measures.svg");
  }
  h2#context_title_diagnostic.context-main-title {
    background-image: url("/common/img/ico-diagnostic.svg");
  }
  h2#context_title_status.context-main-title {
    background-image: url("/common/img/ico-status.svg");
  }
  h2#context_title_hydrometer.context-main-title {
    background-image: url("/common/img/ico-hydrometer.svg");
  }
  h2#context_title_chart.context-main-title {
    background-image: url("/common/img/ico-chart-white.svg");
  }
  h2#context_title_datetime.context-main-title {
    background-image: url("/common/img/ico-dataora.svg");
  }
  h2#context_title_systemlog.context-main-title {
    background-image: url("/common/img/ico-syslog.svg");
  }
  h2#context_title_modemlog.context-main-title {
    background-image: url("/common/img/ico-modlog.svg");
  }
  h2#context_title_gauge_reset.context-main-title {
    background-image: url("/common/img/ico-rainreset.svg");
  }
  h2#context_title_media.context-main-title,
  h2#context_title_photolist.context-main-title {
    display: block;
    background-image: url("/common/img/ico-media.svg");
  }
  .custom-table-container {
    padding: 4.5675% 4.5675% 1.565%;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-bottom: 1px;
    box-shadow: none;
  }
  .custom-table-container.no-border.bottom.mobile {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .custom-table-container tr th {
    overflow-wrap: break-word;
  }
  .custom-table-container table.table td {
    padding: 12.5px 0px;
    font-size: 12px;
    line-height: 14px;
  }
  .custom-table-container table.table tr.clickable td {
    padding: 12.5px 0px 12.5px 5px;
  }
  .custom-table-container table.table thead tr th {
    padding: 0 0 12.5px 0;
  }
  .custom-table-container table.table.tbl-data thead tr th {
    padding: 0 0 12.5px 5px;
  }
  .custom-table-container .icon-chart {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
  }
  .custom-table-container table.table th.datetime,
  .custom-table-container table.table td.datetime {
    color: #9095ad;
  }
  .custom-table-container table.table tr.clickable:hover td.datetime {
    color: rgba(144, 149, 173, 0.71);
  }
  .custom-table-container table.table td.empty-row {
    display: none;
  }
  .custom-table-container table.table tr td:last-child,
  .custom-table-container table.table tr th:last-child {
    text-align: right;
  }
  .custom-table-container table.table.tbl-statusVersion td,
  .custom-table-container table.table.tbl-statusInfo td {
    width: auto;
  }
  .info-time,
  #separator-line,
  #navbarSupportedContent,
  #top_menu.navbar-light .navbar-brand,
  .title-big {
    display: none !important;
  }
  #logo_top_mobile {
    display: block;
    margin: 0 0 3.919%;
  }
  #logo_top_mobile img {
    display: block;
    margin: 0 auto;
  }
  .info-station-mobile,
  .info-time-mobile,
  #top_menu.navbar-expand > .container-fluid {
    display: block;
    -webkit-transition: display 0.6s;
    -moz-transition: display 0.6s;
    -ms-transition: display 0.6s;
    -o-transition: display 0.6s;
    transition: display 0.6s;
  }
  #top_menu.navbar {
    height: 151px;
  }
  #sidebarCollapse {
    top: 176px;
  }
  #content .data {
    padding: 5.21% 3.544%;
  }
  .title-bigger,
  .active .title-bigger {
    font-size: 34px;
    margin-bottom: 1.685%;
    text-align: center;
  }
  .station-summary {
    margin-bottom: 2.125%;
    font-size: 15px;
  }
  .measure,
  .small .measure {
    font-size: 38px;
  }
  .unit,
  .small .unit {
    font-size: 20px;
  }
  #sidebar ul li a {
    margin: 0 13px 5px 12px;
    background-position: 7.125%;
    padding: 12px 10px 12px 16.385%;
    border-radius: 4pt;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.10196078431372549);
  }
  #sidebar ul li a span {
    padding-left: 10px;
    line-height: 19px;
    font-size: 15px;
    letter-spacing: 0.48pt;
  }
  #sidebar ul li a::before {
    height: 48px;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }
  #sidebar .sidebar-header {
    padding: 60px 36px 36px 29px;
  }
  #sidemenu_maintenance_submenu,
  #sidemenu_service_submenu,
  #sidemenu_config_submenu {
    margin-left: 0;
  }
  #sidebar ul li ul li a {
    padding: 12px 10px 12px 30%;
    background-position: 22%;
  }
  .sidemenu-mobile-obj {
    display: block;
  }
  #sidebar #cae_logo {
    padding-bottom: 0;
    margin-bottom: 7.5%;
  }
  .calendar-container {
    background: #efefef;
    padding-top: 5.05%;
  }
  .custom-calendar .fc-content {
    padding: 8.795% 3.145% 3.9275%;
    background-color: #efefef;
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.0392156862745098);
  }
  .custom-calendar .fc-widget-header {
    padding: 5.035% 2px 5.705%;
    border-top: 1px solid #d2d3d9;
    border-bottom: 1px solid #d2d3d9;
    border-left: 0;
    border-right: 0;
    font-size: 11px;
    color: #9095ad;
    font-family: RobotoRegular;
    font-weight: 700;
  }
  .custom-calendar.fc td {
    vertical-align: middle;
  }
  .custom-calendar .fc-widget-header.fc-first {
    border-top-left-radius: 0.25rem;
    border-left: 1px solid #d2d3d9;
  }
  .custom-calendar .fc-widget-header.fc-last {
    border-top-right-radius: 0.25rem;
    border-right: 1px solid #d2d3d9;
  }
  .custom-calendar .fc-content {
    color: #161c21;
    font-weight: 700;
  }
  .custom-calendar .fc-content .fc-view {
    overflow: visible;
  }
  .custom-calendar .fc-grid .fc-other-month .fc-day-number {
    opacity: 0;
  }
  .custom-calendar .fc-widget-content {
    border: 1px solid rgba(210, 211, 217, 0.7);
  }
  .custom-calendar .fc-widget-content .fc-day-content,
  .custom-event.fc-event {
    display: none;
  }
  .custom-calendar .fc-widget-content.fc-first {
    position: relative;
  }
  .custom-calendar .fc-widget-content.fc-first .fc-day-number {
    position: absolute;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .custom-calendar .fc-state-highlight > div:not(.event-counter) {
    background: transparent;
  }
  .custom-calendar .fc-state-highlight {
    border-radius: 0;
    background: #9d1b17;
  }
  .custom-calendar .fc-grid .fc-state-highlight .fc-day-number {
    background: transparent;
  }
  .custom-calendar .fc-header-right,
  .custom-calendar .fc-header-left,
  .active .custom-calendar .fc-header-right,
  .active .custom-calendar .fc-header-left {
    width: 10%;
  }
  .custom-calendar .fc-header-center,
  .active .custom-calendar .fc-header-center {
    width: 80%;
  }
  .custom-calendar .icon-Arrow-Left,
  .custom-calendar .icon-Arrow-Right {
    box-shadow: none;
    background: transparent;
    border-radius: 0;
    color: #161c21;
    width: 100%;
    height: 100%;
    -moz-transform: scale(1.25);
    -webkit-transform: scale(1.25);
    -o-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25);
    font-weight: 700;
  }
  .custom-calendar .fc-header-title h2,
  .active .custom-calendar .fc-header-title h2 {
    color: #161c21;
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: 0.42px;
  }
  .custom-calendar .fc-state-hover {
    color: rgba(188, 32, 26, 0.71);
  }
  .custom-calendar .fc-header .fc-button {
    margin: 7% 0;
  }
  .custom-calendar .fc-grid .fc-day-number {
    font-size: 13px;
  }
  .custom-calendar .fc-widget-content.withPhoto[event-number] {
    position: relative;
  }
  .event-counter {
    display: block;
  }
  .inPage .graph {
    min-height: 200px;
  }
  .tab-custom .nav.nav-tabs .nav-item {
    margin-bottom: 1px;
    width: 50%;
  }
  .tab-custom .nav.nav-tabs .nav-item .nav-link:hover,
  .tab-custom .nav.nav-tabs .nav-item .nav-link,
  .tab-custom .nav.nav-tabs .nav-item .nav-link.active {
    border-radius: 0;
    background-color: #fff;
    color: transparent;
    background-position: center center;
    padding: 2.9175% 2.5%;
  }
  .tab-custom .nav.nav-tabs .nav-item:first-child .nav-link {
    border-right: 1px solid #efefef;
  }
  .tab-custom .tab-content .tab-pane {
    border-top-right-radius: 0;
    box-shadow: none;
  }
  .modal-custom.gallery .modal-body a#modal_btn_next {
    right: 4.5%;
  }
  .modal-custom.gallery .modal-body a#modal_btn_prev {
    left: 4.5%;
  }
  .btn-custom.red-button {
    background-color: #fff;
    color: rgba(77, 79, 92, 0.5);
  }
  .btn-custom.red-button:hover {
    background-image: url(/common/img/ico-refresh-red.svg);
    background-color: #fff;
  }

  .btn-custom.red-button-download {
    background-color: #fff;
    color: rgba(77, 79, 92, 0.5);
  }

  .btn-custom.red-button-download:hover {
    background-image: url(/common/img/ico-download-data.png);
    background-color: #fff;
  }

  .button-download {
    background-image: url("/common/img/ico-download-generic-white.svg");
    top: 25%;
  }
  .button-download.csv {
    background-image: url("/common/img/ico-download-csv-white.svg");
  }
  .button-download.png {
    background-image: url("/common/img/ico-download-png-white.svg");
  }
  .button-download.jpg {
    background-image: url("/common/img/ico-download-jpg-white.svg");
  }
}

.scroller-container {
  position: fixed;
  bottom: 40px;
  right: 15px;
  border-radius: 50px;
  text-align: center;
}

.scrolling-action {
  background-image: url(/common/img/ico-cfg-scroll-up.png);
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
}

.scrolling-action:hover {
  background-image: url(/common/img/ico-cfg-scroll-up-hover.png);
}

@media (max-width: 414px) {
  .station-summary {
    font-size: 14px;
  }
  .measure,
  .small .measure {
    font-size: 34px;
  }
  .unit,
  .small .unit {
    font-size: 18px;
  }
  .title-bigger,
  .active .title-bigger {
    font-size: 32px;
  }
  #sidebarCollapse {
    top: 173px;
    padding: 10px 13px;
    background-size: 11px 11px;
  }
  .medium .station-box-header {
    padding: 0% 3.125% 2.5% 0;
  }
  .large .station-box-header {
    padding: 0% 5.5% 2.75% 0;
  }
  .event-counter {
    font-size: 8pt;
    width: 18px;
    height: 18px;
    top: 19%;
    right: 19%;
  }
  .station-box.medium a.station-link,
  .station-box.large a.station-link,
  .station-box.small a.station-link {
    font-size: 7pt;
  }
}

@media (max-width: 375px) {
  h2.context-main-title {
    font-size: 14px;
    line-height: 15px;
  }
  .custom-table-container table.table thead tr th {
    font-size: 13px;
    line-height: 14px;
  }
  .station-summary {
    font-size: 13px;
  }
  .measure {
    font-size: 30px;
  }
  .unit {
    font-size: 16px;
  }
  #sidebarCollapse {
    top: 170px;
    padding: 9px 12px;
    background-size: 10px 10px;
  }
  .title-bigger,
  .active .title-bigger {
    font-size: 30px;
  }
  .custom-table-container .icon-chart {
    width: 17px;
    height: 17px;
    background-size: 17px 17px;
  }
  .inPage .graph {
    min-height: 175px;
  }
  .modal-custom.gallery .modal-body a {
    max-width: 18px;
  }
  .modal-custom.gallery .modal-body a#modal_btn_next {
    right: 5.5%;
  }
  .modal-custom.gallery .modal-body a#modal_btn_prev {
    left: 5.5%;
  }
  #formContent {
    top: 60%;
  }
  #sidebar .sidebar-header {
    padding: 27.5px 36px 25px 29px;
  }
  #sidebar ul li a span {
    font-size: 14px;
  }
  .event-counter {
    font-size: 7pt;
    width: 18px;
    height: 18px;
    top: 21%;
    right: 20%;
  }
}

@media screen and (max-width: 350px) {
  .event-counter {
    width: 15px;
    height: 15px;
    top: 20%;
    right: 18%;
  }
}

@media (max-height: 600px) {
  .modal.show.modal-custom .modal-dialog {
    height: 100%;
  }
}

/* Mobile specific */
@media screen and (max-width: 846px) and (max-height: 414px) and (orientation: landscape),
  screen and (max-width: 823px) and (max-height: 411px) and (orientation: landscape),
  screen and (max-width: 812px) and (max-height: 375px) and (orientation: landscape),
  screen and (max-width: 736px) and (max-height: 414px) and (orientation: landscape),
  screen and (max-width: 667px) and (max-height: 375px) and (orientation: landscape),
  screen and (max-width: 568px) and (max-height: 375px) and (orientation: landscape) {
  #sidebar #cae_logo {
    padding-bottom: 0;
    margin-bottom: 7.5%;
  }
  #sidebar.active {
    margin-left: 0;
    width: 100%;
  }
  #sidebar .sidebar-header > a {
    display: block;
    margin: 0 auto;
    text-align: center;
  }
  #login-right #logo_form_mobile,
  #login-right #logo_form_mobile_cae {
    display: block;
  }
  #login-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
  #login-left,
  #formContent h1,
  #formContent p {
    display: none;
  }
  #login-right .wave-content {
    display: block;
    background: rgb(188, 32, 26);
    background: linear-gradient(20deg, rgba(188, 32, 26, 1) 35%, #3e0d0d 100%);
  }
  #formContent {
    top: 55%;
    left: 25%;
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    margin: 0 auto;
    max-width: 50%;
  }
  #formContent input[type="submit"],
  #formContent input[type="text"],
  #formContent input[type="password"],
  #formContent input[type="button"] {
    margin: 2.0295% 0px;
    padding: 17px 16px;
    width: 100%;
    color: #161c21;
    font-size: 16px;
    line-height: 19px;
    font-weight: 400;
    letter-spacing: 0.48px;
    background-color: #fff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.16);
  }
  #formContent input[type="submit"],
  #formContent input[type="button"] {
    margin: 7.25% 0 0;
    font-weight: 600;
    color: #bc201a;
    text-align: center;
  }
  #formContent input[type="text"]:placeholder,
  #formContent input[type="password"]:placeholder {
    color: #161c21;
  }
  #login_error {
    color: #fff;
    position: absolute;
    top: 57.5%;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 50%;
    width: 100%;
  }
  .fadeIn.first.delay-mobile {
    -webkit-animation-delay: 0.7s;
    -moz-animation-delay: 0.7s;
    animation-delay: 0.7s;
  }
  .fadeIn.second.delay-mobile {
    -webkit-animation-delay: 0.9s;
    -moz-animation-delay: 0.9s;
    animation-delay: 0.9s;
  }
  .fadeIn.third.delay-mobile {
    -webkit-animation-delay: 1.2s;
    -moz-animation-delay: 1.2s;
    animation-delay: 1.2s;
  }
  .fadeIn.fourth.delay-mobile {
    -webkit-animation-delay: 1.5s;
    -moz-animation-delay: 1.5s;
    animation-delay: 1.5s;
  }
  .fadeIn.fifth.delay-mobile {
    -webkit-animation-delay: 1.8s;
    -moz-animation-delay: 1.8s;
    animation-delay: 1.8s;
  }
  .info-time .date,
  .info-time .time,
  .info-time .slash {
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
  }
  .info-time {
    height: 22px;
    line-height: 1;
  }
  #top_menu.navbar {
    padding: 8px 0.62125%;
    height: 60px;
  }
  .picker-container .picker-close {
    width: 4%;
    right: 1.5%;
  }
  .custom-calendar .fc-header .fc-button {
    margin: 2.05% 0;
  }
  .custom-calendar .icon-Arrow-Left,
  .custom-calendar .icon-Arrow-Right {
    height: 24px;
    width: 26px;
    font-size: 26px;
    line-height: 20px;
  }
  .custom-calendar .fc-content {
    padding: 1.375% 1%;
  }
  .modal.show.modal-custom .modal-dialog {
    max-width: 390px;
    height: auto;
  }
  .modal-custom.gallery .modal-footer,
  .modal-custom.gallery .modal-header {
    padding: 0.125rem 1.875rem;
    font-size: 75%;
  }
  .modal-custom.gallery .modal-body {
    padding: 0.25rem 1.875rem;
  }
}

@media screen and (max-width: 667px) and (max-height: 375px) and (orientation: landscape) {
  #login_error {
    top: 58.5%;
    padding: 0;
  }
}
