.nav-search-outer, .nav-search-mobile{
    display: none !important;
}

.tool-container{
    padding: 35px 0;
    border-top: 1px solid #f3f3f3;
}

/* Tool Content */
.tool-input-area{
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: stretch;
    gap: 15px;
}

.tool-input{
    width: 100%;
    height: 70px;
    position: relative;
}

.tool-input input{
    width: 100%;
    height: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    padding: 0 20px 0 50px;
    font-size: 16px;
    font-weight: 500;
    color: #555;
    transition: border-color 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.tool-input input:focus{
    outline: 1px solid var(--primary);
    border-color: var(--primary);
}

.tool-input input:focus ~ i{
    color: var(--primary);
}

.tool-input i{
    font-size: 20px;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #444;
}

.tool-input-button button{
    height: 100%;
    min-width: 200px;
    border: var(--primary);
    background: linear-gradient(
        20deg,
        var(--secondary-active) 0%,
        var(--primary) 100%
    );
    border-radius: 8px;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    transition: transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
    position: relative;
}

.tool-input-button button:active{
    transform: scale(0.98);
}

.tool-input-button button.loading:active{
    transform: scale(1);
}

.tool-input-button button.loading::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .3);
    border-radius: 8px;
}

.tool-input-button button i.ri-loader-line{
    display: none;
}

.tool-input-button button.loading i.ri-loader-line{
    display: inline-block;
    animation: rotate 1s infinite linear;
}

.tool-input-button button.loading i.ri-arrow-right-line{
    display: none;
}

.tool-input-button button.disabled{
    opacity: 1;
    background: #c00;
}

@keyframes rotate{
    to{
        transform: rotate(360deg);
    }
}

.tool-error-outer{
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgb(248, 239, 239);
    color: #c00;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 25px;
}

.tool-error-outer a{
    text-decoration: none;
    color: inherit;
    font-weight: bold;
}

@media screen and (max-width: 700px){
    .tool-input-area{
        flex-direction: column;
    }

    .tool-input-button{
        width: 100%;
        height: 55px;
    }

    .tool-input-button button{
        width: 100%;
        height: 100%;
    }
}



/* Tool Result */
.tool-result{
    background-color: #fff;
    margin-bottom: 25px;
    border-radius: 5px;
}

.followers-header{
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.followers-header-options{
    display: flex;
    align-items: center;
    gap: 15px;
}

.followers-header-option{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.followers-header-option:hover{
    background-color: #f5f6f6;
}

.followers-header-option:active{
    background-color: #eee;
    transform: scale(0.95);
}


.followers-header-status{
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #777;
    font-weight: 500;
}

.followers-header-status-dot{
    width: 7px;
    height: 7px;
    background-color: rgb(0, 200, 0);
    display: inline-block;
    margin: 0 5px;
    box-shadow: 0 0 0 1px rgba(0, 200, 0, .4);
    animation: dot 1s infinite linear;
    border-radius: 50%;
}

@keyframes dot{
    100%{
        box-shadow: 0 0 10px 10px rgba(0, 200, 0, 0);
    }
}


.followers-outer{
    width: 100%;
    height: 100%;
    border: 1px solid #eee;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
}

.followers-content{
    flex: 1;
    min-height: 400px;
    padding: 65px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.followers-profile-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.followers-profile-name{
    font-size: 20px;
    line-height: 1.7;
}

.followers-profile-name i{
    color: #0667d5;
    font-size: 18px;
}

.followers-profile-image{
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
}

.followers-profile-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.followers-profile-name-info{
    font-size: 16px;
    color: #777;
    max-width: 400px;
    line-height: 1.7;
    white-space: pre-wrap;
}

.followers-profile-name-info b{
    font-weight: 600;
}

.followers-count{
    font-size: 45px;
    font-weight: 600;
    margin: 25px 0;
}

.followers-count,
.followers-footer-item-text {
    transition-duration: 3s !important;
}

.followers-footer-graph{
    width: 100%;
    position: relative;
}

.followers-footer-graph-toolpit{
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    padding: 6px;
    background-color: #fff;
    border: 1px solid #eee;
    box-shadow: 0 0 3px 1px #f8f8f8;
    font-size: 12px;
    font-weight: bold;
    color: #444;
}

.followers-footer-graph-toolpit.show{
    visibility: visible;
    opacity: 1;
}

.followers-footer{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 15px 20px;
}

.followers-footer-item{
    display: flex;
    flex-direction: column;
    gap: 5px;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 20px;
}

.followers-footer-item-text{
    font-size: 20px;
    font-weight: 600;
    color: #222;
    line-height: 1.6;
}

.followers-footer-item-label{
    font-size: 14px;
    margin-top: 5px;
    color: #666;
}

.tool-result-progress{
    width: 0%;
    background-color: var(--primary);
    height: 2px;
    animation: none;
}

.tool-result-progress.animate{
    animation: progress 1s linear;
}

.site-ad{
    margin-bottom: 25px;
}

@keyframes progress {
    50%{
        width: 100%;
    }

    100%{
        width: 100%;
    }
}