/*----------------------------------------------
    COMMON  STYLES
------------------------------------------------*/


body {
    position: relative;
    margin: 0;
    padding-bottom: 0;
    background-color: #fff !important;
    scrollbar-color: #e4e6e8 #fff !important;
    color: #313131;
    font-family: 'Roboto', sans-serif;
}


html {
    height: 100%;
    box-sizing: border-box;
    overflow-y: scroll;
    color: #303438;
}

#page-index {
    width: 100%;
    display: block;
    position: relative;
    top: 40px;
}

.text-center {
    text-align: center;
}

.plain-element {
    margin: 0px !important;
    padding: 0px !important;
}

.col .row {
    margin-left: 0;
    margin-right: 0;
}

.hide {
  display: none;
}


a:hover {
    text-decoration: none;
}

.error {
  color: red !important;
}



.card-details .error {
  height: 21px !important;
}

.row .col {
  padding: 0 0;
}

.rotate-180 {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}


[v-cloak] {
  display: none !important;
}

a {
    text-decoration: none;
}

.hidden {
    display: none;
}

.light-green {
    background: #00cdf8 !important;
}

.red {
    color: red !important;
}

.green {
    color: green !important;
}

.grey {
  color: #767b80 !important;
}

.img-cal {
    height: 100%;
}

.background-transparent {
    background: transparent;
}


.background-purple {
    background-color: #020439 !important;
}

.background-light-purple {
    background-color: #5d4bc2 !important;
}

.background-turquoise {
    background-color: #00cdf8 !important;
}

.background-light-green {
    background-color: #59a14e !important;
}

.background-light-red {
    background-color: #e7787a !important;
}

.font-light-green {
  color: #59a14e !important;
}

.font-light-red {
  color: #d92c2e !important;
}

.font-light-orange {
  color: #ff7f0f !important;
}

.font-light-yellow {
  color: #e6c347 !important;
}

.font-denim {
    color: #176cca !important;
}

.no-margin {
  margin: 0px !important;
}

.bg {
  fill: transparent !important;
}

.cursor-pointer {
    cursor: pointer !important;
}


.zoomable-image {
    width: 100%; /* Make the image responsive */
    cursor: zoom-in; /* Set the cursor to indicate that the image is zoomable */
    transition: transform 0.3s ease-in-out; /* Add smooth transition effect */
}

/* Apply zoom effect on hover */
.zoomable-image:hover {
    transform: scale(1.2); /* Increase the scale to zoom in */
    cursor: zoom-out; /* Change the cursor to indicate zoom-out on hover */
}

/*----------------------------------------------
    SQL COLORS
------------------------------------------------*/

.operatorsRegex {
  color: #0b5cfc;
}

.dataTypeRegex {
  color: green;
}

.functionRegex {
  color: #f765af;
}

.bracketedString {
  color: #098144;
}

.sqlFunction {
  color: #ff00ff;
}

.lightGrey {
 color: #808080;
}

.comment {
  color: #2b7f01;
}

.border-bottom-teal {
    border-bottom: 1px solid #5d4bc2;
}

.width-100 {
    width: 100%  !important;
}

.width-90 {
    width: 90%  !important;
}


/*----------------------------------------------
    MARGINS
------------------------------------------------*/

.margin-top-56 {
    margin-top: 56px !important;
}

.margin-top-40 {
    margin-top: 40px !important;
}

.margin-top-20 {
    margin-top: 20px !important;
}

.margin-top-10 {
    margin-top: 10px !important;
}

.margin-top-8 {
    margin-top: 8px !important;
}

.margin-top-5 {
    margin-top: 5px !important;
}

.margin-top-0 {
    margin-top: 0px !important;
}

.margin-right-6 {
    margin-right: 6px !important;
}

.margin-bottom-0 {
    margin-bottom: 0px !important;
}

.margin-top-bottom-8 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
}

.margin-left-0 {
    margin-left: 0px !important;
}

.margin-left-20 {
    margin-left: 20px !important;
}

.margin-left-16 {
    margin-left: 16px !important;
}

.margin-left-10 {
    margin-left: 10px !important;
}

.margin-left-50 {
    margin-left: 50px !important;
}


/*----------------------------------------------
    Modal
------------------------------------------------*/

.modal-dialog {
    max-width: 70%;
    margin: 1.75rem auto;
}

.modal-body h4 {
    font-size: 12px !important;
}

.modal-body p {
    font-size: 10px !important;
}

.red-box {
  border: 1px solid red;
  text-align: center;
  padding: 10px;
  width: 98%;
  margin: auto;
  margin-bottom: 10px;
  margin-top: 10px;
}


/*----------------------------------------------
    Power BI
------------------------------------------------*/

section#text-container > div > p {
    font: 1.2em "segoe ui", arial, sans-serif;
}

section#report-container {
    height: calc(0.5625 * 60vw); /* 16:9 aspect ratio */
}

@media only screen and (max-width: 575px) {
    section#report-container {
        height: calc(0.5625 * 100vw); /* 16:9 aspect ratio */
    }
}

footer > p {
    font: 1em "segoe ui", arial, sans-serif;
}

iframe {
    border: none;
}

.img-watermark {
  height: 40px;
  width: 120px;
  position: relative;
  left: 94%;
  top: -40px;
  margin: 0px;
  padding: 0px;
}

#watermark {
  display: none;
}

/*----------------------------------------------
    Row Message
------------------------------------------------*/

.row-message {
  position: absolute;
  width: 100%;
}

.alert {
  position: absolute;
  width: 100%;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.messages {
    height: 32px;
}

.font-green {
  color: #57a050 !important;
}

.font-light-green {
  color: #59a14f !important;
}

.font-blue {
  color: #2177b3 !important;
}

.font-cyan {
  color: #6d9cad !important;
}

.font-yellow {
  color: #f18d2e !important;
}

.font-dark-grey {
  color: #535a60 !important;
}

.left {
  margin-left: 0 !important;
}

.right {
  margin-right 0 !important;
}

.helper-comment {
  font-size: 12px !important;
  margin: 10px 0px !important;
  color: #313131 !important;
}

.row-break {
  height: 20px;
}

.row-break-40 {
  height: 40px;
}

.row-break-24 {
  height: 24px;
}

form {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.span-info {
    font-size: 10px;
}

/*------------------------------------------------------------------------------
    TOP MENU
------------------------------------------------------------------------------*/


.top-menu {
    width: 100%;
    margin: auto;
    padding: 0px 0px 0px 0px;
    color: #333333 !important;
    text-align: center;
    margin-top: 20px !important;
    margin-bottom: 10px !important;
}

.top-menu li {
    height: 100%;
    margin-left: 1%;
    margin-right: 1%;
    margin-top: 0px;
    display: inline-block;
}

.top-menu .horizontal-link {
  color: #313131 !important;
  font-size: 18px;
  padding: 6px 6px;
  border-radius: 4px;
  letter-spacing: 0.4px;
}

.top-menu ul > li > a {

}

.top-menu .underline-green {
  background-image: linear-gradient(#00cdf8, #00cdf8);
  background-position: bottom center;
  background-size: 80% 2px;
  background-repeat: no-repeat;
  padding-bottom: 16px;
}

.top-menu a:hover {
    color: #313131;
}

.top-menu .btn-pill {
    font-size: 8px;
    color: #606060;
    background-color: #e4e6e8;
    box-shadow: 0 2px 2px 0 #040b0e,0 3px 1px -2px #040b0e,0 1px 5px 0 #040b0e;
    border: 1px solid #2c313a;
    border-radius: 10px;
    height: 24px;
    line-height: 24px;
    width: 90%;
    margin: auto;
    font-weight: 400;
    letter-spacing: 0.6px;
    color: #313131;
    display: none;
    margin-bottom: 10px;
}

.btn-pill .fa-industry {
  font-size: 8px !important;
}

.top-menu .btn-pill-active {
  background-color: #59a14f;
}


.top-menu .btn-pill:hover,
.top-menu .btn-pill:focus,
.top-menu .btn-pill:active {
  background: #59a14f !important;
  color: #313131;
  box-shadow: none;
}

/*----------------------------------------------
    INVISIBLE SCROLL
------------------------------------------------*/

#parent{
   	position: relative;
   	height: 630px;
   	overflow: hidden;
   	width: 100%;
   	margin: 0px;
   	margin-right: -10px;
   	z-index= -10;
   	padding: 0;
}


#child{
    width: 100%;
    overflow: auto;
    height: 100%;
    padding-right: 15px;
}

#parentEnpi{
   	position: relative;
   	height: 310px;
   	overflow: hidden;
   	width: 100%;
   	margin: 0px;
   	margin-right: -10px;
   	z-index= -10;
}


#childEnpi{
    width: 110%;
    overflow: auto;
    height: 100%;
    padding-right: 15px;
}

/*----------------------------------------------
    SELECT MENU
------------------------------------------------*/

.select-wrapper input.select-dropdown {
    width: 96%;
}





/*----------------------------------------------
    ERROR 404
------------------------------------------------*/
#errorContainer {
  padding-top: 40px;
  height: 900px;
  background: transparent;
  text-align: center;
}


#mainContainer { margin:0 auto 20px auto; width:940px; padding:0; text-align:left; }
.company { display:inline; float:left; margin:40px 0 0px 280px; }
.robot { display:inline; float:left; width:280px; margin:0; overflow:visible; }
.error-header { display:inline; float:left; width:660px; font-size:20px; margin:50px 0 0 0; margin-left:280px;}
.mainContent { display:inline; float:left; width:660px; margin-left:280px; }
.largeFont { font-size:24px; }
.p-error { margin:18px 0; padding:0; line-height:1.4em; font-size:16px;}
.ul-error { margin:-10px 0 0 26px; padding:0; }
.ul-error li { margin:5px 0; padding:0; font-size:16px;}
.ul-error a { color:#3366cc; text-decoration:none; font-size:17px;}


/*----------------------------------------------
    LOGIN/INFO CARD
------------------------------------------------*/

.login-card {
  width: 20%;
  margin: auto;
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
  padding: 15px 0px 0px 0px;
  background-color: #fff;
  border-color: transparent;
  border: 1px solid #fff;
  box-shadow: 1px 1px 1px 0px #fff;
  border-radius: 15px;
  color: #222222;
  font-weight: 400;

}

.login-card img {
  width: 80%;
  margin: auto;
}

.login-card .btn-login-card {
  width: 100%;
  border-radius: 5px;
  background: #0b5cfc;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.1),0 1px 4px rgba(0,0,0,0.1),0 2px 8px rgba(0,0,0,0.1);
}

.btn-login-card {
  width: 100%;
  border-radius: 5px;
  background: #0b5cfc;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.1),0 1px 4px rgba(0,0,0,0.1),0 2px 8px rgba(0,0,0,0.1);
}


.btn-success {
  width: auto;
  border-radius: 3px;
  background: #0b5cfc;
  letter-spacing: 1px;
  text-transform: uppercase;
  min-width: 30%;
  margin: auto;
  border-color: transparent;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active {
    background: #00cdf8;
    color: #fff;
}

.text-info {
  color: grey !important;
  margin-bottom: 20px;
}



/*------------------------------------------------------------------------------
    MESSAGE CONTAINER
------------------------------------------------------------------------------*/


.permission-message-container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 800px;
    margin: auto;
    position: absolute;
    top: 240px;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.permission-message-container p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}
.permission-message-container a {
    color: #007BFF;
    text-decoration: none;
}
.permission-message-container a:hover {
    text-decoration: underline;
}



/*------------------------------------------------------------------------------
    FOOTER
------------------------------------------------------------------------------*/

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding-left: 0%;
    padding-right: 1%;
    text-align: center;
    background-color: transparent;
}

.footer-right p{
    float: right !important;
}

.footer-left p{
    float: left !important;
}

.footer p {
    margin: 0;
    font-size: 12px;
    color: #313131;
    padding: 15px 0px;
    text-align: center;
}

.footer a {
    color: #313131;
}

.footer a:hover,
.footer a:focus,
.footer a:active {
    color: #4f84ae;
    text-decoration: none;
}

/*----------------------------------------------
    ANIMATIONS & EFFECTS
------------------------------------------------*/


.animate-character {
  background-image: linear-gradient(
    -225deg,
    #231557 0%,
    #44107a 29%,
    #ff1361 67%,
    #fff800 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 4s linear infinite;
  display: inline-block;
      font-size: 190px;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

.loader {
  border: 8px solid #e4e6e8;
  border-top: 8px solid #8c8c8c;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  animation: spin 1.2s linear infinite;
  margin: auto;
  margin-top: 20px;
}

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

.appear {
  animation-duration: 0.7s;
  animation-name: animate-fade;

}

@keyframes animate-fade {
  0% { opacity: 0; }
  100% { opacity: 1; }
}


/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}





/*----------------------------------------------
    TOOLTIP
------------------------------------------------*/

.tooltiped {
  position: relative;
  cursor: help;
}

.tooltiped .tooltiptext {
  visibility: hidden;
  width: 100%;
  background-color: #fff;
  color: #313131;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  font-size: 12px;
  text-transform: none;

  /* Position the tooltip */
  position: absolute;
  top: -10px;
  z-index: 1;
}

.tooltiped:hover .tooltiptext {
  visibility: visible;
}

/*----------------------------------------------
    AUTH ADFS ERROR
------------------------------------------------*/

#errorMessage {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 30em;
  height: 3em;
  margin-top: -9em;
  margin-left: -15em;
  border: 1px solid #ccc;
  background-color: #f3f3f3;
  font-family: Lato, proxima-nova, Helvetica Neue, Arial, sans-serif;
  text-align: center;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
}

/*----------------------------------------------
    FONTS
------------------------------------------------*/

.font-12 {
    font-size: 12px !important;
}

.font-14 {
    font-size: 14px !important;
}

.font-orange {
    color: orange !important;
}

.font-purple {
    color: purple !important;
}

.font-green {
    color: green !important;
}

.font-midnight {
    color: #253443 !important;
}

.font-red {
    color: red !important;
}

.font-cyan-blue {
    color: #005591 !important;
}

.font-lime-green {
    color: #21b349 !important;
}

.font-dark-moderate-lime-green {
    color: #569c4c !important;
}

.font-gold {
    color: #d09d3f !important;
}

.font-grey {
    color: grey !important;
}

.font-blue {
    color: #0d6efd !important;
}

.font-em3-blue {
    color: #0b5cfc !important;
}

.font-dark-grey {
    color: #313131 !important;
}

.font-dark-red {
    color: #bb1616 !important;
}

.font-greyed-out {
    color: rgba(0,0,0,0.2);
}

.font-light-orange {
    color: #f77b0e;
}



/*----------------------------------------------
    SWITCH
------------------------------------------------*/


/*----------------------------------------------
    MEDIA QUERIES
------------------------------------------------*/



@media(max-width:1700px) {



}



@media(max-width:1440px) {


}

@media(max-width:1200px) {



}


@media(max-width:1025px) {

  .login-card {
    width: 30%;
  }


}

@media(max-width:992px) {

  .top-menu .horizontal-link {
    font-size: 12px;
  }

  .btn-pill {
    display: block !important;
  }


}

@media(max-width:700px) {

  .top-menu .horizontal-link {
    font-size: 10px;

  }

  .left {
    margin-left: 0 !important;
    margin-right 0 !important;
  }

  .right {
    margin-left: 0 !important;
    margin-right 0 !important;
  }

  .login-card {
    width: 50%;
  }



}


@media(max-width:560px) {

  .top-menu .horizontal-link {
    font-size: 8px;

  }

  .top-menu .btn-pill {
    font-size: 6px;
  }

}

