
/* The Modal (background) */

body{
    
    overflow: auto;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 100; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.0); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #1c1c1c;
    margin: auto;
    padding: 20px;
    width: 80%;
    color:white;
    text-align: center;
}

.modal-content h2 {
    color:white !important;
    text-align: center;
    padding-bottom: 5px;
}

.modal-content > i{
    
    text-align: center;
    margin-right: auto;
    
        font-size: 120px;
    position: relative;
    /* margin-top: 20px; */
    padding-left: 9px;
    
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.model-agree-button{
/*    border-radius: 50%;*/
    background:none;
    background-color: none;
/*    border: 2px solid lawngreen;*/
    border:none;
    color:lawngreen;
    height: auto;
    width: auto;
    font-size: 20px;
    transition: 0.25s all ease;
    margin-left: 5px;

}

.model-agree-button:hover{
     scale(1);
       transition: 0.25s all ease;
    font-size: 21px;
/*    background-color: limegreen;*/
    color: white;
    border-color:white;
}

.model-disagree-button:hover{
    scale(1);
    transition: 0.25s all ease;
    font-size: 21px;
/*    background-color: red!important;*/
    color: white;
 
}




.model-disagree-button{
/*     border-radius: 50%;*/
    background:none;
/*    background-color: none;*/
     border:none;
/*    border: 2px solid red;*/
    color:red;
     height: auto;
    width: auto;
    font-size: 20px;
    transition: 0.25s all ease;
    margin-left: 5px;
}


.blurOn{
    -webkit-transition-delay: 2s; /* Safari */
    transition-delay: 2s;
    -webkit-filter: blur(20px); 
    transition: 0.25s all ease;
    
}

.blurOff{ 
    -webkit-transition-delay: 2s; /* Safari */
    transition-delay: 2s;
    -webkit-filter: blur(0px); 
    transition: 0.25s all ease;
}


  @-webkit-keyframes colorchange {
      0% {
        
        color: white;
      }
      
     
      100%{
          
          color:darkorange;
      }
}


.popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* The actual popup */
.popup .popuptext {
    visibility: hidden;
    width: 160px;
    background-color: white;
    color: black;
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -80px;
}

/* Popup arrow */
.popup .popuptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: white transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 0.25s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
    from {opacity: 0;} 
    to {opacity: 1;}
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity:1 ;}
}

.popspanbutton{
    
    background: none;
    border:none;
    color: darkorange;
    font-weight: 700;
}

.popspanbutton:hover{
    
    color: darkorange;
    font-weight: 900;
}