/*!
Theme Name: jkandence-child
Template: kadence
Author: lijitimit
Description: A child theme for the Kadence Theme.
Version: 1.0.0
*/

/* Theme customization starts here LET'S GO!
-------------------------------------------------------------- */

/* Details Accordion -------------------- */
details {
    border: 2px solid #eee;
    border-radius: 5px;
    padding: 20px;
    margin: 30px 0;
}

summary {
    font-weight: bold;
}

/* Pageloader ------------------------------------------ */

.page-loading:before {
    content:" ";
    display:block;
    position:fixed;
    z-index:100000;
    height:4px;
    width:100%;
    top:0;
    left:0;
    background: linear-gradient(270deg, #ffd700, #e52e71, #0066cc);
    background-size: 600% 600%;

     -webkit-animation: AnimationName 4s ease infinite;
    -moz-animation: AnimationName 4s ease infinite;
    animation: AnimationName 4s ease infinite;
}

 @-webkit-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}


/* Dashboard grid... well flexbox now... */

.dashboard-grid-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: stretch;
  }
  
  .dashboard-grid-item {
      flex: 0 1 auto;
      text-align: center;
      display: block;
      border-radius: 8px;
      min-width: 48%;
      margin: 1%;
  }
  
  .dashboard-grid-item a {
      text-align: center;
      text-decoration: none;
      display: block;
      width: 100%;
      height: 100%;
      padding: 20px 10px;
      background: #fff;
      color: #222;
      margin: 0;
      font-size: 14px;
      font-weight: 400;
      border-radius: 8px;
      border: 1px solid #ccc;
  }
  
  .dashboard-grid-item a:hover,
  .dashboard-grid-item a:focus,
  .dashboard-grid-item a:active {
      text-decoration: none !important;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
      color: #555;
  }
  
  .dashboard-grid-item span.dashicons {
      display:block;
      margin: 0 auto 5px;
      height: 24px;
      width: 24px;
      font-size: 24px;
      clear: both;
  }


/* --------------- */
/* MEDIA QUERIES --------------------------- */
/* --------------- */

@media only screen and (min-width: 768px) {
      
      .dashboard-grid-item {
          min-width: 31%;
          margin: 1%;
      }
  }
  
  @media only screen and (min-width: 1024px) {

    .dashboard-grid-item {
        min-width: 22%;
        margin: 1%;
    }

}

  @media only screen and (max-width: 1024px) {}