/* ADD CSS STYLE for FORMS */

/* MY POP UP FORM !!! */
.sp-module.myPopUpWindow .myCloseButton {
  display: block;
  position: absolute;
  top: 3px;
  right: 3px;
  width: 28px;
  height: 28px;
  /*background-color: #ebb204;*/
  background-color: var(--mycolor2);
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  border-radius: 100%;
  cursor: pointer;
  z-index: 2;
}
.sp-module.myPopUpWindow .myCloseButton:hover {
  /*background-color: #e30613;*/
  background-color: var(--mycolor2H);
  color: #fff;
}
.sp-module.myPopUpWindow .myCloseCover {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  z-index: 0;
  cursor: pointer;
}
#sp-footer-long .sp-module.myPopUpWindow,
.sp-module.myPopUpWindow {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 70%);
  z-index: 10000;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  display: none;
  margin: 0px;
}
#sp-footer-long .sp-module.myPopUpWindow.myOpen,
.sp-module.myPopUpWindow.myOpen {
  display: flex;
}
.sp-module.myPopUpWindow > div.sp-module-content {
  display: block;
  max-height: calc(100% - 40px);
  overflow: auto;
  max-width: calc(100% - 40px);
  position: relative;
  z-index: 1;
}
.sp-module.myPopUpWindow > div.sp-module-content > div {
  margin: 0;
  border-radius: 7px;
  /* background */
  /*background-color: #083381;*/
  /*background-color: #52a7ff;*/
  background-color: #fff;
  color: #000;
}
.sp-module.myPopUpWindow > div.sp-module-content > div > div {
  padding: 20px;
  width: 740px;
  max-width: 100%;
}
/* MY POP UP FORM !!! - popis pole */
span.myHelp {
  display: inline-block;
  border: 1px solid black;
  border-radius: 100%;
  height: 17px;
  line-height: 17px;
  width: 17px;
  vertical-align: top;
  text-align: center;
  margin-left: 4px;
  font-size: 14px;
  font-weight: bold;
  color: black;
}
span.myHelp p.formDescription {
  position: absolute;
  z-index: 1;
  color: black;
  background-color: white;
  border: 1px solid black;
  padding: 5px;
  line-height: 100%;
  bottom: calc(100% - 10px);
  left: 0px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  visibility: hidden;
}
span.myHelp:hover p.formDescription {
  visibility: visible;
}
