* {
    padding: 0;
    margin: 0;
    outline: 0;
    border: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #ddd;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

ul {
    padding: 0;
}

li {
    list-style: none;
}

a,
a:visited,
a:hover,
a:active,
a:focus {
    text-decoration: none;
}

.tc {
    text-align: center;
}

.flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.space-between {
    justify-content: space-between;
}

.list li {
    border-bottom: 1px solid rgb(212, 212, 212);
    padding: 0 0 0 10px
}

.list li:nth-child(even) {
    background-color: #716d6d19;
}

.list li.passive {
    background-color: #a52a2a1c;
}


a,
button {
    white-space: nowrap;
    box-shadow: 2px 2px 5px 1px #0000001a;
    border-radius: 8px;
    padding: 6px 20px;
    background-color: #1e2e3d;
    color: #fff;
    cursor: pointer;
    transition: 0.1s;
    font-size: 18px;
    display: inline-block;
    text-align: center;
    margin: 4px
}

a:hover,
button:hover {
    background-color: #85b73a;
}

input,
select {
    width: 490px;
    display: block;
    margin: 10px;
    height: 40px;
    box-shadow: 4px 4px 10px 1px #00000050;
    border-radius: 8px;
    padding: 10px 20px
}

#form-login {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 290px;
    text-align: center;
}

#admin-wrapper {
    height: 100vh;
    display: flex;
}

#admin-wrapper .left {
    width: 320px;
    background-color: #aaa;
    height: 100%;
    padding: 15px;
    overflow: auto;
}

#admin-wrapper .right {
    width: calc(100% - 320px);
    height: 100%;
    padding: 15px 5%;
    overflow: auto;
}

.admin-module-title {
    text-align: center;
    padding: 15px;
    font-size: 30px;
}

#admin-wrapper .left a {
    display: block;
    text-align: left;
}

#admin-wrapper .left li:last-child {
    margin-top: 50px;
}

#admin-wrapper .left li:last-child a {
    background-color: rgb(255, 73, 73);
}

#admin-wrapper .left li:last-child a:hover {
    background-color: rgb(163, 14, 14);
}

textarea {
    width: 50%;
    height: 200px
}

#form-login input {
    max-width: 290px !important;
}

.admin-navigation {
    display: flex;
    justify-content: center;
}

/* .admin-navigation a {
    text-decoration: underline;
    background-color: transparent !important;
    box-shadow: 0 !important;
    color: #555 !important
}
 */

a[href*='show'] {
    background-color: #e7c60e !important;
    color: #333 !important;
    border: 1px solid #888;
}

a[href*='show']:hover {
    background-color: #ffd902 !important;
}

a[href*='delete'] {
    background-color: #e7390e !important;
    border: 1px solid #888;
}

a[href*='delete']:hover {
    background-color: #ff0202 !important;
}

a[href*='new'] {
    background-color: #0ee73d !important;
    border: 1px solid #888;
    color: #333 !important;
}

a[href*='new']:hover {
    background-color: #02ff74 !important;
}

/* .cke_toolbox>span:nth-child(-n+6) {
    display: none;
} */

.flex {
    display: flex;
}

.group-cbx {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
}

.showMoreImagesPopup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
    box-shadow: 0 0 10px 2px #00000020;
    background-color: #fff;
    display: none;
}

.showMoreImagesPopup.active {
    display: block;
}

.closeShowMorePopup {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
}



.closeShowMorePopup::before,
.closeShowMorePopup::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    background-color: #444;
    width: 10px;
    height: 1px;
}

.closeShowMorePopup::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.list-sorting-item.passive {
    display: none;
}

#flashdata {
    position: absolute;
    top: 20px;
    right: 10px;
    padding: 10px 20px;
    background-color: #25933d;
    color: #fff;
    transition: 2.5s;
    box-shadow: 0 0 10px 2px #00000050;
    
}

#flashdata.moving {
    right: 20px;
}

#flashdata.passive {
    opacity: 0;
    top: 0;
}

.mainblog {
    background-color: #f6b29a !important;
}

.mostread {
    background-color: #c8f69a !important;
}

.image-place {
    padding: 2px;
    background-color: cornsilk;
}