/*
 * 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;
}

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

/* Container */
#simplemodal-container {
    height: 80% !important;
    width: 80% !important;
    color: #bbb;
    background-color: #333;
    border: 4px solid #444;
    padding: 12px;
}

#simplemodal-container .simplemodal-data {
    padding: 8px;
}

#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 {
    width: 25px;
    height: 29px;
    display: inline;
    z-index: 3200;
    position: absolute;
    top: -5px;
    right: -5px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
}

#simplemodal-container h3 {
    color: #ffffff;
    margin-top: 0px;
    margin-bottom: 25px;
    border-bottom: 1px solid #444;
}

iframe#ModalTourContent {
    border: none;
    width: 100%;
    height: 580px;
}

a#openModal.tour-btn {
    background: #fff !important;
    color: #36414d !important;
    border: 1px solid #36414d;
}

a#openModal.tour-btn:hover {
    background: #36414d !important;
    color: #fff !important;
}

.ucmnoscroll {
    overflow-y: hidden;
}