/*

                - - /|_/|      .-------------------.
  - _______________| @.@|     /      Styles by      )
-- (______         >\_C/< ---/    Liam Johnston    /
  -  -   / ______  _/____)  (   @liamjohnstonnz   /
 -  -   / /\ \   \ \         `-------------------'
   - (_/  \_) - \_)

*/
html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-size: 10px;
}
html {
    box-sizing: border-box;
    height: 100vh;
}
*,
*::before,
*::after {
    box-sizing: inherit;
}
body {
    min-height: 100%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol';
    font-size: 1.5rem;
    line-height: 1.5em;
    background: #fafafa;
    font-weight: 300;
    color: #444;
}
h1 {
    font-size: 26px;
    margin-bottom: 20px;
}
p {
    margin: 0 0 15px;
}
a {
    color: #3477db;
    text-decoration: none;
    cursor: pointer;
}
a:hover {
    text-decoration: underline;
}
a.active {
    cursor: default;
    color: #444;
    pointer-events: none;
}
body.suspended-page:not(.img-preview-mode) {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
}
.watermark {
    display: none; /* show only if not image preview mode */
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-weight: bold;
    color: #b6b6b6;
    cursor: pointer;
}
.suspended-page:not(.img-preview-mode) .watermark {
    display: block;
}
.gsTopBar {
    position: fixed;
    background: #fafafa;
    top: 0;
    padding: 30px 40px 20px;
    width: 100%;
    text-align: center;
}
.faviconWrap {
    display: inline-block;
    vertical-align: bottom;
    margin-bottom: -1px;
    margin-right: 10px;
}
.dark .faviconWrapLowContrast {
    filter: invert(1) grayscale(1);
}
.gsTopBarImg {
    height: 16px;
    width: 16px;
}
.gsTopBarTitle {
    color: #444;
    font-size: 20px;
    cursor: default;
}
.gsTopBarUrl {
    color: #444;
    cursor: pointer;
}
.gsTopBarUrl,
.gsTopBarTitleWrap {
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: inline-block;
    margin-bottom: 8px;
}
.hideOverflow {
    overflow: hidden;
}
.gsPreview {
    width: 90%;
    margin: 30px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    transition: all 0.2s ease;
}
.gsPreview:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.dark .gsPreview {
    filter: brightness(70%);
    opacity: 0.7;
}
.dark .gsPreview:hover {
    opacity: 1;
}
.gsPreviewImg {
    display: block;
    max-width: 100%;
    margin: 0;
}
body.img-preview-mode .gsTopBar {
    position: relative;
}
.suspended-page {
    cursor: pointer;
}
.suspendedMsg {
    width: 100vw;
    height: 100vh;
    line-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.suspendedMsg img {
    margin: 0 0 30px 120px;
}
.suspendedMsg-instr {
    font-size: 20px;
}
.suspendedMsg-shortcut {
    font-size: 15px;
}

.spinner:before {
    content: '';
    box-sizing: border-box;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    margin-top: -40px;
    margin-left: -40px;
    border-radius: 50%;
    border: 8px solid transparent;
    border-top-color: #3477db;
    animation: spinner 0.6s linear infinite;
    z-index: 100;
}
#snoozySpinner.spinner:before {
    border: 2px solid transparent;
    border-right-color: #4a4a4a;
    border-top-color: #4a4a4a;
    animation: spinner 0.6s linear infinite;
    margin: 0;
    position: absolute;
    top: 49px;
    right: 7px;
    left: auto;
    width: 12px;
    height: 12px;
}
.suspendedTextWrap {
    height: 60px; /* stops slight jump when suspending */
}
.waking .suspendedTextWrap {
    opacity: 0;
}
@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

/* dark theme for night lurkers */
.dark,
.dark .gsTopBar,
.dark .suspendedMsg {
    background: #222;
}
.dark .suspendedMsg img {
    filter: brightness(150%);
}
.dark .gsTopBar,
.dark .gsTopBarTitle,
.dark .gsTopBar a,
.dark .suspendedMsg,
.dark .watermark {
    color: #b8b8b8;
}
.dark #setKeyboardShortcut {
    text-decoration: underline;
    color: #b8b8b8;
}

/* end suspended tab styles */

.toast-wrapper {
    display: none;
    text-align: center;
    position: fixed;
    z-index: 9999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: fadeinout 4s linear forwards;
}
.toast-content {
    display: inline-block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fefefe;
    margin: auto;
    padding: 10px 20px 20px 20px;
    border: 1px solid #888;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.toast-content p {
    font-size: 16px;
}

@keyframes fadeinout {
    0%,
    100% {
        opacity: 0;
        visibility: hidden;
    }
    5%,
    90% {
        opacity: 1;
        visibility: visible;
    }
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.logo {
text-align: center;
  margin-top: 10px; }

.button {
    border: 2px solid none;
    padding: 10px 40px; 
    background: #01a041;
   color: white;
	text-align: center;
	width: 300px;
    border-radius: 25px;
	margin: 20px auto;
	transition: all 0.3s ease 0s;
	-webkit-box-shadow: 0px 11px 20px -8px rgba(0,112,187,1);
	-moz-box-shadow: 0px 11px 20px -8px rgba(0,112,187,1);
	box-shadow: 0px 11px 20px -8px rgba(0,112,187,1);}

.button:hover {
    border: 2px solid none;
    padding: 10px 40px; 
    background: #03471f;
  color: white;
	text-align: center;
	width: 300px;
    border-radius: 25px;
    margin: 5px auto;
	transition: all 0.3s ease 0s;
	-webkit-box-shadow: 0px 19px 34px -8px rgba(0,112,187,1);
	-moz-box-shadow: 0px 19px 34px -8px rgba(0,112,187,1);
	box-shadow: 0px 19px 34px -8px rgba(0,112,187,1);}

a .button {
	color: ffffff;
	text-align: center;
	font-size: 16px;
	text-decoration: none;
}

a {text-decoration: none;}
a:hover {text-decoration: none;}

.txt3 {
  margin-top: 10px;
}