/*
 * SimpleModal Basic Modal Dialog
 * http://simplemodal.com
 *
 * Copyright (c) 2013 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 */

#basic-modal-content {display:none; overflow: auto;}

/* Overlay */
#simplemodal-overlay {background-color:#000;}

/* Container */

/*  GO FULL WIDTH BELOW 768 PIXELS */
@media only screen and (max-width: 768px) {
  #simplemodal-container {width: 94% !important; max-height: 600; min-height: 420px;}
}
@media only screen and (min-width: 769px) {
  #simplemodal-container {width: 600px; max-height: 300; min-height: 280px;}
}

#simplemodal-container {height: auto; top: 10px; color:#bbb; background-position: cover; background-color:#016334; border: 0; padding:12px;}
#simplemodal-container .simplemodal-data {padding:0; -webkit-overflow-scrolling: touch !important;}
#simplemodal-container code {background:#141414; border-left:3px solid #65B43D; color:#bbb; display:block; font-size:12px; margin-bottom:12px; padding:4px 6px 6px;}
#simplemodal-container a {color:#ddd;}
#simplemodal-container a.modalCloseImg {background:url(x.png) no-repeat; width:25px; height:29px; display:inline; z-index:3200; position:absolute; top:-8px; right:-8px; cursor:pointer;}
#simplemodal-container h3 {color:#fff; text-align: center; margin-top: 0.25em; margin-bottom: 0em;}

  ::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}
::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0,0,0,.5);
    -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}

body.modal-open {
    position: fixed;
    overflow: hidden;
}