<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.moya-cookie-consent__wrapper {
    position:fixed;
    margin:0;
    width: 100%;
    bottom: 0;
    padding: 0;
    z-index: 1000;
    text-align: center;
}

.moya-cookie-consent__content {
    display: flex;
    flex: 1;
    justify-content:center;
    background-color:#ddd;
    background-color:rgba(238, 238, 238, 0.9);
}
    .moya-cookie-consent__content div:first-child {
        color: #333;
        text-align: left;
        padding: 15px 10px;
    }

    .moya-cookie-consent__button-wrapper {
        display: inline-flex;
        align-items: center;
        flex-flow: column;
    }
        .moya-cookie-consent__button {
            background-color: #ddd;
            border: 2px solid #fff;
            padding: 10px;
            margin: 15px 10px 10px;
            font-size: 17px;
            cursor: pointer;
            display: inline-block;
            white-space: nowrap;
        }
            .moya-cookie-consent__button--approve {
                background-color: #fff;
            }

@media screen and (min-width:768px) {
    .moya-cookie-consent__content {
        display: inline-flex;
        padding: 20px 40px;
        max-width: 1500px;
    }
        .moya-cookie-consent__content div:first-child {
        }

    .moya-cookie-consent__button-wrapper {
        flex-flow: row;
    }
        .moya-cookie-consent__button {
            margin: 0 0 0 15px;
        }
}

@media screen and (max-width:767px) {
	.moya-cookie-consent__content {
		flex-direction: column;
	}
}
</pre></body></html>