﻿html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

*, *:before, *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

body {
    height: 100%;
    width: 100%;
    /*overflow: hidden;*/
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    position: relative;
}

main {
    height: 100%;
    width: 100%;
}

#Main-Container {
    position: relative;
    background-color: #E5E5E5;
    padding: 90px 275px;
    height: 100%;
    /*Copied background from web aca*/
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#eeeeee+0,cccccc+100 */
    background: #DDDDDD; /* Old browsers */
    background: -moz-linear-gradient(top, #DDDDDD 0%, #EFEFEF 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#DDDDDD), color-stop(100%,#EFEFEF)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #DDDDDD 0%,#EFEFEF 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #DDDDDD 0%,#EFEFEF 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #DDDDDD 0%,#EFEFEF 100%); /* IE10+ */
    background: linear-gradient(to bottom, #DDDDDD 0%,#EFEFEF 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#DDDDDD', endColorstr='#EFEFEF',GradientType=0 ); /* IE6-9 */
}

#Main-Container-LoggedIn {
    position: relative;
    background-color: #E5E5E5;
    padding: 90px 225px;
    height: 100%;
    /*Copied background from web aca*/
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#eeeeee+0,cccccc+100 */
    background: #DDDDDD; /* Old browsers */
    background: -moz-linear-gradient(top, #DDDDDD 0%, #EFEFEF 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#DDDDDD), color-stop(100%,#EFEFEF)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #DDDDDD 0%,#EFEFEF 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #DDDDDD 0%,#EFEFEF 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #DDDDDD 0%,#EFEFEF 100%); /* IE10+ */
    background: linear-gradient(to bottom, #DDDDDD 0%,#EFEFEF 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#DDDDDD', endColorstr='#EFEFEF',GradientType=0 ); /* IE6-9 */
}

/*media queries, https://css-tricks.com/css-media-queries/ */
@media screen and (max-width: 1100px) {
    #Main-Container {
        padding: 90px 50px;
    }

    #Main-Container-LoggedIn {
        padding: 90px 50px;
    }
}

/*When the window height is resized to 900px or lower, the vertical scrollbar is enabled and the page's main container height becomes fixed instead of a percent.*/
/*This keeps the page layout from breaking when the window is resized.*/
@media screen and (max-height: 900px) {
    html {
        overflow-y: scroll;
    }

    #Main-Container {
        height: 900px;
    }

    #Main-Container-LoggedIn {
        height: 900px;
    }
}

.DragAndDrop-Panel {
    position: relative;
    background: white;
    margin: 10px;
    padding: 10px 0px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 5px 13px 30px #666666
}

.Main-Panel {
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    background-color: white;
    padding: 15px 15px;
    margin: 10px 0 0 0;
    width: 100%;
    height: 100%;
    min-width: 804px;
    position: relative;
    box-shadow: 5px 13px 30px #666666;
}


.Panel-UpperSection {
    width: 100%;
    height: 90%;
}

.Panel-LowerSection {
    width: 100%;
    height: 10%;
}

.Panel-UpperSection-Column1 {
    float: left;
    width: 12%;
    height: 100%;
}

.Panel-UpperSection-Column1-LoggedIn {
    float: left;
    width: 11%;
    height: 100%;
}

.Panel-UpperSection-Column2 {
    float: left;
    width: 42%;
    height: 100%;
    padding-left: 60px;
}

.Panel-UpperSection-Column2-LoggedIn {
    float: left;
    width: 38%;
    height: 100%;
    padding-left: 60px;
}

.Panel-UpperSection-Column3 {
    float: left;
    width: 46%;
    height: 100%;
    padding-left: 15px;
}

.Panel-UpperSection-Column3-LoggedIn {
    float: left;
    width: 33%;
    height: 100%;
    padding-left: 15px;
}

.Panel-UpperSection-Column4 {
    float: left;
    width: 18%;
    height: 100%;
    padding-left: 15px;
}

.Panel-UpperSection-DropZone {
    position: absolute;
    background: darkgray;
    opacity: 0.001;
    width: 98%;
    height: 86.8%;
    border: dashed black;
    border-radius: 20px;
    z-index: 1;
}

    .Panel-UpperSection-DropZone i {
        width: initial;
        display: block;
        position: absolute;
        height: inherit;
        font-size: 100px;
        margin: 20% 47% 20% 47%;
        pointer-events: none;
    }

.Orange-Button {
    margin: 0;
    border: 0;
    outline: none;
    padding: 0;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 700;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    padding: 10px 20px;
    background-color: #F57720;
    color: #FFF;
}

    .Orange-Button:hover {
        background-color: #ED6504;
    }

    .Orange-Button.disabled {
        background-color: #D3D3D3; /*#3D3D3D;*/
        color: #FFF;
        cursor: default;
    }

        .Orange-Button.disabled:hover {
            background-color: #D3D3D3; /*#313131;*/
        }

/*modified from https://codepen.io/noob460/pen/qBVNVYO */
.Orange-Button-Animated {
    outline: none;
    border: none;
    position: relative; /*necessary for the animation to show*/
    background: #F57720;
    z-index: 0;
    overflow: hidden;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 700;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    padding: 10px 20px;
    color: #FFF;
}

    .Orange-Button-Animated::before {
        content: "";
        position: absolute; /*necessary for the animation to show*/
        width: 100%;
        height: 100%;
        bottom: 0;
        left: 0;
        background: #008896;
        z-index: -2;
        transform: scaleY(0);
        transform-origin: bottom;
        transition: transform 300ms 0.1s;
    }

    .Orange-Button-Animated:hover:before {
        transform: scaleY(1);
        transition: transform 300ms;
    }

    .Orange-Button-Animated.disabled {
        background-color: #D3D3D3; /*#3D3D3D;*/
        color: #FFF;
        cursor: default;
    }

        .Orange-Button-Animated.disabled:hover {
            background-color: #D3D3D3; /*#313131;*/
        }

        .Orange-Button-Animated.disabled::before {
            content: none;
        }

        .Orange-Button-Animated.disabled:hover:before {
        }