<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.box-wrapper {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(51, 51, 51, 0.8);
    z-index: 100
}

.box {
    background: #fff;
    font-family: 'Titillium Web', sans-serif;
    position: fixed;
    left: 50%;
    margin-left: -335px;
    z-index: 1000;
    margin-top: -100px;
    top: 50%
}

.box &gt; .head {
    font-size: 16px;
    text-transform: uppercase;
    color: #aaafb2;
    padding: 18.5px 20px;
    border-bottom: 1px solid #ecedee;
    font-weight: 600
}

.box &gt; .body {
    padding: 30px 20px;
    color: #aaafb2
}

.box &gt; .body &gt; .head {
    margin-bottom: 30px
}

.box &gt; .body &gt; .content &gt; form &gt; div &gt; div {
    margin-right: 10px
}

.box &gt; .body &gt; .content &gt; form &gt; div.with-margin {
    margin-bottom: 20px
}

.box .footer[data-color='red'] {
    cursor: pointer;
    background: #ec5555;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    font-weight: 600;
    padding: 22px 20px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear
}

.box .footer[data-color='red']:hover, .box .footer[data-color='red']:focus {
    background: #ea4747
}

.box.width {
    width: 670px
}

.hide {
    display: none;
}</pre></body></html>