/* Most general style */
.gauge {
    position: relative !important;
    width: 100%;
    height: 270px !important;
    transform: scale(0.4) !important;
    left: -40px;
}

.gauge-position {
    position: relative;
    top: -22px;
    left: 10px;
}

* {
    box-sizing: content-box !important;
}

#measure-labels {
    position: relative;
}

#information-labels {
    z-index: 51;
    position: relative;
    top: -333px;
    left: 100px;
    width: 297px;
    height: 100px;
    display: flex;
    flex-direction: column;
    gap: 1px;
    text-align: center;
    color: white;
    font-size: 14px;
}

#information-labels h2 {
    margin: 10px 0px;
    padding: 0px;
}

#information-labels h3 {
    margin: 0px;
    padding: 0px;
    border-bottom: 1px solid white;
}

#industry_label {
    color: #71E7D6;
}

#company_label {
    color: #2394DF;
}



/*
* Style for Circles
* its z-index are between 1 to 10
*/
#circles {
    position: inherit;
    left: 30px;
    top: 30px;
}

#outer-circle {
    z-index: 0;
    position: relative;
    top: -149px;
    left: -43px;
    width: 500px;
    height: 500px;
    border-radius: 100%;
    background: rgb(128, 49, 54);
    background: linear-gradient(90deg, rgba(128, 49, 54, 1) 0%, rgba(232, 95, 54, 1) 25%, rgba(236, 148, 36, 1) 46%, rgba(225, 180, 32, 1) 63%, rgba(79, 197, 108, 1) 81%, rgba(35, 118, 85, 1) 100%);
}


#inner-circle {
    position: relative;
    top: 25px;
    left: 25px;
    z-index: 1;
    width: 450px;
    height: 450px;
    border-radius: 100%;
    background: #122A24;
}

#inner-triangle {
    z-index: 1;
    position: relative;
    top: 220px;
    left: -17px;
    width: 0px;
    height: 0px;
    border: 150px solid transparent;
    border-top: 0px;
    border-left: 250px solid transparent;
    border-right: 250px solid transparent;
    border-bottom: 300px solid #122A24;
    /*   border-bottom: 300px solid silver; */
}


/*
* A circle behind needles
* its z-index must be between 1 to 10
* to overlap the sparks
*/
#center-pivot {
    z-index: 1;
    position: relative;
    top: -230px;
    left: 230px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: gray;
}

/*
* the needles that marks index values
* its z-index must be between 11 to 20
*/
.needle {
    z-index: 20;
    position: relative;
    width: 20px;
    height: 215px;

    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    border-top-left-radius: 100%;
    border-top-right-radius: 100%;

}

#n1 {
    background: #2394DF;
    height: 215px;
    top: -185px;
    left: 13px;

    transform-origin: bottom;
    transform: rotate(-130deg);
}

#n2 {
    background: #71E7D6;
    height: 175px;
    top: -1630px;
    left: 15px;

    transform-origin: bottom;
    transform: rotate(-130deg);
}


#s1>.s-inner-circle {
    z-index: 11;
    top: -395px;
    left: -190px;
    position: relative;
    width: 370px;
    height: 370px;

    border: 26px solid #23363E;
    border-radius: 50%;
}


/* its other style is controlled by js*/
#s1>.s-inner-circle-barrier {
    z-index: 14;
    top: -819px;
    left: -193px;
    position: relative;
    width: 370px;
    height: 370px;
    border: 28px solid #122A24;
    /* border-color: #122A24 !important; */
    border-radius: 50%;
}

/*
* Little barrier that blocks one spark
* on values lower than 0%
* its z-index must be between 10 to 15
* to overlap the sparks
*/
#s1>.s-inner-lower-barrier {
    z-index: 12;
    position: relative;
    top: -1245px;
    left: -192px;
    width: 368px;
    height: 368px;

    border: 28px solid transparent;
    border-bottom-color: #122A24;
    border-radius: 50%;
    transform: rotate(45deg);

}


#s2>.s-inner-circle {
    z-index: 11;
    position: relative;
    top: -1800px;
    left: -150px;
    width: 290px;
    height: 290px;

    border: 26px solid #23363E;
    border-radius: 50%;
}


/* its other style is controlled by js*/
#s2>.s-inner-circle-barrier {
    z-index: 12;
    margin: 0px;
    position: relative;
    top: -2143px;
    left: -152px;
    width: 288px;
    height: 288px;

    border: 28px solid #122A24;
    border-radius: 50%;
}

/*
* Little barrier that blocks one spark
* on values lower than 0%
* its z-index must be between 10 to 20
* to overlap the sparks
*/
#s2>.s-inner-lower-barrier {
    z-index: 12;
    position: relative;
    top: -2490px;
    left: -152px;
    width: 288px;
    height: 288px;

    border: 28px solid transparent;
    border-bottom-color: #122A24;
    border-radius: 50%;
    transform: rotate(45deg);

}



.axis {
    z-index: 50;
    position: relative;
    width: 27px;
    height: 3px;
    background: #122A24;
}

#a1 {
    top: -399px;
    left: -45px;
}

#a2 {
    top: -571px;
    left: 25px;
    transform: rotate(45deg);
}

#a3 {
    top: -643px;
    left: 194px;
    transform: rotate(90deg);
}

#a4 {
    top: -578px;
    left: 381px;
    transform: rotate(-45deg);
}

#a5 {
    top: -411px;
    left: 432px;
}


.a-labels {
    color: white;
    position: relative;
    font-size: 22px;
}

#a1-label {
    top: -430px;
    left: -65px;
}

#a2-label {
    top: -621px;
    left: -71px;
}

#a3-label {
    top: -707px;
    left: 66px;
}

#a4-label {
    top: -631px;
    left: 198px;
}

#a5-label {
    top: -462px;
    left: 471px;
}

.gauge-implementation .custom-col {
    overflow: hidden;
}

/* @media screen and (max-width: 1500px) {
    .gauge {
        transform: scale(0.3) !important;
    }
    #a4-label {
        top: -640px;
        left: 435px;
    }
}

@media screen and (max-width: 1200px) {
    #a5-label {
        top: -432px !important;
        left: 265px !important;
    }

    #a4-label {
        top: -640px;
        left: 198px;
    }

    .gauge {
        transform: scale(0.4) !important;
        left: -20px !important;
    }

    .gauge-position {
        top: -10px !important;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 992px) {
    #a5-label {
        top: -432px !important;
        left: 265px !important;
    }

    .gauge {
        transform: scale(0.4) !important;
        left: -35px !important;
    }
}

@media screen and (max-width: 768px) {
    .gauge {
        left: 5% !important;
    }
}


@media screen and (max-width: 670px) {
    .gauge {
        left: 4% !important;
    }
}

@media screen and (max-width: 576px) {
    .gauge {
        left: 0 !important;
    }
} */
