/**************************************
  GENERAL
**************************************/

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'source-sans-pro', sans-serif;
  background: #47b1e0;
  color: #B8CFFF;
  background: rgba(26, 159, 218, 0.37);
  color: #47b1e0;
  background: #f9f9f9;
  color: #272727;
  font-size: 19px;
}

.container {
  margin: 0 auto;
  max-width: 1150px;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

h1 {
  margin-top: 3rem;
  font-size: 3.5em;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 300;
}

.job-maker {
    width: 68%;
    float: left;
    padding-left: 4%;
    padding-right: 2%;
}

.job-card {
    width: 30%;
    float: left;
    padding: 30px;
    background-color: #ffffff;
    min-height: 300px;
    margin-left: 2%;
    border: 2px solid #47b1e0;
    font-family: "source-code-pro", monospace;
    transition: .4s all;
    position: relative;
    background: rgba(26, 159, 218, 0.2);
    background: -webkit-linear-gradient(legacy-direction(35deg), rgba(26, 159, 218, 0.2) 0%, rgba(255,255,255,0) 65%);
    background: -webkit-linear-gradient(55deg, rgba(26, 159, 218, 0.2) 0%, rgba(255,255,255,0) 65%);
    background: linear-gradient(35deg, rgba(26, 159, 218, 0.2) 0%, rgba(255,255,255,0) 65%);
}

.job-card:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0);
    -webkit-transition: background .4s ease;
    transition: background .4s ease;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.job-card:hover:after {
    background: rgba(26, 159, 218, 0.2);
}

.job-card.activated {
  cursor: pointer;
}

.job-card.activated.copied {
  background-color: rgba(64, 183, 113, .40);
  border: 2px solid #40b771;
}

.job-card.activated.copied:hover:after {
  background: rgba(64, 183, 113, .40);
}

.client-ctn {
    font-weight: 600;
    padding-bottom: 15px;
    color: rgba(26, 159, 218, 0.8);
}

.job-card.activated.copied .client-ctn {
  color: #40b771;
}

.job-card.activated.copied .job-info {
  color: #272727;
}

.job-desc {
    font-size: 15px;
}

.footer {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
}

.moyr {
    display: inline-block;
    float: left;
}

.copydog {
    display: inline-block;
    float: right;
    transition: all .2s; 
    opacity: 0;
}


.job-card.activated .copydog {
    opacity: 1;
}

#copycat::-moz-selection {
  background: transparent;
}

#copycat::selection {
  background: transparent;
}

/**************************************
   FORM STYLES
**************************************/

*:focus {
  outline: none;
}

textarea:focus, input:focus{
  outline: none;
}

#form-ctn {
  display: block;
  position: relative;
  min-height: 200px;
}

.form-group {
  display: block;
  float: left;
  width: 100%;
  padding-bottom: 20px;
}

.form-group.button {
  display: block;
  margin-top: 2rem;
  clear: both;
}

.form-group.job-name {
    min-width: 500px;
}

label {
  display: block;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 7px;
  letter-spacing: 1px;
}

input.jobname {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 18px;
  color: #272727;
  width: 100%;
  height: 40px;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-bottom: 2px solid #47b1e0;
}

.select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 19px;
  color: #fff;
  width: 280px;
  height: 40px;
}

.select-styled {
  position: absolute;
  line-height: 1.5;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: transparent;
  padding: 4px 15px;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  border: 2px solid #47b1e0;
  color: #272727;
}

.select-styled:after {
  content: "";
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-color: #47b1e0 transparent transparent transparent;
  position: absolute;
  top: 16px;
  right: 10px;
}

.select-styled:hover {
  background-color: #47b1e0;
  color: #fff;
}

.select-styled:hover:after {
  border-color: #ffffff transparent transparent transparent; 
}

.select-styled:active, .select-styled.active {
  background-color: #47b1e0;
  color: #fff;
}

.select-styled:active:after, .select-styled.active:after {
  top: 9px;
  border-color: transparent transparent #ffffff transparent;
}

.select-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #47b1e0;
  max-height: 400px;
  overflow: hidden;
  overflow-y: scroll;
}

.select-options li {
  margin: 0;
  padding: 12px 0;
  text-indent: 17px;
  border-top: 1px solid #47b1e0;
  -moz-transition: all 0.15s;
  -o-transition: all 0.15s;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}

.select-options li:hover {
  color: #47b1e0;
  background: #fff;
}



.select-options li[rel="hide"] {
  display: none;
}


.job-output {
    display: block;
    clear: both;
    max-width: 600px;
}

.job-info, .label {
  display: inline-block;
  padding: 5px 0;
}

.job-info {
    width: 100%;
    font-size: 28px;
    color: #47b1e0;
}

.job-output .label {
    width: 100%;
    display: block;
    text-transform: uppercase;
    font-size: 12px;
    padding-bottom: 7px;
    letter-spacing: 1px;
}

.label {
  width: 25%;
}

.submit-btn {
    line-height: 1.5;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #c1c1c1;
    padding: 8px 15px 6px;
    border: 0;
    color: #ffffff;
    font-size: 15px;
    font-family: 'source-sans-pro', sans-serif;
    text-transform: uppercase;
    transition: background-color 250ms;
    letter-spacing: 1px;
    cursor: not-allowed;
}

.submit-btn.enabled {
  background-color: #47b1e0;
  cursor: pointer;
}




.job-output .label {
    width: 100%;
}

#copycat {
    display: inline-block;
}

.hidden {
  opacity: 0;
  position: absolute;
  left: -200%;
}


/**************************************
   JOB STYLES
**************************************/


.mix.clientcard {
    width: 100%;
    display: block;
    position: relative;
    margin-bottom: 40px;
}

.job-list-filter {
    width: 25%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: #ccc;
    padding: 30px;
    overflow-y: scroll;
}

.rightside {
    position: relative;
    width: 70%;
    float: right;
}

.joblist h1 {
    text-align: left;
}

.clientcard .name {
    font-family: "source-code-pro";
    font-weight: bold;
    display: block;
    color: #333333;
}

.clientcard .job, .clientcard .number {
    display: inline-block;
}


a.job-finder {
    position: absolute;
    bottom: 30px;
    left: 30px;
    line-height: 1.5;
    background-color: #c1c1c1;
    padding: 8px 15px 6px;
    border: 0;
    color: #ffffff;
    font-size: 15px;
    font-family: 'source-sans-pro', sans-serif;
    text-transform: uppercase;
    transition: background-color 250ms;
    letter-spacing: 1px;
    transition: .2s;
    cursor: pointer;
    text-decoration: none;
    background: rgba(26, 159, 218, 0.9);
    background: -webkit-linear-gradient(legacy-direction(35deg), rgba(26, 159, 218, 0.9) 0%, rgba(26, 159, 218, 0.5) 65%);
    background: -webkit-linear-gradient(55deg, rgba(26, 159, 218, 0.9) 0%, rgba(26, 159, 218, 0.5) 65%);
    background: linear-gradient(35deg, rgba(26, 159, 218, 0.9) 0%, rgba(26, 159, 218, 0.5) 65%);
}

a.job-finder:hover {
    background: -webkit-linear-gradient(legacy-direction(35deg), rgba(26, 159, 218, 0.9) 0%, rgba(26, 159, 218, 0.7) 95%);
    background: -webkit-linear-gradient(55deg, rgba(26, 159, 218, 0.9) 0%, rgba(26, 159, 218, 0.7) 95%);
    background: linear-gradient(35deg, rgba(26, 159, 218, 0.9) 0%, rgba(26, 159, 218, 0.7) 95%);
}

.controls button {
    width: 100%;
    text-align: left;
    background: none;
    border: 0;
    font-size: 15px;
    color: #272727;
    font-size: 15px;
    padding: 10px 0;
    cursor: pointer;
}