/* index COMMON CSS */


h1, h2, h3, h4, h5, h6, form {
    margin: 0;
    padding: 0;
    border: 0;
}

body {
    margin: 0;
    font-family: sans-serif;
    font-family: Helvetica;
}

#wrapper {
    min-height: calc(100vh - 250px);
    overflow: hidden;
    display: block;
    position: relative;
    padding-bottom: 250px;
}

#menu_wrapper {
    position: fixed;
    z-index: 10;
    top: 0;
    width: 100%;
    height: 60px;
}

#menu_wrapper a {
    float: left;
    height: 60px;
    line-height: 60px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    padding: 0px 20px;
    text-decoration: none;
}

#menu_wrapper a.main {
    font-weight: bold;
    font-size: 25px;
}

#menu_wrapper a.button {
}

#menu_wrapper a.controls {
    float: right;
    text-align: right;
    width: 20px;
    -webkit-transition: width 0.2s linear 0s, background-color 0.0s linear 0s;
 /* Safari */
    transition: width 0.2s linear 0s, background-color 0.0s linear 0s;
}

#menu_wrapper a.controls img {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    margin-top: 20px;
}

#menu_wrapper a.controls img.controls_img_hover {
    opacity: 1.0;
    -webkit-animation: spin 4s linear infinite;
    -moz-animation: spin 4s linear infinite;
    animation: spin 4s linear infinite;
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

#menu_wrapper a.hover {
    background-color: #ddd;
    box-shadow: -5px 5px 5px 0 rgba(0,0,0,0.2);
    width: 360px;
}

#menu_wrapper a.button:hover {
    background-color: #eee;
    color: black;
    box-shadow: 0 2px gray;
}

#menu_wrapper a.main:hover {
}

#menu_wrapper #dropdown {
    position: relative;
}

#menu_wrapper #dropdown-content {
    display: block;
    opacity: 0;
    position: absolute;
    top: 60px;
    right: -400px;
    padding-bottom: 10px;
    min-width: 200px;
    width: 400px;
    background-color: #ddd;
    z-index: 1;
    transition: transform 0.2s linear 0.0s;
}

#menu_wrapper #dropdown-content a {
    float: none;
    color: black;
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: left;
    height: 35px;
    line-height: 35px;
}

#menu_wrapper #dropdown-content b {
    color: black;
    padding-top: 15px;
    display: block;
    color: #333;
}

#menu_wrapper #dropdown-content a:hover {
    background-color: #f1f1f1;
    box-shadow: -5px 0px 5px 0px #333;
}

#menu_reviews_button {
    display: none;
}

#main_wrapper {
    padding-top: 100px;
}

#footer_wrapper {
    margin: 0px;
    border: 0px;
    text-align: right;
    font-size: 10px;
    padding-top: 150px;
    padding-bottom: 50px;
    padding-right: 50px;
    padding-left: 50px;
    position: absolute;
    bottom: 0;
    width: calc(100% - 100px);
    z-index: 0;
}

#footer_wrapper .author {
    float: left;
}

#footer_wrapper .author a {
    text-decoration: none;
}

#footer_wrapper .version {
    float: right;
}

.shadow {
    box-shadow: 0px 5px 10px -10px #000000;
}

button {
    cursor: pointer;
    margin: 5px;
    padding: 10px;
    color: black;
    background-color: #eee;
    border: 2px;
    border-style: solid;
    border-radius: 3px;
    border-color: gray;
    height: 40px;
}

button:hover {
    background-color: #ddd;
}

button:disabled {
    color: gray;
}

button:disabled:hover {
    background-color: lightgray;
}

.button--delete {
    width: 90%;
    padding: 5px;
    background-color: gray;
    border-color: gray;
    opacity: 0.2;
}

.button--delete:hover {
    background-color: #922d2d;
    border-color: #922d2d;
    box-shadow: 0 1px 2px 0 rgba(146,45,45,0.451), 0 1px 3px 1px rgba(145,45,45,0.302);
}

.button--delete:disabled:hover {
    background-color: lightgray;
}

.button--delete:disabled:hover {
    background-color: pink;
}

.button--submit {
    color: white;
    border-color: gray;
    background-color: gray;
    font-weight: bold;
    width: 125px;
}

.button--submit:hover {
    background-color: #297be6;
    border-color: #1a73e8;
    box-shadow: 0 1px 2px 0 rgba(26,115,232,0.451), 0 1px 3px 1px rgba(26,115,232,0.302);
}

.button--done {
    width: 90%;
    padding: 5px;
    background-color: gray;
    border-color: gray;
    opacity: 0.2;
}

.button--done:hover {
    background-color: #bba118;
    border-color: #bba118;
    box-shadow: 0 1px 2px 0 rgba(187,161,24,0.451), 0 1px 3px 1px rgba(187,161,24,0.302);
}

.login_form {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 25px;
    transform: translate(-50%,-50%);
    z-index: 100;
}

.login_form__header {
    text-align: left;
    text-indent: 33px;
    margin-bottom: 20px;
}

.mobile_title {
    display: none;
}

label {
    display: inline-block;
    width: 300px;
    text-align: left;
    font-size: 14px;
    margin-top: 10px;
    color: #888;
}

input[type="text"], input[type="password"] {
    border-radius: 3px;
    height: 40px;
    padding: 5px 10px;
    width: 300px;
    min-width: 50px;
}

.show_password {
    width: 300px;
    color: #666;
    cursor: pointer;
    text-align: right;
    font-size: 14px;
    padding-right: 15px;
    white-space: nowrap;
    margin-top: 5px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.show_password:hover {
    text-decoration: underline;
}

.error {
    width: 300px;
    color: #1a73e8;
    text-indent: 1000%;
    white-space: nowrap;
    margin-top: 10px;
    margin-bottom: 15px;
}

button {
    cursor: pointer;
    margin: 5px;
    padding: 10px;
    color: black;
    background-color: #eee;
    border: 2px;
    border-style: solid;
    border-radius: 3px;
    border-color: gray;
    height: 40px;
}

.button--submit {
    color: white;
    border-color: gray;
    background-color: gray;
    font-weight: bold;
    width: 125px;
}

.button--submit:hover {
    background-color: #297be6;
    border-color: #1a73e8;
    box-shadow: 0 1px 2px 0 rgba(26,115,232,0.451), 0 1px 3px 1px rgba(26,115,232,0.302);
}

.error--active {
    text-indent: 0;
}

.button--submit {
    width: 300px;
    background-color: #1a73e8;
    border-color: #1a73e8;
}

.button--submit:hover {
    background-color: #297be6;
}

#menu_wrapper a.controls {
    display: none;
}











