/*Basic Css*/
:root {
    --c1: rgb(112 193 248);
    --trans: .35s ease-in-out;
    --animate: 2s;
    --c2: #055b90;
}
html {
 overflow-x:hidden;   


}
html,body {
    background: #f9fcfe;
}
button,form,input,select,textarea {
    font-family: inherit;
}
.color {
    color: var(--c1);
}
body {
    direction:rtl;
    font-family: "Alexandria", sans-serif;
    overflow-x: hidden;
    line-height: 1.8;
}
h1,h2,h3,h4 {
     text-transform: capitalize;
}
.flex-column {
    display:flex;
    flex-direction:column;
    justify-content: center;
}
container {
    max-width: 1389px;
    padding: 0 10px;
}
.pd {
    padding: 25px 0;
}


header {
    position: relative;
    z-index: 9;
    width: 100%;
    background: var(--c1);
}
header > div {
    display:flex
}
body:not(.home) header {
    display:none
}
header div[class*="-container"] {
    flex:1
}
header div[class*="-container"] > ul {
    display: flex;
    list-style: none;
    color: #fff;
    justify-content: center;
}
header div[class*="-container"] > ul li {
    padding:15px;
    font-size: 20px;
}
header div[class*="-container"] > ul li i {
    margin-inline-end: 5px;
}
article.hero-section {
    background-size: 100% 100%;
    position: relative;
    z-index: 1;
    padding: 100px 0;
    border-bottom: 7px double  #fff;
}

.hero-logo img {
    height: 170px;
    filter: drop-shadow(2px 4px 6px #0000009c);
}

.hero-logo {}

.hero-text {
    display: flex;
    color: #fff;
    justify-content: flex-end;
    align-items: center;
    margin-top: -52px;
}

.hero-text h1 {
    font-size: 40px;
    font-weight: normal;
}

form.search-form {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 5px;
    max-width: 85%;
    padding: 9px;
    margin-top: 30px;
    transform: translateX(-10%);
    box-shadow: 0 0 5px #000000bd;
}

.form-field {
    display: flex;
    flex: 1;
    align-items: center;
    padding: 5px 15px;
}

.form-field input {
    flex: 1;
    padding: 9px;
    font-size: 18px;
}

.form-field i {
    color: var(--c1);
    margin-inline-end: 6px;
    font-size: 20px;
}

form.search-form button {
    background: var(--c1);
    padding: 12px 40px;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    font-size: 24px;
    margin-right: 5px;
}

article.hero-section container {
    max-width: 1000px;
}

.hero-text img {filter: grayscale(1);}

main {
    padding: 50px 0;
}

a.cat-box {
    display: flex;
    align-items: center;
    margin: 10px;
    padding: 20px;
    border:4px dashed rgb(0 147 248 / 20%);
    border-radius: 17px;
    transition: .35s ease;
    background: #fff;
}

a.cat-box img {
    width: 32px;
    height: 32px;
    margin-inline-end: 12px;
    transition: .35s ease;
}

a.cat-box:hover {
    background: var(--c1);
    color: #fff;
}
a.cat-box:hover img  {
    filter: brightness(10);
}

img {
    max-width: 100%;
}

article.categories {
    margin: 0 -10px 50px;
}

article.blog {
    margin: 50px 0;
}
body.archive .blog {
}
a.block {
    display: block;
    padding: 15px;
    transition: .3s ease;
    border-radius: 15px;
    background: #fff;
    margin: 10px;
    border: 1px solid rgb(112 193 248 / 13%);
    text-align: center;
    height: calc(100% - 20px);
}

a.block figure {
    position: relative;
}

label.category {
    position: absolute;
    left: 10px;
    top: 10px;
    background: var(--c1);
    padding: 4px 8px;
    font-size: 11px;
    color: #fff;
    border-radius: 6px;
}

.block figure img {
    display: block;
    height: 135px;
    border-radius: 10px;
    background: #ddd;
    width: 100%;
}

.block-dtl {
    margin-top: 15px;
}

.block-dtl strong {
    font-size: 14px;
    line-height: 1.5;
}

.slice-title >div {
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 10px;
    color: var(--c1);
}

.slice-title >div  i.fa-solid.fa-star {
    font-size: 30px;
    margin-left: 10px;
    color: #dfdfdf;
}

.slice-title >div:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    right: 0;
    bottom: 10px;
    background: var(--c1);
}

a.block:hover {
    box-shadow: 0 0 100px #0000000d;
}

figure.adv {
    text-align: center;
}

article.sidebar-posts {
    margin-top: 50px;
    margin-right: 15px;
}

a.aside-block {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    background: #fff;
    padding: 15px;
    border-radius: 7px;
    border: 1px solid rgb(112 193 248 / 13%);
    transition: .35s ease;
}

a.aside-block figure {
    width: 86px;
    height: 86px;
    margin-left: 10px;
    overflow: hidden;
}

a.aside-block figure img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background: #eee;
    font-size: 11px;
}

.aside-block-dtl {
    flex: 1;
}

.aside-block-dtl h3 {
    font-size: 14px;
}

time {
    font-size: 12px;
    color: #8b8b8b;
}

a.aside-block:hover {
    box-shadow: 0 0 100px #0000000d;
}

footer {
    position: relative;
    z-index: 1;
    text-align: center;
    background: url(../images/bk.jpg);
    color: #fff;
    border-top: 7px double #fff;
    overflow: hidden;
}

footer:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background: #000000bf;
    z-index: -1;
}

figure.footer-logo img {
    width: 300px;
}

footer div[class*="-container"] {
    margin: 30px 0;
}
footer div[class*="-container"]  ul {
    display:flex;
    justify-content:center;
    list-style:none
}
footer div[class*="-container"]  ul li {
    margin:10px;
    padding: 10px;
    transition: .35s ease;
}

.socials {
    margin: 30px 0 0 0;
    display: flex;
    justify-content: center;
}

.socials a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    margin: 0 5px;
    background: #d4c1c121;
    border-radius: 50%;
    justify-content: center;
    transition: .35s ease;
}

.textwidget p {
    font-size: 11px;
}

footer div[class*="-container"] ul li:hover {
    color: var(--c1);
}

.socials a:hover {
    background: #ffffff3d;
}



a.read-more {
    padding: 14px 20px;
    background: #fff;
    border-radius: 16px;
    transition: .35s ease;
    color: var(--c1);
}

a.read-more:hover {
    background: var(--c1);
    color: #fff;
}

.blog-holder {
    margin: 0 -10px;
}

aside {
    margin-right: 10px;
}

article.fixed-header {
    color: #fff;
    background: var(--c1);
    box-shadow: 0 0 100px #00000021;
    transition: .35s ease;
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 999;
    padding: 5px 0;
}
.admin-bar article.fixed-header {
    top:32px
}
body.home 
article.fixed-header  {

    transform: translateY(-100%);
    opacity: 0;
}

figure.logo {
    width: 160px;
    filter: brightness(100);
}
article.fixed-header div[class*="container"] {
    flex:1;
    margin: 0 20px;
}
article.fixed-header div[class*="container"] > ul {
    display: flex;
    list-style: none;
    justify-content: center;
}

article.fixed-header div[class*="container"] > ul li {
    margin-left: 20px;
    font-size: 16px;
}

article.fixed-header div[class*="container"] > ul li i {
    margin-left: 7px;
    font-size: 17px;
}

.bars {
    display: none;
}

form#searchform {
    padding: 3px;
    border-radius: 3px;
    background: #fff;
}
form#searchform input {
    padding:10px
}
input#searchsubmit {
    color: var(--c1);
}

body.home article.fixed-header.show {
    opacity: 1;
    transform: translateY(0);
}

.scrolltop {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 999;
    background: var(--c1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: .35s ease;
    cursor: pointer;
}

.scrolltop.show {
    visibility: visible;
    opacity: 1;
}
body.home .search-form-holder {
    display: none;
}

body:not(.home) {
    padding-top: 73px;
}

article.search-form-holder {
    background: var(--c2);
    padding: 10px 0;
    box-shadow: 5px 11px 20px #00000024;
}

form.header-search-form {
    display: flex;
    background: #fff;
    align-items: center;
    padding: 3px 3px;
    border: 1px solid #dadada;
    border-radius: 5px;
}

article.search-form-holder {}

form.header-search-form input {
    flex: 1;
}

form.header-search-form i {
    font-size: 22px;
    margin-left: 20px;
    color: var(--c1);
    margin-right: 10px;
}

form.header-search-form button {
    cursor: pointer;
    background: var(--c1);
    padding: 10px;
    color: #fff;
    border-radius: 5px;
}

body:not(.home) container {max-width: 1200px;}

article.single {
    margin: 25px 0;
}

.single-white-box {
    padding: 30px;
    background: #fff;
    border-radius: 18px;
    margin-bottom: 25px;
    border: 1px solid rgb(112 193 248 / 17%);
}

.post-thumbnail img {
    display: block;
    width: 100%;
    border-radius: 7px 7px 0 0;
    margin-top: 20px;
    height: auto;
}

.single-title-box {
    margin-bottom: 7px;
}

.bar-li {
    margin-inline-start: 10px;
    font-size: 14px;
    color: #606060;
}

.bar-li i {
    margin-inline-end: 5px;
}

.share-box a {
    color: #fff;
    flex: 1;
    text-align: center;
    padding: 0px;
    font-size: 26px;
    margin: 10px;
    min-width: 32px;
    border-radius: 7px;
}

a.facebook {
    background: #1877F2;
}

a.twitter {
    background: #1DA1F2;
}

a.linkedin {
    background: #0A66C2;
}

a.pinterest {
    background: #BD081C;
}

a.telegram {
    background: #0061FF;
}

a.whatsapp {
    background: #25D366;
}

a.messenger {
    background: #0099FF;
}

.share-box.flex-start.align-center {
    margin: 0 -10px;
}
.content-holder * {
    padding: revert;
    margin: revert;
    max-width: 100%;
}
.content-holder table {
    width:100%;
    background: rgb(1 155 173 / 9%);
}
.content-holder .tbl {
    overflow:auto;
    white-space:nowrap
}

.content-holder table td {
    padding:5px;
    border: 1px solid #00000029;
    background: #fff;
    text-align: center;
}
.content-holder table th  {
    background:var(--c1);
    color:#fff;
    padding: 5px;
}
.content-holder p ,.content-holder ul,.content-holder ol{
    margin-bottom:20px
}
.content-holder a {
    color:var(--c1)
}
.content-holder h2, .content-holder h3, .content-holder h4,.single-title {
    color:var(--c1)
}

.single-block figure {
    width: 100%;
}

.single-block figure img {
    display: block;
    width: 100%;
    border-radius: 8px;
    height: 150px;
}

.aside {
    margin-right: 30px;
}

.h {
    border-bottom: 1px solid rgb(230 232 233);
    padding: 10px 0;
    cursor: pointer;
    transition: var(--trans);
    font-size: 13px;
    font-weight: 600;
}

.h:empty {
    display: none;
}

.h:hover {
    color: var(--c1);
}

.aside > h3 {
    color: var(--c1);
    margin-bottom: 15px;
}

a.tag {
    background: #f1f1f1;
    padding: 4px 8px;
    margin: 2px;
    color: #4d4d4d;
    border-radius: 4px;
    font-size: 13px;
}

p.logged-in-as {
    text-align: center;
    background: rgb(1 155 173 / 9%);
    padding: 10px;
    margin: 10px 0;
    color: rgb(0 0 0);
}

form#commentform p {
    margin-bottom: 10px;
}

form#commentform p label {
    display: block;
    margin-bottom: 10px;
}

form#commentform p input[type="text"],
form#commentform p input[type="email"],
form#commentform p textarea {
    width: 100%;
    border: 1px solid #0000003b;
    padding: 15px;
    border-radius: 5px;
}

.comment--box {
    border: 1px solid #efefef;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 7px;
}

.comment-user-box i {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c1);
    color: #fff;
    font-size: 11px;
    border-radius: 50%;
}

.comment-user-box span {
    font-size: 18px;
}

.comment-box-content {
    margin: 15px 0;
    font-size: 24px;
}

span.time {
    font-size: 11px;
    color: #9d9494;
}

p.comment-form-comment {
    order: 4;
}

form#commentform {
    display: flex;
    flex-direction: column;
}

p.comment-form-author {
    order: 1;
}

p.comment-form-email {
    order: 2;
}

p.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    order: 4;
    font-size: 13px;
}

form#commentform p.comment-form-cookies-consent label {
    margin: 0 5px 0 0;
}

p.form-submit {
    order: 6;
}

p.comment-notes {
    margin: 15px 0;
    text-align: center;
    color: var(--c1);
    background: rgb(1 155 173 / 6%);
    padding: 10px;
}
input#submit {background: var(--c1);color: #fff;padding: 10px 15px !important;border-radius: 6.69px;transition: var(--trans);cursor:pointer}

p.logged-in-as a {
    color: var(--c1);
}

input#submit:hover {
    background: var(--c2);
}

.fixed-content {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    background: #fff;
    padding: 20px;
    width: 290px;
    max-height: 350px;
    box-shadow: 0 0 120px #00000040;
    border-radius: 17px;
}



.fixed-content h2 {
    text-align: center;
    color: var(--c1);
    margin-bottom: 10px;
}

button.close-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffe4e4;
    color: #fb4444;
    border-radius: 50%;
    cursor: pointer;
}

.fixed-content .content-headers {
    overflow: auto;
    height: 258px;
}
.child-cat-box {
    justify-content: center;
}

.slice-title >div img {
    width: 32px;
    height: 32px;
    margin-left: 20px;
}

ul.page-numbers {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-top: 50px;
}

ul.page-numbers a,ul.page-numbers span {
    background: var(--c1);
    display: flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 16px;
    margin: 0 2px;
}

ul.page-numbers span.page-numbers.current {
    background: var(--c2);
    color: #fff;
    border-color: transparent;
}

.box-holder {
    margin: 10px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    border: 1px solid #ebebeb;
}

a.cbox {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    transition: .35s ease;
}

a.cbox:hover {
    color: var(--c1);
}

.form-holder  input,.form-holder textarea {
    width: 100%;
    background: #fff;
    padding: 10px;
    margin: 10px 0;
    border-radius: 15px;
    border: 1px solid #eee;
    max-height: 100px;
}
.form-holder  input[type="submit"] {
    width:fit-content;
    background:var(--c1);
    cursor: pointer;
    padding: 15px 30px;
    border-radius: 5px;
    color: #fff;
    transition: .35s ease;
}

.form-holder input[type="submit"]:hover {
    background: var(--c2);
}
a.login {
    background: #ffffff;
    padding: 8px 24px;
    border-radius: 8px;
    transition: .35s ease;
    color: #000;
}
a.login:hover {
    background: #ededed;
}

@media(max-width:1023px) {
    article.fixed-header div[class*="container"] {
        display:none
    }

    body:not(.home) header {
        display:block
    }
    header {
        position:fixed;
        top: 0;
        right: 0;
        height: 100%;
        width: 100%;
        background: #000000ad;
        z-index: 9999;
        transition: .35s ease;
        transform: translateX(100%);
    }
    header.open {
        transform:translateX(0)
    }
    .bars {
        display:block;
        font-size: 35px;
    }
    header div[class*="-container"] > ul {
        flex-direction:column;
        position: absolute;
        width: 220px;
        top: 0;
        right: 0;
        height: 100%;
        background: #fff;
        justify-content: start;
    }
    header div[class*="-container"] > ul li {
        color:#000;
        padding: 7px;
        font-size: 15px;
    }
    article.fixed-header container {
        justify-content:space-between
    }
    article.categories {
        margin:10px auto
    }
}
@media(max-width:991px) {
    article.sidebar-posts,.aside {
        margin-right:0
    }
}
@media(max-width:767px) {
    * {
        
    }
    a.cat-box img {
        width:16px;
        height:16px
    }
    a.cat-box {
        padding:10px;
        font-size: 13px;
        border-width: 2px;
        margin: 5px;
    }
    a.read-more {
        width:100%;
        text-align:center
    }
    form.search-form button {
        font-size:14px;
        margin-left: 7px;
    }
    .hero-logo img {
        height:80px
    }
    .form-field input {
        width: 100%;
    }
    .form-field {
        flex-wrap: wrap;
    }
    .hero-text h1 {
        font-size:22px
    }
    .hero-text {
        margin-top:initial
    }
    .hero-text img {
        width:80px
    }
    form.search-form {
        transform:translate(0);
        overflow: hidden;
        max-width: 100%;
        padding: 0px;
    }
    article.hero-section {
        padding:20px 0
    }
}



main.page {
    min-height: 100vh;
}

article.login-page {
    background: #fff;
    margin: -50px 0;
    padding: 50px 0;
    overflow: hidden;
}
.tab-container { max-width: 400px; margin: 0 auto; }
.tabs {display: flex;list-style: none;cursor: pointer;padding: 0;margin-bottom: 35px;}
.tab-link {flex: 1;padding: 10px;background: #eee;text-align: center;margin: 7px;border-radius: 7px;}
.tab-link.current {background: var(--c1);color: #fff;}
.tab-content {display: none;}
.tab-content.current { display: block; }

form#loginform input:not([type="checkbox"]),#registration-form input,#verification-form input {
    display: block;
    width: 100%;
    border: 1px solid #eee;
    padding: 13px;
    margin: 10px 0;
    border-radius: 7px;
    background: #f7f7f7;
}

form#loginform input#wp-submit,#registration-form #wp-submit {
    background: var(--c1);
    border: 0;
    color: #fff;
    transition: .35s ease;
    cursor: pointer;
}

form#loginform input#wp-submit:hover ,#registration-form #wp-submit:hover {
    background: var(--c2);
}

table.employee-table {
    width: 100%;
    text-align: center;
    background: #fff;
    box-shadow: 0 0 100px #0000001f;
}
table.employee-table th {
    background: rgb(0 0 0);
    color:#fff
}
table.employee-table th,table.employee-table td {
    padding: 11px;
}
table.employee-table th:nth-last-child(1) ,
table.employee-table th:nth-last-child(2) ,
table.employee-table td:nth-last-child(2) ,
table.employee-table td:nth-last-child(3){
    white-space:nowrap
}
table.employee-table td {
    border:1px dashed #eee
}
table.employee-table td button {
    background: var(--c1);
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    transition:.35s ease;
    width: 100%;
}
table.employee-table td button:hover {
    background: var(--c2);
}

ul.tab-buttons {
    display: flex;
    list-style: none;
    margin-bottom: 20px;
}

ul.tab-buttons li {
    margin-left: 20px;
}

ul.tab-buttons li a {
    display: block;
    padding: 10px 15px;
    background: #fff;
    border-radius: 7px;
    cursor: pointer;
}

ul.tab-buttons li a.active {
    background: var(--c1);
    color: #fff;
}

.user-box {
    position: relative;
}

.user-name {
    background: #ffffff33;
    padding: 10px 30px;
    color: #fff;
    cursor: pointer;
    border-radius: 12px;
}

.user-links {
    position: absolute;
    left: 0;
    width: 200px;
    padding: 20px;
    text-align: center;
    background: #fff;
    box-shadow: 0 0 35px #00000026;
    border-radius: 5px;
    visibility: hidden;
    color: #000;
    opacity: 0;
    transition: .35s ease;
}

.user-links a {
    display: block;
    padding: 5px;
    transition: .35s ease;
}

.user-links a:hover {
    color: var(--c1);
}

.user-name i {
    font-size: 11px;
    margin-right: 7px;
}

.user-box:hover .user-links {
    visibility: visible;
    opacity: 1;
}

div#countdown {
    min-width: 300px;
}

div[id*="countdown"] {
    min-width: 300px;
}

.ct {
    display: inline-flex;
    height: 31px;
    width: 40px;
    justify-content: center;
    background: #eee;
    align-items: center;
    border-radius: 7px;
    margin: 0 5px;
}

input#register-btn ,input#send-verification-btn{
    background: var(--c1);
    color: #fff ;
    cursor: pointer;
    transition:.35s ease
}
input#register-btn:hover ,input#send-verification-btn:hover{
    background: var(--c2);

}

.emp-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul.sub-tab-buttons {
    display: flex;
    list-style: none;
    margin-bottom: -2px;
    margin-right: 2px;
}

ul.sub-tab-buttons li {
    margin-left: 10px;
}

ul.sub-tab-buttons li a {
    display: block;
    padding: 10px 30px;
    background: #fff;
}

ul.sub-tab-buttons li a.active {
    background: #000;
    color: #fff;
}

.sub-tab-content {
    display: none;
}

.sub-tab-content.active {
    display: block;
}
button.export {
    display: inline-block;
    padding: 15px 30px;
    background: #29e329;
    color: #fff;
    margin-top: 8px;
    font-size: 22px;
    border-radius: 10px;
    cursor: pointer;
    transition: .35s ease;
}

button.export:hover {
    background: #25c925;
}

.emp-title img {
    width: 580px;
    margin-left: 20px;
}

.emp-title h2 {
    color: var(--c1);
    font-size: 33px;
}

.emp-title p {
    color: #828282;
    font-size: 14px;
}

.pagination {
    display: flex;
    margin: 15px 0 0 0;
    background: #fff;
}

.pagination a,.pagination span {
    flex: 1;
    padding: 14px;
    text-align: center;
}

span.page-numbers.current {
    color: #fff;
    background: var(--c1);
    transform: scale(1.1);
    border-radius: 15px;
}

.pagination a {
    transition: .35s ease;
}

.pagination a:hover {
    background: #f7f7f7;
}

.add-post-form-field > input, .add-post-form-field textarea {
    display: block;
    width:100%;
    background: #fff;
    border: 1px solid #b8b8b8;
       box-shadow: 0 0 23px #0000000f;
    margin: 10px 0;
    padding: 17px;
    border-radius: 10px;
 
}

button.save_entry {
    padding: 15px 30px;
    background: var(--c1);
    color: #fff;
    font-size: 22px;
    width: 100%;
    border-radius: 13px;
    transition: .35s ease;
    cursor: pointer;
}

button.save_entry:hover {
    background: var(--c2);
}

.error {
    text-align: center;
    margin: 15px;
    background: red;
    color:#fff;
    padding: 11px;
}

.success {
        text-align: center;
    margin: 15px;
    background: #25d366;
    padding: 11px;
    color:#fff;
}


.pd5 {
    padding: 10px;
}

.field-row {
    display: flex;
    position: relative;
}

.dynamic-fields {
    background: #fff;
    padding: 10px;
    box-shadow: 0 0 23px #0000000f;
    margin: 15px 0;
    border: 1px solid #b8b8b8;
    border-radius: 13px;
}

.field-row input {
    flex: 1;
    margin: 6px;
    border: 1px solid #d7d7d7;
    padding: 16px;
    border-radius: 5px;
    background: #f9fcfe;
}

.field-row input.field-link {
    flex: 2;
}

button.add-field {
    width: 100px;
    background: var(--c1);
    border-radius: 5px;
    margin: 7px;
    color: #fff;
    cursor: pointer;
}

button.remove-field {
    width: 22px;
    background: red;
    top: -7px;
    margin: 7px;
    color: #fff;
    cursor: pointer;
    height: 22px;
    position: absolute;
    left: -7px;
    border-radius: 50%;
    opacity: 0;
}

.field-row:hover button.remove-field {
    opacity: 1;
}

.posts-bar-title {
    margin: 15px -10px 0;
}

a.btn {
    flex: 1;
    background: var(--c1);
    text-align: center;
    padding: 10px;
    border-radius: 7px;
    color: #fff;
    margin: 5px;
    transition: .35s ease;
}

a.btn:hover {
    background: var(--c2);
}

table.posts-table {
    background: #fff;
    width: 100%;
    cursor: all-scroll;
}

table.posts-table thead {
    background: #000;
    color: #fff;
}
table.posts-table td {
    background: #fff;
    border: 1px solid #0000001f;
    white-space: nowrap;
}
table.posts-table td:nth-child(2),table.posts-table th:nth-child(2) {
    width: 240px;
}
table.posts-table td,table.posts-table th {
    padding: 8px;
    text-align: center;
}

table.posts-table td a {
    font-size: 12px;
    padding: 5px 8px;
    margin: 4px;
    border-radius: 5px;
    display: inline-block;
    color: #fff;
    background: #000000;
}

table.posts-table td a.edit {
    background: #4bf44b;
}

table.posts-table td a.delete {
    background: red;
}

form#filter-form {
       display: flex;
       margin-bottom: 20px;
       align-items: center;
       padding: 9px;
       background: #f4f4f4;
       border: 1px solid #e2e2e2;
       border-radius: 5px;
       }

form#filter-form input,form#filter-form select {
    width: 100%;
    padding: 13px;
    margin: 5px;
    border-radius: 5px;
    border: 1px solid #dedede;
    background: #fff;
}

form#filter-form button {
    width: 100%;
    background: var(--c1);
    color: #fff;
    padding: 13px;
    margin: 5px;
    border-radius: 5px;
    transition: .35s ease;
    cursor: pointer;
}

form#filter-form button#export-excel {
    background: #2cd22c;
}

form#filter-form button:hover {
    opacity: .8;
}

a.download {
    background: #29e329;
    color: #fff;
    padding: 5px 10px;
    display: block;
    border-radius: 6px;
    flex: 1;
    font-size: 14px;
}

table.employee-table form {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    margin: 5px 0 0;
    padding: 4px;
    border-radius: 8px;
}

table.employee-table form input[name="updated_article"] ,table.employee-table form input.article_upload {
    width: 170px;
}

table.employee-table td form button {
    width: fit-content;
}

table.employee-table form.form-delete {
    padding: 0;
    background: none;
    margin: 0 5px 0 0;
    flex: 1;
    border-radius: 0;
}

table.employee-table td form button.delete-article {
    width: 100%;
    background: #fe1c1c;
}

.alert {
    position: fixed;
    width: 100%;
    bottom: 0;
    right: 0;
    z-index: 99999999;
    padding: 8px;
    text-align: center;
    color: #fff;
}

.alert.alert-success {
    background: #6cff6c;
}

.alert.alert-error {
    background: #f01b1b;
}

table.employee-table td:nth-child(5) {
    max-width: 400px;
    min-width: 202px;
}

a.goto {
    background: #b2ffb2;
    padding: 7px 15px;
    color: green;
    border-radius: 5px;
    display: block;
    font-size: 14px;
}

table.employee-table td button.copy-path {
    flex: 1;
    margin-right: 5px;
}

.pagination a.active {
    background: var(--c1);
    color: #fff;
}

.table-holder-container {
    overflow: auto;
}

table.posts-table td a.finish {
    background: green;
}

table.posts-table td a.delete-entry {
    background: #f02323;
}