
/* Modal Base CSS */
.jh-overlay {
    position: fixed !important;
    z-index: 9998;
    top: 0;
    left: 0;
    opacity: 0;

    width: 100%;
    height: 100%;

    -webkit-transition: 1ms opacity ease;
    -moz-transition: 1ms opacity ease;
    -ms-transition: 1ms opacity ease;
    -o-transition: 1ms opacity ease;
    transition: 1ms opacity ease;

    background: rgba(0,0,0,0.55);
}

.jh-modal {
    position: fixed;
    z-index: 9999 !important;
    top: 0px;
    left: 50%;
    opacity: 0;
    width: 94%;
    padding: 0px;

    -webkit-transition: 1ms opacity ease;
    -moz-transition: 1ms opacity ease;
    -ms-transition: 1ms opacity ease;
    -o-transition: 1ms opacity ease;
    transition: 1ms opacity ease;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 2px;
    background: #fff;
    
    -webkit-box-shadow: 0px 0px 16px 2px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 16px 2px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 16px 2px rgba(0,0,0,0.75);
}

.jh-modal.jh-open.jh-anchored {
    top: 20px;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.jh-modal.jh-open {
    opacity: 1;
}

.jh-overlay.jh-open {
    opacity: 1;
}

/* Close Button */
.jh-close {
    font-family: Helvetica,Arial,sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 12px;
    position: absolute;
    top: 15px;
    right: 10px;
    padding: 7px;
    cursor: pointer;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    outline: none;
    background: rgba(0,0,0,0.8);
}

.jh-close:hover {
    background: #e18700;
}

/* Fade & Drop Animation */
.jh-overlay.fade-and-drop {
    display: block;
    opacity: 0;
}
.jh-modal.fade-and-drop {
    top: -300%;
    opacity: 1;
    display: block;
}

.jh-modal.fade-and-drop.jh-open {
    top: 50%;

    -webkit-transition: 500ms top 500ms ease;
    -moz-transition: 500ms top 500ms ease;
    -ms-transition: 500ms top 500ms ease;
    -o-transition: 500ms top 500ms ease;
    transition: 500ms top 500ms ease;
}

.jh-modal.fade-and-drop.jh-open.jh-anchored {
    top: 0px!important;
    
    -webkit-transition: 500ms top 500ms ease;
    -moz-transition: 500ms top 500ms ease;
    -ms-transition: 500ms top 500ms ease;
    -o-transition: 500ms top 500ms ease;
    transition: 500ms top 500ms ease;
}

.jh-overlay.fade-and-drop.jh-open {
    top: 20px;

    -webkit-transition: 500ms opacity ease;
    -moz-transition: 500ms opacity ease;
    -ms-transition: 500ms opacity ease;
    -o-transition: 500ms opacity ease;
    transition: 500ms opacity ease;

    opacity: 1;
}

.jh-modal.fade-and-drop {
    -webkit-transition: 500ms top ease;
    -moz-transition: 500ms top ease;
    -ms-transition: 500ms top ease;
    -o-transition: 500ms top ease;
    transition: 500ms top ease;
}

.jh-overlay.fade-and-drop {
    -webkit-transition: 500ms opacity 500ms ease;
    -moz-transition: 500ms opacity 500ms ease;
    -ms-transition: 500ms opacity 500ms ease;
    -o-transition: 500ms opacity 500ms ease;
    transition: 500ms opacity 500ms ease;
}

/* Fade & Spin Animation */
.jh-overlay.zoom-and-spin
{
    display: block;

    height: 0px;

    opacity: 0;
}

.jh-modal.zoom-and-spin
{
    -webkit-transition: 500ms -webkit-transform ease;
    -moz-transition: 500ms    -moz-transform ease;
    -ms-transition: 500ms     -ms-transform ease;
    -o-transition: 500ms      -o-transform ease;
    transition: 500ms         transform ease;
    -webkit-transform: translate(-50%, -50%) scale(0) rotateX(0deg);
    -moz-transform: translate(-50%, -50%) scale(0) rotateX(0deg);
    -ms-transform: translate(-50%, -50%) scale(0) rotateX(0deg);
    -o-transform: translate(-50%, -50%) scale(0) rotateX(0deg);
    transform: translate(-50%, -50%) scale(0) rotateX(0deg);

    opacity: 1;

    display: block;
}

.jh-modal.zoom-and-spin.jh-open
{
    -webkit-transition: 500ms -webkit-transform 500ms ease;
    -moz-transition: 500ms    -moz-transform 500ms ease;
    -ms-transition: 500ms     -ms-transform 500ms ease;
    -o-transition: 500ms      -o-transform 500ms ease;
    transition: 500ms         transform 500ms ease;
    -webkit-transform: translate(-50%, -50%) scale(1) rotateX(360deg);
    -moz-transform: translate(-50%, -50%) scale(1) rotateX(360deg);
    -ms-transform: translate(-50%, -50%) scale(1) rotateX(360deg);
    -o-transform: translate(-50%, -50%) scale(1) rotateX(360deg);
    transform: translate(-50%, -50%) scale(1) rotateX(360deg);
}

.jh-modal.zoom-and-spin.jh-open.jh-anchored
{
    -webkit-transition: 500ms -webkit-transform 500ms ease;
    -moz-transition: 500ms    -moz-transform 500ms ease;
    -ms-transition: 500ms     -ms-transform 500ms ease;
    -o-transition: 500ms      -o-transform 500ms ease;
    transition: 500ms         transform 500ms ease;
}

.jh-overlay.zoom-and-spin.jh-open
{
    top: 0;

    height: 100%;

    -webkit-transition: 500ms all ease;
    -moz-transition: 500ms all ease;
    -ms-transition: 500ms all ease;
    -o-transition: 500ms all ease;
    transition: 500ms all ease;

    opacity: 1;
}

.jh-overlay.zoom-and-spin
{
    -webkit-transition: 500ms all 500ms ease;
    -moz-transition: 500ms all 500ms ease;
    -ms-transition: 500ms all 500ms ease;
    -o-transition: 500ms all 500ms ease;
    transition: 500ms all 500ms ease;
}

/* Zoom Animation */
.jh-overlay.zoom
{
    display: block;

    opacity: 0;
}

.jh-modal.zoom
{
    -webkit-transition: 500ms -webkit-transform ease;
    -moz-transition: 500ms    -moz-transform ease;
    -ms-transition: 500ms     -ms-transform ease;
    -o-transition: 500ms      -o-transform ease;
    transition: 500ms         transform ease;
    -webkit-transform: translate(-50%, -50%) scale(0);
    -moz-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    -o-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);

    opacity: 1;

    display: block;
}

.jh-modal.zoom.jh-open
{
    -webkit-transition: 500ms -webkit-transform 500ms ease;
    -moz-transition: 500ms    -moz-transform 500ms ease;
    -ms-transition: 500ms     -ms-transform 500ms ease;
    -o-transition: 500ms      -o-transform 500ms ease;
    transition: 500ms         transform 500ms ease;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    -o-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.jh-modal.zoom.jh-open.jh-anchored
{ 
    -webkit-transition: 500ms -webkit-transform 500ms ease;
    -moz-transition: 500ms    -moz-transform 500ms ease;
    -ms-transition: 500ms     -ms-transform 500ms ease;
    -o-transition: 500ms      -o-transform 500ms ease;
    transition: 500ms         transform 500ms ease;
}

.jh-overlay.zoom.jh-open
{
    top: 0;

    -webkit-transition: 500ms opacity ease;
    -moz-transition: 500ms opacity ease;
    -ms-transition: 500ms opacity ease;
    -o-transition: 500ms opacity ease;
    transition: 500ms opacity ease;

    opacity: 1;
}

.jh-overlay.zoom
{
    -webkit-transition: 500ms opacity 500ms ease;
    -moz-transition: 500ms opacity 500ms ease;
    -ms-transition: 500ms opacity 500ms ease;
    -o-transition: 500ms opacity 500ms ease;
    transition: 500ms opacity 500ms ease;
}

/*OTHERS*/
.triggerModal{
    cursor: pointer;
    color: #0088cc;
}
.triggerModal:hover{
    color: red;
    font-size: 18px;
}

/*@media(max-height:560px){
    .jh-modal.fade-and-drop.jh-open {
        top: 5px;
    }
}*/

.img_full{
    max-width: 100%; 
    height: auto;
}
.header_modal{
    text-align: center;
    width: 100%;
    padding: 20px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    margin-right: 50px;
    text-transform: uppercase;
    font-size: 16px;
}

.imagen_modal{
    padding: 10px;
    width: 100%;
    text-align: center;
}

.img_modal{
    width: auto;
    height: 120px;
}

.cont_modal{
    width: 100%;
    padding: 0px 20px 20px 20px;
    text-align: justify;
}

.external_url{
    text-align: right;
    float: right;
    padding: 0px 20px 10px 20px;
/*    position: absolute;
    right: 10px;
    bottom: 10px;*/
}

/*ANIMACIONES*/
@-webkit-keyframes pulse {
    0% {-webkit-transform: scale(1.5);
        transform: scale(1.1);}
    50% {-webkit-transform: scale(0.5);
         transform: scale(0.8);}
    100% {-webkit-transform: scale(1);
          transform: scale(1);}
}
@-moz-keyframes pulse {
    0% {-moz-transform: scale(1.5);
        transform: scale(1.1);}
    50% {-moz-transform: scale(0.5);
         transform: scale(0.8);}
    100% {-moz-transform: scale(1);
          transform: scale(1);
    }
}
.external_url {
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

/*TABLE CSS*/
.table_modal {
    margin:0px;padding:0px;
    width:100%;
    box-shadow: 10px 10px 5px #888888;
    border:1px solid #6d6d6d;

    -moz-border-radius-bottomleft:0px;
    -webkit-border-bottom-left-radius:0px;
    border-bottom-left-radius:0px;

    -moz-border-radius-bottomright:0px;
    -webkit-border-bottom-right-radius:0px;
    border-bottom-right-radius:0px;

    -moz-border-radius-topright:0px;
    -webkit-border-top-right-radius:0px;
    border-top-right-radius:0px;

    -moz-border-radius-topleft:0px;
    -webkit-border-top-left-radius:0px;
    border-top-left-radius:0px;
}.table_modal table{
    border-collapse: collapse;
    border-spacing: 0;
    width:100%;
    height:100%;
    margin:0px;padding:0px;
}.table_modal tr:last-child td:last-child {
    -moz-border-radius-bottomright:0px;
    -webkit-border-bottom-right-radius:0px;
    border-bottom-right-radius:0px;
}
.table_modal table tr:first-child td:first-child {
    -moz-border-radius-topleft:0px;
    -webkit-border-top-left-radius:0px;
    border-top-left-radius:0px;
}
.table_modal table tr:first-child td:last-child {
    -moz-border-radius-topright:0px;
    -webkit-border-top-right-radius:0px;
    border-top-right-radius:0px;
}.table_modal tr:last-child td:first-child{
    -moz-border-radius-bottomleft:0px;
    -webkit-border-bottom-left-radius:0px;
    border-bottom-left-radius:0px;
}.table_modal tr:hover td{

}
.table_modal tr:nth-child(odd){ background-color:#fce1c7; }
.table_modal tr:nth-child(even)    { background-color:#ffffff; }.table_modal td{
    vertical-align:middle;
    border:1px solid #6d6d6d;
    border-width:0px 1px 1px 0px;
    text-align:left;
    padding:3px;
    font-size:10px;
    font-weight:normal;
    color:#000000;
}.table_modal tr:last-child td{
    border-width:0px 1px 0px 0px;
}.table_modal tr td:last-child{
    border-width:0px 0px 1px 0px;
}.table_modal tr:last-child td:last-child{
    border-width:0px 0px 0px 0px;
}
.table_modal tr:first-child td{
    background:-o-linear-gradient(bottom, #ff7f00 5%, #bf5f00 100%);	
    background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ff7f00), color-stop(1, #bf5f00) );
    background:-moz-linear-gradient( center top, #ff7f00 5%, #bf5f00 100% );
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff7f00", endColorstr="#bf5f00");	
    background: -o-linear-gradient(top,#ff7f00,bf5f00);
    background-color:#ff7f00;
    border:0px solid #6d6d6d;
    text-align:center;
    border-width:0px 0px 1px 1px;
    font-size:14px;
    font-weight:bold;
    color:#ffffff;
}
.table_modal tr:first-child:hover td{
    background:-o-linear-gradient(bottom, #ff7f00 5%, #bf5f00 100%);	
    background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ff7f00), color-stop(1, #bf5f00) );
    background:-moz-linear-gradient( center top, #ff7f00 5%, #bf5f00 100% );
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff7f00", endColorstr="#bf5f00");	
    background: -o-linear-gradient(top,#ff7f00,bf5f00);
    background-color:#ff7f00;
}
.table_modal tr:first-child td:first-child{
    border-width:0px 0px 1px 0px;
}
.table_modal tr:first-child td:last-child{
    border-width:0px 0px 1px 1px;
}

.table_modal table td:first-child {
	width: 65%;
}
 
.table_modal table td:nth-child(2) {
	width: 35%;
}