
/*
 * Indicate that an image or video is used as background
 */
/* Overlap modifier
 ========================================================================== */
/*
 * Reserved modifier to make a section overlap another section with an border image
 * Implemented by the theme
 */
/* ========================================================================
   Component: Container
 ========================================================================== */
/*
 * 1. Box sizing has to be `content-box` so the max-width is always the same and
 *    unaffected by the padding on different breakpoints. It's important for the size modifiers.
 */
.uk-container {
  box-sizing: content-box;
  /* 1 */
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  /*padding-left: 15px;
  padding-right: 15px;*/
}
/* Phone landscape and bigger */
@media (min-width: 541px) {
  .uk-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 769px) {
  .uk-container {
    /*padding-left: 40px;
    padding-right: 40px;*/
  }
}
/*
 * Micro clearfix
 */
.uk-container::before,
.uk-container::after {
  content: "";
  display: table;
}
.uk-container::after {
  clear: both;
}
/*
 * Remove margin from the last-child
 */
.uk-container > :last-child {
  /*margin-bottom: 0;*/
}
/*
 * Remove padding from nested containers
 */
.uk-container .uk-container {
  padding-left: 0;
  padding-right: 0;
}
/* Size modifier
 ========================================================================== */
.uk-container-small {
  max-width: 900px;
}
.uk-container-large {
  max-width: 1600px;
}
.uk-container-expand {
  max-width: none;
}
/* ========================================================================
   Component: Grid
 ========================================================================== */
/*
 * 1. Allow cells to wrap into the next line
 * 2. Reset lists
 */
.uk-grid {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  /* 1 */
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
}
/*
 * Grid cell
 * Note: Space is allocated solely based on content dimensions, but shrinks: 0 1 auto
 * Reset margin for e.g. paragraphs
 */
.uk-grid > * {
  margin: 0;
}
/*
 * Remove margin from the last-child
 */
.uk-grid > * > :last-child {
  /*margin-bottom: 0;*/ /*  customize マージンを残す */
}
/* Gutter
 ========================================================================== */
/*
 * Default
 */
/* Horizontal */
.uk-grid {
  margin-left: -30px;
}
.uk-grid > * {
  padding-left: 30px;
}
/* Vertical */
.uk-grid + .uk-grid,
.uk-grid > .uk-grid-margin,
* + .uk-grid-margin {
  margin-top: 30px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .uk-grid {
    margin-left: -40px;
  }
  .uk-grid > * {
    padding-left: 40px;
  }
  /* Vertical */
  .uk-grid + .uk-grid,
  .uk-grid > .uk-grid-margin,
  * + .uk-grid-margin {
    margin-top: 40px;
  }
}

/*
 * Small
 */
/* Horizontal */
.uk-grid-15,
.uk-grid-small {
  margin-left: -15px;
}
.uk-grid-15 > *,
.uk-grid-small > * {
  padding-left: 15px;
}
/* Vertical */
.uk-grid + .uk-grid-15,
.uk-grid + .uk-grid-small,
.uk-grid-15 > .uk-grid-margin,
.uk-grid-small > .uk-grid-margin,
* + .uk-grid-margin-15,
* + .uk-grid-margin-small {
  margin-top: 15px;
}


/*
 * Medium
 */
/* Horizontal */
.uk-grid-medium {
  margin-left: -30px;
}
.uk-grid-medium > * {
  padding-left: 30px;
}
/* Vertical */
.uk-grid + .uk-grid-medium,
.uk-grid-medium > .uk-grid-margin,
* + .uk-grid-margin-medium {
  margin-top: 30px;
}
/*
 * Large
 */
/* Horizontal */
.uk-grid-large {
  margin-left: -40px;
}
.uk-grid-large > * {
  padding-left: 40px;
}
/* Vertical */
.uk-grid + .uk-grid-large,
.uk-grid-large > .uk-grid-margin,
* + .uk-grid-margin-large {
  margin-top: 40px;
}

/*=================================================
 * User Custom
 =================================================*/

.uk-grid-0 { margin-left: 0;}
.uk-grid-0 > * { padding-left:0;}
.uk-grid + .uk-grid-0,
.uk-grid-0 > .uk-grid-margin,
* + .uk-grid-margin-0 {margin-top: 0;}

.uk-grid-3 { margin-left: -3px;}
.uk-grid-3 > * { padding-left: 3px;}
.uk-grid + .uk-grid-3,
.uk-grid-3 > .uk-grid-margin,
* + .uk-grid-margin-3 {margin-top: 3px;}

.uk-grid-5 { margin-left: -5px;}
.uk-grid-5 > * { padding-left: 5px;}
.uk-grid + .uk-grid-5,
.uk-grid-5 > .uk-grid-margin,
* + .uk-grid-margin-5 { margin-top: 5px;}

.uk-grid-6 { margin-left: -6px; }
.uk-grid-6 > * {padding-left: 6px; }
.uk-grid + .uk-grid-6,
.uk-grid-6 > .uk-grid-margin,
* + .uk-grid-margin-6 { margin-top: 6px; }

.uk-grid-8 { margin-left: -8px;}
.uk-grid-8 > * { padding-left: 8px;}
.uk-grid + .uk-grid-8,
.uk-grid-8 > .uk-grid-margin,
* + .uk-grid-margin-8 {margin-top: 8px;}

.uk-grid-10 {margin-left: -10px;}
.uk-grid-10 > * {padding-left: 10px;}
.uk-grid + .uk-grid-10,
.uk-grid-10 > .uk-grid-margin,
* + .uk-grid-margin-10 { margin-top: 10px;}

.uk-grid-15 { margin-left: -15px;}
.uk-grid-15 > * { padding-left: 15px;}
.uk-grid + .uk-grid-15,
.uk-grid-15 > .uk-grid-margin,
* + .uk-grid-margin-15 { margin-top: 15px;}

.uk-grid-20 {margin-left: -20px;}
.uk-grid-20 > * { padding-left: 20px;}
.uk-grid + .uk-grid-20,
.uk-grid-20 > .uk-grid-margin,
* + .uk-grid-margin-20 { margin-top: 20px;}

.uk-grid-25 { margin-left: -25px;}
.uk-grid-25 > * { padding-left: 25px;}
.uk-grid + .uk-grid-25,
.uk-grid-25 > .uk-grid-margin,
* + .uk-grid-margin-25 { margin-top: 25px;}

.uk-grid-30 { margin-left: -30px;}
.uk-grid-30 > * { padding-left: 30px;}
.uk-grid + .uk-grid-30,
.uk-grid-30 > .uk-grid-margin,
* + .uk-grid-margin-30 { margin-top: 30px;}

.uk-grid-35 { margin-left: -35px;}
.uk-grid-35 > * { padding-left: 35px;}
.uk-grid + .uk-grid-35,
.uk-grid-35 > .uk-grid-margin,
* + .uk-grid-margin-35 { margin-top: 35px;}

.uk-grid-40 { margin-left: -40px;}
.uk-grid-40 > * { padding-left: 40px;}
.uk-grid + .uk-grid-40,
.uk-grid-40 > .uk-grid-margin,
* + .uk-grid-margin-40 { margin-top: 40px;}

.uk-grid-50 { margin-left: -50px;}
.uk-grid-50 > * {padding-left: 50px;}
.uk-grid + .uk-grid-50,
.uk-grid-50 > .uk-grid-margin,
* + .uk-grid-margin-50 {margin-top: 50px;}



@media (min-width: 1px) {
  .uk-grid-collapse\@xs { margin-left: 0;}
  .uk-grid-collapse\@xs > * { padding-left:0;}
  .uk-grid + .uk-grid-collapse\@xs,
  .uk-grid-collapse\@xs > .uk-grid-margin,
  * + .uk-grid-margin-collapse\@xs {margin-top: 0;}
  
  .uk-grid-0\@xs { margin-left: 0;}
  .uk-grid-0\@xs > * { padding-left:0;}
  .uk-grid + .uk-grid-0\@xs,
  .uk-grid-0\@xs > .uk-grid-margin,
  * + .uk-grid-margin-0\@xs {margin-top: 0;}
  
  .uk-grid-3\@xs { margin-left: -3px;}
  .uk-grid-3\@xs > * { padding-left: 3px;}
  .uk-grid + .uk-grid-3\@xs,
  .uk-grid-3\@xs > .uk-grid-margin,
  * + .uk-grid-margin-3\@xs {margin-top: 3px;}

  .uk-grid-5\@xs { margin-left: -5px;}
  .uk-grid-5\@xs > * { padding-left: 5px;}
  .uk-grid + .uk-grid-5\@xs,
  .uk-grid-5\@xs > .uk-grid-margin,
  * + .uk-grid-margin-5\@xs { margin-top: 5px;}

  .uk-grid-6\@xs { margin-left: -6px; }
  .uk-grid-6\@xs > * {padding-left: 6px; }
  .uk-grid + .uk-grid-6\@xs,
  .uk-grid-6\@xs > .uk-grid-margin,
  * + .uk-grid-margin-6\@xs { margin-top: 6px; }

  .uk-grid-8\@xs { margin-left: -8px;}
  .uk-grid-8\@xs > * { padding-left: 8px;}
  .uk-grid + .uk-grid-8\@xs,
  .uk-grid-8\@xs > .uk-grid-margin,
  * + .uk-grid-margin-8\@xs {margin-top: 8px;}
  
  .uk-grid-10\@xs {margin-left: -10px;}
  .uk-grid-10\@xs > * {padding-left: 10px;}
  .uk-grid + .uk-grid-10\@xs,
  .uk-grid-10\@xs > .uk-grid-margin,
  * + .uk-grid-margin-10\@xs { margin-top: 10px;}

  .uk-grid-15\@xs { margin-left: -15px;}
  .uk-grid-15\@xs > * { padding-left: 15px;}
  .uk-grid + .uk-grid-15\@xs,
  .uk-grid-15\@xs > .uk-grid-margin,
  * + .uk-grid-margin-15\@xs { margin-top: 15px;}
  
  .uk-grid-20\@xs {margin-left: -20px;}
  .uk-grid-20\@xs > * { padding-left: 20px;}
  .uk-grid + .uk-grid-20\@xs,
  .uk-grid-20\@xs > .uk-grid-margin,
  * + .uk-grid-margin-20\@xs { margin-top: 20px;}
  
  .uk-grid-25\@xs { margin-left: -25px;}
  .uk-grid-25\@xs > * { padding-left: 25px;}
  .uk-grid + .uk-grid-25\@xs,
  .uk-grid-25\@xs > .uk-grid-margin,
  * + .uk-grid-margin-25\@xs { margin-top: 25px;}
  
  .uk-grid-30\@xs { margin-left: -30px;}
  .uk-grid-30\@xs > * { padding-left: 30px;}
  .uk-grid + .uk-grid-30\@xs,
  .uk-grid-30\@xs > .uk-grid-margin,
  * + .uk-grid-margin-30\@xs { margin-top: 30px;}
  
  .uk-grid-35\@xs { margin-left: -35px;}
  .uk-grid-35\@xs > * { padding-left: 35px;}
  .uk-grid + .uk-grid-35\@xs,
  .uk-grid-35\@xs > .uk-grid-margin,
  * + .uk-grid-margin-35\@xs { margin-top: 35px;}
  
  .uk-grid-40\@xs { margin-left: -40px;}
  .uk-grid-40\@xs > * { padding-left: 40px;}
  .uk-grid + .uk-grid-40\@xs,
  .uk-grid-40\@xs > .uk-grid-margin,
  * + .uk-grid-margin-40\@xs { margin-top: 40px;}
  
  .uk-grid-50\@xs { margin-left: -50px;}
  .uk-grid-50\@xs > * {padding-left: 50px;}
  .uk-grid + .uk-grid-50\@xs,
  .uk-grid-50\@xs > .uk-grid-margin,
  * + .uk-grid-margin-50\@xs {margin-top: 50px;}

  .uk-grid-60\@xs { margin-left: -60px;}
  .uk-grid-60\@xs > * {padding-left: 60px;}
  .uk-grid + .uk-grid-60\@xs,
  .uk-grid-60\@xs > .uk-grid-margin,
  * + .uk-grid-margin-60\@xs {margin-top: 60px;}

}

@media (min-width: 541px) {
  .uk-grid-collapse\@s { margin-left: 0;}
  .uk-grid-collapse\@s > * { padding-left:0;}
  .uk-grid + .uk-grid-collapse\@s,
  .uk-grid-collapse\@s > .uk-grid-margin,
  * + .uk-grid-margin-collapse\@s {margin-top: 0;}
  
  .uk-grid-0\@s { margin-left: 0;}
  .uk-grid-0\@s > * { padding-left:0;}
  .uk-grid + .uk-grid-0\@s,
  .uk-grid-0\@s > .uk-grid-margin,
  * + .uk-grid-margin-0\@s {margin-top: 0;}
  
  .uk-grid-3\@s { margin-left: -3px;}
  .uk-grid-3\@s > * { padding-left: 3px;}
  .uk-grid + .uk-grid-3\@s,
  .uk-grid-3\@s > .uk-grid-margin,
  * + .uk-grid-margin-3\@s {margin-top: 3px;}

  .uk-grid-5\@s { margin-left: -5px;}
  .uk-grid-5\@s > * { padding-left: 5px;}
  .uk-grid + .uk-grid-5\@s,
  .uk-grid-5\@s > .uk-grid-margin,
  * + .uk-grid-margin-5\@s { margin-top: 5px;}

  .uk-grid-6\@s { margin-left: -6px; }
  .uk-grid-6\@s > * {padding-left: 6px; }
  .uk-grid + .uk-grid-6\@s,
  .uk-grid-6\@s > .uk-grid-margin,
  * + .uk-grid-margin-6\@s { margin-top: 6px; }

  .uk-grid-8\@s { margin-left: -8px;}
  .uk-grid-8\@s > * { padding-left: 8px;}
  .uk-grid + .uk-grid-8\@s,
  .uk-grid-8\@s > .uk-grid-margin,
  * + .uk-grid-margin-8\@s {margin-top: 8px;}
  
  .uk-grid-10\@s {margin-left: -10px;}
  .uk-grid-10\@s > * {padding-left: 10px;}
  .uk-grid + .uk-grid-10\@s,
  .uk-grid-10\@s > .uk-grid-margin,
  * + .uk-grid-margin-10\@s { margin-top: 10px;}

  .uk-grid-15\@s { margin-left: -15px;}
  .uk-grid-15\@s > * { padding-left: 15px;}
  .uk-grid + .uk-grid-15\@s,
  .uk-grid-15\@s > .uk-grid-margin,
  * + .uk-grid-margin-15\@s { margin-top: 15px;}
  
  .uk-grid-20\@s {margin-left: -20px;}
  .uk-grid-20\@s > * { padding-left: 20px;}
  .uk-grid + .uk-grid-20\@s,
  .uk-grid-20\@s > .uk-grid-margin,
  * + .uk-grid-margin-20\@s { margin-top: 20px;}
  
  .uk-grid-25\@s { margin-left: -25px;}
  .uk-grid-25\@s > * { padding-left: 25px;}
  .uk-grid + .uk-grid-25\@s,
  .uk-grid-25\@s > .uk-grid-margin,
  * + .uk-grid-margin-25\@s { margin-top: 25px;}
  
  .uk-grid-30\@s { margin-left: -30px;}
  .uk-grid-30\@s > * { padding-left: 30px;}
  .uk-grid + .uk-grid-30\@s,
  .uk-grid-30\@s > .uk-grid-margin,
  * + .uk-grid-margin-30\@s { margin-top: 30px;}
  
  .uk-grid-35\@s { margin-left: -35px;}
  .uk-grid-35\@s > * { padding-left: 35px;}
  .uk-grid + .uk-grid-35\@s,
  .uk-grid-35\@s > .uk-grid-margin,
  * + .uk-grid-margin-35\@s { margin-top: 35px;}
  
  .uk-grid-40\@s { margin-left: -40px;}
  .uk-grid-40\@s > * { padding-left: 40px;}
  .uk-grid + .uk-grid-40\@s,
  .uk-grid-40\@s > .uk-grid-margin,
  * + .uk-grid-margin-40\@s { margin-top: 40px;}
  
  .uk-grid-50\@s { margin-left: -50px;}
  .uk-grid-50\@s > * {padding-left: 50px;}
  .uk-grid + .uk-grid-50\@s,
  .uk-grid-50\@s > .uk-grid-margin,
  * + .uk-grid-margin-50\@s {margin-top: 50px;}

  .uk-grid-60\@s { margin-left: -60px;}
  .uk-grid-60\@s > * {padding-left: 60px;}
  .uk-grid + .uk-grid-60\@s,
  .uk-grid-60\@s > .uk-grid-margin,
  * + .uk-grid-margin-60\@s {margin-top: 60px;}

}


@media (min-width: 769px) {
  .uk-grid-collapse\@m { margin-left: 0;}
  .uk-grid-collapse\@m > * { padding-left:0;}
  .uk-grid + .uk-grid-collapse\@m,
  .uk-grid-collapse\@m > .uk-grid-margin,
  * + .uk-grid-margin-collapse\@m {margin-top: 0;}
  
  .uk-grid-0\@m { margin-left: 0;}
  .uk-grid-0\@m > * { padding-left:0;}
  .uk-grid + .uk-grid-0\@m,
  .uk-grid-0\@m > .uk-grid-margin,
  * + .uk-grid-margin-0\@m {margin-top: 0;}
  
  .uk-grid-3\@m { margin-left: -3px;}
  .uk-grid-3\@m > * { padding-left: 3px;}
  .uk-grid + .uk-grid-3\@m,
  .uk-grid-3\@m > .uk-grid-margin,
  * + .uk-grid-margin-3\@m {margin-top: 3px;}

  .uk-grid-5\@m { margin-left: -5px;}
  .uk-grid-5\@m > * { padding-left: 5px;}
  .uk-grid + .uk-grid-5\@m,
  .uk-grid-5\@m > .uk-grid-margin,
  * + .uk-grid-margin-5\@m { margin-top: 5px;}

  .uk-grid-6\@m { margin-left: -6px; }
  .uk-grid-6\@m > * {padding-left: 6px; }
  .uk-grid + .uk-grid-6\@m,
  .uk-grid-6\@m > .uk-grid-margin,
  * + .uk-grid-margin-6\@m { margin-top: 6px; }

  .uk-grid-8\@m { margin-left: -8px;}
  .uk-grid-8\@m > * { padding-left: 8px;}
  .uk-grid + .uk-grid-8\@m,
  .uk-grid-8\@m > .uk-grid-margin,
  * + .uk-grid-margin-8\@m {margin-top: 8px;}
  
  .uk-grid-10\@m {margin-left: -10px;}
  .uk-grid-10\@m > * {padding-left: 10px;}
  .uk-grid + .uk-grid-10\@m,
  .uk-grid-10\@m > .uk-grid-margin,
  * + .uk-grid-margin-10\@m { margin-top: 10px;}

  .uk-grid-15\@m { margin-left: -15px;}
  .uk-grid-15\@m > * { padding-left: 15px;}
  .uk-grid + .uk-grid-15\@m,
  .uk-grid-15\@m > .uk-grid-margin,
  * + .uk-grid-margin-15\@m { margin-top: 15px;}
  
  .uk-grid-20\@m {margin-left: -20px;}
  .uk-grid-20\@m > * { padding-left: 20px;}
  .uk-grid + .uk-grid-20\@m,
  .uk-grid-20\@m > .uk-grid-margin,
  * + .uk-grid-margin-20\@m { margin-top: 20px;}
  
  .uk-grid-25\@m { margin-left: -25px;}
  .uk-grid-25\@m > * { padding-left: 25px;}
  .uk-grid + .uk-grid-25\@m,
  .uk-grid-25\@m > .uk-grid-margin,
  * + .uk-grid-margin-25\@m { margin-top: 25px;}
  
  .uk-grid-30\@m { margin-left: -30px;}
  .uk-grid-30\@m > * { padding-left: 30px;}
  .uk-grid + .uk-grid-30\@m,
  .uk-grid-30\@m > .uk-grid-margin,
  * + .uk-grid-margin-30\@m { margin-top: 30px;}
  
  .uk-grid-35\@m { margin-left: -35px;}
  .uk-grid-35\@m > * { padding-left: 35px;}
  .uk-grid + .uk-grid-35\@m,
  .uk-grid-35\@m > .uk-grid-margin,
  * + .uk-grid-margin-35\@m { margin-top: 35px;}
  
  .uk-grid-40\@m { margin-left: -40px;}
  .uk-grid-40\@m > * { padding-left: 40px;}
  .uk-grid + .uk-grid-40\@m,
  .uk-grid-40\@m > .uk-grid-margin,
  * + .uk-grid-margin-40\@m { margin-top: 40px;}
  
  .uk-grid-50\@m { margin-left: -50px;}
  .uk-grid-50\@m > * {padding-left: 50px;}
  .uk-grid + .uk-grid-50\@m,
  .uk-grid-50\@m > .uk-grid-margin,
  * + .uk-grid-margin-50\@m {margin-top: 50px;}

  .uk-grid-60\@m { margin-left: -60px;}
  .uk-grid-60\@m > * {padding-left: 60px;}
  .uk-grid + .uk-grid-60\@m,
  .uk-grid-60\@m > .uk-grid-margin,
  * + .uk-grid-margin-60\@m {margin-top: 60px;}
}


/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .uk-grid-large {
    margin-left: -70px;
  }
  .uk-grid-large > * {
    padding-left: 70px;
  }
  /* Vertical */
  .uk-grid + .uk-grid-large,
  .uk-grid-large > .uk-grid-margin,
  * + .uk-grid-margin-large {
    margin-top: 70px;
  }
}




@media (max-width: 768px) {
  .uk-grid-collapse\@s\! { margin-left: 0;}
  .uk-grid-collapse\@s\! > * { padding-left:0;}
  .uk-grid + .uk-grid-collapse\@s\!,
  .uk-grid-collapse\@s\! > .uk-grid-margin,
  * + .uk-grid-margin-collapse\@s\! {margin-top: 0;}
  
  .uk-grid-0\@s\! { margin-left: 0;}
  .uk-grid-0\@s\! > * { padding-left:0;}
  .uk-grid + .uk-grid-0\@s\!,
  .uk-grid-0\@s\! > .uk-grid-margin,
  * + .uk-grid-margin-0\@s\! {margin-top: 0;}
  
  .uk-grid-3\@s\! { margin-left: -3px;}
  .uk-grid-3\@s\! > * { padding-left: 3px;}
  .uk-grid + .uk-grid-3\@s\!,
  .uk-grid-3\@s\! > .uk-grid-margin,
  * + .uk-grid-margin-3\@s\! {margin-top: 3px;}

  .uk-grid-5\@s\! { margin-left: -5px;}
  .uk-grid-5\@s\! > * { padding-left: 5px;}
  .uk-grid + .uk-grid-5\@s\!,
  .uk-grid-5\@s\! > .uk-grid-margin,
  * + .uk-grid-margin-5\@s\! { margin-top: 5px;}

  .uk-grid-6\@s\! { margin-left: -6px; }
  .uk-grid-6\@s\! > * {padding-left: 6px; }
  .uk-grid + .uk-grid-6\@s\!,
  .uk-grid-6\@s\! > .uk-grid-margin,
  * + .uk-grid-margin-6\@s\! { margin-top: 6px; }

  .uk-grid-8\@s\! { margin-left: -8px;}
  .uk-grid-8\@s\! > * { padding-left: 8px;}
  .uk-grid + .uk-grid-8\@s\!,
  .uk-grid-8\@s\! > .uk-grid-margin,
  * + .uk-grid-margin-8\@s\! {margin-top: 8px;}
  
  .uk-grid-10\@s\! {margin-left: -10px;}
  .uk-grid-10\@s\! > * {padding-left: 10px;}
  .uk-grid + .uk-grid-10\@s\!,
  .uk-grid-10\@s\! > .uk-grid-margin,
  * + .uk-grid-margin-10\@s\! { margin-top: 10px;}

  .uk-grid-15\@s\! { margin-left: -15px;}
  .uk-grid-15\@s\! > * { padding-left: 15px;}
  .uk-grid + .uk-grid-15\@s\!,
  .uk-grid-15\@s\! > .uk-grid-margin,
  * + .uk-grid-margin-15\@s\! { margin-top: 15px;}
  
  .uk-grid-20\@s\! {margin-left: -20px;}
  .uk-grid-20\@s\! > * { padding-left: 20px;}
  .uk-grid + .uk-grid-20\@s\!,
  .uk-grid-20\@s\! > .uk-grid-margin,
  * + .uk-grid-margin-20\@s\! { margin-top: 20px;}
  
  .uk-grid-25\@s\! { margin-left: -25px;}
  .uk-grid-25\@s\! > * { padding-left: 25px;}
  .uk-grid + .uk-grid-25\@s\!,
  .uk-grid-25\@s\! > .uk-grid-margin,
  * + .uk-grid-margin-25\@s\! { margin-top: 25px;}
  
  .uk-grid-30\@s\! { margin-left: -30px;}
  .uk-grid-30\@s\! > * { padding-left: 30px;}
  .uk-grid + .uk-grid-30\@s\!,
  .uk-grid-30\@s\! > .uk-grid-margin,
  * + .uk-grid-margin-30\@s\! { margin-top: 30px;}
  
  .uk-grid-35\@s\! { margin-left: -35px;}
  .uk-grid-35\@s\! > * { padding-left: 35px;}
  .uk-grid + .uk-grid-35\@s\!,
  .uk-grid-35\@s\! > .uk-grid-margin,
  * + .uk-grid-margin-35\@s\! { margin-top: 35px;}
  
  .uk-grid-40\@s\! { margin-left: -40px;}
  .uk-grid-40\@s\! > * { padding-left: 40px;}
  .uk-grid + .uk-grid-40\@s\!,
  .uk-grid-40\@s\! > .uk-grid-margin,
  * + .uk-grid-margin-40\@s\! { margin-top: 40px;}
  
  .uk-grid-50\@s\! { margin-left: -50px;}
  .uk-grid-50\@s\! > * {padding-left: 50px;}
  .uk-grid + .uk-grid-50\@s\!,
  .uk-grid-50\@s\! > .uk-grid-margin,
  * + .uk-grid-margin-50\@s\! {margin-top: 50px;}

  .uk-grid-60\@s\! { margin-left: -60px;}
  .uk-grid-60\@s\! > * {padding-left: 60px;}
  .uk-grid + .uk-grid-60\@s\!,
  .uk-grid-60\@s\! > .uk-grid-margin,
  * + .uk-grid-margin-60\@s\! {margin-top: 60px;}

}

@media (max-width: 540px) {
  .uk-grid-collapse\@xs\! { margin-left: 0;}
  .uk-grid-collapse\@xs\! > * { padding-left:0;}
  .uk-grid + .uk-grid-collapse\@xs\!,
  .uk-grid-collapse\@xs\! > .uk-grid-margin,
  * + .uk-grid-margin-collapse\@xs\! {margin-top: 0;}
  
  .uk-grid-0\@xs\! { margin-left: 0;}
  .uk-grid-0\@xs\! > * { padding-left:0;}
  .uk-grid + .uk-grid-0\@xs\!,
  .uk-grid-0\@xs\! > .uk-grid-margin,
  * + .uk-grid-margin-0\@xs\! {margin-top: 0;}
  
  .uk-grid-3\@xs\! { margin-left: -3px;}
  .uk-grid-3\@xs\! > * { padding-left: 3px;}
  .uk-grid + .uk-grid-3\@xs\!,
  .uk-grid-3\@xs\! > .uk-grid-margin,
  * + .uk-grid-margin-3\@xs\! {margin-top: 3px;}

  .uk-grid-5\@xs\! { margin-left: -5px;}
  .uk-grid-5\@xs\! > * { padding-left: 5px;}
  .uk-grid + .uk-grid-5\@xs\!,
  .uk-grid-5\@xs\! > .uk-grid-margin,
  * + .uk-grid-margin-5\@xs\! { margin-top: 5px;}

  .uk-grid-6\@xs\! { margin-left: -6px; }
  .uk-grid-6\@xs\! > * {padding-left: 6px; }
  .uk-grid + .uk-grid-6\@xs\!,
  .uk-grid-6\@xs\! > .uk-grid-margin,
  * + .uk-grid-margin-6\@xs\! { margin-top: 6px; }

  .uk-grid-8\@xs\! { margin-left: -8px;}
  .uk-grid-8\@xs\! > * { padding-left: 8px;}
  .uk-grid + .uk-grid-8\@xs\!,
  .uk-grid-8\@xs\! > .uk-grid-margin,
  * + .uk-grid-margin-8\@xs\! {margin-top: 8px;}
  
  .uk-grid-10\@xs\! {margin-left: -10px;}
  .uk-grid-10\@xs\! > * {padding-left: 10px;}
  .uk-grid + .uk-grid-10\@xs\!,
  .uk-grid-10\@xs\! > .uk-grid-margin,
  * + .uk-grid-margin-10\@xs\! { margin-top: 10px;}

  .uk-grid-15\@xs\! { margin-left: -15px;}
  .uk-grid-15\@xs\! > * { padding-left: 15px;}
  .uk-grid + .uk-grid-15\@xs\!,
  .uk-grid-15\@xs\! > .uk-grid-margin,
  * + .uk-grid-margin-15\@xs\! { margin-top: 15px;}
  
  .uk-grid-20\@xs\! {margin-left: -20px;}
  .uk-grid-20\@xs\! > * { padding-left: 20px;}
  .uk-grid + .uk-grid-20\@xs\!,
  .uk-grid-20\@xs\! > .uk-grid-margin,
  * + .uk-grid-margin-20\@xs\! { margin-top: 20px;}
  
  .uk-grid-25\@xs\! { margin-left: -25px;}
  .uk-grid-25\@xs\! > * { padding-left: 25px;}
  .uk-grid + .uk-grid-25\@xs\!,
  .uk-grid-25\@xs\! > .uk-grid-margin,
  * + .uk-grid-margin-25\@xs\! { margin-top: 25px;}
  
  .uk-grid-30\@xs\! { margin-left: -30px;}
  .uk-grid-30\@xs\! > * { padding-left: 30px;}
  .uk-grid + .uk-grid-30\@xs\!,
  .uk-grid-30\@xs\! > .uk-grid-margin,
  * + .uk-grid-margin-30\@xs\! { margin-top: 30px;}
  
  .uk-grid-35\@xs\! { margin-left: -35px;}
  .uk-grid-35\@xs\! > * { padding-left: 35px;}
  .uk-grid + .uk-grid-35\@xs\!,
  .uk-grid-35\@xs\! > .uk-grid-margin,
  * + .uk-grid-margin-35\@xs\! { margin-top: 35px;}
  
  .uk-grid-40\@xs\! { margin-left: -40px;}
  .uk-grid-40\@xs\! > * { padding-left: 40px;}
  .uk-grid + .uk-grid-40\@xs\!,
  .uk-grid-40\@xs\! > .uk-grid-margin,
  * + .uk-grid-margin-40\@xs\! { margin-top: 40px;}
  
  .uk-grid-50\@xs\! { margin-left: -50px;}
  .uk-grid-50\@xs\! > * {padding-left: 50px;}
  .uk-grid + .uk-grid-50\@xs\!,
  .uk-grid-50\@xs\! > .uk-grid-margin,
  * + .uk-grid-margin-50\@xs\! {margin-top: 50px;}

  .uk-grid-60\@xs\! { margin-left: -60px;}
  .uk-grid-60\@xs\! > * {padding-left: 60px;}
  .uk-grid + .uk-grid-60\@xs\!,
  .uk-grid-60\@xs\! > .uk-grid-margin,
  * + .uk-grid-margin-60\@xs\! {margin-top: 60px;}

}




/*
 * Collapse
 */
/* Horizontal */
.uk-grid-collapse {
  margin-left: 0;
}
.uk-grid-collapse > * {
  padding-left: 0;
}
/* Vertical */
.uk-grid + .uk-grid-collapse,
.uk-grid-collapse > .uk-grid-margin {
  margin-top: 0;
}







/* Divider
 ========================================================================== */
.uk-grid-divider > * {
  position: relative;
}
.uk-grid-divider > :not(.uk-first-column)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  border-left: 1px solid #e5e5e5;
}
/* Vertical */
.uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px solid #e5e5e5;
}
/*
 * Default
 */
/* Horizontal */
.uk-grid-divider {
  margin-left: -60px;
}
.uk-grid-divider > * {
  padding-left: 60px;
}
.uk-grid-divider > :not(.uk-first-column)::before {
  left: 30px;
}
/* Vertical */
.uk-grid-divider.uk-grid-stack > .uk-grid-margin {
  margin-top: 60px;
}
.uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
  top: -30px;
  left: 60px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .uk-grid-divider {
    margin-left: -80px;
  }
  .uk-grid-divider > * {
    padding-left: 80px;
  }
  .uk-grid-divider > :not(.uk-first-column)::before {
    left: 40px;
  }
  /* Vertical */
  .uk-grid-divider.uk-grid-stack > .uk-grid-margin {
    margin-top: 80px;
  }
  .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
    top: -40px;
    left: 80px;
  }
}
/*
 * Small
 */
/* Horizontal */
.uk-grid-divider.uk-grid-small {
  margin-left: -30px;
}
.uk-grid-divider.uk-grid-small > * {
  padding-left: 30px;
}
.uk-grid-divider.uk-grid-small > :not(.uk-first-column)::before {
  left: 15px;
}
/* Vertical */
.uk-grid-divider.uk-grid-small.uk-grid-stack > .uk-grid-margin {
  margin-top: 30px;
}
.uk-grid-divider.uk-grid-small.uk-grid-stack > .uk-grid-margin::before {
  top: -15px;
  left: 30px;
}
/*
 * Medium
 */
/* Horizontal */
.uk-grid-divider.uk-grid-medium {
  margin-left: -60px;
}
.uk-grid-divider.uk-grid-medium > * {
  padding-left: 60px;
}
.uk-grid-divider.uk-grid-medium > :not(.uk-first-column)::before {
  left: 30px;
}
/* Vertical */
.uk-grid-divider.uk-grid-medium.uk-grid-stack > .uk-grid-margin {
  margin-top: 60px;
}
.uk-grid-divider.uk-grid-medium.uk-grid-stack > .uk-grid-margin::before {
  top: -30px;
  left: 60px;
}
/*
 * Large
 */
/* Horizontal */
.uk-grid-divider.uk-grid-large {
  margin-left: -80px;
}
.uk-grid-divider.uk-grid-large > * {
  padding-left: 80px;
}
.uk-grid-divider.uk-grid-large > :not(.uk-first-column)::before {
  left: 40px;
}
/* Vertical */
.uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin {
  margin-top: 80px;
}
.uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin::before {
  top: -40px;
  left: 80px;
}


/*=================================================
 * User Custom
 =================================================*/
/* Horizontal */
.uk-grid-divider.uk-grid-collapse {
  margin-left:0;
}
.uk-grid-divider.uk-grid-collapse > * {
  padding-left: 0;
}
.uk-grid-divider.uk-grid-collapse > :not(.uk-first-column)::before {
  left: 0;
}
/* Vertical */
.uk-grid-divider.uk-grid-collapse.uk-grid-stack > .uk-grid-margin {
  margin-top: 80px;
}
.uk-grid-divider.uk-grid-collapse.uk-grid-stack > .uk-grid-margin::before {
  top: -40px;
  left: 80px;
}
.uk-grid-divider.uk-grid-divider-wrap.uk-grid-collapse > :last-child::after {
  content: "";
  top: 0;
  bottom: 0;
  right:0px;
  position: absolute;
  border-left: 1px solid #e5e5e5;
}
/*=================================================*/


/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .uk-grid-divider.uk-grid-large {
    margin-left: -140px;
  }
  .uk-grid-divider.uk-grid-large > * {
    padding-left: 140px;
  }
  .uk-grid-divider.uk-grid-large > :not(.uk-first-column)::before {
    left: 70px;
  }
  /* Vertical */
  .uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin {
    margin-top: 140px;
  }
  .uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin::before {
    top: -70px;
    left: 140px;
  }
}







/* Match child of a grid cell
 ========================================================================== */
/*
 * Behave like a block element
 * 1. Wrap into the next line
 * 2. Take the full width, at least 100%. Only if no class from the Width component is set.
 * 3. Expand width even if larger than 100%, e.g. because of negative margin (Needed for nested grids)
 */
.uk-grid-match > *,
.uk-grid-item-match {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  /* 1 */
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.uk-grid-match > * > :not([class*='uk-width']),
.uk-grid-item-match > :not([class*='uk-width']) {
  /* 2 */
  box-sizing: border-box;
  width: 100%;
  /* 3 */
  -ms-flex: auto;
  -webkit-flex: auto;
  flex: auto;
}
/* ========================================================================
   Component: Tile
 ========================================================================== */
.uk-tile {
  position: relative;
  box-sizing: border-box;
  padding: 30px 30px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-tile {
    padding: 40px 40px;
  }
}
/*
 * Micro clearfix
 */
.uk-tile::before,
.uk-tile::after {
  content: "";
  display: table;
}
.uk-tile::after {
  clear: both;
}
/*
 * Remove margin from the last-child
 */
.uk-tile > :last-child {
  margin-bottom: 0;
}
/* Style modifiers
 ========================================================================== */
/*
 * Default
 */
.uk-tile-default {
  background: #fff;
}
/*
 * Muted
 */
.uk-tile-muted {
  background: #f8f8f8;
}
/*
 * Primary
 */
.uk-tile-primary {
  background: #1e87f0;
}
/*
 * Secondary
 */
.uk-tile-secondary {
  background: #222;
}
/* ========================================================================
   Component: Card
 ========================================================================== */
.uk-card {
  position: relative;
  box-sizing: border-box;
  -webkit-transition: box-shadow 0.1s ease-in-out;
  transition: box-shadow 0.1s ease-in-out;
}
/* Sections
 ========================================================================== */
.uk-card-body {
  padding: 30px 30px;
}
.uk-card-header {
  padding: 15px 30px;
}
.uk-card-footer {
  padding: 15px 30px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-card-body {
    padding: 40px 40px;
  }
  .uk-card-header {
    padding: 20px 40px;
  }
  .uk-card-footer {
    padding: 20px 40px;
  }
}
/*
 * Micro clearfix
 */
.uk-card-body::before,
.uk-card-body::after,
.uk-card-header::before,
.uk-card-header::after,
.uk-card-footer::before,
.uk-card-footer::after {
  content: "";
  display: table;
}
.uk-card-body::after,
.uk-card-header::after,
.uk-card-footer::after {
  clear: both;
}
/*
 * Remove margin from the last-child
 */
.uk-card-body > :last-child,
.uk-card-header > :last-child,
.uk-card-footer > :last-child {
  margin-bottom: 0;
}
/* Media
 ========================================================================== */
/*
 * Reserved alignment modifier to style the media element, e.g. with `border-radius`
 * Implemented by the theme
 */
/* Title
 ========================================================================== */
.uk-card-title {
  font-size: 1.5rem;
  line-height: 1.4;
}
/* Badge
 ========================================================================== */
.uk-card-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1;
}
/*
 * Remove margin from adjacent element
 */
.uk-card-badge:first-child + * {
  margin-top: 0;
}
/* Hover modifier
 ========================================================================== */
.uk-card-hover:not(.uk-card-default):not(.uk-card-primary):not(.uk-card-secondary):hover {
  background: #fff;
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}
/* Style modifiers
 ========================================================================== */
/*
 * Default
 * Note: Header and Footer are only implemented for the default style
 */
.uk-card-default {
  background: #fff;
  color: #666;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.uk-card-default .uk-card-title {
  color: #333;
}
.uk-card-default.uk-card-hover:hover {
  background-color: #fff;
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}
.uk-card-default .uk-card-header {
  border-bottom: 1px solid #e5e5e5;
}
.uk-card-default .uk-card-footer {
  border-top: 1px solid #e5e5e5;
}
/*
 * Primary
 */
.uk-card-primary {
  background: #1e87f0;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.uk-card-primary .uk-card-title {
  color: #fff;
}
.uk-card-primary.uk-card-hover:hover {
  background-color: #1e87f0;
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}
/*
 * Secondary
 */
.uk-card-secondary {
  background: #222;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.uk-card-secondary .uk-card-title {
  color: #fff;
}
.uk-card-secondary.uk-card-hover:hover {
  background-color: #222;
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}
/* Size modifier
 ========================================================================== */
/*
 * Small
 */
.uk-card-small.uk-card-body,
.uk-card-small .uk-card-body {
  padding: 20px 20px;
}
.uk-card-small .uk-card-header {
  padding: 13px 20px;
}
.uk-card-small .uk-card-footer {
  padding: 13px 20px;
}
/*
 * Large
 */
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-card-large.uk-card-body,
  .uk-card-large .uk-card-body {
    padding: 70px 70px;
  }
  .uk-card-large .uk-card-header {
    padding: 35px 70px;
  }
  .uk-card-large .uk-card-footer {
    padding: 35px 70px;
  }
}
/*
     * Default
     */
.uk-card-body .uk-nav-default {
  margin: -15px -30px;
}
.uk-card-title + .uk-nav-default {
  margin-top: 0;
}
.uk-card-body .uk-nav-default > li > a,
.uk-card-body .uk-nav-default .uk-nav-header,
.uk-card-body .uk-nav-default .uk-nav-divider {
  padding-left: 30px;
  padding-right: 30px;
}
.uk-card-body .uk-nav-default .uk-nav-sub {
  padding-left: 45px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-card-body .uk-nav-default {
    margin: -25px -40px;
  }
  .uk-card-title + .uk-nav-default {
    margin-top: 0;
  }
  .uk-card-body .uk-nav-default > li > a,
  .uk-card-body .uk-nav-default .uk-nav-header,
  .uk-card-body .uk-nav-default .uk-nav-divider {
    padding-left: 40px;
    padding-right: 40px;
  }
  .uk-card-body .uk-nav-default .uk-nav-sub {
    padding-left: 55px;
  }
}
/*
     * Small
     */
.uk-card-small .uk-nav-default {
  margin: -5px -20px;
}
.uk-card-small .uk-card-title + .uk-nav-default {
  margin-top: 0;
}
.uk-card-small .uk-nav-default > li > a,
.uk-card-small .uk-nav-default .uk-nav-header,
.uk-card-small .uk-nav-default .uk-nav-divider {
  padding-left: 20px;
  padding-right: 20px;
}
.uk-card-small .uk-nav-default .uk-nav-sub {
  padding-left: 35px;
}
/*
     * Large
     */
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-card-large .uk-nav-default {
    margin: -55px -70px;
  }
  .uk-card-large .uk-card-title + .uk-nav-default {
    margin-top: 0;
  }
}
/* ========================================================================
   Component: Close
 ========================================================================== */
/*
 * Adopts `uk-icon`
 * 1. Remove margins in Chrome, Safari and Opera.
 * 2. Remove borders for `button`.
 * 3. Address `overflow` set to `hidden` in IE.
 * 4. Correct `font` properties and `color` not being inherited for `button`.
 * 5. Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 6. Remove default `button` padding and background color
 * 7. Required for `button`.
 * 8. Re-reset `line-height` for icon
 */
.uk-close {
  /* 1 */
  margin: 0;
  /* 2 */
  border: none;
  /* 3 */
  overflow: visible;
  /* 4 */
  font: inherit;
  color: #999;
  /* 5 */
  text-transform: none;
  /* 6. */
  padding: 0;
  background-color: transparent;
  /* 7 */
  cursor: pointer;
  /* 8 */
  line-height: 0;
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
  -webkit-transition-property: color, opacity;
  transition-property: color, opacity;
}
/*
 * Remove the inner border and padding in Firefox.
 */
.uk-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/* Hover + Focus */
.uk-close:hover,
.uk-close:focus {
  color: #666;
  outline: none;
}

/*
 * Circle
 */
.uk-spinner > * > * {
  stroke-dasharray: 88px;
  stroke-dashoffset: 0;
  transform-origin: center;
  -webkit-animation: uk-spinner-dash 1.4s ease-in-out infinite;
  animation: uk-spinner-dash 1.4s ease-in-out infinite;
  stroke-width: 1;
  stroke-linecap: round;
}
@-webkit-keyframes uk-spinner-dash {
  0% {
    stroke-dashoffset: 88px;
  }
  50% {
    stroke-dashoffset: 22px;
    -webkit-transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 88px;
    -webkit-transform: rotate(450deg);
  }
}
@keyframes uk-spinner-dash {
  0% {
    stroke-dashoffset: 88px;
  }
  50% {
    stroke-dashoffset: 22px;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 88px;
    transform: rotate(450deg);
  }
}


/* ========================================================================
   Component: Nav
 ========================================================================== */
/*
 * Reset
 * 1. Prepare lists
 * 2. Prepare links
 * 3. Remove default focus style
 */
/* 1 */
.uk-nav,
.uk-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
/* 2 */
.uk-nav li > a {
  display: block;
  text-decoration: none;
}
/* 3 */
.uk-nav li > a:focus {
  outline: none;
}
/*
 * Items
 * Must target `a` elements to exclude other elements (e.g. lists)
 */
.uk-nav > li > a {
  padding: 5px 0;
}
/* Sublists
 ========================================================================== */
/*
 * Level 2
 * `ul` needed for higher specificity to override padding
 */
ul.uk-nav-sub {
  padding: 5px 0 5px 15px;
}
/*
 * Level 3 and deeper
 */
.uk-nav-sub ul {
  padding-left: 15px;
}
/*
 * Items
 */
.uk-nav-sub a {
  padding: 2px 0;
}
/* Parent icon modifier
 ========================================================================== */
.uk-nav-parent-icon > .uk-parent > a::after {
  content: "";
  width: 1.5em;
  height: 1.5em;
  float: right;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22%23666%22%20stroke-width%3D%221.1%22%20points%3D%2210%201%204%207%2010%2013%22%3E%3C%2Fpolyline%3E%0A%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.uk-nav-parent-icon > .uk-parent.uk-open > a::after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22%23666%22%20stroke-width%3D%221.1%22%20points%3D%221%204%207%2010%2013%204%22%3E%3C%2Fpolyline%3E%0A%3C%2Fsvg%3E");
}
/* Header
 ========================================================================== */
.uk-nav-header {
  padding: 5px 0;
  text-transform: uppercase;
  font-size: 0.875rem;
}
.uk-nav-header:not(:first-child) {
  margin-top: 20px;
}
/* Divider
 ========================================================================== */
.uk-nav-divider {
  margin: 5px 0;
}
/* Default modifier
 ========================================================================== */
.uk-nav-default {
  font-size: 0.875rem;
}
/*
 * Items
 */
.uk-nav-default > li > a {
  color: #999;
}
/* Hover + Focus */
.uk-nav-default > li > a:hover,
.uk-nav-default > li > a:focus {
  color: #666;
}
/* Active */
.uk-nav-default > li.uk-active > a {
  color: #333;
}
/*
 * Header
 */
.uk-nav-default .uk-nav-header {
  color: #333;
}
/*
 * Divider
 */
.uk-nav-default .uk-nav-divider {
  border-top: 1px solid #e5e5e5;
}
/*
 * Sublists
 */
.uk-nav-default .uk-nav-sub a {
  color: #999;
}
.uk-nav-default .uk-nav-sub a:hover,
.uk-nav-default .uk-nav-sub a:focus {
  color: #666;
}
/* Primary modifier
 ========================================================================== */
/*
 * Items
 */
.uk-nav-primary > li > a {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #999;
}
/* Hover + Focus */
.uk-nav-primary > li > a:hover,
.uk-nav-primary > li > a:focus {
  color: #666;
}
/* Active */
.uk-nav-primary > li.uk-active > a {
  color: #333;
}
/*
 * Header
 */
.uk-nav-primary .uk-nav-header {
  color: #333;
}
/*
 * Divider
 */
.uk-nav-primary .uk-nav-divider {
  border-top: 1px solid #e5e5e5;
}
/*
 * Sublists
 */
.uk-nav-primary .uk-nav-sub a {
  color: #999;
}
.uk-nav-primary .uk-nav-sub a:hover,
.uk-nav-primary .uk-nav-sub a:focus {
  color: #666;
}
/* Alignment modifier
 ========================================================================== */
.uk-nav-center {
  text-align: center;
}
/* Sublists */
.uk-nav-center .uk-nav-sub,
.uk-nav-center .uk-nav-sub ul {
  padding-left: 0;
}
/* Parent icon modifier  */
.uk-nav-center.uk-nav-parent-icon > .uk-parent > a::after {
  position: absolute;
}
/* ========================================================================
   Component: Navbar
 ========================================================================== */
/*
 * 1. Create position context to center navbar group
 */
.uk-navbar {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  /* 1 */
  position: relative;
}
/* Container
 ========================================================================== */
.uk-navbar-container:not(.uk-navbar-transparent) {
  background: #f8f8f8;
}
/*
 * Remove pseudo elements created by micro clearfix as precaution (if Container component is used)
 */
.uk-navbar-container > ::before,
.uk-navbar-container > ::after {
  display: none !important;
}
/* Groups
 ========================================================================== */
/*
 * 1. Align navs and items vertically if they have a different height
 * 2. Note: IE 11 requires an extra `div` which affects the center selector
 */
.uk-navbar-left,
.uk-navbar-right,
.uk-navbar-center,
.uk-navbar-center-left > *,
.uk-navbar-center-right > * {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  /* 1 */
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
/*
 * Horizontal alignment
 * 1. Create position context for centered navbar with sub groups (left/right)
 * 2. Needed for dropdowns because a new position context is created
 *    `z-index` must be smaller than off-canvas
 * 3. Fix text wrapping if the centered section is larger than 50% of the navbar
 * 4. Align sub groups for centered navbar
 */
.uk-navbar-right {
  margin-left: auto;
}
.uk-navbar-center:only-child {
  margin-left: auto;
  margin-right: auto;
  /* 1 */
  position: relative;
}
.uk-navbar-center:not(:only-child) {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  /* 2 */
  z-index: 990;
}
/* 3 */
.uk-navbar-center:not(:only-child) .uk-navbar-nav > li > a,
.uk-navbar-center:not(:only-child) .uk-navbar-item,
.uk-navbar-center:not(:only-child) .uk-navbar-toggle {
  white-space: nowrap;
}
/* 4 */
.uk-navbar-center-left,
.uk-navbar-center-right {
  position: absolute;
  top: 0;
}
.uk-navbar-center-left {
  right: 100%;
}
.uk-navbar-center-right {
  left: 100%;
}
[class*='uk-navbar-center-'] .uk-navbar-nav > li > a,
[class*='uk-navbar-center-'] .uk-navbar-item,
[class*='uk-navbar-center-'] .uk-navbar-toggle {
  white-space: nowrap;
}
/* Nav
 ========================================================================== */
/*
 * 1. Reset lists
 */
.uk-navbar-nav {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
}
/*
 * Allow items to wrap into the next line
 * Only not `absolute` positioned groups
 */
.uk-navbar-left,
.uk-navbar-right,
.uk-navbar-center:only-child {
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
/*
 * Items
 * 1. Center content vertically and horizontally
 * 2. Dimensions
 * 3. Style
 * 4. Required for `a`
 */
.uk-navbar-nav > li > a,
.uk-navbar-item,
.uk-navbar-toggle {
  /* 1 */
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  /* 2 */
  box-sizing: border-box;
  height: 80px;
  padding: 0 15px;
  /* 3 */
  font-size: 0.875rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  /* 4 */
  text-decoration: none;
}
/*
 * Nav items
 */
.uk-navbar-nav > li > a {
  color: #999;
  text-transform: uppercase;
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
}
/*
 * Hover
 * Apply hover style also to focus state and if dropdown is opened
 */
.uk-navbar-nav > li:hover > a,
.uk-navbar-nav > li > a:focus,
.uk-navbar-nav > li > a.uk-open {
  color: #666;
  outline: none;
}
/* OnClick */
.uk-navbar-nav > li > a:active {
  color: #333;
}
/* Active */
.uk-navbar-nav > li.uk-active > a {
  color: #333;
}
/* Item
 ========================================================================== */
.uk-navbar-item {
  color: #666;
}
/* Toggle
 ========================================================================== */
.uk-navbar-toggle {
  color: #999;
}
.uk-navbar-toggle:hover,
.uk-navbar-toggle:focus,
.uk-navbar-toggle.uk-open {
  color: #666;
  outline: none;
  text-decoration: none;
}
/*
 * Icon
 * Adopts `uk-icon`
 */
/* Hover + Focus */
/* Subtitle
 ========================================================================== */
.uk-navbar-subtitle {
  font-size: 0.875rem;
}
/* Style modifiers
 ========================================================================== */
/* Dropdown
 ========================================================================== */
/*
 * Adopts `uk-dropdown`
 * 1. Hide by default
 * 2. Set position
 * 3. Set a default width
 * 4. Style
 */
.uk-navbar-dropdown {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1020;
  /* 3 */
  box-sizing: border-box;
  width: 200px;
  /* 4 */
  padding: 25px;
  background: #fff;
  color: #666;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}
/* Show */
.uk-navbar-dropdown.uk-open {
  display: block;
}
/*
 * Direction / Alignment modifiers
 */
/* Direction */
[class*='uk-navbar-dropdown-top'] {
  margin-top: -15px;
}
[class*='uk-navbar-dropdown-bottom'] {
  margin-top: 15px;
}
[class*='uk-navbar-dropdown-left'] {
  margin-left: -15px;
}
[class*='uk-navbar-dropdown-right'] {
  margin-left: 15px;
}
/*
 * Grid
 * Adopts `uk-grid`
 */
/* Gutter Horizontal */
.uk-navbar-dropdown-grid {
  margin-left: -50px;
}
.uk-navbar-dropdown-grid > * {
  padding-left: 50px;
}
/* Gutter Vertical */
.uk-navbar-dropdown-grid > .uk-grid-margin {
  margin-top: 50px;
}
/* Stack */
.uk-navbar-dropdown-stack .uk-navbar-dropdown-grid > * {
  width: 100% !important;
}
/*
 * Width modifier
 */
.uk-navbar-dropdown-width-2:not(.uk-navbar-dropdown-stack) {
  width: 400px;
}
.uk-navbar-dropdown-width-3:not(.uk-navbar-dropdown-stack) {
  width: 600px;
}
.uk-navbar-dropdown-width-4:not(.uk-navbar-dropdown-stack) {
  width: 800px;
}
.uk-navbar-dropdown-width-5:not(.uk-navbar-dropdown-stack) {
  width: 1000px;
}
/*
 * Dropbar modifier
 */
.uk-navbar-dropdown-dropbar {
  margin-bottom: 30px;
  box-shadow: none;
}
/* Dropdown Nav
 * Adopts `uk-nav`
 ========================================================================== */
.uk-navbar-dropdown-nav {
  font-size: 0.875rem;
}
/*
 * Items
 */
.uk-navbar-dropdown-nav > li > a {
  color: #999;
}
/* Hover + Focus */
.uk-navbar-dropdown-nav > li > a:hover,
.uk-navbar-dropdown-nav > li > a:focus {
  color: #666;
}
/* Active */
.uk-navbar-dropdown-nav > li.uk-active > a {
  color: #333;
}
/*
 * Header
 */
.uk-navbar-dropdown-nav .uk-nav-header {
  color: #333;
}
/*
 * Divider
 */
.uk-navbar-dropdown-nav .uk-nav-divider {
  border-top: 1px solid #e5e5e5;
}
/*
 * Sublists
 */
.uk-navbar-dropdown-nav .uk-nav-sub a {
  color: #999;
}
.uk-navbar-dropdown-nav .uk-nav-sub a:hover,
.uk-navbar-dropdown-nav .uk-nav-sub a:focus {
  color: #666;
}
/* Dropbar
 ========================================================================== */
.uk-navbar-dropbar {
  position: relative;
  background: #fff;
  overflow: hidden;
}
/*
 * Slide modifier
 */
.uk-navbar-dropbar-slide {
  position: absolute;
  z-index: 1020;
  left: 0;
  right: 0;
}
/*
     * Navbar
     */
.uk-navbar-container > .uk-container .uk-navbar-left {
  margin-left: -15px;
  margin-right: -15px;
}
.uk-navbar-container > .uk-container .uk-navbar-right {
  margin-right: -15px;
}
/*
     * Grid Divider
     */
.uk-navbar-dropdown-grid > * {
  position: relative;
}
.uk-navbar-dropdown-grid > :not(.uk-first-column)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 25px;
  border-left: 1px solid #e5e5e5;
}
/* Vertical */
.uk-navbar-dropdown-grid.uk-grid-stack > .uk-grid-margin::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 50px;
  right: 0;
  border-top: 1px solid #e5e5e5;
}
/* ========================================================================
   Component: Subnav
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Gutter
 * 3. Reset lists
 */
.uk-subnav {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  /* 1 */
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 2 */
  margin-left: -20px;
  /* 3 */
  padding: 0;
  list-style: none;
}
/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 * 3. Create position context for dropdowns
 */
.uk-subnav > * {
  /* 1 */
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
  /* 2 */
  padding-left: 20px;
  /* 3 */
  position: relative;
}
/* Items
 ========================================================================== */
/*
 * Items must target `a` elements to exclude other elements (e.g. dropdowns)
 * Using `:first-child` instead of `a` to support `span` elements for text
 * 1. Prevent gap if child element is `inline-block`, e.g. an icon
 * 2. Style
 */
.uk-subnav > * > :first-child {
  /* 1 */
  display: block;
  /* 2 */
  color: #999;
  font-size: 0.875rem;
  text-transform: uppercase;
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
}
/* Hover + Focus */
.uk-subnav > * > a:hover,
.uk-subnav > * > a:focus {
  color: #666;
  text-decoration: none;
  outline: none;
}
/* Active */
.uk-subnav > .uk-active > a {
  color: #333;
}
/* Divider modifier
 ========================================================================== */
/*
 * 1. Align items and divider vertically
 */
.uk-subnav-divider > * {
  /* 1 */
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
/*
 * Divider
 * `nth-child` makes it also work without JS if it's only one row
 */
.uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before {
  content: "";
  height: 1.5em;
  margin-left: 0px;
  margin-right: 20px;
  border-left: 1px solid #e5e5e5;
}
/* Pill modifier
 ========================================================================== */
.uk-subnav-pill > * > :first-child {
  padding: 5px 10px;
  background: transparent;
  color: #999;
}
/* Hover + Focus */
.uk-subnav-pill > * > a:hover,
.uk-subnav-pill > * > a:focus {
  background-color: #f8f8f8;
  color: #666;
}
/* OnClick */
.uk-subnav-pill > * > a:active {
  background-color: #f8f8f8;
  color: #666;
}
/* Active */
.uk-subnav-pill > .uk-active > a {
  background-color: #1e87f0;
  color: #fff;
}
/* Disabled
 * The same for all style modifiers
 ========================================================================== */
.uk-subnav > .uk-disabled > a {
  color: #999;
}
/* ========================================================================
   Component: Breadcrumb
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Reset lists
 */
.uk-breadcrumb {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  /* 1 */
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 2 */
  padding: 0;
  list-style: none;
}
/*
 * Space is allocated solely based on content dimensions: 0 0 auto
 */
.uk-breadcrumb > * {
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
}
/* Items
 ========================================================================== */
.uk-breadcrumb > * > * {
  display: inline-block;
  font-size: 0.875rem;
  color: #999;
}
/* Hover + Focus */
.uk-breadcrumb > * > :hover,
.uk-breadcrumb > * > :focus {
  color: #666;
  text-decoration: none;
}
/* Active */
.uk-breadcrumb > :last-child > * {
  color: #666;
}
/*
 * Divider
 * `nth-child` makes it also work without JS if it's only one row
 */
.uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before {
  content: "/";
  display: inline-block;
  margin: 0 20px;
  color: #999;
}
/* ========================================================================
   Component: Pagination
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Gutter
 * 3. Reset lists
 */
.uk-pagination {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  /* 1 */
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 2 */
  margin-left: -20px;
  /* 3 */
  padding: 0;
  list-style: none;
}
/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 * 3. Create position context for dropdowns
 */
.uk-pagination > * {
  /* 1 */
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
  /* 2 */
  padding-left: 20px;
  /* 3 */
  position: relative;
}
/* Items
 ========================================================================== */
/*
 * 1. Prevent gap if child element is `inline-block`, e.g. an icon
 * 2. Style
 */
.uk-pagination > * > * {
  /* 1 */
  display: block;
  /* 2 */
  color: #999;
  -webkit-transition: color 0.1s ease-in-out;
  transition: color 0.1s ease-in-out;
}
/* Hover + Focus */
.uk-pagination > * > :hover,
.uk-pagination > * > :focus {
  color: #666;
  text-decoration: none;
}
/* Active */
.uk-pagination > .uk-active > * {
  color: #666;
}
/* Disabled */
.uk-pagination > .uk-disabled > * {
  color: #999;
}

/* ========================================================================
   Component: Tab
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Gutter
 * 3. Reset lists
 */
.uk-tab {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  /* 1 */
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 2 */
  margin-left: -20px;
  /* 3 */
  padding: 0;
  list-style: none;
  position: relative;
}
.uk-tab::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 0;
  border-bottom: 1px solid #e5e5e5;
}
/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 * 3. Create position context for dropdowns
 */
.uk-tab > * {
  /* 1 */
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
  /* 2 */
  padding-left: 20px;
  /* 3 */
  position: relative;
}
/* Items
 ========================================================================== */
/*
 * Items must target `a` elements to exclude other elements (e.g. dropdowns)
 * 1. Center text if a width is set
 * 2. Style
 */
.uk-tab > * > a {
  /* 1 */
  display: block;
  text-align: center;
  /* 2 */
  padding: 5px 10px;
  color: #999;
  border-bottom: 1px solid transparent;
  font-size: 0.875rem;
  text-transform: uppercase;
  -webkit-transition: color 0.1s ease-in-out;
  transition: color 0.1s ease-in-out;
}
/* Hover + Focus */
.uk-tab > * > a:hover,
.uk-tab > * > a:focus {
  color: #666;
  text-decoration: none;
}
/* Active */
.uk-tab > .uk-active > a {
  color: #333;
  border-color: #1e87f0;
}
/* Disabled */
.uk-tab > .uk-disabled > a {
  color: #999;
}
/* Position modifier
 ========================================================================== */
/*
 * Bottom
 */
.uk-tab-bottom::before {
  top: 0;
  bottom: auto;
}
.uk-tab-bottom > * > a {
  border-top: 1px solid transparent;
  border-bottom: none;
}
/*
 * Left + Right
 * 1. Reset Gutter
 */
.uk-tab-left,
.uk-tab-right {
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  /* 1 */
  margin-left: 0;
}
/* 1 */
.uk-tab-left > *,
.uk-tab-right > * {
  padding-left: 0;
}
.uk-tab-left::before {
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  border-left: 1px solid #e5e5e5;
  border-bottom: none;
}
.uk-tab-right::before {
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  border-left: 1px solid #e5e5e5;
  border-bottom: none;
}
.uk-tab-left > * > a {
  text-align: right;
  border-right: 1px solid transparent;
  border-bottom: none;
}
.uk-tab-right > * > a {
  text-align: left;
  border-left: 1px solid transparent;
  border-bottom: none;
}
.uk-tab .uk-dropdown {
  margin-left: 30px;
}
/* ========================================================================
   Component: Slidenav
 ========================================================================== */
/*
 * Adopts `uk-icon`
 */
.uk-slidenav {
  padding: 5px;
  color: rgba(102, 102, 102, 0.6);
  -webkit-transition: color 0.1s ease-in-out;
  transition: color 0.1s ease-in-out;
}
/* Hover + Focus */
.uk-slidenav:hover,
.uk-slidenav:focus {
  color: rgba(102, 102, 102, 0.8);
  outline: none;
}
/* OnClick */
.uk-slidenav:active {
  color: rgba(102, 102, 102, 0.9);
}
/* Icon modifier
 ========================================================================== */
/*
 * Previous
 */
/*
 * Next
 */
/* Container
 ========================================================================== */
.uk-slidenav-container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
/* ========================================================================
   Component: Dotnav
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Reset lists
 * 3. Gutter
 */
.uk-dotnav {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  /* 1 */
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 3 */
  margin-left: -15px;
}
/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 */
.uk-dotnav > * {
  /* 1 */
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
  /* 2 */
  padding-left: 15px;
}
/* Items
 ========================================================================== */
/*
 * Items
 * 1. Hide text if present
 */
.uk-dotnav > * > * {
  display: block;
  box-sizing: content-box;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(102, 102, 102, 0.1);
  /* 1 */
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}
/* Hover + Focus */
.uk-dotnav > * > :hover,
.uk-dotnav > * > :focus {
  background-color: rgba(102, 102, 102, 0.4);
  outline: none;
}
/* OnClick */
.uk-dotnav > * > :active {
  background-color: rgba(102, 102, 102, 0.6);
}
/* Active */
.uk-dotnav > .uk-active > * {
  background-color: rgba(102, 102, 102, 0.4);
}
/* Modifier: 'uk-dotnav-vertical'
 ========================================================================== */
/*
 * 1. Change direction
 * 2. Gutter
 */
.uk-dotnav-vertical {
  /* 1 */
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  /* 2 */
  margin-left: 0;
  margin-top: -15px;
}
/* 2 */
.uk-dotnav-vertical > * {
  padding-left: 0;
  padding-top: 15px;
}
/* ========================================================================
   Component: Accordion
 ========================================================================== */
.uk-accordion {
  padding: 0;
  list-style: none;
}
/* Item
 ========================================================================== */
.uk-accordion > :nth-child(n+2) {
  margin-top: 20px;
}
/* Title
 ========================================================================== */
.uk-accordion-title {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.4;
  cursor: pointer;
  overflow: hidden;
}
.uk-accordion-title::after {
  content: "";
  width: 1.4em;
  height: 1.4em;
  float: right;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23666%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%3E%3C%2Frect%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23666%22%20width%3D%221%22%20height%3D%2213%22%20x%3D%226%22%20y%3D%220%22%3E%3C%2Frect%3E%0A%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.uk-open > .uk-accordion-title::after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23666%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%3E%3C%2Frect%3E%0A%3C%2Fsvg%3E");
}
/* Content
 ========================================================================== */
.uk-accordion-content {
  margin-top: 20px;
}
/*
 * Micro clearfix
 */
.uk-accordion-content:before,
.uk-accordion-content:after {
  content: "";
  display: table;
}
.uk-accordion-content:after {
  clear: both;
}
/*
 * Remove margin from the last-child
 */
.uk-accordion-content > :last-child {
  margin-bottom: 0;
}

/* ========================================================================
   Component: Drop
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Set a default width
 */
.uk-drop {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1020;
  /* 3 */
  box-sizing: border-box;
  width: 300px;
}
/* Show */
.uk-drop.uk-open {
  display: block;
}
/* Direction / Alignment modifiers
 ========================================================================== */
/* Direction */
[class*='uk-drop-top'] {
  margin-top: -20px;
}
[class*='uk-drop-bottom'] {
  margin-top: 20px;
}
[class*='uk-drop-left'] {
  margin-left: -20px;
}
[class*='uk-drop-right'] {
  margin-left: 20px;
}
/* Grid modifiers
 ========================================================================== */
.uk-drop-stack .uk-drop-grid > * {
  width: 100% !important;
}
/* ========================================================================
   Component: Dropdown
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Set a default width
 * 4. Style
 */
.uk-dropdown {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1020;
  /* 3 */
  box-sizing: border-box;
  min-width: 200px;
  /* 4 */
  padding: 25px;
  background: #fff;
  color: #666;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}
/* Show */
.uk-dropdown.uk-open {
  display: block;
}
/* Nav
 * Adopts `uk-nav`
 ========================================================================== */
.uk-dropdown-nav {
  white-space: nowrap;
  font-size: 0.875rem;
}
/*
 * Items
 */
.uk-dropdown-nav > li > a {
  color: #999;
}
/* Hover + Focus + Active */
.uk-dropdown-nav > li > a:hover,
.uk-dropdown-nav > li > a:focus,
.uk-dropdown-nav > li.uk-active > a {
  color: #666;
}
/*
 * Header
 */
.uk-dropdown-nav .uk-nav-header {
  color: #333;
}
/*
 * Divider
 */
.uk-dropdown-nav .uk-nav-divider {
  border-top: 1px solid #e5e5e5;
}
/*
 * Sublists
 */
.uk-dropdown-nav .uk-nav-sub a {
  color: #999;
}
.uk-dropdown-nav .uk-nav-sub a:hover,
.uk-dropdown-nav .uk-nav-sub a:focus {
  color: #666;
}
/* Direction / Alignment modifiers
 ========================================================================== */
/* Direction */
[class*='uk-dropdown-top'] {
  margin-top: -10px;
}
[class*='uk-dropdown-bottom'] {
  margin-top: 10px;
}
[class*='uk-dropdown-left'] {
  margin-left: -10px;
}
[class*='uk-dropdown-right'] {
  margin-left: 10px;
}
/* Grid modifiers
 ========================================================================== */
.uk-dropdown-stack .uk-dropdown-grid > * {
  width: 100% !important;
}

/* ========================================================================
   Component: Modal
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Allow scrolling for the modal dialog
 * 4. Horizontal padding
 * 5. Mask the background page
 * 6. Fade-in transition
 */
.uk-modal {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1010;
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* 4 */
  padding-left: 15px;
  padding-right: 15px;
  /* 5 */
  background: rgba(0, 0, 0, 0.6);
  /* 6 */
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
/* Phone landscape and bigger */
@media (min-width: 541px) {
  .uk-modal {
    padding-left: 30px;
    padding-right: 30px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 769px) {
  .uk-modal {
    padding-left: 40px;
    padding-right: 40px;
  }
}
/*
 * Open
 */
.uk-modal.uk-open {
  opacity: 1;
}
/* Page
 ========================================================================== */
/*
 * Prevent scrollbars
 */
.uk-modal-page {
  overflow: hidden;
}
/* Dialog
 ========================================================================== */
/*
 * 1. Create position context for caption, spinner and close button
 * 2. Dimensions
 * 3. Style
 * 4. Slide-in transition
 */
.uk-modal-dialog {
  /* 1 */
  position: relative;
  /* 2 */
  box-sizing: border-box;
  margin: 50px auto;
  width: 600px;
  max-width: 100%;
  /* 3 */
  background: #fff;
  /* 4 */
  opacity: 0;
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
  -webkit-transition: opacity 0.3s linear, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s linear, transform 0.3s ease-out;
}
/* Phone portrait and smaller */
@media (max-width: 540px) {
  .uk-modal-dialog {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
/*
 * Open
 */
.uk-open > .uk-modal-dialog {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
/* Size modifier
 ========================================================================== */
/*
 * Container size
 * Take the same size as the Container component
 */
.uk-modal-container .uk-modal-dialog {
  width: 1200px;
}
/*
 * Full size
 * 1. Remove padding and background from modal
 * 2. Reset all default declarations from modal dialog
 */
/* 1 */
.uk-modal-full {
  padding: 0;
  background: none;
}
/* 2 */
.uk-modal-full .uk-modal-dialog {
  margin: 0;
  width: 100%;
  max-width: 100%;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
/* Lightbox modifier
 ========================================================================== */
.uk-modal-lightbox {
  background: rgba(0, 0, 0, 0.9);
}
.uk-modal-lightbox .uk-modal-dialog {
  margin-left: 15px;
  margin-right: 15px;
}
/* Sections
 ========================================================================== */
.uk-modal-body {
  padding: 30px 30px;
}
.uk-modal-header {
  padding: 15px 30px;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}
.uk-modal-footer {
  padding: 15px 30px;
  background: #fff;
  border-top: 1px solid #e5e5e5;
}
/*
 * Micro clearfix
 */
.uk-modal-body::before,
.uk-modal-body::after,
.uk-modal-header::before,
.uk-modal-header::after,
.uk-modal-footer::before,
.uk-modal-footer::after {
  content: "";
  display: table;
}
.uk-modal-body::after,
.uk-modal-header::after,
.uk-modal-footer::after {
  clear: both;
}
/*
 * Remove margin from the last-child
 */
.uk-modal-body > :last-child,
.uk-modal-header > :last-child,
.uk-modal-footer > :last-child {
  margin-bottom: 0;
}
/* Title
 ========================================================================== */
.uk-modal-title {
  font-size: 2rem;
  line-height: 1.3;
}
/* Close
 * Adopts `uk-close`
 ========================================================================== */
[class*='uk-modal-close-'] {
  position: absolute;
  z-index: 1010;
  top: 10px;
  right: 10px;
  padding: 5px;
}
/*
 * Remove margin from adjacent element
 */
[class*='uk-modal-close-']:first-child + * {
  margin-top: 0;
}
/*
 * Hover
 */
/*
 * Default
 */
/*
 * Outside
 */
.uk-modal-close-outside {
  top: 0;
  right: 0;
  -webkit-transform: translate(100%, -100%);
  transform: translate(100%, -100%);
  color: #ffffff;
}
.uk-modal-close-outside:hover {
  color: #fff;
}
/*
 * Full
 */
.uk-modal-close-full {
  top: 0;
  right: 0;
  padding: 20px;
  background: #fff;
}
/* Caption
 ========================================================================== */
.uk-modal-caption {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: 20px;
  color: #fff;
  text-align: center;
}
/* ========================================================================
   Component: Sticky
 ========================================================================== */
/*
 * 1. Resolve frame rate issues on devices with lower frame rates by forcing hardware acceleration
 */
.uk-sticky-fixed {
  z-index: 980;
  box-sizing: border-box;
  margin: 0 !important;
  /* 1 */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
/*
 * Faster animations
 */
.uk-sticky[class*='uk-animation-'] {
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
}
.uk-sticky.uk-animation-reverse {
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
}
/* ========================================================================
   Component: Off-canvas
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 */
.uk-offcanvas {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
}
/*
 * Flip modifier
 */
.uk-offcanvas-flip .uk-offcanvas {
  right: 0;
  left: auto;
}
/* Bar
 ========================================================================== */
/*
 * 1. Set position
 * 2. Size and style
 * 3. Allow scrolling
 * 4. Transform
 */
.uk-offcanvas-bar {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  /* 2 */
  box-sizing: border-box;
  width: 270px; 
  width: 265px; /* nk customize override */
  padding: 30px 10px 10px;
  background: #222;
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* 4 */
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
@media (min-width: 541px) {
  .uk-offcanvas-bar {
    width: 280px;
    padding: 40px 15px 15px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 769px) {
  .uk-offcanvas-bar {
    width: 350px;
    padding: 40px 40px;
  }
}
/* Flip modifier */
.uk-offcanvas-flip .uk-offcanvas-bar {
  left: auto;
  right: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
/*
 * Open
 */
.uk-open > .uk-offcanvas-bar {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
/*
 * Slide Animation (Used in slide and push mode)
 */
.uk-offcanvas-bar-animation {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
/*
 * Reveal Animation
 * 1. Set position
 * 2. Clip the bar
 * 3. Animation
 * 4. Reset transform
 */
.uk-offcanvas-reveal {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  /* 2 */
  width: 0;
  overflow: hidden;
  /* 3 */
  -webkit-transition: width 0.3s ease-out;
  transition: width 0.3s ease-out;
}
.uk-offcanvas-reveal .uk-offcanvas-bar {
  /* 4 */
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.uk-open > .uk-offcanvas-reveal {
  width: 270px;
  width: 250px; /* nk customize override */
}
/* Tablet landscape and bigger */
@media (min-width: 769px) {
  .uk-open > .uk-offcanvas-reveal {
    width: 350px;
  }
}
/*
 * Flip modifier
 */
.uk-offcanvas-flip .uk-offcanvas-reveal {
  right: 0;
  left: auto;
}
/* Close
 * Adopts `uk-close`
 ========================================================================== */
.uk-offcanvas-close {
  position: absolute;
  z-index: 1000;
  top: 20px;
  right: 20px;
  padding: 5px;
}
/* Overlay
 ========================================================================== */
/*
 * Overlay the whole page. Needed for the `::before`
 * 1. Using `100vw` so no modification is needed when off-canvas is flipped
 * 2. Allow for closing with swipe gesture on devices with pointer events.
 */
.uk-offcanvas-overlay {
  /* 1 */
  width: 100vw;
  /* 2 */
  touch-action: none;
}
/*
 * 1. Mask the whole page
 * 2. Fade-in transition
 */
.uk-offcanvas-overlay::before {
  /* 1 */
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.1);
  /* 2 */
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.uk-offcanvas-overlay.uk-open::before {
  opacity: 1;
}
/* Container
 ========================================================================== */
/*
 * Prevent horizontal scrollbar when the content is slide-out
 * Has to be on the `html` element too to make it work on the `body`
 */
.uk-offcanvas-page,
.uk-offcanvas-container {
  overflow-x: hidden;
}
/*
 * Prevent all scrollbars if overlay is used
 */
.uk-offcanvas-container-overlay {
  overflow: hidden;
}
/* Content
 ========================================================================== */
/*
 * Prepare slide-out animation (Used in reveal and push mode)
 * Using `position: left` instead of `transform` because position `fixed` elements like sticky navbars
 * lose their fixed state and behaves like `absolute` within a transformed container
 * Note: JS sets a fixed width and height so the page can slide-out without shrinking
 * 1. Smooth scrolling
 */
.uk-offcanvas-container .uk-offcanvas-content {
  position: relative;
  left: 0;
  -webkit-transition: left 0.3s ease-out;
  transition: left 0.3s ease-out;
  /* 1 */
  -webkit-overflow-scrolling: touch;
}
/* Disable scrolling if overlay mode */
.uk-offcanvas-overlay .uk-offcanvas-content {
  overflow-y: hidden;
}
/*
 * Activate slide-out animation
 */
:not(.uk-offcanvas-flip) > .uk-offcanvas-content-animation {
  left: 270px;
  left: 250px; /* nk customize override */
}
.uk-offcanvas-flip > .uk-offcanvas-content-animation {
  left: -270px;
  left: -250px; /* nk customize override */
}
/* Tablet landscape and bigger */
@media (min-width: 769px) {
  :not(.uk-offcanvas-flip) > .uk-offcanvas-content-animation {
    left: 350px;
  }
  .uk-offcanvas-flip > .uk-offcanvas-content-animation {
    left: -350px;
  }
}


/* Responsive objects
 ========================================================================== */
/*
 * Preserve original dimensions
 * Because `img, `video`, `canvas` and  `audio` are already responsive by default, see Base component
 */
.uk-preserve-width,
.uk-preserve-width audio,
.uk-preserve-width canvas,
.uk-preserve-width img,
.uk-preserve-width svg,
.uk-preserve-width video {
  max-width: none;
}
/*
 * Responsiveness
 * Corrects `max-width` and `max-height` behavior if padding and border are used
 */
.uk-responsive-width,
.uk-responsive-height {
  box-sizing: border-box;
}
/*
 * 1. Set a maximum width. `important` needed to override `uk-preserve-width img`
 * 2. Auto scale the height. Only needed if `height` attribute is present
 */
.uk-responsive-width {
  /* 1 */
  max-width: 100% !important;
  /* 2 */
  height: auto;
}
/*
 * 1. Set a maximum height. Only works if the parent element has a fixed height
 * 2. Auto scale the width. Only needed if `width` attribute is present
 * 3. Reset max-width, which `img, `video`, `canvas` and  `audio` already have by default
 */
.uk-responsive-height {
  /* 1 */
  max-height: 100%;
  /* 2 */
  width: auto;
  /* 3 */
  max-width: none;
}
/* Border
 ========================================================================== */
.uk-border-circle {
  border-radius: 50%;
}
.uk-border-rounded {
  border-radius: 5px;
}
/*
 * Fix `overflow: hidden` to be ignored with border-radius and CSS transforms in Webkit
 */
.uk-inline-clip[class*='uk-border-'] {
  -webkit-transform: translateZ(0);
}
/* Box-shadow
 ========================================================================== */
.uk-box-shadow-small {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.uk-box-shadow-medium {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.uk-box-shadow-large {
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}
.uk-box-shadow-xlarge {
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.16);
}
/*
 * Hover
 */
[class*='uk-box-shadow-hover'] {
  -webkit-transition: box-shadow 0.1s ease-in-out;
  transition: box-shadow 0.1s ease-in-out;
}
.uk-box-shadow-hover-small:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.uk-box-shadow-hover-medium:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.uk-box-shadow-hover-large:hover {
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}
.uk-box-shadow-hover-xlarge:hover {
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.16);
}
/* Box-shadow bottom
 ========================================================================== */
/*
 * 1. Set position.
 * 2. Set style
 * 3. Blur doesn't work on pseudo elements with negative `z-index` in Edge.
 *    Solved by using `before` and add position context to child elements.
 */
@supports (filter: blur(0)) or (-webkit-filter: blur(0)) {
  .uk-box-shadow-bottom {
    display: inline-block;
    position: relative;
    max-width: 100%;
    vertical-align: middle;
  }
  .uk-box-shadow-bottom::before {
    content: '';
    /* 1 */
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    /* 2 */
    height: 30px;
    border-radius: 100%;
    background: #444;
    -webkit-filter: blur(20px);
    filter: blur(20px);
  }
  /* 3 */
  .uk-box-shadow-bottom > * {
    position: relative;
  }
}
/* ========================================================================
   Component: Width
 ========================================================================== */
/* Equal child widths
 ========================================================================== */
[class*='uk-child-width'] > * {
  box-sizing: border-box;
  width: 100%;
}
.uk-child-width-1-2 > * {
  width: 50%;
}
.uk-child-width-1-3 > * {
  width: calc(100% * 1 / 3.001);
}
.uk-child-width-1-4 > * {
  width: 25%;
}
.uk-child-width-1-5 > * {
  width: 20%;
}
.uk-child-width-1-6 > * {
  width: calc(100% * 1 / 6.001);
}
.uk-child-width-auto > * {
  width: auto;
}

/*** User Custom 24分割まで拡張 ***/
.uk-child-width-1-6 > * { width: calc(100% * 1 / 6.001); }
.uk-child-width-1-7 > * { width: calc(100% * 1 / 7.001); }
.uk-child-width-1-8 > * { width: calc(100% * 1 / 8.001); }
.uk-child-width-1-9 > * { width: calc(100% * 1 / 9.001); }
.uk-child-width-1-10 > * { width: calc(100% * 1 / 10.001); }
.uk-child-width-1-11 > * { width: calc(100% * 1 / 11.001); }
.uk-child-width-1-12 > * { width: calc(100% * 1 / 12.001); }
.uk-child-width-1-24 > * { width: calc(100% * 1 / 24.001); }
/*** User Custom パーセント指定 ***/

.uk-child-width-50\% > * { width: 50%; }
.uk-child-width-33\% > * { width: calc(100% * 1 / 3.001); }
.uk-child-width-25\% > * { width: 25%; }
.uk-child-width-20\% > * { width: 20%; }
.uk-child-width-16\% > * { width: calc(100% * 1 / 6.001); }
.uk-child-width-10\% > * { width: calc(100% * 1 / 10.001); }
/* +++++++++++++++++++++++++++++++++ */


/*
 *    Instead of 0, 1px is needed to make cell wrap into next row if predecessor is 100% wide
 *    and the grid gutter is 0 pixels wide
 */
.uk-child-width-expand > * {
  width: 1px;
}

/*
 * 1. Make `width: 1px` work, because according to the spec flex items won’t shrink
 *    below their minimum content size. To change this, set the min-width.
 *    Only needed for Firefox. All other browsers ignore this.
 *
 * 2. `width` is ignored when wrapping flex items in Safari
 *    https://github.com/philipwalton/flexbugs#11-min-and-max-size-declarations-are-ignored-when-wrapping-flex-items
 */

.uk-child-width-expand > :not([class*='uk-width']) {
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  /* 1 */
  min-width: 0;
  /* 2 */
  flex-basis: 1px;
}

/* Phone landscape and bigger */
@media (min-width: 541px) {
  .uk-child-width-1-1\@s > *   {
    width: 100%;
  }
  .uk-child-width-1-2\@s > * {
    width: 50%;
  }
  .uk-child-width-1-3\@s > * {
    width: calc(100% * 1 / 3.001);
  }
  .uk-child-width-1-4\@s > * {
    width: 25%;
  }
  .uk-child-width-1-5\@s > * {
    width: 20%;
  }
  .uk-child-width-1-6\@s > * {
    width: calc(100% * 1 / 6.001);
  }
  .uk-child-width-auto\@s > * {
    width: auto;
  }
  .uk-child-width-expand\@s > * {
    width: 1px;
  }
  /*** User Custom 24分割まで拡張 ***/
  
  .uk-child-width-1-7\@s > * { width: calc(100% * 1 / 7.001); }
  .uk-child-width-2-7\@s > * { width: calc(100% * 2 / 7.001); }  
  .uk-child-width-3-7\@s > * { width: calc(100% * 3 / 7.001); }  
  .uk-child-width-1-8\@s > * { width: calc(100% * 1 / 8.001); }
  .uk-child-width-5-8\@s > * { width: calc(100% * 5 / 8.001); }
  .uk-child-width-4-9\@s > * { width: calc(100% * 1 / 4.001); }
  .uk-child-width-1-9\@s > * { width: calc(100% * 1 / 9.001); }
  
  .uk-child-width-1-10\@s > * { width: calc(100% * 1 / 10.001); }
  .uk-child-width-1-11\@s > * { width: calc(100% * 1 / 11.001); }
  .uk-child-width-1-12\@s > * { width: calc(100% * 1 / 12.001); }
  .uk-child-width-1-24\@s > * { width: calc(100% * 1 / 24.001); }
  /*** User Custom パーセント指定 ***/
  .uk-child-width-50\%\@s > * { width: 50%; }
  .uk-child-width-33\%\@s > * { width: calc(100% * 1 / 3.001); }
  .uk-child-width-25\%\@s > * { width: 25%; }
  .uk-child-width-20\%\@s > * { width: 20%; }
  .uk-child-width-16\%\@s > * { width: calc(100% * 1 / 6.001); }
  .uk-child-width-10\%\@s > * { width: calc(100% * 1 / 10.001); }
  .uk-child-width-5\%\@s > * { width:5%; }
  .uk-child-width-10\%\@s > * { width: 10%; }
  .uk-child-width-15\%\@s > * { width: 15%; }  
  .uk-child-width-20\%\@s > * { width: 20%; }  
  .uk-child-width-30\%\@s > * { width: 30%; }  
  .uk-child-width-40\%\@s > * { width: 40%; }
  .uk-child-width-50\%\@s > * { width: 50%; }
  .uk-child-width-60\%\@s > * { width: 60%; }
  .uk-child-width-70\%\@s > * { width: 70%; }
  .uk-child-width-50\%\@s > * { width: 80%; }
  .uk-child-width-60\%\@s > * { width: 90%; }
  .uk-child-width-70\%\@s > * { width: 100%; }
  .uk-child-width-expand\@s > :not([class*='uk-width']) {
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    min-width: 0;
    flex-basis: 1px;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 769px) {
  .uk-child-width-1-1\@m > * {
    width: 100%;
  }
  .uk-child-width-1-2\@m > * {
    width: 50%;
  }
  .uk-child-width-1-3\@m > * {
    width: calc(100% * 1 / 3.001);
  }
  .uk-child-width-1-4\@m > * {
    width: 25%;
  }
  .uk-child-width-1-5\@m > * {
    width: 20%;
  }
  .uk-child-width-1-6\@m > * {
    width: calc(100% * 1 / 6.001);
  }
  .uk-child-width-auto\@m > * {
    width: auto;
  }
  .uk-child-width-expand\@m > * {
    width: 1px;
  }
  /*** User Custom 24分割まで拡張 ***/
  .uk-child-width-1-7\@m > * { width: calc(100% * 1 / 7.001); }
  .uk-child-width-1-8\@m > * { width: calc(100% * 1 / 8.001); }
  .uk-child-width-1-9\@m > * { width: calc(100% * 1 / 9.001); }
  .uk-child-width-1-10\@m > * { width: calc(100% * 1 / 10.001); }
  .uk-child-width-1-11\@m > * { width: calc(100% * 1 / 11.001); }
  .uk-child-width-1-12\@m > * { width: calc(100% * 1 / 12.001); }
  .uk-child-width-1-24\@m > * { width: calc(100% * 1 / 24.001); }
  /*** User Custom パーセント指定 ***/
  .uk-child-width-100\%\@m > * { width: 100%; }
  .uk-child-width-50\%\@m > * { width: 50%; }
  .uk-child-width-33\%\@m > * { width: calc(100% * 1 / 3.001); }
  .uk-child-width-25\%\@m > * { width: 25%; }
  .uk-child-width-20\%\@m > * { width: 20%; }
  .uk-child-width-16\%\@m > * { width: calc(100% * 1 / 6.001); }
  .uk-child-width-10\%\@m > * { width: calc(100% * 1 / 10.001); }
  
  .uk-child-width-5\%\@m > * { width: 10%; }
  .uk-child-width-10\%\@m > * { width: 10%; }
  .uk-child-width-15\%\@m > * { width: 15%; }  
  .uk-child-width-20\%\@m > * { width: 20%; }  
  .uk-child-width-30\%\@m > * { width: 30%; }  
  .uk-child-width-40\%\@m > * { width: 40%; }
  .uk-child-width-50\%\@m > * { width: 50%; }
  .uk-child-width-60\%\@m > * { width: 60%; }
  .uk-child-width-70\%\@m > * { width: 70%; }
  .uk-child-width-50\%\@m > * { width: 80%; }
  .uk-child-width-60\%\@m > * { width: 90%; }
  .uk-child-width-70\%\@m > * { width: 100%; }  
  .uk-child-width-expand\@m > :not([class*='uk-width']) {
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    min-width: 0;
    flex-basis: 1px;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-child-width-1-1\@l > * {
    width: 100%;
  }
  .uk-child-width-1-2\@l > * {
    width: 50%;
  }
  .uk-child-width-1-3\@l > * {
    width: calc(100% * 1 / 3.001);
  }
  .uk-child-width-1-4\@l > * {
    width: 25%;
  }
  .uk-child-width-1-5\@l > * {
    width: 20%;
  }
  .uk-child-width-1-6\@l > * {
    width: calc(100% * 1 / 6.001);
  }
  .uk-child-width-auto\@l > * {
    width: auto;
  }
  .uk-child-width-expand\@l > * {
    width: 1px;
  }
  
  /*** User Custom 24分割まで拡張 ***/
  .uk-child-width-1-7\@l > * { width: calc(100% * 1 / 7.001); }
  .uk-child-width-1-8\@l > * { width: calc(100% * 1 / 8.001); }
  .uk-child-width-1-9\@l > * { width: calc(100% * 1 / 9.001); }
  .uk-child-width-1-10\@l > * { width: calc(100% * 1 / 10.001); }
  .uk-child-width-1-11\@l > * { width: calc(100% * 1 / 11.001); }
  .uk-child-width-1-12\@l > * { width: calc(100% * 1 / 12.001); }
  .uk-child-width-1-24\@l > * { width: calc(100% * 1 / 24.001); }
  /*** User Custom パーセント指定 ***/
  .uk-child-width-50\%\@l > * { width: 50%; }
  .uk-child-width-33\%\@l > * { width: calc(100% * 1 / 3.001); }
  .uk-child-width-25\%\@l > * { width: 25%; }
  .uk-child-width-20\%\@l > * { width: 20%; }
  .uk-child-width-16\%\@l > * { width: calc(100% * 1 / 6.001); }
  .uk-child-width-10\%\@l > * { width: calc(100% * 1 / 10.001); }
  
  .uk-child-width-10\%\@l > * { width: 10%; }
  .uk-child-width-15\%\@l > * { width: 15%; }  
  .uk-child-width-20\%\@l > * { width: 20%; }  
  .uk-child-width-30\%\@l > * { width: 30%; }  
  .uk-child-width-40\%\@l > * { width: 40%; }
  .uk-child-width-50\%\@l > * { width: 50%; }
  .uk-child-width-60\%\@l > * { width: 60%; }
  .uk-child-width-70\%\@l > * { width: 70%; }
  .uk-child-width-50\%\@l > * { width: 80%; }
  .uk-child-width-60\%\@l > * { width: 90%; }
  .uk-child-width-70\%\@l > * { width: 100%; }
  /* +++++++++++++++++++++++++++++++++ */ 
  
  .uk-child-width-expand\@l > :not([class*='uk-width']) {
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    min-width: 0;
    flex-basis: 1px;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-child-width-1-1\@xl > * {
    width: 100%;
  }
  .uk-child-width-1-2\@xl > * {
    width: 50%;
  }
  .uk-child-width-1-3\@xl > * {
    width: calc(100% * 1 / 3.001);
  }
  .uk-child-width-1-4\@xl > * {
    width: 25%;
  }
  .uk-child-width-1-5\@xl > * {
    width: 20%;
  }
  .uk-child-width-1-6\@xl > * {
    width: calc(100% * 1 / 6.001);
  }
  .uk-child-width-auto\@xl > * {
    width: auto;
  }
  .uk-child-width-expand\@xl > * {
    width: 1px;
  }
  
/*** User Custom 24分割まで拡張 ***/
  .uk-child-width-1-7\@xl > * { width: calc(100% * 1 / 7.001); }
  .uk-child-width-1-8\@xl > * { width: calc(100% * 1 / 8.001); }
  .uk-child-width-1-9\@xl > * { width: calc(100% * 1 / 9.001); }
  .uk-child-width-1-10\@xl > * { width: calc(100% * 1 / 10.001); }
  .uk-child-width-1-11\@xl > * { width: calc(100% * 1 / 11.001); }
  .uk-child-width-1-12\@xl > * { width: calc(100% * 1 / 12.001); }
  .uk-child-width-1-24\@xl > * { width: calc(100% * 1 / 24.001); }
  /*** User Custom パーセント指定 ***/
  .uk-child-width-50\%\@xl > * { width: 50%; }
  .uk-child-width-33\%\@xl > * { width: calc(100% * 1 / 3.001); }
  .uk-child-width-25\%\@xl > * { width: 25%; }
  .uk-child-width-20\%\@xl > * { width: 20%; }
  .uk-child-width-16\%\@xl > * { width: calc(100% * 1 / 6.001); }
  .uk-child-width-10\%\@xl > * { width: calc(100% * 1 / 10.001); }
/* +++++++++++++++++++++++++++++++++ */ 
  
  .uk-child-width-expand\@xl > :not([class*='uk-width']) {
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    min-width: 0;
    flex-basis: 1px;
  }
}



/* タブレット、スマートフォン横 */
@media only screen and (max-width: 768px) {
  .uk-child-width-1-1\@s\! > *   { width: 100%; }
  .uk-child-width-1-2\@s\! > * { width: 50%; }
  .uk-child-width-1-3\@s\! > * { width: calc(100% * 1 / 3.001); }
  .uk-child-width-1-4\@s\! > * { width: 25%; }
  .uk-child-width-1-5\@s\! > * { width: 20%; }
  .uk-child-width-1-6\@s\! > * { width: calc(100% * 1 / 6.001); }
  /*** User Custom 24分割まで拡張 ***/
  .uk-child-width-1-7\@s\! > * { width: calc(100% * 1 / 7.001); }
  .uk-child-width-1-8\@s\! > * { width: calc(100% * 1 / 8.001); }
  .uk-child-width-1-9\@s\! > * { width: calc(100% * 1 / 9.001); }
  .uk-child-width-1-10\@s\! > * { width: calc(100% * 1 / 10.001); }
  .uk-child-width-1-11\@s\! > * { width: calc(100% * 1 / 11.001); }
  .uk-child-width-1-12\@s\! > * { width: calc(100% * 1 / 12.001); }
  .uk-child-width-1-24\@s\! > * { width: calc(100% * 1 / 24.001); }
  /*** User Custom パーセント指定 ***/
  .uk-child-width-50\%\@s\! > * { width: 50%; }
  .uk-child-width-33\%\@s\! > * { width: calc(100% * 1 / 3.001); }
  .uk-child-width-25\%\@s\! > * { width: 25%; }
  .uk-child-width-20\%\@s\! > * { width: 20%; }
  .uk-child-width-16\%\@s\! > * { width: calc(100% * 1 / 6.001); }
  .uk-child-width-10\%\@s\! > * { width: calc(100% * 1 / 10.001); }
  .uk-child-width-auto\@s\! > * { width: auto; }
  .uk-child-width-expand\@s\! > * { width: 1px; }
  .uk-child-width-expand\@s\! > :not([class*='uk-width']) {
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    min-width: 0;
    flex-basis: 1px;
  }
}

/** スマートフォン **/
@media only screen and (max-width: 540px) {
  .uk-child-width-1-1\@xs\! > * { width: 100%; }
  .uk-child-width-1-2\@xs\! > * { width: 50%; }
  .uk-child-width-1-3\@xs\! > * { width: calc(100% * 1 / 3.001); }
  .uk-child-width-1-4\@xs\! > * { width: 25%; }
  .uk-child-width-1-5\@xs\! > * { width: 20%; }
  .uk-child-width-1-6\@xs\! > * { width: calc(100% * 1 / 6.001); }
  /*** User Custom 24分割まで拡張 ***/
  .uk-child-width-1-7\@xs\! > * { width: calc(100% * 1 / 7.001); }
  .uk-child-width-1-8\@xs\! > * { width: calc(100% * 1 / 8.001); }
  .uk-child-width-1-9\@xs\! > * { width: calc(100% * 1 / 9.001); }
  .uk-child-width-1-10\@xs\! > * { width: calc(100% * 1 / 10.001); }
  .uk-child-width-1-11\@xs\! > * { width: calc(100% * 1 / 11.001); }
  .uk-child-width-1-12\@xs\! > * { width: calc(100% * 1 / 12.001); }
  .uk-child-width-1-24\@xs\! > * { width: calc(100% * 1 / 24.001); }
  /*** User Custom パーセント指定 ***/
  .uk-child-width-100\%\@xs\! > * { width: 100%; }
  .uk-child-width-50\%\@xs\! > * { width: 50%; }
  .uk-child-width-33\%\@xs\! > * { width: calc(100% * 1 / 3.001); }
  .uk-child-width-25\%\@xs\! > * { width: 25%; }
  .uk-child-width-20\%\@xs\! > * { width: 20%; }
  .uk-child-width-16\%\@xs\! > * { width: calc(100% * 1 / 6.001); }
  .uk-child-width-10\%\@xs\! > * { width: calc(100% * 1 / 10.001); }
  .uk-child-width-auto\@xs\! > * { width: auto; }
  .uk-child-width-expand\@xs\! > * { width: 1px; }
  .uk-child-width-expand\@xs\! > :not([class*='uk-width']) {
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    min-width: 0;
    flex-basis: 1px;
  }
}


/* Single Widths
 ========================================================================== */
/*
 * 1. `max-width` is needed for the pixel-based classes
 */
[class*='uk-width'] {
  box-sizing: border-box;
  width: 100%;
  /* 1 */
  max-width: 100%;
}
/* Halves */
.uk-width-1-2 {
  width: 50%;
}
/* Thirds */
.uk-width-1-3 {
  width: calc(100% * 1 / 3.001);
}
.uk-width-2-3 {
  width: calc(100% * 2 / 3.001);
}
/* Quarters */
.uk-width-1-4 {
  width: 25%;
}
.uk-width-3-4 {
  width: 75%;
}
/* Fifths */
.uk-width-1-5 {
  width: 20%;
}
.uk-width-2-5 {
  width: 40%;
}
.uk-width-3-5 {
  width: 60%;
}
.uk-width-4-5 {
  width: 80%;
}
/* Sixths */
.uk-width-1-6 {
  width: calc(100% * 1 / 6.001);
}
.uk-width-5-6 {
  width: calc(100% * 5 / 6.001);
}

/* Pixel */
.uk-width-small {
  width: 150px;
}
.uk-width-medium {
  width: 300px;
}
.uk-width-large {
  width: 450px;
}
.uk-width-xlarge {
  width: 600px;
}
.uk-width-xxlarge {
  width: 750px;
}

/* Auto */
.uk-width-auto {
  width: auto;
}
/* Expand */
.uk-width-expand {
  width: 1px;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  min-width: 0;
  flex-basis: 1px;
}
/*** User Custom 24分割まで拡張 ***/
.uk-width-1-7 { width: calc(100% * 1 / 7.001); }
.uk-width-3-7 { width: calc(100% * 3 / 7.001); }
.uk-width-4-7 { width: calc(100% * 4 / 7.001); }
.uk-width-6-7 { width: calc(100% * 6 / 7.001); }
.uk-width-1-8 {width: calc(100% * 1 / 8.001); }
.uk-width-5-8 {width: calc(100% * 5 / 8.001); }
.uk-width-7-8 {width: calc(100% * 7 / 8.001); }
.uk-width-1-9 { width: calc(100% * 1 / 9.001); }
.uk-width-2-9 { width: calc(100% * 2 / 9.001); }
.uk-width-4-9 { width: calc(100% * 4 / 9.001); }
.uk-width-5-9 { width: calc(100% * 5 / 9.001); }
.uk-width-7-9 { width: calc(100% * 7 / 9.001); }
.uk-width-8-9 { width: calc(100% * 8 / 9.001); }
.uk-width-1-10 { width: calc(100% * 1 / 10.001); }
.uk-width-3-10 { width: calc(100% * 3 / 10.001); }
.uk-width-9-10 { width: calc(100% * 9 / 10.001); }
.uk-width-1-11 { width: calc(100% * 1 / 11.001); }
.uk-width-1-12 { width: calc(100% * 1 / 12.001); }
.uk-width-2-12 { width: calc(100% * 2 / 12.001); }
.uk-width-3-12 { width: calc(100% * 3 / 12.001); }
.uk-width-4-12 { width: calc(100% * 4 / 12.001); }
.uk-width-5-12 { width: calc(100% * 5 / 12.001); }
.uk-width-6-12 { width: calc(100% * 6 / 12.001); }
.uk-width-7-12 { width: calc(100% * 7 / 12.001); }
.uk-width-8-12 { width: calc(100% * 8 / 12.001); }
.uk-width-9-12 { width: calc(100% * 9 / 12.001); }
.uk-width-10-12 { width: calc(100% * 10 / 12.001); }
.uk-width-11-12 { width: calc(100% * 11 / 12.001); }
.uk-width-12-12 { width: calc(100% * 12 / 12.001); }
.uk-width-1-24 { width: calc(100% * 1 / 24.001); }
.uk-width-5-24 { width: calc(100% * 5 / 24.001); }

/*** User Custom パーセント指定 ***/
.uk-width-5\% { width: calc(100% * 1 / 5.001); }
.uk-width-10\% { width: calc(100% * 1 / 10.001); }
.uk-width-15\%\ { width: calc(100% * 1 / 15.001); }
.uk-width-16\%\ { width: calc(100% * 1 / 16.001); }
.uk-width-20\% { width: 20%; }
.uk-width-25\% { width: 25%; }
.uk-width-30\% { width: 30%; }
.uk-width-33\% { width: calc(100% * 1 / 3.001); }
.uk-width-40\% { width: 40%; }
.uk-width-45\% { width: 45%; }
.uk-width-50\% { width: 50%; }
.uk-width-55\% { width: 55%; }
.uk-width-60\% { width: 60%; }
.uk-width-65\% { width: 65%; }
.uk-width-70\% { width: 70%; }
.uk-width-75\% { width: 75%; }
.uk-width-80\% { width: 80%; }
.uk-width-85\% { width: 85%; }
.uk-width-90\% { width: 90%; }
.uk-width-95\% { width: 95%; }
.uk-width-100\% { width: 100%; }

/*** ピクセル指定 ***/
.uk-width-5px { width: 5px; }
.uk-width-10px { width: 10px; }
.uk-width-15px { width: 15px; }
.uk-width-20px { width: 20px; }
.uk-width-25px { width: 25px; }
.uk-width-30px { width: 30px; }


/* Phone landscape and bigger */
@media (min-width: 541px) {
  /* Whole */
  .uk-width-1-1\@s {
    width: 100%;
  }
  /* Halves */
  .uk-width-1-2\@s {
    width: 50%;
  }
  /* Thirds */
  .uk-width-1-3\@s {
    width: calc(100% * 1 / 3.001);
  }
  .uk-width-2-3\@s {
    width: calc(100% * 2 / 3.001);
  }
  /* Quarters */
  .uk-width-1-4\@s {
    width: 25%;
  }
  .uk-width-3-4\@s {
    width: 75%;
  }
  /* Fifths */
  .uk-width-1-5\@s {
    width: 20%;
  }
  .uk-width-2-5\@s {
    width: 40%;
  }
  .uk-width-3-5\@s {
    width: 60%;
  }
  .uk-width-4-5\@s {
    width: 80%;
  }
  /* Sixths */
  .uk-width-1-6\@s {
    width: calc(100% * 1 / 6.001);
  }
  .uk-width-5-6\@s {
    width: calc(100% * 5 / 6.001);
  }
  /* Pixel */
  .uk-width-small\@s {
    width: 150px;
  }
  .uk-width-medium\@s {
    width: 300px;
  }
  .uk-width-large\@s {
    width: 450px;
  }
  .uk-width-xlarge\@s {
    width: 600px;
  }
  .uk-width-xxlarge\@s {
    width: 750px;
  }
  /* Auto */
  .uk-width-auto\@s {
    width: auto;
  }
  /* Expand */
  .uk-width-expand\@s {
    width: 1px;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    min-width: 0;
    flex-basis: 1px;
  }
  
  /*** User Custom 24分割まで拡張 ***/
  .uk-width-1-7\@s { width: calc(100% * 1 / 7.001); }
  .uk-width-3-7\@s { width: calc(100% * 3 / 7.001); }
  .uk-width-4-7\@s { width: calc(100% * 4 / 7.001); }
  .uk-width-6-7\@s { width: calc(100% * 6 / 7.001); }
  .uk-width-1-8\@s {width: calc(100% * 1 / 8.001);  }
  .uk-width-5-8\@s {width: calc(100% * 5 / 8.001);  }
  .uk-width-7-8\@s {width: calc(100% * 7 / 8.001);  }
  .uk-width-1-9\@s { width: calc(100% * 1 / 9.001); }
  .uk-width-2-9\@s { width: calc(100% * 2 / 9.001); }
  .uk-width-4-9\@s { width: calc(100% * 4 / 9.001); }
  .uk-width-5-9\@s { width: calc(100% * 5 / 9.001); }
  .uk-width-7-9\@s { width: calc(100% * 7 / 9.001); }
  .uk-width-8-9\@s { width: calc(100% * 8 / 9.001); }
  .uk-width-1-10\@s { width: calc(100% * 1 / 10.001); }
  .uk-width-3-10\@s { width: calc(100% * 3 / 10.001); }
  .uk-width-9-10\@s { width: calc(100% * 9 / 10.001); }
  .uk-width-1-11\@s { width: calc(100% * 1 / 11.001); }
  .uk-width-1-12\@s { width: calc(100% * 1 / 12.001); }
  .uk-width-2-12\@s { width: calc(100% * 2 / 12.001); }
  .uk-width-3-12\@s { width: calc(100% * 3 / 12.001); }
  .uk-width-4-12\@s { width: calc(100% * 4 / 12.001); }
  .uk-width-5-12\@s { width: calc(100% * 5 / 12.001); }
  .uk-width-6-12\@s { width: calc(100% * 6 / 12.001); }
  .uk-width-7-12\@s { width: calc(100% * 7 / 12.001); }
  .uk-width-8-12\@s { width: calc(100% * 8 / 12.001); }
  .uk-width-9-12\@s { width: calc(100% * 9 / 12.001); }
  .uk-width-10-12\@s { width: calc(100% * 10 / 12.001); }
  .uk-width-11-12\@s { width: calc(100% * 11 / 12.001); }
  .uk-width-12-12\@s { width: calc(100% * 12 / 12.001); }
  .uk-width-1-24\@s { width: calc(100% * 1 / 24.001); }
  .uk-width-5-24\@s { width: calc(100% * 5 / 24.001); }

  /*** User Custom パーセント指定 ***/
  .uk-width-5\%\@s { width: calc(100% * 1 / 5.001); }
  .uk-width-10\%\@s { width: calc(100% * 1 / 10.001); }
  .uk-width-15\%\@s { width: calc(100% * 1 / 15.001); }
  .uk-width-16\%\@s { width: calc(100% * 1 / 16.001); }
  .uk-width-20\%\@s { width: 20%; }
  .uk-width-25\%\@s { width: 25%; }
  .uk-width-30\%\@s { width: 30%; }
  .uk-width-33\%\@s { width: calc(100% * 1 / 3.001); }
  .uk-width-35\%\@s { width: 35%; }
  .uk-width-40\%\@s { width: 40%; }
  .uk-width-45\%\@s { width: 45%; }
  .uk-width-50\%\@s { width: 50%; }
  .uk-width-55\%\@s { width: 55%; }
  .uk-width-60\%\@s { width: 60%; }
  .uk-width-65\%\@s { width: 65%; }
  .uk-width-70\%\@s { width: 70%; }
  .uk-width-75\%\@s { width: 75%; }
  .uk-width-80\%\@s { width: 80%; }
  .uk-width-85\%\@s { width: 85%; }
  .uk-width-90\%\@s { width: 90%; }
  .uk-width-95\%\@s { width: 95%; }
  .uk-width-100\%\@s { width: 100%; }
  
  
  /*** ピクセル指定 ***/
  .uk-width-5px\@s { width: 5px; }
  .uk-width-10px\@s { width: 10px; }
  .uk-width-15px\@s { width: 15px; }
  .uk-width-20px\@s { width: 20px; }
  .uk-width-25px\@s { width: 25px; }
  .uk-width-30px\@s { width: 30px; }
  
  

}
/* Tablet landscape and bigger */
@media (min-width: 769px) {
  /* Whole */
  .uk-width-1-1\@m {
    width: 100%;
  }
  /* Halves */
  .uk-width-1-2\@m {
    width: 50%;
  }
  /* Thirds */
  .uk-width-1-3\@m {
    width: calc(100% * 1 / 3.001);
  }
  .uk-width-2-3\@m {
    width: calc(100% * 2 / 3.001);
  }
  /* Quarters */
  .uk-width-1-4\@m {
    width: 25%;
  }
  .uk-width-3-4\@m {
    width: 75%;
  }
  /* Fifths */
  .uk-width-1-5\@m {
    width: 20%;
  }
  .uk-width-2-5\@m {
    width: 40%;
  }
  .uk-width-3-5\@m {
    width: 60%;
  }
  .uk-width-4-5\@m {
    width: 80%;
  }
  /* Sixths */
  .uk-width-1-6\@m {
    width: calc(100% * 1 / 6.001);
  }
  .uk-width-5-6\@m {
    width: calc(100% * 5 / 6.001);
  }
  /* Pixel */
  .uk-width-small\@m {
    width: 150px;
  }
  .uk-width-medium\@m {
    width: 300px;
  }
  .uk-width-large\@m {
    width: 450px;
  }
  .uk-width-xlarge\@m {
    width: 600px;
  }
  .uk-width-xxlarge\@m {
    width: 750px;
  }
  /* Auto */
  .uk-width-auto\@m {
    width: auto;
  }
  /* Expand */
  .uk-width-expand\@m {
    width: 1px;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    min-width: 0;
    flex-basis: 1px;
  }

  /*** User Custom 24分割まで拡張 ***/
  .uk-width-1-7\@m { width: calc(100% * 1 / 7.001); }
  .uk-width-1-8\@m {width: calc(100% * 1 / 8.001);  }
  .uk-width-1-9\@m { width: calc(100% * 1 / 9.001); }
  .uk-width-1-10\@m { width: calc(100% * 1 / 10.001); }
  .uk-width-1-11\@m { width: calc(100% * 1 / 11.001); }
  .uk-width-1-12\@m { width: calc(100% * 1 / 12.001); }
  .uk-width-2-12\@m { width: calc(100% * 2 / 12.001); }
  .uk-width-3-12\@m { width: calc(100% * 3 / 12.001); }
  .uk-width-4-12\@m { width: calc(100% * 4 / 12.001); }
  .uk-width-5-12\@m { width: calc(100% * 5 / 12.001); }
  .uk-width-6-12\@m { width: calc(100% * 6 / 12.001); }
  .uk-width-7-12\@m { width: calc(100% * 7 / 12.001); }
  .uk-width-8-12\@m { width: calc(100% * 8 / 12.001); }
  .uk-width-9-12\@m { width: calc(100% * 9 / 12.001); }
  .uk-width-10-12\@m { width: calc(100% * 10 / 12.001); }
  .uk-width-11-12\@m { width: calc(100% * 11 / 12.001); }
  .uk-width-12-12\@m { width: calc(100% * 12 / 12.001); }
  .uk-width-1-24\@m { width: calc(100% * 1 / 24.001); }

  
  /*** User Custom パーセント指定 ***/
  .uk-width-5\%\@m { width: calc(100% * 1 / 5.001); }
  .uk-width-10\%\@m { width: calc(100% * 1 / 10.001); }
  .uk-width-15\%\@m { width: calc(100% * 1 / 15.001); }
  .uk-width-16\%\@m { width: calc(100% * 1 / 16.001); }
  .uk-width-20\%\@m { width: 20%; }
  .uk-width-25\%\@m { width: 25%; }
  .uk-width-30\%\@m { width: 30%; }
  .uk-width-33\%\@m { width: calc(100% * 1 / 3.001); }
  .uk-width-35\%\@m { width: 35%; }
  .uk-width-40\%\@m { width: 40%; }
  .uk-width-50\%\@m { width: 50%; }  
  .uk-width-45\%\@m { width: 45%; }
  .uk-width-50\%\@m { width: 50%; }
  .uk-width-55\%\@m { width: 55%; }
  .uk-width-60\%\@m { width: 60%; }
  .uk-width-65\%\@m { width: 65%; }
  .uk-width-70\%\@m { width: 70%; }
  .uk-width-75\%\@m { width: 75%; }
  .uk-width-80\%\@m { width: 80%; }
  .uk-width-85\%\@m { width: 85%; }
  .uk-width-90\%\@m { width: 90%; }
  .uk-width-95\%\@m { width: 95%; }
  .uk-width-100\%\@m { width: 100%; }
  
  /*** ピクセル指定 ***/
  .uk-width-5px\@m { width: 5px; }
  .uk-width-10px\@m { width: 10px; }
  .uk-width-15px\@m { width: 15px; }
  .uk-width-20px\@m { width: 20px; }
  .uk-width-25px\@m { width: 25px; }
  .uk-width-30px\@m { width: 30px; }
    
  
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Whole */
  .uk-width-1-1\@l {
    width: 100%;
  }
  /* Halves */
  .uk-width-1-2\@l {
    width: 50%;
  }
  /* Thirds */
  .uk-width-1-3\@l {
    width: calc(100% * 1 / 3.001);
  }
  .uk-width-2-3\@l {
    width: calc(100% * 2 / 3.001);
  }
  /* Quarters */
  .uk-width-1-4\@l {
    width: 25%;
  }
  .uk-width-3-4\@l {
    width: 75%;
  }
  /* Fifths */
  .uk-width-1-5\@l {
    width: 20%;
  }
  .uk-width-2-5\@l {
    width: 40%;
  }
  .uk-width-3-5\@l {
    width: 60%;
  }
  .uk-width-4-5\@l {
    width: 80%;
  }
  /* Sixths */
  .uk-width-1-6\@l {
    width: calc(100% * 1 / 6.001);
  }
  .uk-width-5-6\@l {
    width: calc(100% * 5 / 6.001);
  }
  /* Pixel */
  .uk-width-small\@l {
    width: 150px;
  }
  .uk-width-medium\@l {
    width: 300px;
  }
  .uk-width-large\@l {
    width: 450px;
  }
  .uk-width-xlarge\@l {
    width: 600px;
  }
  .uk-width-xxlarge\@l {
    width: 750px;
  }
  /* Auto */
  .uk-width-auto\@l {
    width: auto;
  }
  /* Expand */
  .uk-width-expand\@l {
    width: 1px;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    min-width: 0;
    flex-basis: 1px;
  }
  

  /*** User Custom 24分割まで拡張 ***/
  .uk-width-1-7\@l { width: calc(100% * 1 / 7.001); }
  .uk-width-1-8\@l {width: calc(100% * 1 / 8.001);  }
  .uk-width-1-9\@l { width: calc(100% * 1 / 9.001); }
  .uk-width-1-10\@l { width: calc(100% * 1 / 10.001); }
  .uk-width-1-11\@l { width: calc(100% * 1 / 11.001); }
  .uk-width-1-12\@l { width: calc(100% * 1 / 12.001); }
  .uk-width-2-12\@l { width: calc(100% * 2 / 12.001); }
  .uk-width-3-12\@l { width: calc(100% * 3 / 12.001); }
  .uk-width-4-12\@l { width: calc(100% * 4 / 12.001); }
  .uk-width-5-12\@l { width: calc(100% * 5 / 12.001); }
  .uk-width-6-12\@l { width: calc(100% * 6 / 12.001); }
  .uk-width-7-12\@l { width: calc(100% * 7 / 12.001); }
  .uk-width-8-12\@l { width: calc(100% * 8 / 12.001); }
  .uk-width-9-12\@l { width: calc(100% * 9 / 12.001); }
  .uk-width-10-12\@l { width: calc(100% * 10 / 12.001); }
  .uk-width-11-12\@l { width: calc(100% * 11 / 12.001); }
  .uk-width-12-12\@l { width: calc(100% * 12 / 12.001); }
  .uk-width-1-24\@l { width: calc(100% * 1 / 24.001); }

  /*** User Custom パーセント指定 ***/
  .uk-width-10\%\@l { width: calc(100% * 1 / 10.001); }
  .uk-width-16\%\@l { width: calc(100% * 1 / 6.001); }
  .uk-width-20\%\@l { width: 20%; }
  .uk-width-25\%\@l { width: 25%; }
  .uk-width-33\%\@l { width: calc(100% * 1 / 3.001); }
  .uk-width-35\%\@l { width: 35%; }
  .uk-width-40\%\@l { width: 40%; }
  .uk-width-45\%\@l { width: 45%; }
  .uk-width-50\%\@l { width: 50%; }
  .uk-width-55\%\@l { width: 55%; }
  .uk-width-60\%\@l { width: 60%; }
  .uk-width-65\%\@l { width: 65%; }
  .uk-width-70\%\@l { width: 70%; }
  .uk-width-75\%\@l { width: 75%; }
  .uk-width-80\%\@l { width: 80%; }
  .uk-width-85\%\@l { width: 85%; }
  .uk-width-90\%\@l { width: 90%; }
  .uk-width-95\%\@l { width: 95%; }
  .uk-width-100\%\@l { width: 100%; }
  
  
    
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  /* Whole */
  .uk-width-1-1\@xl {
    width: 100%;
  }
  /* Halves */
  .uk-width-1-2\@xl {
    width: 50%;
  }
  /* Thirds */
  .uk-width-1-3\@xl {
    width: calc(100% * 1 / 3.001);
  }
  .uk-width-2-3\@xl {
    width: calc(100% * 2 / 3.001);
  }
  /* Quarters */
  .uk-width-1-4\@xl {
    width: 25%;
  }
  .uk-width-3-4\@xl {
    width: 75%;
  }
  /* Fifths */
  .uk-width-1-5\@xl {
    width: 20%;
  }
  .uk-width-2-5\@xl {
    width: 40%;
  }
  .uk-width-3-5\@xl {
    width: 60%;
  }
  .uk-width-4-5\@xl {
    width: 80%;
  }
  /* Sixths */
  .uk-width-1-6\@xl {
    width: calc(100% * 1 / 6.001);
  }
  .uk-width-5-6\@xl {
    width: calc(100% * 5 / 6.001);
  }
  /* Pixel */
  .uk-width-small\@xl {
    width: 150px;
  }
  .uk-width-medium\@xl {
    width: 300px;
  }
  .uk-width-large\@xl {
    width: 450px;
  }
  .uk-width-xlarge\@xl {
    width: 600px;
  }
  .uk-width-xxlarge\@xl {
    width: 750px;
  }
  /* Auto */
  .uk-width-auto\@xl {
    width: auto;
  }
  /* Expand */
  .uk-width-expand\@xl {
    width: 1px;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    min-width: 0;
    flex-basis: 1px;
  }

  /*** User Custom 24分割まで拡張 ***/
  .uk-width-1-7\@xl { width: calc(100% * 1 / 7.001); }
  .uk-width-1-8\@xl {width: calc(100% * 1 / 8.001);  }
  .uk-width-1-9\@xl { width: calc(100% * 1 / 9.001); }
  .uk-width-1-10\@xl { width: calc(100% * 1 / 10.001); }
  .uk-width-1-11\@xl { width: calc(100% * 1 / 11.001); }
  .uk-width-1-12\@xl { width: calc(100% * 1 / 12.001); }
  .uk-width-2-12\@xl { width: calc(100% * 2 / 12.001); }
  .uk-width-3-12\@xl { width: calc(100% * 3 / 12.001); }
  .uk-width-4-12\@xl { width: calc(100% * 4 / 12.001); }
  .uk-width-5-12\@xl { width: calc(100% * 5 / 12.001); }
  .uk-width-6-12\@xl { width: calc(100% * 6 / 12.001); }
  .uk-width-7-12\@xl { width: calc(100% * 7 / 12.001); }
  .uk-width-8-12\@xl { width: calc(100% * 8 / 12.001); }
  .uk-width-9-12\@xl { width: calc(100% * 9 / 12.001); }
  .uk-width-10-12\@xl { width: calc(100% * 10 / 12.001); }
  .uk-width-11-12\@xl { width: calc(100% * 11 / 12.001); }
  .uk-width-12-12\@xl { width: calc(100% * 12 / 12.001); }
  .uk-width-1-24\@xl { width: calc(100% * 1 / 24.001); }
  /*** User Custom パーセント指定 ***/
  .uk-width-10\%\@xl { width: calc(100% * 1 / 10.001); }
  .uk-width-16\%\@xl { width: calc(100% * 1 / 6.001); }
  .uk-width-20\%\@xl { width: 20%; }
  .uk-width-25\%\@xl { width: 25%; }
  .uk-width-33\%\@xl { width: calc(100% * 1 / 3.001); }
  .uk-width-35\%\@xl { width: 35%; }
  .uk-width-40\%\@xl { width: 40%; }
  .uk-width-45\%\@xl { width: 45%; }
  .uk-width-50\%\@xl { width: 50%; }
  .uk-width-55\%\@xl { width: 55%; }
  .uk-width-60\%\@xl { width: 60%; }
  .uk-width-65\%\@xl { width: 65%; }
  .uk-width-70\%\@xl { width: 70%; }
  .uk-width-75\%\@xl { width: 75%; }
  .uk-width-80\%\@xl { width: 80%; }
  .uk-width-85\%\@xl { width: 85%; }
  .uk-width-90\%\@xl { width: 90%; }
  .uk-width-95\%\@xl { width: 95%; }
  .uk-width-100\%\@xl { width: 100%; }
    
}


/** User Custom - シングルサイズ指定 **/

@media only screen and (max-width: 768px) {
  /* Whole */
  .uk-width-1-1\@s\! { width: 100%; }
  /* Halves */
  .uk-width-1-2\@s\! { width: 50%; }
  /* Thirds */
  .uk-width-1-3\@s\! { width: calc(100% * 1 / 3.001); }
  .uk-width-2-3\@s\! { width: calc(100% * 2 / 3.001); }
  /* Quarters */
  .uk-width-1-4\@s\! { width: 25%; }
  .uk-width-3-4\@s\! { width: 75%; }
  /* Fifths */
  .uk-width-1-5\@s\! { width: 20%; }
  .uk-width-2-5\@s\! { width: 40%; }
  .uk-width-3-5\@s\! { width: 60%; }
  .uk-width-4-5\@s\! { width: 80%; }
  /* Sixths */
  .uk-width-1-6\@s\! { width: calc(100% * 1 / 6.001); }
  .uk-width-5-6\@s\! { width: calc(100% * 5 / 6.001); }
  /*** User Custom 24分割まで拡張 ***/
  .uk-width-1-7\@s\! { width: calc(100% * 1 / 7.001); }
  .uk-width-1-8\@s\! {width: calc(100% * 1 / 8.001);  }
  .uk-width-1-9\@s\! { width: calc(100% * 1 / 9.001); }
  .uk-width-1-10\@s\! { width: calc(100% * 1 / 10.001); }
  .uk-width-1-11\@s\! { width: calc(100% * 1 / 11.001); }
  .uk-width-1-12\@s\! { width: calc(100% * 1 / 12.001); }
  .uk-width-2-12\@s\! { width: calc(100% * 2 / 12.001); }
  .uk-width-3-12\@s\! { width: calc(100% * 3 / 12.001); }
  .uk-width-4-12\@s\! { width: calc(100% * 4 / 12.001); }
  .uk-width-5-12\@s\! { width: calc(100% * 5 / 12.001); }
  .uk-width-6-12\@s\! { width: calc(100% * 6 / 12.001); }
  .uk-width-7-12\@s\! { width: calc(100% * 7 / 12.001); }
  .uk-width-8-12\@s\! { width: calc(100% * 8 / 12.001); }
  .uk-width-9-12\@s\! { width: calc(100% * 9 / 12.001); }
  .uk-width-10-12\@s\! { width: calc(100% * 10 / 12.001); }
  .uk-width-11-12\@s\! { width: calc(100% * 11 / 12.001); }
  .uk-width-12-12\@s\! { width: calc(100% * 12 / 12.001); }
  .uk-width-1-24\@s\! { width: calc(100% * 1 / 24.001); }

  .uk-width-10\%\@s\! { width: calc(100% * 1 / 10.001); }
  .uk-width-16\%\@s\! { width: calc(100% * 1 / 6.001); }
  .uk-width-20\%\@s\! { width: 20%; }
  .uk-width-25\%\@s\! { width: 25%; }
  .uk-width-33\%\@s\! { width: calc(100% * 1 / 3.001); }
  .uk-width-35\%\@s\! { width: 35%; }
  .uk-width-40\%\@s\! { width: 40%; }
  .uk-width-45\%\@s\! { width: 45%; }
  .uk-width-50\%\@s\! { width: 50%; }
  .uk-width-55\%\@s\! { width: 55%; }
  .uk-width-60\%\@s\! { width: 60%; }
  .uk-width-65\%\@s\! { width: 65%; }
  .uk-width-70\%\@s\! { width: 70%; }
  .uk-width-75\%\@s\! { width: 75%; }
  .uk-width-80\%\@s\! { width: 80%; }
  .uk-width-85\%\@s\! { width: 85%; }
  .uk-width-90\%\@s\! { width: 90%; }
  .uk-width-95\%\@s\! { width: 95%; }
  .uk-width-100\%\@s\! { width: 100%; }
  
  /* Expand */
  .uk-width-expand\@s\! {
    width: 1px;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    min-width: 0;
    flex-basis: 1px;
  }
}
/** User Custom - スマートフォン **/
@media only screen and (max-width: 540px) {
  /* Whole */
  .uk-width-1-1\@xs\! { width: 100%; }
  /* Halves */
  .uk-width-1-2\@xs\! { width: 50%; }
  /* Thirds */
  .uk-width-1-3\@xs\! { width: calc(100% * 1 / 3.001); }
  .uk-width-2-3\@xs\! { width: calc(100% * 2 / 3.001); }
  /* Quarters */
  .uk-width-1-4\@xs\! { width: 25%; }
  .uk-width-3-4\@xs\! { width: 75%; }
  /* Fifths */
  .uk-width-1-5\@xs\! { width: 20%; }
  .uk-width-2-5\@xs\! { width: 40%; }
  .uk-width-3-5\@xs\! { width: 60%; }
  .uk-width-4-5\@xs\! { width: 80%; }
  /* Sixths */
  .uk-width-1-6\@xs\! { width: calc(100% * 1 / 6.001); }
  .uk-width-5-6\@xs\! { width: calc(100% * 5 / 6.001); }
  /*** User Custom 24分割まで拡張 ***/
  .uk-width-1-7\@xs\! { width: calc(100% * 1 / 7.001); }
  .uk-width-1-8\@xs\! {width: calc(100% * 1 / 8.001);  }
  .uk-width-1-9\@xs\! { width: calc(100% * 1 / 9.001); }
  .uk-width-1-10\@xs\! { width: calc(100% * 1 / 10.001); }
  .uk-width-1-11\@xs\! { width: calc(100% * 1 / 11.001); }
  .uk-width-1-12\@xs\! { width: calc(100% * 1 / 12.001); }
  .uk-width-2-12\@xs\! { width: calc(100% * 2 / 12.001); }
  .uk-width-3-12\@xs\! { width: calc(100% * 3 / 12.001); }
  .uk-width-4-12\@xs\! { width: calc(100% * 4 / 12.001); }
  .uk-width-5-12\@xs\! { width: calc(100% * 5 / 12.001); }
  .uk-width-6-12\@xs\! { width: calc(100% * 6 / 12.001); }
  .uk-width-7-12\@xs\! { width: calc(100% * 7 / 12.001); }
  .uk-width-8-12\@xs\! { width: calc(100% * 8 / 12.001); }
  .uk-width-9-12\@xs\! { width: calc(100% * 9 / 12.001); }
  .uk-width-10-12\@xs\! { width: calc(100% * 10 / 12.001); }
  .uk-width-11-12\@xs\! { width: calc(100% * 11 / 12.001); }
  .uk-width-12-12\@xs\! { width: calc(100% * 12 / 12.001); }
  .uk-width-1-24\@xs\! { width: calc(100% * 1 / 24.001); }
  /*** User Custom パーセント指定 ***/

  .uk-width-10\%\@xs\! { width: calc(100% * 1 / 10.001); }
  .uk-width-16\%\@xs\! { width: calc(100% * 1 / 6.001); }
  .uk-width-20\%\@xs\! { width: 20%; }
  .uk-width-25\%\@xs\! { width: 25%; }
  .uk-width-33\%\@xs\! { width: calc(100% * 1 / 3.001); }
  .uk-width-35\%\@xs\! { width: 35%; }
  .uk-width-40\%\@xs\! { width: 40%; }
  .uk-width-45\%\@xs\! { width: 45%; }
  .uk-width-50\%\@xs\! { width: 50%; }
  .uk-width-55\%\@xs\! { width: 55%; }
  .uk-width-60\%\@xs\! { width: 60%; }
  .uk-width-65\%\@xs\! { width: 65%; }
  .uk-width-70\%\@xs\! { width: 70%; }
  .uk-width-75\%\@xs\! { width: 75%; }
  .uk-width-80\%\@xs\! { width: 80%; }
  .uk-width-85\%\@xs\! { width: 85%; }
  .uk-width-90\%\@xs\! { width: 90%; }
  .uk-width-95\%\@xs\! { width: 95%; }
  .uk-width-100\%\@xs\! { width: 100%; }
  
  /* Expand */
  .uk-width-expand\@xs\! {
    width: 1px;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    min-width: 0;
    flex-basis: 1px;
  }

}


















/* ========================================================================
   Component: Text
 ========================================================================== */
/* Style modifiers
 ========================================================================== */
.uk-text-lead {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #333;
}
.uk-text-meta {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #999;
}
.uk-text-meta a {
  color: #999;
}
.uk-text-meta a:hover {
  color: #666;
  text-decoration: none;
}
/* Size modifiers
 ========================================================================== */
.uk-text-small {
  font-size: 0.875rem;
  line-height: 1.5;
}
.uk-text-large {
  font-size: 1.5rem;
  line-height: 1.5;
}
/* Weight modifier
 ========================================================================== */
.uk-text-bold {
  font-weight: bolder;
}
/* Transform modifier
 ========================================================================== */
.uk-text-uppercase {
  text-transform: uppercase !important;
}
.uk-text-capitalize {
  text-transform: capitalize !important;
}
.uk-text-lowercase {
  text-transform: lowercase !important;
}
/* Color modifiers
 ========================================================================== */
.uk-text-muted {
  color: #999 !important;
}
.uk-text-primary {
  color: #1e87f0 !important;
}
.uk-text-success {
  color: #32d296 !important;
}
.uk-text-warning {
  color: #faa05a !important;
}
.uk-text-danger {
  color: #f0506e !important;
}


/* Alignment modifiers
 ========================================================================== */
.uk-text-left {
  text-align: left !important;
}
.uk-text-right {
  text-align: right !important;
}
.uk-text-center {
  text-align: center !important;
}
.uk-text-justify {
  text-align: justify !important;
}

/* Phone landscape and bigger */
@media (min-width: 541px) {
  .uk-text-left\@s {
    text-align: left !important;
  }
  .uk-text-right\@s {
    text-align: right !important;
  }
  .uk-text-center\@s {
    text-align: center !important;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 769px) {
  .uk-text-left\@m {
    text-align: left !important;
  }
  .uk-text-right\@m {
    text-align: right !important;
  }
  .uk-text-center\@m {
    text-align: center !important;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-text-left\@l {
    text-align: left !important;
  }
  .uk-text-right\@l {
    text-align: right !important;
  }
  .uk-text-center\@l {
    text-align: center !important;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-text-left\@xl {
    text-align: left !important;
  }
  .uk-text-right\@xl {
    text-align: right !important;
  }
  .uk-text-center\@xl {
    text-align: center !important;
  }
}

@media  (max-width: 768px) {
  .uk-text-left\@s\! {
    text-align: left !important;
  }
  .uk-text-right\@s\! {
    text-align: right !important;
  }
  .uk-text-center\@s\! {
    text-align: center !important;
  }
}

@media  (max-width: 540px) {
  .uk-text-left\@xs\! {
    text-align: left !important;
  }
  .uk-text-right\@xs\! {
    text-align: right !important;
  }
  .uk-text-center\@xs\! {
    text-align: center !important;
  }
}

/*
 * Vertical
 */
.uk-text-top {
  vertical-align: top !important;
}
.uk-text-middle {
  vertical-align: middle !important;
}
.uk-text-bottom {
  vertical-align: bottom !important;
}
.uk-text-baseline {
  vertical-align: baseline !important;
}
/* Wrap modifiers
 ========================================================================== */
/*
 * Prevent text from wrapping onto multiple lines
 */
.uk-text-nowrap {
  white-space: nowrap;
}
/*
 * 1. Make sure a max-width is set after which truncation can occur
 * 2. Prevent text from wrapping onto multiple lines, and truncate with an ellipsis
 * 3. Fix for table cells
 */
.uk-text-truncate {
  /* 1 */
  max-width: 100%;
  /* 2 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 2 */
th.uk-text-truncate,
td.uk-text-truncate {
  max-width: 0;
}
/*
 * 1. Wrap long words onto the next line and break them if they are too long to fit
 * 2. Legacy `word-wrap` as fallback for `overflow-wrap`
 * 3. Add a hyphen where the word breaks
 * 4. Fix `overflow-wrap` which doesn't work with table cells in Chrome, Opera, IE11 and Edge
 *    Must use `break-all` to support IE11 and Edge
 */
.uk-text-break {
  /* 1 */
  overflow-wrap: break-word;
  /* 2 */
  word-wrap: break-word;
  /* 3 */
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
/* 4 */
th.uk-text-break,
td.uk-text-break {
  word-break: break-all;
}
/* ========================================================================
   Component: Column
 ========================================================================== */
[class*='uk-column-'] {
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}


/* Desktop and bigger */
@media (min-width: 1200px) {
  [class*='uk-column-'] {
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
}
/* ========================================================================
    カスタム　カラムンギャップ
 ========================================================================== */
[class*='uk-column-'].uk-column-gap-40 {
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
}
[class*='uk-column-'].uk-column-gap-20 {
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
[class*='uk-column-'].uk-column-gap-10 {
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}



/*
 * Fix image 1px line wrapping into the next column in Chrome
 */
[class*='uk-column-'] img {
  transform: translate3d(0, 0, 0);
}
/* Divider
 ========================================================================== */
/*
 * 1. Double the column gap
 */
.uk-column-divider {
  -webkit-column-rule: 1px solid #e5e5e5;
  -moz-column-rule: 1px solid #e5e5e5;
  column-rule: 1px solid #e5e5e5;
  /* 1 */
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  column-gap: 60px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-column-divider {
    -webkit-column-gap: 80px;
    -moz-column-gap: 80px;
    column-gap: 80px;
  }
}
/* Width modifiers
 ========================================================================== */
.uk-column-1-2 {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}
.uk-column-1-3 {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
}
.uk-column-1-4 {
  -webkit-column-count: 4;
  -moz-column-count: 4;
  column-count: 4;
}
.uk-column-1-5 {
  -webkit-column-count: 5;
  -moz-column-count: 5;
  column-count: 5;
}
.uk-column-1-6 {
  -webkit-column-count: 6;
  -moz-column-count: 6;
  column-count: 6;
}
/* Phone landscape and bigger */
@media (min-width: 541px) {
  .uk-column-1-2\@s {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
  .uk-column-1-3\@s {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
  .uk-column-1-4\@s {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }
  .uk-column-1-5\@s {
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
  }
  .uk-column-1-6\@s {
    -webkit-column-count: 6;
    -moz-column-count: 6;
    column-count: 6;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 769px) {
  .uk-column-1-2\@m {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
  .uk-column-1-3\@m {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
  .uk-column-1-4\@m {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }
  .uk-column-1-5\@m {
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
  }
  .uk-column-1-6\@m {
    -webkit-column-count: 6;
    -moz-column-count: 6;
    column-count: 6;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-column-1-2\@l {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
  .uk-column-1-3\@l {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
  .uk-column-1-4\@l {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }
  .uk-column-1-5\@l {
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
  }
  .uk-column-1-6\@l {
    -webkit-column-count: 6;
    -moz-column-count: 6;
    column-count: 6;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-column-1-2\@xl {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
  .uk-column-1-3\@xl {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
  .uk-column-1-4\@xl {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }
  .uk-column-1-5\@xl {
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
  }
  .uk-column-1-6\@xl {
    -webkit-column-count: 6;
    -moz-column-count: 6;
    column-count: 6;
  }
}
/* Make element span across all columns
 * Does not work in Firefox yet
 ========================================================================== */
.uk-column-span {
  -webkit-column-span: all;
  -moz-column-span: all;
  column-span: all;
}

/* ========================================================================
   Component: Align
 ========================================================================== */
/*
 * Default
 */
[class*='uk-align'] {
  display: block;
  margin-bottom: 30px;
}
* + [class*='uk-align'] {
  margin-top: 30px;
}
/*
 * Center
 */
.uk-align-center {
  margin-left: auto;
  margin-right: auto;
}
/*
 * Left/Right
 */
.uk-align-left {
  margin-top: 0;
  margin-right: 30px;
  float: left;
}
.uk-align-right {
  margin-top: 0;
  margin-left: 30px;
  float: right;
}
/* Phone landscape and bigger */
@media (min-width: 541px) {
  .uk-align-left\@s {
    margin-top: 0;
    margin-right: 30px;
    float: left;
  }
  .uk-align-right\@s {
    margin-top: 0;
    margin-left: 30px;
    float: right;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 769px) {
  .uk-align-left\@m {
    margin-top: 0;
    margin-right: 30px;
    float: left;
  }
  .uk-align-right\@m {
    margin-top: 0;
    margin-left: 30px;
    float: right;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-align-left\@l {
    margin-top: 0;
    float: left;
  }
  .uk-align-right\@l {
    margin-top: 0;
    float: right;
  }
  .uk-align-left,
  .uk-align-left\@s,
  .uk-align-left\@m,
  .uk-align-left\@l {
    margin-right: 40px;
  }
  .uk-align-right,
  .uk-align-right\@s,
  .uk-align-right\@m,
  .uk-align-right\@l {
    margin-left: 40px;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-align-left\@xl {
    margin-top: 0;
    margin-right: 40px;
    float: left;
  }
  .uk-align-right\@xl {
    margin-top: 0;
    margin-left: 40px;
    float: right;
  }
}

/* Phone landscape and bigger */
@media (max-width: 540px) {
  .uk-align-center\@xs\! {
    margin-left: auto;
    margin-right: auto;
  }
  /*
   * Left/Right
   */
  .uk-align-left\@xs\! {
    margin-top: 0;
    margin-right: 30px;
    float: left;
  }
  .uk-align-right\@xs\! {
    margin-top: 0;
    margin-left: 30px;
    float: right;
  } 
}


/* Phone landscape and bigger */
@media (max-width: 768px) {
  .uk-align-center\@s\! {
    margin-left: auto;
    margin-right: auto;
  }
  /*
   * Left/Right
   */
  .uk-align-left\@s\! {
    margin-top: 0;
    margin-right: 30px;
    float: left;
  }
  .uk-align-right\@s\! {
    margin-top: 0;
    margin-left: 30px;
    float: right;
  } 
}


/*  alignの隙間を調整する */
[class*='uk-align'] {
  display: block;
  margin-bottom: 20px;
}
* + [class*='uk-align'] {
  margin-top: 20px;
}
[class*='uk-align-left']{
    margin-right: 30px;
}
[class*='uk-align-right']{
    margin-left: 30px;
}

/* ========================================================================
   Component: Utility
 ========================================================================== */
/* Panel
 ========================================================================== */
.uk-panel {
  position: relative;
  box-sizing: border-box;
}
/*
 * Micro clearfix
 */
.uk-panel::before,
.uk-panel::after {
  content: "";
  display: table;
}
.uk-panel::after {
  clear: both;
}
/*
 * Remove margin from the last-child
 */
.uk-panel > :last-child {
  margin-bottom: 0;
}
/*
 * Scrollable
 */
.uk-panel-scrollable {
  height: 170px;
  padding: 10px;
  border: 1px solid #e5e5e5;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  resize: both;
}
/* Clearfix
 ========================================================================== */
/*
 * 1. `table-cell` is used with `::before` because `table` creates a 1px gap when it becomes a flex item, only in Webkit
 * 2. `table` is used again with `::after` because `clear` only works with block elements.
 * Note: `display: block` with `overflow: hidden` is currently not working in the latest Safari
 */
/* 1 */
.uk-clearfix::before {
  content: "";
  display: table-cell;
}
/* 2 */
.uk-clearfix::after {
  content: "";
  display: table;
  clear: both;
}
/* Float
 ========================================================================== */
/*
 * 1. Prevent content overflow
 */
.uk-float-left {
  float: left;
}
.uk-float-right {
  float: right;
}
/* 1 */
[class*='uk-float-'] {
  max-width: 100%;
}

/* Phone landscape and bigger */
@media (min-width: 541px) {
  .uk-float-left\@s {
    float: left;
  }
  .uk-float-right\@s {
    float: right;
  } 
}




/* ========================================================================
   Component: Flex
 ========================================================================== */
.uk-flex {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.uk-flex-inline {
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
}
/*
 * Remove pseudo elements created by micro clearfix as precaution
 */
.uk-flex::before,
.uk-flex::after,
.uk-flex-inline::before,
.uk-flex-inline::after {
  display: none;
}
/* Alignment
 ========================================================================== */
/*
 * Align items along the main axis of the current line of the flex container
 * Row: Horizontal
 */
.uk-flex-left {
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.uk-flex-center {
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.uk-flex-right {
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.uk-flex-between {
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.uk-flex-around {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
/* Phone landscape and bigger */
@media (min-width: 541px) {
  .uk-flex-left\@s {
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .uk-flex-center\@s {
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .uk-flex-right\@s {
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  .uk-flex-between\@s {
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .uk-flex-around\@s {
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 769px) {
  .uk-flex-left\@m {
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .uk-flex-center\@m {
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .uk-flex-right\@m {
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  .uk-flex-between\@m {
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .uk-flex-around\@m {
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-flex-left\@l {
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .uk-flex-center\@l {
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .uk-flex-right\@l {
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  .uk-flex-between\@l {
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .uk-flex-around\@l {
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-flex-left\@xl {
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .uk-flex-center\@xl {
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .uk-flex-right\@xl {
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  .uk-flex-between\@xl {
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .uk-flex-around\@xl {
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
}
/*
 * Align items in the cross axis of the current line of the flex container
 * Row: Vertical
 */
.uk-flex-stretch {
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.uk-flex-top {
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.uk-flex-middle {
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.uk-flex-bottom {
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
/* Direction
 ========================================================================== */
.uk-flex-row {
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.uk-flex-row-reverse {
  -ms-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.uk-flex-column {
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.uk-flex-column-reverse {
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
/* Wrap
 ========================================================================== */
.uk-flex-nowrap {
  -ms-flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.uk-flex-wrap {
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.uk-flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
  -webkit-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}
/*
 * Aligns items within the flex container when there is extra space in the cross-axis
 * Only works if there is more than one line of flex items
 */
.uk-flex-wrap-stretch {
  -ms-flex-line-pack: stretch;
  -webkit-align-content: stretch;
  align-content: stretch;
}
.uk-flex-wrap-top {
  -ms-flex-line-pack: start;
  -webkit-align-content: flex-start;
  align-content: flex-start;
}
.uk-flex-wrap-middle {
  -ms-flex-line-pack: center;
  -webkit-align-content: center;
  align-content: center;
}
.uk-flex-wrap-bottom {
  -ms-flex-line-pack: end;
  -webkit-align-content: flex-end;
  align-content: flex-end;
}
.uk-flex-wrap-between {
  -ms-flex-line-pack: justify;
  -webkit-align-content: space-between;
  align-content: space-between;
}
.uk-flex-wrap-around {
  -ms-flex-line-pack: distribute;
  -webkit-align-content: space-around;
  align-content: space-around;
}
/* Item ordering
 ========================================================================== */
/*
 * Default is 0
 */
.uk-flex-first {
  -ms-flex-order: -1;
  -webkit-order: -1;
  order: -1;
}
.uk-flex-last {
  -ms-flex-order: 99;
  -webkit-order: 99;
  order: 99;
}
/* Phone landscape and bigger */
@media (min-width: 541px) {
  .uk-flex-first\@s {
    -ms-flex-order: -1;
    -webkit-order: -1;
    order: -1;
  }
  .uk-flex-last\@s {
    -ms-flex-order: 99;
    -webkit-order: 99;
    order: 99;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 769px) {
  .uk-flex-first\@m {
    -ms-flex-order: -1;
    -webkit-order: -1;
    order: -1;
  }
  .uk-flex-last\@m {
    -ms-flex-order: 99;
    -webkit-order: 99;
    order: 99;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-flex-first\@l {
    -ms-flex-order: -1;
    -webkit-order: -1;
    order: -1;
  }
  .uk-flex-last\@l {
    -ms-flex-order: 99;
    -webkit-order: 99;
    order: 99;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-flex-first\@xl {
    -ms-flex-order: -1;
    -webkit-order: -1;
    order: -1;
  }
  .uk-flex-last\@xl {
    -ms-flex-order: 99;
    -webkit-order: 99;
    order: 99;
  }
}



@media (max-width: 768px) {
  .uk-flex-first\@s\! {
    -ms-flex-order: -1;
    -webkit-order: -1;
    order: -1;
  }
  .uk-flex-last\@s\! {
    -ms-flex-order: 99;
    -webkit-order: 99;
    order: 99;
  }
}

@media (max-width: 540px) {
  .uk-flex-first\@xs\! {
    -ms-flex-order: -1;
    -webkit-order: -1;
    order: -1;
  }
  .uk-flex-last\@xs\! {
    -ms-flex-order: 99;
    -webkit-order: 99;
    order: 99;
  }
}


/* Item dimensions
 ========================================================================== */
/*
 * Initial: 0 1 auto
 * Content dimensions, but shrinks
 */
/*
 * No Flex: 0 0 auto
 * Content dimensions
 */
.uk-flex-none {
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
}
/*
 * Relative Flex: 1 1 auto
 * Space is allocated considering content
 */
.uk-flex-auto {
  -ms-flex: auto;
  -webkit-flex: auto;
  flex: auto;
}
/*
 * Absolute Flex: 1 1 0%
 * Space is allocated solely based on flex
 */
.uk-flex-1 {
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}


/* ========================================================================
   Component: Visibility
 ========================================================================== */
/*
 * Hidden
 * `hidden` attribute also set here to make it stronger
 */
[hidden],
.uk-hidden {
  display: none !important;
}
/* Phone landscape and bigger */
@media (min-width: 541px) {
  .uk-hidden\@s {
    display: none !important;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 769px) {
  .uk-hidden\@m {
    display: none !important;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .uk-hidden\@l {
    display: none !important;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .uk-hidden\@xl {
    display: none !important;
  }
}
/*
 * Visible
 */
/* Phone portrait and smaller */
@media (max-width: 540px) {
  .uk-visible\@s {
    display: none !important;
  }
}
/* Phone landscape and smaller */
@media (max-width: 959px) {
  .uk-visible\@m {
    display: none !important;
  }
}
/* Tablet landscape and smaller */
@media (max-width: 1199px) {
  .uk-visible\@l {
    display: none !important;
  }
}
/* Desktop and smaller */
@media (max-width: 1599px) {
  .uk-visible\@xl {
    display: none !important;
  }
}
/* Visibility
 ========================================================================== */
.uk-invisible {
  visibility: hidden !important;
}
/* Hover
 ========================================================================== */
/* Hidden */
.uk-visible-toggle:not(:hover):not(.uk-hover) .uk-hidden-hover {
  display: none !important;
}
/* Invisible */
.uk-visible-toggle:not(:hover):not(.uk-hover) .uk-invisible-hover {
  visibility: hidden !important;
}


/* ========================================================================
   Component: Print
 ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}


/*
CUSTOMIZE
*/

/* When offcanvas is shown hide scroll track */
.uk-offcanvas-overlay{
  overflow: hidden!important;
}

