
/**************** utilities ****************/
.top-buffer { margin-top:20px; }

/**************** user image card **************/
.card. .avatar {
  position: relative;
  top: -50px;
  margin-bottom: -50px;
}

.card.imageCard .avatar img {
  width: 150px;
  height: 150px;
  max-width: 150px;
  max-height: 150px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 5px solid rgba(255,255,255,0.5);
}

.card.imageCard {
  position: relative;
  padding-top: 0;
  overflow: hidden;
  text-align: center;
  background-color: rgba(214, 224, 226, 0.2);
}

.card.imageCard .cardheader {
  background: url("http://localhost:3000/images/treesBackgound.jpeg");
  background-size: cover;
  height: 135px;
}

.card.imageCard .avatar {
  position: relative;
  top: -50px;
  margin-bottom: -50px;
}



.card.imageCard .info .title {
  margin-bottom: 4px;
  font-size: 24px;
  line-height: 1;
  color: #262626;
  vertical-align: middle;
}

.card.imageCard .info .desc {
  overflow: hidden;
  font-size: 12px;
  line-height: 20px;
  color: #737373;
  text-overflow: ellipsis;
}

.card.imageCard .bottom {
  padding: 0 20px;
  margin-bottom: 17px;
}

/* style for dynamic text Area */
/* the styles for 'txta' are applied to both the textarea and the hidden clone */
/* these must be the same for both */
.txta {
  width: 100%;
  max-width: 500px;
  min-height: 100px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  overflow: hidden;
  line-height: 1.4;
}

.modal-full {
  min-width: 80%;
  margin-left: 80;
}


.sr-header__logo {
  background-image: var(--logo-image);
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
}

.sr-thumb__logo {
  background-image: var(--logo-dark);
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
}
:root {
  --logo-image: url('../images/logo.png');
  --logo-dark: url('../images/logo_dark.png')
}

/* style for star ratings */
.rating {
  float:left;
  width:300px;
}
.rating span { float:right; position:relative; }
.rating span input {
  position:absolute;
  top:0px;
  left:0px;
  opacity:0;
}
.rating span label {
  display:inline-block;
  width:30px;
  height:30px;
  text-align:center;
  color:#FFF;
  background:#ccc;
  font-size:30px;
  margin-right:2px;
  line-height:30px;
  border-radius:50%;
  -webkit-border-radius:50%;
}
.rating span:hover ~ span label,
.rating span:hover label,
.rating span.checked label,
.rating span.checked ~ span label {
  background:#F90;
  color:#FFF;
}
