/* Closable text box */
.text-box {
  position: relative;
  padding: 25px 14px 14px 14px;
  width: 100%;
  background-color: white;
  border: thin solid #eaeaea;
  -webkit-box-shadow: 0px 0px 25px 0px rgba(178, 178, 178, 0.5);
  -moz-box-shadow: 0px 0px 25px 0px rgba(178, 178, 178, 0.5);
  box-shadow: 0px 0px 22px 0px rgba(189, 186, 186, 0.5);
}
.text-box .close-x {
  position: absolute;
  top: 10px;
  right: 10px;
}
.text-box .close-x:hover {
  opacity: 0.6;
  cursor: pointer;
}
.text-box-no-width {
  position: relative;
  padding: 14px 14px 14px 14px;
  background-color: white;
  border: thin solid #eaeaea;
  -webkit-box-shadow: 0px 0px 25px 0px rgba(178, 178, 178, 0.5);
  -moz-box-shadow: 0px 0px 25px 0px rgba(178, 178, 178, 0.5);
  box-shadow: 0px 0px 22px 0px rgba(189, 186, 186, 0.5);
}
.text-box-no-width .close-x {
  position: absolute;
  top: 10px;
  right: 10px;
}
.text-box-no-width .close-x:hover {
  opacity: 0.6;
  cursor: pointer;
}
.text-box-thin {
  padding: 0px 0px 20px 0px !important;
  margin-left: 0px !important;
  margin-right: 0px !important;
  border: thin solid #eaeaea;
  -webkit-box-shadow: 0px 0px 14px 0px rgba(178, 178, 178, 0.5);
  -moz-box-shadow: 0px 0px 14px 0px rgba(178, 178, 178, 0.5);
  box-shadow: 0px 0px 10px 0px rgba(189, 186, 186, 0.5);
}
.text-box-no-border {
  position: relative;
  padding: 2px 2px 2px 2px;
  width: 100%;
  background-color: white;
  font-size: 10px;
}
.text-box-no-border .close-x {
  position: absolute;
  top: 10px;
  right: 10px;
}
.text-box-no-border .close-x:hover {
  opacity: 0.6;
  cursor: pointer;
}
.text-box-no-width-no-border {
  position: relative;
  padding: 2px 26px 14px 14px;
  background-color: white;
  font-size: 12px;
}
.text-box-no-width-no-border .close-x {
  position: absolute;
  top: 10px;
  right: 10px;
}
.text-box-no-width-no-border .close-x:hover {
  opacity: 0.6;
  cursor: pointer;
}
.image-box {
  position: relative;
  padding: 2px 2px 2px 2px;
  width: 100%;
  background-color: white;
  border: thin solid #eaeaea;
  -webkit-box-shadow: 0px 0px 25px 0px rgba(178, 178, 178, 0.5);
  -moz-box-shadow: 0px 0px 25px 0px rgba(178, 178, 178, 0.5);
  box-shadow: 0px 0px 22px 0px rgba(189, 186, 186, 0.5);
}
.image-box .close-x {
  position: absolute;
  top: 10px;
  right: 10px;
}
.image-box .close-x:hover {
  opacity: 0.6;
  cursor: pointer;
}
.image-box-no-width {
  position: relative;
  padding: 2px 2px 2px 2px;
  max-width: 280px;
  background-color: white;
  border: thin solid #eaeaea;
  -webkit-box-shadow: 0px 0px 25px 0px rgba(178, 178, 178, 0.5);
  -moz-box-shadow: 0px 0px 25px 0px rgba(178, 178, 178, 0.5);
  box-shadow: 0px 0px 22px 0px rgba(189, 186, 186, 0.5);
}
.image-box-no-width .close-x {
  position: absolute;
  top: 10px;
  right: 10px;
}
.image-box-no-width .close-x:hover {
  opacity: 0.6;
  cursor: pointer;
}
.row-border {
  margin-top: 23px;
  padding-bottom: 30px;
  border-bottom: thin lightgray solid;
}
