/**
 * CSS for Guiders.js
 * Version 2.0.0
 *
 * It is expected that you'll modify this to fit your site's style.
 */

.guider {
  background: #2D67B9;
  font-family: arial;
  position: absolute;
  outline: none;
  padding: 12px;
  width: 500px;
  z-index: 1001;
  
  /* Shadow */
  -moz-box-shadow: rgba(0, 0, 0, 0.6) 0px 0px 5px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.6) 0px 0px 5px;
  box-shadow: rgba(0, 0, 0, 0.6) 0px 0px 5px;
  /* End shadow */
  
  /* Rounded corners */
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  /* End rounded corners */
}

.guiders_arrow_right {
  display: block;
  background-position: 0px 0px;
  right: -42px;
}

.guiders_arrow_down {
  position: absolute;
  background-color: #2D67B9;
  width: 20px;
  height: 20px;
  box-shadow: 0 0 10px #C3C3CA;
  transform: rotate(45deg);
  bottom: -10px;
  background-image: none;
}

.guiders_arrow_down::before {
  content: ' ';
  height: 30px;
  width: 30px;
  position: absolute;
  left: -10px;
  background-color: #2D67B9;
  z-index: 1;
  bottom: 0;
}

.guiders_arrow_up {
  display: block;
  background-position: 0px -126px;
  top: -42px;
}

.guiders_arrow_left {
  display: block;
  background-position: 0px -84px;
  left: -42px;
}

.guiders_button {
  background: #fff;
  border: none;
  color: #2D67B9;
  cursor: pointer;
  display: inline-block;
  float: right;
  font-size: 100%;
  font-weight: 400;
  margin-left: 6px;
  min-width: 40px;
  padding: 5px 12px;
  text-align: center;
  text-decoration: none;
  /* Rounded corners */
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  /* End rounded corners */
}

.close-tip {
  background: #2D67B9;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  float: right;
  font-size: 100%;
  font-weight: 400;
  margin-left: 6px;
  min-width: 40px;
  padding: 5px 12px;
  text-align: center;
  text-decoration: none;
  /* Rounded corners */
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}

.guiders_button:hover {
  text-decoration: none;
}

.close-tip:hover {
  text-decoration: none;
  color: #fff;
}

.guiders_buttons_container {
  height: 36px;
  position: relative;
  width: 100%;
}

.guiders_close {
  float: none;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
}

.guiders_content {
  position: relative;
}

.guiders_title {
  float: left;
  font-size: 21px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #fff;
  font-family: 'Roboto';
  font-size: 18px;
}

.guiders_description {
  clear: both;
  font-family: 'Roboto';
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
}

.guiders_highlight {
  position: relative;
  z-index: 1003;
}

#guiders_overlay {
  background-color: #000;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  z-index: 901;
}

.guiders_x_button {
  background-image: none; 
  cursor: pointer;
  height: 13px;
  width: 13px;
}

.guiders_x_button:after {
  content: '\00D7';
  font-size: 18px;
  color: #fff;
}
