@-webkit-keyframes fadein {
    from {opacity: 0;}
    to {opacity: 1;}
}

@-moz-keyframes fadein {
    from {opacity: 0;}
    to {opacity: 1;}
}

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

.action:hover {
    cursor: pointer;
}
 
.help:hover {
    cursor: help;
}



.croat-webminerbar {
    border-radius: 0 20px 20px 0;
    padding-top: 5px;
    background: #222222;
    height: 50px;
    text-align: center;
    position: fixed;
    top: 30%;
    left: 10px;
    box-sizing: border-box;
    color: rgb(58, 145, 54);
    cursor: default;
    z-index: 10000000;
    font: normal normal 400 normal 16px / 24px Roboto, "Helvetica Neue", Helvetica, Helvetica, Arial, sans-serif;
}

.croat-data {
    visibility: hidden;
    background: #F5F5F5;
}

.croat-webminerbar:hover {
    border-radius: 0 20px 0 0;
}

.croat-webminerbar:hover .croat-data {
    border-radius: 0 0 20px 0;
    height: auto;
    padding: 8px;
    visibility: visible;
    transition-duration: 1s;
    background: #333333;
    -webkit-animation: fadein 1s ;
    -moz-animation: fadein 1s ;
    animation: fadein 1s ;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* 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.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #222222;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 50%;
  
  font: normal normal 400 normal 12px / 20px Roboto, "Helvetica Neue", Helvetica, Helvetica, Arial, sans-serif;
}

.modalYes {
  float: right;
  color: LightGreen ;
  font-weight: bold;  
}

.modalKill {
  float: left;
  color: lightgray ;  
}

.img360 {
  -webkit-animation:spin 4s linear infinite;
  -moz-animation:spin 4s linear infinite;
  animation:spin 4s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

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