.obf-Toast {
  position: var(--obf-position, absolute);
  bottom: var(--obf-bottom, 0px);
  right: var(--obf-right, 0px);
left:var(--obf-left, 0px);
top:var(--obf-top, 0px);
  z-index: var(--obf-zIndex, 10000000000);
  -webkit-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  -o-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-name: obf-ToastSlideUp;
  -moz-animation-name: obf-ToastSlideUp;
  -o-animation-name: obf-ToastSlideUp;
  animation-name: obf-ToastSlideUp;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes obf-ToastSlideUp {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: var(--obf-bottom, 0px);
    opacity: 1;
  }
}

@-moz-keyframes obf-ToastSlideUp {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: var(--obf-bottom, 0px);
    opacity: 1;
  }
}

@-o-keyframes obf-ToastSlideUp {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: var(--obf-bottom, 0px);
    opacity: 1;
  }
}

@keyframes obf-ToastSlideUp {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: var(--obf-bottom, 0px);
    opacity: 1;
  }
}

#obf-TFormContainer {
  width: 100%;
}

#obf-TFormCancelButton {
  position: absolute;
  right: 145px;
  bottom: 20px;
}

.obf-Rtl #obf-TFormCancelButton {
  position: absolute;
  left: 145px;
  bottom: 20px;
}

.obf-SubmitButton {
  position: absolute;
  right: 15px;
  bottom: 20px;
}

.obf-Rtl obf-SubmitButton {
  position: absolute;
  left: 15px;
  bottom: 20px;
}

#obf-ToastContainer {
  border: 1px solid gray;
  padding: 30px;
  background-color: white;
}

#obf-TFormComment {
  width: 100%;
  height: 100px;
  margin-bottom: 25px;
}

#obf-TFormEmailTextBox {
  margin-bottom: 20px;
}