:root {
    --bg-dark-cyan: #163e4a;
    --bg-light-cyan: #366675;
    --bg-orange: #e55f04;
    --bg-light-orange: #ffa263;
    --bg-very-light-orange: #ffead5;
    --bg-red: #990000;
    --bg-light-red: #fd5858;
    --bg-yellow: #ffc107;
    --bg-light-yellow: #ffe38f;
    --bg-white: #ffffff;
    --bg-light-gray: #cccccc;
    --bg-very-light-gray: #cfcfcf;
    --bg-green: #146c43;
    --bg-light-green: #199a5e;
    --bg-black: #000000;
}

@font-face {
    font-family: Panton;
    src: url('../fonts/Panton_Regular.otf');
}

@font-face {
    font-family: Panton;
    font-weight: bold;
    src: url('../fonts/Panton_Bold.otf');
}

html,
body {
    height: 100%;
    color: var(--bg-dark-cyan);
    font-family: Panton, Arial;
    font-size: 16px;
    letter-spacing: 0.5px;
    padding-top: 30px;
}

body {
  /* display: flex;  */
  align-items: center;
  background: rgb(204,204,204) no-repeat fixed top;
  background: -moz-linear-gradient(180deg, rgba(204,204,204,1) 0%, rgba(255,255,255,1) 100%) no-repeat fixed top;
  background: -webkit-linear-gradient(180deg, rgba(204,204,204,1) 0%, rgba(255,255,255,1) 100%) no-repeat fixed top;
  background: linear-gradient(180deg, rgba(204,204,204,1) 0%, rgba(255,255,255,1) 100%) no-repeat fixed center;
}

/*
 * Sidebar
 */

.sidebar {
    position: fixed;
    top: 0;
    /* rtl:raw:
  right: 0;
  */
    bottom: 0;
    /* rtl:remove */
    left: 0;
    z-index: 100; /* Behind the navbar */
    padding: 4px 0 0 0; /* Height of navbar */
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

@media (max-width: 767.98px) {
  .sidebar {
    top: 57px;
    padding: 40px 0 0; /* Height of navbar */
  }
}

.sidebar-sticky {
  position: relative;
  top: 0;
  height: calc(100vh - 48px);
  padding-top: .5rem;
  overflow-x: hidden;
  overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}

.sidebar .nav-link {
  color: #aaaaaa;
  text-shadow: 0 3px 4px #333333;
  background: var(--bg-dark-cyan);
  border-bottom: 1px solid var(--bg-dark-cyan);
  background: -moz-linear-gradient(#366675,var(--bg-dark-cyan));
  background: -webkit-linear-gradient(#366675,var(--bg-dark-cyan));
  background: linear-gradient(#366675,var(--bg-dark-cyan));
}
  
.sidebar .nav-link .feather {
  margin-right: 4px;
  color: #727272;
}

.sidebar .nav-link:hover {
  color:white;
  border-bottom: 1px solid #e55f04;
  background: #081b20;
  background: -moz-linear-gradient(#081b20,#366675);
  background: -webkit-linear-gradient(#081b20,#366675);
  background: linear-gradient(#081b20,#366675);
}

.sidebar .nav-link.active {
  color: white;
  border-bottom: 1px solid #e55f04;
  background: #e55f04;
  background: -moz-linear-gradient(#ffa263,#e55f04);
  background: -webkit-linear-gradient(#ffa263,#e55f04);
  background: linear-gradient(#ffa263,#e55f04);
}

.sidebar .nav-link:hover .feather,
.sidebar .nav-link.active .feather {
  color: inherit;
}

.sidebar .nav .nav-link .sb-sidenav-collapse-arrow {
  transition: transform 0.15s ease; 
  float: right;
}

.sidebar .nav .nav-link.collapsed .sb-sidenav-collapse-arrow {
  transform: rotate(-90deg);
}

.sidebar .nav .nav-link-levels {
  font-size: 15px;
  display: block;
  padding: 0.5rem 1rem;
  color: #aaaaaa;
  text-shadow: 0 3px 4px #333333;
  text-decoration: none;
  background: #3a3f44;
} 

.sidebar .nav .nav-link-levels:hover {
  display: block;
  color: #ffffff;
  background: #272b30;
} 

.sidebar .nav .nav-link-levels:last-child {
  border-bottom: none;
}

.sidebar-heading {
  font-size: .75rem;
  text-transform: uppercase;
}

/* Navbar */

.navbar-brand {
  /* padding-top: .75rem;
  padding-bottom: .75rem; */
  padding: 0;
  font-size: 1rem;
  /* background-color: white;
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25); */
}

.navbar .navbar-toggler {
  top: .25rem;
  right: 1rem;
}

.navbar .form-control {
  padding: .75rem 1rem; 
 /*  border-width: 0;
  border-radius: 0; */
}

.form-control-dark {
  color: #ffffff;
  background-color: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .1);
}

.form-control-dark:focus {
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
}

.form-control-gray {
  color: #ffffff;
  background-color: rgb(255, 255, 255,1);
  border: 1px solid rgb(116, 116, 116,0.25);
}

.form-control-gray:hover {
  color: #fff;
  background-color: rgb(116, 116, 116,0.25);
}


/****************************************************************/

#app-version-footer {
  position: fixed;
  bottom: 20px;
  width: 100%;
} 

#app-version-footer-sidebar {
  bottom: 20px;
  position: fixed;
  color: #cccccc;
  font-size: 14px;
} 

.form-control, .form-select {
  border-width: 2px;
  border-radius: 10px;
  background-color: var(--bg-white);
}

.form-control:hover, .form-control:active,
.form-select:hover, form-select:active {
  border-color: var(--bg-dark-cyan);
  color: var(--bg-dark-cyan);
}

/*#region Botões*/

.btn {
  border-radius: 10px;
}

.btn-very-dark-cyan {
  color: white;
  border: 2px solid var(--bg-dark-cyan);
  background-color: var(--bg-dark-cyan);
  background: -moz-linear-gradient(var(--bg-light-cyan),var(--bg-dark-cyan));
  background: -webkit-linear-gradient(var(--bg-light-cyan),var(--bg-dark-cyan));
  background: linear-gradient(var(--bg-light-cyan),var(--bg-dark-cyan));
}

.btn-very-dark-cyan:hover {
  color: white;
  border: 2px solid var(--bg-dark-cyan);
  background-color: var(--bg-light-cyan);
  background: -moz-linear-gradient(var(--bg-dark-cyan),var(--bg-light-cyan));
  background: -webkit-linear-gradient(var(--bg-dark-cyan),var(--bg-light-cyan));
  background: linear-gradient(var(--bg-dark-cyan),var(--bg-light-cyan));
}

.btn-very-dark-cyan:focus {
  background-color: var(--bg-dark-cyan);
}

.btn-very-dark-cyan:active {
  background-color: var(--bg-dark-cyan);
}

.btn-very-dark-cyan:active:focus {
  background-color: var(--bg-white);
}

.btn-very-dark-cyan-outline {
  color: var(--bg-dark-cyan);
  border-color: var(--bg-dark-cyan);
}

.btn-very-dark-cyan-outline:hover {
  color: white;
  background-color: var(--bg-dark-cyan);
  border-color: var(--bg-dark-cyan);
}


.btn-green {
  color: white;
  border: 2px solid var(--bg-green);
  background-color: var(--bg-green);
  background: -moz-linear-gradient(var(--bg-light-green),var(--bg-green));
  background: -webkit-linear-gradient(var(--bg-light-green),var(--bg-green));
  background: linear-gradient(var(--bg-light-green),var(--bg-green));
}

.btn-green:hover {
  color: white;
  border: 2px solid var(--bg-green);
  background-color: var(--bg-green);
  background: -moz-linear-gradient(var(--bg-green),var(--bg-light-green));
  background: -webkit-linear-gradient(var(--bg-green),var(--bg-light-green));
  background: linear-gradient(var(--bg-green),var(--bg-light-green));
}

.btn-green:focus {
  background-color: var(--bg-green);
}

.btn-green:active {
  background-color: var(--bg-green);
}

.btn-green:active:focus {
  background-color: var(--bg-green);
}


.btn-orange {
  color: white;
  border: 2px solid var(--bg-orange);
  background-color: var(--bg-orange);
  background: -moz-linear-gradient(var(--bg-light-orange),var(--bg-orange));
  background: -webkit-linear-gradient(var(--bg-light-orange),var(--bg-orange));
  background: linear-gradient(var(--bg-light-orange),var(--bg-orange));
}

.btn-orange:hover {
  color: white;
  border: 2px solid var(--bg-orange);
  background-color: var(--bg-orange);
  background: -moz-linear-gradient(var(--bg-orange),var(--bg-light-orange));
  background: -webkit-linear-gradient(var(--bg-orange),var(--bg-light-orange));
  background: linear-gradient(var(--bg-orange),var(--bg-light-orange));
}

.btn-orange:focus {
  background-color: var(--bg-orange);
}

.btn-orange:active {
  background-color: var(--bg-orange);
}

.btn-orange:active:focus {
  background-color: var(--bg-orange);
}


.btn-red {
  color: white;
  border: 2px solid var(--bg-red);
  background-color: var(--bg-red);
  background: -moz-linear-gradient(var(--bg-light-red),var(--bg-red));
  background: -webkit-linear-gradient(var(--bg-light-red),var(--bg-red));
  background: linear-gradient(var(--bg-light-red),var(--bg-red));
}

.btn-red:hover {
  color: white;
  border: 2px solid var(--bg-red);
  background-color: var(--bg-red);
  background: -moz-linear-gradient(var(--bg-red),var(--bg-light-red));
  background: -webkit-linear-gradient(var(--bg-red),var(--bg-light-red));
  background: linear-gradient(var(--bg-red),var(--bg-light-red));
}

.btn-red:focus {
  background-color: var(--bg-red);
}

.btn-red:active {
  background-color: var(--bg-red);
}

.btn-red:active:focus {
  background-color: var(--bg-red);
}



.btn-yellow {
    color: var(--bg-dark-cyan);
    border: 2px solid var(--bg-yellow);
    background-color: var(--bg-yellow);
    background: -moz-linear-gradient(var(--bg-light-yellow),var(--bg-yellow));
    background: -webkit-linear-gradient(var(--bg-light-yellow),var(--bg-yellow));
    background: linear-gradient(var(--bg-light-yellow),var(--bg-yellow));
}

.btn-yellow:hover {
    color: var(--bg-dark-cyan);
    border: 2px solid var(--bg-yellow);
    background-color: var(--bg-yellow);
    background: -moz-linear-gradient(var(--bg-yellow),var(--bg-light-yellow));
    background: -webkit-linear-gradient(var(--bg-yellow),var(--bg-light-yellow));
    background: linear-gradient(var(--bg-yellow),var(--bg-light-yellow));
}

.btn-yellow:focus {
    background-color: var(--bg-yellow);
}

.btn-yellow:active {
    background-color: var(--bg-yellow);
}

.btn-yellow:active:focus {
    background-color: var(--bg-yellow);
}


.btn-white {
    color: var(--bg-dark-cyan);
    border: 2px solid var(--bg-light-gray);
    background-color: var(--bg-white);
    background: -moz-linear-gradient(var(--bg-white),var(--bg-very-light-gray));
    background: -webkit-linear-gradient(var(--bg-white),var(--bg-very-light-gray));
    background: linear-gradient(var(--bg-white),var(--bg-very-light-gray));
}

    .btn-white:hover {
        color: var(--bg-dark-cyan);
        border: 2px solid var(--bg-light-gray);
        background-color: var(--bg-white);
        background: -moz-linear-gradient(var(--bg-very-light-gray),var(--bg-white));
        background: -webkit-linear-gradient(var(--bg-very-light-gray),var(--bg-white));
        background: linear-gradient(var(--bg-very-light-gray),var(--bg-white));
    }

.btn-white:focus {
    background-color: var(--bg-white);
}

.btn-white:active {
background-color: var(--bg-white);
}

.btn-white:active:focus {
    background-color: var(--bg-white);
}



/*#endregion Botões*/

/*#region Links*/

.link-very-dark-cyan {
  color: var(--bg-dark-cyan);
}

.link-very-dark-cyan:hover, .link-very-dark-cyan:focus {
  color: var(--bg-orange);
}
/*#endregion Links*/

/*#region Cores */

.text-very-dark-cyan {
    color: var(--bg-dark-cyan);
}

/*#endregion Cores*/

/*#region CheckBox 
https://bootsnipp.com/snippets/Zk2Pz */

.funkyradio div {
    clear: both;
    overflow: hidden;
}

.funkyradio-disabled {
    opacity: 0.5;
}

.funkyradio label {
    width: 100%;
    border-radius: 10px;
    border: 2px solid var(--bg-white);
    background: var(--bg-white);
    font-size: 1.25rem;
}

.funkyradio-tabs{
    border: 2px solid #ced4da;
    border-radius: 10px;
}

.funkyradio input[type="radio"]:empty,
.funkyradio input[type="checkbox"]:empty {
    display: none;
}

.funkyradio input[type="radio"]:empty ~ label,
.funkyradio input[type="checkbox"]:empty ~ label {
    position: relative;
    line-height: 2.3em;
    text-indent: 3.25em;
    margin-top: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.funkyradio input[type="radio"]:empty ~ label:before,
.funkyradio input[type="checkbox"]:empty ~ label:before {
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    content: '';
    width: 2.5em;
    background: #D1D3D4;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

    .funkyradio input[type="radio"]:hover:not(:checked) ~ label,
    .funkyradio input[type="checkbox"]:hover:not(:checked) ~ label {
        /*    color: #888;*/
    }

.funkyradio input[type="radio"]:hover:not(:checked) ~ label:before,
.funkyradio input[type="checkbox"]:hover:not(:checked) ~ label:before {
    content: '';
    text-indent: .9em;
    color: var(--bg-white);
}

.funkyradio input[type="radio"]:checked ~ label,
.funkyradio input[type="checkbox"]:checked ~ label {
/*   color: #777;*/
}

    .funkyradio input[type="checkbox"]:checked ~ label:before {
        content: '✔';
        text-indent: .9em;
        color: #333;
        background-color: #ccc;
    }

    .funkyradio input[type="radio"]:checked ~ label:before {
        content: '⚫';
        text-indent: .6em;
        color: #333;
        background-color: transparent;
    }

.funkyradio input[type="radio"]:focus ~ label:before,
.funkyradio input[type="checkbox"]:focus ~ label:before {
  /*  box-shadow: 0 0 0 3px #999;*/
}

.funkyradio-default input[type="radio"]:checked ~ label:before,
.funkyradio-default input[type="checkbox"]:checked ~ label:before {
    color: #333;
    background-color: #ccc;
}

.funkyradio-primary input[type="radio"]:checked ~ label:before,
.funkyradio-primary input[type="checkbox"]:checked ~ label:before {
    color: #fff;
    background-color: #337ab7;
}

.funkyradio-success input[type="radio"]:checked ~ label:before,
.funkyradio-success input[type="checkbox"]:checked ~ label:before {
    color: #fff;
    background-color: #5cb85c;
}

.funkyradio-danger input[type="radio"]:checked ~ label:before,
.funkyradio-danger input[type="checkbox"]:checked ~ label:before {
    color: #fff;
    background-color: #d9534f;
}

.funkyradio-warning input[type="radio"]:checked ~ label:before,
.funkyradio-warning input[type="checkbox"]:checked ~ label:before {
    color: #fff;
    background-color: #f0ad4e;
}

.funkyradio-info input[type="radio"]:checked ~ label:before,
.funkyradio-info input[type="checkbox"]:checked ~ label:before {
    color: #fff;
    background-color: #5bc0de;
}


/*#endregion CheckBox*/
/*#region Dropdown*/
.dropdown-menu-very-dark-cyan {
    width: 100%;
    background-color: #fff;
    border: 2px solid #fff;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.30) 0 0 20px 0px;
}
.dropdown-menu-very-dark-cyan .dropdown-item {
  color: var(--bg-dark-cyan);
}
.dropdown-menu-very-dark-cyan .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {
  color: #fff;
  background-color: var(--bg-dark-cyan);
}
.dropdown-menu-very-dark-cyan .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
  color: #fff;
  background-color: var(--bg-dark-cyan);
}
.dropdown-menu-very-dark-cyan .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
  color: #adb5bd;
}
.dropdown-menu-very-dark-cyan .dropdown-divider {
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-very-dark-cyan .dropdown-item-text {
  color: #dee2e6;
}
.dropdown-menu-very-dark-cyan .dropdown-header {
  color: #adb5bd;
}
/*#endregion Dropdown*/

/*#region Cards*/

.card {
  border: 2px solid white;
  background-color: #e1e1e1;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.20) 0 0 15px 0px;
}
.card-body {
  padding: 20px;
}

.card hr {
  opacity:100;
  border-top: 2px solid white;
  border-bottom: none;
}

/*#endregion Cards*/

/*#region Nav Tabs*/

.nav-tabs {
    /*    border-bottom: 2px solid var(--bg-white);*/
    background: var(--bg-orange);
    background: -moz-linear-gradient(#ffa263,#e55f04);
    background: -webkit-linear-gradient(#ffa263,#e55f04);
    background: linear-gradient(#ffa263,#e55f04);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 10px;
    border: none;
}

.nav-tabs .nav-link {
    margin-bottom: -10px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    margin-right: 10px;
    color: var(--bg-white);
    border: none;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    padding: 10px 20px;
}

.nav-tabs .nav-link:hover {
    background-color: rgba(0, 0, 0, 0.15);
}

.nav-tabs .nav-link:focus {
    color: var(--bg-white);
}

.nav-tabs .nav-link.disabled {
    color: var(--bg-dark-cyan);
    background-color: var(--bg-light-gray);
    border-color: var(--bg-light-gray);
  
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    background: var(--bg-white);
    isolation: isolate;
    color: var(--bg-dark-cyan);
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.tab-content {
    background: var(--bg-white);
    border: 1px solid var(--bg-orange);
    border-top: none;
    padding: 20px;
    /*border: 2px solid var(--bg-white);*/
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

/*#endregion Nav Tabs*/

/* Gráficos */

.chart-container {
    border: 2px solid #bbb;
    border-radius: 10px;
    width: 100%;
    margin: 10px auto;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.20) 0 0 20px 0px;  
}


/*#region Login*/
.form-signin {
  width: 100%;  
  background: white;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 30px;  
  box-shadow: rgba(0, 0, 0, 0.3) 0 10px 40px 0px;
}
.form-signin .input-user {
  margin-top: 30px;
}

.form-signin .input-user, .form-signin .input-password {
  margin-bottom: 30px;
}

.form-signin .background {
  -webkit-border-top-left-radius: 30px;
  -webkit-border-bottom-left-radius: 30px;
  -moz-border-radius-topleft: 30px;
  -moz-border-radius-bottomleft: 30px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  min-height: 500px;
  background: rgb(54,102,117);
  background: -moz-linear-gradient(180deg, rgba(54,102,117,1) 0%, rgba(22,62,74,1) 100%);
  background: -webkit-linear-gradient(180deg, rgba(54,102,117,1) 0%, rgba(22,62,74,1) 100%);
  background: linear-gradient(180deg, rgba(54,102,117,1) 0%, rgba(22,62,74,1) 100%);
}

.form-signin .login {
  padding: 60px 70px 60px 45px;
}
.form-signin .background img {
  margin: 145px 0;
}

.form-signin .login .forgot-password {
  padding-top: 20px;
}

.form-signin .login .new-account {
  padding-top: 20px;
}

/* .form-signin .checkbox {
  font-weight: 400;
}

.form-signin .form-floating:focus-within {
  z-index: 2;
}

.form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
} */
/*#endregion Login*/


/*#region Fundos */

.bg-very-dark-cyan {
  background: var(--bg-dark-cyan);
  background: -moz-linear-gradient(var(--bg-dark-cyan), var(--bg-light-cyan));
  background: -webkit-linear-gradient(var(--bg-dark-cyan), var(--bg-light-cyan));
  background: linear-gradient(var(--bg-dark-cyan), var(--bg-light-cyan));
    /* background: rgb(22,62,74);
  background: -moz-linear-gradient(180deg, rgba(22,62,74,1), rgba(54,102,117,1));
  background: -webkit-linear-gradient(180deg, rgba(22,62,74,1), rgba(54,102,117,1));
  background: linear-gradient(180deg, rgba(22,62,74,1), rgba(54,102,117,1));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="var(--bg-dark-cyan);",endColorstr="#366675",GradientType=1); */
}
/*#endregion Fundos */


/* MEDIA QUERIES */
/* // X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  html,
  body {
      padding-top: 65px;
  }
  .form-signin .login {
    padding: 40px 30px;
  }

  .form-signin .background {
    min-height: 250px;
  }

  .form-signin .background img {
    margin: 60px 0;
    height: 150px;
  }

  .form-signin .background {
    -webkit-border-bottom-left-radius: 0;
    -webkit-border-top-left-radius: 30px;
    -webkit-border-top-right-radius: 30px;
    -moz-border-radius-topleft: 30px;
    -moz-border-radius-topright: 30px;
    -moz-border-radius-bottomleft: 30px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    max-height: 250px;
    background: rgb(54,102,117);
    background: -moz-linear-gradient(180deg, rgba(54,102,117,1) 0%, rgba(22,62,74,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(54,102,117,1) 0%, rgba(22,62,74,1) 100%);
    background: linear-gradient(180deg, rgba(54,102,117,1) 0%, rgba(22,62,74,1) 100%);
  }

  #app-version-footer-sidebar {
    width: 100%;
  }

}

/* // Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .form-signin .login {
    padding: 40px 30px;
  }

  .form-signin .background {
    min-height: 250px;
  }

  .form-signin .background img {
    margin: 60px 0;
    height: 150px;
  }

  .form-signin .background {
    -webkit-border-bottom-left-radius: 0;
    -webkit-border-top-left-radius: 30px;
    -webkit-border-top-right-radius: 30px;
    -moz-border-radius-topleft: 30px;
    -moz-border-radius-topright: 30px;
    -moz-border-radius-bottomleft: 30px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    background: rgb(54,102,117);
    background: -moz-linear-gradient(180deg, rgba(54,102,117,1) 0%, rgba(22,62,74,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(54,102,117,1) 0%, rgba(22,62,74,1) 100%);
    background: linear-gradient(180deg, rgba(54,102,117,1) 0%, rgba(22,62,74,1) 100%);
  }
}

/* // Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {

  .form-signin .login {
    padding: 40px 30px;
  }

  .form-signin .background {
    min-height: 250px;
  }

  .form-signin .background img {
    margin: 60px 0;
    height: 150px;
  }

  .form-signin .background {
    -webkit-border-bottom-left-radius: 0;
    -webkit-border-top-left-radius: 30px;
    -webkit-border-top-right-radius: 30px;
    -moz-border-radius-topleft: 30px;
    -moz-border-radius-topright: 30px;
    -moz-border-radius-bottomleft: 30px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    background: rgb(54,102,117);
    background: -moz-linear-gradient(180deg, rgba(54,102,117,1) 0%, rgba(22,62,74,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(54,102,117,1) 0%, rgba(22,62,74,1) 100%);
    background: linear-gradient(180deg, rgba(54,102,117,1) 0%, rgba(22,62,74,1) 100%);
  }
}

/* // Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {

}

/* // X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {

}


#myErrorModal .modal-content {
    background-color: #C61E1D;
    color: White;
}

#myErrorModal .modal-header {
    padding: 2px 10px;
    color: white;
    border: 0px;
    font-size: 8px;
}

#myErrorModal .modal-header button {
        background: none;
        color: inherit;
        border: none;
        padding: 0;
        font: inherit;
        cursor: pointer;
        outline: inherit;
        font-size: 20px;
}

/*#region Tables*/
table.tablePanoramaFavorito-bordered {
    width: calc(100% - 15px);
}

table.tablePanoramaFavorito-bordered thead {
    background: var(--bg-dark-cyan);
    background: -moz-linear-gradient(var(--bg-dark-cyan), var(--bg-light-cyan));
    background: -webkit-linear-gradient(var(--bg-dark-cyan), var(--bg-light-cyan));
    background: linear-gradient(var(--bg-dark-cyan), var(--bg-light-cyan));
    color: white;
    font-size: 15px;
    vertical-align: middle;
    height: 60px;
    border: 1px solid var(--bg-dark-cyan);
}

/* Round Corner for TOP LEFT COLUMN */

table.tablePanoramaFavorito-bordered thead tr:first-child th:first-child {
    border-top-left-radius: 10px;
}

/* Round Corner for TOP RIGHT COLUMN */

table.tablePanoramaFavorito-bordered thead tr:first-child th:last-child {
    border-top-right-radius: 10px;
}

/* Round Corner for BOTTOM LEFT COLUMN */

table.tablePanoramaFavorito-bordered tbody tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

/* Round Corner for BOTTOM RIGHT COLUMN */

table.tablePanoramaFavorito-bordered tbody tr:last-child td:last-child {
    border-bottom-right-radius: 15px;
}

table.tablePanoramaFavorito-bordered > tbody > tr {
    background-color: white;
}

table.tablePanoramaFavorito-bordered > tbody > tr:hover {
    background-color: var(--bg-very-light-orange);
}

table.tablePanoramaFavorito-bordered > tbody > tr > td {
    vertical-align: middle;
    border-top: none;
    border-bottom: 10px solid var( --bg-dark-cyan);
    border-right: none;
    border-left: none;
}

table.tablePanoramaFavorito-bordered > tbody {
    vertical-align: middle;
}

.page-item.active .page-link {
    background: var( --bg-dark-cyan);
    background-color: var( --bg-dark-cyan);
    border-color: var( --bg-dark-cyan);
}

.page-item .page-link {
    color: var( --bg-dark-cyan);
}

.rowTable {
    margin-top: 30px;
    margin-right: 10px;
}
.dataTables_filter, .dataTables_info {
    display: none;
}
/*#endregion Tables*/

.ui-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
}

.ui-autocomplete > li > div {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    color: #333333;
    white-space: nowrap;
}

.ui-state-hover,
.ui-state-active,
.ui-state-focus {
    text-decoration: none;
    color: #262626;
    background-color: #f5f5f5;
    cursor: pointer;
}

.ui-helper-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}


.select2-container--bootstrap .select2-selection--single {
    color: #212529;
    width: 100%;
    height: 48px;
    line-height: 1.42857143;
    padding: 6px 24px 6px 12px;
    border-width: 2px;
    border-radius: 10px;
}

.input-group > .select2-hidden-accessible:not(:first-child):not(:last-child) + .select2-container--bootstrap:last-child > .selection > .select2-selection,
.input-group > .select2-hidden-accessible:not(:first-child):not(:last-child) + .select2-container--bootstrap:last-child > .selection > .select2-selection.form-control {
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}

.select2-container--bootstrap .select2-selection {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    font-size: 20px;
}

/*#region Badgebox */

/* Hiding the checkbox, but allowing it to be focused */
.badgebox {
    opacity: 0;
}

    .badgebox + .badge {
        /* Move the check mark away when unchecked */
        text-indent: -999999px;
        /* Makes the badge width stay the same checked and unchecked */
        width: 27px;
        border: 1px solid var(--bg-black);
        color: var(--bg-black);
    }

    .badgebox:checked + .badge {
        /* Move the check mark back when checked */
        text-indent: 0;
    }

/*#endregion Badgebox */

/*#region Calendário */

.tui-full-calendar-layout {
    height: 100%;
    border-radius: 10px;
    border: 5px solid #fff;
    position: relative;
    box-sizing: border-box;
    padding: 5px;
    color: #000;
    box-shadow: rgba(0, 0, 0, 0.20) 0 0 15px 0px;
}

/*#endregion Calendário */