{
    box-sizing: border-box;
}

p {
    margin: 0;
}

body {
    margin: 0;
    background: rgba(25, 24, 60, 0.02) !important;
}

button {
    background: transparent;
    border:0;
    padding:0;
    cursor: pointer;
}

a {
    background: transparent;
    border:0;
    padding:0;
    cursor: pointer;
    text-decoration: none;
}




/*---------------------------------------
   SIDEBAR
-----------------------------------------*/

.sidebar {
    position: fixed !important;
    overflow: hidden !important;
    top: 0 !important;
    left: 0 !important;
    width: 300px !important;
    height: 100% !important;
    background: #19183C !important;
    transition: width 0.4s !important;
    z-index: 999;
}

.sidebar-inner {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 300px !important;
}

.sidebar-header {
    display: flex !important;
    align-items: center !important;
    height: 250px !important;
    /*background: rgb(255, 255, 255) !important;*/
    background: #EEECEF !important;
}

.sidebar-header-image {
    width: 100%;
    text-align: center;
    padding-right: 5px;
}

.sidebar-menu {
    display: grid !important;
    padding: 10px !important;
}

.sidebar-button {
    display: flex !important;
    gap: 16px !important;
    align-items: center !important;
    height: 56px !important;
    width: 100% !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 20px !important;
    text-transform: capitalize !important;
    line-height: 1 !important;
    padding: 0 10px !important;
    border-radius: 8px !important;
    color: #ffffff !important;
}

.sidebar-button:hover {
    background: rgb(0 0 0 / 30%) !important;
    opacity: 1 !important;
}

.sidebar-button:hover > span {
    opacity: 1 !important;
}

.sidebar-dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: rgb(0 0 0 / 5%) !important;
    z-index: 1;
    width: 100%;
}

.sidebar-dropdown:hover .dropdown-content {
    border-radius: 8px !important;
    display: block;
}

/*---------------------------------------
   LOGIN PAGE
-----------------------------------------*/

#my_form .input_form {
    display: flex;
    flex-direction: column-reverse;
    margin: 1.2em 0;
}

#my_form input, #my_form label, #my_form button {
    transition: .3s;
    background: rgba(255, 62, 88, 0);
}

#my_form label {
    transform: translate(10px, -15px);
    cursor: text;
    transform-origin: left top;
    position: absolute;
}

#my_form input {
    padding: 10px;
    border: none;
    outline: none;
    border-bottom: 2px solid grey;
}

#my_form button {
    border: 0;
    padding: 10px 15px;
    cursor: pointer;
    color: white;
    background-color: #19183C;
}

#my_form button:focus, #my_form button:hover {
    background-color: #d9931f;
}

#my_form .submit_form {
    text-align: right
}

#my_form input::placeholder {
    opacity: 0;
}

#my_form input:focus, #my_form input:not(:placeholder-shown) {
    border-bottom: 2px solid #19183C;
}

#my_form input:not(:placeholder-shown) ~ label, #my_form input:focus ~  label {
    transform: translate(10px, -30px) scale(.8) ;
    padding-left: 0;
    color: black;
}

/*---------------------------------------
   LANDING PAGES
-----------------------------------------*/

table, tr, td ,th  {
    background-color: rgba(255, 59, 87, 0) !important;
    font-size: large;
    font-family: 'Poppins', sans-serif !important;
}

.btn-play {
    opacity: 80 !important;
}


