@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
}

*:focus {
    outline: none;
}

html {
    font-size: 14px;
}

/*16px*/

body {
    background-color: #f7f4fc;
    /*font-family: 'Open Sans', sans-serif;*/
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.65;
    color: #120723;
}

p {
    margin-bottom: 1.15rem;
    line-height: 2em;
    letter-spacing: 0.05rem;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 2.75rem 0 1.05rem;
    line-height: 1.15;
}

h1 {
    margin-top: 0;
    letter-spacing: 0.3rem;
    font-size: 4.953em;
    font-weight: 700;
}

h2 {
    font-size: 3.998em;
    letter-spacing: 0.2rem;
    font-weight: 600;
}

h3 {
    font-size: 2.827em;
    font-weight: 600;
}

h4 {
    font-size: 1.999em;
    font-weight: 600;
}

h5 {
    font-size: 1.414em;
    font-weight: 600;
}

.hyperlink {
    padding: 0.1em 0.4em;
    color: #7028e4;
    border-radius: 1em;
    transition: box-shadow 200ms;
}

.hyperlink:hover {
    box-shadow: 0 1px 1px rgba(112, 40, 228, 0.05), 0 2px 2px rgba(112, 40, 228, 0.05), 0 4px 4px rgba(112, 40, 228, 0.05), 0 8px 8px rgba(112, 40, 228, 0.05), 0 16px 16px rgba(112, 40, 228, 0.05), 0 32px 32px rgba(112, 40, 228, 0.05);
}

a {
    color: #7028e4;
    text-decoration: none;
}

.left {
    float: left;
}

small,
.text_small {
    font-size: 0.707em;
}

.mg-top-1 {
    margin-top: 1em;
}

.mg-bottom-1 {
    margin-bottom: 1em;
}

.mg-left-1 {
    margin-left: 1em;
}

.mg-right-1 {
    margin-right: 1em;
}

.mg-top-2 {
    margin-top: 2em;
}

.mg-bottom-2 {
    margin-bottom: 2em;
}

.mg-left-2 {
    margin-left: 2em;
}

.mg-right-2 {
    margin-right: 2em;
}

.flex-block {
    grid-gap: 2em;
    display: flex;
}

.wrapper {
    max-width: 80%;
    margin: 0 auto;
}

.wrapper-2 {
    max-width: 93%;
    margin: 0 auto;
}

section {
    padding: 10vh 20px;
    display: block;
}

.white {
    color: #fff;
}

.white-2 {
    color: #eee;
}

.black {
    color: #04010a;
}

.dark {
    color: #120723;
}

.gray {
    color: #332812;
}

.light {
    color: #f7f4fc;
}

.pink {
    color: #e5b2ca;
}

.bolder {
    font-weight: bolder;
    font-size: 1.1em;
    text-transform: uppercase;
}

.purple {
    color: #7028e4;
}


.full-h {
    height: 80vh;
}

.middle-h {
    height: 50vh;
}

.full-w {
    width: 100%;
}

.mid-w {
    width: 50%;
}

.max-w-500 {
    max-width: 500px;
}


.min-w-500 {
    min-width: 500px;
}

.vertical-align {
    display: flex;
    align-items: center;
}

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

.align-bottom {
    align-self: flex-end;
}

.align-up {
    align-self: flex-start;
}

.item-list {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1em;
}

.item-list .selectable-item {
    text-decoration: none;
    padding: 1em;
    border-radius: 1em;
    margin: 0.3em 0;
    transition: background-color 200ms;
    transition: box-shadow 200ms;
}

.item-list .selectable-item:hover {
    background-color: #ffffff;
    box-shadow: 0 1px 1px rgba(112, 40, 228, 0.05), 0 2px 2px rgba(112, 40, 228, 0.05), 0 4px 4px rgba(112, 40, 228, 0.05), 0 8px 8px rgba(112, 40, 228, 0.05), 0 16px 16px rgba(112, 40, 228, 0.05), 0 32px 32px rgba(112, 40, 228, 0.05);
}

.item-list .item {
    display: flex;
    color: #16082b;
    grid-gap: 2em;
    justify-content: space-between;
}

.item-list .task-stop-button {
    width: 8em;
    background-color: #7028e4;
    border: none;
    padding: 1.5em 2em;
    color: #f7f4fc;
    cursor: pointer;
    box-shadow: 0 1px 1px rgb(112 40 228 / 5%), 0 2px 2px rgb(112 40 228 / 5%), 0 4px 4px rgb(112 40 228 / 5%), 0 8px 8px rgb(112 40 228 / 5%), 0 16px 16px rgb(112 40 228 / 5%);
    border-radius: 0.5em;
    transition: all 200ms;
}

.item-list .task-stop-button:hover {
    background-color: #8649E9;
    box-shadow: 0 1px 1px rgba(112, 40, 228, 0.1), 0 2px 2px rgba(112, 40, 228, 0.1), 0 4px 4px rgba(112, 40, 228, 0.1), 0 8px 8px rgba(112, 40, 228, 0.1), 0 16px 16px rgba(112, 40, 228, 0.1), 0 32px 32px rgba(112, 40, 228, 0.1);
}

.item-list .custom-item {
    display: flex;
    justify-content: space-between;
}

.item-list .item .item-photo img {
    border-radius: 100%;
    width: 100px;
    height: 100px;
}

.item-list .item .item-content h5 {
    color: #231352;
    font-weight: bolder;
    margin-bottom: 0.5em;
    font-size: 1.2em;
}

.auto-grid {
    display: grid;
    grid-gap: 2em;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.container {
    margin: 20px auto;
}

.align {
    text-align: center;
}

.centerize {
    margin: 0 auto;
}

#hero {
    min-height: 100vh;
    padding: 0 20px;
    background-image: linear-gradient(to top, #7028e4 0%, #e5b2ca 100%);
}

.button-1 {
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    padding: 0.75em 3em;
    display: inline-block;
    margin: 1.5em 2em;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    background-color: white;
}

.button-2 {
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    padding: 0.75em 3em;
    display: inline-block;
    margin: 1.5em auto;
    cursor: pointer;
    text-align: center;
    color: #eee;
    font-weight: 600;
    border: 1px solid white;
}

.menu {
    cursor: pointer;
    align-self: center;
    display: none !important;
    font-size: 3em;
    margin-right: 0.3em;
    line-height: 0.2em;
}

.menu2 {
    cursor: pointer;
    display: none !important;
    color: #fefefe;
    font-size: 3em;
    align-self: center;
}

.aside-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3em;
}

.button-3 {
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    padding: 0.75em 3em;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0);
    cursor: pointer;
    margin: 1.5em auto;
    text-align: center;
    color: #7028e4;
    font-weight: 600;
    border: 1px solid #7028e4;
}

.button-4 {
    text-transform: uppercase;
    border: none;
    padding: 0.75em 3em;
    display: inline-block;
    margin: 1em auto;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    background-color: #7028e4;
    cursor: pointer;
    color: #ededed;
    border-radius: 2em;
    box-shadow: 0 1px 1px rgba(112, 40, 228, 0.05), 0 2px 2px rgba(112, 40, 228, 0.05), 0 4px 4px rgba(112, 40, 228, 0.05), 0 8px 8px rgba(112, 40, 228, 0.05), 0 16px 16px rgba(112, 40, 228, 0.05);
    transition: box-shadow 200ms;
    transition: background 200ms;
}

.button-dia {
    text-transform: uppercase;
    border: none;
    padding: 0.75em 3em;
    font-weight: bold;
    display: inline-block;
    margin: 1em auto;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    background-color: #fefefe;
    cursor: pointer;
    color: #7028e4;
    border-radius: 2em;
    box-shadow: 0 1px 1px rgba(112, 40, 228, 0.05), 0 2px 2px rgba(112, 40, 228, 0.05), 0 4px 4px rgba(112, 40, 228, 0.05), 0 8px 8px rgba(112, 40, 228, 0.05), 0 16px 16px rgba(112, 40, 228, 0.05);
    transition: box-shadow 200ms;
    transition: background 200ms;
}

.button-4:hover {
    background-color: #8649e9;
    box-shadow: 0 1px 1px rgba(112, 40, 228, 0.1), 0 2px 2px rgba(112, 40, 228, 0.1), 0 4px 4px rgba(112, 40, 228, 0.1), 0 8px 8px rgba(112, 40, 228, 0.1), 0 16px 16px rgba(112, 40, 228, 0.1), 0 32px 32px rgba(112, 40, 228, 0.1);
}

.button-dia:hover {
    color: #fefefe;
    background-color: #8649e9;
    box-shadow: 0 1px 1px rgba(112, 40, 228, 0.1), 0 2px 2px rgba(112, 40, 228, 0.1), 0 4px 4px rgba(112, 40, 228, 0.1), 0 8px 8px rgba(112, 40, 228, 0.1), 0 16px 16px rgba(112, 40, 228, 0.1), 0 32px 32px rgba(112, 40, 228, 0.1);
}

.button-5 {
    text-transform: uppercase;
    border: none;
    background-color: transparent;
    font-family: 'Montserrat', sans-serif;
    color: #7028e4;
    font-weight: 600;
    padding: 0.75em 3em;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 2em;
    border: 1px solid #7028e4;
    transition: all 200ms;
}

.button-5:hover {
    background-color: #7028e4;
    color: #ededed;
    box-shadow: 0 1px 1px rgba(112, 40, 228, 0.1), 0 2px 2px rgba(112, 40, 228, 0.1), 0 4px 4px rgba(112, 40, 228, 0.1), 0 8px 8px rgba(112, 40, 228, 0.1), 0 16px 16px rgba(112, 40, 228, 0.1), 0 32px 32px rgba(112, 40, 228, 0.1);
}

.blured {
    filter: blur(2px);
    pointer-events: none;
}

.button-2:hover {
    background-color: #120723;
    color: #e5b2ca;
    transition: all 200ms;
    border: 1px solid #120723;
}

.button-3:hover {
    background-color: #120723;
    color: #e5b2ca;
    transition: all 200ms;
    border: 1px solid #120723;
}

.button-1:hover {
    background-color: #120723;
    color: #e5b2ca;
    transition: all 200ms;
}

.shadow {
    box-shadow: 0 1px 1px rgba(112, 40, 228, 0.05), 0 2px 2px rgba(112, 40, 228, 0.05), 0 4px 4px rgba(112, 40, 228, 0.05), 0 8px 8px rgba(112, 40, 228, 0.05), 0 16px 16px rgba(112, 40, 228, 0.05), 0 32px 32px rgba(112, 40, 228, 0.05);
}

.box {
    background-color: #fefefe;
    margin-top: 1.5em;
    display: flex;
    margin-bottom: 1.5em;
    border-radius: 1em;
    border-bottom: 5px solid #7028e4;
}

.single-box {
    width: 90%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.right-side form {
    width: 100%;
    text-align: center;
}

.package-box {
    margin-top: 1.5em;
    margin-bottom: 1.5em;
    background: rgb(112, 40, 228);
    background: linear-gradient(180deg, rgba(112, 40, 228, 1) 0%, rgba(193, 138, 230, 1) 100%);
    text-align: center;
    border-radius: 20px;
}

.package-box h4, h5 {
    text-transform: uppercase;
    margin: 1em auto;
    color: #fefefe;
}

.bigtext {
    font-size: 2em;
    font-weight: bold;
    color: #fefefe;
}

.bigtext2 {
    font-size: 2em;
    font-weight: bolder;
}

.package-box p {
    line-height: 3em;
    color: #eee;
}

.special-box {
    background-color: #fff;
    margin: 0 auto;
    opacity: 0.95;
    border-radius: 20px;
    position: relative;
    bottom: 40em;
    border-bottom: 5px solid #7028e4;
}

.box-content {
    display: flex;
    flex-flow: column;
    padding: 2em;
    font-weight: lighter;
    width: 100%;
}

.box-content-2 {

    font-weight: lighter;
    width: 100%;
}

.box-content .box-title {
    margin-bottom: 2em;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
}

.box-content .box-title button {
    height: 5em;
    margin: 0;
}

.box-content .box-title a {
    text-decoration: none;
}

.box-content .box-title h5, h4 {
    font-weight: bolder;
    pointer-events: none;
    user-select: none;
    margin: 0 !important;
}

.box-content h5 {
    color: #04010a;
    margin-top: 0;
    margin-bottom: 2em;
}

.header-space {
    width: 100%;
    height: 17em;
}

.space {
    margin: 5em 0;
}

.space-2 {
    margin: 10em 0;
}

.footer-list ul {
    list-style: none;
}

.footer-list ul li a {
    color: #e5b2ca;
    display: block;
    margin: 2em 0;
    text-decoration: none;
}

.header-top {
    display: flex;
    align-content: space-between;
}

header {
    z-index: -1;
    border-bottom-left-radius: 4em;
    border-bottom-right-radius: 4em;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #7028e4;

    min-height: 25em;
}

header h3 {
    margin: 0;
}

aside {
    z-index: -2;
    position: fixed;
    background-color: #fefefe;
    float: left;
    width: 20%;
    top: 0;
    height: 100vh;
}

.aside-content {
    z-index: 2;
    float: left;
    width: 20%;
    height: 100vh;
}

.aside-content-2 {
    float: left;
    width: 20%;
    position: absolute;
}

main {
    padding-bottom: 2em;
    z-index: 0;
    display: block;
    float: right;
    width: 80%;
}

.logo {
    min-height: 100px;
    user-select: none;
    display: flex;
}

.package-logo {
    margin: 2em auto;
}

.package-logo img {
    border-radius: 100%;
    height: 100px;
}

.logo img {
    height: 50px;
    align-self: center;
}

.logo-text {
    display: none;
    user-select: none;
    align-self: center;
    letter-spacing: 0.05em;
    margin-left: 0.6em;
    font-size: 1.5em;
    text-transform: uppercase;
    font-weight: 800;
    color: #fefefe;
    line-height: 100px;
}

.header-menu {
    height: 100px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 2em;
    text-align: center;
    line-height: 100px !important;
}

.header-menu .header-title {
    pointer-events: none;
    user-select: none;
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 1.3em;
    /*font-weight: bolder;*/
    color: #fefefe;
}

.header-menu .right-section > a {
    margin: 0 0.5em;
    font-size: 2em;
    color: #fefefe;
}

.header-menu .right-section > a:hover {
    color: #eee;
    transition: color 50ms;
}

.user-details {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1em;
}

.user-details .profile-photo img {
    user-select: none;
    width: 100px;
    border-radius: 100%;
}

.user-details .user-content .user-name {
    color: #fefefe;
    letter-spacing: 0.05em;
    font-weight: 600;
    text-transform: uppercase;
    pointer-events: none;
    user-select: none;
}

.user-details .user-content .user-balance {
    color: #f7f4fc;
    letter-spacing: 0.05em;
    font-size: 1em;
    pointer-events: none;
    user-select: none;
}

.user-details .user-content .user-authority {
    color: #f7f4fc;
    pointer-events: none;
    user-select: none;
}

nav {
    margin: 5em auto;
}

nav ul {
    list-style: none;
}

nav ul li {
    width: 100%;
}

nav ul li i {
    margin-right: 1em;
    font-size: 1.3em;
}

nav ul li a {
    font-weight: 600;
    padding: 1.5em 0;
    display: block;
    transition: background-color 150ms;
    color: #4a3362;
    text-decoration: none;
}

nav ul li:hover {
    background-color: #eee;
}

nav ul li a:hover,
ul li a:focus {
    color: #120723;
}


.nav-item-dropdown {
    position: absolute;
    left: 22em;
    transition: all 200ms;
}

.nav-item-dropdown-sub {
    position: absolute;
    left: 15em;
    transition: all 200ms;
}

.nav-item-dropdown-hide {
    visibility: hidden;
    opacity: 0;
}

.nav-item-dropdown-content {
    transform: translateY(-4.65em);
    background-color: #fefefe;
    padding: 1em 1.5em 1em 1em;
    border-radius: 1em;
}

.nav-item-dropdown-content-sub {
    width: 100%;
    transform: translateY(-4.65em);
    background-color: #fefefe;
    padding: 1em 1.5em 1em 1em;
    border-radius: 1em;
}

.nav-item-dropdown-content li {
    border-radius: 1em;
    padding: 0.2em 0.4em;
}

.colorful {
    font-size: 3em;
    font-weight: bold;
}

.messages {
    padding: 1em 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    align-content: center;
}

.messages > div {
    margin: 0.5em;
}

.message {
    display: flex;
    border-radius: 1em;
    line-height: 2.2em;
    font-size: 0.8em;
    background-color: #7028e4;
    user-select: none;
    color: #f7f4fc;
}

.message-content {
    padding: 0.4em 1em;
}

.additional-message-right {
    cursor: pointer;
    line-height: 3em;
    padding: 0 1em;
    border-bottom-right-radius: 0.6em;
    border-top-right-radius: 1em;
    transition: background 100ms;
}

.additional-message-middle {
    cursor: pointer;
    line-height: 3em;
    padding: 0 1em;
    transition: background 100ms;
}

.additional-message-right:hover {
    background-color: #925CEB;
}

.additional-message-middle:hover {
    background-color: #925CEB;
}

.textbox {
    background-color: rgba(232, 111, 212, 0);
    padding: 0.5em 1em;
    border-top: none;
    font-family: 'Montserrat', sans-serif;
    border-left: none;
    margin: 1.5em auto;
    min-width: 90%;
    border-right: none;
    border-bottom: 0.5px solid #7028e4;
}

.textbox-2 {
    border: none;
    color: #120723;
    font-weight: lighter;
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
}

.textbox-3 {
    resize: none !important;
    box-sizing: border-box;
    display: inline-block;
    font-weight: lighter;
    border-radius: 3em !important;
    border: 0.5px solid #7028e4 !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    padding: 0.6em 2em;
    transition: box-shadow 200ms;
}

.textbox-3phone {
    resize: none !important;
    box-sizing: border-box;
    font-weight: lighter;
    border-radius: 3em !important;
    border: 0.5px solid #7028e4 !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    padding: 0.6em 2em;
    transition: box-shadow 200ms;
}

.flex-block label {
    white-space: nowrap;
    align-self: center;
    text-align: left;
}

.small-label label {
    width: 3.5em;
}

.mid-label label {
    width: 7em;
}

.big-label label {
    width: 10em;
}

.very-big-label label {
    width: 15em;
}

.textbox-3:focus {
    box-shadow: 0 1px 1px rgba(112, 40, 228, 0.05), 0 2px 2px rgba(112, 40, 228, 0.05), 0 4px 4px rgba(112, 40, 228, 0.05), 0 8px 8px rgba(112, 40, 228, 0.05), 0 16px 16px rgba(112, 40, 228, 0.05), 0 32px 32px rgba(112, 40, 228, 0.05) !important;
}

table {
    border-collapse: collapse;
    border-radius: 3em;
    table-layout: fixed;
    word-break: break-all;
    margin: 1em auto;
    width: 100%;
}


table tr:nth-child(even) td {
    background-color: #f7f4fc;
}

table th {
    text-align: center;
    padding: 2em 1em;
    text-transform: uppercase;
    font-size: 1em;
}

table td {
    text-align: center;
    padding: 1em 1em;
}

table tr:last-child td:first-child {
    border-bottom-left-radius: 3em;
}

table tr:last-child td:last-child {
    border-bottom-right-radius: 3em;
}

.packages {
    margin-bottom: 10em;
    text-align: center;
    display: grid;
    grid-gap: 2em;
    grid-template-columns: repeat(auto-fit, minmax(25em, 1fr));
}

.package {
    margin: 0 auto;
    /*filter: drop-shadow(0 1px 1px rgba(112, 40, 228, .05)) drop-shadow(0 2px 2px rgba(112, 40, 228, .05)) drop-shadow(0 4px 4px rgba(112, 40, 228, .05)) drop-shadow(0 8px 8px rgba(112, 40, 228, .05)) drop-shadow(0 16px 16px rgba(112, 40, 228, .05));*/
    width: 25em;
}

.package-background {
    background-color: #fff;
    padding-bottom: 10em;
    clip-path: polygon(50% 24.5px, 100% 0, 100% 100%, 0 95%, 0 0);
}

.buttonPurchase {
    cursor: pointer;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    bottom: 1em;
    display: inline-block;
    height: 2.5em;
    width: 2.5em;
    position: relative;
    font-weight: 300;
    line-height: 2.5em;
    font-size: 2.5em;
    text-decoration: none;
    border-radius: 100%;
    transition: background-color 200ms;
    color: #fefefe;
    background-color: #7028e4;
}

.buttonPurchase:hover {
    background-color: #8649E9;
}

.package p, h5 {
    margin: 0;
}

.package-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 250px;
    clip-path: polygon(0 20%, 100% 0%, 100% 80%, 0% 100%);
    background-color: #7028e4;
}

.package-header h5 {
    font-size: 2em;
}

.packageCurrency {
    text-transform: uppercase;
    font-weight: 300;
    color: #444;
    position: relative;
    bottom: 1.2em;
}

.packageInfo {
    display: block;
    margin: 1em 0;
    font-weight: 300;
}

.package-shape {
    position: absolute;
    width: 25em;
    clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 80%);
    height: 250px;
    background-color: #5C19C8;
}

.package-header h5 {
    margin: 0.3em 0;
    color: #fefefe;
}

.package-header p {
    color: #fdfdfd !important;
}

.packagePrice .dollar {
    position: relative;
    font-weight: 300;
    bottom: 1em;
    font-size: 2em;
}

.packagePrice .mainPrice {
    font-size: 4em;
}

.packagePrice .secondPrice {
    font-size: 2em;
    position: relative;
    bottom: 1em;
}

.packagePrice .permonth {
    font-weight: 300;
    position: relative;
    bottom: 0.7em;
    right: 0.2em;
}

.package-content p {
    font-weight: 500;
    color: #353535;
}

.line {
    height: 1px;
    width: 90%;
    margin: 2em auto;
    background-color: #ddd;
}

.line2 {
    height: 1px;
    width: 100%;
    margin-bottom: 2em;
    margin-top: 1em;
    margin-left: auto;
    margin-right: auto;
    background-color: #daccf2;
}

.lineSummary {
    height: 1px;
    width: 100%;
    margin-top: 1em;
    margin-bottom: 2em;
    background-color: #daccf2;
}

.lineTitle {
    color: #2a1352;
    text-transform: uppercase;
}

.lineP {
    margin-top: 0.5em;
    color: #38215f;
}

.notificationBox {
    right: 7em;

    position: relative;
    display: inline-block;
}

.notificationBox .notification-content {
    padding: 2em;
    display: block;
    position: absolute;
    background-color: #f9f9f9;
    width: 18em;
    margin-top: 1em;
    border-radius: 1em;
    min-height: 10em;
    border-bottom: 5px solid #7028e4;
}

.notificationBox .notification-content .box-title {


    margin-bottom: 1.5em;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;

}

.notificationBox .notification-content .box-title h5 {
    color: #111 !important;
    font-weight: 500;
    font-size: 1.3em;
    pointer-events: none;
}

.notificationBox .notification-content a {
    font-size: 0.9em !important;
    text-align: left;
}

.notificationBox .notification-content a h5 {
    font-weight: normal !important;
}

.notificationBox .notification-content a p {
    font-weight: lighter !important;
}

.notice-line {
    margin: 2em 0;
    padding: 1em;
    line-height: 3em;
    text-align: center;
    min-height: 3em;
    background-color: #8649e9;
    color: #f7f4fc;
    border-radius: 1em;
}

.notice-line p {
    margin: 0;
    line-height: 3em;
}

.title-controls {
    margin-top: 20em;
}

.title-control {
    margin: 0 auto;
    min-width: 0.5em;
    display: flex;
    max-width: 15em;
    min-height: 5em;
    border-radius: 2em;
    padding: 1.5em;
    background-color: #7028e4;
    grid-gap: 2em;
    transition: all 200ms;

}

.title-control:hover {
    background-color: #8649e9;
    box-shadow: 0 1px 1px rgba(112, 40, 228, 0.1), 0 2px 2px rgba(112, 40, 228, 0.1), 0 4px 4px rgba(112, 40, 228, 0.1), 0 8px 8px rgba(112, 40, 228, 0.1), 0 16px 16px rgba(112, 40, 228, 0.1), 0 32px 32px rgba(112, 40, 228, 0.1);
}

.title-control h5 {
    margin: 0 auto;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: normal;
    text-align: center;
}

.title-control p {
    margin: 2em auto;
    color: #fefefe;
    display: block;
}

#announcement {
    z-index: 5;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    position: fixed;
    justify-items: center;
    align-items: center;
    display: flex;
    background-color: rgba(0, 0, 0, 0.5);
    transition: opacity, transform 0.2s ease-out;
    visibility: hidden;
    opacity: 0;
}

.announcement-active {
    visibility: visible !important;
    opacity: 1 !important;
}

.announcement-box {
    grid-template-columns: 15em auto;
    border-radius: 0.5em;
    margin: 0 auto;
    overflow-y: auto;
    transition: opacity, transform 0.2s ease-out;
    max-width: 90%;
    width: 900px;
    padding: 3em 8em;
    background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(57,41,191,1) 0%, rgba(133,0,212,1) 100%);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    animation: gradient 8s ease infinite;
    background-size: 200%;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.announcement-box .announcement-title h1{
    font-size: 2em;
    margin: 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fdfdfd;
}

.announcement-box .announcement-title {
    margin-top: 2em;
    text-align: center;
}

.announcement-box .announcement-con {
    margin-top: 1em;
    text-align: center;
    color: #efefef;
}

.announcement-box .announcement-action {
    margin: 0 auto;
    text-align: center;
}


@media only screen and (max-width: 812px) {
    .header-space {
        display: none;
    }

    table tr:first-child {
        display: block !important;
    }

    table tr:last-child td:first-child {
        border-bottom-left-radius: 0;
    }

    table tr:last-child td:last-child {
        border-bottom-left-radius: 3em;
        border-bottom-right-radius: 3em;
    }

    table tr:nth-child(2) td:first-child {
        border-top-left-radius: 3em;
        border-top-right-radius: 3em;
    }

    table tr {
        display: block;
    }

    table td {
        display: block;
        text-align: right;
        padding: 1em 2em;
    }

    table th {
        display: none;
    }

    table td::before {
        /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }

    #wave {
        height: 70vw;
    }

    .content-svg {
        display: none;
    }

    html {
        font-size: 11px;
    }

    aside {
        transition: right 100ms;
        right: 100vw;
        position: fixed;
        width: 80%;
        height: 200vh;
        z-index: 99;
        background-color: #120723;
        top: -100vh;

    }

    .aside-content {
        transition: right 100ms;
        right: 100vw;
        overflow-y: scroll;
        z-index: 9999999;
        position: fixed;
        width: 80%;
    }

    .aside-content nav ul li a {
        color: #e5b2ca;
    }

    .aside-content-2 {
        transform: scale(0.8);
    }

    main {
        width: 100%;
    }

    .menu2 {
        display: inline-block !important;
    }

    .menu {
        display: inline-block !important;
    }

    nav ul li:hover {
        background-color: #f7f4fc;
        transition: background-color 150ms;
    }

    nav ul li a:hover,
    ul li a:focus {
        color: #04010a;
    }

    header {
        border-radius: 0;
        height: 100%;
        background: linear-gradient(180deg, rgba(112, 40, 228, 1) 0%, rgba(247, 244, 252, 1) 80%);
    }

    .auto-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .wrapper {
        max-width: 90%;
    }
}

@media only screen and (max-width: 1112px) and (min-width: 812px) {
    .title-control {
        width: 100%;
    }

    table tr:first-child {
        display: block !important;
    }

    table tr:last-child td:first-child {
        border-bottom-left-radius: 0;
    }

    table tr:last-child td:last-child {
        border-bottom-left-radius: 3em;
        border-bottom-right-radius: 3em;
    }

    table tr:nth-child(2) td:first-child {
        border-top-left-radius: 3em;
        border-top-right-radius: 3em;
    }

    table tr {
        display: block;
    }

    table td {
        display: block;
        text-align: right;
        padding: 1em 2em;
    }

    table th {
        display: none;
    }

    table td::before {
        /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }

    html {
        font-size: 12px;
    }
}