@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,500,700,700i');
body, html {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background: #f7f7f7;
}

#container {
    width: 100%;
    height: 100%;
}

#logo{
    height: 125px;
    background-image: url(/img/logo.png);
    background-size: 180px;
    background-repeat: no-repeat;
    background-position: center right+30px;
    background-color:white;
}

#header {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    z-index: 1;
    background-image: url('../img/header.jpeg');
}

#header #topspace{
    height: 0;   
}

#header #headertitle{
    background: rgba(13, 173, 43, 0.75);
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    font-size: 22px;
    color: white;
    margin-bottom: 15px;
    text-align: center;
}

#headerinner{
    width: 960px;
    margin: 0 auto;
}
#headerinner img{
    height: 55px;
    vertical-align: bottom;
    margin-right: 30px;
    float: left;
}
#headerinner span{
    float: right;
    padding: 12px 0px;
}

 #startbutton{
    background: #FF6800;
    width: 200px;
    text-align: center;
    display: block;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 16px;
    font-size: 22px;
    color: white;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    text-decoration: none;
}



#videoplayer{
    display: inline-block;
    vertical-align: top;
}

#header #startbutton::after{
    display: block;
    position: absolute;
    content: '';
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: contain;
    width: 13px;
    height: 18px;
    right: 17px;
    top: 24px;
    background-image: url(../img/arrow_more_white.png);
}

.clear{
    width: 100%;
    height: 1px;
}

#sixty img{
    max-width: 100%;
    width: 1000px;
    display: block;
    margin: 50px auto;
    box-sizing: border-box;
}

#content {
    width:100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

#content h1{
    color: #4D4D4D;
    font-size: 25px;
    font-weight: bold;
    border-bottom: 1px solid #4D4D4D;
    padding: 15px 0px;
}

#content p{
    color: #4D4D4D;  
}

#content img{
    width: 100%;    
    display: block;
    margin: 40px auto;
    box-sizing: border-box;
}

#guidelink{
    display: inline-block;
    vertical-align: top;
}

#content #guidelink img{
    margin:0;
    width: 474px;
    margin: 0;
    vertical-align: top;
    margin-right: 10px;
}

#photos{
    width: 100%;
    max-width: calc(1000px + 9px);
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    text-align: left;
}
.photo{
    display: inline-block;
    width: 89px;
    height: 89px;
    background: url(/img/photo.png);
    margin: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    background-size: contain !important;
    border: 1px solid #ededed;
    position: relative;
}


.photo.empty:hover::after {
    display: block;
    position: absolute;
    content: '';
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(/img/plusphoto.png);
    background-position: center;
    background-size: contain;
}

.photo.filled:hover::after{
    display: block;
    position: absolute;
    content: '';
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(/img/delphoto.png);
    background-position: center;
    background-size: contain;
}

.photo.supply:not(.selected):hover::after{
    display: block;
    position: absolute;
    content: '';
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(/img/plusphoto.png);
    background-position: center;
    background-size: contain;
}

.photo.supply.selected::after{
    display: block;
    position: absolute;
    content: '';
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(/img/addedphoto.png);
    background-position: center;
    background-size: contain;
}

.photo.supply.selected:hover::after{
    display: block;
    position: absolute;
    content: '';
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(/img/delphoto.png);
    background-position: center;
    background-size: contain;
}

.fileclick{    
    text-decoration: underline;
    cursor: pointer;
}

.blackoverlay{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.59);
    z-index: 2;
}

.blackoverlay #loading{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
}
.blackoverlay #loading img{
    width: 200px;
    margin-bottom: -40px;
}

.blackoverlay #loading p{
    text-align: center;
    margin: 0;
    color: white;
}

#cropbuttons{
    width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 0;
}

#cropbuttons #rotate_left,
#cropbuttons #rotate_right,
#cropbuttons #remove,
#cropbuttons #add,
#cropbuttons #prev,
#cropbuttons #empty,
#cropbuttons #next{
    display: inline-block;
    background: #0DAD2B;
    padding: 13px 0;
    width: 156px;
    text-align: center;
    color: white;
    margin: 5px;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-bottom: 15px;
    position: relative;
    padding-right: 35px;
}


#cropbuttons #prev{
    padding-right: 0;
    padding-left: 35px;
}

#cropbuttons #rotate_left::after,
#cropbuttons #rotate_right::after,
#cropbuttons #remove::after,
#cropbuttons #add::after,
#cropbuttons #prev::after,
#cropbuttons #empty::after,
#cropbuttons #next::after{
    display: block;
    position: absolute;
    content: '';
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: contain;
    width: 18px;
    height: 19px;
    right: 17px;
    top: 16px;
}

#cropbuttons #rotate_left::after{   
    background-image: url(../img/rot_right.png);
}
#cropbuttons #rotate_right::after{   
    background-image: url(../img/rot_left.png);
}
#cropbuttons #remove::after{   
    background-image: url(../img/remove.png);
}
#cropbuttons #next::after{   
    background-image: url(../img/arrow_more_white.png);
}
#cropbuttons #add.multi::after{   
    background-image: url(../img/arrow_more_white.png);
}
#cropbuttons #prev::after{   
    left: 17px;
    right: none;
    background-image: url(../img/arrow_back_white.png);
}
#cropbuttons #remove{
    background:red;
}

#cropbuttons #empty{    
    background: transparent;  
    color: black;
    padding-left:18px;
    padding-right:17px;
}

#cropbuttons #prev,
#cropbuttons #next{
    background: #FF6800;    
}

#cropbuttons #prev.inactive,
#cropbuttons #next.inactive{
    background: gray;  
    opacity: 0.5;  
}

#cropbuttons #add{    
    background: #FF6800;  
    background: #FF6800;
    width: 593px;
    padding: inherit;
    padding: 13px 0;  
}

#cropbuttons #add.multi{    
    background: #FF6800;
    background: #FF6800;
    width: 156px;
    padding: inherit;
    padding: 13px 0;
    padding-right: 35px;
}

#cropbuttons #add.hide{
    display: none;
} 

#order{
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    box-sizing: border-box;
}

#orderbutton{
    background: #FF6800;
    text-align: center;
    display: block;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 14px;
    font-size: 15px;
    color: white;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    float: right;

    padding-right: 40px;
}

#orderbutton::after{
    display: block;
    position: absolute;
    content: '';
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: contain;
    width: 13px;
    height: 15px;
    right: 15px;
    top: 17px;
    background-image: url(../img/arrow_more_white.png);
}

#backbutton{
    background: #FF6800;
    text-align: center;
    display: block;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 14px;
    font-size: 15px;
    color: white;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    text-decoration: none;
     float: left;
    padding-left: 40px;


}

#backbutton::after{
    display: block;
    position: absolute;
    content: '';
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: contain;
    width: 13px;
    height: 15px;
    left: 15px;
    top: 17px;
    background-image: url(../img/arrow_back_white.png);
}

form{
    max-width: 600px;
    margin: 0 auto;
    margin: 50px auto;
    margin-top: 20px;
}

form p{
    margin-bottom:50px;
}

form span{
    display: block;
    margin: 20px 0;
}

form label{    float: left;}
form input[type="text"]{       background: #e6e6e6;
    border: none;
    outline: none;
    width: calc(100% - 135px);
    float: right;
    padding: 7px;
    font-size: 15px;
    margin-bottom: 8px;
    box-sizing: border-box;
    padding-left: 30px;
}

form input[type="text"].plusarea, 
form input[type="text"].plusproject{
    width: calc(100% - 174px);
}
.plusareabutton,
.plusprojectbutton{
    display: inline-block;
    float: right;
    height: auto;
    vertical-align: top;
    margin: 0;
    padding: 5px 12px;
    background: #fe6901;
    margin-left: 5px;
    color: white;
    cursor: pointer;
}
.minusareabutton,
.minusprojectbutton{
    display: inline-block;
    float: right;
    height: auto;
    vertical-align: top;
    margin: 0;
    padding: 5px 12px;
    background: #fe6901;
    margin-right: 5px;
    color: white;
    cursor: pointer;
}
.clearboth{
    clear:both;
    height: 1px;
    width: 100%;

}

form select {
    background: #e6e6e6;
    border: none;
    outline: none;
    width: calc(100% - 135px);
    float: right;
    padding: 7px;
    font-size: 15px;
    margin-bottom: 8px;
    box-sizing: border-box;
    border: 2px solid #0DAD2B;
    border-radius: 0 !important;
    box-sizing: border-box;
    max-width: 100%;
    -webkit-appearance: none;
    color: white;
    background-image: url(../img/drop_icon.png);
    background-repeat: no-repeat;
    background-position: 99% 50%;
    background-size: 17px 20px;
    background-color: white;
    position: relative;
    width: auto;
    padding-right: 35px;
    background: #0DAD2B;
}

form textarea{
    background: #e6e6e6;
    border: none;
    outline: none;
    width: calc(100% - 100px);
    float: right;
    padding: 7px;
    font-size: 15px;
    margin-bottom: 8px;
    box-sizing: border-box;
    padding-left: 30px;
    height: 150px;
    resize: none;
}

#uploader{position: fixed;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.35);
    color: white;}

#uploader p{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
}

#content ul{
    padding: 0;
    padding-left: 20px;
}

#warning{
    background: white;
    width: 600px;
    padding: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    border-radius: 8px;
}

#warning #topline{    width: 100%;
    background: gainsboro;
    height: 31px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;}
#warning h2{color:#FF6800; margin-top:40px;}
#warning p{}
#warning #warn_cancel {
    background: #FF6800;
    text-align: center;
    display: block;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 14px 30px;
    font-size: 15px;
    color: white;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    margin: 5px;
    min-width: 120px;
}

#warning #warn_buttons{
    text-align: right
}
#warning #warn_next {
    background: #FF6800;
    text-align: center;
    display: block;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 14px 30px;
    font-size: 15px;
    color: white;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    margin: 5px;
    min-width: 120px;
    margin-right: 8px;
}

#warn_pics{}

#warn_pics img{
    width: 112px;
    margin: 8px;
    margin-left: 0px;
}

@media all and (max-width: 1015px) {
    #guidelink {
        display: block;
        vertical-align: top;
        margin:0 auto;
    }
    #content #guidelink img{
        display: block;
        vertical-align: top;
        margin:0 auto;
        margin-bottom: 10px;
        max-width: 100%;
    }
    #videoplayer {
        display: block;
        vertical-align: top;
        margin:0 auto;
    }
    #videoplayer iframe{
        display: block;
        vertical-align: top;
        margin:0 auto;
        max-width: 100%;
    }
}

.photocounter{
    width: 1000px;
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    padding-bottom: 0;
    position: relative;
    text-align: center;
}

#randomize{
    position: absolute;
    right: 18px;
    top: 7px;
    background: #FF6800;
    text-align: center;
    display: block;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 14px;
    font-size: 15px;
    color: white;
    margin-bottom: 15px;
    cursor: pointer;
    text-decoration: none;
    padding-right: 40px;
    width: auto;
    display: block;
}

#randomize::after {
    display: block;
    position: absolute;
    content: '';
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: contain;
    width: 22px;
    height: 18px;
    right: 9px;
    top: 17px;
    background-image: url(../img/randomize.png);
}

#delall{
    position: absolute;
    left: 18px;
    top: 7px;
    background: #FF6800;
    text-align: center;
    display: block;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 14px;
    font-size: 15px;
    color: white;
    margin-bottom: 15px;
    cursor: pointer;
    text-decoration: none;
    padding-left: 40px;
    width: auto;
    display: block;
}

#delall::after {
    display: block;
    position: absolute;
    content: '';
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: contain;
    width: 22px;
    height: 18px;
    left: 9px;
    top: 17px;
    background-image: url(../img/remove.png);
}