/**
*
* @package phpBB Extension - Force time zone
* @copyright (c) 2025 martin - https://www.martins-play-ground.uk & Sniper-e - https://www.sniper-e.net
*
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/

.forcetime {
    font-size: 15px;
    color: #0df116;
    text-align: center;
    border-radius: 6px;
    margin-top: 100px;
    margin-bottom: 10px;
    background-color: #0C0C0D !important;
    border: 1px solid #999999 !important;
    -moz-box-shadow: inset 0 0 0px #83839a;
    -webkit-box-shadow: inset 0 0 0px #83839a;
    box-shadow: inset 0 0 0px #83839a;
	animation: fadeOut ease 5s;
    animation-fill-mode: forwards;
}

.set-timezone {
      width: 100%;
      border: 1px solid #999;
      animation: bounce 1s infinite alternate;
      -webkit-animation: bounce 1s infinite alternate;
    }
    @keyframes bounce {
      from {
        transform: translateY(0px);
      }
      to {
        transform: translateY(-95px);
      }
    }
    @-webkit-keyframes image {
      from {
        transform: translateY(0px);
      }
      to {
        transform: translateY(-95px);
      }
    }