body{

background-color: #F7F7F7;

}

#tabs{border:1px solid #ccc;border-top: 0px;background-color: white;-webkit-box-shadow: 0 0 8px 5px rgba(0,0,0,.2);-moz-box-shadow: 0 0 8px 5px rgba(0,0,0,.2);box-shadow: 0 2px 5px rgba(0,0,0,.2);}

#tabs .nav-tabs {

border-bottom: 0px;

}

#tabs .nav-tabs .nav-link:not(active) {
    border: 0px solid transparent;
    border-top: 4.2px solid transparent;
    border-bottom: 4px solid transparent;
    font-size: 11px;
    padding: 1rem 1.5rem;
    color: #999;
    text-transform: uppercase;
    font-weight: 600;
}


#tabs .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    border:0px;
    border-bottom: 3px solid #28a745 !important;
    color:black !important;
    border-radius: 0px;
}


.breadcrumb {
  background: none;
  /*centering*/
  /*display: inline-block;*/
  overflow: hidden;
  border-radius: 5px;
  counter-reset: flag;
  padding: 15px 0;
}

.breadcrumb a {
  text-decoration: none;
  outline: none;
  display: block;
  float: left;
  font-size: 0.7rem;
  line-height: 13px;
  color: #5f5f5f;
  padding: 5px 10px 0 60px;
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
}


.breadcrumb a:first-child {
  padding-left: 46px;
  border-radius: 5px 0 0 5px; /*to match with the parent's radius*/
  text-transform: uppercase;
}
.breadcrumb a:first-child:before {
  left: 14px;
}
.breadcrumb a:last-child {
  border-radius: 0 5px 5px 0; /*this was to prevent glitches on hover*/
  padding-right: 20px;
}

.breadcrumb a:after {
    content: '\f054';
    font-family: "FontAwesome";
    position: absolute;
    right: -17px;
    font-size: 13px;
    right: -16px;
    width: 15px;
    top: 12px;
    height: 15px;
    z-index: 1;
}
/*we dont need an arrow after the last link*/
.breadcrumb a:last-child:after {
  content: none;
}
/*we will use the :before element to show numbers*/

.breadcrumb a:before {
  color: white;
  text-align: center;
  content: counter(flag);
  counter-increment: flag;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  line-height: 20px;
  margin: 8px 0;
  position: absolute;
  top: 0;
  left: 30px;
  background: #ddd;
  font-size: 14px;
}

.breadcrumb a.active:before {

  background: black;

}

.proposal-form .form-group{

  margin-bottom: 20px;

}

.proposal-form .form-control,
.table .form-control {

/* border-radius: 0px; */
}

select.form-control:not([size]):not([multiple]) {
    height: calc(2.5rem + 2px);
    font-size: 12px;
    text-transform: uppercase;
}

.proposal-form textarea[name="proposal_title"]{

font-size: 30px;

border-radius: 5px;

line-height: 40px;

cursor: auto;
}

.form-control:focus {
    border-color: #ffc107;
    box-shadow: none;
}

.proposal-form .form-group .col-md-3 {
  text-align: right;
  padding-top: 10px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
}

.table .form-control {

border:0px;
font-size: 14px;
resize: none;

}

.table .form-control:focus {
  border-color: none;
  outline: none;
  box-shadow: none;
}

.table th,
.table td{font-size: 14px;vertical-align: inherit !important;font-weight: normal !important;color: #62646a;}

.table thead tr{

background: #F7F7F7;

}

.table thead tr th {font-family: "Graphik Webfont", -apple-system, BlinkMacSystemFont, "Roboto", "Droid Sans", "Segoe UI", "Helvetica", Arial, sans-serif;}

.table tbody tr td:first-child{
  width: 150px;
  background: #F7F7F7;

}

.table .delete-attribute{
    cursor: pointer;
    position: absolute;
    display: -webkit-box;
    margin-top: -30px;
    margin-left: 173px;
    color: black;
}


.table .form-control:focus+i {

display: none;

}

.proposal-form .requirements {

    background: #F7F7F7;
    padding: 10px;
    border: 1px solid #ccc;

}

.line-height-normal{

line-height: 1.7;

}

.gallery .pic {
    margin-top: 11px;
    width: 100%;
    border:1px solid #ccc;
    align-self: center;
    text-align: center;
    padding: 30px 0px;
    display: block;
    text-transform: uppercase;
    color: #848EA1;
    font-size: 12px;
    background: #eeeeee;
    cursor: pointer;
    max-width: 100%;
}

.gallery .pic:hover {
    color: #f56400;
}

.gallery .add-video {
    width: 100% !important;
    display: block;
}

.gallery .img {
    margin-top: 11px;
    width: 100%;
    border:1px solid #ccc;
    color: #848EA1;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;

}
.gallery .img:nth-child(3n) {
  margin-right: 0;
}
.gallery .img span {
  display: none;
  text-transform: capitalize;
  z-index: 2;
}
.gallery .img::after {
  content: '';
  width: 100%;
  height: 100%;
  transition: opacity .1s ease-in;
  border-radius: 4px;
  opacity: 0;
  position: absolute;
}
.gallery .img:hover::after {
  display: block;
  background-color: #000;
  opacity: .5;
}
.gallery .img:hover span {
  display: block;
  position: relative;
  left: -75px;
  color: #fff;
  font-size: 15px;
}

.gallery .img:hover img {
  position: relative;
  left: 29px;
}

.gallery .pic .fa-trash{

  cursor: pointer;
  position: absolute;
  display: -webkit-box;
  margin-top: -60px;
  /* margin-left: 289px;*/
  left: 710px;

}