/*
 * -- BASE STYLES --
 * Most of these are inherited from Base, but I want to change a few.
 */
body {
    color: #526066;
}

h2, h3 {
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
}

p {
    line-height: 1.6em;
}


/*
 * -- Layout Styles --
 */
.l-content {
    margin: 0 auto;
}

.l-box {
    padding: 0.5em 2em;
}
.contact {
  list-style-type: circle;
  list-style-position: outside;
  margin-left:0;
  padding-left:1em;
  line-height:1.5em;
}

.banner-top {
    display: table-cell;
    vertical-align: top;
    text-align:left;
    padding-top: 0.5em;
    padding-left:1em;
    font-size: 1.5em;
    color: white;
    font-weight: 500;
    text-shadow: 0px 0px 15px black;    
  font-size:3em; 
  text-transform: uppercase;
  -webkit-text-stroke: 1px #999;
  
}

.banner-text {
  padding:0.5em;
  background-color:#999;
  line-height:2em;
  border-top-left-radius: 14px;
}

a.noline:link {
  text-decoration:none;
}
a.noline:hover {
  text-decoration:underline;
}

.lat {
  color:#009839;
}
.gr {
  color:#7ABBFF;
}

/*
 * -- MENU STYLES --
 * Make the menu have a very faint box-shadow.
 */
.pure-menu {
    box-shadow: 0 1px 1px rgba(0,0,0, 0.10);
}

.pure-menu-link {
    padding: .5em .7em;
}

.menu {
  font-size:0.7em;
}

.mainlogo {
  height:35px;
}
/*
 * -- BANNER --
 * The top banner with the headings. By using a combination
 * of `display: table;` and `display: table-cell;`, we can
 * vertically center the text.
 */


    .banner-head {
        display: table-cell;
        vertical-align: bottom;
        text-align:right;
        color: white;
        font-weight: 500;
        text-shadow: 0 1px 1px black;
        padding-left:3em;
        padding-bottom:0.07em;
        font-size:1.3em;
        
    }



/*
 * -- material TABLE WRAPPER --
 * This element wraps up all the material table elements
 */
 .material-tables,
 .information {
    max-width: 980px;
    margin: 0 auto;
 }
.material-tables {
    margin-bottom: 3.125em;
    text-align: center;
}

/*
 * -- material TABLE  --
 * Every material table has the .material-table class
 */
.material-table {
    border: 1px solid #ddd;
    margin: 0 0.5em 0em;
    padding: 0em;
}

.box-choice a {
  color:#333;
}
.error {
  color:#f00;
  font-weight:bold;
  font-size:1em;
  width:100%;
  text-align:center;
  display:none;
}
.archives td {
  padding:1em;
}

/*
 * -- material TABLE HEADER COLORS --
 * Choose a different color based on the type of material table.
 */
.material-table-free .material-table-header {
    background: #519251;
}

.material-table-biz .material-table-header {
    background: #2c4985;
}

/*
 * -- material TABLE HEADER --
 * By default, a header is black/white, and has some styles for its <h2> name.
 */
.material-table-header {
    background: #111;
    color: #fff;
}
    .material-table-header h2 {
        margin: 0;
        padding-top: 2em;
        font-size: 1em;
        font-weight: normal;

    }


/*
 * -- material TABLE PRICE --
 * Styles for the price and the corresponding <span>per month</span>
 */
.material-table-price {
    font-size: 6em;
    margin: 0.2em 0 0;
    font-weight: 100;
}
    .material-table-price span {
        display: block;
        text-transform: uppercase;
        font-size: 0.2em;
        padding-bottom: 2em;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.5);
        *color: #fff;
    }



/*
 * -- material TABLE LIST --
 * Each material table has a <ul> which is denoted by the .material-table-list class
 */
.material-table-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
    
}


/*
 * -- material TABLE LIST ELEMENTS --
 * Styles for the individual list elements within each material table
 */
.material-table-list li {
    padding: 0.9em 1.2em;
    background: #f7f7f7;
    border-top: 1px solid #e7e7e7;
}
.material-table-list li:hover {
  box-shadow: 0 4px 6px rgba(0,0,0, .2) inset;
}


/*
 * -- material TABLE BUTTON --
 * Styles for the "Choose" button at the bottom of a material table.
 * This inherits from Pure Button.
 */
.button-choose {
    border: 1px solid #ccc;
    background: #fff;
    color: #333;
    border-radius: 2em;
    font-weight: bold;
    position: relative;
    bottom: -1.5em;
}

.information-head {
    color: black;
    font-weight: 500;
}

.footer {
    background: #111;
    color: #888;
    text-align: center;
}
    .footer a {
        color: #ddd;
    }

.modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: left;
  background: rgba(0,0,0, .9);
  transition: opacity .25s ease;
}
.modal__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
}

.modal-state {
  display: none;
}

.modal-state:checked + .modal {
  opacity: 1;
  visibility: visible;
}

.modal-state:checked + .modal .modal__inner {
  top: 0;
}

.modal__inner {
  
  transition: top .25s ease;
  position: absolute;
  top: -20%;
  right: 0;
  bottom: 0;
  left: 0;
  width: 250px;
  margin: auto;
  overflow-y: hidden;
  background: #fff;
  border-radius: 5px;
  padding: 1em 2em;
  height: 250px;
  
}
.dopass {
  padding-top:1em;
}
.modal__inner h4 {
  font-size:1em;
  text-transform: none;
}


.modal__close {
  position: absolute;
  right: 1em;
  top: 1em;
  width: 1.1em;
  height: 1.1em;
  cursor: pointer;
}

.modal__close:after,
.modal__close:before {
  content: '';
  position: absolute;
  width: 2px;
  height: 1.5em;
  background: #ccc;
  display: block;
  transform: rotate(45deg);
  left: 50%;
  margin: -3px 0 0 -1px;
  top: 0;
}

.modal__close:hover:after,
.modal__close:hover:before {
  background: #aaa;
}

.modal__close:before {
  transform: rotate(-45deg);
}
.dltitle {
  word-wrap: break-word;
}

@media screen and (max-width: 768px) {
    
  .modal__inner {
    width: 90%;
    height: 90%;
    box-sizing: border-box;
  }
}


/* Other
 * =============================== */

.btn, .downloadlist {
  cursor: pointer;
  display: inline-block;
  padding: .5em 1em;
  color:#526066;
  text-decoration: none;
}

.btn:hover,
.btn:focus, .downloadlist:hover, .downloadlist:focus {
    text-decoration: underline;
    color:#526066;
}

.btn:active, .downloadlist:active {
  box-shadow: 0 1px 2px rgba(0,0,0, .2) inset;
  color:#526066;
}

/*
 * -- TABLET MEDIA QUERIES --
 * On tablets, we want to slightly adjust the size of the banner
 * text and add some vertical space between the various material tables
 */
@media(min-width: 620px) {
    .banner-text {
      border-top-left-radius: 14px;
    }
    .banner-head {
      font-size:1.4em;
      padding-bottom:0.05em;

    }
    .material-table {
        margin-bottom: 0;
    }
    .menu {
      font-size:1em;
    }
    
    .mainlogo {
      height:70px;
    }
   
}

/*
 * -- PHONE MEDIA QUERIES --
 * On phones, we want to reduce the height and font-size of the banner further
 */
@media (max-width: 480px) {
    .banner {
        height: 400px;
    }
    .banner-text {
      font-size:0.6em;
      border-top-left-radius: 14px; 
    }
   
}
