
@keyframes Gradient {
0% {
    background-position: 0% 50%;
}
50% {
    background-position: 100% 50%;
}
100% {
    background-position: 0% 50%;
}
}
.loading .entry-content div {
  display: block;
}
.loading p, .loading .post-meta, .loading .entry-title, .loading .sub-title, .loading .author, .loading .cover-img, .loading h1, .loading h2, .loading h3 {
  background: linear-gradient(90deg, #EFEFEF, #DDD, #EFEFEF);
  background-size: 400% 400%;
  animation: Gradient 3s ease infinite;
  min-height: 2em;
}
.loading h1, .loading h2, .loading h3 {
  min-height: 1em;
}
.loading .cover-img {
  min-height: 400px;
}
.loading .post.card, .loading .post-item.card {
  background: linear-gradient(90deg, #EFEFEF, #DDD, #EFEFEF);
  background-size: 400% 400%;
  animation: Gradient 3s ease infinite;
}
.loading .post.card .post-thumbnail img, .loading .post-item.card .post-thumbnail img {
    display: none;
}
.loading .post.card .post-meta, .loading .post-item.card .post-meta {
    min-height: 27px;
    background: linear-gradient(90deg, #EFEFEF, #DDD, #EFEFEF);
    background-size: 400% 400%;
    animation: Gradient 3s ease infinite;
}
.loading .post.card .entry-title, .loading .post-item.card .entry-title {
    min-height: 54px;
    background: linear-gradient(90deg, #EFEFEF, #DDD, #EFEFEF);
    background-size: 400% 400%;
    animation: Gradient 3s ease infinite;
}
.loading .post.card .post-excerpt, .loading .post-item.card .post-excerpt {
    min-height: 27px;
    background: linear-gradient(90deg, #EFEFEF, #DDD, #EFEFEF);
    background-size: 400% 400%;
    animation: Gradient 3s ease infinite;
}

/*
  Color Scheme
*/
.profile-panel {
  background-size: cover;
  background-color: #000;
  background-position: center;
  height: calc(100vw * 2 / 9);
  max-height: 320px;
  position: relative;
  z-index: 1;
  display: flex;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.profile-panel.profile-edit::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: rgba(0, 0, 0, 0.3);
}
.profile-panel .profile-wrapper {
    position: relative;
    width: 100%;
}
.profile-panel .profile-info {
    width: 50%;
    display: flex;
    flex-direction: row;
    position: relative;
    z-index: 3;
    color: #2f3542;
    position: absolute;
    left: 50px;
    bottom: -60px;
}
.profile-panel .profile-info .profile-avatar {
      width: 180px;
      height: 180px;
      position: relative;
      border-radius: 50%;
      overflow: hidden;
      background-color: #ced6e0;
      border: 4px solid #fff;
}
.profile-panel .profile-info .profile-avatar img {
        width: 180px;
        height: 180px;
        border-radius: 50%;
}
.profile-panel .profile-info .profile-avatar .edit-avatar {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.3);
        color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
}
.profile-panel .profile-info .profile-avatar .edit-avatar:hover {
          background: rgba(0, 0, 0, 0.6);
}
.profile-panel .profile-info .profile-avatar .edit-avatar span {
          display: block;
          text-align: center;
          user-select: none;
}
.profile-panel .profile-info .profile-avatar .edit-avatar span:first-of-type {
            font-size: 24px;
}
.profile-panel .profile-info .profile-meta {
      flex: 1;
      display: flex;
      flex-direction: column;
      color: #fff;
      margin-top: 40px;
      padding-left: 20px;
}
.profile-panel .profile-info .profile-meta h2 {
        font-size: 24px;
        line-height: 1em;
        font-family: "Roboto", sans-serif;
        font-weight: 500;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
}
.profile-panel .profile-info .profile-meta h2 span.badge {
          width: 20px;
          height: 20px;
          line-height: 20px;
          margin-left: 8px;
          padding: 0;
          text-align: center;
          border-radius: 10px;
          background: #1266f1;
}
.profile-panel .edit-cover-btn {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    z-index: 3;
    outline: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: rgba(0, 0, 0, 0.3);
}
.profile-panel .edit-cover-btn:hover {
      background: rgba(0, 0, 0, 0.6);
}
.profile-panel .edit-cover-btn span:first-of-type {
      font-size: 24px;
}
.profile-menu {
  background: #fff;
}
.profile-menu .menu-wrapper {
    display: flex;
    justify-content: space-between;
}
.profile-menu .btn-primary {
    margin-top: 30px;
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    background: transparent;
    border-color: #1266f1;
    color: #1266f1;
}
.profile-menu .btn-primary:hover {
      background: #1266f1;
      color: #fff;
      box-shadow: 0 10px 15px #ced6e0;
}
.menu-items {
  padding-left: 210px;
  list-style: none;
  float: left;
  position: relative;
  z-index: 5;
}
.menu-items li {
    display: inline-block;
    margin-right: 30px;
    font-size: 14px;
    text-transform: uppercase;
}
.menu-items li:last-of-type {
      margin-right: 0;
}
.menu-items li a {
      display: block;
      padding: 0;
      line-height: 100px;
      color: #57606f;
      cursor: pointer;
      position: relative;
}
.menu-items li a:hover {
        color: #1266f1;
}
.menu-items li a::before {
        content: "";
        height: 2px;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #1266f1;
        -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transition: -webkit-transform 250ms ease;
        -o-transition: transform 250ms ease;
        transition: transform 250ms ease;
        transition: transform 250ms ease,-webkit-transform 250ms ease;
}
.menu-items li a.selected {
        color: #1266f1;
}
.menu-items li a.selected::before {
          -webkit-transform: scaleX(1);
          -ms-transform: scaleX(1);
          transform: scaleX(1);
}
.account-panel {
  padding: 60px 15px;
}
@media (max-width: 768px) {
.account-panel {
      padding: 30px 0;
}
}
.account-panel .form-group {
    margin-bottom: 30px;
}
.account-panel .avatar-field {
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ced6e0;
}
.account-panel .avatar-field .avatar-img {
      width: 100px;
      height: 100px;
}
.account-panel .avatar-field .avatar-img img {
        width: 100px;
        height: 100px;
        border-radius: 50px;
        background: #fff;
}
.account-panel .avatar-field .avatar-info {
      padding-left: 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
}
.account-panel .avatar-field .avatar-info h3 {
        color: #57606f;
        font-family: sans-serif;
        font-size: 12px;
        font-weight: normal;
        text-transform: uppercase;
        margin-bottom: 10px;
}
.account-panel .avatar-field .avatar-info p button {
        display: inline-block;
        background: transparent;
        border: 1px solid #ced6e0;
        font-size: 12px;
        text-transform: uppercase;
        margin: 0;
        height: 30px;
        padding: 0 15px;
        line-height: 30px;
        color: #ced6e0;
        outline: none;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
}
.account-panel .avatar-field .avatar-info p button:hover {
          border-color: #57606f;
          color: #57606f;
}
.edit-photo h3, .edit-cover h3 {
  font-size: 16px;
  font-family: sans-serif;
  font-weight: bold;
  margin-top: 0px;
  line-height: 50px;
}
.edit-photo p.note, .edit-cover p.note {
  margin-bottom: 20px;
}
.profile-form label {
  display: block;
  text-align: left;
  font-size: 12px;
  font-weight: 500;
  font-weight: normal;
  line-height: 20px;
  color: #57606f;
  text-transform: uppercase;
}
.profile-form label span {
    text-transform: capitalize;
}
.profile-form input, .profile-form select {
  width: 100%;
  height: 50px;
  line-height: 50px;
  border: 1px solid #ced6e0;
  border-radius: 0;
  padding: 0 10px;
  outline: none;
  color: #57606f;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.profile-form input:focus, .profile-form select:focus {
    border: 1px solid #57606f;
    box-shadow: 0 0 10px transparent;
}
.profile-form input::-webkit-input-placeholder, .profile-form select::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ced6e0;
    font-size: 14px;
}
.profile-form input::-moz-placeholder, .profile-form select::-moz-placeholder {
    /* Firefox 19+ */
    color: #ced6e0;
    font-size: 14px;
}
.profile-form input:-ms-input-placeholder, .profile-form select:-ms-input-placeholder {
    /* IE 10+ */
    color: #ced6e0;
    font-size: 14px;
}
.profile-form input:-moz-placeholder, .profile-form select:-moz-placeholder {
    /* Firefox 18- */
    color: #ced6e0;
    font-size: 14px;
}
.profile-form select.form-control {
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  background-image: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24'><path fill='#444' d='M7.406 7.828l4.594 4.594 4.594-4.594 1.406 1.406-6 6-6-6z'></path></svg>");
  background-position: 100% 50%;
  background-repeat: no-repeat;
}
.profile-form input, .profile-form select, .profile-form textarea {
  box-shadow: none;
  border-radius: 0;
}
.profile-form button {
  display: block;
  width: 100%;
  margin-top: 30px;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  height: 50px;
  line-height: 50px;
  padding: 0;
  text-transform: uppercase;
}
.profile-form button.btn-primary {
    background-color: #1266f1;
    border-radius: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.profile-form button.btn-primary:hover {
      background-color: #1266f1;
      box-shadow: 0 10px 15px #ced6e0;
}
.profile-form button.btn-wider {
    max-width: 300px;
}
@media (max-width: 768px) {
.profile-panel {
    margin-top: 54px;
    padding: 30px 0 0 0;
    height: 150px;
}
.profile-panel .container {
      width: 100%;
}
.profile-panel .profile-info {
      padding-left: 20px;
      padding-right: 20px;
}
.profile-panel .profile-info .profile-avatar {
        width: 80px;
        height: 80px;
        margin-bottom: 10px;
}
.profile-panel .profile-info .profile-avatar img {
          width: 80px;
          height: 80px;
          border-radius: 40px;
}
.profile-panel .profile-info .profile-avatar .edit-avatar {
          font-size: 12px;
}
.profile-panel .profile-info .profile-avatar .edit-avatar i {
            font-size: 16px;
}
.profile-panel .profile-info .profile-meta h2 {
        font-size: 16px;
}
.profile-panel .edit-cover-btn {
      font-size: 12px;
}
.profile-panel .edit-cover-btn span:first-of-type {
        font-size: 16px;
}
.profile-menu {
    position: relative;
}
.profile-menu .menu-items {
      margin-top: 80px;
      padding: 0 5px;
}
.profile-menu .menu-items li {
        margin-right: 10px;
}
.profile-menu .menu-items li:last-of-type {
          margin: 0;
}
.profile-menu .menu-items li a {
          padding: 15px 0;
          font-size: 12px;
}
.profile-menu .btn-primary {
      position: absolute;
      top: 10px;
      right: 15px;
      margin-top: 0;
      padding: 0 15px;
      height: 30px;
      line-height: 30px;
}
.profile-container .home-list {
    padding-top: 0;
}
}
.widget-profile .profile-box .profile-info.placeholder .info-bio {
  color: #AAA;
}

