/**
 * PgwModal - Version 2.0
 *
 * Copyright 2014, Jonathan M. Piat
 * http://pgwjs.com - http://pagawa.com
 *
 * Released under the GNU GPLv3 license - http://opensource.org/licenses/gpl-3.0
 */
body.pgwModalOpen {
    overflow: hidden;
}

#pgwModalBackdrop {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9000;
}

#pgwModal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index : 9010;
    overflow-x: auto;
    overflow-y: scroll;
    text-align:center;
}

#pgwModal .pm-container {
    margin: 10px;
}

#pgwModal .pm-body {
    display: inline-block;
    max-width: 800px;
    min-width: 255px;
    position: relative;
    width: 100%;
    z-index: 9020;
    margin-top: 10px;
}

/**
 * NOTICE:
 * If you want to update the modal rendering, please only edit the content below.
 * And if you update a class name, remember to specify it in the plugin configuration.
 * Please don't change the class names prefixed by "pm-".
 */

.pgwModalBackdrop {
    background: #000;
    opacity: 0.6;
    filter: alpha(opacity=60);
}

.pgwModal .pm-body {
    background-color: #fff;
    -webkit-box-shadow: 0 0px 5px 5px #555;
    box-shadow: 0 0px 5px 5px #555;
}

.pgwModal .pm-title {
  min-height: 25px;
  color: #fff;
  background: #e21a3c;
  line-height: 2em;
  font-size: 1rem;
  padding-left: 0.8em;
  text-align:left;
}

.pgwModal .pm-content {
    background: #fff;
    padding: 1em;
    text-align: left;
}

.pgwModal .pm-content p{
  font-size:0.8rem;
  color:#000;
  padding: 0.5em 0 0.5em 0;
  
}


.pgwModal .pm-close {
    cursor: pointer;
    position: absolute;
    top: 5px;
  	right: 5px;
}

.pgwModal .pm-close span.pm-icon {
    background: url(close-icon-white.png) no-repeat;
    background-size: cover;
    display: block;
    height: 20px;
    width: 20px;
}

@media only screen and (min-width : 200px) and (max-width : 500px) {
  
    .pgwModal .pm-title {
      padding-left: 0.3em;
  	}
	.pgwModal .pm-content {
      	padding: 0.3em;
    }
 
  	
  
}
 
