*{font-family: Calibri, sans-serif;}


.card {
  padding: 10px;
  margin: 15px;
  border: ridge rgba(200,200,200,0.7) 1px;
  border-radius: 10px;
  box-shadow: 3px 5px 3px 1px lightslategrey; 
}

#avatarDiv {
  display: flex;
  flex-wrap: wrap;
}

body { 
  padding-top: 0;
  background-color: whitesmoke; 
}

[type=radio] { 
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.imgAvatar {
    position: absolute;
    margin: auto;
    top: 0; left: 0; bottom: 0; right: 0;
    width: 100%;
    height: 100%;
    border-radius: 1px;
    box-shadow: 0 0 0 4px #fff;
    cursor: pointer;
    z-index: 20;
    animation:        unselected 0.3s cubic-bezier(0.250, 0.100, 0.250, 1.000);
    -o-animation:     unselected 0.3s cubic-bezier(0.250, 0.100, 0.250, 1.000);
    -ms-animation:    unselected 0.3s cubic-bezier(0.250, 0.100, 0.250, 1.000);
    -moz-animation:   unselected 0.3s cubic-bezier(0.250, 0.100, 0.250, 1.000);
    -webkit-animation: unselected 0.3s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  
  @keyframes unselected {
    0% { box-shadow: 0 0 0 4px #00c09e; }
    50% { transform: scale(0.5); opacity: 0.8; box-shadow: 0 0 0 4px #fff; }
    80%,100% { width: 100%; height: 100%; box-shadow: 0 0 0 4px #fff; }
  }
  @-o-keyframes unselected {
    0% { box-shadow: 0 0 0 4px #00c09e; }
    50% { -o-transform: scale(0.5); opacity: 0.8; box-shadow: 0 0 0 4px #fff; }
    80%,100% { width: 100%; height: 100%; box-shadow: 0 0 0 4px #fff; }
  }
  @-ms-keyframes unselected {
    0% { box-shadow: 0 0 0 4px #00c09e; }
    50% { width: 45%; height: 45%; opacity: 0.8; box-shadow: 0 0 0 4px #fff; }
    80%,100% { width: 100%; height: 100%; box-shadow: 0 0 0 4px #fff; }
  }
  @-moz-keyframes unselected {
    0% { box-shadow: 0 0 0 4px #00c09e; }
    50% { -moz-transform: scale(0.5); opacity: 0.8; box-shadow: 0 0 0 4px #fff; }
    80%,100% { width: 100%; height: 100%; box-shadow: 0 0 0 4px #fff; }
  }
  @-webkit-keyframes unselected {
    0% { box-shadow: 0 0 0 4px #00c09e; }
    50% { -webkit-transform: scale(0.5); opacity: 0.8; box-shadow: 0 0 0 4px #fff; }
    80%,100% { width: 100%; height: 100%; box-shadow: 0 0 0 4px #fff; }
  }
  
.imageli {
    position: relative;
    margin: 10px;
    width: 157px;
    height: 157px;
    float: left;
    z-index: 10;
  }
  
.imageli:before {
    content: "\2714";
    display: block;
    position: absolute;
    margin: auto;
    top: 0; left: 0; bottom: 0; right: 0;
    width: 157px;
    height: 157px;
    line-height: 40px;
    background:  #00c09e;
    border-radius: 50px;
    color: #fff;
    text-align: center;
    font-size: 16px;
    z-index: 0;
    opacity: 0;
    transition:         0.3s linear;
    -o-transition:      0.3s linear;
    -ms-transition:     0.3s linear;
    -moz-transition:    0.3s linear;
    -webkit-transition: 0.3s linear;
    -o-user-select:      none;
    -moz-user-select:    none;
    -webkit-user-select: none;
    cursor: pointer;
  }
  
  .imageli.selected:before {
    opacity: 1;
  }

  .imageli {
      list-style: none;
  }
  
  /* img selection */
  
  .imageli.selected img {
    box-shadow: 0 0 0 4px #00c09e;
    animation:        selected 0.3s cubic-bezier(0.250, 0.100, 0.250, 1.000);
    -o-animation:     selected 0.3s cubic-bezier(0.250, 0.100, 0.250, 1.000);
    -ms-animation:    selected 0.3s cubic-bezier(0.250, 0.100, 0.250, 1.000);
    -moz-animation:   selected 0.3s cubic-bezier(0.250, 0.100, 0.250, 1.000);
    -webkit-animation: selected 0.3s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  }
  
  @keyframes selected {
    0% { border-color: #fff; }
    50% { transform: scale(0.5); opacity: 0.8; box-shadow: 0 0 0 4px #00c09e; }
    80%,100% { width: 100%; height: 100%; box-shadow: 0 0 0 4px #00c09e; }
  }
  @-o-keyframes selected {
    0% { box-shadow: 0 0 0 4px #fff; }
    50% { -o-transform: scale(0.5); opacity: 0.8; box-shadow: 0 0 0 4px #00c09e; }
    80%,100% { width: 100%; height: 100%; box-shadow: 0 0 0 4px #00c09e; }
  }
  @-ms-keyframes selected {
    0% { box-shadow: 0 0 0 4px #fff; }
    50% { width: 45%; height: 45%; opacity: 0.8; box-shadow: 0 0 0 4px #00c09e; }
    80%,100% { width: 100%; height: 100%; box-shadow: 0 0 0 4px #00c09e; }
  }
  @-moz-keyframes selected {
    0% { box-shadow: 0 0 0 4px #fff; }
    50% { -moz-transform: scale(0.5); opacity: 0.8; box-shadow: 0 0 0 4px #00c09e; }
    80%,100% { width: 100%; height: 100%; box-shadow: 0 0 0 4px #00c09e; }
  }
  @-webkit-keyframes selected {
    0% { box-shadow: 0 0 0 4px #fff; }
    50% { -webkit-transform: scale(0.5); opacity: 0.8; box-shadow: 0 0 0 4px #00c09e; }
    80%,100% { width: 100%; height: 100%; box-shadow: 0 0 0 4px #00c09e; }
  }

  .img-responsive {
    margin: 0 auto;
}
/* styles.css*/
html,

body {
	height: 100%;
}

img {
    max-width: 100%;
}
#cover {
    background: #222 url("/images/cover.jpg") center center no-repeat;
    background-size: cover;
    color: white;
    height: 40%;
    text-align: center;
    display:flex;
    align-items: center;
}
#cover-caption {
   margin: auto;
   
   
}

#container {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.container {
  margin-bottom: 20px;
}

.section-content {
    padding: 5rem 0;
}
.section-content h3 {
    margin-left: 20px;
}
.lead 
 {
    margin-left: 20px;
}

.btn-secondary {
  color: #ccc;
  background-color: transparent;
  border-color: #ccc;
    margin-right: 10%;
   
}
.btn-secondary:hover {
  color: #ccc;
  background-color:transparent;
  border-color: #adadad;
}
.img-fluid {
    height: 960px;
}

.form-inline {
    margin-left: 18%;
 
}
.card-img-top {
    height: 300px;
}

#about {
    background: url('http://i.huffpost.com/gen/1349209/images/o-CAREER-WOMEN-facebook.jpg') center center no-repeat;
    background-size: cover;
}

.about-text {
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 1.875rem;
}
.btn-secondary {
    color: white;
   margin: 10px;
}

h5 {
    margin: 15px;
    padding-left: 5px;
}

#news h3 {
    margin-left: 20px;
    margin-top: 10px;
}

#footer-main {
    background: #222;
    color: white;
    font-size: 0.8rem;
    padding: 2.5rem 0;
    
}
.list-group-item {
    background: #232323;
    border-color: #232323;
}

#footer-main a {
  color: #a3a3c2;
}

#opComment, #replyBody {
  background: white;
  border: inset 1px rgba(200,200,200,0.7);
  border-radius: 5px;
  padding: 3px;
}
