
        /* Styling the border and box
        effect of the progress bar*/
        .progress-bar {
    width: 132px;
    height: 12px;
    margin-top: 0px;
    border: 1px solid #565656;
    border-radius: 5px;
    box-shadow: 0 0 4px rgb(3 173 216);
    display: -webkit-inline-box;
        }
 
        /* Stylingthe background color of each
        animation and border radius */
        .percentage {
    display: block;
    height: 100%;
    background-color: #03add8;
    border-radius: 10px;
    animation: progress 1500ms ease-in 1;
        }
 
        /* Server status*/
        .c {
            width: 35%;
			--space: 10;
        }
 
        /* Animating the progress bar by
        initially starting from 0*/
        @keyframes progress {
            from {
                width: 0;
            }
        }


/* kodumdan sonrası */

.esunusburda {
    width: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: space-between;
    justify-content: space-around;
    align-items: flex-start;
    font-size: 9px;
}


@import url(https://fonts.googleapis.com/css?family=Lato:100,400);

body{
  margin: 0;
  padding: 0;
  background: #eee;
}

.box{
  width: 250px;
  height: 200px;
  position: absolute;
  left: calc(50% - 125px);
  top: calc(50% - 100px);
  left: -webkit-calc(50% - 125px);
  top: -webkit-calc(50% - 100px);
}

.box span{
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 20px;
  position: absolute;
}

.box span:nth-child(2){
  top: 2px;
  left: 125px;
}

.box span:nth-child(7){
  top: 85px;
  left: 125px;
}

.box span:nth-child(12){
  top: 165px;
  left: 125px;
}

.server{
  width: 110px;
  height: 7px;
  display: ruby;	
  
  border-radius: 1px;
}



.server:first-child ul li{
  width: 6px;
  height: 6px;
  float: left;
  margin-left: 10px;
  margin-top: 12px;
  background: rgba(149,244,118,0.6);
}

.server ul li:first-child{
  -webkit-animation: pattern1 0.14s linear infinite;
}

.server ul li:nth-child(2){
  -webkit-animation: pattern1 0.14s 0.02s linear infinite;
}

.server ul li:last-child{
  -webkit-animation: pattern1 0.14s 0.05s linear infinite;
}

@-webkit-keyframes pattern1{
  0%{
    background: rgba(149,244,118,0.6);
  }
  100%{
    background: rgba(149,244,118,1);
  }
}

.warning ul li{
  width: 6px;
  height: 6px;
  float: left;
  margin-left: 10px;
  margin-top: 12px;
  background: rgba(245,190,0,0.6);
}

.warning ul li:first-child{
  -webkit-animation: pattern2 0.14s linear infinite;
}

.warning ul li:nth-child(2){
  -webkit-animation: pattern2 0.14s 0.02s linear infinite;
}

.warning ul li:last-child{
  -webkit-animation: pattern2 0.14s 0.05s linear infinite;
}

@-webkit-keyframes pattern2{
  0%{
    background: rgba(245,190,0,0.6);
  }
  100%{
    background: rgba(245,190,0,1);
  }
}

.error ul li{
    width: 11px;
    height: 12px;
    float: left;
    margin-left: 0px;
    margin-top: 8px;
    background: #00ccff;
    border-radius: 16px;
    box-shadow: 0 0 4px rgb(32 119 209);
}


.error ul li:first-child{
  -webkit-animation: pattern3 0.9s linear infinite;
}

.error ul li:nth-child(2){
  -webkit-animation: pattern3 0.9s linear infinite;
}

.error ul li:last-child{
  -webkit-animation: pattern3 0.9s linear infinite;
}

@-webkit-keyframes pattern3{
  0%{
    background: rgba(236,69,62,0.6);
  }
  80%{
    background: #0aff22;
  }
  100%{
    background: rgba(236,69,62,1);
  }
}

.tooltip {
    --bs-tooltip-zindex: 1080;
    --bs-tooltip-max-width: 200px;
    --bs-tooltip-padding-x: 0.5rem;
    --bs-tooltip-padding-y: 0.25rem;
    --bs-tooltip-margin: ;
    --bs-tooltip-font-size: 0.8203125rem;
    --bs-tooltip-color: #fff;
    --bs-tooltip-bg: #000;
    --bs-tooltip-border-radius: 0.3125rem;
    --bs-tooltip-opacity: 0.9;
    --bs-tooltip-arrow-width: 0.8rem;
    --bs-tooltip-arrow-height: 0.4rem;
    z-index: var(--bs-tooltip-zindex);
    display: block;
    padding: var(--bs-tooltip-arrow-height);
    margin: var(--bs-tooltip-margin);
    font-family: "Inter",Helvetica,sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1.7;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    white-space: normal;
    word-spacing: normal;
    line-break: auto;
    font-size: var(--bs-tooltip-font-size);
    word-wrap: break-word;
    opacity: 0
    padding: 18px 1px 7px;
}

.tooltip.show {
    opacity: var(--bs-tooltip-opacity)
}

.tooltip .tooltip-arrow {
    display: block;
    width: var(--bs-tooltip-arrow-width);
    height: var(--bs-tooltip-arrow-height)
}

.tooltip .tooltip-arrow::before {
    position: absolute;
    content: "";
    border-color: rgba(0,0,0,0);
    border-style: solid
}

.bs-tooltip-top .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
    bottom: 0
}

.bs-tooltip-top .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
    top: -1px;
    border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width)*.5) 0;
    border-top-color: var(--bs-tooltip-bg)
}

.bs-tooltip-end .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
    left: 0;
    width: var(--bs-tooltip-arrow-height);
    height: var(--bs-tooltip-arrow-width)
}

.bs-tooltip-end .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
    right: -1px;
    border-width: calc(var(--bs-tooltip-arrow-width)*.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width)*.5) 0;
    border-right-color: var(--bs-tooltip-bg)
}

.bs-tooltip-bottom .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
    top: 0
}

.bs-tooltip-bottom .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
    bottom: -1px;
    border-width: 0 calc(var(--bs-tooltip-arrow-width)*.5) var(--bs-tooltip-arrow-height);
    border-bottom-color: var(--bs-tooltip-bg)
}

.bs-tooltip-start .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
    right: 0;
    width: var(--bs-tooltip-arrow-height);
    height: var(--bs-tooltip-arrow-width)
}

.bs-tooltip-start .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
    left: -1px;
    border-width: calc(var(--bs-tooltip-arrow-width)*.5) 0 calc(var(--bs-tooltip-arrow-width)*.5) var(--bs-tooltip-arrow-height);
    border-left-color: var(--bs-tooltip-bg)
}

.tooltip-inner {
    max-width: var(--bs-tooltip-max-width);
    padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
    color: var(--bs-tooltip-color);
    text-align: center;
    background-color: var(--bs-tooltip-bg);
    border-radius: var(--bs-tooltip-border-radius);
	
}

.tooltip {
    left: 50%;
    position: absolute;
    transform: translateY(-50%);
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: column-reverse;
}

.network-map-wrap {
    position: relative;
    display: block;
    width: 100%
}

.network-map-wrap ul li {
    position: absolute;
    z-index: 10;
    width: 10px;
    height: 10px;
    margin: 0px;
    background-color: #84cb10;
    border-radius: 50%;
}

.network-map-wrap ul li span {
    display: block;
    width: 10px;
    height: 10px;
   animation: pulse5 linear 1000ms infinite;

    border-radius: 50%
}

@-webkit-keyframes ripple {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(0,115,236,.1),0 0 0 10px rgba(0,115,236,.1),0 0 0 20px rgba(0,115,236,.1);
        box-shadow: 0 0 0 0 rgba(0,115,236,.1),0 0 0 10px rgba(0,115,236,.1),0 0 0 20px rgba(0,115,236,.1)
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(0,115,236,.1),0 0 0 20px rgba(0,115,236,.1),0 0 0 30px rgba(0,115,236,0);
        box-shadow: 0 0 0 10px rgba(0,115,236,.1),0 0 0 20px rgba(0,115,236,.1),0 0 0 30px rgba(0,115,236,0)
    }
}

@keyframes ripple {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(0,115,236,.1),0 0 0 10px rgba(0,115,236,.1),0 0 0 20px rgba(0,115,236,.1);
        box-shadow: 0 0 0 0 rgba(0,115,236,.1),0 0 0 10px rgba(0,115,236,.1),0 0 0 20px rgba(0,115,236,.1)
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(0,115,236,.1),0 0 0 20px rgba(0,115,236,.1),0 0 0 30px rgba(0,115,236,0);
        box-shadow: 0 0 0 10px rgba(0,115,236,.1),0 0 0 20px rgba(0,115,236,.1),0 0 0 30px rgba(0,115,236,0)
    }
}

.testimonial-content-wrap {
    position: relative
}

.testimonial-content-wrap .testimonial-tb-shape {
    position: absolute
}

.testimonial-content-wrap .testimonial-tb-shape.shape-top {
    top: -60px;
    right: 20%
}

.testimonial-content-wrap .testimonial-tb-shape.shape-bottom {
    bottom: -88px;
    right: 50%
}

.testimonial-content-wrap .testimonial-shape:before {
    content: "";
    position: absolute;
    top: 60px;
    left: 20px;
    width: 99%;
    height: 69%;
    background: #f59e0b;
    -webkit-transform: rotate(-6deg);
    transform: rotate(-6deg);
    z-index: -1;
    border-radius: 4px
}

.testimonial-content-wrap .testimonial-shape .testimonial-quote-wrap {
    background: #163b88;
    padding: 30px 40px;
    z-index: 4;
    margin-top: 30px;
    border-radius: 4px
}

.testimonial-content-wrap .testimonial-shape .testimonial-quote-wrap .author-info .author-img {
    border-radius: 4px;
    border: 4px solid #fff;
    width: 100px;
    position: absolute;
    top: 0
}

.testimonial-content-wrap .testimonial-shape .testimonial-quote-wrap .author-info .media-body {
    position: relative;
    left: 120px
}

.testimonial-content-wrap .testimonial-shape .testimonial-quote-wrap .author-info i {
    font-size: 40px
}

.single-review-wrap {
    border-radius: 20px
}

.single-review-wrap .review-body p {
    height: 106px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical
}

