@use '../../utils' as *;
/*----------------------------------------*/
/*  5.3 Sidebar css
/*----------------------------------------*/

.sidebar{
    &-wrapper{
        padding-left: 55px;
        @media #{$lg}{
            padding-left: 0;
        }
        @media #{$md,$xs}{
            margin-top: 40px;
            padding-left: 0;
        }
    }
    &-widget{
        &-title{
            font-weight: 700;
            font-size: 20px;
            line-height: 1;
            margin-bottom: 25px;
            color: var(--tp-common-black);
        }
        & ul{
            & li{
                list-style: none;
                margin-bottom: 18px;
                &:last-child{
                    margin-bottom: 0;
                }
                a{
                    font-weight: 500;
                    font-size: 15px;
                    line-height: 1;
                    color: #4d5051;
                    &:hover{
                        color: var(--tp-common-blue);
                    }
                }
            }
        }
    }
    &-border-bottom{
        border-bottom: 1px solid #e8e8e9;
    }
    &-content{
        &-title{
            font-weight: 700;
            font-size: 16px;
            text-transform: uppercase;
            color: var(--tp-common-black);
            margin-bottom: 6px;
        }
        &-designation{
            font-weight: 400;
            font-size: 14px;
            color: #727A7D;
            display: block;
            margin-bottom: 13px;
        }
        & p{
            font-size: 16px;
            color: #838383;
            margin-bottom: 27px;
        }
        &-social{
            & a{
                height: 37px;
                width: 42px;
                line-height: 37px;
                text-align: center;
                display: inline-block;
                border: 1px solid #E8E8E8;
                margin-right: 12px;
                & i{
                    transition: .3s;
                }
                &:hover{
                    border: 1px solid var(--tp-theme-1);
                    background-color: var(--tp-theme-1);
                    & i{
                        color: var(--tp-common-white);
                    }
                }
            }
        }
    }
    &-search{
        position: relative;
        & input{
            width: 100%;
            height: 60px;
            line-height: 60px;
            padding: 0 25px;
            border-radius: 6px;
            padding-right: 50px;
            background: #eef0f5;
            border: 1px solid transparent;
            @include tp-placeholder{
                font-weight: 400;
                font-size: 15px;
                color: #8e8f92;
            }
            &:focus{
                border: 1px solid #277dff;
                box-shadow: 0 0 0 3px rgba(39, 125, 255, 0.1);
            }
        }
        & button{
            position: absolute;
            top: 0;
            right: 25px;
            height: 100%;
            line-height: 60px;
            color: var(--tp-common-black);
        }

    }
}
.tagcloud{
    & a{
        border-radius: 4px;
        padding: 10px 18px;
        font-weight: 700;
        font-size: 12px;
        line-height: 1;
        color: #525356;
        margin-bottom: 10px;
        display: inline-block;
        text-transform: uppercase;
        background-color: #eef0f5;
        @media #{$xs}{
            padding: 10px 14px;  
        }
        &:not(:last-child){
            margin-right: 5px;
        }
        &:hover{
            color: var(--tp-common-white);
            background-color: var(--tp-common-blue);
        }
    }
}