.website-analyer {
    position: relative;
}

.error {
    display: none;
    position: absolute;
    left: 4px;
    top: 115%;
    width: auto;
    background: rgba(255, 255, 255, 0.8);
    color: red;
    padding: 5px 10px;
    text-align: left;
}

.error-field {
    border: 1px solid red !important;
}

.error p {
    margin-bottom: 0;
}

.analyzer-modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

#analyzer-modal-inner {
    text-align: center;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    height: auto;
}

.analyzer-modal .chart-container {
    position: relative;
    width: 307px;
    height: 298px;
    margin: 0 auto;
}

.analyzer-modal .status {
    color: #fff;
    font-size: 25px;
    margin-top: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#analyzer-progress-container {
    stroke: #bbbbbb;
    animation: pulseOuter 2s infinite;
    -webkit-animation: pulseOuter 2s infinite;
}

@keyframes pulseOuter {
    0% {
        stroke: #bbbbbb
    }
    50% {
        stroke: #ffffff
    }
    100% {
        stroke: #bbbbbb
    }
}

@-webkit-keyframes pulseOuter {
    0% {
        stroke: #bbbbbb
    }
    50% {
        stroke: #ffffff
    }
    100% {
        stroke: #bbbbbb
    }
}


#analyzer-progress {
    stroke: #2EACE0;
    animation: pulseInner 2s infinite;
    -webkit-animation: pulseInner 2s infinite;
}

@keyframes pulseInner {
    0% {
        stroke: #2EACE0
    }
    50% {
        stroke: #3097c1
    }
    100% {
        stroke: #2EACE0
    }
}

@-webkit-keyframes pulseInner {
    0% {
        stroke: #2EACE0
    }
    50% {
        stroke: #3097c1
    }
    100% {
        stroke: #2EACE0
    }
}



#load-time-iframe {
    display: none !important;
}


.analyzer-modal .close {
    /*display: none;*/
    opacity: 0.9;
    font-family: "lato", arial, sans-serif;
    font-weight: normal;
    font-size: 30px;
    transition: all .2s ease-in-out;
}

.analyzer-modal .close-button {
    height: 20px;
    width: 20px;
    position: relative;
    box-sizing: border-box;
    line-height: 20px;
    display: inline-block;
    vertical-align: middle;
}

.analyzer-modal .close-button::before,
.analyzer-modal .close-button::after {
    transform: rotate(-45deg);
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -1px;
    margin-left: -10px;
    display: block;
    height: 1px;
    width: 20px;
    background-color: #000;
    transition: all 0.25s ease-out;
}

.analyzer-modal .close-button::after {
    transform: rotate(45deg);
}

.analyzer-modal .close:hover .close-button::before,
.analyzer-modal .close:hover .close-button::after {
    transform: rotate(0deg);
}

.analyzer-modal .close {
    top: 30px;
    font-size: 18px;
    font-weight: 300;
    right: 30px;
    position: fixed;
    cursor: pointer;
    z-index: 100000 !important;
    color: #000;
    background: none !important;
}

.three-dots-loader,
.three-dots-loader:before,
.three-dots-loader:after {
    border-radius: 50%;
    width: 10px;
    height: 10px;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: load7 1.8s infinite ease-in-out;
    animation: load7 1.8s infinite ease-in-out;
}

.three-dots-loader {
    color: #ffffff;
    font-size: 10px;
    margin: 20px auto;
    position: relative;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
    top: -16px;
}

.three-dots-loader:before,
.three-dots-loader:after {
    content: '';
    position: absolute;
    top: 0;
}

.three-dots-loader:before {
    left: -20px;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.three-dots-loader:after {
    left: 20px;
}

@-webkit-keyframes load7 {
    0%,
    80%,
    100% {
        box-shadow: 0 1.5em 0 -1.3em;
    }
    40% {
        box-shadow: 0 1.5em 0 0;
    }
}

@keyframes load7 {
    0%,
    80%,
    100% {
        box-shadow: 0 1.5em 0 -1.3em;
    }
    40% {
        box-shadow: 0 1.5em 0 0;
    }
}
