<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.sgDialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2;
    display: inline-block;
}
.sgDialogOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.8);
}
.sgDialogContent {
    position: absolute;
    width: auto;
    height: auto;
    background: white;
    border-radius: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 0px 10px rgba(0,0,0,0.4);
    min-width: 960px;
    min-width: 300px;
    overflow: hidden;
	text-align: center;
}
.sgDialogBody
{
    padding: 1rem 1.8em;
}
.sgDialogBody div, .sgDialogBody span
{
    color: #666 !important;
    font-weight: normal !important;
}

.sgDialogBody .container {
    width: auto !important;
}

.sgDialogBody #content {
    min-height: auto !important;
	text-align: left;
    margin: 0 !important;
}

.sgDialogTitleBar
{
    background: #aac005;
    padding: 5px 20px;
    color: white;
    font-size: 1.2em;
    position: relative;
}

.sgDialogTitleBar &gt; p
{
    margin: 0;
    padding: 0;
    color: #fff !important;
    font-size: 1.5rem;
}
.sgDialogClose {
    position: absolute;
    top: 0;
    right: 0;
    color: #FFF;
    font-size: 14px;
    cursor: pointer;
    font-weight: bold;
    padding: 10px 13px;
    box-sizing: border-box;
    background: #aac005;
    transition: 0.335s all linear;
    height: 100%;
}

.sgDialogClose:hover {
    background: #8c9e04;
}

.button.privacy {
	margin-bottom: 20px!important;
    float: right;
    margin-right: 25px !important;
}

/** privacy settings **/
#privacy-content {
    display: flex;
    justify-content: space-between;
}

#privacy-content #content {
    margin: 0 !important;
}

#privacy-content #left-content {
    flex: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#privacy-content #privacy-icon {
    transform: translateY(15px);
}

#privacy-content #right-content {
    width: 450px;
    margin-left: 30px;
}</pre></body></html>