ACC SHELL
@media only screen and (max-width: 1800px) {
.popup-box {
display: none;
}
}
.popup-box {
width: 392px;
height: 240px;
background: url("../img/popup-box.png");
color: #fff;
padding: 2rem;
position: relative;
}
.popup-box .popup-icon {
position: absolute;
top: 0rem;
right: 0.4rem;
font-size: 1.5rem;
color: #000;
font-family: "roboto";
}
.popup-box .popup-button {
position: absolute;
bottom: 2.5rem;
right: 39%;
border: 1px solid #000;
padding: 3px 7px;
border-radius: 14px;
font-size: 11px;
background: #fcfcfc;
color: #000;
font-family: "roboto";
font-weight: 500;
decoration: none;
}
.popup-box .popup-button:hover {
background: #127bfb;
border: 2px solid #000;
color: #fff;
}
.popup-box h3 {
font-family: "roboto";
font-size: 20px;
font-weight: 900;
color: #FAF3DD;
position: absolute;
top: 22%;
}
.popup-box p {
position: absolute;
top: 23%;
left: 1%;
padding: 2rem;
}
@keyframes popup-box {
0% {
top: -400px;
}
100% {
top: 0;
}
}
.popup-container {
overflow-y: hidden;
position: fixed;
z-index: 9999999;
top: 0;
left: -1%;
}
.popup-container > div.popup-box {
animation-name: popup-box;
animation-duration: 1.5s;
animation-fill-mode: forwards;
}
@media only screen and (max-width: 700px) {
.iframe-md {
margin-left: 0%!important;
width: 100%;
}
}
ACC SHELL 2018