/* COMMON STYLES FOR SteelCRM CLIENT WEB SITES */
/* Copied from the site folder whenever the site is published */

/* Global font style */
html,body,p {
  font-family: "verdana","arial","tahoma","sans-serif";
  font-size: 12pt;
  font-weight: normal;
  line-height: 1.25;
  color: #444;
  margin: 0;
  }
html {
  overflow-x: hidden;
}

/* Heading styles */
h1 {
  font-size: 36px;
  line-height: 1.25;
  font-weight: normal;
  margin: 0;
  }
h2 {
  font-size: 24px;
  line-height: 1.25;
  font-weight: normal;
  margin: 0;
  }
h3 {
  font-size: 20px;
  line-height: 1.25;
  font-weight: normal;
  margin: 0;
  }
h4 {
  font-size: 18px;
  line-height: 1.25;
  font-weight: normal;
  margin: 0;
  }
h5 {
  font-size: 16px;
  line-height: 1.25;
  font-weight: normal;
  margin: 0;
  }
h6 {
  font-size: 14px;
  line-height: 1.25;
  font-weight: normal;
  margin: 0;
  }

/* Link styles */
a {
  background-color: transparent;
  text-decoration: underscore;
  color: black;
  }
a:active {
  color: blue;
  }
a:hover {
  color: #ff5555;
  }

/* Link menu line formatting */
.linkmenu {
  display:inline-block;
  font-size: 14px;
  line-height: 1.25;
  font-weight: normal;
  margin: 0;
  color: white;
  }

/* Panel formatting */
.panel {
  border-radius: 25px;
  }

/* Line style */
hr {
  border: 0;
  border-top: 1px solid #e0e0e0;
  margin: 20px 0px 20px 0px;
  }

/* Button bases */
.button {
  display: inline-block;
  border: 1px solid #C0C0C0;
  border-radius: 5px;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: normal;
  margin: 4px 2px;
  transition-duration: 0.25s;
  cursor: pointer;
  color: #696969;
  background-color: #e8e8e8;
}
.button:hover {
  color: white;
  border-color: #FF5555;
}

/* Button variation */
.disabledbutton {
  color: #C0C0C0;
  background-color: white;
}
.actionbutton {
  display: inline-block;
  margin: 5px 0px 5px 10px;
  padding: 8px 15px;
  border-width: 0;
  border-radius: 15px;
  font-size: 14px;
  font-weight: normal;
}
.videobutton {
  display: inline-block;
  margin: 5px 0px 5px 10px;
  padding: 8px 15px;
  border-width: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
}

.inlinebutton {
  display: inline-block;
  margin: 0px 0px 0px 10px;
  padding: 3px 5px;
  border-width: 0;
  border-radius: 5px;
  font-size: 12px;
}
.inlinebutton:hover {
  color: white;
  background-color: #FF5555;
}

.backbutton {
  border-radius: 15px 5px 5px 15px;
}
.forwardbutton {
  border-radius: 5px 15px 15px 5px;
}


/* General formatting */
.inline {
  display: inline-block;
}
.center {
  text-align: center;
}
.xxxsmall {
  font-size: 8px;
  line-height: 1.25;
}
.xxsmall {
  font-size: 9px;
  line-height: 1.25;
}
.xsmall,.tiny {
  font-size: 10px;
  line-height: 1.25;
}
.small {
  font-size: 12px;
  line-height: 1.25;
}
.medium {
  font-size: 14px;
  line-height: 1.5;
}
.large {
  font-size: 18px; 
  line-height: 1.5;
}
.xlarge {
  font-size: 24px; 
  line-height: 2.0;
}
.xxlarge {
  font-size: 36px; 
  line-height: 2.0;
}
.bold {
  font-weight: bold;
}
.normal {
  font-weight: normal;
  font-style: normal;
}
.italic {
  font-style: italic;
}
.spaced {
  line-height: 1.5;
}
.double {
  line-height: 2.0;
}

/* SteelCRM styles */
.steelcrm-grey,.steelcrm-grey:hover {
  color: #696969;
}
.steelcrm-blue,.steelcrm-blue:hover {
  color: #73CDE1;
}
.steelcrm-red,.steelcrm-red:hover {
  color: #FF5555;
}
a.steelcrm-link {
  background-color: transparent;
  text-decoration: underscore;
  color: #696969;
}
a.steelcrm-link:active {
  color: #696969;
}
a.steelcrm-link:hover {
  color: #ff5555;
}


/* Gallery boxes */
div.product {
  display: inline-block;
  background-color: white;
  width: 340px;
  margin: 30px;
  border: 2px solid #888;
  padding: 20px;
  text-align: center;
  vertical-align: top;
  transition: 500ms;
}
div.product:hover {
  transform: scale(1.05);
}

/* Gallery boxes */
div.gallery {
  display: inline-block;
  background-color: white;
  width: 400px;
  height: 400px;
  margin: 5px;
  border: 1px solid #888;
  padding: 0px;
}

/* General page section */
div.section {
  display: block;
  background-color: white;
  width: 100%
  margin: 0px;
  border: 0px;
  padding: 20px;
  text-align: center;
}

/* Validation error line */
div.error {
  display: block;
  background-color: red;
  width: 100%;
  margin: 0px;
  border: 0px;
  border-radius: 5px;
  padding: 5px;
  color: white;
  font-size: 14px; 
  font-weight: normal;
  line-height: 1.5;
  text-align: center;
}

/* Validation info line */
div.info {
  display: block;
  background-color: #90E090;
  width: 100%;
  margin: 3px;
  border: 0px;
  padding: 5px;
  color: white;
  font-size: 16px; 
  font-weight: normal;
  line-height: 1.5;
  text-align: center;
}

