@charset "UTF-8";

/* *  Imports */
@import url(https://fonts.googleapis.com/css?family=Lato:400,300,700,900);
@import url(https://fonts.googleapis.com/css?family=Roboto+Slab:400,700);
@import url("https://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css");

/* *  Variables */
/* Single Line truncation */
/* Multiline truncation */
/* *  Global styles */
html,
body,
.main,
.main-container {
    height: 100%;
    direction: rtl;
    width: 100%;
}

.backstage {
    transition: margin-right .5s;
    padding: 1%;
    float: left;
    position: absolute;
    left: 0;
    top: 7%;
}

.home {
    transition: margin-right .5s;
    padding: 1%;
    float: left;
}

.homediv {
    background-image: url('../img/sbu.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: auto;
    height: auto;
}

.backstdiv {
    background-image: url('../img/sbu.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: auto;
    height: auto;
}

body {
}

.row {
    max-width: 1024px;
}

/* *  Typography */
body,
p,
a,
li {
    font-family: 'Almarai', sans-serif;
    font-size: 13px;
}

a {
    color: #000000;
}

h2,
h3 {
    margin-top: 6px;
    margin-bottom: 6px;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: -1px;
    color: #313131;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 22px;
}

h4 {
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 40px;
    color: rgba(49, 49, 49, 0.7);
}

p:not(.author) {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.4;
}

p.author {
    margin-bottom: 10px;
    letter-spacing: -1px;
    font-weight: 400;
    color: rgba(49, 49, 49, 0.5);
}

/* *  Button */
a.button {
    font-size: 14px;
    font-weight: 600;
    border-radius: 3px;
    background-color: rgba(49, 49, 49, 0.5);
    margin-left: 5px;
    padding-left: 14px;
    padding-right: 14px;
}

a.button:hover,
a.button:focus {
    background-color: #219e9a;
}

/* *  Header */
.page-header {
    position: relative;
    width: 100%;
}

.main-logo {
    display: inline-block;
    padding: 1em;
    width: auto;
}

.main-logo a.logo {
    display: block;
    width: 150px;
    height: 40px;
    text-indent: -9999px;
    background: url("http://interactivejoe.com/book-viewer/assets/images/logo.svg");
    background-color: #fff;
    transition: background-color 250ms ease-out;
}

.main-logo a.logo:hover,
.main-logo a.logo:focus {
    background-color: #ecf0f1;
}

.menu-search {
    float: right;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0px;
}

/* *  Search Input */
.catalog-search {
    position: relative;
    width: auto;
    vertical-align: top;
    overflow: hidden;
    border-style: none;
    border-color: #000000;
    float: left;
    margin-left: .7%;
}

.input_field {
    position: relative;
    display: block;
    float: right;
    margin-top: 5%;
    border-radius: 4px;
    color: #313131;
    font-weight: normal;
    font-family: 'Almarai', sans-serif;
    background: none;
    box-shadow: none;
    -webkit-appearance: none;
    padding: 0 7px;
    border: 2px solid #7bb5c6;
    width: 100%;

    /* for box shadows to show on iOS */
}

.input_field:focus {
    outline: none;
    border: none;
    background: none;
    box-shadow: none;
    -webkit-appearance: none;
}

.input_field:focus .input_label-content {
    bottom: 20px;
}

.input_label {
    position: absolute;
    display: inline-block;
    padding: 0px 0.25em 0;
    width: 100%;
    height: calc(100% - 1em);
    color: #d2d6d5;
    font-weight: light;
    font-size: 15px;
    text-align: left;
    pointer-events: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    bottom: 0;
    left: 0;
}

.input_label:before {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100% - 10px);
    border-bottom: 1px solid rgba(49, 49, 49, 0.45);
    top: 0;
    left: 0;
}

.input_label:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 2px;
    width: 100%;
    height: calc(100% - 10px);
    border-bottom: 3px solid #219e9a;
    transform: translate3d(-100%, 0, 0);
    transition: transform 0.3s;
}

.input_label-content {
    position: absolute;
    width: 100%;
    bottom: 14px;
}

.input_label-search {
    position: relative;
    display: block;
    color: rgba(49, 49, 49, 0.45);
}

.input_label-search:after {
    content: "";
    position: relative;
    font-family: "fontawesome";
    top: 6px;
}

.input_field:focus + .input_label::after,
.input--filled .input_label::after {
    transform: translate3d(0, 0, 0);
}

.input_field:focus + .input_label .input_label-content,
.input--filled .input_label-content {
    -webkit-animation: anim-1 0.3s forwards;
    animation: anim-1 0.3s forwards;
}

@-webkit-keyframes anim-1 {
    50% {
        opacity: 0;
        transform: translate3d(1em, 0, 0);
    }

    51% {
        opacity: 0;
        transform: translate3d(-1em, -40%, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, -40%, 0);
    }
}

@keyframes anim-1 {
    50% {
        opacity: 0;
        bottom: 24px;
        transform: translate3d(5em, 0, 0);
    }

    51% {
        opacity: 0;
        bottom: 24px;
        transform: translate3d(-5em, -40%, 0);
    }

    100% {
        opacity: 1;
        bottom: 24px;
        transform: translate3d(0, -40%, 0);
    }
}

/* *  Menu */
.main-navigation {
    position: relative;
    float: right;
    margin: 16px 0;
    padding: 0 20px;
    height: 40px;
    border-left: 1px solid #d2d6d5;
}

.main-navigation a {
    display: inline-block;
    line-height: 40px;
    vertical-align: middle;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #313131;
}

.main-navigation a:before {
    content: "";
    position: relative;
    display: inline-block;
    padding-right: 10px;
    font-family: "fontawesome";
    font-size: 18px;
    font-weight: 400;
    color: rgba(49, 49, 49, 0.45);
    vertical-align: middle;
}

/* *  Off Canvas Menu */
.main-container {
    position: relative;
    overflow: auto;
}

.main-container.prevent-scroll,
.main-container.nav-menu-open {
    overflow: hidden;
}

.nav-menu {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;
    visibility: visible;
    width: 300px;
    height: 100%;
    transition: all 0.5s;
    transform: translate3d(100%, 0, 0);
    background-image: url('../img/bt22.png');
    background-size: cover;
}

.nav-menu:after {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    content: "";
    opacity: 1;
    transition: opacity 0.5s;
    display: none;
}

.nav-menu h2 {
    margin: 0;
    padding: 1em;
    color: #000000;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
    font-weight: 300;
    font-size: 2em;
}

.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.nav-menu li a {
    display: block;
    padding: 1em 1em 1em 1.2em;
    outline: none;
    box-shadow: inset 0 -1px rgba(0, 0, 0, 0.2);
    color: #054b90;
    text-transform: uppercase;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.1);
    letter-spacing: 1px;
    font-weight: 800;
    transition: background 0.3s, box-shadow 0.3s;
    text-align: right;
}

.nav-menu li:first-child a {
    box-shadow: inset 0 -1px rgba(0, 0, 0, 0.2), inset 0 1px rgba(0, 0, 0, 0.2);
}

.nav-menu li:hover {
    background: rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 -1px rgba(0, 0, 0, 0);
    color: #fff;
}

.nav-menu-open .nav-menu {
    visibility: visible;
    transform: translate3d(0, 0, 0);
}

.nav-menu-open .nav-menu:after {
    width: 0;
    height: 0;
    opacity: 0;
    transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
}

/* *  book List */
.toolbar {
    border-bottom: 1px solid #9bc4db;
    margin-bottom: .5%;
    margin-left: auto;
    margin-right: auto;
}

.toolbar select {
    color: #000000;
    font-size: 17px;
    border: none;
    background-color: #99dff9;
    font-weight: 600;
    margin-top: 5px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    padding-right: 20px;
}

.toolbar .filter-options {
    line-height: 20px;
    width: 100%;
    float: right;
}

.toolbar a.filter-item {
    color: #313131;
    transition: all 250ms ease-out;
    font-weight: 600;
    background-image: url('../img/bt.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 95%,cover;
    border-bottom: 0px solid transparent;
    font-size: 1rem;
    height: 55px;
    width: 125px;
    white-space: nowrap;
    margin-bottom: 1%;
    text-align: center;
    vertical-align: middle;
    line-height: 55px;
    position: relative;
    display: inline-block;
}

.toolbar a.filter-item.active {
    color: #2b0419;
    font-weight: bold;
    border-bottom: 3px solid #bd84f6;
    background-image: url('../img/bt2.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 95%,cover;
    text-align: center;
    vertical-align: middle;
    line-height: 50px;
    height: 50px;
    width: 125px;
    white-space: nowrap;
}

#grid {
    margin-bottom: 60px;
}

.book-item {
    list-style-type: none;
    padding: 0px;
    margin-top: 0;
    margin-bottom: 0;
    direction: rtl;
    display: flex;
}

.book-item:after {
    content: "";
    position: absolute;
    top: 0;
    right: 15px;
    width: calc(100% - 105px);
    border-radius: 3px;
    box-shadow: 0 0 0 0 transparent;
    transition: all 250ms ease-out;
    z-index: -1;
    height: 100%;
}

.book-item:hover {
    box-shadow: 0px 1px 1px 1px rgba(210, 214, 213, 0.5);
    background-color: rgba(255, 255, 255, 0.31);
    background-size: contain;
}

.book-item:hover .item-img img {
    box-shadow: 0px 0px 10px 0px rgba(49, 49, 49, 0.25);
}

.book-item:hover a.button {
    background-color: #219e9a;
}

.book-item:hover .bk-bookdefault {
    transform: rotate3d(0, 1, 0, 25deg);
}

.book-item:hover .bk-back {
    opacity: 1;
}

.book-item .item-img {
    display: inline-block;
    float: left;
    padding-right: 30px;
}

.book-item .item-img img {
    box-shadow: 0 0 0 0 transparent;
    transition: all 250ms ease-out;
}

.book-item .item-details {
    width: 100%;
    display: block;
    position: relative;
    float: right;
    margin: auto -15% auto auto;
}

.book-item h3 {
    white-space: wrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.book-item p:not(.author) {
    display: block;
    display: -webkit-box;
    height: 63px;

    /* Fallback for non-webkit */
    font-size: 15px;
    line-height: 1.4;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* *  Book Rotate */
.bk-img {
    position: relative;
    list-style: none;
    padding-ri: 30px;
    width: 70%;
    float: left;

    /* Individual style & artwork */
}

.bk-img .bk-wrapper {
    position: relative;
    width: 150px;
    height: 160px;
    z-index: 1;
    perspective: 1400px;
    justify-content: center;
}

.bk-img .bk-wrapper:last-child {
    width: 75%;
}

.bk-img .bk-book {
    position: absolute;
    width: 100%;
    height: 150px;
    transform-style: preserve-3d;
    transition: transform 0.5s;
    display: block;
}

.bk-img .bk-book > div,
.bk-img .bk-front > div {
    position: absolute;
    width: 100%;
}

.bk-img .bk-front {
    transform-style: preserve-3d;
    transform-origin: 0% 50%;
    transition: transform 0.5s;
    z-index: 10;
    transform: translate3d(0,  0, 20px);
}

.bk-img .bk-front > div {
    z-index: 1;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    border-radius: 0 3px 3px 0;
    box-shadow: inset 4px 0 10px rgba(0, 0, 0, 0.1);
}

.bk-img .bk-front:after {
    content: "";
    position: absolute;
    top: 1px;
    bottom: 1px;
    left: -1px;
    width: 1px;
}

.bk-img .bk-front,
.bk-img .bk-back,
.bk-img .bk-front > div {
    width: 150px;
    height: 215px;
}

.bk-img .bk-left,
.bk-img .bk-right {
    width: 40px;
    left: -20px;
}

.bk-img .bk-back {
    transform: rotate3d(0, 1, 0, -180deg) translate3d(0, 0, 20px);
    box-shadow: 5px 7px 15px rgba(0, 0, 0, 0.3);
    border-radius: 3px 0 0 3px;
    opacity: 0;
    transition: opacity 250ms ease-out;
}

.bk-img .bk-back:after {
    content: "";
    position: absolute;
    top: 0;
    left: 10px;
    bottom: 0;
    width: 3px;
    background: rgba(0, 0, 0, 0.06);
    box-shadow: 1px 0 3px rgba(255, 255, 255, 0.1);
}

.bk-img .bk-left {
    height: 215px;
    transform: rotate3d(0, 1, 0, -90deg);
}

.bk-img .bk-left h2 {
    width: 215px;
    height: 40px;
    transform-origin: 0 0;
    transform: rotate(90deg) translateY(-40px);
}

.bk-img .bk-cover {
    /* background-image: url(../images/1.png); */
    background-repeat: no-repeat;
    background-position: 10px 40px;
}

.bk-img .bk-cover:after {
    content: "";
    position: absolute;
    top: 0;
    left: 10px;
    bottom: 0;
    width: 3px;
    background: rgba(0, 0, 0, 0.06);
    box-shadow: 1px 0 3px rgba(255, 255, 255, 0.1);
}

.bk-img .bk-cover {
    background-repeat: no-repeat;
    background-position: top left !important;
}

.bk-img .bk-front > div,
.bk-img .bk-left {
    background-color: rgba(33, 158, 154, 0);
}

/* *  Lightbox */
.main-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background-color: rgba(49, 49, 49, 0.65);
}

.main-overlay .overlay-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main-overlay .overlay-details {
    position: absolute;
    display: block;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 800px;
    max-height: 480px;
    padding: 40px;
    overflow: hidden;
    border-radius: 3px;
    background-color: #fff;
    box-shadow: 0px 2px 1px 2px rgba(0, 0, 0, 0.3);
    transform: translate(-50%, -50%);
}

.main-overlay .overlay-image {
    display: inline-block;
    margin-right: 30px;
    max-width: 275px;
    vertical-align: top;
}

.main-overlay .overlay-image img {
    position: relative;
    display: inline-block;
    z-index: 1;
    box-shadow: -12px 12px 15px -5px rgba(0, 0, 0, 0.3);
}

.main-overlay .overlay-image .back-color {
    position: absolute;
    top: 0;
    left: 0;
    width: 275px;
    height: 100%;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    background-color: green;
}

.main-overlay .close-overlay-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    opacity: 0.3;
    text-indent: -9999px;
    transition: opacity 250ms ease-out;
}

.main-overlay .close-overlay-btn:hover {
    opacity: 1;
}

.main-overlay .close-overlay-btn:before {
    content: " ";
    position: absolute;
    left: 15px;
    width: 2px;
    height: 33px;
    background-color: #313131;
}

.main-overlay .close-overlay-btn:after {
    content: " ";
    position: absolute;
    left: 15px;
    width: 2px;
    height: 33px;
    background-color: #313131;
}

.main-overlay .close-overlay-btn:before {
    transform: rotate(45deg);
}

.main-overlay .close-overlay-btn:after {
    transform: rotate(-45deg);
}

.main-overlay .back-preview-btn {
    position: absolute;
    top: 7px;
    left: -34px;
    width: 30px;
    height: 30px;
    opacity: 0.3;
    text-indent: -9999px;
    transition: opacity 250ms ease-out;
}

.main-overlay .back-preview-btn:hover {
    opacity: 1;
}

.main-overlay .back-preview-btn:before {
    content: " ";
    position: absolute;
    left: 15px;
    width: 2px;
    height: 15px;
    background-color: #313131;
}

.main-overlay .back-preview-btn:after {
    content: " ";
    position: absolute;
    top: 10px;
    left: 15px;
    width: 2px;
    height: 15px;
    background-color: #313131;
}

.main-overlay .back-preview-btn:before {
    transform: rotate(45deg);
}

.main-overlay .back-preview-btn:after {
    transform: rotate(-45deg);
}

.main-overlay .overlay-desc {
    display: inline-block;
    margin-top: -400px;
    width: calc(100% - 320px);
    vertical-align: top;
    transition: all 500ms ease-out;
}

.main-overlay .overlay-desc.activated {
    display: inline-block;
    margin-top: 0;
}

.main-overlay .overlay-preview {
    position: relative;
    display: inline-block;
    float: right;
    margin-top: 40px;
    width: calc(100% - 310px);
    vertical-align: top;
    transition: all 500ms ease-out;
}

.main-overlay .overlay-preview.activated {
    margin-top: -430px;
}

.main-overlay .preview-content {
    padding-right: 24px;
    padding-top: 10px;
    display: block;
    display: -webkit-box;
    height: 360px;

    /* Fallback for non-webkit */
    font-size: 15px;
    line-height: 1.5;
    -webkit-line-clamp: 16;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow: scroll;
    text-overflow: clip;
    font-weight: 400;
}

.main-overlay .preview-content h5,
.main-overlay .preview-content p {
    font-family: "Roboto Slab", serif;
}

.main-overlay .preview-content h5 {
    font-weight: bold;
}

.main-overlay .preview-content p {
    font-weight: normal;
}

.main-overlay .preview-content:before {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    width: 100%;
    height: 30px;
    background: rgba(255, 255, 255, 0);
    background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 30%, white 80%);
}

.main-overlay .preview-content:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
    background: rgba(255, 255, 255, 0);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 30%, white 80%);
}

.overlay-details {
    display: none;
}

/* *  Footer */
#footer {
    display: block;
    position: fixed;
    background-image: url('../img/footer.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 70%, cover;
    width: 100%;
    height: 5.2vw;
    z-index: 1;
    padding-top: 1%;
    padding-bottom: 1%;
    bottom: 0px;
}

#footer div,
#footer a,
#footer p {
    color: #fff;
    font-size: 12px;
    text-align: center;
}

.box-out {
    z-index: -99;
    width: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
}

.box-inner {
    /* display: none; */
    z-index: 99;
    width: 900px;
    display: flex;

    /* justify-content: space-between; */
    align-items: center;
    position: absolute;
    top: 350px;
    overflow: hidden;
    background-color: #fff;
}

.book {
    width: 100%;
    height: 150px;
    transition: all .3s ease-in-out;
    transform-origin: left center 0px;
    transform-style: preserve-3d;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    -webkit-backface-visibility: hidden;
    float: right;
    overflow: hidden;
    clear: right;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.box-out .book::after {
    content: " ";
    display: block;
    opacity: 0;
    width: 180px;
    height: 255px;
    position: relative;
    left: 8px;
    transition: all .3s ease;
}

.box-out .book::before {
    z-index: 999;
    display: block;
    width: 20px;
    height: 100px;
    opacity: 0;
    position: absolute;
    top: -12px;
    right: 8px;
    transition: all .25s;
}

/* ----- book-blur ----- */
.book-blur {
    filter: blur(30px);
}

.box-inner .book {
    margin-left: 90px;
    position: relative;
    top: -194px;
}

/* ----- hover ----- */
.book:hover {
    cursor: pointer;
    transform: rotatey(5deg) rotateZ(1deg) scale(1.02);
    -webkit-backface-visibility: hidden;

    /* transform: scale(1.02); */
}

.book:hover::after {
    content: " ";
    display: block;
    opacity: 1;
    width: 172px;
    height: 255px;
    position: relative;
    left: 8px;
    background: linear-gradient(-180deg, rgba(255, 255, 255, .1) 0%, rgba(255, 255, 255, 0) 60%);
}

.book:hover::before {
    transform: translateY(9px);
    opacity: 1;
}

.dr {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 100px;
}

.sedec {
    font-size: 14px;
    padding-top: 22px;
}

.sedec:active {
    visibility: collapse;
    display: block;
}

.dec {
    text-align: right;
    padding-left: 70px;
}

.dec:active {
    text-align: right;
    padding-left: 70px;
    visibility: hidden;
}

.typelearn {
    margin-top: 18%;
}

.grid-shuffle {
    overflow: auto;
    direction: ltr;
    padding-right: 5%;
    display: block;
    position: relative;
    object-fit: contain;
    max-height: 480px;
}

.maintitle {
    background-image: url('../img/fbu.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    height: 55px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-left: auto;
    margin-right: auto;
    display: block;
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
    line-height: 55px;
    width: 125px;
    margin-bottom: -1.7%;
}

.subtitle {
    background-image: url('../img/sbu.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #ffffff;
    font-weight: 600;
    font-size: calc(10px + 1vw);
    height: auto;
    display: block;
    margin-right: auto;
    margin-left: auto;
    max-width: 300px;
    white-space: nowrap;
    margin-top: 1%;
    padding: 1rem;
}

.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    right: 0;
    background-image: url('../img/bt22.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 100;
}

.sidebar a {
    padding: 8px 6% 8px 32px;
    text-decoration: none;
    font-size: 2rem;
    color: #376292;
    display: block;
    transition: 0.3s;
    text-align: right;
    font-weight: 600;
}

.sidebar a:hover {
    color: #f1f1f1;
}

.sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.openbtn {
    font-size: 20px;
    cursor: pointer;
    color: white;
    padding: 10px 15px;
    border: none;
    background-image: url('../img/sbu.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.openbtn:hover {
    background-color: rgba(255, 255, 255, 0);
}

#main {
    transition: margin-right .5s;
    padding: 1%;
    float: right;
}

.dropdown-btn {
    text-decoration: none;
    font-size: 2rem;
    color: rgba(0, 36, 86, 0.9);
    display: block;
    border: none;
    background: none;
    width: 100%;
    text-align: right;
    cursor: pointer;
    outline: none;
    font-weight: 600;
    padding-top: 5%;
    padding-bottom: 5%;
    padding-right: 6%;
}

.dropdown-btn:hover {
    color: #f1f1f1;
}

.dropdown-container {
    display: none;
    padding-left: 8px;
    padding-right: 5%;
}

.fa-caret-down {
    float: right;
    padding-right: 8px;
}

.backstbt {
    font-size: 20px;
    cursor: pointer;
    border: none;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    height: auto;
    width: auto;
}

.homebt {
    font-size: 20px;
    cursor: pointer;
    color: white;
    padding: 10px 15px;
    border: none;
    background-image: url('../img/home-solid.svg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 10px;
}

.page-title .category-title {
    margin-top: 2%;
}

.bac {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left top;
    background-image: url('../img/bg6.png');
}

.bacislamic {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left top;
    background-image: url('../img/islamic4.png');
}

.bacgen {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left top;
    background-image: url('../img/bac1.png');
}

