/* -------------------------------------------------------------------------- *\
 * Necessary styling for the dialog to work
 * -------------------------------------------------------------------------- */

.dialog[aria-hidden="true"] {
  display: none;
}

/* -------------------------------------------------------------------------- *\
 * Styling to make the dialog look like a dialog
 * -------------------------------------------------------------------------- */

.dialog-overlay {
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.66);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.dialog-content {
  background-color: rgb(255, 255, 255);
  z-index: 3;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* -------------------------------------------------------------------------- *\
 * Extra dialog styling to make it shiny
 * -------------------------------------------------------------------------- */

.dialog-content {
  padding: 1em;
  max-width: 99%;
  width: 600px;
  border-radius: 2px;
}

@media screen and (min-width: 700px) {
  .dialog-content {
    padding: 2em;
	background-color: rgba(255, 255, 255, 0.4);
  }
}

.dialog-overlay {
  background-color: rgba(43, 46, 56, 0.9);
}

.dialog h1 {
  margin: 0;
  font-size: 1.25em;
}

.dialog-close {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  border: 0;
  padding: 0;
  background-color: transparent;
  font-weight: bold;
  font-size: 1.25em;
  width: 1.2em;
  height: 1.2em;
  text-align: center;
  cursor: pointer;
  transition: 0.15s;
}

@media screen and (min-width: 700px) {
  .dialog-close {
    top: 0.1em;
    right: 1em;
  }
}

/* -------------------------------------------------------------------------- *\
 * Base stuff
 * -------------------------------------------------------------------------- */

* {
  box-sizing: border-box;
}
.link-like,
a {
  color: #fff;
}

.link-like:hover,
.link-like:active,
a:hover,
a:active {
  color: #00FFFF;
}

/* -------------------------------------------------------------------------- *\
 * Helpers
 * -------------------------------------------------------------------------- */

.link-like {
  background-color: transparent;
  border: 0;
  font-weight:bold;
  color:#e22e94;
  padding: 0;
  cursor: pointer;
  text-align:left;
}
@media (max-width: 767px) {
.link-like {
  background-color: transparent;
  border: 0;
  margin: 10px 0 9px 5px ;
  font-weight:bold;
  color:#e22e94;
  padding: 0;
  cursor: pointer;
  text-align:left;
  width:300px;
}
}
/* -------------------------------------------------------------------------- *\
 * Layout
 * -------------------------------------------------------------------------- */

.main {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1em;
}

