.z-depth-2 {
  -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}

.z-depth-5 {
  -webkit-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.3);
}

.hide {
    display: none;
  }
  
.center, .center-align {
    text-align: center;
}
  
  .left {
    float: left !important;
  }
  
  .right {
    float: right !important;
  }
  

  .valign-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex !important;
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  
  .circle {
    border-radius: 50% !important;
  }



  
  /*
      @license
      Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
      This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
      The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
      The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
      Code distributed by Google as part of the polymer project is also
      subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
   */
  /**************************/
  /* STYLES FOR THE SPINNER */
  /**************************/
  /*
   * Constants:
   *      STROKEWIDTH = 3px
   *      ARCSIZE     = 270 degrees (amount of circle the arc takes up)
   *      ARCTIME     = 1333ms (time it takes to expand and contract arc)
   *      ARCSTARTROT = 216 degrees (how much the start location of the arc
   *                                should rotate each time, 216 gives us a
   *                                5 pointed star shape (it's 360/5 * 3).
   *                                For a 7 pointed star, we might do
   *                                360/7 * 3 = 154.286)
   *      CONTAINERWIDTH = 28px
   *      SHRINK_TIME = 400ms
   */
  .preloader-wrapper {
    display: inline-block;
    position: relative;
    width: 50px;
    height: 50px;
  }
  
  .preloader-wrapper.small {
    width: 36px;
    height: 36px;
  }
  
  .preloader-wrapper.big {
    width: 64px;
    height: 64px;
  }
  
  .preloader-wrapper.active {
    /* duration: 360 * ARCTIME / (ARCSTARTROT + (360-ARCSIZE)) */
    -webkit-animation: container-rotate 1568ms linear infinite;
    animation: container-rotate 1568ms linear infinite;
  }
  
  @-webkit-keyframes container-rotate {
    to {
      -webkit-transform: rotate(360deg);
    }
  }
  
  @keyframes container-rotate {
    to {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
  }
  
  .spinner-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    border-color: #555;
  }
  
  .spinner-blue,
  .spinner-blue-only {
    border-color: #555;
  }
  
  /**
   * IMPORTANT NOTE ABOUT CSS ANIMATION PROPERTIES (keanulee):
   *
   * iOS Safari (tested on iOS 8.1) does not handle animation-delay very well - it doesn't
   * guarantee that the animation will start _exactly_ after that value. So we avoid using
   * animation-delay and instead set custom keyframes for each color (as redundant as it
   * seems).
   *
   * We write out each animation in full (instead of separating animation-name,
   * animation-duration, etc.) because under the polyfill, Safari does not recognize those
   * specific properties properly, treats them as -webkit-animation, and overrides the
   * other animation rules. See https://github.com/Polymer/platform/issues/53.
   */
  .active .spinner-layer.spinner-blue {
    /* durations: 4 * ARCTIME */
    -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, blue-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, blue-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  }
  
 
  
  .active .spinner-layer,
  .active .spinner-layer.spinner-blue-only,
  .active .spinner-layer.spinner-yellow-only,
  .active .spinner-layer.spinner-green-only {
    /* durations: 4 * ARCTIME */
    opacity: 1;
    -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  }
  
  @-webkit-keyframes fill-unfill-rotate {
    12.5% {
      -webkit-transform: rotate(135deg);
    }
    /* 0.5 * ARCSIZE */
    25% {
      -webkit-transform: rotate(270deg);
    }
    /* 1   * ARCSIZE */
    37.5% {
      -webkit-transform: rotate(405deg);
    }
    /* 1.5 * ARCSIZE */
    50% {
      -webkit-transform: rotate(540deg);
    }
    /* 2   * ARCSIZE */
    62.5% {
      -webkit-transform: rotate(675deg);
    }
    /* 2.5 * ARCSIZE */
    75% {
      -webkit-transform: rotate(810deg);
    }
    /* 3   * ARCSIZE */
    87.5% {
      -webkit-transform: rotate(945deg);
    }
    /* 3.5 * ARCSIZE */
    to {
      -webkit-transform: rotate(1080deg);
    }
    /* 4   * ARCSIZE */
  }
  
  @keyframes fill-unfill-rotate {
    12.5% {
      -webkit-transform: rotate(135deg);
              transform: rotate(135deg);
    }
    /* 0.5 * ARCSIZE */
    25% {
      -webkit-transform: rotate(270deg);
              transform: rotate(270deg);
    }
    /* 1   * ARCSIZE */
    37.5% {
      -webkit-transform: rotate(405deg);
              transform: rotate(405deg);
    }
    /* 1.5 * ARCSIZE */
    50% {
      -webkit-transform: rotate(540deg);
              transform: rotate(540deg);
    }
    /* 2   * ARCSIZE */
    62.5% {
      -webkit-transform: rotate(675deg);
              transform: rotate(675deg);
    }
    /* 2.5 * ARCSIZE */
    75% {
      -webkit-transform: rotate(810deg);
              transform: rotate(810deg);
    }
    /* 3   * ARCSIZE */
    87.5% {
      -webkit-transform: rotate(945deg);
              transform: rotate(945deg);
    }
    /* 3.5 * ARCSIZE */
    to {
      -webkit-transform: rotate(1080deg);
              transform: rotate(1080deg);
    }
    /* 4   * ARCSIZE */
  }
  
  @-webkit-keyframes blue-fade-in-out {
    from {
      opacity: 1;
    }
    25% {
      opacity: 1;
    }
    26% {
      opacity: 0;
    }
    89% {
      opacity: 0;
    }
    90% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }
  
  @keyframes blue-fade-in-out {
    from {
      opacity: 1;
    }
    25% {
      opacity: 1;
    }
    26% {
      opacity: 0;
    }
    89% {
      opacity: 0;
    }
    90% {
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }
  
  @-webkit-keyframes red-fade-in-out {
    from {
      opacity: 0;
    }
    15% {
      opacity: 0;
    }
    25% {
      opacity: 1;
    }
    50% {
      opacity: 1;
    }
    51% {
      opacity: 0;
    }
  }
  
  @keyframes red-fade-in-out {
    from {
      opacity: 0;
    }
    15% {
      opacity: 0;
    }
    25% {
      opacity: 1;
    }
    50% {
      opacity: 1;
    }
    51% {
      opacity: 0;
    }
  }
  
  @-webkit-keyframes yellow-fade-in-out {
    from {
      opacity: 0;
    }
    40% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    75% {
      opacity: 1;
    }
    76% {
      opacity: 0;
    }
  }
  
  @keyframes yellow-fade-in-out {
    from {
      opacity: 0;
    }
    40% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    75% {
      opacity: 1;
    }
    76% {
      opacity: 0;
    }
  }
  
  @-webkit-keyframes green-fade-in-out {
    from {
      opacity: 0;
    }
    65% {
      opacity: 0;
    }
    75% {
      opacity: 1;
    }
    90% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  
  @keyframes green-fade-in-out {
    from {
      opacity: 0;
    }
    65% {
      opacity: 0;
    }
    75% {
      opacity: 1;
    }
    90% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  
  /**
   * Patch the gap that appear between the two adjacent div.circle-clipper while the
   * spinner is rotating (appears on Chrome 38, Safari 7.1, and IE 11).
   */
  .gap-patch {
    position: absolute;
    top: 0;
    left: 45%;
    width: 10%;
    height: 100%;
    overflow: hidden;
    border-color: inherit;
  }
  
  .gap-patch .circle {
    width: 1000%;
    left: -450%;
  }
  
  .circle-clipper {
    display: inline-block;
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden;
    border-color: inherit;
  }
  
  .circle-clipper .circle {
    width: 200%;
    height: 100%;
    border-width: 1px;
    /* STROKEWIDTH */
    border-style: solid;
    border-color: inherit;
    border-bottom-color: transparent !important;
    border-radius: 50%;
    -webkit-animation: none;
    animation: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
  }
  
  .circle-clipper.left .circle {
    left: 0;
    border-right-color: transparent !important;
    -webkit-transform: rotate(129deg);
    transform: rotate(129deg);
  }
  
  .circle-clipper.right .circle {
    left: -100%;
    border-left-color: transparent !important;
    -webkit-transform: rotate(-129deg);
    transform: rotate(-129deg);
  }
  
  .active .circle-clipper.left .circle {
    /* duration: ARCTIME */
    -webkit-animation: left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    animation: left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  }
  
  .active .circle-clipper.right .circle {
    /* duration: ARCTIME */
    -webkit-animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  }
  
  @-webkit-keyframes left-spin {
    from {
      -webkit-transform: rotate(130deg);
    }
    50% {
      -webkit-transform: rotate(-5deg);
    }
    to {
      -webkit-transform: rotate(130deg);
    }
  }
  
  @keyframes left-spin {
    from {
      -webkit-transform: rotate(130deg);
              transform: rotate(130deg);
    }
    50% {
      -webkit-transform: rotate(-5deg);
              transform: rotate(-5deg);
    }
    to {
      -webkit-transform: rotate(130deg);
              transform: rotate(130deg);
    }
  }
  
  @-webkit-keyframes right-spin {
    from {
      -webkit-transform: rotate(-130deg);
    }
    50% {
      -webkit-transform: rotate(5deg);
    }
    to {
      -webkit-transform: rotate(-130deg);
    }
  }
  
  @keyframes right-spin {
    from {
      -webkit-transform: rotate(-130deg);
              transform: rotate(-130deg);
    }
    50% {
      -webkit-transform: rotate(5deg);
              transform: rotate(5deg);
    }
    to {
      -webkit-transform: rotate(-130deg);
              transform: rotate(-130deg);
    }
  }
  
  
/* Radio Buttons
   ========================================================================== */
   [type="radio"]:not(:checked),
   [type="radio"]:checked {
     position: absolute;
     opacity: 0;
     pointer-events: none;
   }
   
   [type="radio"]:not(:checked) + label,
   [type="radio"]:checked + label {
     position: relative;
     padding-left: 35px;
     cursor: pointer;
     display: inline-block;
     height: 25px;
     line-height: 25px;
     font-size: 1rem;
     -webkit-transition: .28s ease;
     transition: .28s ease;
     -webkit-user-select: none;
        -moz-user-select: none;
         -ms-user-select: none;
             user-select: none;
   }
   
   [type="radio"] + label:before,
   [type="radio"] + label:after {
     content: '';
     position: absolute;
     left: 0;
     top: 0;
     margin: 4px;
     width: 16px;
     height: 16px;
     z-index: 0;
     -webkit-transition: .28s ease;
     transition: .28s ease;
   }
   
   /* Unchecked styles */
   [type="radio"]:not(:checked) + label:before,
   [type="radio"]:not(:checked) + label:after,
   [type="radio"]:checked + label:before,
   [type="radio"]:checked + label:after,
   [type="radio"].with-gap:checked + label:before,
   [type="radio"].with-gap:checked + label:after {
     border-radius: 50%;
   }
   
   [type="radio"]:not(:checked) + label:before,
   [type="radio"]:not(:checked) + label:after {
     border: 2px solid #5a5a5a;
   }
   
   [type="radio"]:not(:checked) + label:after {
     -webkit-transform: scale(0);
             transform: scale(0);
   }
   
   /* Checked styles */
   [type="radio"]:checked + label:before {
     border: 2px solid transparent;
   }
   
   [type="radio"]:checked + label:after,
   [type="radio"].with-gap:checked + label:before,
   [type="radio"].with-gap:checked + label:after {
     border: 2px solid var(--primary-color) ;
   }
   
   [type="radio"]:checked + label:after,
   [type="radio"].with-gap:checked + label:after {
     background-color: var(--primary-color) ;
   }
   
   [type="radio"]:checked + label:after {
     -webkit-transform: scale(1.02);
             transform: scale(1.02);
   }
   
   /* Radio With gap */
   [type="radio"].with-gap:checked + label:after {
     -webkit-transform: scale(0.5);
             transform: scale(0.5);
   }
   
   /* Focused styles */
   [type="radio"].tabbed:focus + label:before {
     -webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
             box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
   }
   
   /* Disabled Radio With gap */
   [type="radio"].with-gap:disabled:checked + label:before {
     border: 2px solid rgba(0, 0, 0, 0.42);
   }
   
   [type="radio"].with-gap:disabled:checked + label:after {
     border: none;
     background-color: rgba(0, 0, 0, 0.42);
   }
   
   /* Disabled style */
   [type="radio"]:disabled:not(:checked) + label:before,
   [type="radio"]:disabled:checked + label:before {
     background-color: transparent;
     border-color: rgba(0, 0, 0, 0.42);
   }
   
   [type="radio"]:disabled + label {
     color: rgba(0, 0, 0, 0.42);
   }
   
   [type="radio"]:disabled:not(:checked) + label:before {
     border-color: rgba(0, 0, 0, 0.42);
   }
   
   [type="radio"]:disabled:checked + label:after {
     background-color: rgba(0, 0, 0, 0.42);
     border-color: #949494;
   }



   /*tabs*/