/* Addicted to Building Main CSS */

/* HTML5 display-role reset for older browsers */
  article, aside, details, figcaption, figure, 
  footer, header, hgroup, menu, nav, section {
    display: block;
  }
  
  /* Index of styles (line number begin) 
     
    Common Styles      81
    Index.html        157
    About.html        180
    new.html          310
    order.html        324
    terms.html        339
    tutorials.html    342

    Colors Used
    Dark Gray: #666666 or #555
    Green: #339933
    Light Gray: #cccccc

  */

  @font-face {
    font-family: DejaVuSerif;
    src: url(fonts/DejaVuSerif.ttf);
    font-weight:400;
  }

  @font-face {
    font-family: LithosPro;
    src: url(fonts/LithosProBlack.ttf);
    font-weight:400;
  }

  body {
    line-height: 1.5;
  }

  ol, ul {
    list-style: none;
  }

  * {box-sizing:border-box}

  @-webkit-keyframes fade {
      from {opacity: .6} 
      to {opacity: 1}
  }

  @keyframes fade {
      from {opacity: .6} 
      to {opacity: 1}
  }

  table {
    border-collapse: collapse;
  }

  footer {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  a {
    color: #339933;
  }

  a:visited {
    color: black;
  }

  a:hover {
      color: #555;
  }

  a:active {
      color: black;
  }

  /* All common styles */

    body {
      font-family: DejaVuSerif;
      background: #cccccc;
      background-image: url("../img/background.gif");
      background-position: center top;
    }

    .disclaimer {
      font-size: 10px;
    }

    .right {
      float: right;
    }

    .left {
      float: left;
    }

    .scaling {
      max-width: 100%;
    }

    .facebook1 {
      margin-top: 30px;
    }

    .facebook2 {
      left: 50px;
    }

    .top {
      clear: right;
    }

    .nav-img {
      max-width: 200px;
    }

    .center {
      text-align: center;
    }
   
    .container {
      width: 80%;      
      margin-left:auto; 
      margin-right:auto;
      min-width: 400px;
    }

    #ttt {
      display: none; 
      position: fixed; 
      bottom: 20px; 
      right: 30px; 
      z-index: 99; 
      border: none; 
      outline: none; 
      background-color: #339933; 
      color: white; 
      cursor: pointer; 
      padding: 10px; 
      border-radius: 8px; 
      font-size: 24px;
      font-family: LithosPro; 
    }

    #ttt:hover {
      background-color: #555; 
    }

  /*  Index.html styles only  */

    /* Slideshow container */
    .feedback-container  {
      max-width: 800px;
      height: 200px;
      position: relative;
      margin: auto;
      min-height: 20%;
    }

    .mySlides {
        display: none;
    }

    /* Fading animation */
    .fade {
      -webkit-animation-name: fade;
      -webkit-animation-duration: 1.5s;
      animation-name: fade;
      animation-duration: 1.5s;
    }

  /* About.html styles only */

    input[type=text], select, textarea {
        width: 100%; 
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 4px; 
        box-sizing: border-box; 
        margin-top: 6px; 
        margin-bottom: 16px; 
        resize: vertical 
    }

    /* Style the submit button with a specific background color etc */
    input[type=submit] {
        background-color: #339933;
        color: white;
        padding: 12px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }

    /* Mouse over the submit button */
    input[type=submit]:hover {
        background-color: #555;
    }

    .modal-width {
      width: 100%;
      padding-top: 13px;
    }

    
    /* Add a background color and some padding around the form */
    .forms {
        border-radius: 5px;
        background-color: #f2f2f2;
        padding: 20px;
    }

    .modalDialog0 {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: rgba(0,0,0,0.8);
      z-index: 99999;
      opacity:0;
      -webkit-transition: opacity 500ms ease-in;
      -moz-transition: opacity 500ms ease-in;
      transition: opacity 500ms ease-in;
      pointer-events: none;
    }

    .modalDialog0:target {
      opacity:1;
      pointer-events: auto;
    }

    .modalDialog0 > div {
      width: 60%;
      position: relative;
      padding: 10px;
      margin-top: 1%;
      margin-left: 20%;
      border-radius: 10px;
      background: #cccccc;
      font-size: 12px;
    }

    .modalDialog {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: rgba(0,0,0,0.8);
      z-index: 99999;
      opacity:0;
      -webkit-transition: opacity 500ms ease-in;
      -moz-transition: opacity 500ms ease-in;
      transition: opacity 500ms ease-in;
      pointer-events: none;
    }

    .modalDialog:target {
      opacity:1;
      pointer-events: auto;
    }

    .modalDialog > div {
      width: 75%;
      position: relative;
      padding: 5px 20px 13px 20px;
      margin-top: 1%;
      margin-left: 10%;
      border-radius: 10px;
      background: #cccccc;
    }

    .close {
      background: #339933;  /* Color of circle */
      color: white;  /* Color of X */
      line-height: 25px;
      position: absolute;
      right: -12px;
      text-align: center;
      top: -10px;
      width: 24px;
      text-decoration: none;
      font-weight: bold;
      font-family: DejaVuSerif;
      font-size: 16px;
      -webkit-border-radius: 12px;
      -moz-border-radius: 12px;
      border-radius: 12px;
      -moz-box-shadow: 1px 1px 3px #000;
      -webkit-box-shadow: 1px 1px 3px #000;
      box-shadow: 1px 1px 3px #000;
    }
    /* color of close with mouseover */
    .close:hover { 
      background: #555; 
      color: white;
    }

    .close:visited {
      color: white;
    }

  /* new.html styles only */

    .latest {
      width: 50%;
      margin-left:auto; 
      margin-right:auto;
      font-size: 20px;
      font-size: 2.5vmin;
    }

    .new-img {
      width: 200px;
    }

  /* order.html styles only */

    .process {
      width: 70%;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .img-process {
      padding: 10px;
      border-radius: 25px;

    }

  /* terms.html styles only */


  /* tutorials.html styles only */

    .tut-video {
      display: none;
    }

    .video {
      width: 560px;
      margin-left:auto; 
      margin-right:auto;
      text-align: center;
    }