* {
    /*background-color: rgba(0,0,0,0.1);*/
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: Gilroy, Inziu Iosevka SC, sans-serif;
    -webkit-font-smoothing: antialiased;
    transition: all 1s;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    touch-action: manipulation;
    -ms-touch-action: manipulation;
}

*::selection {
    background-color: #222;
    color: #EEE;
}


.vertical-center-container {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.gradient-1 {
    background: -moz-linear-gradient(45deg, #6428cc 0%, #e87cf4 100%);
    background: -webkit-linear-gradient(45deg, #6428cc 0%,#e87cf4 100%);
    background: linear-gradient(45deg, #6428cc 0%,#e87cf4 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6428cc', endColorstr='#e87cf4',GradientType=1 );
}

.gradient-2 {
    background: #24bf86;
    background: -moz-linear-gradient(45deg, #24bf86 1%, #0e5860 100%);
    background: -webkit-linear-gradient(45deg, #24bf86 1%,#0e5860 100%);
    background: linear-gradient(45deg, #24bf86 1%,#0e5860 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#24bf86', endColorstr='#0e5860',GradientType=1 );
}

.gradient-3 {
    background: #3a3a3a;
    background: -moz-linear-gradient(45deg, #3a3a3a 0%, #395a93 100%);
    background: -webkit-linear-gradient(45deg, #3a3a3a 0%,#395a93 100%);
    background: linear-gradient(45deg, #3a3a3a 0%,#395a93 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3a3a3a', endColorstr='#395a93',GradientType=1 );
}

.truncate {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#loading-foreground {
    background-color: #111;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 131071;
    pointer-events: none;
}

#loader-container {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    margin-top: 46vh;

}

#loader-self {
    height: 100%;
    width: 100%;
}

.indi-panel {
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 131072;
    background-color: rgba(255,255,255,0.97);
    opacity: 0;
}

.p-heading {
    display: block;
    margin-top: 220px;
}

.p-content {
    font-size: 50px;
    margin: 90px auto;
    text-align: center;
    color: #222;
}

.p-footer {
    display: block;
    margin-top: 90px;
}