<style>
/* The Modal (background) */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1010; /* Sit on top */
padding-top: 150px; /* Location of the box */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}
/* Modal Content */
.modal-content {
position: relative;
background-color: #4F3175;
margin: auto;
padding: 0;
width: 50%;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
animation-name: animatetop;
animation-duration: 0.4s
}
/* Modal Header */
.modal-header {
padding: 2px 16px;
color: white;
}
/* Modal Body */
.modal-body {
padding: 6%;
}
/* The Close Button */
.close {
color: #aaaaaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
#myModalConfirmOffer a {
color: #ffffff;
text-decoration: underline;
}
@media only screen and (max-width: 600px) {
/*!* The Modal (background) *!*/
.modal {
padding-top: 0;
}
/*!* The Modal (background) *!*/
.modal-content {
width: 100%; /* Full width */
height: 100%; /* Full width */
}
}
@media only screen and (max-width: 1000px) and (max-height: 450px) {
/* The Modal (background) */
.modal {
padding-top: 5%;
}
/* The Modal (background) */
.modal-content {
width: 75%; /* Full width */
}
}
/* Add Animation */
@keyframes animatetop {
from {
top: -300px;
opacity: 0
}
to {
top: 0;
opacity: 1
}
}
</style>
<div id="myModalConfirmOffer" class="modal">
<div class="modal-content">
<div class="modal-header">
<span id="btnCloseModalConfirmOffer" class="close">×</span>
</div>
<div class="grid-x grid-margin-x modal-body">
<div class="cell medium-12">
<div class="grid-x grid-margin-y">
<div class="cell small-12 large-11 large-offset-1">
<h1 class="text-center" style="color: #FFFFFF;">
{{ "BESTELLUNG AUFGEBEN"|trans }}
</h1>
</div>
</div>
<div class="grid-margin-y">
<p class="text-center" style="color: #FFFFFF; font-size: 18px;">
{{ "Indem Sie auf"|trans }} <b>{{ "JETZT KAUFEN"|trans }}</b>
{{ "klicken geben Sie Ihre Bestellung bei CAD2CUT verbindlich auf und stimmen den"|trans }}
<b><a href="{{ startSite ~ 'agb' }}"
target="_blank">{{ "Allgemeinen Geschäftsbedingungen"|trans }}</a></b> {{ "sowie den"|trans }}
<b><a href="{{ startSite ~ 'datenschutz' }}"
target="_blank">{{ "Datenschutzbestimmungen"|trans }}</a></b> {{ "zu."|trans }}
</p>
</div>
<br>
<div class="grid-x grid-margin-x">
<div class="cell small-6 large-5 large-offset-1">
<button id="btnCancelModalConfirmOffer" class="button expanded"
style="background: #FFFFFF; color: #4F3175">{{ "BESTELLUNG ÄNDERN"|trans }}</button>
</div>
<div class="cell small-6 large-5">
<button id="btnConfirModalConfirmOffer"
class="button expanded secondary">{{ "JETZT KAUFEN"|trans }}</button>
</div>
</div>
</div>
</div>
</div>
</div>