html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, menu, nav, section {
    display: block;
}
*{

    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body {

}
html {
    color: #333;
    font-size: 14px;
    font-family: 'DIN Pro', Arial, sans-serif;
    line-height: 1.3;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a {
    text-decoration: none;
    color: inherit;
}
.f-clear:after {
    display: table;
    content: ' ';
    clear: both;
}
.f-clear:before {
    display: table;
    content: ' ';
    clear: both;
}
.l-container  {
    max-width: 1600px;
    margin: auto;
    padding: 0 15px;
}
.l-container:after {
    display: table;
    content: ' ';
    clear: both;
}
.l-container:before {
    display: table;
    content: ' ';
    clear: both;
}

.l-container-text{
    padding-bottom: 40px;
}
.l-container-text a{
    text-decoration: underline;
}
#checkout
{
    width: 50%;
    left: 25%;
    top: 18px;
    position: fixed;
    background: #fff;
    z-index: 9999;
    height: 700px;
    padding: 20px;
    box-shadow: 1px 1px 1px 1000px rgba(0,0,0,0.7);
}

#checkout_wrapper{
    background-color:#fff;
    height:290px;
}
#checkout_message{
    padding:0px 20px;
    font-size:14px;
    margin-bottom:18px;
}
#checkout_loader{
    padding:20px;
    text-align:center;
.loader{
    color:#949494;
    text-transform:uppercase;
    margin-bottom:20px;
}
}
#checkout_button{
    padding:25px;
    text-align:center;
    cursor:pointer;
    background-color:lightgreen;
    color:#fff;
&:hover{
     background-color:green;
 }
}