/* ...google font... */
@import url('https://fonts.googleapis.com/css2?family=Cairo:slnt,wght@-11..11,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


:root {
    --color-principale: #edf2fc;
    --color-hover: #009879;
    --bg-color-hover: #2121211e;
    --white-color: white;

}

* {
    font-family: "cairo", serif;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

body {
    background-color: var(--white-color);
}

.container {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    position: fixed;
    /* top: 0; */
    z-index: 9999;
}

.head {
    display: flex;
    justify-content: space-between;
    text-align: center;
    align-items: center;
    width: 100%;
    height: 65px;
    padding: 0 15px;
    background-color: white;
    border-bottom: 1px solid #2121211e;
    border-radius: 12px;
}

.head .logo a {
    font-size: 1.4rem;
    font-weight: 700;
    color: #212121;
}

.head .menu-home-container {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;


}

.head .menu-home-container .menu a::before {
    position: absolute;
    top: 25px;
    content: "";
    background: #009879;
    height: 4px;
    border-radius: 8px;
    width: 0;
    transition: all .3s;
}

.menu .menu-item {
    position: relative;
}

.menu .menu-item .sub-menu {
    width: 204px;
    display: block;
    position: absolute;
    top: 45px;
    left: -25px;
    transition: all 0.6s;
    padding: 9px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    border-radius: 4px;
    z-index: 999;
    background: #009879;
    box-shadow: 0 4px 10px rgba(39, 57, 101, .1);
    border-radius: 10px;
}

.menu .menu-item:hover .sub-menu {
    visibility: visible;
    display: block;
    opacity: 1;
}

.menu-item-has-children>a::after {
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    top: 10px;
    -webkit-font-smoothing: antialiased;
    content: "\f107";
    margin-left: 5px;
    color: #009879;
}

.menu-item .sub-menu li {
    position: relative;
    width: 100%;
}

.menu-item .sub-menu a {
    color: white;
    display: inline-block;
    position: relative;
    width: 100%;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all .3s
}

.menu-item .sub-menu li:hover {
    color: white;
    width: 100%;
    border-radius: 6px;
    background-color: #4f4f4f;
}

.menu-item .sub-menu li:hover a {
    margin: 0 10px;
}

.menu-item .sub-menu:after {
    content: "";
    position: absolute;
    background-color: transparent;
    border: 16px solid;
    border-color: transparent transparent #009879 transparent;
    top: -35px;
    left: 43px;
    filter: drop-shadow(0.12px -1px 0px #d3d0d0);

    /* background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='8' fill='none'%3E%3Cpath d='M7.993.806a3 3 0 014.014 0L20 8H0L7.993.806z' fill='%23fff'/%3E%3C/svg%3E); */
}

.head .menu-home-container .menu>li>a:hover::before {
    width: 100%;
}

.head .menu-home-container .menu {
    transition: all .5s ease-in-out;
    display: flex;
    flex-direction: row-reverse;
    gap: 30px;

}

.head .menu-home-container .menu>li>a {
    position: relative;
    font-weight: 700;
    font-size: 1.1rem;
    color: #212121;
    transition: all .3s;
}

.head .menu-home-container .menu>li>a:hover {
    color: #009879;
    border-radius: 8px;
}

.hamburger-menu {
    display: none;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    width: 30px;
    height: 30px;
    border-radius: 5px;
}

.hamburger-menu span {
    background-color: #212121;
    width: 100%;
    border-radius: 5px;
    height: 4px;
    transition: all .2s;
}

.hamburger-menu span:nth-child(1) {
    width: 35%;
    transform: translateY(0px) translateX(-1px) rotate(-45deg);
}

.hamburger-menu span:nth-child(2) {
    width: 72%;
    transform: translateY(0px) translateX(0px) rotate(-45deg);
    background-color: #009879;
}

.hamburger-menu span:nth-child(3) {
    width: 35%;
    transform: translateY(0px) rotate(-45deg);
}

/* ....hamburger menu open ....*/
.open span:nth-child(1) {
    width: 35%;
    transform: translateY(4px) translateX(-5px) rotate(45deg);
    background-color: #009879;
}

.open span:nth-child(2) {
    width: 72%;
    transform: translateY(0px) translateX(-1px) rotate(-45deg);
    background-color: #009879;
    z-index: 1;
}

.open span:nth-child(3) {
    width: 35%;
    transform: translateY(-5px) translateX(2px) rotate(45deg);
    background-color: #009879;
}

.container-body {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-top: 60px;
    margin-left: auto;
    min-height: calc(100vh - 120px);
    margin-right: auto;
    overflow: hidden;
}

.herosection {
    display: flex;
    height: 500px;
    margin-top: 65px;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    overflow: hidden;
    background-color: #009879;
    color: white;
    border-radius: 12px;
}

.herosection .content {
    display: flex;
    width: 350px;
    gap: 14px;
    justify-content: center;
    flex-direction: column;

}

.button {
    position: relative;
    padding: 3px 10px;
    margin: auto;
    border-radius: 12px;
    border: 2px solid #ffffff;
    background-color: white;
    font-family: "cairo";
    font-weight: 600;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 10px;
}

.button a {
    display: inline-block;
    color: #212121;
    font-size: 16px;
    font-family: "cairo";
    font-weight: 700;
    width: 100%;
    height: 100%;

}

.button a:hover {
    color: white;
}

.button::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 106px;
    background-color: #009879;
    width: 0px;
    height: 0px;
    border-radius: 30%;
    transition: all .5s;
    z-index: -1;
}

.button:hover::before {
    top: -17px;
    left: -44px;
    width: 300px;
    height: 300px;
}

.herosection .content p {
    font-family: "cairo";
    font-size: 30px;
    font-weight: 900;
    line-height: 2;
    text-align: inherit;
}

.herosection img {
    filter: drop-shadow(0 0 0.12px);
    width: 500px;
}

.herosection .images {
    z-index: 1;
    position: relative;

}

.grid-post {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 0px auto;
    gap: 20px 8px;
}

.postes {
    position: relative;
    display: flex;
    width: 100%;
    height: 504px;
    flex-wrap: wrap;
    margin: 0px auto;
    gap: 5px;
    overflow: hidden;
    align-items: center;
    align-content: flex-start;
    justify-content: center;
    box-shadow: 0px 0px 5px 1px gainsboro;
    border-radius: 12px;
}


.postes .date-poste {
    position: absolute;
    bottom: 187px;
    color: white;
    font-weight: 700;
    font-size: 10px;
    outline: 2px solid white;
    left: 5px;
    padding: 0 5px;
    text-align: center;
    border-radius: 6px;
    background-color: #009879;
}

.thumbnail-post {
    position: relative;
    margin-top: 23px;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
}

.thumbnail-post img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.thumbnail-post:hover {
    opacity: 0.7;
}

h1.title-post {
    font-size: 17px;
    padding: 0 5px;
}

.content-post {
    padding: 0 6px;
    overflow: hidden;
}

.information-poste {
    position: absolute;
    border-top: 5px solid #009879;
    width: 100%;
    height: 30px;
    bottom: -1px;
    font-weight: 700;
    font-size: 11px;
    background-color: white;
    color: gray;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: space-around;
}

.container-Lpost {
    display: flex;
    justify-content: start;
    flex-direction: row;
    max-width: 1200px;
    padding: 15px;
    overflow: hidden;
}

.lastpost {

    position: relative;
    display: flex;
    text-align: center;
    justify-content: space-between;
    border-radius: 8px;
    background-color: #009879;
    width: fit-content;
    padding: 0px 5px;
    font-family: "cairo", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: white;
    padding: 4px 7px;

}

a {
    color: #009879;
}

.lastpost::before {
    position: absolute;
    top: 31px;
    right: 90px;
    content: "";
	z-index: -1;
    width: 1100px;
    border-radius: 8px;
    height: 3px;
    background-color: #009879;
}

.post-categories {
   display: flex;
   flex-wrap: wrap;
   gap: 10px; /* space between categories */
}

.category-item {
   color: white;
   padding: 4px 2px;
   border-radius: 6px;
   font-size: 14px;
}


/* ........ post...... */
.single-postes {
    position: relative;
    display: flex;
    width: 100%;
    padding: 0 10px;
    flex-wrap: wrap;
    margin: 0px auto;
    gap: 5px;
    overflow: hidden;
    margin-top: 60px;
    align-items: center;
    align-content: flex-start;
    justify-content: center;
    /* box-shadow: 0px 0px 5px 1px gainsboro; */
    border-radius: 12px;
}

/* post author */
.author-post {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    box-shadow: 0 0 3px #0000007a;
    border-radius: 6px;
    width: 100%;
    height: fit-content;
    align-content: center;
    flex-direction: column;
}

.title-author {
    padding: 0px 5px;
    font-weight: bold;
    color: #2d4c69;
    ;
}

.profile-post {
    position: relative;
    width: fit-content;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
}

.author-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    width: 100%;
    height: fit-content;
    padding: 5px;
    align-content: center;
    justify-content: space-between;
    overflow: hidden;
}

.info-authorpage {
    background-color: #009879;
    color: white;
}

.profile {
    width: 128px;
    display: flex;
    height: 128px;
    border-radius: 12px;
    background-color: #009879;
    overflow: hidden;
    border: 2px solid #00000000;
    align-content: center;
    justify-content: center;
}

.profile-poste {
    width: 70px;
    display: flex;
    height: 70px;
    border-radius: 6px;
    background-color: #009879;
    overflow: hidden;
    border: 2px solid #00000000;
    align-content: center;
    justify-content: center;
}

.profile-post::after {
    position: absolute;
    content: 'الكاتب';
    top: -3px;
    display: flex;
    text-align: center;
    justify-content: center;
    font-size: 8px;
    color: white;
    text-align: center;
    align-items: center;
    font-weight: 700;
    border-radius: 50%;
    right: 0;
    background: #009879;
    width: 25px;
    height: 25px;
}

.bio {
    width: 100%;
    height: 100%;
    padding: 0 5px;
}

/* pagination post */
.pagenation-post {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

.next-post,
.prev-post {
    border: 1px solid gainsboro;
    padding: 0 5px;
    box-shadow: 0 0 3px #0000000d;
    border-radius: 6px;
}

.blog {
    font-family: "cairo";
    font-size: 30px;
    font-weight: 900;
    background-color: #ff0000;
    color: white;
    height: 90px;
    margin: 5px auto;
    width: 100%;
    border-radius: 8px;
}

.card:hover::before {
    top: -100px;
    right: -40px;
    width: 600px;
    height: 600px;
}

.card:hover .content a {
    color: white;
}

.card:hover .content p {
    color: rgba(255, 255, 255, 0.719);
}

.card .content .info .tag {
    font-size: 10px;
    color: red;
}

.card .content .info a:hover {
    color: white;
}


.container-footer {
    max-width: 1200px;
    margin: auto;

}

section.error-404.not-found {
    padding: 90px;
    align-items: center;
    display: flex
;
    align-content: center;
    flex-direction: column;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    background-color: #212121;
    padding: 5px;
    border-radius: 12px;
    color: #edf2fc;
    padding: 0 15px;
}

.footer span a {
    color: #009879;
    font-weight: 600;
}

li .categories {
    background-color: red;

}

/*  page.php */
.container-page {
    width: 99%;
    margin-top: 5px;
    margin-bottom: 5px;
    padding-bottom: 20px;

}

/* single page */

.container-article {
    width: 99%;
    margin-top: 5px;
    margin-bottom: 5px;
    padding-bottom: 20px;

}

.info-article {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 13px;
    padding: 0 18px;
    color: grey;
}

.container-article .post-edit-link {
    color: #140b34ab;
}

.container-article .post-edit-link:hover {
    color: rgb(255, 0, 0);
}

.edit-post a {
    color: red;
}

.title {
    padding: 0px 10px;
    font-weight: bold;
    justify-content: snd;
    font-size: 22px;
    width: 100%;
    color: #2d4c69;
    display: flex;
}

.info-article a {
    color: gray;
}

.content-page {
    width: 100%;
    font-family: "cairo", sans-serif;
    font-size: 1.2rem;
    line-clamp: 1.5em;
}

.content-article {
    line-height: 2.5;
    font-family: "cairo", sans-serif;
    font-size: 1.2rem;
    line-clamp: 1.5em;
}

.postes .comments-num {
    font-size: 16px;
    font-weight: 700;
    padding: 12px 15px;
    background-color: gainsboro;
    color: rgb(69, 69, 69);
    width: 100%;
    border-radius: 12px;
}

ul.list-unstyled {
    width: 100%;
}

.depth-1 {
    display: flex;
    box-shadow: 0 0 3px #00000040;
    padding: 14px;
    margin: 10px;
    border-radius: 12px;
}

.depth-2 {
    padding: 10px;
}

.depth-3 {
    background-color: #a3a3a31a;
    border-radius: 12px;
    margin: 5px 0px;
}

ul.children {
    background-color: rgb(235, 235, 235);
    margin: 0px 44px;
    border-radius: 12px;
    width: 85%;
}

.comment-author.vcard {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    align-items: center;
}

.says {
    display: none;
}

img.avatar.avatar-64.photo {
    border-radius: 50px;
    width: 32px;
    height: 32px;
    background-color: gainsboro;
}

.commentmetadata {
    font-size: 12px;
}

.comments-num {
    width: 100%;
    background-color: white;
    box-shadow: 0 0 3px #0000006b;
    border-radius: 6px;
    margin-top: 10px;
    padding: 3px 10px;
    color: #00000091;
    font-weight: 800;
}

cite.fn {
    padding: 0px 9px;
    border-radius: 6px;
    border: 1px solid lightgray;
    transition: background-color .3s;
}

cite.fn:hover {
    background-color: #009879;
    color: white;
}

.depth-1 .reply {
    position: relative;
    display: inline;
}

.depth-1 .reply::before,
.depth-1 .reply::after {
    background-color: red;
    position: absolute;
    width: 100px;
    height: 100px;
    top: 0;
    z-index: 999;
}

a.comment-reply-link {
    display: inline-block;
    background-color: #ffffff;
    border: 1px solid #c1c1c1;
    padding: 0px 18px;
    border-radius: 6px;
    color: #696767;
    transition: background-color 0.3s;
}

a.comment-reply-link:hover {
    background-color: #009879;
    color: white;
}

.comment-respond {
    width: 100%;
}

.comment-respond label {
    display: inline-block;
    width: 100%;
}

.comment-form p {
    width: 100%;
}

.comment-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0px 10px;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

p.comment-notes {
    background-color: #00987a78;
    padding: 5px;
    color: #000000a8;
    font-weight: 600;
}

.logged-in-as {
    background-color: #00987a78;
    padding: 0 5px;
}

.logged-in-as a {
    background-color: #009879;
    color: white;
    padding: 0 5px;
    border-radius: 6px;
    font-weight: 600;
}

textarea#comment {
    border: 1px solid gainsboro;
    box-shadow: inset 0 0 1px gray;
    padding: 5px;
    font-size: 16px;
    font-weight: 500;
    color: #009879;
    width: 100%;
    resize: none;
    width: 100%;
    height: 258px;
    margin: auto;
}

input#author {
    border: 1px solid gainsboro;
    box-shadow: inset 0 0 1px gray;
    /* box-shadow: 0 0 3px gray; */
    padding: 5px;
    font-size: 16px;
    font-weight: 500;
    color: #009879;
    width: 100%;
}

input#email {
    border: 1px solid gainsboro;
    box-shadow: inset 0 0 1px gray;
    /* box-shadow: 0 0 3px gray; */
    padding: 5px;
    font-size: 16px;
    font-weight: 500;
    color: #009879;
    width: 100%;
}

input#url {
    border: 1px solid gainsboro;
    box-shadow: inset 0 0 1px gray;
    /* box-shadow: 0 0 3px gray; */
    padding: 5px;
    font-size: 16px;
    font-weight: 500;
    color: #009879;
    width: 100%;
}

p.comment-form-cookies-consent {
    display: flex;
    align-content: center;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
}

input#submit {
    background-color: #009879;
    border: none;
    padding: 5px 10px;
    color: white;
    font-weight: 700;
    font-size: 14px;
    border-radius: 6px;
    margin: 10px 0;
    cursor: pointer;
}

a.next.page-numbers {
    width: auto;
    padding: 0px 4px;
    font-weight: 600;
    /* height: 33px; */
    border-radius: 6px;
}

a.prev.page-numbers {
    width: auto;
    padding: 0px 4px;
    font-weight: 600;
    /* height: 33px; */
    border-radius: 6px;
}

a.page-numbers {
    background-color: gainsboro;
    color: #009879;
    width: 30px;
    /* height: 33px; */
    padding: 0;
    margin: 5px 0;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s;
}

a.page-numbers:hover {
    background-color: #009879;
    color: white;
}

span.page-numbers.current {
    background-color: #009879;
    width: 30px;
    /* height: 25px; */
    text-align: center;
    margin: 5px 0;
    padding: 0;
    color: white;
    font-weight: 700;
    font-size: 16px;
    border-radius: 6px;
}

.pagening-num {

    display: flex;
    justify-content: center;
    gap: 10px;

}

.wp-block-table.is-style-stripes {
    background-color: initial;
    border: 1px solid #009879;
    border-collapse: inherit;
    border-spacing: 0;
    font-size: 0.9em;
    border-radius: 12px;
}

.wp-block-table td,
.wp-block-table th {
    border: none;
    padding: .5em;
    text-align: center;
}

/* table styling */
.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
    background-color: #f3f3f3f3;

}

.wp-block-table.is-style-stripes tbody tr:last-child {
    border-bottom: 5px solid #009879;
}

.wp-block-table.is-style-stripes tbody td:last-child {
    border-left: 2px solid #009879;
}

.wp-block-table.is-style-stripes tbody td:first-child {
    border-right: 2px solid #009879;
}

.wp-block-table.is-style-stripes thead th:last-child {
    border-left: 2px solid #009879;
}

.wp-block-table.is-style-stripes thead th:first-child {
    border-right: 2px solid #009879;
}

.wp-block-table.is-style-stripes thead tr:first-child {
    border-top: 2px solid #009879;
}

.wp-block-table tfoot {
    /* border-top: none; */
    border: 2px solid #009879;
}

.wp-block-table tfoot {
    /* border-top: none; */
    border: 2px solid #009879;
}


.wp-block-table thead {
    background-color: #009879;
    font-weight: bold;
    border-bottom: none;
    color: white;
}

.wp-block-table.is-style-stripes td,
.wp-block-table.is-style-stripes th {
    border: 1px solid #afafaf4a;

}

.wp-block-table tfoot {
    border-top: none;
}

/* button download */
.wp-block-file__button {
    background: #009879;
    color: #fff;
    text-decoration: none;
    padding: 0 21px;
}

/*  audio styling */
.wp-block-audio audio {
    min-width: 170px;
    width: 100%;
    height: 29px;
}

audio::-webkit-media-controls-enclosure {
    background: transparent;
    width: 170px;
}

audio::-internal-media-controls-overflow-button {
    display: none;
}

audio::-webkit-media-controls-volume-control-container.closed {
    display: none;
}

audio::-webkit-media-controls input[pseudo="-internal-media-controls-overflow-button" i]::-internal-media-controls-button-hover-background {
    display: none;

}

audio::-webkit-media-controls-volume-control-container {
    display: none;
}

audio::-webkit-media-controls-current-time-display {
    display: none;
}

audio::-webkit-media-controls-time-remaining-display {
    display: none;
}

audio::-webkit-media-controls input[pseudo="-webkit-media-controls-play-button" i]::-internal-media-controls-button-hover-background {
    background: #009879;
}

/* video controle styling */
.wp-block-video video {
    vertical-align: middle;
    width: 100%;
    border-radius: 12px;
    border: 2px solid #009879;
}

body .is-layout-grid {
    margin-top: 5px;
    display: grid;
    justify-items: center;
}

video::-webkit-media-controls {
    writing-mode: horizontal-tb;
    direction: ltr;
    font-family: Roboto, Noto, sans-serif;
    color: #009879;
    font-size: 14px;
    --gradient-steps: hsl(168deg 100% 30% / 0%) 0%, hsla(168, 100%, 30%, 0.013) 0%, hsl(168deg 100% 30% / 0%) 0%, hsla(168, 100%, 30%, 0.104) 0%, hsl(168deg 100% 30% / 0%) 0%, hsl(168deg 100% 30% / 0%) 0%, hsl(168deg 100% 30% / 0%) 0%, hsl(168deg 100% 30% / 0%) 30.1%, hsl(168deg 100% 30%) 0%, hsl(168deg 100% 30%) 0%, hsl(168deg 100% 30%) 0, hsl(168deg 100% 30%) 71%, hsla(168, 100%, 30%, 0.896) 0%, hsla(168, 100%, 30%, 0.951) 0%, hsla(168, 100%, 30%, 0.987) 0%, hsl(168deg 100% 30%) 0%;
}

figure {
    display: inline-block;
}

video::-internal-media-controls-overflow-menu-list {
    background: light-dark(#009879, rgb(59, 59, 59));

}

/* ulike styling */
.wpulike {
    display: block;
    position: relative;
    line-height: normal;
    margin: 0;
    padding: 10px 0;
}

.wpulike .wp_ulike_general_class:hover {
    background-color: #009879;
}

.wpulike .wp_ulike_general_class:hover span {
    color: #fff;
}

.wpulike-heart .wp_ulike_general_class {
    box-shadow: 0 0 0 1px #bdbdbd inset;
    border-radius: 6px;
    padding: 0;
    background-color: white;
}

.wpulike .wp_ulike_general_class {
    position: absolute;
    top: 21px;
    right: 53px;
}

.wpulike-heart .wp_ulike_put_image:after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;

}

.tutor-btn-primary {
    border-color: #009879;
    background-color: #009879;
    color: #fff;
    transition: all .3s;
}

.tutor-btn-link {
    font-size: inherit;
    padding: 0px !important;
    position: relative;
    color: #009879;
}

.tutor-btn-primary:hover {
    border-color: #212121;
    background-color: #212121;
    color: #fff;
}

.tutor-login-form-wrapper {
    margin-top: 65px;
}

.bypostauthor .vcard {
    position: relative;
}

.bypostauthor .vcard::after {
    position: absolute;
    content: 'الكاتب';
    top: -4px;
    display: flex;
    text-align: center;
    justify-content: center;
    font-size: 4px;
    color: white;
    text-align: center;
    align-items: center;
    font-weight: 600;
    border-radius: 50%;
    right: -3px;
    background: #009879;
    width: 12px;
    height: 12px;
}

input#s {
    border: 1px solid white;
    padding: 0 5px;
    border-radius: 6px;
    background-color: white;
    color: #009879;
}

input#searchsubmit {
    background-color: #009879;
    color: white;
    border: 2px solid white;
    /* box-shadow: 0 0 3px black; */
    padding: 0 12px;
    border-radius: 6px;
    cursor: pointer;
}

form#searchform {
    margin-bottom: 8px;
}

.searchposte {
    position: relative;
    box-shadow: 0 0 3px #0000005e;
    margin: 5px;
    padding: 2px 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    align-content: center;
}

.imagesearch a {
    padding: 2px 5px;
    text-align: center;
    display: flex;
    align-content: center;
    align-items: center;
}

.information-search {
    position: absolute;
    border-top: 5px solid #009879;
    /* width: 100%; */
    height: 30px;
    left: 0;
    bottom: 0;
    font-weight: 700;
    font-size: 11px;
    background-color: white;
    color: gray;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: space-around;
}

summary {
    box-shadow: 0px 1px 4px 0px #00000073;
    margin-bottom: 5px;
    padding: 2px 3px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    border-right: 10px solid #009879;
}

summary:active {
    box-shadow: inset 0px 4px 8px 0px #00000073;
}

