/* The Modal (background) */
#xeetr-modal {
  display: block;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

/* Modal Content/Box */
#xeetr-modal-content {
  background-color: #fefefe;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 700px;
  max-height: 100%;
  width: 100%;
  height: 100%;
}

.xeetr-modal-iframe-content {
  width: 100%;
  height: 100%;
  display: block;
  border-style: none;
  position: absolut;
}

/* The Close Button */
#xeetr-modal-close-btn {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  margin-right: 15px;
  z-index: 503;
  position: fixed;
  right: 0px;
}

#xeetr-modal-close-btn:hover,
#xeetr-modal-close-btn:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@media screen and (min-width: 800px) {
  #xeetr-modal-content {
    width: 80%;
    height: 80%;
    max-height: 80%;
  }
}

.sticky-bottom-right {
  position: fixed;
  bottom: 0;
  right: 20px;
  padding: 10px;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
  transition: all ease 500ms;
  &:hover {
    transform: scale(1.1);
  }
}
