.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;
}

@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: 15px;
}

.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{
    margin-bottom: 25px;
}

.profile-info{
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 70px;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto 50px auto;
}

.profile-image{
    width: 100%;
    height: 100%;
    border: 1px solid #e5e5e5;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}


.profile-image-outer{
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.profile-name-image-details{
    display: none;
}

.profile-image-wrapper{
    width: 360px;
    height: 360px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}

.profile-image-wrapper.no-profile{
    margin: auto;
}

.profile-image-wrapper.story{
    padding: 3px;
    background: linear-gradient(
        45deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888
    )
}

.profile-image-wrapper.story .profile-image{
    padding: 2px;
}

.profile-error-title{
    font-size: 21px;
    line-height: 1.6;
    margin: 25px 0 10px 0;
    color: #222;
}

.profile-error-description{
    font-size: 15px;
    color: #777;
    line-height: 1.8;
    max-width: 350px;
}

.profile-name{
    font-size: 20px;
    color: #222;
    margin-top: 7px;
}

.profile-name span{
    max-width: 100%;
    min-width: 0px;
    word-break: break-word;
}

.profile-name i{
    display: inline-block;
    font-size: 18px;
    color: #0667d5; 
}

.profile-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-handle{
    font-size: 15px;
    color: #777;
    margin-top: 10px;
}

.profile-post-stats{
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: space-between;
    margin: 30px 0;
    max-width: 300px;
}

.profile-post-stat{
    text-align: center;
}

.proifle-post-stat-count{
    font-size: 18px;
    font-weight: 500;
    color: #444;
    line-height: 1.6;
}

.profile-post-stat-label{
    font-size: 14px;
    color: #777;
    margin-top: 5px;
}

.profile-bio{
    white-space: pre-wrap;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    max-width: 500px;
}

.profile-bio a{
    text-decoration: none;
    color: var(--primary);
}

.profile-category{
    font-size: 15px;
    color: #777;
    line-height: 1.7;
    font-weight: bold;
}

.profile-download-buttons{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.profile-download-button{
    width: 100%;
    height: 40px;
    border-radius: 5px;
    background-color: #eee;
    color: #444;
    border: 1px solid #ddd;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background-color 1s cubic-bezier(0.075, 0.82, 0.165, 1);
    margin-top: 10px;
}

.profile-download-button:hover{
    background-color: #ddd;
}

.profile-download-button:active{
    background-color: #ccc;
}

.site-ad{
    margin-bottom: 25px;
}

@media only screen and (max-width: 900px){
   .profile-image-wrapper{
    width: 260px;
    height: 260px;
   }
}

@media only screen and (max-width: 700px){
    .profile-info{
        grid-template-columns: 1fr;
        gap: 30px;
        align-items: center;
    }

    .profile-image-wrapper{
        width: 100%;
        max-width: 400px;
        min-height: 150px;
        height: auto;
    }

    .profile-image-outer{
        margin: auto;
    }

    .profile-info-wrapper{
        width: 100%;
        max-width: 400px;
        margin: auto;
    }
}

@media only screen and (max-width: 500px){
    .profile-image-content{
        width: 100%;
    }
}