/*
	Table of Contents

    01. Settings ----------------------------------
    02. Sprite ------------------------------------
         Slider -----------------------------------
         Items box --------------------------------
    03. Generic -----------------------------------
    04. Base --------------------------------------
    05. Fonts -------------------------------------
    06. Helpers -----------------------------------
         Clear ------------------------------------
         Notext -----------------------------------
         Hidden -----------------------------------
         Alignleft --------------------------------
         Alignright -------------------------------
         Disabled ---------------------------------
         Grid -------------------------------------
         Responsive Helpers -----------------------
    07. Reset -------------------------------------
    08. Regions -----------------------------------
    09. Container ---------------------------------
    10. Content -----------------------------------
    11. Footer ------------------------------------
    12. Header ------------------------------------
    13. Main --------------------------------------
    14. Shell -------------------------------------
    15. Sidebar -----------------------------------
    16. Wrapper -----------------------------------
    17. Modules -----------------------------------
    18. Accordion ---------------------------------
    19. Animate -----------------------------------
    20. Article -----------------------------------
    21. Breadcrumbs -------------------------------
    22. Button ------------------------------------
         Button Block -----------------------------
    23. Cards -------------------------------------
    24. Copyright ---------------------------------
    25. Features ----------------------------------
    26. Form Elements -----------------------------
    27. Form --------------------------------------
    28. Intro -------------------------------------
    29. List --------------------------------------
    30. List Steps --------------------------------
    31. List Logos	 -------------------------------
    32. Logo --------------------------------------
    33. Nav Trigger -------------------------------
    34. Nav ---------------------------------------
    35. Nav Footer --------------------------------
    36. Section -----------------------------------
    37. Section Steps -----------------------------
    38. Section Community  ------------------------
    39. Section Testimonial -----------------------
    40. Section Rating ----------------------------
    41. Section About -----------------------------
    42. Section Cards -----------------------------
    43. Slider ------------------------------------
    44. Slider Intro ------------------------------
    45. Slider Testimonials -----------------------
    46. Socials -----------------------------------
    47. Table -------------------------------------
    48. Testimonial -------------------------------
    49. Widget ------------------------------------
    50. Themes ------------------------------------
    51. Selectric ---------------------------------
 */

/* ------------------------------------------------------------ *\
	Settings
\* ------------------------------------------------------------ */

/* ------------------------------------------------------------ *\
	Sprite
\* ------------------------------------------------------------ */

.modalDialog {
  position: fixed;
  font-family: Arial, Helvetica, sans-serif;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 99999;
  opacity: 1;
  -webkit-transition: opacity 400ms ease-in;
  -moz-transition: opacity 400ms ease-in;
  transition: opacity 400ms ease-in;
  pointer-events: auto;
}
.modalDialog h2 {
  font-size: 48px !important;
	color:#9D3000 !important;
	text-align: center !important;
}
.modalDialog p {
  font-size: 18px !important;
	color: #303030;
	text-align: center !important;
}
.modalDialog h3 {
  font-size: 21px !important;
	color: #BE5730;
	font-weight:700;
	text-align: center !important;
}

.modalDialog:target {
  opacity: 0;
  pointer-events: none;
}

.modalDialog > div {
  width: 70%;
  position: relative;
  margin: 10% auto;
  padding: 20px 40px 40px;
  border-radius: 10px;
  background: #fff;
}

.close {
  background: #BE5730;
  color: #FFFFFF;
  line-height: 34px;
  position: absolute;
  right: -12px;
  text-align: center;
  top: -10px;
  width: 34px;
  text-decoration: none;
  font-weight: bold;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-box-shadow: 1px 1px 3px #000;
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000;
	opacity: 1;
}

.close:hover {
  background: #c33c1b;
	opacity: 1;
}


