﻿

.linksbox {
    display: inline-block;
    margin-top: 18px;
    margin-right: 12px;
}

    .linksbox a {
        color: white;
        background-color: #000;
        float: right;
        text-align: center;
        position: relative;
        line-height: 24px;
        min-width: 1em;
        padding: 4px 18px;
        height: 24px;
        font-size: 14px;
        font-weight: 500;
        border: none;
        text-decoration: none;
        transition: background-color .3s;
        margin: 2px 4px;
        border-radius: 100px;
    }
        .linksbox a.active {
            background-color: rgb(26,115,232);
            color: white;
            border-radius: 100px;
        }

        .linksbox a:hover:not(.active) {
            background-color: rgb(26,115,232);
            border-radius: 100px;
        }
.pagination {
    display: inline-block;
    margin-top: 18px;
}

    .pagination a {
        color: black;
        float: left;
        text-align: center;
        position: relative;
        line-height: 2em;
        min-width: 1em;
        padding: 1px 12px;
        font-size: 14px;
        border: 0px solid #000;
        text-decoration: none;
        transition: background-color .3s;
        margin: 0 1px;
    }


        .pagination a.more {
            padding: 1px 1px;
            cursor: default;
        }

        .pagination a.active {
            background-color: #000;
            color: white;
            border-radius: 4px;
        }


        .pagination a:hover:not(.more,.active) {
            background-color: #ddd;
            border-radius: 4px;
        }


/* Swipe works with mouse as well but often causes text selection. */
img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.logo{

    width: 65px;
}

.ui-content {
   
    padding: .4em;
}

.serach-item {
    width: 70%;
}
/* Arrow only buttons in the header. */
#main-page .ui-header .ui-btn {
    background: none;
    border: none;
    top: 9px;
}

#main-page .ui-header .ui-btn-inner {
    border: none;
}
/* Content styling. */
dl {
    font-family: "Times New Roman", Times, serif;
    padding: 1em;
}

dt {
    font-size: 2em;
    font-weight: bold;
}

    dt span {
        font-size: .5em;
        color: #777;
        margin-left: .5em;
    }

dd {
    font-size: 1.25em;
    margin: 1em 0 0;
    padding-bottom: 1em;
    border-bottom: 1px solid #eee;
}

.back-btn {
    float: right;
    margin: 0 2em 1em 0;
}

body {
    font-family: "Noto Sans Arabic";
}


.ui-icon-copy:after {
    background-image: url("/StaticFiles/themes/content-copy.svg");
}
/* Fallback */
.ui-nosvg .ui-icon-copy:after {
    background-image: url("/StaticFiles/themes/text-box-multiple-custom.png");
}

#snackbar {
    visibility: hidden;
    min-width: 100px;
    margin-left: -50px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
}

    #snackbar.show {
        visibility: visible;
        -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
        animation: fadein 0.5s, fadeout 0.5s 2.5s;
    }

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}


