html, body {
    height: 100%;
}
body {
    background-image: url("../img/bg_main.png");
    background-size: cover;
    background-attachment: fixed;
}
.wrapper {
    width: 1000px;
    margin: 0 auto 35px;
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
}
.header {
    height: 106px;
    background-image: url("../img/bg_header.png");
    text-align: center;
}
.slider {
    height: 200px;
    overflow: hidden;
}
.wrapper > h1 {
    color: #3c3c3c;
    font-family: "PT Sans Narrow", sans-serif;
    font-size: 22px;
    font-weight: bold;
    margin-left: 22px;
    margin-top: 30px;
    padding-bottom: 4px;
}
.wrapper > h2 {
    color: #626262;
    font-family: "PT Sans", sans-serif;
    font-size: 16px;
    font-weight: bold;
    margin-left: 22px;
    margin-top: -15px;
}
.controls {
    background-color: #f6f6f6;
    height: 105px;
    text-align: center;
    white-space: nowrap;
}
.shadow {
    height: 38px;
    background-image: url("../img/bg_shadow.png");
    background-repeat: no-repeat;
}
.controls > .item {
    display: inline-block;
    zoom: 1;
    *display: none;
    vertical-align: top;
    padding: 8px;
    padding-right: 4px;
    text-align: left;
}
.controls > .item:last-child {
    padding-right: 0px;
}
.controls > .item h1 {
    color: #404040;
    font-family: "PT Sans", sans-serif;
    font-size: 14px;
    margin-bottom: 10px;
}
.controls > .item h1 > span {
    color: #ffffff;
    font-family: "PT Sans", sans-serif;
    font-size: 14px;
    display: inline-block;
    background-color: #b23636;
    width: 18px;
    height: 18px;
    border-radius: 15px;
    text-align: center;
    margin-right: 8px;
    line-height: 18px;
}
.controls > .item > button {
    width: 45px;
    height: 30px;
    border: 1px solid #d6d6d6;
    background-color: #ffffff;
    border-radius: 3px;
    text-align: center;
    padding: 0px;
    margin: 0px;
    float: left;
    position: relative;
    top: -2px;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
    color: #999999;
    font-family: "PT Sans", sans-serif;
    font-size: 14px;
    outline: none;
    font-weight: bold;
    cursor: pointer;

    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}
.controls > .item > button:hover {
    top: -6px;
}
.controls > .item > button[selected] {
    top: 0px;
    box-shadow: none;
    color: #a03030;
}
.controls > .item input[type="radio"] {
    display: none;
}
.controls > .item input[type="radio"] + label {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: #ec5786;
    cursor: pointer;
}
.controls > .item input[type="radio"] + label::before {
    content: "";
    display: inline-block;
    height: 18px;
    width: 18px;
    margin: 0 5px 0 0;
    background-repeat: no-repeat;
    position: relative;
    top: 3px;
}
.controls > .item input[type="radio"] + label::before {
    background-image: url("../img/radio_disabled.png");
}
.controls > .item input[type="radio"]:checked + label::before {
    background-image: url("../img/radio_enabled.png");
}
.controls > .item .color {
    height: 30px!important;
    width: 177px!important;
    border: 2px solid #d6d6d6;
    background-color: #798a91;
    border-radius: 3px;
    cursor: pointer;
    text-align: center;
    line-height: 26px;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
}
.controls > .item .color span {
    color: #ffffff;
    font-size: 15px;
    font-weight: bold;
    font-family: "PT Sans";
    border-bottom: 1px dotted;
}
.controls > .item select {
    color: #999999;
    font-size: 15px;
    font-weight: bold;
    font-family: "PT Sans";
    height: 30px;
    outline: none;
    width: 100px;
    border-radius: 3px;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
}
.view {
    min-height: 500px;
}
.view .left {
    width: 250px;
    float: left;
    text-align: center;
}
.view .left.sticky {
    z-index: 2;
    position: fixed;
    top: 30px;
}
.view .left > div.item {
    width: 168px;
    height: 40px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 14px;
    cursor: pointer;
}
.view .left > div.item[disabled="disabled"] {
    cursor: default!important;
}
.view .left > div.item img {
    margin-top: 9px;
    vertical-align: middle;
    margin-left: -14px;
}
.view .left > div.item span {
    position: relative;
    top: 6px;
    font-family: "PT Sans", sans-serif;
    color: #ffffff;
}
.view .left > div.shadow-small {
    width: 221px;
    height: 28px;
    background-image: url("../img/bg_shadow_small.png");
    display: inline-block;
    margin-top: 4px;
    margin-bottom: -4px;
}
.view .left > div.edit {
    background-color: #3baedc;
    border-bottom: 1px solid #006b96;
}
.view .left > div.edit:hover {
    background-color: #55BFE9;
}
.view .left > div.edit[disabled="disabled"] {
    background-color: #A8E6FF;
    cursor: default;
}
.view .left > div.edit[disabled="disabled"]:hover {
    background-color: #A8E6FF;
    cursor: default;
}
.view .left > div.remove {
    background-color: #dc4452;
    border-bottom: 1px solid #c52836;
}
.view .left > div.remove[disabled="disabled"] {
    background-color: #FFBDC3;
    cursor: default;
}
.view .left > div.remove[disabled="disabled"]:hover {
    background-color: #FFBDC3;
    cursor: default;
}
.view .left > div.remove:hover {
    background-color: #EC606D;
}
.view .left > div.erase {
    background-color: #656c78;
    border-bottom: 1px solid #09232d;
}
.view .left > div.erase:hover {
    background-color: #898F99;
}
.view .left > div.eye {
    background-color: #f6bd36;
    border-bottom: 1px solid #d58c00;
}
.view .left > div.eye:hover {
    background-color: #FFDA83;
}
.view .left > div.print {
    background-color: #8bc34c;
    border-bottom: 1px solid #6fa733;
}
.view .left > div.print:hover {
    background-color: #A5DF65;
}
.view .right {
    margin: 0 10px 50px 250px;
}
.view .right .photo {
    background-color: #f6f6f6;
    border-radius: 6px;
}
.view .right .photo .inner {
    padding: 20px;
}
.view .right .photo .inner p {
    font-family: "PT Sans", sans-serif;
    color: #000000;
    font-size: 16px;
    margin: 0px;
}
.view .right .photo .inner p span {
    font-weight: bold;
}
.view .right .photo .inner h2 {
    font-weight: bold;
    font-family: "PT Sans", sans-serif;
    color: #000000;
    margin: 5px 0px;
    font-size: 16px;
}
.view .right .photo .container {
    width: 626px;
    min-height: 600px;
    padding: 10px;
    border: 3px dashed #b7bac0;
    border-radius: 6px;
}
.footer {
    height: 45px;
    background-color: #7d7d7d;
}
.footer p {
    color: #ffffff;
    font-family: "PT Sans", sans-serif;
    padding: 13px;
    padding-left: 35px;
}
.clear {
    clear: both;
    height: 1px;
}
/*overwrite*/
.simply-scroll {
    position: relative;
    top: 0px;
}
#colorSelector {
    background: #798a91;
    position: static;
}
.wrap {
    margin: 0px!important;
}
.view .margin.right {
    margin-left: auto;
    margin-bottom: auto;
}