@import url("//fonts.googleapis.com/css?family=Nunito:400,600,700,800");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.block-grph {
    width: 3px;
    height: 30px;
    margin: 3px;
    display: inline-block;
    border-radius: 30px;
}
.block-grph-red {
    background-color: #df484a;
    height: 15px;

}
.block-grph-green {
    background-color: #7DE4A0;

}
.block-grph-light-green {
    background-color: #aef1c4;
}
.block-grph-grey {
    background-color: #e5e5e5; 
}
.custom-tooltip .tooltip-inner {
    min-width: 100px;
    background: #000; 
    color: #fff;
    font-size: 12px;
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}
.custom-tooltip .tooltip-inner .date {
    font-size: 10px; 
    color: rgba(255, 255, 255, 0.7); 
}
.custom-tooltip .tooltip-inner .percentage {
    font-size: 12px;
    font-weight: bold;
}
.block-grph-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap-reverse; 
}
.favicon-image {
margin-right: 5px;
}

.percentage-label {
font-weight: bold;
color: #000; 
}

.block-grph-container {
position: relative;
}

.status-circle {
position: relative;
display: flex;
justify-content: center;
align-items: center;
}


.outer-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
    margin-left: 5px;
  }
  
  .inner-circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .outer-circle-green {
    background: rgba(0, 255, 0, 0.3);
  }
  
  .inner-circle-green {
    background: #28d828;
  }
  
  .outer-circle-red {
    background: rgba(255, 0, 0, 0.3);
  }
  
  .inner-circle-red {
    background: #ff0000;
  }
  
  .outer-circle-warning {
    background: rgba(255, 255, 0, 0.3);
  }
  
  .inner-circle-warning {
    background: #ffcc00;
  }
  
  .outer-circle-grey {
    background: rgba(128, 128, 128, 0.3);
  }
  
  .inner-circle-grey {
    background: #808080;
  }
  

.status-label {
font-weight: bold;
color: #000;
}

@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}
@media (min-width: 1024px) {
    .block-grph {
        width: 4px;
        margin: 3px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .block-grph {
        width: 5px;
        margin: 2px;
    }
}

@media screen and (min-width: 480px) and (max-width: 768px) {
    .block-grph {
        width: 4px;
        margin: 1.5px;
    }
}
@media screen and (min-width: 320px) and (max-width: 480px) {
    .block-grph {
        width: 3px;
        margin: 2px;
    }
}
.accordion-header .accordion-button{
  background-color: #ffffff !important;
  border-bottom: 1px solid #cecdcd;
}


.gmnoprint, .gm-style-cc {
  display: none !important;
}
.gm-style img {
  border-color: #ffffff !important; 
}




.table {
  width: 100%; 
  border-collapse: collapse; 
}

.table thead th {
  background-color: rgb(223 248 231);
  padding: 15px;
  color: #4da56b;
  border: none;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.36px;
  text-align: left;
  margin-top: 20px;
}

.table tbody tr {
  border-bottom: none; 
}

.table tbody tr:not(:last-child) {
  border-bottom: 1px solid #e1e1e1; 
}
.table tbody td {
  padding: 20px; 
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
  text-align: left;

}

.number-size {
  font-size: 24px;
  font-weight: 600;
  line-height: 29.05px;
  text-align: left;
}

.status-duration {
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
  text-align: left;
}

.border-right {
  border-right: 1px solid var(--Secondary-Secondary300, #CED7DE);
}

.monitor-status-box {
  padding: 20px; 
}

.monitor-status-box:last-child {
  border-right: none;
}


.status-alert {
  margin-block: 2.5rem;
  padding: 1.25rem;
  display: grid;
  grid-gap: 1.25rem;
  grid-template-columns: max-content auto;
  border-radius: 4px;
  border-width: 4px;
  border-left-style: solid;
  transition: 0.12s ease;
  position: relative;
  overflow: hidden;
}

.status-alert:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: soft-light;
  background: linear-gradient(90deg, rgba(255,255,255,0) 30%, rgba(255,255,255,1) 56%, rgba(2,0,36,0.1) 82%);
  z-index: 1;
}

.status-alert .icon, .status-alert .content {
  z-index: 2;
}

.status-alert .icon {
  line-height: 1;
}

.status-alert .title {
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.status-alert .body {
  max-width: 90%;
}

.status-alert--info {
  border-left-color: #2E86DE;
}

.status-alert--info .icon {
  color: #2E86DE;
}

.status-alert--warning {
  border-left-color: #FA7F05;
}

.status-alert--warning .icon {
  color: #FA7F05;
}

.status-alert--error {
  border-left-color: #C2160A;
}

.status-alert--error .icon {
  color: #C2160A;
}

@media (max-width: 767px) {
  .status-alert {
      grid-template-columns: auto;
      padding: 1rem;
      grid-gap: 0.75rem;
  }

  .status-alert .icon {
      font-size: 1.5rem;
  }

  .status-alert .title {
      margin-bottom: 0.5rem;
  }
}
.nav-tabs {
  border: none; 
}

.nav-tabs .nav-link.active {
  border: 2px solid #007bff; 
  border-radius: 0.5rem; 
}

.nav-tabs .nav-link.active i {
  color: #007bff; 
  font-weight: bold; 
}
.nav-tabs .nav-link {
  border: none; 
  color: #174D9B; 
}

.nav-tabs .nav-link.active {
  border: 1px solid #637381; 
  border-radius: 0.5rem;
}

.nav-tabs .nav-link.active i {
  color: #174D9B; 
  font-weight: bold; 
}

.nav-tabs .nav-link i {
  color: #637381; 
}


.accordion-button:not(.collapsed) {
  box-shadow: none; 
}

.response-title {
  font-size: 14px;
  font-weight: 200;
  line-height: 29.05px;
  text-align: left;
}

.response-value {
  font-size: 24px;
  font-weight: 600;
  line-height: 29.05px;
  text-align: left;
}

.bordered-right {
  border-right: 1px solid #CED7DE;
}


.paused-icon {
  color: #CED7DE; 
}

.running-icon {
  color: #7DE4A0;
}

.log-entry {
  padding: 20px 0;
  border-bottom: 1px solid #E7EBEF;
}

.log-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 16.94px;
  text-align: left;
}

.log-time {
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
  text-align: left;
  color: #6c757d;
}

.running-icon {
  color: #28a745;
  padding: 10px;
  border-radius: 50%;
  display: inline-block; 
  font-size: 16px; 
  width: 40px; 
  height: 40px; 
  text-align: center; 
  line-height: 20px; 
  border: 1px solid #28a745;
}

.paused-icon {
  color: #174D9B; 
  padding: 10px;
  border-radius: 50%;
  display: inline-block; 
  font-size: 16px; 
  width: 40px; 
  height: 40px; 
  text-align: center; 
  line-height: 20px; 
  border: 1px solid #174D9B;

}

.up-icon {
  color: #3CD670; 
  padding: 10px;
  border-radius: 50%;
  display: inline-block; 
  font-size: 16px; 
  width: 40px; 
  height: 40px; 
  text-align: center; 
  line-height: 20px; 
  border: 1px solid #3CD670;
}


.log-entry:last-child {
  border-bottom: none; 
}


.footer-right a{
  text-decoration: none;
  color: black;
}
.box-container{
  box-shadow: 0px 1px 8px 0px #00000012;
  padding: 20px;
}


.password_protection_wrapper {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.password_protection_modal {
  position: fixed; 
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: all 0.4s;
}

.password_protection_modal__content h4 {
  font-size: 14px;
  font-weight: 500;
  line-height: 16.94px;
  text-align: left;
}

.password_protection_modal__content p {
  font-size: 12px;
  font-weight: 400;
  line-height: 16.94px;
  text-align: left;
  
}

.password_protection_modal__content {
  border-radius: 15px;
  position: relative;
  width: 500px;
  max-width: 90%;
  background: #ffffff;
  padding: 1em 2em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
}

.password_protection_modal__footer {
  text-align: right;
}

.password_protection_modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #585858;
  text-decoration: none;
}

.btn-password{
  background: #174D9B;
  color: #fff;
}
.table tbody tr td {
  border-bottom: none;
}
.cookie_wrapper {
  position: fixed;
  bottom: 50px;
  right: 20px;
  max-width: 345px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000000;
  display: none;
  opacity: 0;
}

.cookie_wrapper.show {
    display: block; 
    opacity: 1;
    right: 30px;
}
.cookie_header {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.cookie_header i {
  color: #4070f4;
  font-size: 32px;
}
.cookie_header h2 {
  color: #4070f4;
  font-weight: 500;
}
.cookie_data {
  margin-top: 16px;
}
.cookie_data p {
  color: #333;
  font-size: 16px;
}
.cookie_data p a {
  color: #4070f4;
  text-decoration: none;
}
.cookie_data p a:hover {
  text-decoration: underline;
}
.cookie_buttons {
  margin-top: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie_buttons .cookie_button {
  border: none;
  color: #fff;
  padding: 8px 0;
  border-radius: 4px;
  background: #4070f4;
  cursor: pointer;
  width: calc(100% / 2 - 10px);
  transition: all 0.2s ease;
}
.cookie_buttons #cookie_acceptBtn:hover {
  background-color: #034bf1;
}
#cookie_declineBtn {
  border: 2px solid #4070f4;
  background-color: #fff;
  color: #4070f4;
}
#cookie_declineBtn:hover {
  background-color: #4070f4;
  color: #fff;
}

.footer-right button{
  border: none;
  background-color: #ffffff;
}

.header-txt{
  font-size: 20px;
}


#fullscreen-toggle {
  cursor: pointer;
}

.alert-off {
  cursor: pointer;
}