@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');

body{
    font-family: "Tajawal", system-ui;
    font-weight: 200;
    font-style: normal;
    background-color: #e8f1fa;
}

.publish{

}

.publish .card{
    transition: all .5s ease-in-out;
}

.publish .card:hover{
    background-color: #f1f1f1;
}

.publish h4{
    font-weight: 500;
    color: #000;
    line-height: 140%;
}

.publish .social-network{
    list-style: none;
    justify-content: start;
}

.publish .social-network li{
    
}
.publish .social-network li a{
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 22px;
    /* color: #fff; */
    text-decoration: none;
}
.publish .social-network .twitter{
    background-color: #000;
    color: #fff;
}
.publish .social-network .facebook{
    background-color: #054a8a;
    color: #fff;
}
.publish .social-network .whatsapp{
    color: #fff;
}
.publish .social-network .copy-2{
    background-color: #8f8f8f;
}
.publish .social-network .copy-2 i{
    color: #fff;
}


.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 15px;
    bottom: 15px;
    z-index: 996;
    background: #0cbaa4;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    transition: .4s
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0
}

.back-to-top:hover,
.btn-theme:hover {
    background: #2e3e4e;
    color: #fff
}

.back-to-top.active {
    visibility: visible;
    opacity: 1
}

.copy-option{
    position: relative;
}

.copy-option .tooltiptext{
    visibility: hidden;
    width: 100px;
    background-color: #8f8f8f;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-weight: 500;
}
.copy-option .tooltiptext::after{
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
}
.copy-option:hover .tooltiptext{
    visibility: visible;
    opacity: 1;
}

.pagination{
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .page-link{
    font-weight: 600;
}

.pagination .page-item.active .page-link{
    color: #fff !important;
}

.pagination .page-item:last-child .page-link{
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.pagination .page-item:first-child .page-link{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}