Files
Chevereto/content/legacy/themes/Peafowl/lib/peafowl.css
2023-01-03 15:42:32 +00:00

6807 lines
126 KiB
CSS

:root {
--colorBlue: #3498db;
--colorBlueHover: #2980b9;
--colorGreen: #2ecc71;
--colorGreenHover: #27ae60;
--colorOrange: #e67e22;
--colorOrangeHover: #d35400;
--colorPurple: #9b59b6;
--colorPurpleHover: #8e44ad;
--colorRed: #e74c3c;
--colorRedHover: #c0392b;
--colorYellow: #f1c40f;
--colorYellowHover: #f39c12;
}
:root {
--colorSuccess: var(--colorGreen);
--colorFail: var(--colorRed);
--alertAccent: #f1c40f;
--alertBackground: #fff5b3;
--alertText: #161c1d;
--backgroundDarkAlpha: rgb(0 0 0 / 80%);
--backgroundLightAlpha: rgb(255 255 255 / 90%);
--bodyBackground: #FFF;
--bodyEmpty: #e2e8e9;
--bodySeparator: #e2e8e9;
--bodyText: #161c1d;
--bodyTextDisabled: #c5d1d3;
--bodyTextSubtle: #6c7779;
--buttonAccentBackground: var(--colorAccent);
--buttonAccentHoverBackground: var(--colorAccentStrong);
--buttonAccentHoverText: var(--buttonAccentText);
--buttonAccentText: #FFF;
--buttonDefaultBackground: #d9e1e2;
--buttonDefaultBorder: var(--buttonDefaultBackground);
--buttonDefaultHoverBackground: #c0def2;
--buttonDefaultHoverBorder: var(--buttonDefaultHoverBackground);
--buttonDefaultHoverText: var(--colorAccentStrong);
--buttonDefaultText: #161c1d;
--colorAccent: var(--colorBlue);
--colorAccentStrong: var(--colorBlueHover);
--inputBackground: #ecf0f1;
--inputPlaceholderText: #8aa2a8;
--inputText: #161c1d;
--linkText: var(--colorAccent);
--menuBackground: rgb(236 240 241 / 80%);
--menuItemHoverBackground: var(--colorAccent);
--menuItemHoverText: #FFF;
--menuItemText: #161c1d;
--menuSeparator: rgb(11 14 15 / 10%);
--menuText: #161c1d;
--modalBackground: var(--bodyBackground);
--modalText: #161c1d;
--topBarBackground: rgb(255 255 255);
--topBarText: #161c1d;
--viewerBackground: #323232;
--listItemText: #FFF;
}
* {
-ms-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
padding: 0;
border: 0;
list-style: none;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
.phone select:focus,
.phone textarea:focus,
.phone input:focus {
font-size: 16px !important;
}
}
.no-select, .user-select-none, .btn, .top-btn-text, .pop-btn-text, .link, .btn-container, .input-search, .list-item {
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.animate {
transition: all 200ms ease-in-out;
}
.animate--slow {
transition-duration: 400ms;
}
[type="search"] {
-moz-appearance: textfield;
-webkit-appearance: textfield;
appearance: textfield;
}
::-webkit-input-placeholder {
color: var(--inputPlaceholderText);
line-height: 140%;
}
:-moz-placeholder {
color: var(--inputPlaceholderText);
opacity: 1;
}
::-moz-placeholder {
color: var(--inputPlaceholderText);
opacity: 1;
}
:-ms-input-placeholder {
color: var(--inputPlaceholderText);
}
:focus::-webkit-input-placeholder {
color: var(--inputPlaceholderText);
}
:focus:-moz-placeholder {
color: var(--inputPlaceholderText);
}
:focus::-moz-placeholder {
color: var(--inputPlaceholderText);
}
focus:-ms-input-placeholder {
color: var(--inputPlaceholderText);
}
::-moz-focus-inner {
border: 0;
padding: 0;
margin: 0;
}
::-ms-clear {
display: none;
}
body {
min-height: 100vh;
min-height: -webkit-fill-available;
-webkit-font-smoothing: subpixel-antialiased;
}
[type="submit"]:focus, button:focus {
outline: none;
}
html {
height: 100%;
height: -webkit-fill-available;
}
html, body {
min-height: 100vh;
font-family: Helvetica, Arial, sans-serif;
color: var(--bodyText);
font-size: 16px;
background: var(--bodyBackground);
-webkit-text-size-adjust: 100%;
}
kbd {
font-family: inherit;
}
.pointer-events-none {
pointer-events: none;
}
#menu-fullscreen, #pop-box-mask.fullscreen {
height: 100%;
}
.pop-box, #menu-fullscreen {
transition: transform 350ms cubic-bezier(0.4, 0, 0, 1), opacity 350ms cubic-bezier(0.4, 0, 0, 1);
}
#menu-fullscreen>ul {
position: relative;
z-index: 1000;
background: var(--topBarBackground);
color: var(--topBarText)
}
body.no-margin-top {
margin-top: 0;
padding-top: 0;
/* min-height: calc(100% - 50px); */
}
.content-width {
width: 100%;
margin-inline-end: auto;
margin-inline-start: auto;
position: relative;
padding-inline-start: 10px;
padding-inline-end: 10px;
}
.phone .top-bar .content-width {
padding-inline-start: 0;
padding-inline-end: 0;
}
a {
color: var(--linkText);
text-decoration: none;
cursor: pointer;
outline: 0;
}
a[rel=external]::after {
font-weight: 900;
font-family: "Font Awesome 5 Free";
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
display: inline-block;
font-style: normal;
font-variant: normal;
text-rendering: auto;
line-height: 1;
margin-inline-start: 0.25em;
content: "\f35d";
font-size: 90%;
}
a[role="button"]:hover {
text-decoration: none;
}
a:hover, a:focus {
text-decoration: underline;
}
h1, h2, h3, h4, h5, h6 {
font-weight: normal;
line-height: 1;
}
.ui-selectable-helper {
background: var(--colorAccent);
border: 2px dashed var(--topBarBackground);
position: absolute;
z-index: 500;
opacity: .6;
}
.image-container {
transition: transform 180ms cubic-bezier(0.25, 1, 0.5, 1);
}
.selected .image-container, .ui-selecting.selected .image-container {
transform: scale(0.5);
}
.selected .list-item-play-gif, .ui-selecting.selected .list-item-play-gif {
transform: scale(0.75);
}
.ui-selecting.selected .image-container img, .selected .image-container img,
.ui-selecting.selected .image-container svg, .selected .image-container svg {
border-radius: 0.5em;
-webkit-transform: translateZ(0);
}
.hidden {
display: none !important;
}
.visible {
display: block !important;
}
.soft-hidden, .fas.soft-hidden, .far.soft-hidden, .fab.soft-hidden {
display: none;
}
.soft-visible {
display: block;
}
.hidden-visibility {
visibility: hidden;
position: absolute;
top: 0;
}
.touch-scroll {
overflow: auto;
-webkit-overflow-scrolling: touch;
}
.or-separator {
border-top: 1px solid var(--bodySeparator);
text-align: center;
margin: 10px 0 10px 0;
}
.tone-dark .or-separator {
border-color: rgba(255, 255, 255, 0.1);
}
.or-separator span {
font-size: 0.93em;
font-weight: normal;
color: var(--bodySeparator);
text-transform: uppercase;
text-align: center;
background: var(--bodyBackground);
display: inline-block;
position: relative;
padding: 0 10px;
top: -10px;
}
.highlight {
color: var(--alertText);
background: var(--alertBackground);
}
.highlight:empty {
display: none;
}
.line-through {
text-decoration: line-through;
}
.line-separator {
width: 100%;
height: 1px;
background: var(--bodySeparator);
display: block;
margin: 20px 0;
}
.number-figures, a.number-figures {
font-size: 1.21em;
line-height: 1.21em;
color: inherit;
text-decoration: none;
padding-inline-start: 10px;
padding-inline-end: 10px;
margin-inline-start: 0;
border-inline-start: 1px solid var(--bodySeparator);
text-align: center;
}
.tone-dark .number-figures, .tone-dark a.number-figures {
border-color: #212121;
}
.number-figures:first-child {
padding-inline-start: 0;
border-inline-start: none;
}
.number-figures:last-child {
padding-inline-end: 0;
}
.number-figures b {
font-weight: inherit;
}
.number-figures .icon-heart4 {
position: relative;
top: 1px;
}
.number-figures span:not(.icon) {
color: var(--bodyTextSubtle);
text-transform: uppercase;
font-size: 0.6em;
}
a.number-figures:hover, a.number-figures:hover * {
color: var(--linkText);
}
.loading-indicator, .loading-text {
display: inline-block;
line-height: inherit;
vertical-align: top;
}
.loading-text {
margin-inline-start: 5px;
}
.btn-alt {
color: var(--bodyTextSubtle);
font-size: 13px;
font-size: 0.93rem;
margin: 0 5px;
display: inline !important;
}
.btn-alt a:first-letter {
text-transform: capitalize;
}
.phone .btn-alt {
margin: 5px 0 0;
}
.btn-alt a {
margin-inline-start: 5px;
cursor: pointer;
}
a.link {
font-size: 13px;
font-size: 0.93rem;
text-decoration: none;
font-weight: normal;
}
a.link--delete, [data-action="delete"], .tone-dark .pop-box-menu a.link--delete, .pop-box-menu a.link--delete {
color: #e74c3c;
}
.tone-dark html:not(.phone) .pop-box-menu a.link--delete:hover, html:not(.phone) .pop-box-menu a.link--delete:hover {
background-color: #e74c3c;
}
a.link--approve {
color: #2ecc71;
}
a.link span.icon, a.link:hover span.icon {
text-decoration: none;
}
a.link:hover span {
text-decoration: underline;
}
.disabled, .disabled a {
color: var(--bodyTextDisabled);
}
.tone-dark .disabled, .tone-dark .disabled a {
color: #444;
}
.disabled a {
text-decoration: none;
cursor: default;
}
.optional {
font-size: 50%;
color: var(--bodyTextSubtle);
font-weight: normal;
}
.text-shadow {
text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.75);
-webkit-filter: dropshadow(color=#000000, offx=2, offy=2);
filter: dropshadow(color=#000000, offx=2, offy=2);
}
.box-shadow {
box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.45);
}
.silent-links a, a.silent-links {
color: inherit;
}
.close-box .icon-circle {
color: var(--bodyText);
position: relative;
}
.close-box .icon-close-box {
color: #fff;
position: absolute;
inset-inline-start: 0;
top: 0;
}
.transparent-canvas {
background-image: url(data:image/gif;base64,R0lGODlhEAAQAIAAAP///9/f3yH5BAAHAP8ALAAAAAAQABAAAAIfjG+gq4jM3IFLJgpswNly/XkcBpIiVaInlLJr9FZWAQA7);
background-repeat: repeat;
}
.transparent-canvas.dark {
background-image: url(data:image/gif;base64,R0lGODlhEAAQAIAAAOfn58rKyiH5BAAHAP8ALAAAAAAQABAAAAIfjG+gq4jM3IFLJgpswNly/XkcBpIiVaInlLJr9FZWAQA7);
}
input, textarea, select {
font-family: inherit;
font-size: inherit;
-ms-appearance: none;
border-radius: 3px;
display: inline-block;
border: 1px solid transparent;
background: var(--inputBackground);
color: var(--inputText);
}
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
-webkit-text-fill-color: var(--inputText) !important;
}
input:focus, textarea:focus, select:focus, input.search:focus, .input-focus {
border-color: var(--colorAccent);
}
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, select:-webkit-autofill, select:-webkit-autofill:hover, select:-webkit-autofill:focus {
-webkit-text-fill-color: inherit;
-webkit-box-shadow: inset 0 0 0px 9999px transparent;
-webkit-transition: background-color 5000s ease-in-out 0s;
transition: background-color 5000s ease-in-out 0s;
}
select {
font: inherit;
outline: none;
}
.text-input, textarea {
outline: 0;
}
input[type="checkbox"], input[type="radio"] {
border-radius: 0;
border: none;
position: relative;
vertical-align: baseline;
}
.text-input, input[type="text"], .input-line-height {
height: 36px;
}
.input-line-height {
line-height: 36px;
}
textarea, .text-input, input[type="text"]:not(.text-input) {
padding: 7px 10px;
width: 100%;
}
.ie7 textarea, .ie7 .text-input, .ie7 input[type="text"] {
padding: 10px;
width: 328px;
height: 14px;
}
.ie8 textarea, .ie8 .text-input, .ie8 input[type="text"], .ie9 textarea, .ie9 .text-input, .ie9 input[type="text"] {
height: auto;
}
.tone-dark input:focus, .tone-dark textarea:focus, .tone-dark select:focus, .tone-dark input.search:focus, .tone-dark .input-focus {
border-color: var(--colorAccent);
box-shadow: 0 0 8px 0 rgba(0, 167, 218, 0.75);
}
.input, .input-label {
position: relative;
overflow: visible;
scroll-snap-align: start;
}
.input {
margin: 10px 0;
font-size: 1em;
}
.input.first-child, .input:first-child {
margin-top: 0;
}
.input-label {
margin: 20px 0;
}
.input-label.first-child, .input:first-child {
margin-top: 0;
}
.input-label-label, .input-label label, .input-label h3 {
font-weight: 600;
padding-bottom: 5px;
display: inline-block;
font-size: 1em;
}
.input-label h3 {
display: block;
}
.input-label label a, .input-label h3 a {
font-weight: normal;
}
.input-label label .optional, .input-label label .caption {
font-weight: normal;
font-size: 0.92em;
}
.input-label .btn-alt {
position: absolute;
inset-inline-start: 100%;
top: 23px;
line-height: 36px;
margin-inline-start: 10px;
margin-inline-end: 0;
}
.phone .input-label .btn-alt {
position: static;
margin-inline-start: 0;
}
.input-label, .checkbox-label {
position: relative;
font-size: 0.93em;
}
.input .icon-input-submit {
background: transparent;
font-size: 1.82em;
color: #d9d9d9;
position: absolute;
inset-inline-end: 0.21em;
top: 0.21em;
cursor: pointer;
line-height: 1;
}
.tone-dark .input .icon-input-submit {
color: #666;
}
.input .icon-input-submit:hover, .input .icon-input-submit:focus, .input .icon-input-submit.focus {
color: var(--colorAccent);
}
.ie7 .input .icon-input-submit {
top: 2px;
}
.ui-autocomplete {
max-height: 130px;
overflow-y: auto;
overflow-x: hidden;
}
* html .ui-autocomplete {
height: 125px;
}
.autocomplete-list {
position: absolute;
display: none;
z-index: 1;
}
.autocomplete-list .ui-autocomplete {
position: absolute;
top: 0;
inset-inline-start: 0;
}
.autocomplete-list ul {
border: 1px solid var(--bodyTextDisabled);
}
.autocomplete-list a {
color: inherit;
background: Window;
padding: 7px 10px;
display: block;
text-decoration: none;
cursor: default;
}
.autocomplete-list a.ui-state-focus {
background: Highlight;
color: HighlightText;
}
.input-column {
width: 350px;
}
.input-warning {
color: var(--bodyTextSubtle);
position: absolute;
inset-inline-end: 0;
top: 0;
}
.input-below {
margin-top: 5px;
display: block;
position: static;
}
.red-warning {
color: #d74634;
}
.input-password .input-password-strength {
position: absolute;
inset-inline-end: 11px;
top: 50%;
margin-top: 5px;
}
.fancy-fieldset .input-password {
display: flex;
align-items: center;
}
.fancy-fieldset .input-password-strength {
inset-inline-end: 0;
top: auto;
margin-top: 0;
}
.input-password-strength {
background: var(--bodyEmpty);
}
.tone-dark .input-password-strength {
background: #1f1f1f;
}
.input-password-strength, .input-password-strength span {
display: block;
width: 50px;
height: 8px;
}
.input-password-strength span {
width: 0%;
background-color: transparent;
}
.input-password-strength *[data-veredict="very-weak"] {
background-color: #e74c3c;
}
.input-password-strength *[data-veredict="weak"] {
background-color: #e67e22;
}
.input-password-strength *[data-veredict="average"], .input-password-strength *[data-veredict="strong"], .input-password-strength *[data-veredict="stronger"] {
background-color: #2ecc71;
}
.checkbox-label {
font-size: 1em;
display: block;
margin: 5px 0;
position: relative;
}
.checkbox-label:last-child {
margin-bottom: 0;
}
.checkbox-label input {
position: absolute;
padding: 0;
margin: 0;
margin-inline-start: -20px;
}
.btn-alt.checkbox-label input {
position: static;
vertical-align: text-top;
margin-inline-end: 4px;
}
.phone .btn-alt.checkbox-label {
display: block !important;
margin: 10px 0;
}
.checkbox-label label {
padding-inline-start: 20px;
font-weight: normal;
margin: 0;
padding-bottom: 0;
}
.fancy-box .checkbox-label label {
display: flex;
align-items: flex-start;
}
.input-search {
position: relative;
}
input.search {
font-size: 1em;
border-radius: 200px;
padding: 0 25px 0 32px;
padding-inline-end: 3.0666rem;
padding-inline-start: 2.3571rem;
line-height: 100%;
height: 26px;
height: 1.86rem;
width: 100%;
border: 1px solid transparent;
top: 0;
inset-inline-start: 0;
outline: 0;
vertical-align: text-bottom;
}
input.search.one-icon-padding, input.search.two-icon-padding {
padding-inline-end: 30px;
padding-inline-end: 2rem;
}
input.search.two-icon-padding {
padding-inline-start: 30px;
padding-inline-start: 2rem;
}
.top-bar input.search {
padding-inline-start: 39px;
padding-inline-start: 2.46rem;
top: -2px;
position: relative;
padding-inline-end: 34px;
background: transparent;
border: transparent;
box-shadow: none !important;
}
.top-bar input {
color: var(--topBarText);
}
.ie7 input.search, .ie8 input.search, .ie9 input.search {
padding-inline-end: 10px;
line-height: 26px;
height: 26px;
}
.ie7 input.search {
padding: 0;
width: 200px;
}
.input-search span {
position: absolute;
cursor: pointer;
}
.input-search .icon--search {
inset-inline-start: 12px;
top: 6px;
color: var(--inputText);
}
.top-bar .input-search .icon--search {
top: 4px;
top: 0.24rem;
}
.tone-dark .top-bar .input-search input.search, .tone-dark .top-bar .input-search .icon--search {
color: #fff;
}
.input-search .icon--search, .top-btn-text .icon--search {
font-size: 16px;
width: 16px;
font-size: 1.143rem;
width: 1.143rem;
}
.input-search .icon--settings, .input-search .icon--close {
padding: 4px;
top: 0;
font-size: 1em;
}
.input-search .icon--settings {
inset-inline-end: 22px;
}
.input-search .icon--close {
inset-inline-end: 4px;
color: var(--inputText);
}
.ie7 .input-search .icon--close, .ie8 .input-search .icon--close, .ie9 .input-search .icon--close {
display: none;
}
select {
padding-inline-start: 7px !important;
}
.ie7 select {
width: 100% !important;
padding: 0 !important;
height: auto !important;
}
select option {
padding: 4px 10px;
margin: 0;
}
textarea {
resize: both;
height: 80px;
}
.input-upload {
position: relative;
}
.user-settings-avatar {
min-height: 160px;
height: auto;
}
.user-settings-avatar-container {
position: relative;
}
.user-settings-avatar-container, .user-settings-avatar-container .user-image {
font-size: 160px;
width: 1em;
height: 1em;
}
.user-settings-avatar .loading-placeholder {
position: absolute;
inset-inline-start: 0;
top: 0;
background: var(--bodyEmpty);
}
.tone-dark .user-settings-avatar .loading-placeholder {
background: rgba(0, 0, 0, 0.6);
}
.phone .user-settings-avatar-container {
margin: 0 auto 10px !important;
}
.input-upload .btn-container {
margin: 0 0 5px 0;
}
.input-upload .btn-alt {
margin-inline-start: 0;
}
.arrow-down {
border-width: 4px 4px 0 4px;
border-color: #333 transparent transparent transparent;
border-color: #333 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
content: "";
}
.arrow-down {
border-style: solid;
display: inline-block;
height: 0;
width: 0;
vertical-align: middle;
}
.sign-services li {
display: inline-block;
margin: 0 4px 4px 0;
}
.sign-service {
font-size: 0.93em;
padding: 0 8px;
line-height: 30px;
height: 29px;
}
.sign-service .btn-icon {
font-size: inherit;
width: auto;
}
.sign-services-compact .btn-text {
display: none;
}
.sign-service, .link-service {
color: #fff;
display: inline-block;
text-decoration: none !important;
}
.sign-service, .link-service span {
border-radius: 3px;
}
.link-service {
font-weight: normal;
height: 28px;
position: relative;
}
.link-service span {
display: block;
line-height: 28px;
text-align: center !important;
}
.link-service .btn-icon {
width: 28px;
height: 28px;
margin-inline-end: 4px;
position: absolute;
inset-inline-start: 0;
top: 0;
}
.link-service span.sign-text {
padding: 0 20px;
margin-inline-start: 32px;
}
.sign-service .icon, .btn-social .btn-icon {
color: #fff;
position: relative;
display: inline-block;
}
.btn-container {
margin-top: 20px;
margin-bottom: 20px;
position: relative;
}
.btn {
height: 36px;
line-height: 36px;
font-family: inherit;
font-size: 1em;
font-weight: normal;
padding: 0 10px;
border-radius: 3px;
cursor: pointer;
display: inline-block;
text-decoration: none;
border: 1px solid transparent;
white-space: nowrap;
}
.btn, .btn:hover, .btn:active, .btn:focus {
text-decoration: none;
}
.btn:active, .btn.default:active {
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-icon {
/* font-size: 14px; */
width: 18px;
display: inline-block;
text-align: center;
}
.btn-text {
margin-inline-start: 4px;
}
.btn-text:empty {
display: none;
}
.btn-big {
font-size: 16px;
font-size: 1.143rem;
height: 38px;
line-height: 38px;
padding-inline-start: 1em;
padding-inline-end: 1em;
}
.btn-small {
height: 30px;
line-height: 30px;
font-size: 0.92em;
}
.btn-input {
font-weight: 600;
font-size: 0.93em;
padding-inline-start: 20px;
padding-inline-end: 20px;
}
.btn-32 {
width: 32px;
height: 32px;
text-align: center;
display: inline-block;
}
.btn-32 .btn-icon {
font-size: 18px;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
.btn-capsule {
border-radius: 100px;
border-color: rgba(255, 255, 255, 0.5);
background-color: rgba(0, 0, 0, 0.5);
-webkit-backdrop-filter: blur(15px);
backdrop-filter: blur(15px);
background-image: none;
height: auto;
color: #fff;
text-shadow: none;
font-size: 0.93em;
height: 28px;
line-height: 28px;
font-weight: normal;
padding: 0 15px;
box-shadow: none;
-webkit-filter: none;
filter: none;
}
.btn-capsule:hover {
background-color: rgba(0, 0, 0, 0.7);
}
.no-rgba .btn-capsule {
border-color: #666;
background-color: none;
filter: progid: DXImageTransform.Microsoft.gradient(startColorstr=#7F000000, endColorstr=#7F000000);
zoom: 1;
}
.no-rgba .btn-capsule:hover {
filter: progid: DXImageTransform.Microsoft.gradient(startColorstr=#B2000000, endColorstr=#B2000000);
}
.btn-capsule:active {
box-shadow: none;
}
.btn-capsule .btn-icon {
font-size: 0.93em;
}
.btn.accent {
color: var(--buttonAccentText);
border: 1px solid transparent;
background: var(--buttonAccentBackground);
}
.btn.accent:not(.outline):hover {
color: var(--buttonAccentHoverText);
background: var(--buttonAccentHoverBackground);
}
.btn.accent.outline {
color: var(--buttonAccentBackground);
border-color: var(--buttonAccentBackground);
box-shadow: none;
}
.btn.accent.outline:hover {
color: var(--buttonAccentHoverBackground);
border-color: var(--buttonAccentHoverBackground);
}
.btn.default {
color: var(--buttonDefaultText);
border-color: var(--buttonDefaultBorder);
background: var(--buttonDefaultBackground);
}
.btn.default:not(.outline):hover, .btn.default--hover:not(.outline) {
color: var(--buttonDefaultHoverText);
background: var(--buttonDefaultHoverBackground);
border-color: var(--buttonDefaultHoverBorder);
}
.btn.default.outline {
color: var(--buttonDefaultBackground);
border-color: var(--buttonDefaultBackground);
box-shadow: none;
}
.btn.default.outline:hover {
color: var(--buttonDefaultHoverBackground);
border-color: var(--buttonDefaultHoverBackground);
}
.btn.disabled, .btn.disabled:hover {
color: var(--bodyTextSubtle);
background-color: var(--buttonDefaultBackground);
background-image: none;
box-shadow: none;
cursor: default;
}
.tone-dark .btn.disabled, .tone-dark .btn.disabled:hover {
color: #666;
background-color: #212121;
}
.btn.disabled.outline, .btn.disabled.outline:hover {
color: var(--bodyTextSubtle);
border-color: var(--bodyTextSubtle);
}
.btn.plain, .btn.plain:hover {
background: none;
text-shadow: none;
border-color: transparent;
box-shadow: none;
padding: 0;
color: inherit;
}
.tone-dark .btn.plain, .tone-dark .btn.plain:hover {
background: none;
}
.btn.plain:active {
box-shadow: none;
}
.btn.active {
background-image: none;
background-color: var(--colorAccent);
border-color: var(--colorAccent);
-webkit-filter: none;
filter: none;
}
.btn.grey, .btn.grey.off:hover {
background-color: #eee;
}
.btn.grey:hover {
background-color: #e9e9e9;
}
.btn.grey.outline {
color: #eee;
}
.btn.orange, .btn.orange.off:hover {
border-color: #fe771d;
background-color: #fe771d;
}
.btn.orange:hover {
background-color: #fe6b0a;
}
.btn.orange.outline {
color: #fe771d;
}
.btn.purple, .btn.purple.off:hover {
border-color: #8e44ad;
background-color: #8e44ad;
}
.btn.purple:hover {
background-color: #8e44ad;
}
.btn.purple.outline {
color: #8e44ad;
}
.btn.blue, .btn.blue.off:hover {
border-color: var(--colorBlue);
background-color: var(--colorBlue);
}
.btn.blue:hover {
background-color: #2879b0;
}
.btn.blue.outline {
color: var(--colorBlue);
}
.btn.green, .btn.green.off:hover {
background-color: var(--colorGreen);
}
.btn.green:not(.outline):hover {
background-color: var(--colorGreenHover);
}
.btn.green.outline {
color: var(--colorGreen);
border-color: var(--colorGreenHover);
}
.btn.red, .btn.red.off:hover {
border-color: var(--colorRed);
background-color: var(--colorRed);
}
.btn.red:not(.outline):hover {
background-color: var(--colorRedHover);
}
.btn.red.outline {
color: var(--colorRed);
}
.btn.red.outline:hover {
color: var(--colorRedHover);
border-color: var(--colorRedHover);
}
.btn.white, .btn.white.off:hover {
border-color: #fff;
background-color: #fff;
}
.btn.white:hover {
background-color: #fff;
}
.btn.white.outline {
color: #fff;
}
.btn.black, .btn.black.off:hover {
border-color: #3a3a3a;
background-color: #3a3a3a;
}
.btn.black:hover {
background-color: #343434;
}
.btn.black.outline {
color: #3a3a3a;
}
.btn.active, .btn.orange, .btn.blue, .btn.green, .btn.red, .btn.black {
color: #fff;
border: 1px solid transparent;
}
.btn.grey, .btn.white {
color: var(--bodyText);
}
.btn.off {
cursor: default;
}
.btn.off:active {
box-shadow: none;
}
.btn-social {
color: var(--buttonDefaultText);
background: var(--buttonDefaultBackground);
background-image: none;
box-shadow: none;
border: 1px solid transparent;
}
.btn-social.btn-at .btn-icon,
.btn-social.btn-share .btn-icon {
color: var(--buttonDefaultText);
}
.btn-social, .btn-social:hover {
text-decoration: none;
text-shadow: none;
}
.btn-twitter, .link-twitter span {
background: #55acee;
}
.btn-facebook, .link-facebook span {
background: #3b5998;
}
.btn-google, .link-google span, .btn-google-plus, .link-google-plus span {
background: #d74836;
}
.btn-mail {
background: #ccc;
color: var(--bodyText);
}
.btn-mail span {
color: var(--bodyText);
}
.btn-tumblr {
background: #35465c;
}
.btn-pinterest {
background: #bd081c;
}
.btn-stumbleupon {
background: #eb4924;
}
.btn-blogger {
background: #f57d00;
}
.btn-whatsapp {
background: #43d854;
}
.btn-telegram {
background: #0088CC;
}
.btn-weixin {
background: #7bb32e;
}
.btn-weibo {
background: #df2029;
}
.btn-qzone {
background: #ffce00;
}
.btn-qq {
background: #121214;
}
.btn-reddit {
background: #ff4500;
}
.btn-reddit .btn-icon {
color: #fff;
}
.btn-vk, .link-vk span {
background: #45668e;
}
.btn.outline, .btn.outline:hover {
background: none;
border: 1px solid;
box-shadow: none;
}
.pop-btn, .top-btn-el, a[data-modal] {
-webkit-tap-highlight-color: transparent;
}
.pop-btn *, .top-btn-el * {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0.2);
}
.pop-btn, .top-btn-el {
display: inline-block;
position: relative;
cursor: pointer;
}
.pop-box-inner {
cursor: default;
display: block;
-webkit-overflow-scrolling: touch;
overflow: auto;
}
.pop-box-inner form {
margin-top: -20px;
margin-bottom: -20px;
}
.btn.pop-btn .pop-box {
line-height: 100%;
}
.pop-btn-text {
color: var(--linkText);
cursor: pointer;
}
.ie7 .pop-btn-text, .ie8 .pop-btn-text {
padding-inline-end: 0;
}
.pop-btn-text .arrow-down {
vertical-align: middle;
margin-inline-start: 5px;
border-top-color: var(--linkText);
}
.pop-btn.disabled {
cursor: default;
}
.pop-btn.disabled .pop-btn-text {
color: var(--bodyTextDisabled);
cursor: default;
}
.pop-btn.disabled .arrow-down {
border-top-color: var(--bodyTextDisabled);
}
.tone-dark .pop-btn.disabled .arrow-down {
border-top-color: #444;
}
.pop-box {
color: var(--menuText);
background: var(--menuBackground);
-webkit-backdrop-filter: blur(15px) saturate(1.8);
backdrop-filter: blur(15px) saturate(1.8);
display: none;
font-size: 0.93em;
z-index: 200;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
border: 1px solid var(--menuSeparator);
}
.pop-box .or-separator {
border-top-color: var(--menuSeparator);
}
.phone .pop-box .or-separator, .phablet .pop-box .or-separator {
border-top-color: var(--topBarText);
opacity: .25;
}
@media (min-width: 992px) {
.pop-box {
position: absolute;
top: 20px;
min-height: 20px;
min-width: 190px;
box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.25);
border-radius: 5px;
box-sizing: content-box;
--columnGutter: 5px;
--columnWidth: 230px;
--columnWidthOuter: calc(var(--columnWidth) + var(--columnGutter));
}
.header--height .pop-box {
min-width: 240px;
}
.pop-box.left-anchor, .pop-box {
inset-inline-start: 0;
}
.pop-box.anchor-center {
inset-inline-start: 50% !important;
}
.pop-box.anchor-right {
inset-inline-start: auto;
inset-inline-end: 0;
}
.pop-box.pbcols1 {
width: calc(1 * var(--columnWidthOuter) + var(--columnGutter));
}
.pop-box.pbcols2 {
width: calc(2 * var(--columnWidthOuter) + var(--columnGutter));
}
.pop-box.pbcols3 {
width: calc(3 * var(--columnWidthOuter) + var(--columnGutter));
}
.pop-box.pbcols4 {
width: calc(4 * var(--columnWidthOuter) + var(--columnGutter));
}
.pop-box.pbcols5 {
width: calc(5 * var(--columnWidthOuter) + var(--columnGutter));
}
.pop-box.pbcols1 li,
.pop-box.pbcols2 li,
.pop-box.pbcols3 li,
.pop-box.pbcols4 li,
.pop-box.pbcols5 li {
border-radius: 5px;
}
.pop-box-menucols ul {
padding: 10px 0;
overflow: auto;
}
.pop-box-menucols li {
width: var(--columnWidth);
float: left;
margin: 0 0 0 5px;
}
[dir="rtl"] .pop-box-menucols li {
float: right;
}
.pop-box-menucols li:first-child a, .pop-box-menucols li:last-child a {
border-radius: 0;
}
}
.pop-box-menu {
font-size: 0.8125rem;
-ms-scroll-snap-type: y mandatory;
scroll-snap-type: y mandatory
}
.pop-box-label {
color: inherit;
margin: 10px;
text-transform: uppercase;
font-weight: bold;
font-size: 90%;
cursor: default;
line-height: 2;
}
.pop-box-block {
padding: 0 10px;
}
.pop-box-block .current::before {
font-weight: 900;
font-family: "Font Awesome 5 Free";
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
display: inline-block;
font-style: normal;
font-variant: normal;
text-rendering: auto;
line-height: 1;
margin-inline-end: 0.25em;
content: "\f205";
font-size: 90%;
}
.pop-box-menu a, .pop-box-menu .menu-item {
display: block;
padding: 6px 10px;
text-decoration: none;
font-weight: normal;
line-height: 143%;
color: var(--menuItemText);
}
.pop-box-block a {
display: inline-block;
padding: 6px;
border-radius: 0.25em;
line-height: 1;
}
.phone .pop-box, .phablet .pop-box {
color: var(--topBarText);
}
.phone .pop-box-menu a, .phablet .pop-box-menu a,
.phone .pop-box-menu .menu-item, .phablet .pop-box-menu .menu-item {
padding: 10px;
color: inherit;
}
.phone .pop-box-menu li.with-icon a .btn-icon, .phablet .pop-box-menu li.with-icon a .btn-icon {
top: 11px;
}
@media (min-width: 992px) {
.pop-box-menu a, .pop-box-menu .menu-item {
border-bottom: 0;
}
}
html:not(.phone) .pop-box-menu a:hover, .pop-box-menu a.focus {
background: var(--menuItemHoverBackground);
color: var(--menuItemHoverText);
}
.pop-box-menu li.current a {
background: rgba(0, 0, 0, .05);
}
.pop-box-menu li.current a:not(:hover) .btn-icon {
color: var(--colorAccent);
}
.pop-box-menu ul {
display: block;
padding: 0;
}
@media (min-width: 992px) {
.pop-box-menu ul {
margin: 5px 0;
}
/* .pop-box-menu.pop-box-menucols ul {
margin: 10px 0;
} */
}
.pop-box-menu li {
display: block;
text-align: start;
overflow: hidden;
position: relative;
}
.pop-box-menu li.with-icon a {
padding-inline-start: 36px;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
html:not(.phone):not(.phablet) .header--height .pop-box-menu li a {
padding-inline-end: 25px;
}
.pop-box-menu li a kbd {
position: absolute;
top: 50%;
transform: translateY(-50%);
inset-inline-end: 10px;
border-radius: 2px;
display: block;
line-height: 1;
font-size: 0.9em;
opacity: .5;
}
.pop-box-menu li a:hover kbd {
opacity: 1;
}
.phone .pop-box-menu li a kbd, .phablet .pop-box-menu li a kbd {
display: none;
}
.pop-box-menu li.with-icon a .btn-icon {
position: absolute;
inset-inline-start: 10px;
top: 8px;
}
.pop-box-menu li.current, .pop-box-menu li.current a {
font-weight: 600;
}
.pop-box-menu li.current a:hover {
cursor: default;
}
.pop-box-userdetails {
padding: 10px;
width: 120%;
min-width: 230px;
cursor: default;
inset-inline-start: 42px;
line-height: normal;
top: 0 !important;
margin-top: 0 !important;
}
.phone .pop-box, .phablet .pop-box {
position: fixed;
bottom: 0;
inset-inline-start: 0 !important;
width: 100%;
top: auto !important;
background: var(--topBarBackground);
color: var(--topBarText);
}
.pop-box-header {
font-weight: bold;
padding: 15px 10px;
position: relative;
text-align: start;
color: var(--topBarText);
}
.pop-box-header .icon--close {
position: absolute;
inset-inline-end: 10px;
top: 50%;
margin-top: -7px;
font-size: 14px;
text-align: end;
}
@media (min-width: 992px) {
.pop-box-header {
display: none;
}
}
.top-bar-placeholder {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.top-bar, .top-bar-placeholder, .top-bar ul li.pop-btn, .top-bar ul li.top-btn-el {
height: 50px;
}
.top-btn-text, .top-btn-create-account {
line-height: 50px;
}
.top-btn-text {
-webkit-tap-highlight-color: transparent;
}
.top-bar, .follow-scroll {
transition: top 400ms ease-in-out;
}
.top-bar.scroll-up, .top-bar--:focus-within {
top: 0;
}
.scroll-up.follow-scroll, .follow-scroll--:focus-within {
top: 50px !important;
}
.scroll-down {
top: -100%;
}
.top-bar, .top-sub-bar {
left: 0;
right: 0;
width: 100%;
position: -webkit-sticky;
position: sticky;
height: 50px;
}
.top-bar {
color: var(--topBarText);
z-index: 900;
}
.top-bar--main {
z-index: 910;
}
.top-sub-bar {
color: var(--bodyText);
z-index: 500;
overflow: visible;
}
body.pop-box-show .top-sub-bar--1 {
z-index: 1;
}
body.split .top-bar, body.landing .top-bar {
position: fixed;
}
.phablet .pop-box-show .top-bar, .phone .pop-box-show .top-bar {
z-index: 1;
}
.top-sub-bar::before, .top-bar::before, .follow-scroll-wrapper.position-fixed {
background: var(--topBarBackground);
-webkit-backdrop-filter: blur(15px);
backdrop-filter: blur(15px);
}
.top-sub-bar::before {
background: var(--bodyBackground);
}
.top-sub-bar::before, .top-bar::before {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.top-sub-bar::before, .top-bar::before {
width: 100%;
height: calc(100% + 0.5px);
position: absolute;
content: " ";
}
.top-sub-bar .content-width, .top-bar .content-width {
position: relative;
height: 100%;
padding-inline-start: 5px;
padding-inline-end: 5px;
}
.top-bar-logo {
width: 100%;
height: 100%;
position: absolute;
top: 0;
text-align: center;
inset-inline-start: 0;
}
.top-bar-logo img {
height: 20px;
}
.top-bar-logo>a {
display: inline-block;
vertical-align: top;
position: relative;
top: 50%;
transform: translateY(-50%);
text-decoration: none;
font-weight: normal;
font-size: 24px;
color: var(--topBarText);
}
.top-bar-logo img {
display: block;
margin-inline-start: auto;
margin-inline-end: auto;
}
.top-bar ul {
list-style: none;
}
.top-bar li.pop-btn, .top-bar li.top-btn-el {
float: left;
padding-inline-end: 5px;
padding-inline-start: 5px;
position: relative;
}
[dir="rtl"] .top-bar li.pop-btn,
[dir="rtl"] .top-bar li.top-btn-el {
float: right;
}
@media (min-width: 992px) {
.top-bar li.pop-btn, .top-bar li.top-btn-el {
padding-inline-end: 10px;
padding-inline-start: 10px;
}
.top-bar .top-bar-notifications.pop-btn {
padding-inline-end: 0;
}
}
.top-bar ul .pop-btn.current, .top-bar ul .top-btn-el.current {
border-bottom: 3px solid var(--colorAccent);
}
.top-bar ul .pop-btn.current .top-btn-text, .top-bar ul .top-btn-el.current .top-btn-text {
text-shadow: none;
box-shadow: none;
}
.top-bar ul li.top-btn-el a {
text-decoration: none;
color: inherit;
}
.tone-light .top-bar .top-bar ul .pop-btn.current .top-btn-text, .tone-light .top-bar .top-bar ul .top-btn-el.current .top-btn-text {
color: var(--bodyText);
}
.top-bar-right li.pop-btn:last-child, .top-bar-right li.pop-btn:last-child .arrow-down {
margin-inline-end: 0;
}
.top-btn-text, .top-btn-create-account {
display: block;
font-weight: normal;
font-size: 1em;
height: 100%;
}
#menu-fullscreen .btn.top-btn-create-account, .top-btn-text, .btn.top-btn-create-account:not(.grey):not(.white) {
color: inherit;
}
.top-btn-text {
text-decoration: none;
color: var(--topBarText);
}
.top-bar #menu-fullscreen .top-btn-text {
color: var(--topBarText);
}
body.landing .top-btn-text {
color: var(--topBarText);
}
.top-btn-text .icon {
margin-inline-end: 7px;
position: relative;
top: 0;
display: inline-block;
font-size: 16px;
width: 16px;
font-size: 1.143rem;
width: 1.4rem;
line-height: 50px;
text-align: center;
}
.current .top-btn-text .icon {
color: var(--colorAccent);
}
.top-btn-text .btn-text {
margin-inline-start: 0;
}
.top-btn-text .arrow-down {
position: relative;
margin: 0 0 0 5px;
}
.top-btn-text .btn-text {
vertical-align: top;
}
.top-btn-text .icon {
margin-inline-end: 0;
}
#menu-fullscreen .top-bar-notifications .btn-text {
display: inline-block;
}
#menu-fullscreen #top-bar-user, #menu-fullscreen [data-nav="upload"] {
display: none;
}
#top-bar [data-nav=upload] {
padding-inline-end: 5px;
padding-inline-start: 5px;
}
.top-bar-notifications-container {
margin-inline-end: 2px;
cursor: default;
}
.top-bar-notifications-header {
font-size: 0.93em;
line-height: 1;
padding: 12px 10px;
overflow: auto;
}
.top-bar-notifications-header, .top-bar-notifications-list li {
border-bottom: 1px solid var(--menuSeparator);
}
.tone-dark .top-bar-notifications-header, .tone-dark .top-bar-notifications-list li {
border-color: #333;
}
.top-bar-notifications-header h2 {
font-size: 1em;
font-weight: bold;
float: left;
}
[dir="rtl"] .top-bar-notifications-header h2 {
float: right;
}
.top-bar-notifications-header a {
float: right;
}
[dir="rtl"] .top-bar-notifications-header a {
float: left;
}
.top-bar-notifications-list li {
font-size: 0.93em;
display: block;
text-decoration: none;
padding: 10px;
position: relative;
min-height: 68px;
padding-inline-start: 68px;
}
.top-bar-notifications-list li:last-child {
border-bottom: 0;
}
.top-bar-notifications-list li:hover {
background: rgba(0, 0, 0, 0.02);
}
.tone-dark .top-bar-notifications-list li:hover {
background: rgba(0, 0, 0, 0.2);
}
.top-bar-notifications-list li.transition {
transition: background-color 150ms linear;
}
.top-bar-notifications-list li.persistent, .top-bar-notifications-list li.new {
background: #fffad9;
}
.tone-dark .top-bar-notifications-list li.persistent, .tone-dark .top-bar-notifications-list li.new {
background: #333;
}
.ie7 .top-bar-notifications-list li {
min-height: 48px;
}
.top-bar-notifications-list li .user-image {
width: 48px;
height: 48px;
position: absolute;
left: 10px;
top: 10px;
}
.top-bar-notifications-list li .user-image img {
width: 100%;
height: 100%;
display: block;
}
.top-bar-notifications-list li .user-image span.icon {
font-size: 30px;
width: 30px;
height: 30px;
margin-inline-start: -15px;
margin-top: -15px;
}
.top-bar-notifications-list li .how-long-ago {
display: block;
font-size: 11px;
color: var(--bodyTextSubtle);
}
.top-bar-notifications .top-btn-number {
position: absolute;
z-index: 1;
border-radius: 100px;
zoom: 0.75;
inset-inline-end: -8px;
top: 10px;
visibility: hidden;
}
.top-bar-notifications .top-btn-number.on {
visibility: visible;
}
@media (min-width: 992px) {
.top-bar .pop-box {
margin: 10px;
z-index: 200;
}
}
.top-bar-search-input {
margin-inline-start: -10px;
margin-inline-end: 10px !important;
}
.top-bar-search-input .icon--close {
inset-inline-end: -4px;
}
.top-bar-search-input .icon--settings {
inset-inline-end: 14px;
}
.top-bar .top-bar-search-input .icon--search {
color: var(--colorAccent);
}
.top-bar-search-input .input-search {
position: relative;
top: 50%;
margin-top: -13px;
}
.top-bar-search-input input {
font-size: 1em;
border-width: 0;
padding-inline-start: 36px;
}
.tone-light .top-bar .top-bar-search-input input {
border-width: 1px;
}
.top-bar-left .pop-box {
inset-inline-start: -10px;
}
.phone .top-bar-left li {
padding-inline-end: 0;
}
.phone .top-bar-right li {
padding-inline-start: 0;
}
.top-bar-right .pop-box {
inset-inline-start: auto;
inset-inline-end: -10px;
}
.top-bar--main .pop-box {
top: calc(50% + 10px);
}
#top-predictive-search.pop-box {
width: 200px;
inset-inline-start: 0;
font-size: 100%;
}
.top-bar .pop-account .or-separator {
margin-top: 30px;
margin-bottom: 30px;
}
.top-btn-create-account {
text-decoration: none;
display: inline;
padding: 4px 12px;
height: 26px;
}
.top-bar .top-btn-text:hover span:not(.btn-text), .top-bar .opened .top-btn-text span:not(.btn-text) {
color: var(--linkText);
}
.phone .top-bar .top-btn-text:hover span:not(.btn-text) {
color: inherit;
}
.phone .top-bar .current .top-btn-text:hover span:not(.btn-text) {
color: var(--linkText);
}
.ios .top-bar .top-btn-text span:not(.btn-text):not(.top-btn-number):hover {
color: var(--bodyText);
}
.ios .top-bar .opened .top-btn-text span:not(.btn-text), .ios .top-bar .opened .top-btn-text:not(.top-btn-number) {
color: var(--linkText);
}
.top-bar .btn:not(.white):not(.grey), .top-bar .btn:hover:not(.white):not(.grey), .top-bar .opened .btn:not(.white):not(.grey) {
color: #fff;
}
.current .top-btn-create-account:hover {
background: inherit;
}
.current .top-btn-create-account {
padding: 0;
background: none;
}
.top-btn-number {
background: #555;
color: #ddd;
font-size: 12px;
font-weight: normal;
border-radius: 3px;
padding: 0 7px;
position: relative;
display: block;
line-height: 22px;
height: 22px;
top: -2px;
}
#menu-fullscreen .top-btn-number {
display: inline-block;
position: absolute;
margin-inline-end: 5px;
top: 10px;
vertical-align: text-bottom;
inset-inline-start: 30px;
inset-inline-end: auto;
}
.tone-light.top-bar .top-btn-number.on, .top-btn-number.on, .top-btn-number.on:hover, .opened .top-btn-number.on, .tone-light.ios .top-bar .top-btn-number.on {
background: #d90000;
color: #fff;
}
.pop-account .pop-box-inner {
padding: 20px 10px;
cursor: default;
}
.pop-account .title, .pop-account h2 {
font-size: 1em;
text-align: center;
margin-top: 5px;
font-weight: normal;
display: block;
}
.pop-account .sign-services {
margin: 15px 0 11px 0;
}
.pop-account input[type="text"], .pop-account input[type="password"], .pop-account input.text-input {
width: 100%;
}
.ie7 .pop-account input.text-input {
width: 266px;
height: auto;
}
.pop-account .checkbox-label {
display: inline-block;
margin: 0;
}
#top-bar-user .top-btn-text .user-image {
position: relative;
top: 50%;
margin-top: -13px;
width: 1em;
height: 1em;
float: left;
font-size: 26px;
background: none;
color: inherit;
margin-inline-end: 0;
}
[dir="rtl"] #top-bar-user .top-btn-text .user-image {
float: right;
}
#top-bar-user-menu.pop-box {
width: 150px;
}
.header {
position: relative;
}
.header-icon {
color: var(--colorAccent);
}
.header-tabs {
min-height: 50px;
}
.header.follow-scroll {
margin-inline-end: -10px;
margin-inline-start: -10px;
padding-inline-start: 10px;
padding-inline-end: 10px;
overflow: visible;
position: -webkit-sticky;
position: sticky;
min-height: 50px;
}
.tone-dark .header {
border-bottom-color: #212121;
}
.header.fixed.follow-scroll {
border-bottom: 0;
}
.header .header-title,
.header h1 {
font-size: 1em;
}
.header>* {
vertical-align: middle;
}
.header>.header-title,
.header>h1,
.header .heading, .header .heading * {
word-break: break-word;
}
.header-tabs>.header-title,
.header-tabs>h1,
.header-tabs .heading, .header-tabs .heading * {
line-height: 50px;
}
.header>.header-title,
.header>h1,
.header .heading {
font-size: 22px;
font-weight: normal;
display: inline-block;
color: inherit;
}
.header .header-title a,
.header h1 a {
color: inherit;
text-decoration: none;
}
.header .header-title strong,
.header h1 strong,
.header .heading strong {
font-weight: inherit;
}
.header.header-tabs .header-title,
.header.header-tabs h1 {
margin-inline-end: 5px;
margin-inline-start: 5px;
}
.header ul.content-tabs {
display: inline-block;
}
.phablet .header ul.content-tabs, .phone .header ul.content-tabs {
float: none;
display: inline-block;
left: 0;
right: 0;
position: absolute;
z-index: 1;
white-space: nowrap;
}
.phone .header.follow-scroll ul.content-tabs, .phablet .header.follow-scroll ul.content-tabs {
position: absolute;
padding-inline-start: 10px;
padding-inline-end: 10px;
}
.phablet .header:not(.follow-scroll) ul.content-tabs, .phone .header:not(.follow-scroll) ul.content-tabs {
top: auto;
}
.header-content-left {
float: left;
}
[dir=rtl] .header-content-left {
float: right;
}
.header-content-right {
float: right;
height: auto;
margin-inline-start: auto;
}
[dir=rtl] .header-content-right {
float: left;
}
@media (max-width: 340px) {
.header-content-right.breaks-ui {
clear: both;
position: static !important;
margin-inline-start: 0;
}
}
.phablet .header-content-right:not(.phablet-float-none),
.phone .header-content-right:not(.phone-float-none) {
position: absolute;
inset-inline-end: 0;
top: 0;
float: right;
}
[dir=rtl].phablet .header-content-right:not(.phablet-float-none),
[dir=rtl].phone .header-content-right:not(.phone-float-none) {
float: left;
}
.header-content-right .number-figures {
margin-top: 14px;
border-inline-start: 1px solid var(--bodySeparator);
}
.header-content-right .number-figures:first-child {
border-inline-start: 0;
}
.header .header-link {
font-size: 1em;
display: inline-block;
}
.header .pop-btn.breadcrum-item {
margin-top: 0;
}
.header .user-image {
font-size: 30px;
width: 1em;
height: 1em;
margin-top: 10px;
float: left;
}
[dir="rtl"] .header .user-image {
float: right;
}
.header.header-content {
position: relative;
min-height: 40px;
border: 0;
}
.header.header-content .heading, .header.header-content .heading * {
line-height: 40px;
height: 40px;
}
.header-content img {
max-height: 40px;
}
.header-content .user-image {
width: 1em;
height: 1em;
font-size: 40px;
margin-top: 0;
top: 0;
}
.header-content .user-image img, .header .user-image img {
width: 100%;
height: 100%;
display: block;
}
.header-description {
line-height: 1.4;
max-height: 10vh;
overflow-y: scroll;
overflow: auto;
}
.header-description:empty {
display: none;
}
.header-description p {
margin: 10px 0;
}
.header-content-breadcrum {
float: left;
}
[dir="rtl"] .header-content-breadcrum {
float: right;
}
.breadcrum-item *:not(.btn) {
line-height: normal;
}
.header-content-breadcrum .breadcrum-item, .breadcrum-text {
line-height: 40px;
}
.breadcrum-text, .breadcrum-text a {
color: inherit;
}
.breadcrum-text {
font-weight: normal;
}
.breadcrum-item {
margin-inline-end: 10px;
position: relative;
float: left;
}
[dir="rtl"] .breadcrum-item {
float: right;
}
.breadcrum-text a:hover {
color: var(--linkText);
text-decoration: none;
}
.breadcrum-text .user-link {
margin-inline-start: 5px;
}
.header-content-breadcrum .arrow, .header-content-breadcrum .arrow-down, .header-content-breadcrum .arrow-right {
margin-inline-start: 5px;
position: relative;
}
.header-content-breadcrum a:hover .arrow-down {
border-top-color: var(--linkText);
}
.header-content-breadcrum a:hover .arrow-right {
border-left-color: var(--linkText);
}
.header-content-breadcrum .pop-box h2 {
font-size: 1.07em;
line-height: 1.2;
}
.header-content-breadcrum .pop-box h2 a {
line-height: 1;
}
.header-content .btn {
margin-inline-start: 5px;
float: left;
display: block;
}
[dir="rtl"] .header-content .btn {
float: right;
}
.header-content .btn:last-child {
margin-inline-end: 0;
}
.follow-scroll {
margin-inline-start: auto;
margin-inline-end: auto;
z-index: 1;
}
.follow-scroll-wrapper {
left: 0;
right: 0;
z-index: 50;
}
.follow-scroll-wrapper.position-fixed .header {
margin-bottom: -1px !important;
}
.follow-scroll-placeholder {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.phablet .header:not(.header-tabs) .tab-menu, .phone .header:not(.header-tabs) .tab-menu {
color: var(--buttonDefaultText);
background: var(--buttonDefaultBackground);
border-radius: 4px;
height: auto;
line-height: 1em;
min-height: 1em;
padding: 10px;
}
.phablet .header:not(.header-tabs) .tab-menu:not(.--hide), .phone .header:not(.header-tabs) .tab-menu:not(.--hide) {
color: var(--buttonDefaultHoverText);
background: var(--buttonDefaultHoverBackground);
margin-bottom: 10px;
}
.phablet .header .tab-menu.--hide .tab-menu--show, .phone .header .tab-menu.--hide .tab-menu--show, .phablet .header .tab-menu:not(.--hide) .tab-menu--hide, .phone .header .tab-menu:not(.--hide) .tab-menu--hide {
display: none;
}
.tab-menu {
cursor: pointer;
line-height: 50px;
min-height: 50px;
}
.tab-menu.--hide .btn-icon[data-content="tab-icon"] {
color: var(--colorAccent);
}
.tab-menu.--hide {
color: var(--buttonDefaultText);
}
.tab-menu:not(.--hide) {
color: var(--buttonDefaultHoverText);
}
.content-tabs-container {
position: relative;
display: inline-block;
}
.phone .content-tabs-container--mobile,
.phablet .content-tabs-container--mobile {
box-shadow: 0 6px 4px rgba(0, 0, 0, 0.25);
inset-inline-start: -10px;
width: calc(100% + 15px);
}
.phone .content-tabs-wrap, .phablet .content-tabs-wrap {
height: 50px;
overflow-y: hidden;
position: relative;
-webkit-overflow-scrolling: touch;
overflow-x: scroll;
position: relative;
display: none;
-webkit-backdrop-filter: blur(15px);
backdrop-filter: blur(15px);
background: var(--bodyBackground);
}
.content-tabs-wrap::-webkit-scrollbar {
display: none;
}
.content-tabs-wrap {
display: inline-block;
-ms-scroll-snap-type: x mandatory;
scroll-snap-type: x mandatory
}
.content-tabs li {
scroll-snap-align: start;
}
.content-tabs li:not(.current) {
transition-duration: 200ms;
transition-property: background-color;
}
.content-tabs a {
font-weight: normal;
color: inherit;
text-decoration: none;
padding-inline-start: 10px;
padding-inline-end: 10px;
}
.phone .content-tabs li:last-child {
margin-inline-end: 15px;
}
.content-tabs-shade {
content: " ";
background: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0), var(--bodyBackground));
width: 15px;
height: 100%;
position: absolute;
inset-inline-end: 0;
top: 0;
pointer-events: none;
z-index: 2;
}
[dir="rtl"] .content-tabs-shade {
background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 0), var(--bodyBackground));
}
.phone .content-tabs a, .phablet .content-tabs a {
color: var(--menuItemText);
}
.content-tabs li.disabled a {
cursor: default;
}
.tab-menu .--show {
display: none;
}
.tab-menu.current .--show {
display: inline-block;
}
.tab-menu.current .--hide {
display: none;
}
.content-tabs li {
float: left;
font-size: 1em;
}
[dir="rtl"] .content-tabs li {
float: right;
}
.phablet .content-tabs li, .phone .content-tabs li {
float: none;
border-bottom: 0;
display: inline-block;
}
.content-tabs-vertical li {
float: none;
margin: 0;
border-inline-start: 2px solid transparent;
}
.content-tabs-vertical li>* {
padding-inline-end: 20px;
padding-inline-start: 20px;
}
.header-content-right .content-tabs li {
margin-inline-start: 10px;
margin-inline-end: 0;
}
.content-tabs li, .content-tabs a {
height: 50px;
line-height: 50px;
display: block;
}
.content-tabs-vertical li, .content-tabs-vertical a {
height: 38px;
line-height: 38px;
}
.content-tabs li.current, .content-tabs li.visited, .content-tabs li.visited:hover {
/* color: inherit; */
border-color: var(--colorAccent);
border-style: solid;
border-bottom-width: 3px;
}
.content-tabs li.current .btn-icon {
color: var(--colorAccent);
}
.content-tabs li:not(.current):hover {
background: var(--bodyEmpty);
}
.content-tabs li:not(.current):hover a .btn-icon {
color: var(--colorAccent);
}
.content-tabs li.disabled:hover {
border-bottom: 0;
}
.content-tabs li.current {
border-color: var(--colorAccent);
}
.content-tabs li.visited {
border-bottom-color: transparent;
}
.content-tabs li.current.visited {
border-color: #d93600;
}
.content-tabs li.visited, .content-tabs li.visited a {
color: #d93600;
}
.content-tabs-vertical li:hover, .content-tabs-vertical li.current {
border-bottom-width: 0;
border-left-width: 2px;
}
.content-tabs .tab-count {
font-weight: normal;
color: var(--bodyTextSubtle);
}
.content-tabs .tab-count-block {
font-weight: normal;
background: #d90000;
border-radius: 3px;
padding: 1px 4px;
position: relative;
top: -1px;
}
.content-tabs .tab-count-block, .content-tabs .current .tab-count-block {
color: #fff;
}
.content-tabs li.disabled * {
color: var(--bodyTextDisabled);
}
.header--centering {
display: flex;
align-items: center;
flex-wrap: wrap;
}
.header--height {
overflow: visible;
height: 50px;
}
.list-selection * {
line-height: normal;
}
#tabbed-content-group {
margin-top: 20px;
padding-bottom: 20px;
position: relative;
}
.content-listing .viewer-kb {
opacity: 0;
position: fixed;
bottom: -100px;
z-index: 1;
left: 0;
right: 0;
background: linear-gradient(0deg, var(--topBarBackground) 0%, rgba(0, 0, 0, 0) 100%);
}
.--has-selection .content-listing.visible .viewer-kb {
opacity: 1;
bottom: 0;
}
.content-listing .viewer-kb-input {
color: var(--menuText);
background: var(--menuBackground);
border-radius: 0.5em;
margin: 1em;
-webkit-backdrop-filter: blur(5px);
backdrop-filter: blur(5px);
box-shadow: 0 4px 14px rgb(0 0 0 / 25%);
}
#content-listing-tabs #tabbed-content-group {
margin-top: 0;
}
#content-listing-tabs {
padding-bottom: 0;
margin-inline-start: -10px;
margin-inline-end: -10px;
}
.tabbed-content {
display: none;
width: 100%;
overflow: hidden;
}
.title {
font-size: 0.93em;
font-weight: bold;
margin-bottom: 5px;
}
.title.grid-columns {
margin-inline-end: 10px;
text-align: end;
line-height: 2;
}
.phone .title.grid-columns, .phablet .title.grid-columns {
margin-inline-end: 0 !important;
text-align: start;
}
.tabbed-content-section {
overflow: auto;
}
.tabbed-content-list {
line-height: 1.8;
}
.tabbed-listing {}
.tabbed-listing .tabbed-content {
overflow: hidden;
}
.table-li {
display: table;
width: 100%;
}
.table-li>li {
padding-top: 8px;
padding-bottom: 8px;
border-bottom: 1px solid var(--bodySeparator);
list-style: none !important;
}
.tabbed-content-list.table-li-hover>li:hover {
background: var(--bodyEmpty);
}
.tabbed-content-list .table-li-header {
font-weight: bold;
}
.tabbed-content-list.table-li-hover .table-li-header:hover, .tone-dark .tabbed-content-list.table-li-hover .table-li-header:hover {
background: none;
}
.table-li ul li:last-child {
border-bottom: none;
}
.phablet .table-li--mobile-display, .tablet .table-li--mobile-display, .laptop .table-li--mobile-display, .desktop .table-li--mobile-display, .largescreen .table-li--mobile-display {
display: none !important;
}
.viewer-title {
font-size: 1.43em;
line-height: 1.43em;
padding-inline-end: 3em;
}
.panel-description:empty {
display: none;
margin: 0 !important;
padding: 0 !important;
}
.panel-description .description-text {
font-size: 1em;
}
.panel-description .description-meta {
font-size: 0.93em;
}
.panel-description .exif-meta {
padding-inline-start: 1.57em;
position: relative;
}
.panel-description .exif-meta .camera-icon {
color: var(--bodyTextDisabled);
position: absolute;
inset-inline-start: 0;
top: 0.21em;
font-size: 1.14em;
}
.panel-description .exif-meta .exif-data {
display: block;
font-size: 1em;
}
.panel-thumbs {
z-index: 1;
bottom: 0;
left: 0;
right: 0;
background: var(--viewerBackground);
}
.panel-thumb-list {
overflow-x: auto;
overflow-y: hidden;
white-space: nowrap;
text-align: center;
height: 50px;
margin-inline-start: auto;
margin-inline-end: auto;
}
.panel-thumb-list:empty {
display: none;
}
.panel-thumb-list li {
position: relative;
font-size: 0;
border-top: 3px solid transparent;
display: inline-block;
line-height: 50px;
}
.panel-thumb-list li.current {
border-color: var(--bodyBackground);
}
.panel-thumb-list li.current img, .list-item-desc .panel-thumb-list li:hover img {
opacity: 1;
}
.phone .panel-thumb-list li.more-link, .phablet .panel-thumb-list li.more-link {
clear: both;
line-height: 100%;
padding: 10px 0;
}
.panel-thumb-list img {
display: block;
width: 47px;
height: 47px;
opacity: 0.4;
transition: opacity 350ms ease;
}
.panel-thumb-list li:hover img {
opacity: 1;
}
.panel-share-item {
margin-bottom: 30px;
}
.panel-share-item:last-child {
margin-bottom: 0;
}
.panel-share-item h4.pre-title {
padding-inline-start: 200px;
line-height: 20px;
margin-bottom: 10px;
padding-bottom: 10px;
border-bottom: 1px solid var(--bodySeparator);
}
.tone-dark .panel-share-item h4.pre-title {
border-color: #212121;
}
.phone .panel-share-item h4.pre-title, .phablet .panel-share-item h4.pre-title {
padding-inline-start: 0;
}
.panel-share-item h4.title {
line-height: 32px;
}
.panel-share-item .text-input {
*height: auto;
}
.panel-share-item .grid-columns {
position: relative;
}
.panel-share-input-label {
margin-bottom: 10px;
overflow: auto;
}
.panel-share-input-label:last-child {
margin-bottom: 0;
}
.panel-share-input {
position: relative;
}
.panel-share-networks {
overflow: auto;
text-align: center;
}
.panel-share-networks h4.title {
line-height: 32px;
}
.panel-share-networks li {
display: inline-block;
margin-inline-end: 5px;
margin-bottom: 5px;
}
.panel-share-networks li a {
display: block;
width: 32px;
height: 32px;
position: relative;
}
.panel-report h4.title {
line-height: 36px;
}
.text-content {
font-size: 16px;
}
.text-content p, .text-content li {
line-height: 160%;
margin: 10px 0;
}
.text-content h1, .text-content h2, .text-content h3, .text-content h4 {
margin: 40px 0 20px 0;
font-weight: normal;
line-height: 120%;
}
.text-content h1 {
font-size: 1.375em;
}
.text-content h2 {
font-size: 1.25em;
}
.text-content h3 {
font-size: 1.125em;
}
.text-content h4 {
font-size: 1.07em;
}
.text-content h5 {
font-size: 1em;
}
.text-content h6 {
font-size: 1em;
}
.text-content ul, .text-content ol {
margin-inline-start: 20px;
}
.text-content li {
list-style: disc outside;
margin-top: 0;
margin-bottom: 0;
}
.form-content {
position: relative;
}
.signup-services-column h2 {
font-size: 17px;
}
.signup-services-column ul {
margin: 10px 0;
}
.signup-services-column li:first-child {
margin-inline-start: 0;
}
.signup-services-column li:last-child {
margin-inline-end: 0;
}
.form-content .content-tabs-vertical {
margin-inline-end: 10px;
position: absolute;
inset-inline-start: 0;
top: 0;
}
.form-content .content-tabs-vertical.position-fixed {
position: fixed;
inset-inline-start: auto;
top: auto;
}
.tabbed-input-column {
margin-inline-start: 200px;
}
.phone .tabbed-input-column, .phablet .tabbed-input-column {
margin-inline-start: 0;
}
.account-link {
position: relative;
}
.account-linked {}
a.account-linked-profile {
width: 48px;
height: 48px;
display: block;
}
a.account-linked-profile img {
width: 100%;
height: 100%;
display: block;
border: 0;
}
.text-overflow-ellipsis {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
min-width: 0;
}
html.menu-fullscreen-visible {
overflow: hidden;
}
#menu-fullscreen {
position: fixed;
left: 0;
top: 0;
bottom: 0;
right: 0;
height: 100vh;
width: 100vw;
overflow: auto;
}
#menu-fullscreen>ul>li {
display: block;
float: none;
border-bottom: 0;
margin: 0 !important;
position: relative;
}
#menu-fullscreen>ul>li .top-btn-text {
padding: 0 10px;
background: inherit;
}
#menu-fullscreen>ul>li .icon {
margin-inline-end: 7px;
}
#menu-fullscreen>ul>li .input-search .icon {
margin-inline-end: 0;
}
#menu-fullscreen>ul>li a {
text-decoration: none;
}
#menu-fullscreen .input-search {
margin: 0;
margin-inline-end: 10px;
top: 12px;
width: auto;
}
#menu-fullscreen .menu-fullscreen-show {
display: block;
}
#menu-fullscreen .menu-fullscreen-hide {
display: none;
}
body.upload-box-visible {
margin-top: 300px;
}
body.upload-box-visible.no-margin-top {
margin-top: 280px;
}
body.upload-box-visible .upload-box {
display: block;
}
.upload-box {
clear: both;
background: var(--bodyBackground);
}
.upload-box--fixed {
position: fixed;
left: 0;
right: 0;
z-index: 200;
background: var(--bodyBackground);
}
body:not(#upload) .upload-box--fixed {
padding-top: 50px;
overflow: auto;
}
.phone .upload-box--fixed {
top: 0;
z-index: 500;
max-height: 100%;
overflow-y: auto;
overflow-x: hidden;
}
.upload-box--hidden {
transform: translateY(-100%);
top: -1px;
}
.upload-box--show {
transform: translateY(0);
}
.upload-box-inner {
padding: 40px 0;
position: relative;
}
.phone .upload-box-inner {
padding: 20px 0;
}
.upload-box-inner .position-absolute {
position: absolute;
text-transform: uppercase;
top: 20px;
line-height: 20px;
}
#upload .upload-box[data-queue-size="0"] .upload-box-heading, .phone .upload-box[data-queue-size="0"] .upload-box-heading {
position: fixed;
top: 50%;
left: 0;
right: 0;
transform: translateY(-50%);
padding: 10px;
}
.upload-box-heading {
text-align: center;
}
.upload-box-heading .icon {
font-size: 100px;
height: 1em;
display: inline-block;
margin-inline-start: auto;
margin-inline-end: auto;
text-decoration: none;
-webkit-tap-highlight-color: transparent;
}
.upload-box-heading h2, .upload-box-heading .heading {
font-size: 26px;
margin: 10px 0;
display: block;
}
.upload-box-heading h2 a, .upload-box-heading .heading a {
color: inherit;
text-decoration: none;
}
.upload-box-status-text {
font-size: 1em;
line-height: 1.4;
}
.upload-box-allowed-files {
inset-inline-start: 0;
font-size: 11px;
font-size: 0.79rem;
color: var(--bodyTextSubtle);
}
.upload-box-close {
text-decoration: none;
inset-inline-end: 0;
font-size: 11px;
line-height: 11px;
font-size: 0.79rem;
line-height: 1em;
color: var(--bodyText);
}
.tone-dark .upload-box-close {
color: #ccc;
}
.upload-box-close:hover {
text-decoration: none;
}
.upload-box-close a {
color: inherit;
text-decoration: none;
}
.upload-box-close .btn-icon {
font-size: 0.9em;
display: inline;
}
@media (min-width: 340px) {
.upload-input-col {
width: 310px;
}
}
.page-not-found {
border-radius: 10px;
background: var(--bodyEmpty);
text-align: center;
padding: 30px;
font-size: 16px;
margin-top: 20px;
}
.page-not-found h1 {
font-size: 30px;
margin-bottom: 10px;
}
.page-not-found .input-search {
margin-inline-start: auto;
margin-inline-end: auto;
margin-top: 20px;
}
.page-not-found .input-search .icon--search {
font-size: 20px;
inset-inline-start: 14px;
top: 8px;
}
.page-not-found .input-search .icon--close {
top: 3px;
inset-inline-end: 6px;
}
.page-not-found input.search {
height: 36px;
width: 100%;
font-size: 15px;
padding-inline-end: 30px;
padding-inline-start: 40px;
}
.ie7 .page-not-found input.search, .ie8 .page-not-found input.search, .ie9 .page-not-found input.search {
padding-inline-end: 10px;
line-height: 36px;
}
.content-listing {
overflow: hidden;
position: relative;
clear: both;
}
.pad-content-listing {
width: calc(100% + 10px);
margin-inline-start: auto;
margin-inline-end: auto;
position: relative;
}
.list-item {
display: inline-block;
}
.js .content-listing {
height: 0;
}
.js .jsly.content-listing {
height: auto;
}
.list-item .disabled-mask {
width: 100%;
height: 100%;
position: absolute;
top: 0;
inset-inline-start: 0;
background: rgba(255, 255, 255, 0.5);
filter: progid: DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#80ffffff', endColorstr='#80ffffff');
z-index: 1;
}
.list-item:hover .hover-display, .phone .list-item .hover-display, .phablet .list-item .hover-display {
display: block;
}
.list-item.masked:hover .hover-display {
display: none;
}
html.--idle .list-item-image-tools>div, html.--idle .list-item .hover-display:not(.idle-display), .list-item .hover-display {
opacity: 0;
transition: all 350ms ease;
}
html:not(.--idle) .list-item:hover .hover-display {
opacity: 1;
}
.phone .list-item .hover-display, .phablet .list-item .hover-display {
opacity: 1;
transition: none;
}
.list-item-image {
position: relative;
display: block;
overflow: hidden;
min-height: 260px;
text-align: center;
background: var(--bodyEmpty);
content-visibility: auto;
contain: layout style paint;
}
.list-item-image .image-container {
display: inline-block;
text-align: center;
vertical-align: bottom;
text-decoration: none;
font-size: 64px;
width: 100%;
height: 100%;
}
.js .list-item-image .image-container.--media {
width: 100%;
height: 100%;
}
.list-item-image .image-container img,
.list-item-image .image-container svg {
display: block;
position: relative;
width: 100% !important;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.list-item-image .image-container .icon.empty {
font-size: .9em;
}
.list-item-image .image-container .empty {
color: var(--bodyText);
text-decoration: none;
}
.selected .list-item-image .image-container .icon.empty {
color: #fff;
}
.list-item-image-btn {
padding: 5px 8px 5px 28px;
font-size: 0.93em;
background: var(--bodyBackground);
position: absolute;
top: 10px;
cursor: pointer;
border-radius: 2px;
}
.list-item-image-btn.list-image-like-btn {
inset-inline-start: 10px;
}
.list-item-image-btn span {
font-size: 15px;
position: absolute;
inset-inline-start: 8px;
top: 50%;
margin-top: -8px;
}
.ie7 .list-item-image-btn span {
inset-inline-start: 4px;
top: 2px;
}
.list-item-image-btn:hover span {
color: var(--colorAccent);
}
.list-item-image-btn.liked {
background: var(--colorAccent);
color: #fff;
display: block;
}
.list-item-image-btn.liked:hover {
background: #d90000;
}
.list-item-image-btn.liked:hover span.icon-like {
font-size: 11px;
padding: 0;
inset-inline-start: 10px;
color: #fff;
margin-top: -6px;
}
.list-item-image-btn.liked:hover span.icon-like:before {
content: "\e01f";
}
.list-item-desc-title {
width: 100%;
height: 100%;
padding: 0 10px;
inset-inline-start: 0;
bottom: 10px;
text-decoration: none;
}
.list-item-desc-title>* {
padding-bottom: 5px;
}
.list-item-from {
bottom: 0;
line-height: 1;
}
.phablet .content-listing:not([data-list="users"]).list-item-desc-title, .phone .content-listing:not([data-list="users"]).list-item-desc-title {
display: none;
}
.list-item-desc-title--center-y {
top: 50%;
transform: translateY(-50%);
}
.list-item-desc-title-link {
font-size: 1.1em;
font-weight: 600;
display: inline-block;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
width: calc(100%);
}
@media (min-width: 320px) {
.list-item-desc-title-link {
width: calc(100% - 20px);
}
}
a.list-item-desc-title-link {
text-decoration: none;
}
.list-item-title {
padding-top: 0;
padding-bottom: 0;
font-weight: normal;
text-align: center;
height: 40px;
overflow: hidden;
}
.list-item-title, .list-item-title * {
font-size: 1em;
line-height: 40px;
}
.list-item-title a {
font-weight: normal;
color: var(--bodyText);
}
.list-item-alt {
background: #f9f9f9;
}
.list-item-desc-height {
height: 100%;
}
.list-item-overflow {
height: 110%;
overflow: hidden;
}
.list-item-desc {
width: 100%;
top: 1;
font-size: 0.93em;
line-height: 1;
box-shadow: 0 1px 0px rgba(0, 0, 0, 0.1), 0 0 0 transparent;
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.list-item-desc a, .list-item-desc strong, .list-item-desc b, .list-item.masked:hover .list-item-desc a, .list-item.masked:hover .list-item-title a {
color: inherit;
}
.tone-dark .list-item-desc a, .tone-dark .list-item-desc strong, .tone-dark .list-item-desc b, .tone-dark .list-item.masked:hover .list-item-desc a, .tone-dark .list-item.masked:hover .list-item-title a {
color: inherit;
}
.list-item:hover .list-item-desc a, .list-item:hover .list-item-title a {
color: var(--linkText);
}
.list-item-desc .user, .list-item-desc a.user img {
border-radius: 100%;
}
.list-item-desc .user {
float: left;
margin-top: -20px;
margin-inline-end: 8px;
padding: 3px;
background: var(--bodyBackground);
width: 50px;
height: 50px;
}
[dir="rtl"] .list-item-desc .user {
float: right;
}
.tone-dark .list-item-desc .user {
background: #101010;
}
.list-item-desc .user:hover {
background: var(--linkText);
}
.tone-dark .list-item-desc .user:hover {
background: inherit;
}
.phone .content-listing[data-list="images"] .list-item-desc, .phablet .content-listing[data-list="images"] .list-item-desc {
display: none;
}
.list-item-desc strong {
display: block;
}
.list-item-card {
border-radius: 3px;
min-height: 82px;
}
.list-item-card .user-image {
display: block;
}
.list-item-thumbs-container {
overflow: hidden;
}
.list-item-thumbs {
overflow: auto;
background: #f9f9f9;
width: 101%;
margin-top: 2px;
margin-bottom: 0;
margin-inline-start: -1px;
}
.list-item-thumbs li {
background: #f6f6f6;
border-inline-end: 1px solid;
border-inline-start: 1px solid;
border-color: #fff;
float: left;
}
[dir="rtl"] .list-item-thumbs li {
float: right;
}
.list-item-desc {
color: inherit;
background: transparent;
border: 0;
box-shadow: none;
text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
opacity: 0;
transition: all 350ms ease;
bottom: 0;
position: absolute;
}
.list-item:hover .list-item-desc, .phone .list-item .list-item-desc, .phablet .list-item .list-item-desc, .tablet .list-item .list-item-desc, .laptop .list-item .list-item-desc, .desktop .list-item .list-item-desc, .largescreen .list-item .list-item-desc {
opacity: 1;
}
.list-item-desc *, .list-item-desc a, .list-item:hover .list-item-desc a {
color: var(--listItemText);
}
.list-item-desc .list-item-overflow {
bottom: 0;
inset-inline-start: 0;
padding: 10px;
position: absolute;
height: auto;
}
.content-listing-more, .content-listing-loading {
text-align: center;
margin: 20px 0;
}
.content-listing-more {
display: none;
}
.content-listing-loading {
height: 32px;
}
.content-listing-loading .loading-indicator {
position: static;
}
.content-listing-pagination {
text-align: center;
font-size: 1.3em;
padding: 0;
color: inherit;
font-weight: normal;
margin-top: 20px;
}
.js .content-listing-pagination {
display: none;
}
.content-listing-pagination.visible {
display: flex !important;
}
.content-listing-pagination a {
text-decoration: none;
font-weight: inherit;
color: inherit;
padding: 6px 10px;
display: block;
border-radius: 4px;
}
.content-listing-pagination li.pagination-prev {
text-align: end;
}
.content-listing-pagination li.pagination-next {
text-align: start;
}
.content-listing-pagination a:hover {
color: var(--linkText);
background: var(--bodyEmpty);
}
.content-listing-pagination a.current {
color: inherit;
}
.tone-dark .content-listing-pagination a.current {
color: #fff;
}
.tone-dark .content-listing-pagination a:hover {
background: #1f1f1f;
}
.phone .content-listing-pagination li.pagination-page {
display: none;
}
.content-listing-pagination li, .phone .content-listing-pagination li.pagination-page.pagination-current {
display: inline-block;
}
.content-listing-pagination li.pagination-prev, .content-listing-pagination li.pagination-next {
flex-grow: 4;
}
.content-listing-pagination li.pagination-current {
flex-grow: 1;
}
.content-listing-pagination .pagination-current a, .content-listing-pagination .pagination-current a:hover {
color: inherit;
background: initial;
cursor: default;
}
.pagination-disabled {
visibility: hidden;
}
.content-empty {
padding: 4em 2em;
text-align: center;
font-size: inherit;
color: var(--bodyText);
}
.content-empty .icon {
color: var(--bodyEmpty);
font-size: 90px;
width: 90px;
height: 90px;
display: inline-block;
}
.tone-dark .content-empty, .tone-dark .content-empty .icon {
color: #444;
}
.content-empty h2, .content-empty .message {
font-size: 16px;
margin-top: 10px;
line-height: 160%;
}
.tone-dark .content-empty h2, .tone-dark .content-empty .message {
color: #444;
}
.sort-listing {
display: none;
}
.sort-listing .selection-count:before {
content: " (";
white-space: pre;
}
.sort-listing .selection-count:after {
content: ")";
}
.disabled.sort-listing .selection-count:before, .disabled.sort-listing .selection-count:after {
display: none;
}
.user-image {
display: inline-block;
}
.user-image path {
fill: red;
}
.user-image img, .user-image {
display: block;
border-radius: 3px;
}
.default-user-image {
color: var(--bodyText);
text-align: center;
position: relative;
border-radius: 100%;
-webkit-backdrop-filter: blur(15px);
backdrop-filter: blur(15px);
background: var(--backgroundLightAlpha);
}
.checkered-background {
background-image: linear-gradient(45deg, rgba(0, 0, 0, .1) 25%, transparent 25%), linear-gradient(135deg, rgba(0, 0, 0, .1) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(0, 0, 0, .1) 75%), linear-gradient(135deg, transparent 75%, rgba(0, 0, 0, .1) 75%);
background-size: 25px 25px;
background-position: 0 0, 12.5px 0, 12.5px -12.5px, 0px 12.5px;
}
.default-user-image .icon {
color: inherit;
position: absolute;
inset-inline-start: 50%;
top: 50%;
display: block;
line-height: 100%;
font-size: 1em;
width: 1em;
height: 1em;
margin-inline-start: -0.5em;
margin-top: -0.5em;
}
img.user-image.size-70, .default-user-image.size-70 {
width: 70px;
height: 70px;
}
.default-user-image.size-70 .icon {
font-size: 38px;
margin-inline-start: -19px;
margin-top: -19px;
}
img.user-image.size-60, .default-user-image.size-60 {
width: 60px;
height: 60px;
}
.default-user-image.size-60 .icon {
font-size: 32px;
margin-inline-start: -16px;
margin-top: -16px;
}
img.user-image.size-40, .default-user-image.size-40 {
width: 40px;
height: 40px;
}
.default-user-image.size-40 .icon {
font-size: 22px;
margin-inline-start: -11px;
margin-top: -11px;
}
.user-social-networks {
font-size: 1em;
}
.user-social-networks, .user-social-networks a {
text-decoration: none;
color: var(--bodyTextSubtle);
}
.user-social-networks a {
padding: 2px;
}
.user-social-networks a:hover {
color: var(--bodyText);
}
.top-user {
position: relative;
height: 110px;
margin-top: 10px;
margin-bottom: 10px;
height: auto;
}
.top-user.no-background,
.tablet .top-user,
.phablet .top-user {
min-height: 160px;
}
.top-user>div {
position: absolute;
top: 0;
}
.top-user .top-user-credentials {
position: static;
padding-inline-end: 220px;
clear: both;
overflow: visible;
}
.top-user.user-has-no-background .top-user-credentials {
overflow: auto;
}
.phone .top-user .top-user-credentials {
padding-inline-end: 0;
padding-inline-start: 0;
width: 100%;
margin-bottom: 10px;
text-align: center;
margin-top: -160px;
}
.top-user-avatar {
font-size: 160px;
}
.desktop .top-user:not(.no-background) .top-user-avatar,
.laptop .top-user:not(.no-background) .top-user-avatar {
position: absolute;
left: 50%;
margin-inline-start: calc(-0.5em - 10px);
top: -0.5em;
}
.phablet .top-user .user-image,
.tablet .top-user .user-image {
border: 0;
margin-inline-end: 10px;
}
.top-user .user-image {
font-size: 1em;
width: 1em;
height: 1em;
float: left;
border-radius: 100%;
}
.top-user:not(.no-background) .user-image {
border: 10px solid var(--bodyBackground);
}
.top-user:not(.no-background) img.user-image {
background: var(--bodyBackground);
border: 10px solid transparent;
box-sizing: content-box;
background: rgb(255 255 255 / 10%);
-webkit-backdrop-filter: blur(5px);
backdrop-filter: blur(5px);
}
.tablet .top-user:not(.no-background) .user-image,
.phablet .top-user:not(.no-background) .user-image {
border: 0;
}
.top-user.no-background .user-image {
margin-inline-end: 10px;
}
.phone .top-user.no-background .top-user-credentials {
margin-top: initial;
}
.phone .top-user .top-user-credentials>a {
display: inline-block;
}
.top-user .header-content-right {
inset-inline-end: 0;
}
.top-user .header-content-right>* {
margin-bottom: 10px;
}
.top-user .header-content-right>*:last-child {
margin-bottom: 0;
}
.phone .top-user .header-content-right {
position: relative;
}
.phone .top-user .header-content-right>div {
margin: 10px auto;
text-align: center;
}
.phone .top-user .input-search {
position: relative;
top: auto;
}
.phone .top-user .input-search form {
position: relative;
}
.phone .top-user .number-figures {
line-height: 28px;
}
.top-user h1 {
font-size: 26px;
font-weight: bold;
margin-bottom: 5px;
margin-top: 10px;
color: var(--bodyText);
}
.phone .top-user h1, .no-margin-top .top-user h1 {
margin-top: 0;
}
.top-user h1 a {
color: inherit;
text-decoration: none;
}
.top-user .user-meta {
margin-bottom: 10px;
}
.user-meta .icon--lock {
margin-inline-end: 5px;
}
[dir="rtl"] .top-user .user-image {
float: right;
}
.phone .top-user .user-image {
float: none;
margin-inline-start: auto;
margin-inline-end: auto;
margin-bottom: 10px;
}
.phone body.no-margin-top .top-user .user-image {
margin-top: 10px;
}
.top-user .user-image.no-border {
border: none;
}
.top-user .number-figures {
margin-top: 0;
}
.user-card.avatar {
padding-inline-start: 70px;
}
.user-card.no-avatar {
padding-inline-start: 0;
}
.user-card .or-separator {
margin-top: 5px;
margin-bottom: 5px;
}
.user-card .user-link {
font-size: 0.93em;
}
.user-card-header h2 {
font-size: 15px;
font-weight: normal;
margin-top: 0;
margin-bottom: 2px;
}
.user-card-header h2 a {
color: inherit;
text-decoration: none;
}
.tone-dark .user-card-header h2 a {
color: #fff;
}
.user-card-header div {
color: var(--bodyTextSubtle);
}
.user-card-footer {
overflow: hidden;
}
.user-card-footer .user-social-networks {
margin-top: 3px;
}
.top-user .input-search .icon--close {
top: 4px;
inset-inline-end: 8px;
}
.ad-space {
text-align: center;
}
.ad-margin-vertical {
margin-top: 20px;
margin-bottom: 20px;
}
.ad-margin-horizontal {
margin-inline-start: 20px;
margin-inline-end: 20px;
}
[role="menu"] {
position: relative;
overflow: visible;
}
.menu-box, [role="menu"]>.menu-box {
z-index: 300;
}
[role="menu"]>.menu-box {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
max-height: 10px;
display: block;
visibility: hidden;
transition: 350ms all ease-in-out;
opacity: 0;
transform: translateY(-5px);
transform-origin: top;
max-height: 100vh;
}
[role="menu"].opened>.menu-box {
visibility: visible;
opacity: 1;
transform: translateY(0);
}
@media (min-width: 768px) {
[role="menu"]>.menu-box {
transition: none;
}
}
.menu-box {
border: 0;
}
.menu-box, .menu-box .menu-box-sub>ul, .menu-box .menu-box-sub>.sub {
background: var(--bodyBackground);
border-radius: 3px;
box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
color: var(--bodyText);
font-size: 14px;
font-weight: normal;
position: absolute;
top: 100%;
list-style: none;
min-width: 190px;
padding: 0;
margin: 0;
}
.menu-box--static {
position: static;
max-width: 190px;
}
.menu-box *:not(a), .menu-box [role*="button"] {
color: var(--bodyText);
}
.tone-dark .menu-box *:not(a), .tone-dark .menu-box [role*="button"] {
color: #fff;
}
.menu-box ul {
margin: 0;
padding: 0;
}
.float-left .menu-box, .pull-left .menu-box, menu-box.anchor-left {
inset-inline-start: 0;
}
.float-right .menu-box, .pull-right .menu-box, .menu-box--anchor-right {
inset-inline-end: 0;
}
.menu-box hr, .menu-box .separator, .menu-box [role="separator"] {
display: block;
margin: 0;
padding: 0;
height: 0;
border: 0;
border-top: 1px solid #ebebeb;
}
.menu-box--border-separators>* {
border-bottom: 1px solid #ebebeb;
}
.menu-box--border-separators>*:last-child {
border-bottom: 0;
}
.menu-box--border-separators>hr {
display: none;
}
.menu-box li, .menu-box .sub, .menu-box [role="box"], .menu-box [role*="button"] {
padding: 10px;
list-style: none;
position: relative;
line-height: 1.4;
clear: both;
min-height: 40px;
display: block;
}
.menu-box [role="box"] {
cursor: default;
}
.menu-box [role*="button"] {
padding-inline-start: 35px;
border-inline-start: 2px solid transparent;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
text-align: start;
}
.menu-box--multiline [role*="button"] {
white-space: normal;
}
.menu-box--noicons li:not([role="button"]) {
padding-inline-start: 0;
}
.menu-box--noicons [role="button"] {
padding-inline-start: 10px;
color: inherit;
}
.menu-box [role="button"]:hover {
border-left-color: #a66bbe;
}
.menu-box .disabled[role="button"] {
cursor: not-allowed;
background: none;
border-color: transparent !important;
opacity: 0.5;
}
.menu-box li.menu-box-sub {
padding-inline-end: 34px;
}
.menu-box .menu-box-sub>ul, .menu-box .menu-box-sub>.sub {
display: none;
}
.menu-box .menu-box-sub:hover>ul, .menu-box .menu-box-sub:hover>.sub {
display: block;
}
.menu-box [role*="button"]>.icon, .menu-box li>.icon {
font-size: 16px;
width: 16px;
height: 16px;
text-align: center;
position: absolute;
inset-inline-start: 8px;
top: 50%;
margin-top: -8px;
}
.menu-box .menu-box-sub>.icon {
inset-inline-start: auto;
inset-inline-end: 10px;
}
.menu-box .menu-box-sub ul, .menu-box .menu-box-sub .sub {
cursor: default;
position: absolute;
top: 0;
inset-inline-start: 100%;
}
.menu-box .meta {
font-size: 0.93em;
display: block;
}
.menu-box .empty {
font-size: 1em;
text-align: center;
padding: 40px 20px;
}
.menu-box .empty>.icon {
font-size: 64px;
margin-bottom: 10px;
display: block;
color: #ebebeb;
position: static;
}
.arrow-navigator a {
color: var(--bodyBackground);
display: block;
text-decoration: none;
text-align: center;
height: 40px;
width: 40px;
position: absolute;
top: 50%;
margin-top: -20px;
opacity: 0.7;
padding: 10px;
}
.arrow-navigator a.disabled {
display: none;
}
.arrow-navigator a:hover {
opacity: 1;
}
.arrow-navigator a span {
display: inline-block;
font-size: 20px;
width: 1em;
height: 1em;
text-align: center;
}
.growl {
color: var(--alertText);
font-size: 1.1em;
line-height: 1.2;
background: var(--alertBackground);
padding: 1em;
padding-inline-end: 2em;
text-align: center;
overflow: visible;
position: fixed;
width: 500px;
inset-inline-start: 50%;
top: 45px;
z-index: 9999;
cursor: default;
border-inline-start: 5px solid var(--alertAccent);
box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.15);
border-radius: 4px;
margin-inline-start: -250px;
}
.growl:empty {
display: none;
}
.phone .growl {
left: 10px;
right: 10px;
width: auto;
margin-inline-start: auto;
}
.growl.static {
margin-inline-start: auto;
position: static;
padding-inline-start: 10px;
padding-inline-end: 10px;
box-shadow: none;
z-index: initial;
margin: auto;
width: auto;
}
.growl.static.inline {
margin: initial;
text-align: start;
display: inline-block;
padding-inline-end: 1em;
padding-inline-start: 1em;
}
.growl .icon {
font-size: 14px;
text-align: center;
position: absolute;
inset-inline-end: 5px;
top: 7px;
cursor: pointer;
padding: 10px;
color: var(--alertText)
}
.growl-debug-message {
text-align: start;
}
.growl-debug-trace {
overflow-x: auto;
font-size: 80%;
margin-top: 10px;
}
.growl-debug-status {
font-style: italic;
margin-top: 10px;
margin-bottom: 10px;
}
.flex-center {
margin: auto;
}
.width-full {
width: 100%;
}
.height-full {
height: 100%;
}
.width-min-full {
min-width: 100%;
}
.height-min-full {
min-height: 100%;
}
.fullscreen {
position: fixed;
top: 0;
inset-inline-start: 0;
width: 100%;
height: 100%;
overflow: auto;
z-index: 1000;
opacity: 0;
transition: opacity 350ms linear;
}
.fullscreen.black, .fullscreen.white {
-webkit-backdrop-filter: blur(35px) saturate(1.8);
backdrop-filter: blur(35px) saturate(1.8);
}
.fullscreen.black, .black-bkg {
background: var(--backgroundDarkAlpha);
}
.fullscreen.white, .white-bkg {
background: var(--backgroundLightAlpha);
}
.fullscreen.soft-white, .soft-white-bkg {
background: rgba(255, 255, 255, 0.6);
filter: progid: DXImageTransform.Microsoft.gradient(startColorstr=#7FFFFFFF, endColorstr=#7FFFFFFF);
}
.ie9 .fullscreen {
-webkit-filter: none;
filter: none;
}
.fullscreen-loader {
width: 150px;
height: 150px;
text-align: center;
border-radius: 10px;
color: #fff;
margin-top: -75px;
margin-inline-start: -75px;
position: absolute;
top: 50%;
inset-inline-start: 50%;
zoom: 1;
}
.loading-txt {
position: absolute;
bottom: 15px;
inset-inline-start: 0;
text-align: center;
width: 100%;
}
#fullscreen-modal {
display: none;
}
#fullscreen-modal.--show {
display: grid;
align-items: center;
}
.ie9 #fullscreen-modal {
-webkit-filter: none;
filter: none;
}
#fullscreen-modal-box {
width: 670px;
margin: 0 auto;
padding: 20px;
position: relative;
box-shadow: 0 0 50px 6px rgba(0, 0, 0, 0.25);
border-radius: 10px;
background: var(--modalBackground);
color: var(--modalText);
}
.--has-scrollbar #fullscreen-modal-box {
border-radius: 0;
}
.phone #fullscreen-modal-box {
width: 100%;
margin: 0;
max-height: 100%;
-webkit-overflow-scrolling: touch;
border-radius: 0;
padding: 20px;
}
#fullscreen-modal-box h1, #fullscreen-modal-box .modal-box-title {
display: block;
margin-top: 0;
margin-bottom: 20px;
font-size: 20px;
line-height: 1.2;
padding-inline-end: 32px;
}
#fullscreen-modal-box h2 {
font-size: 1.14em;
}
#fullscreen-modal-box h2 * {
font-weight: normal;
}
#fullscreen-modal-box .or-separator {
margin-top: 16px;
}
#fullscreen-modal-box p {
font-size: 1em;
line-height: 160%;
margin-top: 10px;
margin-bottom: 10px;
}
#fullscreen-modal-box p:firt-child {
margin-top: 0;
}
#fullscreen-modal-box .btn-container {
margin-bottom: 0;
}
#fullscreen-modal-box .close-modal.icon--close {
position: absolute;
inset-inline-end: 10px;
top: 15px;
cursor: pointer;
display: block;
padding: 10px;
}
.phone #fullscreen-modal-box .close-modal.icon--close, .phone #fullscreen-modal-box .close-modal.icon--close:hover {
inset-inline-end: 10px;
}
.modal-form textarea {
height: 70px;
resize: none;
}
.fancy-box {
padding: 20px;
background: var(--bodyBackground);
box-shadow: 0 0 50px 6px rgb(0 0 0 / 25%);
border-radius: 10px;
}
.fancy-box p {
-webkit-margin-before: 1em;
margin-block-start: 1em;
-webkit-margin-after: 1em;
margin-block-end: 1em;
}
.fancy-box .or-separator {
height: 1px;
margin: 0;
}
#fullscreen-changes-confirm {
background: var(--bodyBackground);
padding: 40px 0;
margin-top: 75px;
position: absolute;
text-align: center;
top: 50%;
width: 100%;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
.tone-dark #fullscreen-changes-confirm {
background: #1e1e1e;
}
#fullscreen-changes-confirm h2 {
font-size: 18px;
line-height: 18px;
color: inherit;
}
.fullscreen-viewer {
background: #000;
background: rgba(0, 0, 0, 0.9);
color: #bbb;
display: none;
}
.fullscreen-viewer-top {
height: 50px;
width: 100%;
background: #000;
}
.fullscreen-viewer-top-user, .fullscreen-viewer-navigation {
margin-top: 8px;
}
.fullscreen-viewer-top-user {}
.fullscreen-viewer-top-user img {
width: 34px;
height: 34px;
margin-inline-end: 10px;
}
.fullscreen-viewer-navigation {
font-size: 16px;
font-size: 1.143rem;
height: 26px;
position: relative;
z-index: 100;
}
.fullscreen-viewer-navigation a {
display: inline-block;
color: #bbb;
color: rgba(255, 255, 255, 0.7);
text-decoration: none;
padding: 8px;
}
.fullscreen-viewer-navigation a:hover {
color: #fff;
}
.fullscreen-viewer-navigation a.disabled {
color: #bbb;
color: rgba(255, 255, 255, 0.4);
cursor: default;
}
.fullscreen-viewer-content {
text-align: center;
height: 100%;
position: relative;
display: none;
}
.fullscreen-viewer-content img {
max-width: 100%;
max-height: 100%;
box-shadow: 0 0 6px 0 #000000;
}
#cookie-law-banner {
position: fixed;
padding: 10px;
width: 100%;
bottom: 0;
background: rgba(0, 0, 0, 0.8);
color: #fff;
font-size: 1.2em;
z-index: 1000;
}
#cookie-law-banner p {
padding-inline-end: 20px;
}
a.cookie-law-close {
color: inherit;
text-decoration: none;
position: absolute;
inset-inline-end: 0;
top: 3px;
font-size: 0.72em;
opacity: 0.5;
}
a.cookie-law-close:hover {
opacity: 1;
}
.badge--paid {
text-transform: uppercase;
text-align: center;
border-radius: 3px;
padding: 2px 5px;
display: inline-block;
line-height: 1;
border: 1px solid var(--buttonDefaultBorder);
color: var(--buttonDefaultHoverText);
background-color: var(--buttonDefaultHoverBackground);
border-color: var(--buttonDefaultHoverBorder);
font-weight: normal;
}
.pop-box-menu li .badge {
position: absolute;
inset-inline-end: 8px;
top: 8px;
}
.badge {
vertical-align: text-bottom;
font-size: 0.7143em;
transform-origin: right;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.badge + label,
.btn .badge {
margin-inline-start: 5px;
}
.pop-box-menu li.paid a {
padding-inline-end: 52px;
}
.pop-box-menu li:hover .badge {
color: var(--menuItemHoverBackground);
background-color: var(--menuItemHoverText);
border-color: transparent;
}
.r1 {
height: 30px;
}
.r2 {
height: 70px;
}
.r3 {
height: 110px;
}
.r4 {
height: 150px;
}
.r5 {
height: 190px;
}
.r6 {
height: 230px;
}
.r7 {
height: 270px;
}
.r8 {
height: 310px;
}
.r9 {
height: 350px;
}
.r10 {
height: 390px;
}
.r11 {
height: 430px;
}
.r12 {
height: 470px;
}
.r13 {
height: 510px;
}
.r14 {
height: 550px;
}
.r15 {
height: 590px;
}
.r16 {
height: 630px;
}
.r17 {
height: 670px;
}
.r18 {
height: 710px;
}
.r19 {
height: 750px;
}
.r20 {
height: 790px;
}
.r11 {
height: 830px;
}
.r22 {
height: 870px;
}
.r23 {
height: 910px;
}
.r24 {
height: 950px;
}
.columns-container {
overflow: auto;
}
.grid-columns {
display: block;
float: left;
}
[dir="rtl"] .grid-columns {
float: right;
}
.gutter-margin-right, .gutter-margin-right-bottom {
margin-inline-end: 1px;
}
.gutter-margin-bottom, .gutter-margin-right-bottom, .gutter-margin-left-bottom {
margin-bottom: 1px;
}
.gutter-margin-left, .gutter-margin-left-bottom {
margin-inline-start: 1px;
}
.gutter-width {
width: 5px;
}
@media (min-width: 480px) {}
.col-1-min {
min-width: 30px;
}
.col-2-min {
min-width: 70px;
}
.col-3-min {
min-width: 110px;
}
.col-4-min {
min-width: 150px;
}
.col-5-min {
min-width: 190px;
}
.col-6-min {
min-width: 230px;
}
.col-7-min {
min-width: 270px;
}
.col-8-min {
min-width: 310px;
}
.col-9-min {
min-width: 350px;
}
.col-10-min {
min-width: 390px;
}
.col-11-min {
min-width: 430px;
}
.col-12-min {
min-width: 470px;
}
.col-13-min {
min-width: 510px;
}
.col-14-min {
min-width: 550px;
}
.col-15-min {
min-width: 590px;
}
.col-16-min {
min-width: 630px;
}
.col-17-min {
min-width: 670px;
}
.col-18-min {
min-width: 710px;
}
.col-19-min {
min-width: 750px;
}
.col-20-min {
min-width: 790px;
}
.col-21-min {
min-width: 830px;
}
.col-22-min {
min-width: 870px;
}
.col-23-min {
min-width: 910px;
}
.col-24-min {
min-width: 950px;
}
.col-1-max {
max-width: 30px;
}
.col-2-max {
max-width: 70px;
}
.col-3-max {
max-width: 110px;
}
.col-4-max {
max-width: 150px;
}
.col-5-max {
max-width: 190px;
}
.col-6-max {
max-width: 230px;
}
.col-7-max {
max-width: 270px;
}
.col-8-max {
max-width: 310px;
}
.col-9-max {
max-width: 350px;
}
.col-10-max {
max-width: 390px;
}
.col-11-max {
max-width: 430px;
}
.col-12-max {
max-width: 470px;
}
.col-13-max {
max-width: 510px;
}
.col-14-max {
max-width: 550px;
}
.col-15-max {
max-width: 590px;
}
.col-16-max {
max-width: 630px;
}
.col-17-max {
max-width: 670px;
}
.col-18-max {
max-width: 710px;
}
.col-19-max {
max-width: 750px;
}
.col-20-max {
max-width: 790px;
}
.col-21-max {
max-width: 830px;
}
.col-22-max {
max-width: 870px;
}
.col-23-max {
max-width: 910px;
}
.col-24-max {
max-width: 950px;
}
@media (min-width: 768px) {
.c1 {
width: 30px;
}
.c2 {
width: 70px;
}
.c3 {
width: 110px;
}
.c4 {
width: 150px;
}
.c5 {
width: 190px;
}
.c6 {
width: 230px;
}
.c7 {
width: 270px;
}
.c8 {
width: 310px;
}
.c9 {
width: 350px;
}
.c10 {
width: 390px;
}
.c11 {
width: 430px;
}
.c12 {
width: 470px;
}
.c13 {
width: 510px;
}
.c14 {
width: 550px;
}
.c15 {
width: 590px;
}
.c16 {
width: 630px;
}
.c17 {
width: 670px;
}
.c18 {
width: 710px;
}
.fluid-column.c1 {
width: 3.157%;
}
.fluid-column.c2 {
width: 7.368%;
}
.fluid-column.c3 {
width: 11.578%;
}
.fluid-column.c4 {
width: 15.789%;
}
.fluid-column.c5 {
width: 20%;
}
.fluid-column.c6 {
width: 24.21%;
}
.fluid-column.c7 {
width: 28.421%;
}
.fluid-column.c8 {
width: 32.631%;
}
.fluid-column.c9 {
width: 36.842%;
}
.fluid-column.c10 {
width: 41.052%;
}
.fluid-column.c11 {
width: 45.263%;
}
.fluid-column.c12 {
width: 49.473%;
}
.fluid-column.c13 {
width: 53.684%;
}
.fluid-column.c14 {
width: 57.894%;
}
.fluid-column.c15 {
width: 62.105%;
}
.fluid-column.c16 {
width: 66.315%;
}
.fluid-column.c17 {
width: 70.526%;
}
.fluid-column.c18 {
width: 74.736%;
}
}
@media (min-width: 992px) {
.content-width {
width: 100%;
min-width: 970px;
}
.c19 {
width: 750px;
}
.c20 {
width: 790px;
}
.c21 {
width: 830px;
}
.c22 {
width: 870px;
}
.c23 {
width: 910px;
}
.c24 {
width: 950px;
}
.fluid-column.c19 {
width: 78.947%;
}
.fluid-column.c20 {
width: 83.157%;
}
.fluid-column.c21 {
width: 87.368%;
}
.fluid-column.c22 {
width: 91.578%;
}
.fluid-column.c23 {
width: 95.789%;
}
.fluid-column.c24 {
width: 100%;
}
.top-btn-text .btn-text {
margin-inline-start: 7px;
}
.pop-box .arrow-down {
border-width: 6px 6px 0 6px;
}
}
@media (min-width: 992px) and (max-width: 1920px) {
.content-width {
max-width: 1800px;
}
}
@media (min-width: 1921px) and (max-width: 2560px) {
.content-width {
max-width: 2440px;
}
}
@media (min-width: 3840px) {
.content-width {
max-width: 3720px;
}
}
.color-body-text-subtle {
color: var(--bodyTextSubtle);
}
.color-accent {
color: var(--colorAccent);
}
.color-success {
color: var(--colorSuccess);
}
.color-fail {
color: var(--colorFail);
}
.color-white {
color: #fff !important;
}
.color-black {
color: #333 !important;
}
.color-grey {
color: #ccc !important;
}
.color-green {
color: #27ae61 !important;
}
.color-red {
color: #e74c3c !important;
}
.color-blue {
color: var(--colorBlue) !important;
}
.color-orange {
color: #d35400 !important;
}
.color-purple {
color: #8e44ad !important;
}
.color-inherit {
color: inherit !important;
}
.color-initial {
color: initial !important;
}
.height-auto {
height: auto;
}
.width-auto {
width: auto;
}
.height-100p {
height: 100%;
}
.width-100p {
width: 100%;
}
.color-facebook {
color: #3b5998;
}
.color-twitter {
color: #1da1f2;
}
.color-google {
color: #ea4335;
}
.color-vk {
color: #45668e;
}
.border-color-facebook {
border-color: #3b5998;
}
.border-color-twitter {
border-color: #1da1f2;
}
.border-color-google {
border-color: #ea4335;
}
.border-color-vk {
border-color: #45668e;
}
.opacity-10 {
opacity: 0.1;
}
.opacity-20 {
opacity: 0.2;
}
.opacity-30 {
opacity: 0.3;
}
.opacity-40 {
opacity: 0.4;
}
.opacity-50 {
opacity: 0.5;
}
.opacity-60 {
opacity: 0.6;
}
.opacity-70 {
opacity: 0.7;
}
.opacity-80 {
opacity: 0.8;
}
.opacity-90 {
opacity: 0.9;
}
.opacity-100 {
opacity: 1;
}
.background-black {
background: black !important;
}
.background-white {
background: white !important;
}
.background-transparent {
background: transparent !important;
}
.background-gradient-white-left {
background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 35%, rgba(255, 255, 255, 1) 100%);
filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1);
}
.background-gradient-white-right {
background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 0) 100%);
filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#00ffffff', GradientType=1);
}
.font-weight-bold {
font-weight: bold !important;
}
.font-weight-normal {
font-weight: normal !important;
}
.cursor-pointer {
cursor: pointer !important;
}
.cursor-grab {
cursor: grab;
}
.cursor-grabbing {
cursor: grabbing;
}
.cursor-default {
cursor: default !important;
}
.cursor-zoom-in {
cursor: zoom-in;
}
.cursor-zoom-out {
cursor: zoom-out;
}
.font-size-small {
font-size: small !important;
}
.font-size-medium {
font-size: medium !important;
}
.font-size-large {
font-size: large !important;
}
.font-size-inherit {
font-size: inherit !important;
}
.font-size-10 {
font-size: 10px !important;
}
.font-size-11 {
font-size: 11px !important;
}
.font-size-12 {
font-size: 12px !important;
}
.font-size-13 {
font-size: 13px !important;
}
.font-size-14 {
font-size: 14px !important;
}
.font-size-15 {
font-size: 15px !important;
}
.font-size-16 {
font-size: 16px !important;
}
.font-size-17 {
font-size: 17px !important;
}
.font-size-18 {
font-size: 18px !important;
}
.height-100p {
height: 100% !important;
}
.height-120p {
height: 120% !important;
}
.top-0 {
top: 0px;
}
.top-10 {
top: 10px;
}
.top-20 {
top: 20px;
}
.top-30 {
top: 30px;
}
.top-40 {
top: 40px;
}
.right-0 {
inset-inline-end: 0px;
}
.right-10 {
inset-inline-end: 10px;
}
.right-20 {
inset-inline-end: 20px;
}
.right-30 {
inset-inline-end: 30px;
}
.right-40 {
inset-inline-end: 40px;
}
.bottom-0 {
bottom: 0px;
}
.bottom-10 {
bottom: 10px;
}
.bottom-20 {
bottom: 20px;
}
.bottom-30 {
bottom: 30px;
}
.bottom-40 {
bottom: 40px;
}
.left-0 {
inset-inline-start: 0px;
}
.left-10 {
inset-inline-start: 10px;
}
.left-20 {
inset-inline-start: 20px;
}
.left-30 {
inset-inline-start: 30px;
}
.left-40 {
inset-inline-start: 40px;
}
.display-none {
display: none;
}
.display-none-forced {
display: none !important;
}
.display-block {
display: block;
}
.display-block-forced {
display: block !important;
}
.display-flex {
display: -moz-flex;
display: flex;
}
.visibility-hidden {
visibility: hidden;
}
.clear-both {
clear: both;
}
.float-left {
float: left;
}
[dir="rtl"] .float-left {
float: right;
}
.float-right {
float: right;
}
[dir="rtl"] .float-right {
float: left;
}
.border-0, .no-border {
border: none;
}
.border-top-0 {
border-top: 0;
}
.border-right-0 {
border-inline-end: 0;
}
.border-bottom-0 {
border-bottom: 0;
}
.border-left-0 {
border-inline-start: 0;
}
.box-shadow-none {
box-shadow: none;
}
.word-break-break-all {
word-break: break-all;
}
.word-break-break-word {
word-break: break-word;
}
.margin-0 {
margin: 0 !important;
}
.margin-5 {
margin: 5px !important;
}
.margin-10 {
margin: 10px !important;
}
.margin-20 {
margin: 20px !important;
}
.margin-30 {
margin: 20px !important;
}
.margin-40 {
margin: 20px !important;
}
.margin-top-0, .phone .phone-margin-top-0, .phablet .phablet-margin-top-0 {
margin-top: 0 !important;
}
.margin-top-5, .phone .phone-margin-top-5, .phablet .phablet-margin-top-5 {
margin-top: 5px !important;
}
.margin-top-10, .phone .phone-margin-top-10, .phablet .phablet-margin-top-10 {
margin-top: 10px !important;
}
.margin-top-20, .phone .phone-margin-top-20, .phablet .phablet-margin-top-20 {
margin-top: 20px !important;
}
.margin-top-30 {
margin-top: 30px !important;
}
.margin-top-40 {
margin-top: 40px !important;
}
.margin-right-auto {
margin-inline-end: auto !important;
}
.margin-right-0, .phone .phone-margin-right-0, .phablet .phablet-margin-right-0 {
margin-inline-end: 0 !important;
}
.margin-right-035em {
margin-inline-end: 0.35em !important;
}
.margin-right-5 {
margin-inline-end: 5px !important;
}
.margin-right-10 {
margin-inline-end: 10px !important;
}
.margin-right-20 {
margin-inline-end: 20px !important;
}
.margin-right-30 {
margin-inline-end: 30px !important;
}
.margin-right-40 {
margin-inline-end: 40px !important;
}
.margin-bottom-0, .phone .phone-margin-bottom-0, .phablet .phablet-margin-bottom-0 {
margin-bottom: 0 !important;
}
.margin-bottom-5 {
margin-bottom: 5px !important;
}
.margin-bottom-10, .phone .phone-margin-bottom-10, .phablet .phablet-margin-bottom-10 {
margin-bottom: 10px !important;
}
.margin-bottom-20, .phone .phone-margin-bottom-20, .phablet .phablet-margin-bottom-20 {
margin-bottom: 20px !important;
}
.margin-bottom-30 {
margin-bottom: 30px !important;
}
.margin-bottom-40 {
margin-bottom: 40px !important;
}
.margin-left-auto {
margin-inline-start: auto !important;
}
.margin-left-0, .phone .phone-margin-left-0, .phablet .phablet-margin-left-0 {
margin-inline-start: 0 !important;
}
.margin-right--10 {
margin-inline-end: -10px !important;
}
.margin-left--10 {
margin-inline-start: -10px !important;
}
.margin-left-5 {
margin-inline-start: 5px !important;
}
.margin-left-10 {
margin-inline-start: 10px !important;
}
.margin-left-20 {
margin-inline-start: 20px !important;
}
.margin-left-30 {
margin-inline-start: 30px !important;
}
.margin-left-40 {
margin-inline-start: 40px !important;
}
.padding-5 {
padding: 5px !important;
}
.padding-10 {
padding: 10px !important;
}
.padding-20 {
padding: 20px !important;
}
.padding-30 {
padding: 20px !important;
}
.padding-40 {
padding: 20px !important;
}
.padding-top-5 {
padding-top: 5px !important;
}
.padding-top-0 {
padding-top: 0 !important;
}
.padding-top-10 {
padding-top: 10px !important;
}
.padding-top-20 {
padding-top: 20px !important;
}
.padding-top-30 {
padding-top: 30px !important;
}
.padding-top-40 {
padding-top: 40px !important;
}
.padding-right-5 {
padding-inline-end: 5px !important;
}
.padding-right-0 {
padding-inline-end: 0 !important;
}
.padding-right-10 {
padding-inline-end: 10px !important;
}
.padding-right-20 {
padding-inline-end: 20px !important;
}
.padding-right-30 {
padding-inline-end: 30px !important;
}
.padding-right-40 {
padding-inline-end: 40px !important;
}
.padding-bottom-5 {
padding-bottom: 5px !important;
}
.padding-bottom-0 {
padding-bottom: 0 !important;
}
.padding-bottom-10 {
padding-bottom: 10px !important;
}
.padding-bottom-20 {
padding-bottom: 20px !important;
}
.padding-bottom-30 {
padding-bottom: 30px !important;
}
.padding-bottom-40 {
padding-bottom: 40px !important;
}
.padding-left-5 {
padding-inline-start: 5px !important;
}
.padding-left-0 {
padding-inline-start: 0 !important;
}
.padding-left-10 {
padding-inline-start: 10px !important;
}
.padding-left-20 {
padding-inline-start: 20px !important;
}
.padding-left-30 {
padding-inline-start: 30px !important;
}
.padding-left-40 {
padding-inline-start: 40px !important;
}
.position-sticky {
position: -webkit-sticky;
position: sticky;
}
.position-static {
position: static;
}
.position-relative {
position: relative;
}
.position-absolute {
position: absolute;
}
.position-fixed {
position: fixed;
}
.text-align-left {
text-align: start;
}
.text-align-center {
text-align: center;
}
.text-align-right {
text-align: end;
}
.text-align-justify {
text-align: justify;
}
.text-decoration-none {
text-decoration: none !important;
}
.display-block {
display: block;
}
.display-inline {
display: inline;
}
.display-inline-table {
display: inline-table;
}
.display-inline-block {
display: inline-block;
}
.display-table-cell {
display: table-cell;
}
.word-break-break-all {
word-break: break-all;
}
.list-style-position-inside li {
list-style-position: inside !important;
}
.list-style-position-outside li {
list-style-position: outside !important;
}
.list-style-type-disc li {
list-style-type: disc !important;
}
.list-style-type-decimal li {
list-style-type: decimal !important;
}
.center-box {
margin-inline-end: auto !important;
margin-inline-start: auto !important;
}
.display-inline-block, .display-table-cell {
*display: inline;
zoom: 1;
}
.vertical-align-middle {
vertical-align: middle !important;
}
.resize-vertical {
resize: vertical !important;
}
.no-resize, .resize-none {
resize: none !important;
}
.overflow-auto {
overflow: auto !important;
}
.overflow-hidden {
overflow: hidden !important;
}
.overflow-visible {
overflow: visible !important;
}
.overflow-scroll {
overflow: scroll !important;
}
.overflow-x-auto {
overflow-x: auto !important;
}
.overflow-y-auto {
overflow-y: auto !important;
}
.overflow-x-hidden {
overflow-x: hidden !important;
}
.overflow-y-hidden {
overflow-y: hidden !important;
}
.overflow-x-visible {
overflow-x: visible !important;
}
.overflow-y-visible {
overflow-y: visible !important;
}
.overflow-x-scroll {
overflow-x: scroll !important;
}
.overflow-y-scroll {
overflow-y: scroll !important;
}
.text-transform-capitalize {
text-transform: capitalize;
}
.text-transform-uppercase {
text-transform: uppercase;
}
.default-margin-top {
margin-top: 20px;
}
.default-margin-bottom {
margin-bottom: 20px;
}
.float-none {
float: none !important;
clear: both !important;
}
.phone .phone-hide, .phablet .phablet-hide, .tablet .tablet-hide, .laptop .laptop-hide, .desktop .desktop-hide, .largescreen .desktop-hide {
display: none !important;
}
.phone .phone-show, .phone .phone-display-block, .phablet .phablet-show, .phablet .phablet-display-block, .tablet .tablet-show, .tablet .tablet-display-block, .laptop .laptop-show, .laptop .laptop-display-block, .desktop .desktop-show, .desktop .desktop-display-block, .largescreen .desktop-show, .largescreen .desktop-display-block {
display: block !important;
}
.phone .phone-display-inline, .phablet .phablet-display-inline, .tablet .tablet-display-inline, .laptop .laptop-display-inline, .desktop .desktop-display-inline {
display: inline !important;
}
.phone .phone-display-inline-block, .phablet .phablet-display-inline-block, .tablet .tablet-display-inline-block, .laptop .laptop-display-inline-block, .desktop .desktop-display-inline-block {
display: inline-block !important;
}
.image-responsive {
max-width: 100% !important;
width: auto !important;
}
.phone .phone-float-none, .phablet .phablet-float-none, .tablet .tablet-float-none, .laptop .laptop-float-none, .desktop .desktop-float-none {
float: none;
clear: both;
}
.phone .grid-columns, .phablet .grid-columns {
float: none;
margin-inline-start: 0;
margin-inline-end: 0;
}
.phone .phone-float-left,
.phablet .phablet-float-left {
float: left !important;
}
[dir=rtl].phone .phone-float-left,
[dir=rtl].phablet .phablet-float-left {
float: right !important;
}
.phone .phone-c1, .phablet .phablet-c1, .phone .fluid-column.phone-c1, .phone .fluid-column.phablet-c1 {
width: 100%;
}
.phone .phone-text-align-left,
.phablet .phablet-text-align-left {
text-align: left !important;
}
.phone .phone-text-align-center,
.phablet .phablet-text-align-center {
text-align: center !important;
}
#tiptip_holder {
display: none;
position: absolute;
top: 0;
inset-inline-start: 0;
z-index: 99999;
}
#tiptip_holder.tip_top {
padding-bottom: 5px;
}
#tiptip_holder.tip_bottom {
padding-top: 5px;
}
#tiptip_holder.tip_right {
padding-inline-start: 5px;
}
#tiptip_holder.tip_left {
padding-inline-end: 5px;
}
#tiptip_content {
font-size: 12px;
color: #fff;
padding: 6px 8px;
background-color: #333;
background-color: rgba(0, 0, 0, 0.8);
word-break: break-word;
}
#tiptip_arrow, #tiptip_arrow_inner {
position: absolute;
border-color: transparent;
border-style: solid;
border-width: 6px;
height: 0;
width: 0;
}
#tiptip_holder.tip_top #tiptip_arrow_inner {
margin-top: -6px;
margin-inline-start: -7px;
border-top-color: #333;
border-top-color: rgba(0, 0, 0, 0.8);
}
.tone-dark #tiptip_holder.tip_top #tiptip_arrow_inner {
border-top-color: #fff;
border-top-color: rgba(255, 255, 255, 0.95);
}
#tiptip_holder.tip_bottom #tiptip_arrow_inner {
margin-top: -6px;
margin-inline-start: -7px;
border-bottom-color: #333;
border-bottom-color: rgba(0, 0, 0, 0.8);
}
.tone-dark #tiptip_holder.tip_bottom #tiptip_arrow_inner {
border-bottom-color: #fff;
border-bottom-color: rgba(255, 255, 255, 0.95);
}
#tiptip_holder.tip_right #tiptip_arrow_inner {
margin-top: -6px;
margin-inline-start: -6px;
border-right-color: #333;
border-right-color: rgba(0, 0, 0, 0.8);
}
.tone-dark #tiptip_holder.tip_right #tiptip_arrow_inner {
border-right-color: #fff;
border-right-color: rgba(255, 255, 255, 0.95);
}
#tiptip_holder.tip_left #tiptip_arrow_inner {
margin-top: -6px;
margin-inline-start: -6px;
border-left-color: #333;
border-left-color: rgba(0, 0, 0, 0.8);
}
.tone-dark #tiptip_holder.tip_left #tiptip_arrow_inner {
border-left-color: #fff;
border-left-color: rgba(255, 255, 255, 0.95);
}
.antiscroll-wrap {
display: block;
position: relative;
overflow: hidden;
}
.antiscroll-scrollbar {
background: gray;
background: rgba(0, 0, 0, 0.5);
border-radius: 7px;
box-shadow: 0 0 1px #fff;
position: absolute;
opacity: 0;
filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
-webkit-transition: linear 350ms opacity;
-moz-transition: linear 350ms opacity;
-o-transition: linear 350ms opacity;
}
.antiscroll-scrollbar-shown {
opacity: 1;
filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
}
.antiscroll-scrollbar-horizontal {
height: 7px;
margin-inline-start: 2px;
bottom: 2px;
inset-inline-start: 0;
}
.antiscroll-scrollbar-vertical {
width: 7px;
margin-top: 2px;
inset-inline-end: 2px;
top: 0;
}
.antiscroll-inner {
overflow: scroll;
}
/** A bug in Chrome 25 on Lion requires each selector to have their own
blocks. E.g. the following:
.antiscroll-inner::-webkit-scrollbar, .antiscroll-inner::scrollbar {...}
causes the width and height rules to be ignored by the browser resulting
in both native and antiscroll scrollbars appearing at the same time.
*/
.antiscroll-inner::-webkit-scrollbar {
width: 0;
height: 0;
}
.antiscroll-inner::scrollbar {
width: 0;
height: 0;
}
#recaptcha_table.recaptcha_theme_clean #recaptcha_image {
border: 0 !important;
}
#recaptcha_response_field {
height: auto;
}
.copy-hover-display button.input-action, .copy-hover-display button.copy-input {
visibility: hidden;
}
.phone button.input-action, .phablet button.input-action, .copy-hover-display:hover button.input-action, .phone button.copy-input, .phablet button.copy-input, .copy-hover-display:hover button.copy-input {
visibility: visible;
}
button.input-action, button.copy-input {
position: absolute;
inset-inline-end: 7px;
top: 0.8181em;
text-transform: uppercase;
cursor: pointer;
line-height: 1;
font-size: 11px;
padding: 4px 6px;
border-radius: 4px;
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
button.input-action, button.copy-input {
background: var(--buttonDefaultBackground);
color: var(--buttonDefaultText);
}
button:hover.input-action, button:hover.copy-input {
background: var(--buttonDefaultHoverBackground);
color: var(--buttonDefaultHoverText);
}
.shake {
-webkit-animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}
@-webkit-keyframes shake {
10%, 90% {
transform: translate3d(-1px, 0, 0);
}
20%, 80% {
transform: translate3d(2px, 0, 0);
}
30%, 50%, 70% {
transform: translate3d(-4px, 0, 0);
}
40%, 60% {
transform: translate3d(4px, 0, 0);
}
}
@keyframes shake {
10%, 90% {
transform: translate3d(-1px, 0, 0);
}
20%, 80% {
transform: translate3d(2px, 0, 0);
}
30%, 50%, 70% {
transform: translate3d(-4px, 0, 0);
}
40%, 60% {
transform: translate3d(4px, 0, 0);
}
}
.key-feedback {
line-height: 1;
background: rgba(0, 0, 0, .7);
position: fixed;
z-index: 10000;
-webkit-backdrop-filter: blur(30px);
backdrop-filter: blur(30px);
bottom: 1.5em;
transition: all 500ms;
opacity: 0;
text-align: center;
color: #FFF;
font-weight: bold;
font-size: 45px;
padding: 1em;
border-radius: 0.5em;
inset-inline-start: 50%;
transform: translateX(-50%);
border: 4px solid rgba(255, 255, 255, .9);
box-shadow: 0 0 50px 6px rgb(0 0 0 / 25%);
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
img.qr {
display: inline-block;
}
.fa-vkontakte:before {
content: "\f189";
}
.fab.fa-mailru {
font-family: "Font Awesome 5 Free";
font-weight: 900;
}
.fa-mailru:before {
content: "\f1fa";
}
.fa-stackexchange:before {
content: "\f18d";
}
.fa-twitchtv:before {
content: "\f1e8";
}
.fa-wechat:before {
content: "\f1d7";
}