/* Step Navigation
------------------------------------------------------------------------- */
	
.stepNav {
    padding: 0px;
    height: 43px;
    padding-right: 20px;
    position: relative;
    z-index: 0;
      }
  
  /* z-index to make sure the buttons stack from left to right */
  
  .stepNav li {
      float: left;
      position: relative;
      list-style-type: none;
      z-index: 3;
      -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.12);
         -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.12);
                  box-shadow: 0 1px 1px rgba(0,0,0,0.12);
      }
      
  .stepNav li:first-child {
      -webkit-border-radius: 5px 0 0 5px;
         -moz-border-radius: 5px 0 0 5px;
               border-radius: 5px 0 0 5px;
      }
      
  .stepNav li:nth-child(2) { z-index: 1; }
  .stepNav li:nth-child(3) { z-index: 0; }
  
  /* different widths */
  
  .stepNav.twoWide li { width: 50%; }
  .stepNav.threeWide li { width: 33.33%; }
  
     /* step links */
  
  .stepNav span {
      width: 100%;
      height: 43px;
      padding: 0 0 0 25px;
      color: #717171;
      text-align: center;
      text-shadow: 0 1px 0 #fff;
      line-height: 43px;
      white-space: nowrap;
      border: 1px solid #cbcbcb;
      text-decoration: none;
      border-top-color: #dddddd;
      border-right: 0;
      background-color: #fbfbfb;
      background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(251, 251, 251)), to(rgb(233, 233, 233)));
      background-image: -webkit-linear-gradient(top, rgb(251, 251, 251), rgb(233, 233, 233));
      background-image: -moz-linear-gradient(top, rgb(251, 251, 251), rgb(233, 233, 233));
      background-image: -o-linear-gradient(top, rgb(251, 251, 251), rgb(233, 233, 233));
      background-image: -ms-linear-gradient(top, rgb(251, 251, 251), rgb(233, 233, 233));
      background-image: linear-gradient(top, rgb(251, 251, 251), rgb(233, 233, 233));
      float: left;
      position: relative;
      -webkit-box-sizing: border-box;
         -moz-box-sizing: border-box;
                box-sizing: border-box;
      }
      
  .stepNav li:first-child span {
      padding-left: 12px;
      -webkit-border-radius: 5px 0 0 5px;
         -moz-border-radius: 5px 0 0 5px;
               border-radius: 5px 0 0 5px;
      }
  
  .stepNav span:before {
      content: "";
      width: 29px;
      height: 29px;
      border-right: 1px solid #dddddd;
      border-bottom: 1px solid #cbcbcb;
      background-image: -webkit-gradient(linear, right top, left bottom, from(rgb(251, 251, 251)), to(rgb(233, 233, 233)));
      background-image: -webkit-linear-gradient(right top, rgb(251, 251, 251), rgb(233, 233, 233));
      background-image: -moz-linear-gradient(right top, rgb(251, 251, 251), rgb(233, 233, 233));
      background-image: -o-linear-gradient(right top, rgb(251, 251, 251), rgb(233, 233, 233));
      background-image: -ms-linear-gradient(right top, rgb(251, 251, 251), rgb(233, 233, 233));
      background-image: linear-gradient(right top, rgb(251, 251, 251), rgb(233, 233, 233));
      display: block;
      position: absolute;
      top: 6px;
      right: -16px;
      z-index: -1;
      -webkit-transform: rotate(-45deg);
         -moz-transform: rotate(-45deg);
           -o-transform: rotate(-45deg);
                   transform: rotate(-45deg);
      }
      
  .stepNav span:hover {
      color: #2e2e2e;
      background-color: #f5f5f5;
      background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(242, 242, 242)), to(rgb(217, 217, 217)));
      background-image: -webkit-linear-gradient(top, rgb(242, 242, 242), rgb(217, 217, 217));
      background-image: -moz-linear-gradient(top, rgb(242, 242, 242), rgb(217, 217, 217));
      background-image: -o-linear-gradient(top, rgb(242, 242, 242), rgb(217, 217, 217));
      background-image: -ms-linear-gradient(top, rgb(242, 242, 242), rgb(217, 217, 217));
      background-image: linear-gradient(top, rgb(242, 242, 242), rgb(217, 217, 217));
      }
      
  .stepNav span:hover:before {
      background-image: -webkit-gradient(linear, right top, left bottom, from(rgb(242, 242, 242)), to(rgb(217, 217, 217)));
      background-image: -webkit-linear-gradient(right top, rgb(242, 242, 242), rgb(217, 217, 217));
      background-image: -moz-linear-gradient(right top, rgb(242, 242, 242), rgb(217, 217, 217));
      background-image: -o-linear-gradient(right top, rgb(242, 242, 242), rgb(217, 217, 217));
      background-image: -ms-linear-gradient(right top, rgb(242, 242, 242), rgb(217, 217, 217));
      background-image: linear-gradient(right top, rgb(242, 242, 242), rgb(217, 217, 217));
      }
  
  /* selected */
      
  .stepNav li.selected {
      -webkit-box-shadow: none;
         -moz-box-shadow: none;
                  box-shadow: none;
                
      }
                              
  .stepNav li.selected span, .stepNav li.selected span:before {
      background: #ebebeb;
     
      }
      
  .stepNav li.selected span {
    text-shadow: none;
    color: #fff;
      background-color: #ef6537;
      border-top-color: #bebebe;
      -webkit-box-shadow: inset 2px 1px 2px rgba(0,0,0,0.12);
         -moz-box-shadow: inset 2px 1px 2px rgba(0,0,0,0.12);
                  box-shadow: inset 2px 1px 2px rgba(0,0,0,0.12);
      }
      
  .stepNav li.selected span:before {
    background-color: #ef6537;
      border-right: 1px solid #bebebe;
      border-bottom: 1px solid #cbcbcb;
      -webkit-box-shadow: inset -1px -1px 1px rgba(0,0,0,0.1);
         -moz-box-shadow: inset -1px -1px 1px rgba(0,0,0,0.1);
                  box-shadow: inset -1px -1px 1px rgba(0,0,0,0.1);
      }

      


       .custom_style_show {
        display: none;
    }

    @media (max-width: 767px) {

        .custom_style {

            display: none;
        }

        .custom_style_show {
            display: inline;
        }


    }
    @media (max-width: 1200px) and (min-width: 992px) {
    .table {
        table-layout: fixed;
    }

}