/*
 ProductGraph module styles.
 Migrated out of the theme's src/styles/styles.css so the module owns its own CSS.
 The spin / animatepulseline / animatepulsecircle keyframes below are referenced
 only by these rules, so they live here too.
*/

.product-graph {
    overflow: hidden;
}

.pl-graph {
    padding: 100px 0;
}

@media (max-width: 360px) {
    .pl-graph {
        padding: 50px 0;
    }
}

.pl-graph-header h2 {
    max-width: 50%;
    color: #333333;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 2.86px;
    line-height: 39px;
    text-transform: uppercase;
}

@media (max-width: 980px) {
    .pl-graph-header h2 {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .pl-graph-header h2 {
        font-size: 32px;
        letter-spacing: 2.86px;
        line-height: 39px;
    }
}

.pl-graph-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 980px) {
    .pl-graph-main {
        display: block;
    }
}

.pl-graph-navigation {
    width: 100%;
    padding-top: 70px;
}

@media (max-width: 980px) {
    .pl-graph-navigation {
        padding-top: 50px;
    }
}

.pl-graph-navigation ul {
    list-style: none;
    padding: 0 !important;
}

.pl-graph-navigation ul li {
    list-style: none;
    color: #707070;
    font-family: Montserrat;
    font-size: 24px;
    font-weight: bold;
    line-height: 26px;
    border-left: 9px solid transparent;
}

@media (max-width: 360px) {
    .pl-graph-navigation ul li {
        font-size: 20px;
        line-height: 22px;
    }
}

.pl-graph-navigation ul li span {
    cursor: pointer;
    display: inline-block;
    padding: 27px 36px;
}

@media (max-width: 480px) {
    .pl-graph-navigation ul li span {
        padding: 15px 36px;
    }
}

.pl-graph-navigation ul li.active {
    color: #1c439b;
    border-color: #1c439b;
    -webkit-animation: animatepulseline 1.2s linear infinite;
    animation: animatepulseline 1.2s linear infinite;
}

@media (max-width: 600px) {
    .pl-graph-circles {
        width: 300px;
        height: 300px;
        margin: 0 auto;
        position: relative;
        margin-top: 100px;
    }
}

@media (max-width: 360px) {
    .pl-graph-circles {
        width: 250px;
        height: 250px;
        margin-top: 50px;
    }
}

.pl-graph-circle {
    width: 500px;
    margin: 0 auto;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media (max-width: 980px) {
    .pl-graph-circle {
        margin-top: 100px;
    }
}

@media (max-width: 600px) {
    .pl-graph-circle {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate3d(-50%, -50%, 0) scale(0.6);
        transform: translate3d(-50%, -50%, 0) scale(0.6);
        margin-top: 0;
    }
}

@media (max-width: 360px) {
    .pl-graph-circle {
        -webkit-transform: translate3d(-50%, -50%, 0) scale(0.4);
        transform: translate3d(-50%, -50%, 0) scale(0.4);
    }
}

.pl-graph-circle-container {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
}

.pl-graph-circle-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 7px solid #1c439b;
    border-radius: 100%;
}

.pl-graph-circle-decoration .dotted {
    position: absolute;
    top: -3%;
    left: -3%;
    width: 106%;
    height: 106%;
    border: 1px dashed #111926;
    border-radius: 100%;
    -webkit-animation: spin 40s linear infinite;
    animation: spin 40s linear infinite;
}

.pl-graph-circle-decoration .lined {
    position: absolute;
    top: 2%;
    left: 2%;
    width: 96%;
    height: 96%;
    border: 1px solid #111926;
    border-radius: 100%;
}

.pl-graph-circle-headers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15;
}

.pl-graph-circle-header {
    height: 215px;
    width: 215px;
    border: 15px solid #f3f3f3;
    background-color: #c2c2c2;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px;
    position: absolute;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-animation: animatepulsecircle 2s linear infinite;
    animation: animatepulsecircle 2s linear infinite;
}

.pl-graph-circle-header:hover,
.pl-graph-circle-header.active {
    background-color: #1c439b;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-animation: none;
    animation: none;
}

.pl-graph-circle-header[data-index="1"] {
    top: 0;
    left: 50%;
    margin-left: -107px;
    margin-top: -107px;
}

.pl-graph-circle-header[data-index="2"] {
    top: 375px;
    left: 466px;
    margin-left: -107px;
    margin-top: -107px;
}

.pl-graph-circle-header[data-index="3"] {
    top: 375px;
    left: 34px;
    margin-left: -107px;
    margin-top: -107px;
}

.pl-graph-circle-header h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    line-height: 29px;
    text-align: center;
}

.pl-graph-circle-header h3 small {
    font-size: 20px;
    line-height: 25px;
    display: block;
}

.pl-graph-circles-content {
    display: none;
}

.pl-graph-circle-contents {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.pl-graph-circle-content {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0) scale(0.8);
    transform: translate3d(-50%, -50%, 0) scale(0.8);
    text-align: center;
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    color: #1c439b;
    font-family: Montserrat;
    font-size: 24px;
    font-weight: bold;
    line-height: 29px;
}

.pl-graph-circle-content strong {
    display: block;
    font-size: 114px;
    line-height: 0.8;
    margin-bottom: 15px;
}

.pl-graph-circle-content i {
    display: block;
    font-size: 72px;
    line-height: 0.9;
    font-weight: bold;
    font-style: normal;
    margin-top: 10px;
}

.pl-graph-circle-content.active {
    opacity: 1;
    -webkit-transform: translate3d(-50%, -50%, 0) scale(1);
    transform: translate3d(-50%, -50%, 0) scale(1);
}

.product-graph .et_pb_row {
    max-width: 970px;
}

/* Keyframes referenced only by the rules above. */
@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

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

@-webkit-keyframes animatepulseline {
    0% {
        border-color: #fff;
    }

    40% {
        border-color: #4e5e81;
    }

    60% {
        border-color: #3e558a;
    }

    100% {
        border-color: #1c439b;
    }
}

@keyframes animatepulseline {
    0% {
        border-color: #fff;
    }

    40% {
        border-color: #4e5e81;
    }

    60% {
        border-color: #3e558a;
    }

    100% {
        border-color: #1c439b;
    }
}

@-webkit-keyframes animatepulsecircle {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(194, 194, 194, 0.7),
            0 0 0 0 rgba(194, 194, 194, 0.7);
        box-shadow: 0 0 0 0 rgba(194, 194, 194, 0.7),
            0 0 0 0 rgba(194, 194, 194, 0.7);
    }

    40% {
        -webkit-box-shadow: 0 0 0 30px rgba(194, 194, 194, 0),
            0 0 0 0 rgba(194, 194, 194, 0.7);
        box-shadow: 0 0 0 30px rgba(194, 194, 194, 0),
            0 0 0 0 rgba(194, 194, 194, 0.7);
    }

    80% {
        -webkit-box-shadow: 0 0 0 30px rgba(194, 194, 194, 0),
            0 0 0 20px rgba(194, 194, 194, 0);
        box-shadow: 0 0 0 30px rgba(194, 194, 194, 0),
            0 0 0 20px rgba(194, 194, 194, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(194, 194, 194, 0),
            0 0 0 20px rgba(194, 194, 194, 0);
        box-shadow: 0 0 0 0 rgba(194, 194, 194, 0),
            0 0 0 20px rgba(194, 194, 194, 0);
    }
}

@keyframes animatepulsecircle {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(194, 194, 194, 0.7),
            0 0 0 0 rgba(194, 194, 194, 0.7);
        box-shadow: 0 0 0 0 rgba(194, 194, 194, 0.7),
            0 0 0 0 rgba(194, 194, 194, 0.7);
    }

    40% {
        -webkit-box-shadow: 0 0 0 30px rgba(194, 194, 194, 0),
            0 0 0 0 rgba(194, 194, 194, 0.7);
        box-shadow: 0 0 0 30px rgba(194, 194, 194, 0),
            0 0 0 0 rgba(194, 194, 194, 0.7);
    }

    80% {
        -webkit-box-shadow: 0 0 0 30px rgba(194, 194, 194, 0),
            0 0 0 20px rgba(194, 194, 194, 0);
        box-shadow: 0 0 0 30px rgba(194, 194, 194, 0),
            0 0 0 20px rgba(194, 194, 194, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(194, 194, 194, 0),
            0 0 0 20px rgba(194, 194, 194, 0);
        box-shadow: 0 0 0 0 rgba(194, 194, 194, 0),
            0 0 0 20px rgba(194, 194, 194, 0);
    }
}