.modal-box {
  position: relative;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  margin-left: 5px;
  vertical-align: middle;
  white-space: normal;
}
.modal-box.text-icon {
  margin-left: 0;
}
.modal-box .icon {
  width: 20px;
  height: 20px;
  background: url(../../images/icons/icon_info.svg) no-repeat;
  display: block;
  cursor: pointer;
}
.modal-box.text-icon .icon {
  width: auto;
  height: auto;
  background: none;
  color: #0F6C28;
  font-weight: bold;
}
.modal-box.text-icon .icon:hover {
  color: #2E8C3B;
}
.modal-box .content {
  text-align: left;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 420px;
  left: 30px;
  top: -50px;
  padding: 20px;
  padding-right: 45px;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0px 2px 5px 2px rgba(100,100,100,0.3);
  z-index: 1000;
  transition: opacity 0.4s, visibility 0.4s, top 0.4s;
}
.modal-box .content.open {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 800px){
  .modal-box {
    position: static;
  }
  .modal-box .content {
    left: 0;
    top: 10px;
    width: calc(100vw - 95px);
  }
}
.modal-box .content h2 {
  margin-bottom: 0;
  margin-top: 0;
  color: #4a4a4a;
  font-weight: bold;
  font-size: 14px;
}
.modal-box .content p {
  margin-top: 10px;
  line-height: 18px;
  color: #9e9e9e;
  font-weight: 100;
}
.modal-box .content b {
  color: #4a4a4a;
}
.modal-box .content a {
  display: block;
  margin-top: 13px;
  color: #0f6c28;
  font-weight: bold;
}
.modal-box .content a.inline {
  display: inline;
}
.modal-box .content .close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: url(../../images/icons/clear.svg) no-repeat center center;
  width: 14px;
  height: 14px;
  padding: 8px;
  cursor: pointer;
  display: block;
}
