@import url('https://fonts.googleapis.com/css?family=Prompt:300,300i,400,400i,700,700i&subset=latin-ext');
/* font-family: 'Prompt', sans-serif; */
body{
    margin: 0;
    padding: 0;
    font-family: 'Prompt', sans-serif;
}
.noselect{
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.center {
    text-align:center !important;
}
*[onclick]{
    cursor: pointer;
}
@keyframes rotate360 {
    to { transform: rotate(360deg); }
}
.infinite_rotating{
    animation: 1s rotate360 infinite linear;
}
@keyframes ringring{
    0% {transform:rotate(0deg);}
    25% {transform:rotate(20deg);}
    75% {transform:rotate(-20deg);}
    100% {transform:rotate(0deg);transform:scale(1);}
}
.ringring{
    animation-name: ringring;
    animation-iteration-count: 5;
    animation-duration: .15s;
    animation-timing-function: ease-out;
}
.Popup{
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.2);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    font-size: 0;
    text-align: center;
}
.Popup .PopupValigner, .Popup .PopupContent{
    display: inline-block;
    vertical-align: middle;
}
.Popup .PopupValigner{
    height: 100%;
}
.Popup .PopupContent{
    font-size: 18px;
    background-color: white;
    padding: 10px;
    min-width: 200px;
    max-width: 80%;
    max-height: 80vh;
    overflow: auto;
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.Popup .PopupContent::-webkit-scrollbar {
    width: 5px;
}
 
.Popup .PopupContent::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
 
.Popup .PopupContent::-webkit-scrollbar-thumb {
  background-color: #4285F4;
  outline: 1px solid slategrey;
}