@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    min-height: 100vh;
    height: 100%;
    background: url('../images/background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: animateBg 5s linear infinite;}

/* @keyframes animateBg {
    100% {
        filter: hue-rotate(360deg);
    }
} */
/* Sidebar Items */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 80px;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(5px);
    border-right: 2px solid rgba(255, 255, 255, .07);
    padding: 6px 14px;
    transition: .5s ease;
}

.sidebar.active {
    width: 240px;
}

.sidebar .logo-content .logo {
    display: flex;
    align-items: center;
    color: #fff;
    width: 100%;
    height: 50px;
    pointer-events: none;
    opacity: 0;
    transition: .3s ease;
}

.sidebar.active .logo-content .logo {
    transition-delay: .2s;
    opacity: 1;
}

.logo-content .logo i {
    font-size: 28px;
    margin-right: 5px;
}

.logo-content .logo h3 {
    font-size: 20px;
}

.sidebar #btn {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 20px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
}

.sidebar.active #btn {
    left: 90%;

}

.sidebar ul {
    margin-top: 20px;
}

.sidebar ul li {
    position: relative;
    width: 100%;
    height: 50px;
    list-style: none;
    margin: 5px 0;
    line-height: 50px;
}

.sidebar ul li a {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    white-space: nowrap;
    transition: .5s ease;
}

.sidebar ul li a:hover {
    background: rgba(255, 255, 255, .1);
}

.sidebar ul .list-item.active a {
    background: #c40094;
}

.sidebar ul li i {
    min-width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
}

.sidebar .links-name {
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.sidebar.active .links-name {
    transition-delay: .2s;
    opacity: 1;
    pointer-events: auto;
}

.sidebar ul li .tooltip {
    position: absolute;
    top: 0;
    left: 130px;
    transform: translate(-50%, -50%);
    width: 135px;
    height: 35px;
    background: #c40094;
    color: #fff;
    border-radius: 6px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    text-align: center;
    line-height: 35px;
    pointer-events: none;
    opacity: 0;
}

.sidebar ul li:hover .tooltip {
    transition: .5s ease;
    top: 50%;
    opacity: 1;
}

.sidebar.active ul li .tooltip {
    display: none;
}

/* Content Items */
.container {
    position: relative;
    margin: auto;
    top: 0;
    transform: none;
    width: 60%;
    min-height: calc(100vh - 120px);
    background: rgba(255, 255, 255, .7);
    padding: 60px 40px;
    border-radius: 10px;
}
.container .title {
    font-size: 75px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    color: #c40094;
    text-shadow: 3px 3px 3px  #327aff;

}

.container .level-list {
    list-style: none;
    margin-top: 30px;
    padding: 20px 20px;
    text-align: center;
}

.container .level-btn {
    width: 190px;
    height: 55px;
    background: #c40094;
    border: 2px solid #fff;
    outline: none;
    border-radius: 6px;
    box-shadow: 0 0 10px #c40094;
    font-size: 18px;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    transition: .5s;
}

.container .level-btn:hover {
    background: #09001d;
    box-shadow: none;
}

.container .level-list .level-subscribe {
    padding-top: 20px;
}