﻿/*----------Background Styling----------*/
body {
    /*Grey Background*/
    /*   background-color: #efefef;*/

    background-image: url('~/Systems/Images/25101.jpg');
    background-size: cover;
    background-attachment: fixed;
}

/*----------Controls & Pages Styling----------*/
.HolderBodyControls {
    margin-left: 30px;
    margin-right: 30px;
    align-content: center;
    height: auto;
    text-align: center
}
/*----------Page Sizing----------*/
@media screen and (max-width: 900px) {
    .HolderBodyControls {
        min-width: 900px;
    }
}

@media screen and (max-width: 1200px) {
    .HolderBodyControls {
        min-width: 1200px;
    }
}

@media screen and (max-width: 800px) {
    .HolderBodyControls {
        min-width: 800px;
    }
}

@media screen and (max-width: 700px) {
    .HolderBodyControls {
        min-width: 700px;
    }
}

@media screen and (max-width: 1000px) {
    .HolderBodyControls {
        min-width: 1000px;
    }
}

/*----------Buttons Animation----------*/
.animatedButtons {
    width: fit-content;
    align-content: center;
    height: auto;
    text-align: center;
    animation-name: animateIn;
    animation-duration: 400ms;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
}

@keyframes animateIn {
    0% {
        opacity: 0;
        transform: scale(0.90) translateY(-3px) translateX(-3px);
    }

    100% {
        opacity: 1;
    }
}

.smallbuttonssize {
    width: 48px;
}
/*----------Legacy CSS----------*/
.module-border-wrap {
    max-width: 250px;
    padding: 1rem;
    position: relative;
    background: linear-gradient(to right, red, purple);
    padding: 3px;
}

.module {
    background: #222;
    color: white;
    padding: 2rem;
}

.dropdown {
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
    z-index: 10000;
}


.card {
    background: inherit;
    color: black;
}
/*----------Top menubar Styling----------*/
@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
    .blurred-container-top {
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(2px);
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
        border-top-right-radius: 10px;
        border-top-left-radius: 10px;
        background-color: #ffffffa2;
        
    }
}

@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
    .blurred-container {
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(2px);
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
        border-top-right-radius: 10px;
        border-top-left-radius: 10px;
        background-color: rgba(0, 0, 0, .3);
    }
}

@supports not ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
    .blurred-container {
        background-color: rgba(0, 0, 0, .3);
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
        border-top-right-radius: 10px;
        border-top-left-radius: 10px;
    }
}


#progressBackgroundFilter {
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    overflow: hidden;
    padding: 0;
    margin: 0;
    background-color: #000;
    filter: alpha(opacity=50);
    opacity: 0.5;
    z-index: 1000;
    display: none;
    height: 100%;
}

.background_transperant {
    background-color: transparent;
}

.hidePopup {
    visibility: hidden;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

/*------------BUTTONS----------*/
.Default {
    width: 110px;
    height: 110px;
    /* background styles */
    position: relative;
    display: inline-grid;
    padding: 20px 20px;
    margin-bottom: 10px;
    background-color: orange; /*for compatibility with older browsers*/
    outline-style: solid;
    outline-color: #ffffff54;
    background: radial-gradient(circle at 70px 160px, rgba(247,67,6,1) 0%, rgba(247,76,18,1) 51%, rgba(251,199,180,1) 93%, rgba(251,203,185,1) 100%);
    border-color: #f07335;
    border-radius: 12px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 0px 0px 0px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

    .Default:hover {
        background: linear-gradient(190deg, #f45924, #ffffff);
        background-size: 400% 400%;
        -webkit-animation: AnimationName 1s ease;
        -moz-animation: AnimationName 1s ease;
        -o-animation: AnimationName 1s ease;
        animation: AnimationName 1s ease;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        -webkit-animation-iteration-count: 1
    }

    .Default:active {
        box-shadow: #9d4f34 0 3px 7px inset;
        transform: translateY(2px);
    }

@-webkit-keyframes AnimationName {
    0% {
        background-position: 87% 0%
    }

    50% {
        background-position: 14% 100%
    }

    100% {
        background-position: 0% 100%
    }
}

@-moz-keyframes AnimationName {
    0% {
        background-position: 87% 0%
    }

    50% {
        background-position: 14% 100%
    }

    100% {
        background-position: 0% 100%
    }
}

@-o-keyframes AnimationName {
    0% {
        background-position: 87% 0%
    }

    50% {
        background-position: 14% 100%
    }

    100% {
        background-position: 0% 100%
    }
}

@keyframes AnimationName {
    0% {
        background-position: 87% 0%
    }

    50% {
        background-position: 14% 100%
    }

    100% {
        background-position: 0% 100%
    }
}

.Orange {
    width: 110px;
    height: 110px;
    /* background styles */
    position: relative;
    display: inline-grid;
    padding: 20px 20px;
    background-color: orange; /*for compatibility with older browsers*/
    margin-bottom: 10px;
    border: 1px solid;
    background: radial-gradient(circle at 70px 160px,rgba(1,130,73,0.8969316242121849) 31%, rgba(1,130,73,0.8969316242121849) 69%, rgba(22,140,88,0.41794002757352944) 88%, rgba(26,142,91,0.5299848455007004) 94%);
    border-color: #f07335;
    /* text styles */
    border-radius: 12px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

    .Orange:hover {
        background: radial-gradient(circle at 70px 160px,rgba(1,130,73,0.6) 31%, rgba(1,130,73,0.4) 69%, rgba(22,140,88,0.2) 88%, rgba(26,142,91,0.3) 94%);
    }

    .Orange:active {
        box-shadow: #236f11 0 3px 7px inset;
        transform: translateY(2px);
    }

/*LIGHT BLUE*/
.IOS {
    width: 110px;
    height: 110px;
    /* background styles */
    position: relative;
    display: inline-grid;
    padding: 20px 20px;
    margin-bottom: 10px;
    background-color: lightblue;
    border: 1px solid;
    background: radial-gradient(circle at top center, rgba(220,234,255,1) 19%, rgba(196,220,252,1) 37%, rgba(196,220,252,1) 100%);
    border-color: #f07335;
    /* text styles */
    border-radius: 12px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

    .IOS:hover {
        background: linear-gradient(rgba(255,255,255,1) 19%, rgba(196,220,252,1) 92%, rgba(196,220,252,1) 100%);
    }

    .IOS:active {
        box-shadow: rgba(10, 37, 64, 0.35) 0 3px 7px inset;
        transform: translateY(2px);
    }

/*DARK BLUE */
.Material {
    width: 110px;
    height: 110px;
    /* background styles */
    position: relative;
    display: inline-grid;
    padding: 20px 20px;
    margin-bottom: 10px;
    background-color: lightblue;
    border: 1px solid;
    background: radial-gradient(circle at top center, rgba(75,137,172,0.3227019323354342) 0%, rgba(173,213,236,0.7932901676295518) 20%, rgba(75,137,172,0.7484722404586834) 100%);
    border-color: #f07335;
    /* text styles */
    border-radius: 12px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

    .Material:hover {
        background: linear-gradient(#ffffff,#98d6ff);
    }

    .Material:active {
        box-shadow: rgb(68, 68, 68) 0 3px 7px inset;
        transform: translateY(2px);
    }

/*.Olive {*/
/* background styles */
/*width: 110px;
    height: 110px;
    position: relative;
    display: inline-grid;
    padding: 15px 25px;
    background-color: lightblue;
    border: 1px solid;
    background: radial-gradient(circle at top center, rgba(229,235,203,1) 0%, rgba(248,254,221,1) 26%, rgba(249,255,222,1) 29%, rgba(248,254,220,1) 33%, rgba(195,205,139,1) 100%);
    border-color: #f07335;*/
/* text styles */
/*border-radius: 6px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

    .Olive:hover {
        background: linear-gradient(180deg, rgba(255,255,255,0.9221417082457983) 0%, rgba(147,171,83,0.6112173384978992) 23%, rgba(121,162,17,0.7932901676295518) 100%);
    }*/

/*DARK THEME*/
.Express {
    width: 110px;
    height: 110px;
    position: relative;
    display: inline-grid;
    margin-bottom: 10px;
    padding: 20px 20px;
    background-color: lightblue;
    border: 1px solid;
    background: radial-gradient(circle at top center, rgba(217,217,217,1) 0%, rgba(177,177,177,1) 46%, rgba(137,137,137,1) 100%);
    border-color: #f07335;
    border-radius: 12px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

    .Express:hover {
        background: linear-gradient(0deg, rgba(208,203,203,0.2946907278536415) 0%, rgba(153,153,153,0.5860072544642857) 40%, rgba(137,137,137,1) 100%);
    }

    .Express:active {
        box-shadow: rgb(0, 0, 0) 0 3px 7px inset;
        transform: translateY(2px);
    }

.Dark {
    /* background styles */
    width: 110px;
    height: 110px;
    position: relative;
    display: inline-grid;
    padding: 20px 20px;
    margin-bottom: 10px;
    border-color: #7c7c7c;
    background: transparent;
    color: #fff;
    border-radius: 5px;
    background-image: -webkit-repeating-linear-gradient(left, hsla(0,0%,100%,0) 0%, hsla(0,0%,100%,0) 6%, hsla(0,0%,100%, .1) 7.5%), -webkit-repeating-linear-gradient(left, hsla(0,0%, 0%,0) 0%, hsla(0,0%, 0%,0) 4%, hsla(0,0%, 0%,.03) 4.5%), -webkit-repeating-linear-gradient(left, hsla(0,0%,100%,0) 0%, hsla(0,0%,100%,0) 1.2%, hsla(0,0%,100%,.15) 2.2%), linear-gradient(180deg, hsl(0,0%,78%) 0%, hsl(0,0%,90%) 47%, hsl(0,0%,78%) 53%, hsl(0,0%,70%)100%);
    /* text styles */
    border-radius: 12px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

    .Dark:hover {
        background: linear-gradient(0deg, rgba(208,203,203,0.2946907278536415) 0%, rgba(153,153,153,0.5860072544642857) 40%, rgba(137,137,137,1) 100%);
    }

.DisabledButton {
    /* background styles */
    width: 110px;
    height: 110px;
    position: relative;
    display: inline-grid;
    padding: 20px 20px;
    border-color: #7c7c7c;
    background: transparent;
    margin-bottom: 10px;
    color: #fff;
    border-radius: 5px;
    background: radial-gradient(circle at 70px 160px, rgba(255,255,255,0.19945263261554624) 0%, rgba(216,223,228,0.2106571144082633) 4%, rgba(158,165,170,0.3086963300945378) 22%, rgba(122,128,133,0.4151389071253502) 30%, rgba(118,124,129,0.9445506718312325) 100%);
    /* text styles */
    border-radius: 12px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
