body {
    background-color: #fafafa;
    color: #414141;
    font-family: 'helvetica neue', 'helvetica', 'arial', 'tahoma', 'sans-serif';
    font-size: 16px;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    border: none;
}
 
.wrapper {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow-y: auto;
}
 
.container {
    width: 100%;
    padding: 0 10px 10px 10px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
 
.top {
    width: 100%;
}
 
.logo {
    width: 208px;
    height: 40px;
    background-image: url(../images/editor-logo.png);
    display: inline-block;
}
 
.profile {
    position: absolute;
    height: 40px;
    top: 0;
    right: 70px;
    cursor: pointer;
}
 
.profile .image {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 0;
    right: 0;
    border: 1px solid rgb(150, 144, 141);
    background-size: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
 
.profile .text {
    position: absolute;
    font-size: 20px;
    top: 10px;
    right: 50px;
    color: rgb(150, 144, 141);
}
 
.profile:hover .image {
    border: 1px solid rgb(145,196,67);
}
 
.profile:hover .text {
    color: rgb(145,196,67);
}
 
.close {
    width: 40px;
    height: 40px;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/close.png);
    border-radius: 10px;
    cursor: pointer;
}
 
.gray {
    color: #ffffff;
    background-color: rgb(150,144,141);
}
.gray:hover, .gray:focus {
    color: #ffffff;
    background-color: rgb(169,165,170);
}
.gray:active {
    color: #ffffff;
    background-color: rgb(150,144,141);
}
 
.top .close {
    position: absolute;
    top: 0;
    right: 10px;
}
 
.content {
    width: 100%;
}
 
input {
    font-family: 'helvetica neue', 'helvetica', 'arial', 'tahoma', 'sans-serif';
    font-size: 16px;
}
 
input[type="text"] {
    background-color: rgb(255, 255, 255);
    padding: 5px;
    outline: none;
    border: 2px solid rgb(200, 200, 200);
    box-shadow: none;
}
 
input[type="text"]:focus {
    background-color: rgb(255, 255, 255);
    border: 2px solid rgb(145,196,67);
    box-shadow: inset 0 0 3px rgb(150, 150, 150);
    outline:  none;
}
 
textarea {
    font-family: 'helvetica neue', 'helvetica', 'arial', 'tahoma', 'sans-serif';
    font-size: 16px;
    padding: 5px;
    outline: none;
    border: 2px solid rgb(200, 200, 200);
    box-shadow: none;
    background-color: rgb(255, 255, 255);
    resize: vertical;
}
 
textarea:focus {
    background-color: rgb(255, 255, 255);
    border: 2px solid rgb(145,196,67);
    box-shadow: inset 0 0 3px rgb(150, 150, 150);
    outline:  none;
}
 
ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
 
li {
    position: relative;
}
 
.section label {
    width: 90px;
    display: inline-block;
}
 
.section input {
    width: 625px;
    display: inline-block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
 
.section textarea {
    width: 720px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    margin-top: 5px;
}
 
.section textarea.larger {
    height: 100px;
}
 
.section .spaced {
    margin-top: 3px;
}
 
.section .header {
    width: 100%;
    border-bottom: 1px solid rgb(200, 200, 200);
    padding-bottom: 3px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
    height: 5px;
}
 
.section .item {
    margin-left: 20px;
    margin-bottom: 10px;
}
 
.section .new {
    margin-top: 20px;
}
 
.section input.time {
    width: 140px;
    margin-right: 5px;
}
 
.section input.amount {
    width: 140px;
    margin-right: 5px;
}
 
.button {
    display: inline-block;
    outline: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    line-height: 40px;
    border-radius: 10px;
    padding: 0px 14px;
    vertical-align: middle;
    text-align: center;
    height: 40px;
    border: none;
}
 
.green {
    color: #ffffff;
    background-color: rgb(145,196,67);    
}
 
.green:hover, .green:focus {
    color: #ffffff;
    background-color: rgb(138, 179, 73);
}
 
.green:active {
    color: #ffffff;
    background-color: rgb(136,212,76);    
}
 
.white {
    background-color: rgb(255,255,255)
}
 
.white:hover, .white:focus {
    background-color: rgb(240,240,240);
}
 
.white:active {
    background-color: rgb(240,240,240);
}
 
.center {
    text-align: center;
}
 
.section input[type="button"] {
    width: 100px;
    margin: 0 5px;
}
 
.box-shadow {
    -webkit-box-shadow: rgba(34, 25, 25, 0.4) 0 1px 3px;
    -moz-box-shadow: rgba(34, 25, 25, 0.4) 0 1px 3px;
    box-shadow: 0 1px 3px rgba(34, 25, 25, 0.4);
}
 
#summary {
    width: 625px;
    margin-left: 94px;
}
 
#summary-label {
    position: absolute;
    top: 12px;
    left: 0;
}
 
.section .item.right-label label {
    text-align: right;
    width: 80px;
    margin-right: 10px;
}
 
#prep-time, #servings {
    margin-left: 5px;
}
 
.shorter {
    width: 470px !important;
}
 
.picture-container {
    position: absolute;
    top: 0;
    right: 20px;
    width: 126px;
    height: 126px;
    border: 2px solid rgb(200, 200, 200);
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    background-color: rgb(250, 250, 250);
    padding: 1px;
}
 
.picture {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
 
#picture {
    top: 0;
    right: 20px;
    position: absolute;
    width: 126px !important;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    margin: 0;
    z-index: 100;
}
 
.error {
    background-color: rgb(255, 204, 204) !important;
}
 
.error-list {
    color: rgb(255, 0, 0);
}
 
.error-ul {
    list-style-type: disc;
    padding-left: 40px;
}
 
.error-ul li {
    margin-bottom: 10px;
    cursor: pointer;
}
 
.error-ul li:hover {
    color: rgb(255, 0, 0);
}
 
iframe {
    width: 0;
    height: 0;
    border: none;
    padding: 0;
    margin: 0;
    position: absolute;
    left: -9999px;
}
 
.profile #signout {
    position: absolute;
    top: 0;
    right: 0;
}
 
 
.working {
    height: 40px;
    width: 200px;
    display: inline-block;
    position: relative;
}
 
.working .working-image {
    height: 40px;
    width: 40px;
    background-image: url(../images/working.gif);
    background-size: contain;
    position: absolute;
    left: 0;
    top: 0;
}
 
.working .working-text {
    height: 40px;
    line-height: 40px;
    position: absolute;
    left: 55px;
    top: 0;
}