html,body
{
height: 100%;
}

body
{
background: #121824 url(../files/images/admin_panel_bg.jpg);
background-size: cover;
font-family: 'Inter', sans-serif;
}

.main_wrap
{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
padding: 50px 0px;
height: 100%;
}

.header_menu
{
width: 100%;
display: block;
}

.header_menu .wrapper
{
background: #121824;
padding: 0px;
overflow: hidden;
border: 1px solid #000000;
border-radius: 15px 15px 0px 0px;
border-bottom: 0px;
}

.header_menu .wrapper > .tabs
{
padding: 0px;
list-style: none;
margin: 0px;
display: flex;
}

.header_menu .wrapper > .tabs > li
{
text-align: center;
flex: 1;
background: #121824;
border-right: 1px solid #000000;
border-bottom: 1px solid #000000;
transition: 0.2s;
}

.header_menu .wrapper > .tabs > li:hover
{
background: #131519;
border-bottom: 0px;
}

.header_menu .wrapper > .tabs:hover > li.active
{
background: #121824;
border-right: 1px solid #000000;
border-bottom: 1px solid #000000;
}

.header_menu .wrapper > .tabs > li > a
{
display: flex;
text-decoration: none;
color: #83a0b7;
font-weight: 500;
font-size: 18px;
flex-direction: column;
align-items: center;
gap: 6px;
padding: 24px;
}

.header_menu .wrapper > .tabs > li > a > svg
{
height: 45px;
width: 45px;
}

.header_menu .wrapper > .tabs > li > a > span
{
display: block;
}

.header_menu .wrapper > .tabs > li.active
{
background: #131519;
border-bottom: 0px;
}

.header_menu .wrapper > .tabs > li.active > a
{
color: #2196f3;
}

.header_menu .wrapper > .tabs:hover  > li.active > a
{
color: #83a0b7;
}

.header_menu .wrapper > .tabs > li:hover > a
{
color: #2196f3;
}

.header_menu .wrapper > .tabs > li:last-child
{
border-radius: 0px 15px 0px 0px;
border-right: 0px;
}

.header_menu .wrapper > .tabs > li:first-child
{
border-radius: 15px 0px 0px 0px;
}

section.login_form, .settings_form,.sound_settings
{
width: 100%;
}

section .content_wrapper
{
background: #131519;
padding: 0px;
overflow: hidden;
border: 1px solid #000000;
border-top: 0px;
border-radius: 0px 0px 15px 15px;
max-height: 70vh;
overflow-y: auto;
overflow-x: auto;
padding: 20px;
}

section .content_wrapper .buttons
{
display: flex;
}

section .content_wrapper .buttons > .left_side
{
display: inline-flex;
flex-wrap: wrap;
gap: 10px;
}

section .content_wrapper .buttons > .left_side > div
{
padding: 6px 12px;
cursor: pointer;
border-radius: 5px;
background: #2196F3;
color: white;
font-size: 18px;
font-weight: 600;
}

section .content_wrapper .buttons > .right_side
{
display: inline-flex;
flex-wrap: wrap;
margin-left: auto;
gap: 10px;
}

section .content_wrapper .buttons > .right_side > div
{
padding: 6px 10px;
cursor: pointer;
border-radius: 5px;
background: #2196F3;
color: white;
}

section .content_wrapper .buttons > .right_side > div > svg
{
width: 18px;
height: 18px;
}

.default_form
{
display: flex;
flex-direction: column;
gap: 25px;
color: #6e6d80;
padding: 30px 30px;
background: #121824;
border: 1px solid #000000;
border-radius: 10px;
}

.default_form > .field
{
display: flex;
flex-direction: column;
gap: 20px;
flex-wrap: wrap;
}

.default_form > .field.multiple_field
{
flex-direction: row;
max-width: 100%;
}

.default_form > .field > div
{
display: flex;
flex-direction: column;
flex: 1;
flex-wrap: wrap;
max-width: 100%;
}

.default_form > .field h3
{
color: #387895;
font-size: 20px;
border-bottom: 1px solid #196387;
padding-bottom: 15px;
}

.default_form > .field label
{
color: #83a0b7;
font-weight: 500;
font-size: 18px;
margin-bottom: 15px;
}

.default_form > .field input, .default_form > .field textarea, .default_form > .field select
{
padding: 15px;
border-radius: 10px;
border: 1px solid #000000;
background: #131519;
color: #83a0b7;
font-weight: 500;
font-size: 18px;
outline: none;
max-width: 100%;
}

.default_form > .field > .submit_form
{
background: #2196F3;
color: white;
border-color: #2196F3;
box-shadow: 0px 14px 0px #0e5e9f;
transition: 0.2s;
font-size: 20px;
position: relative;
padding: 15px;
border-radius: 10px;
font-weight: 500;
font-size: 18px;
outline: none;
}

.default_form.processing > .field > .submit_form::before
{
content: "";
background-image: repeating-linear-gradient(-45deg, transparent, transparent 1rem, #ffffff21 1rem, #ffffff21 2rem);
background-size: 200% 200%;
animation: barberpole 5s 
linear infinite;
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
}

@keyframes barberpole
{
100%
{
background-position: 100% 100%;
}
}

.default_form > .field:hover > .submit_form
{
margin-top: 10px;
box-shadow: 0px 4px 0px #0e5e9f;
}

section.signups
{
width: 100%;
}

.table_list .item
{
display: table-row;
table-layout: revert-layer;
}

.table_list
{
display: table;
width: 100%;
border-collapse: separate;
border-spacing: 0 15px;
padding: 15px 30px;
font-size: 18px;
background: #121824;
border: 1px solid #000000;
border-radius: 10px;
}

.table_list .item > div
{
display: table-cell;
padding: 8px;
text-align: center;
color: #83a0b7;
font-weight: 500;
background: #131519;
border-left: 1px solid #000000;
border-top: 1px solid #000000;
border-bottom: 1px solid #000000;
padding: 15px 5px;
vertical-align: middle;
}

.table_list .item.heading
{
background: transparent;
border: 0px;
}

.table_list .item.heading > div
{
background: #121824;
border: 0px;
padding: 0px 5px;
}

.table_list .item > div:first-child
{
border-radius: 12px 0px 0px 12px;
}

.table_list .item > div:last-child
{
border-radius: 0px 12px 12px 0px;
border-right: 1px solid #000000;
}

.table_list .item.heading > div:last-child
{
border: 0px;
}

.table_list .item > div.status > span
{
background: #FFC107;
border: 0px;
padding: 5px 17px;
outline: none;
border-radius: 5px;
font-weight: 500;
color: #000000;
text-transform: capitalize;
}

.table_list .item > div.status.completed > span
{
background: #32a736;
color: #eff7f1;
}

.table_list .item > div.status.failed > span
{
background: #681712;
color: white;
}

.delete_entry
{
cursor: pointer;
}

::-webkit-scrollbar
{
width: 20px;
}

::-webkit-scrollbar-track
{
background: #131519;
}

::-webkit-scrollbar-thumb
{
background-color: #131519;
border-radius: 5px;
}

*
{
scrollbar-width: thin;
scrollbar-color: #4e5666 #131519;
}

@media only screen and (max-width: 768px)
{
.header_menu .wrapper > .tabs > li > a
{
padding: 12px 4px;
}

.header_menu .wrapper > .tabs > li > a > svg
{
width: 35px;
height: 35px;
}

.header_menu .wrapper > .tabs > li > a > span
{
display: none;
}

.header_menu .wrapper > .tabs
{
max-width: 100%;
}

.table_list .item.heading
{
display: none;
}

.table_list
{
display: flex;
flex-wrap: wrap;
gap: 8px;
}

.table_list .item
{
display: flex;
flex-direction: column;
flex: 1;
}

.table_list .item > div
{
border: 0px;
}

section .content_wrapper
{
padding: 0px;
}

section .content_wrapper .buttons
{
margin-top: 20px;
margin-bottom: 20px;
margin-right:10px;
}

section .content_wrapper .buttons > .right_side > div > svg
{
width: 14px;
height: 14px;
}
}