
/*--------------------------------------------------------------

# NOTIFICATIONS

--------------------------------------------------------------*/



/*  ---------------------------------*/

/*  MODAL VERSION 2    ------------------*/

/*  ----------------------------------*/

.modal-wrapper {
    align-items: center;

  background-color: rgb(12,25,38); /* Fallback color */
  background-color: rgba(12,25,38,0.9); /* Black w/ opacity */    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    height: 100vh;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: fixed;
    right: 0;
    transition: all 0.2s ease-in-out;
    visibility: hidden;
    width: 100%;
    z-index: 1000;
}

.modal-wrapper.visible {
    opacity: 1;
    visibility: visible;
}

section.modal-window {
    width:275px;
    height: 270px;
    background-color: transparent;
    text-align: center; 
    margin: auto;
    display: block;
    
    transform: scale(0);
    transition: 0.2s ease-in-out all;
    position: absolute;
    padding-top: 0;
}

.modal-window.visible {
    transform: scale(1);
    position: relative;
}

.modal-header {
    align-items: center;
    border-bottom: 2px solid black;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.close-modal-button {
    border: none;
    background-color: transparent;
    color: rgb(112, 112, 112);
    cursor: pointer;
    font-size: 1rem;
    padding: 0.2em;
    
    bottom: 0;
    margin-bottom: -20px;

/*    left:94px;*/
    width:50px;
    height: 50px;
    display: block;
    margin-left:auto;
    margin-right:auto;
    background: url(../img/notifications/button_close.png) no-repeat center 7px;
  transition: 0.3s
/*    transition: filter 0.15s linear 0s;    */
}

.close-modal-button:hover,
.close-modal-button:focus{
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
    filter: brightness(130%)
}

.modal-trigger {
    color: rgb(10, 47, 255);
    cursor: pointer;
    text-decoration: underline;
}


/* BITMON AJUSTES */


.bitmon_notifications {
    width:240px;
    height: 230px;
    background-color: transparent;
    background-image: url(../img/notifications/bg_woodsign.png); 
    background-repeat: no-repeat;
    background-position: bottom center;
    text-align: center; 
    margin: auto;
    border: none;
}

.bitmon_notifications img{
    margin: 0 auto;
}


.bitmon_notifications h1 {
    width: 100%;
    
    font-family: "Passion One", "Arial Black", sans-serif;
    color: #FFF;
    font-size: 25px;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 #500e00;
    text-align: center;
    line-height: 22px;
    -webkit-text-stroke: 0px #FFF;
}

.bitmon_notifications p {
    color:#ffcc66;
    font-size: 16px;
    line-height: 16px;
    text-shadow: 2px 2px 0 #500e00;
}

.bitmon_notifications .imgMargin {
    margin:0 auto 15px auto;
}



/* The Close Button */
.bitmon_notifications .close {
    position: absolute;
    bottom: 0;
    margin-bottom: -30px;

    left:94px;
    width:50px;
    height: 50px;
    display: block;
    margin-left:auto;
    margin-right:auto;
    background: url(../img/notifications/button_close.png) no-repeat center top;
  transition: 0.3s
    transition: filter 0.15s linear 0s;
} 


.bitmon_notifications .close:hover,
.bitmon_notifications .close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
    filter: brightness(130%)

}


