html,body{
    margin: 0px;
    padding: 0px;
    background-color: #eee;
    width: 100%;
    height: 100%;
}
main{
    width: 50%;
    height: 500px;
    padding-top: 5%;
    margin: auto;
    border-radius: 5px;
}
.appcontainer{
    width: 100%;
    padding: 10px;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 20px 3px rgba(0,0,0,0.46);
    -moz-box-shadow: 0px 0px 20px 3px rgba(0,0,0,0.46);
    -ms-box-shadow: 0px 0px 20px 3px rgba(0,0,0,0.46);
    -o-box-shadow: 0px 0px 20px 3px rgba(0,0,0,0.46);
    box-shadow: 0px 0px 20px 3px rgba(0,0,0,0.46);
}
.loginform{
    width: 50%;
    position: relative;
    margin: auto;
}
.phases{
    width: 100%;
    position: relative;
    margin: auto;
}
.designs{
    width: 100%;
    height: 270px;
    overflow: scroll;
}
.design{
    width: 32%;
    height: 165px;
    position: relative;
}
.pointer{
    cursor: pointer;
}
.uploadnewform{
    display: none;
}
.overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.3);
}
.genratepreview{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    background-color: rgba(0,0,0,0.6);
    -moz-transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}
.genratepreviewcanvasarea{
    width: 100%;
    max-height: 500px;
    overflow: scroll;
    position: relative;
}
.generatrepreviewcanvas{
    
}
.scroll{
    height: 300px;
    overflow: scroll;
}
.scrollc{
    height: 500px;
    overflow: scroll;
}
.row{
    margin-left: 0px;
    width: 99%;
}
.page-header-custom{
    padding-bottom: 9px;
    border-bottom: 1px solid #eee;
}
label{
    color: #72777c;
}
.clear{
    clear: both;
}
.hide{
    display: none;
}
.show{
    display: inline-block;
}
.loader {
  border: 1px solid #f3f3f3;
  border-radius: 50%;
  border-top: 1px solid #333;
  width: 20px;
  height: 20px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
  margin-right: 5px;
}

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