<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --primary-color: #0080ff;
    --secondary-color: #6593F5;
    --loading-background: #242f3f;
    --loading-fill-box: rgb(119, 235, 250);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.pw-container {
    margin: 0 auto;
    height: 100%;
    width: 100%;
}

/* Back to top button */
#back-to-top-button {
    display: none;
    position: fixed;
    background-color:var(--primary-color);
    color: white;
    cursor: pointer;
    font-size: 18px;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    padding: 6px 15px;
    border-radius: 10px;
}
  
#back-to-top-button:hover {
    background-color: var(--secondary-color);
}

/* Footer */
.footer {
    display: block;
	background: #333;
	color:#fff;
    width: 100%;
    padding: 25px;
	text-align: center;
}

.footer-content {
    width: auto;
}

.copyright {
    padding: 10px;
	text-align: center;
}

.footer-links {
    padding: 15px;
}

.footer-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    list-style: none;
}

.footer-links li {
    padding: 8px 0px;
    margin: 0 15px;
}

.footer-links a {
	color:#fff;
}

.footer-links a:hover {
	color: var(--primary-color);
}

.footer-social-media-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
}

.footer-social-media-links a {
    display: inline-flex;
    padding: 5px 10px;
    width: auto;
    color: #fff;
    text-align: center;
}

.footer-social-media-links a:hover {
    opacity: 0.7;
}

/* Scrollbar */
::-webkit-scrollbar {
    height: 10px;
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
  
/* Handle */
::-webkit-scrollbar-thumb {
    background: rgb(190, 185, 185);
}

/* Loader */
.loader-wrapper {
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--loading-background);
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.loader-wrapper .loader {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
    border: 4px solid var(--loading-fill-box);
    animation: loader 2s infinite ease;
}

.loader-wrapper .loader-inner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: var(--loading-fill-box);
    animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
    0% { 
        transform: rotate(0deg);
    }
    25% { 
        transform: rotate(180deg);
    }
    50% { 
        transform: rotate(180deg);
    }
    75% { 
        transform: rotate(360deg);
    }
    100% { 
        transform: rotate(360deg);
    }
}

@keyframes loader-inner {
    0% {
        height: 0%;
    }
    25% {
        height: 0%;
    }
    50% {
        height: 100%;
    }
    75% {
        height: 100%;
    }
    100% {
        height: 0%;
    }
}


/* Mobile */
@media(max-width: 1080px) {
}

@media(max-width: 390px) {

    /* Footer */
    /*.footer-links ul {
        display: block;
    }*/
    
    .footer-social-media-links a {
        padding: 10px 10px;
    }
}</pre></body></html>