.abcr-tdrive-btn{ background-color: #6FC831 !important; }
.abcr-tdrive-btn.button { margin-top: 20px; }
@media screen and (min-width: 482px) {
.abcr-tdrive-btn.button { margin-left: 120px; }
}
.wrap-popup-data {
position: fixed;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.8);
align-items: center;
justify-content: center;
z-index: 99999;
display: none;
opacity: 0;
transition: ease all .2s;
}  .wrap-popup-data.hello-info {
display: flex;
opacity: 0;
animation-fill-mode: forwards;
animation-name: helloinfo;
animation-duration: .4s;
overflow-y: scroll;
}
@keyframes helloinfo {
0% { display:none;}
1% { display:flex; opacity:0; }
100% { display:flex; opacity:1; }
}
.wrap-popup-data .popup-data {
font-size: 14px;
position: absolute;
top: 50px;
background: white;
max-width: calc(100% - 20px);
padding: 30px;
margin: 20px;
width: 800px;
border-radius: 10px;
}
.popup-data h1 {
text-align: center;
}
.popup-data .exit {
text-align: right;
margin-bottom: 10px;
}
.popup-data .exit span {
cursor: pointer;
background: #00b7cd;
color: #ffffff;
padding: 8px 10px;
}