.admin-panel {
    display: flex;
}
.header {
    position: fixed;
    display: flex;
    flex-direction: column;
    width: 250px;
    height: 100vh;
    border-right: 1px solid var(--ui-st-color-lightg);
    z-index: 996;
}
.header_select-block {
    width: 100%;
    height: 70px;
    padding: 5px;
    border-bottom: 1px solid var(--ui-st-color-lightg);
}
.select-block_button {
    display: flex;
    flex-direction: column;
    font-family: var(--ui-st-font);
    border-radius: 10px;
    height: 60px;
    padding: 10px;
    transition: var(--ani-st-02-seconds);
    cursor: pointer;
}
.select-block_button:hover {
    background: var(--ui-st-color-lightg);
}
.select-block_info:first-child {
    margin: 0 0 2px 0;
    font-size: 14px;
}
.select-block_info {
    display: flex;
    align-items: center;
}
.select-block_info svg {
    margin: 0 6px 0 0;
}
.header_menu-block {
    width: 100%;
    height: 100%;
    padding: 5px;
}
.menu-block_btn {
    display: flex;
    align-items: center;
    font-family: var(--ui-st-font);
    font-size: 14px;
    line-height: 1;
    border: none;
    background: transparent;
    cursor: pointer;
}
.menu-block_link.burger {
    flex-direction: column;
    align-items: unset;
    padding: 0;
    height: auto;
}
.menu-block_link.burger.active {
    background: var(--ui-st-color-lightg);
}
.menu-block_link.burger .menu-block_link {
    margin: 0;
}
.menu-block_burger .menu-block_link:hover {
    background: rgb(219, 234, 254);
}
.menu-block_burger .menu-block_link {
    margin: 0 0 5px 0 !important;
}
.menu-block_burger {
    display: none;
    padding: 0 5px;
}
.menu-block_burger.active {
    display: block;
}
.menu-block_link {
    display: flex;
    align-items: center;
    font-family: var(--ui-st-font);
    border-radius: 10px;
    font-size: 14px;
    line-height: 1;
    color: var(--ui-st-color-black);
    height: 40px;
    padding: 10px;
    transition: var(--ani-st-02-seconds);
    margin: 0 0 5px 0;
    cursor: pointer;
}
.menu-block_link:hover {
    background: var(--ui-st-color-lightg);
}
.menu-block_link.active {
    background: rgb(219, 234, 254);
}
.menu-block_link svg {
    margin: 0 6px 0 0;
}
.header_copyright {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 14px;
    color: var(--ui-st-color-lightg);
    font-family: var(--ui-st-font);
    padding: 0 0 15px 0;
    z-index: 998;
}
.web_selecter {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: 90vh;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: var(--ani-st-03-seconds);
    background: var(--ui-st-color-white);
    z-index: 997;
}
.web_selecter.active {
    transform: translateX(0%);
}
/* Main */
.main {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 0 0 250px;
    padding: 0 0 20px 0;
}
.main_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 70px;
    padding: 10px 20px;
    font-family: var(--ui-st-font);
    font-size: 28px;
    font-weight: 700;
}
.main_block {
    display: flex;
    flex-direction: column;
    padding: 5px 20px;
}
/* News */
.news_list {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.news_list-menu {
    display: flex;
    align-items: center;
    width: 100%;
    height: 60px;
    font-family: var(--ui-st-font);
    line-height: 1;
    background: var(--ui-st-color-lightg);
}
.news_list-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.row_twenty {
    display: flex;
    justify-content: space-between;
    width: 20%;
    padding: 0 15px 0 15px;
}
.row_twenty img {
    width: 290px;
    height: 165px;
    object-fit: cover;
    border-radius: 10px;
}
.typeOfFile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 290px;
    height: 165px;
    object-fit: cover;
    border-radius: 10px;
    background: var(--ui-st-color-lightg);
}
.typeOfFile svg {
    fill: var(--ui-st-color-gray);
}
.row_ten {
    width: 10%;
    padding: 0 0 0 15px;
    border-left: 1px solid var(--ui-st-color-gray);
}
.row_sixty {
    width: 60%;
    padding: 0 0 0 15px;
    border-left: 1px solid var(--ui-st-color-gray);
}
.row_sixty ul {
    padding: 0 0 0 20px;
}
.news-content_line {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 40px;
    max-height: 100%;
    padding: 10px 0;
    font-size: 14px;
    font-family: var(--ui-st-font);
    line-height: 1;
    transition: var(--ani-st-02-seconds);
}
.news-content_line:hover {
    background: var(--ui-st-color-lightg);
}
.news-content_line:hover svg {
    fill: var(--ui-st-color-black);
}
.news-content_line svg {
    transition: var(--ani-st-02-seconds);
}
.news-content_line:nth-child(even) {
    background: #f7f7f7;
}
.news_list.edit {
    border: 1px solid var(--ui-st-color-lightg);
}
.news_list-menu.edit {
    align-items: flex-start;
    justify-content: space-between;
    background: transparent;
    padding: 15px 20px;
    height: 70px;
    border-bottom: 1px solid var(--ui-st-color-lightg);
}
.news-edit_button {
    display: flex;
    align-items: center;
    font-family: var(--ui-st-font);
    border-radius: 10px;
    font-size: 14px;
    line-height: 1;
    height: 40px;
    padding: 10px 20px;
    transition: var(--ani-st-02-seconds);
    margin: 0 5px 0 0;
    cursor: pointer;
}
.news-edit_button:hover {
    background: var(--ui-st-color-lightg);
}
.news-edit_button.active {
    background: rgb(219, 234, 254);
}
.form {
    padding: 5px 20px;
}
.form_header {
    font-family: var(--ui-st-font);
    margin: 10px 0;
}
.form_input {
    font-family: var(--ui-st-font);
    height: 40px;
    width: 100%;
    color: var(--ui-st-color-black);
    border: 1px solid var(--ui-st-color-lightg);
    background: transparent;
    padding: 0 10px;
    border-radius: 10px;
    outline: none;
}
.form_text_area {
    display: flex;
    flex-direction: row;
    margin: 0 0 20px 0;
}
.form_input_text {
    font-family: var(--ui-st-font);
    width: 50%;
    color: var(--ui-st-color-black);
    border: 1px solid var(--ui-st-color-lightg);
    background: transparent;
    padding: 10px;
    border-radius: 10px;
    outline: none;
    resize: none;
}
.form_text-example {
    width: 50%;
    font-family: var(--ui-st-font);
    padding: 0 20px;
}
.form_text-example h1 {
    margin: 0 0 20px 0;
}
.form_text-example h2 {
    margin: 0 0 20px 0;
}
.form_text-example p {
    margin: 0 0 20px 0;
}
.form_text-example img {
    width: 100%;
    border-radius: 10px;
    margin: 0 0 20px 0;
}
.form_text-example a {
    color: #4d6bfe;
}
.form_text-example ul {
    padding: 0 0 0 20px;
    margin: 0 0 20px 0;
}
.form_button.forms {
    margin: 15px 0;
}
.form_button {
    display: flex;
    align-items: center;
    background: #4d6bfe;
    border: none;
    color: var(--ui-st-color-white);
    font-family: var(--ui-st-font);
    padding: 0 20px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    margin: 0 0 15px 0;
}
.delete_button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #ffbaba;
    border: none;
    cursor: pointer;
    transition: var(--ani-st-02-seconds);
}
.delete_button svg {
    fill: #ff4a4a;
}
.delete_button:hover {
    background: #ffa4a4;
}
.delete-window {
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 999;
}
.delete-window.active {
    display: flex;
}
.delete-window_close {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
}
.delete-window_block {
    position: absolute;
    background: var(--ui-st-color-white);
    border-radius: 10px;
    padding: 20px;
    font-family: var(--ui-st-font);
}
.delete-window_block p {
    margin: 0 0 15px 0;
}
.delete-window_button {
    display: flex;
    align-items: center;
    height: 40px;
    border-radius: 10px;
    padding: 0 20px;
    background: #ffbaba;
    color: #ff4a4a;
    border: none;
    cursor: pointer;
    transition: var(--ani-st-02-seconds);
}
.delete-window_button:hover {
    background: #ffa4a4;
}
.delete-window_cancel {
    display: flex;
    align-items: center;
    height: 40px;
    border-radius: 10px;
    font-size: 14px;
    padding: 0 20px;
    margin: 0 0 0 5px;
    background: #ffbaba;
    color: #4d6bfe;
    background: var(--ui-st-color-lightg);
    cursor: pointer;
    transition: var(--ani-st-02-seconds);
}
.delete-window_cancel:hover {
    background: rgb(219, 234, 254);
}
.createNews_button {
    display: flex;
    align-items: center;
    height: 40px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 400;
    padding: 0 20px;
    color: #4d6bfe;
    background: rgb(219, 234, 254);
    transition: var(--ani-st-02-seconds);
}
.uploadFile {
    display: flex;
}
.filePreview {
    width: 50%;
    border-radius: 20px;
}
.inputFileUpload {
    position: relative;
	display: inline-block;
	width: 50%;
}
.inputFileUpload span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ui-st-font);
    position: relative;
	display: inline-block;
	cursor: pointer;
	outline: none;
	text-decoration: none;
	font-size: 14px;
	color: var(--ui-st-color-black);
	background: transparent;
	border: 1px solid var(--ui-st-color-lightg);
	line-height: 1;
	height: 40px;
	width: 148px;
	padding: 11px 15px;
	border-radius: 10px;
	box-sizing: border-box;
	margin: 0 0 20px 0;
	transition: background-color 0.2s;
}
.inputFileUpload input[type=file] {
	position: absolute;
	z-index: -1;
	opacity: 0;
	display: block;
	width: 0;
	height: 0;
}
.inputFileUpload:hover span {
	background: rgb(219, 234, 254);
}
.inputFileUpload input[type=file]:disabled + span {
	background-color: #eee;
}
.toolbar {
    display: flex;
}
.toolbar button {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--ui-st-color-lightg);
    background: var(--ui-st-color-white);
    margin: 0 10px 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--ani-st-02-seconds);
}
.toolbar button:hover {
    background: var(--ui-st-color-lightg);
}
.login {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
}
.card {
    font-family: var(--ui-st-font);
    margin: auto auto;
}
.card h1 {
    
}
.card label {
    display: flex;
    flex-direction: column;
}
.card input {
    background: transparent;
    border: 1px solid var(--ui-st-color-lightg);
    border-radius: 10px;
    width: 300px;
    height: 40px;
    padding: 0 15px;
    margin: 0 0 10px 0;
}
.card button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 40px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #4d6bfe;
    background: rgb(219, 234, 254);
    transition: var(--ani-st-02-seconds);
    border: none;
    cursor: pointer;
}
.copyrightLogin {
    padding: 10px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ui-st-color-lightg);
    font-size: 14px;
    width: 300px;
}

/* Pagination */

.pagination {
    display: flex;
    width: 100%;
    padding: 20px 10px 0 10px;
}
.pagination .current {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ui-st-font);
    min-width: 40px;
    max-width: 100px;
    height: 40px;
    border-radius: 14px;
    color: var(--ui-st-color-black);
    background: rgb(219, 234, 254);
    margin: 0 10px 0 0;
}
.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ui-st-font);
    min-width: 40px;
    max-width: 100px;
    height: 40px;
    border-radius: 14px;
    color: var(--ui-st-color-black);
    background: var(--ui-st-color-lightg);
    margin: 0 10px 0 0;
}
.pagination a:hover {
    background: rgba(219, 234, 254, 0.7);
}
.pagination .back {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ui-st-font);
    min-width: 40px;
    max-width: 100px;
    height: 40px;
    border-radius: 14px;
    color: var(--ui-st-color-black);
    background: var(--ui-st-color-lightg);
    margin: 0 10px 0 0;
    padding: 0 20px;
}
.pagination .next{
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ui-st-font);
    min-width: 40px;
    max-width: 100px;
    height: 40px;
    border-radius: 14px;
    color: var(--ui-st-color-black);
    background: var(--ui-st-color-lightg);
    margin: 0 10px 0 0;
    padding: 0 20px;
}
.pagination .space {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ui-st-font);
    min-width: 40px;
    max-width: 100px;
    height: 40px;
    border-radius: 14px;
    color: var(--ui-st-color-black);
    background: var(--ui-st-color-lightg);
    margin: 0 10px 0 0;
}



