@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');

.policy-box {
position: fixed;
right: 30px;
bottom: 30px;
z-index: 99999;
display: none;
}

.policy-box2 {
width: 600px;
background-color: rgba(0,0,0,0.75);
padding: 20px 35px;
border-radius: 10px;
box-shadow: 0 0 15px 8px rgba(255,255,255,0.04);
backdrop-filter: blur(8px);
}

.policy-cont {
width: 100%;
display: table;
margin: 0px auto;
}

.policy-line1 {
width: 100%;
display: table-cell;
vertical-align: middle;
color: #fff;
padding-right: 30px;
}

.policy-line1 div {
font-family: "Onest", sans-serif;
font-size: 16px;
line-height: 22px;
font-weight: 900;
margin: 0 0 10px 0;
}

.policy-line1 span,
.policy-line1 a {
font-family: "Onest", sans-serif;
font-weight: 500;
font-size: 13px;
line-height: 17px;
}

.policy-line1 a {
color: #fff;
text-decoration: underline;
}

.policy-line2 {
display: table-cell;
vertical-align: bottom;
}

.policy-line2 span {
font-family: "Onest", sans-serif;
display: block;
padding: 15px 35px;
font-size: 11px;
color: #000;
font-weight: 900;
text-transform: uppercase;
background-color: #fff;
cursor: pointer;
border-radius: 2px;
border: none;
-o-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-webkit-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}

.policy-line2 span:hover {
background-color: #00c109;
color: #fff;
}

@media (max-width: 767px) {

.policy-box {
bottom: 10px;
right: 0px;
}

.policy-box2 {
width: calc(100% - 20px);
padding: 20px 20px;
box-shadow: 0 0 10px 4px rgba(255,255,255,0.04);
margin: 0px auto;
}

.policy-cont {
display: block;
}

.policy-line1 {
display: block;
margin: 0 0 20px 0;
}

.policy-line1 div {
font-size: 16px;
line-height: 22px;
margin: 0 0 10px 0;
}

.policy-line1 span,
.policy-line1 a {
font-size: 12px;
line-height: 18px;
}

.policy-line2 {
display: block;
}

.policy-line2 span {
width: 100%;
display: block;
text-align: center;
padding: 10px 0;
font-size: 11px;
color: #000;
background-color: #fff;
}

.policy-line2 span:hover {
background-color: #fff;
color: #000;
}

}