code stringlengths 2k 1.04M | repo_path stringlengths 5 517 | parsed_code stringlengths 0 1.04M | quality_prob float64 0.02 0.95 | learning_prob float64 0.02 0.93 |
|---|---|---|---|---|
@import '../styles/vars.css';
@import '../styles/media-queries.css';
.root {
/* display: block; */
color: inherit;
text-decoration: none;
}
.projectSummary {
flex: 0 0 100%;
max-width: 100%;
/* padding-right: 15px;
padding-left: 15px; */
/* margin-bottom: 3rem; */
flex-wrap: wrap;
text-align: center;
@nest & > a {
background: rgba(var(--color-main-dark), 0);
display: block;
max-height: 100%;
padding: 1.5rem;
max-height: 100%;
overflow: hidden;
& h3 {
color: var(--link-color);
background-color: rgba(var(--black), 0.5);
font-family: 'Ubuntu', sans-serif;
font-weight: normal;
font-size: 1.2rem;
border-radius: 3px;
padding: 3px 2px;
/* display: inline-flex; */
/* align-items: flex-start; */
transition: all 0.2s ease-in;
@media (--motogp) {
font-size: 1.4rem;
}
}
&:hover {
color: rgb(var(--link-color));
& h3 {
color: var(--link-color);
background-color: rgb(var(--color-accent));
}
}
& p {
font-size: var(--font-med-size);
line-height: var(--font-med-line-height);
text-align: left;
@media (--supersport) {
font-size: var(--font-med-size);
line-height: var(--font-med-line-height);
}
@media (--motogp) {
font-size: var(--font-large-size);
line-height: var(--font-large-line-height);
}
}
& h3 .beta {
display: inline-flex;
color: rgba(255, 255, 255, 0.4);
font-family: 'Ubuntu', sans-serif;
font-size: 0.8rem;
font-weight: 100;
text-transform: uppercase;
transform-origin: center center;
transform: rotate(-20deg);
transition: all 0.4s ease-in-out;
}
& h3:hover .beta {
color: rgba(255, 255, 255, 0.8);
transform: rotate(5deg);
}
}
@media (--supersport) {
flex: 0 0 100%;
max-width: 100%;
}
@media (--superbike) {
flex: 0 0 50%;
max-width: 50%;
}
@media (--motogp) {
flex: 0 0 33%;
max-width: 33%;
& > a {
}
@nest &:first-of-type, &:nth-of-type(2) {
flex: 0 0 50%;
max-width: 50%;
/* flex-wrap: nowrap; */
margin: 1rem 0;
& > a {
}
}
}
}
.projectList {
composes: plainList from '../styles/global.css';
text-align: left;
@nest & li {
display: flex;
justify-content: flex-start;
padding-bottom: 0.5rem;
}
}
.info {
composes: projectItem from '../styles/global.css';
@media (--supersport) {
font-size: 0.9rem;
}
@media (--superbike) {
font-size: 1rem;
}
@nest & svg {
padding-right: 0.5rem;
min-width: 4rem;
}
}
.projectThumb {
width: 750px;
max-width: 100%;
overflow: hidden;
margin: 0 auto;
text-align: center;
border-radius: 3px;
position: relative;
padding-bottom: 50%;
/* background: red; */
@nest & picture {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease-in-out;
@nest & img {
max-width: 100%;
height: auto;
}
@nest .root > a:hover & {
transform: scale(1.03);
}
}
@nest .projectSummary:first-of-type &, .projectSummary:nth-of-type(2) & {
/* padding-bottom: 33.3333%; */
}
} | web/src/components/project-preview.module.css | @import '../styles/vars.css';
@import '../styles/media-queries.css';
.root {
/* display: block; */
color: inherit;
text-decoration: none;
}
.projectSummary {
flex: 0 0 100%;
max-width: 100%;
/* padding-right: 15px;
padding-left: 15px; */
/* margin-bottom: 3rem; */
flex-wrap: wrap;
text-align: center;
@nest & > a {
background: rgba(var(--color-main-dark), 0);
display: block;
max-height: 100%;
padding: 1.5rem;
max-height: 100%;
overflow: hidden;
& h3 {
color: var(--link-color);
background-color: rgba(var(--black), 0.5);
font-family: 'Ubuntu', sans-serif;
font-weight: normal;
font-size: 1.2rem;
border-radius: 3px;
padding: 3px 2px;
/* display: inline-flex; */
/* align-items: flex-start; */
transition: all 0.2s ease-in;
@media (--motogp) {
font-size: 1.4rem;
}
}
&:hover {
color: rgb(var(--link-color));
& h3 {
color: var(--link-color);
background-color: rgb(var(--color-accent));
}
}
& p {
font-size: var(--font-med-size);
line-height: var(--font-med-line-height);
text-align: left;
@media (--supersport) {
font-size: var(--font-med-size);
line-height: var(--font-med-line-height);
}
@media (--motogp) {
font-size: var(--font-large-size);
line-height: var(--font-large-line-height);
}
}
& h3 .beta {
display: inline-flex;
color: rgba(255, 255, 255, 0.4);
font-family: 'Ubuntu', sans-serif;
font-size: 0.8rem;
font-weight: 100;
text-transform: uppercase;
transform-origin: center center;
transform: rotate(-20deg);
transition: all 0.4s ease-in-out;
}
& h3:hover .beta {
color: rgba(255, 255, 255, 0.8);
transform: rotate(5deg);
}
}
@media (--supersport) {
flex: 0 0 100%;
max-width: 100%;
}
@media (--superbike) {
flex: 0 0 50%;
max-width: 50%;
}
@media (--motogp) {
flex: 0 0 33%;
max-width: 33%;
& > a {
}
@nest &:first-of-type, &:nth-of-type(2) {
flex: 0 0 50%;
max-width: 50%;
/* flex-wrap: nowrap; */
margin: 1rem 0;
& > a {
}
}
}
}
.projectList {
composes: plainList from '../styles/global.css';
text-align: left;
@nest & li {
display: flex;
justify-content: flex-start;
padding-bottom: 0.5rem;
}
}
.info {
composes: projectItem from '../styles/global.css';
@media (--supersport) {
font-size: 0.9rem;
}
@media (--superbike) {
font-size: 1rem;
}
@nest & svg {
padding-right: 0.5rem;
min-width: 4rem;
}
}
.projectThumb {
width: 750px;
max-width: 100%;
overflow: hidden;
margin: 0 auto;
text-align: center;
border-radius: 3px;
position: relative;
padding-bottom: 50%;
/* background: red; */
@nest & picture {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease-in-out;
@nest & img {
max-width: 100%;
height: auto;
}
@nest .root > a:hover & {
transform: scale(1.03);
}
}
@nest .projectSummary:first-of-type &, .projectSummary:nth-of-type(2) & {
/* padding-bottom: 33.3333%; */
}
} | 0.576184 | 0.07373 |
.sidenav {
height: 100%;
width: 65px;
position: fixed;
z-index: 1;
top: 0;
left: 0;
overflow-x: hidden;
padding-top: 20px;
background: #232c39;
}
.footer {
position: fixed;
bottom: 0;
}
.button {
background: none;
border: none;
cursor: pointer;
padding: 0;
width: 65px;
margin-bottom: 5px;
}
.button i {
color: yellowgreen;
}
.downloadButton {
background: none;
border: none;
cursor: pointer;
padding: 0;
margin-bottom: 15px;
width: 65px;
}
.downloadButton i {
color: #385c78;
}
.modal {
font-size: 12px;
background: #232c39;
padding: 5px;
border-radius: 4px;
}
.modal > .header {
width: 100%;
font-size: 18px;
text-align: center;
padding: 5px;
}
.modal > .content {
width: 100%;
padding: 10px 5px;
}
.modal > .actions {
width: 100%;
padding: 10px 5px;
margin: auto;
text-align: center;
}
.modal > .close {
cursor: pointer;
position: absolute;
display: block;
padding: 2px 5px;
line-height: 20px;
right: -10px;
top: -10px;
font-size: 24px;
background: #fff;
border-radius: 18px;
border: 1px solid #cfcece;
}
.appGroupButton {
width: 65px;
background: transparent;
border: none;
padding: 0;
margin-bottom: 10px;
margin-top: 10px;
color: white;
}
.appGroupButtonActive {
width: 65px;
background: #2a476e;
border: none;
border-radius: 15px;
padding: 0;
margin-bottom: 10px;
margin-top: 10px;
color: white;
}
.appGroupIcon {
width: 50px;
}
.appMenu {
width: 200px;
display: flex;
flex-direction: column;
background: #232c39;
}
.appMenuItem {
cursor: pointer;
padding: 5px;
height: 28px;
/* border-bottom: 1px solid rgb(187, 187, 187); */
}
.appMenuItem:hover {
background: #2a476e;
}
.downloadButtonBadge {
color: black !important;
background-color: yellowgreen !important;
top: -25px !important;
bottom: 5px;
right: 2px !important;
padding: 4px !important;
}
.appNotificationBadge {
color: black !important;
background-color: yellowgreen !important;
top: -10px !important;
left: 40px;
right: 5px !important;
padding: 4px !important;
} | app/components/sidenav/SideNav.css | .sidenav {
height: 100%;
width: 65px;
position: fixed;
z-index: 1;
top: 0;
left: 0;
overflow-x: hidden;
padding-top: 20px;
background: #232c39;
}
.footer {
position: fixed;
bottom: 0;
}
.button {
background: none;
border: none;
cursor: pointer;
padding: 0;
width: 65px;
margin-bottom: 5px;
}
.button i {
color: yellowgreen;
}
.downloadButton {
background: none;
border: none;
cursor: pointer;
padding: 0;
margin-bottom: 15px;
width: 65px;
}
.downloadButton i {
color: #385c78;
}
.modal {
font-size: 12px;
background: #232c39;
padding: 5px;
border-radius: 4px;
}
.modal > .header {
width: 100%;
font-size: 18px;
text-align: center;
padding: 5px;
}
.modal > .content {
width: 100%;
padding: 10px 5px;
}
.modal > .actions {
width: 100%;
padding: 10px 5px;
margin: auto;
text-align: center;
}
.modal > .close {
cursor: pointer;
position: absolute;
display: block;
padding: 2px 5px;
line-height: 20px;
right: -10px;
top: -10px;
font-size: 24px;
background: #fff;
border-radius: 18px;
border: 1px solid #cfcece;
}
.appGroupButton {
width: 65px;
background: transparent;
border: none;
padding: 0;
margin-bottom: 10px;
margin-top: 10px;
color: white;
}
.appGroupButtonActive {
width: 65px;
background: #2a476e;
border: none;
border-radius: 15px;
padding: 0;
margin-bottom: 10px;
margin-top: 10px;
color: white;
}
.appGroupIcon {
width: 50px;
}
.appMenu {
width: 200px;
display: flex;
flex-direction: column;
background: #232c39;
}
.appMenuItem {
cursor: pointer;
padding: 5px;
height: 28px;
/* border-bottom: 1px solid rgb(187, 187, 187); */
}
.appMenuItem:hover {
background: #2a476e;
}
.downloadButtonBadge {
color: black !important;
background-color: yellowgreen !important;
top: -25px !important;
bottom: 5px;
right: 2px !important;
padding: 4px !important;
}
.appNotificationBadge {
color: black !important;
background-color: yellowgreen !important;
top: -10px !important;
left: 40px;
right: 5px !important;
padding: 4px !important;
} | 0.408867 | 0.072999 |
form {
width: 90vh;
height: 90vh;
margin: auto;
border: solid px #5F7983;
background-color: #5D6FC1;
position: relative;
top: 0;
left: 0;
}
.form-div {
width: 90vh;
height: 90vh;
margin: auto;
}
.main-div {
width: 90vh;
height: 90vh;
position: relative;
margin: auto;
right: 0;
bottom: 0;
}
.left-div {
position: relative;
height: 70%;
width: 50%;
float: left;
}
.right-div {
position: relative;
height: 70%;
width: 50%;
float: right;
}
.bottom-div {
position: relative;
width: 100%;
height: 20vh;
margin: auto;
}
.robogers-group {
width: 100vh;
height: 5vh;
position: relative;
margin: auto;
}
label {
position: relative;
font-size: 5vh;
font-family: 'Orbitron', sans-serif;
font-weight: bolder;
height: 25%;
text-align: center;
display: block;
}
input[type=text] {
font-family: 'Montserrat', sans-serif;
position: relative;
margin: auto;
display: block;
font-size: 6vh;
width: 30%;
top: 15%;
background-color: cornflowerblue;
}
#output {
font-family: 'Montserrat', sans-serif;
display: block;
font-size: 5vh;
width: 80%;
height: 50%;
margin: auto;
text-align: center;
}
.button-group {
position: relative;
margin: auto;
top: 30%;
width: 75%;
height: 35%;
}
button {
position: relative;
margin: auto;
width: 100%;
height: 100%;
display: block;
opacity: 0;
cursor: pointer;
}
#cloud {
position: absolute;
width: 30vh;
display: block;
}
#robogers {
height: 50vh;
float: right;
position: absolute;
bottom: 0;
right: 0;
cursor: pointer;
}
.credit {
height: 75vh;
width: 22%;
display: block;
float: right;
clear: right;
}
#credit {
font-family: 'Indie Flower', cursive;
font-weight: bolder;
font-size: 4vh;
display: none;
position: relative;
top: 30vh;
}
#fullList {
font-family: 'Roboto Mono', monospace;
position: relative;
top: 5vh;
display: none;
}
#click {
font-family: 'Roboto Mono', monospace;
font-size: 2vh;
position: relative;
width: 90%;
margin: auto;
cursor: pointer;
color:aquamarine;
top: 25vh;
} | css/styles.css | form {
width: 90vh;
height: 90vh;
margin: auto;
border: solid px #5F7983;
background-color: #5D6FC1;
position: relative;
top: 0;
left: 0;
}
.form-div {
width: 90vh;
height: 90vh;
margin: auto;
}
.main-div {
width: 90vh;
height: 90vh;
position: relative;
margin: auto;
right: 0;
bottom: 0;
}
.left-div {
position: relative;
height: 70%;
width: 50%;
float: left;
}
.right-div {
position: relative;
height: 70%;
width: 50%;
float: right;
}
.bottom-div {
position: relative;
width: 100%;
height: 20vh;
margin: auto;
}
.robogers-group {
width: 100vh;
height: 5vh;
position: relative;
margin: auto;
}
label {
position: relative;
font-size: 5vh;
font-family: 'Orbitron', sans-serif;
font-weight: bolder;
height: 25%;
text-align: center;
display: block;
}
input[type=text] {
font-family: 'Montserrat', sans-serif;
position: relative;
margin: auto;
display: block;
font-size: 6vh;
width: 30%;
top: 15%;
background-color: cornflowerblue;
}
#output {
font-family: 'Montserrat', sans-serif;
display: block;
font-size: 5vh;
width: 80%;
height: 50%;
margin: auto;
text-align: center;
}
.button-group {
position: relative;
margin: auto;
top: 30%;
width: 75%;
height: 35%;
}
button {
position: relative;
margin: auto;
width: 100%;
height: 100%;
display: block;
opacity: 0;
cursor: pointer;
}
#cloud {
position: absolute;
width: 30vh;
display: block;
}
#robogers {
height: 50vh;
float: right;
position: absolute;
bottom: 0;
right: 0;
cursor: pointer;
}
.credit {
height: 75vh;
width: 22%;
display: block;
float: right;
clear: right;
}
#credit {
font-family: 'Indie Flower', cursive;
font-weight: bolder;
font-size: 4vh;
display: none;
position: relative;
top: 30vh;
}
#fullList {
font-family: 'Roboto Mono', monospace;
position: relative;
top: 5vh;
display: none;
}
#click {
font-family: 'Roboto Mono', monospace;
font-size: 2vh;
position: relative;
width: 90%;
margin: auto;
cursor: pointer;
color:aquamarine;
top: 25vh;
} | 0.513668 | 0.058132 |
body {
margin: 0;
padding: 0;
font-size: 15px;
font-family: "Roboto Condensed", sans-serif;
background-color: #fafafa;
}
.material-icons.orange600 {
color: #fb8c00;
}
a {
text-decoration: none;
cursor: pointer;
}
header {
width: 100%;
height: 60px;
}
header nav {
display: flex;
justify-content: flex-end;
}
nav ul {
height: auto;
display: flex;
list-style: none;
justify-content: center;
align-items: center;
margin-right: 60px;
}
nav ul li a {
margin: 10px;
color: #000000;
}
nav .nav-profile-img {
border-radius: 50%;
}
main {
margin-top: 30px;
text-align: center;
}
main .main-logo {
width: 530px;
margin: 0 auto;
}
main .main-logo img {
width: 300px;
}
main .main-input {
width: 600px;
margin: 0 auto;
margin-bottom: 35px;
}
main .main-input-container {
width: 525px;
border-radius: 100px;
border: 1px solid #dfe1e5;
display: flex;
justify-content: center;
align-items: center;
}
main .main-input-container:hover {
box-shadow: 0 1px 6px 0 #20212447;
border-color: #dfe1e500;
}
main .main-input input {
width: 450px;
height: 40px;
border: none;
outline: none;
background: transparent;
}
main .main-buttons {
width: 530px;
margin: 0 auto;
display: flex;
justify-content: center;
align-items: center;
}
main .main-buttons div {
margin: 0 10px;
}
main .main-buttons button {
height: 36px;
border: none;
border-radius: 5px;
font-size: 14px;
background-color: #f2f2f2;
color: #5f6368;
padding: 0 15px;
}
main .main-buttons button:hover {
border: 1px solid #c6c6c6;
box-shadow: 0 1px 1px #000001;
color: #222;
}
footer {
width: 100%;
height: 50px;
position: absolute;
bottom: 0;
display: flex;
justify-content: space-between;
background-color: #f2f2f2;
border-top: 1px solid #e4e4e4;
}
footer .footer-left {
display: flex;
justify-content: center;
align-items: center;
}
footer .footer-right {
display: flex;
justify-content: center;
align-items: center;
}
footer ul {
list-style: none;
margin: 0 20px;
}
footer ul li a {
margin: 10px;
color: #5f6368;
} | src/assets/css/styles.css | body {
margin: 0;
padding: 0;
font-size: 15px;
font-family: "Roboto Condensed", sans-serif;
background-color: #fafafa;
}
.material-icons.orange600 {
color: #fb8c00;
}
a {
text-decoration: none;
cursor: pointer;
}
header {
width: 100%;
height: 60px;
}
header nav {
display: flex;
justify-content: flex-end;
}
nav ul {
height: auto;
display: flex;
list-style: none;
justify-content: center;
align-items: center;
margin-right: 60px;
}
nav ul li a {
margin: 10px;
color: #000000;
}
nav .nav-profile-img {
border-radius: 50%;
}
main {
margin-top: 30px;
text-align: center;
}
main .main-logo {
width: 530px;
margin: 0 auto;
}
main .main-logo img {
width: 300px;
}
main .main-input {
width: 600px;
margin: 0 auto;
margin-bottom: 35px;
}
main .main-input-container {
width: 525px;
border-radius: 100px;
border: 1px solid #dfe1e5;
display: flex;
justify-content: center;
align-items: center;
}
main .main-input-container:hover {
box-shadow: 0 1px 6px 0 #20212447;
border-color: #dfe1e500;
}
main .main-input input {
width: 450px;
height: 40px;
border: none;
outline: none;
background: transparent;
}
main .main-buttons {
width: 530px;
margin: 0 auto;
display: flex;
justify-content: center;
align-items: center;
}
main .main-buttons div {
margin: 0 10px;
}
main .main-buttons button {
height: 36px;
border: none;
border-radius: 5px;
font-size: 14px;
background-color: #f2f2f2;
color: #5f6368;
padding: 0 15px;
}
main .main-buttons button:hover {
border: 1px solid #c6c6c6;
box-shadow: 0 1px 1px #000001;
color: #222;
}
footer {
width: 100%;
height: 50px;
position: absolute;
bottom: 0;
display: flex;
justify-content: space-between;
background-color: #f2f2f2;
border-top: 1px solid #e4e4e4;
}
footer .footer-left {
display: flex;
justify-content: center;
align-items: center;
}
footer .footer-right {
display: flex;
justify-content: center;
align-items: center;
}
footer ul {
list-style: none;
margin: 0 20px;
}
footer ul li a {
margin: 10px;
color: #5f6368;
} | 0.318909 | 0.047802 |
.root {
position: relative;
/*overflow: hidden;*/
}
.bg {
position: absolute;
right: 0;
bottom: 0;
top: 0;
z-index: 1;
overflow: hidden;
svg {
transform: translateY(-40%);
@media(--phone) {
display: none;
}
}
}
.section {
@media (--phone) {
padding-bottom: 30px;
}
}
.title {
position: relative;
z-index: 2;
margin-bottom: 52px;
}
.item {
position: relative;
cursor: pointer;
margin-bottom: 72px;
lost-column: 3/12;
margin-right: calc(100% * 1/12 + 30px)!important;
/*lost-utility: edit rgb(166, 0, 0);*/
&:nth-child(3),
&:nth-child(6) {
margin-right: 0!important;
}
&:nth-child(1),
&:nth-child(2),
&:nth-child(3) {
z-index: 12;
}
@media(--tablet) {
width: calc(100% * 5/12);
margin-right: 0!important;
&:nth-child(1) {
z-index: 13;
}
&:nth-child(3) {
z-index: 12;
}
&:nth-child(2) {
z-index: 12;
}
&:nth-child(4) {
z-index: 11;
}
&:nth-child(5) {
z-index: 10;
}
&:nth-child(6) {
z-index: 9;
}
}
@media(--phone) {
width: calc(100% * 12/12);
margin-bottom: 38px;
&:nth-child(1) {
z-index: 13;
}
&:nth-child(2) {
z-index: 12;
}
&:nth-child(3) {
z-index: 11;
}
&:nth-child(4) {
z-index: 10;
}
&:nth-child(5) {
z-index: 9;
}
&:nth-child(6) {
z-index: 8;
}
}
}
.list {
position: relative;
z-index: 2;
/*lost-offset: 1/12;*/
margin-left: calc(100% * 1/12 - 30px);
margin-right: calc(100% * 1/12 - 30px);
display: flex;
align-items: baseline;
flex-wrap: wrap;
justify-content: center;
@media(--tablet) {
align-items: center;
}
@media(--phone) {
margin-right: 0;
margin-left: 0;
}
}
.header {
position: relative;
display: flex;
align-items: baseline;
z-index: 11;
margin-bottom: 22px;
&:after {
margin-left: 30px;
height: 4px;
background-color: rgb(255, 215, 0);
width: 160px;
content: '';
@media(--phone) {
width: 100%;
}
}
}
.icon {
position: relative;
z-index: 12;
display: inline-block;
}
.sectionTitle {
position: relative;
z-index: 11;
white-space: nowrap;
@media(--phone) {
line-height: 31px;
font-size: 24px;
}
}
.drop {
padding-bottom: 40px;
padding-top: 147px;
padding-left: 60px;
padding-right: 30px;
transition: opacity .2s linear;
opacity: 0;
visibility: hidden;
position: absolute;
top: -22px;
right: -67px;
left: -34px;
z-index: 10;
box-shadow: 0 0 20px rgba(176, 186, 197, 0.4);
border-radius: 2px;
background-color: rgb(255, 255, 255);
@media(--phone) {
padding-top: 30px;
box-shadow: none;
padding-left: 25px;
padding-bottom: 30px;
position: static;
visibility: visible!important;
opacity: 1!important;
}
}
.dropItem {
position: relative;
color: rgb(57, 57, 57);
font-family: "Helvetica Neue", sans-serif;
font-size: 16px;
font-weight: 300;
line-height: 26px;
margin-bottom: 10px;
&:last-child {
margin-bottom: 0;
}
&:before {
position: absolute;
top: 10px;
right: calc(100% + 12px);
width: 16px;
height: 4px;
background-color: rgb(255, 215, 0);
content: '';
}
} | src/components/WhatFounding/WhatFounding.css | .root {
position: relative;
/*overflow: hidden;*/
}
.bg {
position: absolute;
right: 0;
bottom: 0;
top: 0;
z-index: 1;
overflow: hidden;
svg {
transform: translateY(-40%);
@media(--phone) {
display: none;
}
}
}
.section {
@media (--phone) {
padding-bottom: 30px;
}
}
.title {
position: relative;
z-index: 2;
margin-bottom: 52px;
}
.item {
position: relative;
cursor: pointer;
margin-bottom: 72px;
lost-column: 3/12;
margin-right: calc(100% * 1/12 + 30px)!important;
/*lost-utility: edit rgb(166, 0, 0);*/
&:nth-child(3),
&:nth-child(6) {
margin-right: 0!important;
}
&:nth-child(1),
&:nth-child(2),
&:nth-child(3) {
z-index: 12;
}
@media(--tablet) {
width: calc(100% * 5/12);
margin-right: 0!important;
&:nth-child(1) {
z-index: 13;
}
&:nth-child(3) {
z-index: 12;
}
&:nth-child(2) {
z-index: 12;
}
&:nth-child(4) {
z-index: 11;
}
&:nth-child(5) {
z-index: 10;
}
&:nth-child(6) {
z-index: 9;
}
}
@media(--phone) {
width: calc(100% * 12/12);
margin-bottom: 38px;
&:nth-child(1) {
z-index: 13;
}
&:nth-child(2) {
z-index: 12;
}
&:nth-child(3) {
z-index: 11;
}
&:nth-child(4) {
z-index: 10;
}
&:nth-child(5) {
z-index: 9;
}
&:nth-child(6) {
z-index: 8;
}
}
}
.list {
position: relative;
z-index: 2;
/*lost-offset: 1/12;*/
margin-left: calc(100% * 1/12 - 30px);
margin-right: calc(100% * 1/12 - 30px);
display: flex;
align-items: baseline;
flex-wrap: wrap;
justify-content: center;
@media(--tablet) {
align-items: center;
}
@media(--phone) {
margin-right: 0;
margin-left: 0;
}
}
.header {
position: relative;
display: flex;
align-items: baseline;
z-index: 11;
margin-bottom: 22px;
&:after {
margin-left: 30px;
height: 4px;
background-color: rgb(255, 215, 0);
width: 160px;
content: '';
@media(--phone) {
width: 100%;
}
}
}
.icon {
position: relative;
z-index: 12;
display: inline-block;
}
.sectionTitle {
position: relative;
z-index: 11;
white-space: nowrap;
@media(--phone) {
line-height: 31px;
font-size: 24px;
}
}
.drop {
padding-bottom: 40px;
padding-top: 147px;
padding-left: 60px;
padding-right: 30px;
transition: opacity .2s linear;
opacity: 0;
visibility: hidden;
position: absolute;
top: -22px;
right: -67px;
left: -34px;
z-index: 10;
box-shadow: 0 0 20px rgba(176, 186, 197, 0.4);
border-radius: 2px;
background-color: rgb(255, 255, 255);
@media(--phone) {
padding-top: 30px;
box-shadow: none;
padding-left: 25px;
padding-bottom: 30px;
position: static;
visibility: visible!important;
opacity: 1!important;
}
}
.dropItem {
position: relative;
color: rgb(57, 57, 57);
font-family: "Helvetica Neue", sans-serif;
font-size: 16px;
font-weight: 300;
line-height: 26px;
margin-bottom: 10px;
&:last-child {
margin-bottom: 0;
}
&:before {
position: absolute;
top: 10px;
right: calc(100% + 12px);
width: 16px;
height: 4px;
background-color: rgb(255, 215, 0);
content: '';
}
} | 0.652241 | 0.14247 |
body {background-color: #C63D0F;}
a, a:hover {color: #7e8f7c; text-decoration: none;}
.main { background-color: #3B3738; margin: 9% auto 0 auto; float: none; border-radius: 8px}
.quote {font-size: 3vh; font-weight: 100; font-family: 'Rozha One', serif; padding: 2%; margin: 0 0 5% 0; width: 85%; display: inline-block;}
.quote-body {display: none;}
.quote-text {clear: both; color: #FDF3E7; padding: 4% 0 0 0;}
.quote-text::before, .quote-text::after {font-family: serif; content: '"'; font-size: 6em; position: absolute; top:8%;}
.quote-text::before { left: 1%;}
.quote-text::after {right: 1%;}
.quote-author {float: right; font-weight: 400; color: #C63D0F; font-size: 4.5vh;}
.reload:hover, .reload:active, .reload {font-size: 5.5vh; float: right; color: #7e8f7c;}
.footer {color: #FDF3E7; margin: 5% 0 0 0; border-top: 4px dotted #7e8f7c; padding: 2% 0;}
.about { background-color: #3B3738; color: #7e8f7c; margin: 1% auto; float: none; padding: 2px 0; display: none;}
.twitter {
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #33bdef), color-stop(1, #019ad2));
background:-moz-linear-gradient(top, #33bdef 5%, #019ad2 100%);
background:-webkit-linear-gradient(top, #33bdef 5%, #019ad2 100%);
background:linear-gradient(to bottom, #33bdef 5%, #019ad2 100%);
background-color:#33bdef;
border-radius:6px;
border:1px solid #057fd0;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:Arial;
font-size:15px;
font-weight:bold;
padding:6px 24px;
text-decoration:none;
}
.twitter:hover {
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #019ad2), color-stop(1, #33bdef));
background:-moz-linear-gradient(top, #019ad2 5%, #33bdef 100%);
background:-webkit-linear-gradient(top, #019ad2 5%, #33bdef 100%);
background:linear-gradient(to bottom, #019ad2 5%, #33bdef 100%);
background-color:#019ad2;
text-decoration: none;
color: #ffffff;
}
.twitter:active {position:relative; top:1px; text-decoration: none; color: #ffffff}
.twitter:focus{ text-decoration: none; color: #ffffff}
.dot {display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 3px; background: #7e8f7c; animation: loading 1.3s linear infinite;}
.dot:nth-child(2) {animation-delay: -1.1s}
.dot:nth-child(3) {animation-delay: -0.9s}
@keyframes loading {
0%, 60%, 100% {transform: initial;}
30% {transform: translateY(-15px);}
} | 3 random quote machine/css/style.css | body {background-color: #C63D0F;}
a, a:hover {color: #7e8f7c; text-decoration: none;}
.main { background-color: #3B3738; margin: 9% auto 0 auto; float: none; border-radius: 8px}
.quote {font-size: 3vh; font-weight: 100; font-family: 'Rozha One', serif; padding: 2%; margin: 0 0 5% 0; width: 85%; display: inline-block;}
.quote-body {display: none;}
.quote-text {clear: both; color: #FDF3E7; padding: 4% 0 0 0;}
.quote-text::before, .quote-text::after {font-family: serif; content: '"'; font-size: 6em; position: absolute; top:8%;}
.quote-text::before { left: 1%;}
.quote-text::after {right: 1%;}
.quote-author {float: right; font-weight: 400; color: #C63D0F; font-size: 4.5vh;}
.reload:hover, .reload:active, .reload {font-size: 5.5vh; float: right; color: #7e8f7c;}
.footer {color: #FDF3E7; margin: 5% 0 0 0; border-top: 4px dotted #7e8f7c; padding: 2% 0;}
.about { background-color: #3B3738; color: #7e8f7c; margin: 1% auto; float: none; padding: 2px 0; display: none;}
.twitter {
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #33bdef), color-stop(1, #019ad2));
background:-moz-linear-gradient(top, #33bdef 5%, #019ad2 100%);
background:-webkit-linear-gradient(top, #33bdef 5%, #019ad2 100%);
background:linear-gradient(to bottom, #33bdef 5%, #019ad2 100%);
background-color:#33bdef;
border-radius:6px;
border:1px solid #057fd0;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:Arial;
font-size:15px;
font-weight:bold;
padding:6px 24px;
text-decoration:none;
}
.twitter:hover {
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #019ad2), color-stop(1, #33bdef));
background:-moz-linear-gradient(top, #019ad2 5%, #33bdef 100%);
background:-webkit-linear-gradient(top, #019ad2 5%, #33bdef 100%);
background:linear-gradient(to bottom, #019ad2 5%, #33bdef 100%);
background-color:#019ad2;
text-decoration: none;
color: #ffffff;
}
.twitter:active {position:relative; top:1px; text-decoration: none; color: #ffffff}
.twitter:focus{ text-decoration: none; color: #ffffff}
.dot {display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 3px; background: #7e8f7c; animation: loading 1.3s linear infinite;}
.dot:nth-child(2) {animation-delay: -1.1s}
.dot:nth-child(3) {animation-delay: -0.9s}
@keyframes loading {
0%, 60%, 100% {transform: initial;}
30% {transform: translateY(-15px);}
} | 0.448909 | 0.192122 |
.nav-logo {
text-align:right;
list-style: none;
margin-left: 3%;
margin-top: -25%;
}
.navbar{
margin-top: 5%;
color: #707070;
font-family:'Poppins', sans-serif;
text-align:left;
font-size: 14pt;
list-style: none;
}
.nav-links{
margin-right: 3%;
color: #707070;
font-family:'Poppins', sans-serif;
font-weight: lighter;
text-align:left;
list-style: none;
}
a {
color: #707070;
}
a:hover {
color:#F7BC54;
}
.mobile-container{
display: none;
}
/* About Section */
header{
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-areas:
"aboutText""Img-container";
margin-top: -20%;
}
#aboutText{
padding:60px;
margin-top: -5%;
}
H1{
font-family:'Poppins', sans-serif;
color: #4D4D4D;
text-align:right;
font-size: 7vmin;
padding-bottom: 10px;
}
.descrip, .descrip2, .descrip3{
font-family: 'Poppins', sans-serif;
padding-left: 40px;
word-break: keep-all;
color: #8C8B8B;
font-weight: lighter;
line-height: 23pt;
font-size: 3.2vmin;
text-align: right;
}
h2{
font-family:'Poppins', sans-serif;
color: #4D4D4D;
font-size: 3vmin;
text-align:right;
}
.aboutPic{
width: 60%;
}
/* Additional Info Section */
.container{
display:grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr;
grid-template-areas:
"content1" "content2"
"content3" "content4";
padding: 80px;
}
h5{
color:#4D4D4D;
font-size: 3vmin;
}
.about1, .about2, .about4{
color: #8C8B8B;
}
#content1{
grid-area: 'content1';
font-family: 'Poppins', sans-serif;
padding:60px;
word-break: keep-all;
word-spacing: 1.5pt;
}
.about1{
line-height: 21pt;
font-size: 2.3vmin;
}
#content2{
grid-area: 'content2';
font-family: 'Poppins', sans-serif;
padding:60px;
}
/* footer css */
footer{
font-family: 'Poppins', sans-serif;
color: #707070;
background-color: light grey;
height: 90px;
padding: 90px;
font-size: 1em;
clear: both;
position: relative;
}
.top-button{
float: right;
margin-bottom: 5%;
}
.scrollToTopBtn {
background-color:transparent;
border: none;
color: #707070;
cursor: pointer;
font-size: 25pt;
line-height: 48px;
width: 50px;
text-decoration: none;
/* place it at the bottom right corner */
position: fixed;
bottom: 55px;
right: 100px;
/* keep it at the top of everything else */
z-index: 100;
/* hide with opacity */
opacity: 0;
/* also add a translate effect */
transform: translateY(100px);
/* and a transition */
transition: all 0.5s ease;
}
.showBtn {
opacity: 1;
transform: translateY(0);
} | about.css |
.nav-logo {
text-align:right;
list-style: none;
margin-left: 3%;
margin-top: -25%;
}
.navbar{
margin-top: 5%;
color: #707070;
font-family:'Poppins', sans-serif;
text-align:left;
font-size: 14pt;
list-style: none;
}
.nav-links{
margin-right: 3%;
color: #707070;
font-family:'Poppins', sans-serif;
font-weight: lighter;
text-align:left;
list-style: none;
}
a {
color: #707070;
}
a:hover {
color:#F7BC54;
}
.mobile-container{
display: none;
}
/* About Section */
header{
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-areas:
"aboutText""Img-container";
margin-top: -20%;
}
#aboutText{
padding:60px;
margin-top: -5%;
}
H1{
font-family:'Poppins', sans-serif;
color: #4D4D4D;
text-align:right;
font-size: 7vmin;
padding-bottom: 10px;
}
.descrip, .descrip2, .descrip3{
font-family: 'Poppins', sans-serif;
padding-left: 40px;
word-break: keep-all;
color: #8C8B8B;
font-weight: lighter;
line-height: 23pt;
font-size: 3.2vmin;
text-align: right;
}
h2{
font-family:'Poppins', sans-serif;
color: #4D4D4D;
font-size: 3vmin;
text-align:right;
}
.aboutPic{
width: 60%;
}
/* Additional Info Section */
.container{
display:grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr;
grid-template-areas:
"content1" "content2"
"content3" "content4";
padding: 80px;
}
h5{
color:#4D4D4D;
font-size: 3vmin;
}
.about1, .about2, .about4{
color: #8C8B8B;
}
#content1{
grid-area: 'content1';
font-family: 'Poppins', sans-serif;
padding:60px;
word-break: keep-all;
word-spacing: 1.5pt;
}
.about1{
line-height: 21pt;
font-size: 2.3vmin;
}
#content2{
grid-area: 'content2';
font-family: 'Poppins', sans-serif;
padding:60px;
}
/* footer css */
footer{
font-family: 'Poppins', sans-serif;
color: #707070;
background-color: light grey;
height: 90px;
padding: 90px;
font-size: 1em;
clear: both;
position: relative;
}
.top-button{
float: right;
margin-bottom: 5%;
}
.scrollToTopBtn {
background-color:transparent;
border: none;
color: #707070;
cursor: pointer;
font-size: 25pt;
line-height: 48px;
width: 50px;
text-decoration: none;
/* place it at the bottom right corner */
position: fixed;
bottom: 55px;
right: 100px;
/* keep it at the top of everything else */
z-index: 100;
/* hide with opacity */
opacity: 0;
/* also add a translate effect */
transform: translateY(100px);
/* and a transition */
transition: all 0.5s ease;
}
.showBtn {
opacity: 1;
transform: translateY(0);
} | 0.364551 | 0.097476 |
body
{
background-color: #e3e9f1;
}
form
{
margin: 0px 0px 0px 0px ;
padding: 0px 0px 0px 0px ;
}
a, :link, :active, :visited {
color: #000000;
text-decoration: none;
}
:hover {
color: #0000fa;
}
a img {
border-width: 0px;
border-style: none;
}
frame
{
background-color: #e3e9f1;
border-color: #000000;
border-collapse: collapse;
}
frameset
{
background-color: #e3e9f1;
border-color: #000000;
border-collapse: collapse;
}
.progress_hollow
{
background-color: transparent;
}
.progress_filled
{
background-color: #8fa7c7;
}
.progress_bar
{
background-color: #F0F7FF;
border-width: 1px;
border-color: #000000;
border-style: solid;
}
.Frame_none
{
border-width: 0px;
border-style: none;
}
.Frame_t
{
border-right: 0px none;
border-top: 1px solid;
border-left: 0px none;
border-bottom: 0px none;
}
.Frame_tr
{
border-right: 1px solid;
border-top: 1px solid;
border-left: 0px none;
border-bottom: 0px none;
}
.Frame_tl
{
border-right: 0px none;
border-top: 1px solid;
border-left: 1px solid;
border-bottom: 0px none;
}
.Frame_r
{
border-right: 1px solid;
border-top: 0px none;
border-left: 0px none;
border-bottom: 0px none;
}
.Frame_l
{
border-right: 0px none;
border-top: 0px none;
border-left: 1px solid;
border-bottom: 0px none;
}
.Frame_rl
{
border-right: 1px solid;
border-top: 0px none;
border-left: 1px solid;
border-bottom: 0px none;
}
.Frame_b
{
border-right: 0px none;
border-top: 0px none;
border-left: 0px none;
border-bottom: 1px solid;
}
.Frame_br
{
border-right: 1px solid;
border-top: 0px none;
border-left: 0px none;
border-bottom: 1px solid;
}
.Frame_bl
{
border-right: 0px none;
border-top: 0px none;
border-left: 1px solid;
border-bottom: 1px solid;
}
.Frame_tb
{
border-right: 0px none;
border-top: 1px solid;
border-left: 0px none;
border-bottom: 1px solid;
}
.Frame_all
{
border-right: 1px solid;
border-top: 1px solid;
border-left: 1px solid;
border-bottom: 1px solid;
}
body.FileArea
{
background-color: #ffffff;
}
body, td, input, select
{
font-size: 11px;
font-family: 'Microsoft Sans Serif' , Arial, Helvetica, Verdana;
}
.ActualFolder
{
font-weight: bold;
font-size: 14px;
}
.PopupButtons
{
border-top: #8fa7c7 1px solid;
background-color: #ffffff;
padding: 7px 10px 7px 10px;
}
.Button, button
{
border-right: #737357 1px solid;
border-top: #737357 1px solid;
border-left: #737357 1px solid;
color: #ffffff;
border-bottom: #737357 1px solid;
background-color: #8fa7c7;
}
.FolderListCurrentFolder img
{
background-image: url(images/FolderOpened.gif);
}
.FolderListFolder img
{
background-image: url(images/Folder.gif);
} | tinymcpuk/filemanager/browser.css | body
{
background-color: #e3e9f1;
}
form
{
margin: 0px 0px 0px 0px ;
padding: 0px 0px 0px 0px ;
}
a, :link, :active, :visited {
color: #000000;
text-decoration: none;
}
:hover {
color: #0000fa;
}
a img {
border-width: 0px;
border-style: none;
}
frame
{
background-color: #e3e9f1;
border-color: #000000;
border-collapse: collapse;
}
frameset
{
background-color: #e3e9f1;
border-color: #000000;
border-collapse: collapse;
}
.progress_hollow
{
background-color: transparent;
}
.progress_filled
{
background-color: #8fa7c7;
}
.progress_bar
{
background-color: #F0F7FF;
border-width: 1px;
border-color: #000000;
border-style: solid;
}
.Frame_none
{
border-width: 0px;
border-style: none;
}
.Frame_t
{
border-right: 0px none;
border-top: 1px solid;
border-left: 0px none;
border-bottom: 0px none;
}
.Frame_tr
{
border-right: 1px solid;
border-top: 1px solid;
border-left: 0px none;
border-bottom: 0px none;
}
.Frame_tl
{
border-right: 0px none;
border-top: 1px solid;
border-left: 1px solid;
border-bottom: 0px none;
}
.Frame_r
{
border-right: 1px solid;
border-top: 0px none;
border-left: 0px none;
border-bottom: 0px none;
}
.Frame_l
{
border-right: 0px none;
border-top: 0px none;
border-left: 1px solid;
border-bottom: 0px none;
}
.Frame_rl
{
border-right: 1px solid;
border-top: 0px none;
border-left: 1px solid;
border-bottom: 0px none;
}
.Frame_b
{
border-right: 0px none;
border-top: 0px none;
border-left: 0px none;
border-bottom: 1px solid;
}
.Frame_br
{
border-right: 1px solid;
border-top: 0px none;
border-left: 0px none;
border-bottom: 1px solid;
}
.Frame_bl
{
border-right: 0px none;
border-top: 0px none;
border-left: 1px solid;
border-bottom: 1px solid;
}
.Frame_tb
{
border-right: 0px none;
border-top: 1px solid;
border-left: 0px none;
border-bottom: 1px solid;
}
.Frame_all
{
border-right: 1px solid;
border-top: 1px solid;
border-left: 1px solid;
border-bottom: 1px solid;
}
body.FileArea
{
background-color: #ffffff;
}
body, td, input, select
{
font-size: 11px;
font-family: 'Microsoft Sans Serif' , Arial, Helvetica, Verdana;
}
.ActualFolder
{
font-weight: bold;
font-size: 14px;
}
.PopupButtons
{
border-top: #8fa7c7 1px solid;
background-color: #ffffff;
padding: 7px 10px 7px 10px;
}
.Button, button
{
border-right: #737357 1px solid;
border-top: #737357 1px solid;
border-left: #737357 1px solid;
color: #ffffff;
border-bottom: #737357 1px solid;
background-color: #8fa7c7;
}
.FolderListCurrentFolder img
{
background-image: url(images/FolderOpened.gif);
}
.FolderListFolder img
{
background-image: url(images/Folder.gif);
} | 0.319015 | 0.087955 |
@charset "UTF-8";
@font-face {
font-family: "Yu Gothic";
src: local("Yu Gothic Medium");
font-weight: 400;
}
html {
height: 100%;
}
body {
padding: 0;
margin: 0;
height: 100%;
font-family: "Yu Gothic";
background-color: #222;
color: #eee;
font-size: 14px;
cursor: default;
}
section {
display: block;
box-sizing: border-box;
height: 100%;
padding: 52px 10px 10px 10px;
}
h2, h3 {
margin: 0;
font-size: 14px;
}
#menu {
position: fixed;
background-color: #222;
width: 100%;
}
#menu ul {
list-style-type: none;
margin: 0;
padding: 10px;
}
#menu li {
display: inline-block;
}
#menu li a {
display: inline-block;
font-weight: bold;
color: #111;
text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.4), 0 1px 1px rgba(255, 255, 255, 0.5);
letter-spacing: 0;
border: none;
box-shadow: inset 0 -1px 1px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.4);
border-radius: 6px;
text-decoration: none;
padding: 5px 10px;
background: linear-gradient(#fff, #ababab);
cursor: pointer;
}
#menu li a:hover {
background: linear-gradient(to bottom, #fffefe, #fef1f1);
}
#menu .selected a {
cursor: default;
background: linear-gradient(#bababa, #474747) !important;
}
#install {
display: flex;
flex-direction: column;
}
#install .row {
box-sizing: border-box;
height: 50%;
text-align: center;
display: flex;
align-self: stretch;
flex-direction: row;
}
#install .row .col {
margin: 5px;
flex-basis: 50%;
align-self: stretch;
}
#install .dropArea {
display: inline-block;
box-sizing: border-box;
width: 100%;
height: 100%;
cursor: pointer;
}
#install .dropArea,
.line-text-box {
border-radius: 5px;
box-shadow: 1px 1px 1px rgba(0,0,0,0.8) inset, -1px -1px 0px rgba(255,255,255,0.2) inset;
padding: 5px 10px;
}
#install .dropArea:hover,
#install .dragOver,
#sameNameArea:hover,
.button:hover {
background-color: #333;
}
#sameNameArea,
.button {
border-radius: 5px;
box-shadow: 1px 1px 1px rgba(255,255,255,0.2) inset, -1px -1px 0px rgba(0,0,0,0.8) inset;
}
.dropArea h3 {
box-sizing: border-box;
width: 100%;
height: 100%;
}
#setting > div {
padding-left: 10px;
}
#setting > div > h2 {
position: relative;
left: -10px;
}
#saiDirPathArea {
display: flex;
flex-direction: row;
justify-content: space-between;
margin-bottom: 10px;
}
#saiDirPath {
order: 1;
flex: 1;
margin: 0;
}
#saiDirSelect {
order: 2;
margin: 0;
margin-left: 5px;
width: 28px;
}
#sameName::-webkit-scrollbar {
display: none;
}
#sameNameArea {
position: relative;
display: inline-block;
border-radius: 5px;
font-size: 1em;
overflow: hidden;
z-index: 0;
}
#sameNameArea::after {
content: "";
position: absolute;
display: block;
width: 0;
height: 0;
top: 50%;
right: .6em;
margin-top: -.2em;
border-width: .45em .3em;
border-style: solid;
border-color: #eee transparent transparent;
z-index: -1;
}
#sameName {
-webkit-appearance: none;
padding: 5px 25px 5px 10px;
color: #eee;
background-color: transparent;
border: none;
text-shadow: 1px 1px 2px #000;
outline: none;
}
#sameName option {
background: #333;
color: #eee;
text-shadow: none;
}
#about {
text-align: center;
}
#about h3 {
margin: 1.33em;
}
#about a {
color: #eee;
}
.button {
cursor: pointer;
padding: 5px 10px;
}
.hide {
display: none !important;
}
.enable-select {
cursor: text;
} | src/main.css | @charset "UTF-8";
@font-face {
font-family: "Yu Gothic";
src: local("Yu Gothic Medium");
font-weight: 400;
}
html {
height: 100%;
}
body {
padding: 0;
margin: 0;
height: 100%;
font-family: "Yu Gothic";
background-color: #222;
color: #eee;
font-size: 14px;
cursor: default;
}
section {
display: block;
box-sizing: border-box;
height: 100%;
padding: 52px 10px 10px 10px;
}
h2, h3 {
margin: 0;
font-size: 14px;
}
#menu {
position: fixed;
background-color: #222;
width: 100%;
}
#menu ul {
list-style-type: none;
margin: 0;
padding: 10px;
}
#menu li {
display: inline-block;
}
#menu li a {
display: inline-block;
font-weight: bold;
color: #111;
text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.4), 0 1px 1px rgba(255, 255, 255, 0.5);
letter-spacing: 0;
border: none;
box-shadow: inset 0 -1px 1px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.4);
border-radius: 6px;
text-decoration: none;
padding: 5px 10px;
background: linear-gradient(#fff, #ababab);
cursor: pointer;
}
#menu li a:hover {
background: linear-gradient(to bottom, #fffefe, #fef1f1);
}
#menu .selected a {
cursor: default;
background: linear-gradient(#bababa, #474747) !important;
}
#install {
display: flex;
flex-direction: column;
}
#install .row {
box-sizing: border-box;
height: 50%;
text-align: center;
display: flex;
align-self: stretch;
flex-direction: row;
}
#install .row .col {
margin: 5px;
flex-basis: 50%;
align-self: stretch;
}
#install .dropArea {
display: inline-block;
box-sizing: border-box;
width: 100%;
height: 100%;
cursor: pointer;
}
#install .dropArea,
.line-text-box {
border-radius: 5px;
box-shadow: 1px 1px 1px rgba(0,0,0,0.8) inset, -1px -1px 0px rgba(255,255,255,0.2) inset;
padding: 5px 10px;
}
#install .dropArea:hover,
#install .dragOver,
#sameNameArea:hover,
.button:hover {
background-color: #333;
}
#sameNameArea,
.button {
border-radius: 5px;
box-shadow: 1px 1px 1px rgba(255,255,255,0.2) inset, -1px -1px 0px rgba(0,0,0,0.8) inset;
}
.dropArea h3 {
box-sizing: border-box;
width: 100%;
height: 100%;
}
#setting > div {
padding-left: 10px;
}
#setting > div > h2 {
position: relative;
left: -10px;
}
#saiDirPathArea {
display: flex;
flex-direction: row;
justify-content: space-between;
margin-bottom: 10px;
}
#saiDirPath {
order: 1;
flex: 1;
margin: 0;
}
#saiDirSelect {
order: 2;
margin: 0;
margin-left: 5px;
width: 28px;
}
#sameName::-webkit-scrollbar {
display: none;
}
#sameNameArea {
position: relative;
display: inline-block;
border-radius: 5px;
font-size: 1em;
overflow: hidden;
z-index: 0;
}
#sameNameArea::after {
content: "";
position: absolute;
display: block;
width: 0;
height: 0;
top: 50%;
right: .6em;
margin-top: -.2em;
border-width: .45em .3em;
border-style: solid;
border-color: #eee transparent transparent;
z-index: -1;
}
#sameName {
-webkit-appearance: none;
padding: 5px 25px 5px 10px;
color: #eee;
background-color: transparent;
border: none;
text-shadow: 1px 1px 2px #000;
outline: none;
}
#sameName option {
background: #333;
color: #eee;
text-shadow: none;
}
#about {
text-align: center;
}
#about h3 {
margin: 1.33em;
}
#about a {
color: #eee;
}
.button {
cursor: pointer;
padding: 5px 10px;
}
.hide {
display: none !important;
}
.enable-select {
cursor: text;
} | 0.272896 | 0.073696 |
table, td {
padding: 0;
margin: 0;
border-spacing: 0;
font-family: Arial, "Times New Roman", Verdana;
font-size: 13px;
color: #444;
}
body {
background-color: #bdbdbd;
margin: 5px;
color: #444;
text-align: center;
font-size: 13px;
font-family: Arial, "Times New Roman", Verdana;
width: 0;
}
#container {
position: absolute;
min-height: 96%;
min-width: 96%;
}
#content {
margin-bottom: 2em;
}
.game {
float: left;
padding: 6px;
margin: 10px;
background-color: #bdbdbd;
border: 2px solid;
border-color:#fff #7b7b7b #7b7b7b #fff;
cursor: default;
}
.gwt-MenuBar-horizontal {
border: 2px solid;
border-color: #7b7b7b #fff #fff #7b7b7b;
}
.gwt-MenuBar-vertical {
background-color: #bdbdbd;
border: 1px solid;
border-color: #ddd #7b7b7b #7b7b7b #ddd;
text-align: left;
}
.gwt-MenuItem {
color: #444;
text-shadow: 0px 1px 0px #ddd;
padding: 1px 4px 1px 4px;
cursor: default;
line-height: 1.3em;
}
.gwt-MenuItem-selected {
background-color: #cfcfcf;
}
.gwt-MenuBar-vertical .gwt-MenuItem {
padding-left: 15px;
}
#Beginner .Beginner, #Intermediate .Intermediate, #Expert .Expert, #Custom .Custom {
position: absolute;
left: 3px;
margin-top: 3px;
width: 10px;
height: 10px;
background: url('minesweeper.png') no-repeat;
background-position: 0px -155px;
}
.custom-dialog, .about{
background-color: #bdbdbd;
border: 2px solid;
border-color: #ddd #7b7b7b #7b7b7b #ddd;
}
.custom-dialog .Caption {
background-color: #cfcfcf;
cursor: default;
padding: 4px 10px;
margin: 1px;
font-weight: bold;
font-size: 14px;
text-align: left;
}
.custom-dialog td {
text-align: right;
}
.custom-dialog .contents {
padding: 20px 40px;
}
.custom-dialog .contents table {
width: 100%;
}
.custom-dialog .gwt-Label {
text-align: left;
}
.custom-dialog .gwt-TextBox {
width: 30px;
}
.about .contents {
padding: 20px;
}
a:link {color:#00f;}
a:visited {color:#00f;}
a:hover {color:#00f;}
a:active {color:#00f;}
.about .contents .comments {
color: #555;
}
.about .contents .pyjamas {
}
.score-board {
width: 100%;
border: 2px solid;
border-color: #7b7b7b #fff #fff #7b7b7b;
margin: 6px 0;
}
.grid-panel {
display: table;
margin: auto;
border: 2px solid;
border-color: #7b7b7b #fff #fff #7b7b7b;
}
.grid {
border-collapse: collapse;
background-color: #bdbdbd;
}
.grid td {
border: 1px solid #7b7b7b;
width: 16px;
height: 16px;
}
.blank {
background: url('minesweeper.png') no-repeat;
background-position: 0px 0px;
}
.opened {
}
.blank.pressed {
background-position: 0px 1px;
}
.number {
position: absolute;
margin-top: -12px;
margin-left: 3px;
font-family: "Georgia";
font-size: 18px;
font-weight: bold;
cursor: default;
}
.bombdeath {
background: url('minesweeper.png') no-repeat;
background-position: 0px -26px;
}
.bombflagged {
background: url('minesweeper.png') no-repeat;
background-position: 0px -52px;
}
.bombflagged.pressed {
background-position: 0px -51px;
}
.bombmisflagged {
background: url('minesweeper.png') no-repeat;
background-position: 0px -77px;
}
.bombquestion {
background: url('minesweeper.png') no-repeat;
background-position: 0px -103px;
}
.bombquestion.pressed {
background-position: 0px -102px;
}
.bombrevealed {
background: url('minesweeper.png') no-repeat;
background-position: 0px -129px;
}
.digit {
display: inline;
font-size: 20px;
padding: 0 2px;
text-align: right;
color: #f00;
font-weight: bold;
background-color: #000;
cursor: default;
}
.counter {
}
.counter-blue {
color: #00ffff;
}
.timer {
float: right;
}
.faceclock, .facedead, .faceooh, .facesmile, .facewin {
width: 26px;
height: 26px;
margin: auto;
outline: none;
}
.faceclock {
background: url('minesweeper.png') no-repeat;
background-position: 0px -175px;
}
.facedead {
background: url('minesweeper.png') no-repeat;
background-position: 0px -211px;
}
.faceooh {
background: url('minesweeper.png') no-repeat;
background-position: 0px -247px;
}
.facesmile {
background: url('minesweeper.png') no-repeat;
background-position: 0px -319px;
}
.facewin {
background: url('minesweeper.png') no-repeat;
background-position: 0px -355px;
}
.debug {
font-size: 2px;
}
.scores {
margin-left: 600px;
display: table;
}
.scores p {
font-style: italic;
margin: 5px 0 10px;
padding: 0;
}
.scores_table {
font-style: italic;
color: #666;
}
.scores_table th {
}
.scores_table td {
vertical-align: top;
}
.individual_table {
margin: 5px 10px;
color: #333;
border: 1px solid;
border-color: #ddd #7b7b7b #7b7b7b #ddd;
font-style: italic;
}
.individual_table th, .individual_table td {
padding: 3px 8px;
}
.individual_table .name {
text-align: left;
}
.individual_table .time {
}
.individual_table th {
font-weight: normal;
background-color: #cfcfcf;
}
.individual_table td {
background-color: #c2c2c2;
border-top: 1px solid #808080;
}
.log {
clear: both;
display: table;
margin: auto;
background: #aaa;
}
#footer {
padding: 3px 10px;
color: #777;
text-shadow: 0px 1px 0px #eee;
font-size: 12px;
border-top: 2px double #aaa;
position: absolute;
bottom: 0em;
} | examples/minesweeper/public/minesweeper.css | table, td {
padding: 0;
margin: 0;
border-spacing: 0;
font-family: Arial, "Times New Roman", Verdana;
font-size: 13px;
color: #444;
}
body {
background-color: #bdbdbd;
margin: 5px;
color: #444;
text-align: center;
font-size: 13px;
font-family: Arial, "Times New Roman", Verdana;
width: 0;
}
#container {
position: absolute;
min-height: 96%;
min-width: 96%;
}
#content {
margin-bottom: 2em;
}
.game {
float: left;
padding: 6px;
margin: 10px;
background-color: #bdbdbd;
border: 2px solid;
border-color:#fff #7b7b7b #7b7b7b #fff;
cursor: default;
}
.gwt-MenuBar-horizontal {
border: 2px solid;
border-color: #7b7b7b #fff #fff #7b7b7b;
}
.gwt-MenuBar-vertical {
background-color: #bdbdbd;
border: 1px solid;
border-color: #ddd #7b7b7b #7b7b7b #ddd;
text-align: left;
}
.gwt-MenuItem {
color: #444;
text-shadow: 0px 1px 0px #ddd;
padding: 1px 4px 1px 4px;
cursor: default;
line-height: 1.3em;
}
.gwt-MenuItem-selected {
background-color: #cfcfcf;
}
.gwt-MenuBar-vertical .gwt-MenuItem {
padding-left: 15px;
}
#Beginner .Beginner, #Intermediate .Intermediate, #Expert .Expert, #Custom .Custom {
position: absolute;
left: 3px;
margin-top: 3px;
width: 10px;
height: 10px;
background: url('minesweeper.png') no-repeat;
background-position: 0px -155px;
}
.custom-dialog, .about{
background-color: #bdbdbd;
border: 2px solid;
border-color: #ddd #7b7b7b #7b7b7b #ddd;
}
.custom-dialog .Caption {
background-color: #cfcfcf;
cursor: default;
padding: 4px 10px;
margin: 1px;
font-weight: bold;
font-size: 14px;
text-align: left;
}
.custom-dialog td {
text-align: right;
}
.custom-dialog .contents {
padding: 20px 40px;
}
.custom-dialog .contents table {
width: 100%;
}
.custom-dialog .gwt-Label {
text-align: left;
}
.custom-dialog .gwt-TextBox {
width: 30px;
}
.about .contents {
padding: 20px;
}
a:link {color:#00f;}
a:visited {color:#00f;}
a:hover {color:#00f;}
a:active {color:#00f;}
.about .contents .comments {
color: #555;
}
.about .contents .pyjamas {
}
.score-board {
width: 100%;
border: 2px solid;
border-color: #7b7b7b #fff #fff #7b7b7b;
margin: 6px 0;
}
.grid-panel {
display: table;
margin: auto;
border: 2px solid;
border-color: #7b7b7b #fff #fff #7b7b7b;
}
.grid {
border-collapse: collapse;
background-color: #bdbdbd;
}
.grid td {
border: 1px solid #7b7b7b;
width: 16px;
height: 16px;
}
.blank {
background: url('minesweeper.png') no-repeat;
background-position: 0px 0px;
}
.opened {
}
.blank.pressed {
background-position: 0px 1px;
}
.number {
position: absolute;
margin-top: -12px;
margin-left: 3px;
font-family: "Georgia";
font-size: 18px;
font-weight: bold;
cursor: default;
}
.bombdeath {
background: url('minesweeper.png') no-repeat;
background-position: 0px -26px;
}
.bombflagged {
background: url('minesweeper.png') no-repeat;
background-position: 0px -52px;
}
.bombflagged.pressed {
background-position: 0px -51px;
}
.bombmisflagged {
background: url('minesweeper.png') no-repeat;
background-position: 0px -77px;
}
.bombquestion {
background: url('minesweeper.png') no-repeat;
background-position: 0px -103px;
}
.bombquestion.pressed {
background-position: 0px -102px;
}
.bombrevealed {
background: url('minesweeper.png') no-repeat;
background-position: 0px -129px;
}
.digit {
display: inline;
font-size: 20px;
padding: 0 2px;
text-align: right;
color: #f00;
font-weight: bold;
background-color: #000;
cursor: default;
}
.counter {
}
.counter-blue {
color: #00ffff;
}
.timer {
float: right;
}
.faceclock, .facedead, .faceooh, .facesmile, .facewin {
width: 26px;
height: 26px;
margin: auto;
outline: none;
}
.faceclock {
background: url('minesweeper.png') no-repeat;
background-position: 0px -175px;
}
.facedead {
background: url('minesweeper.png') no-repeat;
background-position: 0px -211px;
}
.faceooh {
background: url('minesweeper.png') no-repeat;
background-position: 0px -247px;
}
.facesmile {
background: url('minesweeper.png') no-repeat;
background-position: 0px -319px;
}
.facewin {
background: url('minesweeper.png') no-repeat;
background-position: 0px -355px;
}
.debug {
font-size: 2px;
}
.scores {
margin-left: 600px;
display: table;
}
.scores p {
font-style: italic;
margin: 5px 0 10px;
padding: 0;
}
.scores_table {
font-style: italic;
color: #666;
}
.scores_table th {
}
.scores_table td {
vertical-align: top;
}
.individual_table {
margin: 5px 10px;
color: #333;
border: 1px solid;
border-color: #ddd #7b7b7b #7b7b7b #ddd;
font-style: italic;
}
.individual_table th, .individual_table td {
padding: 3px 8px;
}
.individual_table .name {
text-align: left;
}
.individual_table .time {
}
.individual_table th {
font-weight: normal;
background-color: #cfcfcf;
}
.individual_table td {
background-color: #c2c2c2;
border-top: 1px solid #808080;
}
.log {
clear: both;
display: table;
margin: auto;
background: #aaa;
}
#footer {
padding: 3px 10px;
color: #777;
text-shadow: 0px 1px 0px #eee;
font-size: 12px;
border-top: 2px double #aaa;
position: absolute;
bottom: 0em;
} | 0.345436 | 0.127653 |
.text-black, .text-hover-black:hover {
color: #000 !important;
}
.text-white, .text-hover-white:hover {
color: #fff !important;
}
.text-red, .text-hover-red:hover {
color: #f44336 !important;
}
.text-pink, .text-hover-pink:hover {
color: #e91e63 !important;
}
.text-purple, .text-hover-purple:hover {
color: #9c27b0 !important;
}
.text-deep-purple, .text-hover-deep-purple:hover {
color: #673ab7 !important;
}
.text-indigo, .text-hover-indigo:hover {
color: #3f51b5 !important;
}
.text-blue, .text-hover-blue:hover {
color: #2196f3 !important;
}
.text-light-blue, .text-hover-light-blue:hover {
color: #03a9f4 !important;
}
.text-cyan, .text-hover-cyan:hover {
color: #00bcd4 !important;
}
.text-teal, .text-hover-teal:hover {
color: #009688 !important;
}
.text-green, .text-hover-green:hover {
color: #4caf50 !important;
}
.text-light-green, .text-hover-light-green:hover {
color: #8bc34a !important;
}
.text-lime, .text-hover-lime:hover {
color: #cddc39 !important;
}
.text-yellow, .text-hover-yellow:hover {
color: #ffeb3b !important;
}
.text-amber, .text-hover-amber:hover {
color: #ffc107 !important;
}
.text-orange, .text-hover-orange:hover {
color: #ff9800 !important;
}
.text-deep-orange, .text-hover-deep-orange:hover {
color: #ff5722 !important;
}
.text-brown, .text-hover-brown:hover {
color: #795548 !important;
}
.text-grey-light, .text-hover-grey-light:hover {
color: #e0e0e0 !important;
}
.text-grey, .text-hover-grey:hover {
color: #bdbdbd !important;
}
.text-grey-2, .text-hover-grey-2:hover {
color: #9e9e9e !important;
}
.text-grey-3, .text-hover-grey-3:hover {
color: #757575 !important;
}
.text-grey-4, .text-hover-grey-4:hover {
color: #616161 !important;
}
.text-grey-5, .text-hover-grey-5:hover {
color: #424242 !important;
}
.text-deep-grey, .text-hover-deep-grey:hover {
color: #212121 !important;
}
.text-blue-grey, .text-hover-blue-grey:hover {
color: #607d8b !important;
}
.text-deep-blue-grey, .text-hover-deep-blue-grey:hover {
color: #263238 !important;
}
.bg-black, .bg-hover-black:hover {
background-color: #000 !important;
}
.bg-white, .bg-hover-white:hover {
background-color: #fff !important;
}
.bg-red, .bg-hover-red:hover {
background-color: #f44336 !important;
}
.bg-pink, .bg-hover-pink:hover {
background-color: #e91e63 !important;
}
.bg-purple, .bg-hover-purple:hover {
background-color: #9c27b0 !important;
}
.bg-deep-purple, .bg-hover-deep-purple:hover {
background-color: #673ab7 !important;
}
.bg-indigo, .bg-hover-indigo:hover {
background-color: #3f51b5 !important;
}
.bg-blue, .bg-hover-blue:hover {
background-color: #2196f3 !important;
}
.bg-light-blue, .bg-hover-light-blue:hover {
background-color: #03a9f4 !important;
}
.bg-cyan, .bg-hover-cyan:hover {
background-color: #00bcd4 !important;
}
.bg-teal, .bg-hover-teal:hover {
background-color: #009688 !important;
}
.bg-green, .bg-hover-green:hover {
background-color: #4caf50 !important;
}
.bg-light-green, .bg-hover-light-green:hover {
background-color: #8bc34a !important;
}
.bg-lime, .bg-hover-lime:hover {
background-color: #cddc39 !important;
}
.bg-yellow, .bg-hover-yellow:hover {
background-color: #ffeb3b !important;
}
.bg-amber, .bg-hover-amber:hover {
background-color: #ffc107 !important;
}
.bg-orange, .bg-hover-orange:hover {
background-color: #ff9800 !important;
}
.bg-deep-orange, .bg-hover-deep-orange:hover {
background-color: #ff5722 !important;
}
.bg-brown, .bg-hover-brown:hover {
background-color: #795548 !important;
}
.bg-grey-light, .bg-hover-grey-light:hover {
background-color: #e0e0e0 !important;
}
.bg-grey, .bg-hover-grey:hover {
background-color: #bdbdbd !important;
}
.bg-grey-2, .bg-hover-grey-2:hover {
background-color: #9e9e9e !important;
}
.bg-grey-3, .bg-hover-grey-3:hover {
background-color: #757575 !important;
}
.bg-grey-4, .bg-hover-grey-4:hover {
background-color: #616161 !important;
}
.bg-grey-5, .bg-hover-grey-5:hover {
background-color: #424242 !important;
}
.bg-deep-grey, .bg-hover-deep-grey:hover {
background-color: #212121 !important;
}
.bg-blue-grey, .bg-hover-blue-grey:hover {
background-color: #607d8b !important;
}
.bg-deep-blue-grey, .bg-hover-deep-blue-grey:hover {
background-color: #263238 !important;
}
.border-black, .border-hover-black:hover {
border-color: #000 !important;
}
.border-white, .border-hover-white:hover {
border-color: #fff !important;
}
.border-red, .border-hover-red:hover {
border-color: #f44336 !important;
}
.border-pink, .border-hover-pink:hover {
border-color: #e91e63 !important;
}
.border-purple, .border-hover-purple:hover {
border-color: #9c27b0 !important;
}
.border-deep-purple, .border-hover-deep-purple:hover {
border-color: #673ab7 !important;
}
.border-indigo, .border-hover-indigo:hover {
border-color: #3f51b5 !important;
}
.border-blue, .border-hover-blue:hover {
border-color: #2196f3 !important;
}
.border-light-blue, .border-hover-light-blue:hover {
border-color: #03a9f4 !important;
}
.border-cyan, .border-hover-cyan:hover {
border-color: #00bcd4 !important;
}
.border-teal, .border-hover-teal:hover {
border-color: #009688 !important;
}
.border-green, .border-hover-green:hover {
border-color: #4caf50 !important;
}
.border-light-green, .border-hover-light-green:hover {
border-color: #8bc34a !important;
}
.border-lime, .border-hover-lime:hover {
border-color: #cddc39 !important;
}
.border-yellow, .border-hover-yellow:hover {
border-color: #ffeb3b !important;
}
.border-amber, .border-hover-amber:hover {
border-color: #ffc107 !important;
}
.border-orange, .border-hover-orange:hover {
border-color: #ff9800 !important;
}
.border-deep-orange, .border-hover-deep-orange:hover {
border-color: #ff5722 !important;
}
.border-brown, .border-hover-brown:hover {
border-color: #795548 !important;
}
.border-grey-light, .border-hover-grey-light:hover {
border-color: #e0e0e0 !important;
}
.border-grey, .border-hover-grey:hover {
border-color: #bdbdbd !important;
}
.border-grey-2, .border-hover-grey-2:hover {
border-color: #9e9e9e !important;
}
.border-grey-3, .border-hover-grey-3:hover {
border-color: #757575 !important;
}
.border-grey-4, .border-hover-grey-4:hover {
border-color: #616161 !important;
}
.border-grey-5, .border-hover-grey-5:hover {
border-color: #424242 !important;
}
.border-deep-grey, .border-hover-deep-grey:hover {
border-color: #212121 !important;
}
.border-blue-grey, .border-hover-blue-grey:hover {
border-color: #607d8b !important;
}
.border-deep-blue-grey, .border-hover-deep-blue-grey:hover {
border-color: #263238 !important;
} | css/color.css | .text-black, .text-hover-black:hover {
color: #000 !important;
}
.text-white, .text-hover-white:hover {
color: #fff !important;
}
.text-red, .text-hover-red:hover {
color: #f44336 !important;
}
.text-pink, .text-hover-pink:hover {
color: #e91e63 !important;
}
.text-purple, .text-hover-purple:hover {
color: #9c27b0 !important;
}
.text-deep-purple, .text-hover-deep-purple:hover {
color: #673ab7 !important;
}
.text-indigo, .text-hover-indigo:hover {
color: #3f51b5 !important;
}
.text-blue, .text-hover-blue:hover {
color: #2196f3 !important;
}
.text-light-blue, .text-hover-light-blue:hover {
color: #03a9f4 !important;
}
.text-cyan, .text-hover-cyan:hover {
color: #00bcd4 !important;
}
.text-teal, .text-hover-teal:hover {
color: #009688 !important;
}
.text-green, .text-hover-green:hover {
color: #4caf50 !important;
}
.text-light-green, .text-hover-light-green:hover {
color: #8bc34a !important;
}
.text-lime, .text-hover-lime:hover {
color: #cddc39 !important;
}
.text-yellow, .text-hover-yellow:hover {
color: #ffeb3b !important;
}
.text-amber, .text-hover-amber:hover {
color: #ffc107 !important;
}
.text-orange, .text-hover-orange:hover {
color: #ff9800 !important;
}
.text-deep-orange, .text-hover-deep-orange:hover {
color: #ff5722 !important;
}
.text-brown, .text-hover-brown:hover {
color: #795548 !important;
}
.text-grey-light, .text-hover-grey-light:hover {
color: #e0e0e0 !important;
}
.text-grey, .text-hover-grey:hover {
color: #bdbdbd !important;
}
.text-grey-2, .text-hover-grey-2:hover {
color: #9e9e9e !important;
}
.text-grey-3, .text-hover-grey-3:hover {
color: #757575 !important;
}
.text-grey-4, .text-hover-grey-4:hover {
color: #616161 !important;
}
.text-grey-5, .text-hover-grey-5:hover {
color: #424242 !important;
}
.text-deep-grey, .text-hover-deep-grey:hover {
color: #212121 !important;
}
.text-blue-grey, .text-hover-blue-grey:hover {
color: #607d8b !important;
}
.text-deep-blue-grey, .text-hover-deep-blue-grey:hover {
color: #263238 !important;
}
.bg-black, .bg-hover-black:hover {
background-color: #000 !important;
}
.bg-white, .bg-hover-white:hover {
background-color: #fff !important;
}
.bg-red, .bg-hover-red:hover {
background-color: #f44336 !important;
}
.bg-pink, .bg-hover-pink:hover {
background-color: #e91e63 !important;
}
.bg-purple, .bg-hover-purple:hover {
background-color: #9c27b0 !important;
}
.bg-deep-purple, .bg-hover-deep-purple:hover {
background-color: #673ab7 !important;
}
.bg-indigo, .bg-hover-indigo:hover {
background-color: #3f51b5 !important;
}
.bg-blue, .bg-hover-blue:hover {
background-color: #2196f3 !important;
}
.bg-light-blue, .bg-hover-light-blue:hover {
background-color: #03a9f4 !important;
}
.bg-cyan, .bg-hover-cyan:hover {
background-color: #00bcd4 !important;
}
.bg-teal, .bg-hover-teal:hover {
background-color: #009688 !important;
}
.bg-green, .bg-hover-green:hover {
background-color: #4caf50 !important;
}
.bg-light-green, .bg-hover-light-green:hover {
background-color: #8bc34a !important;
}
.bg-lime, .bg-hover-lime:hover {
background-color: #cddc39 !important;
}
.bg-yellow, .bg-hover-yellow:hover {
background-color: #ffeb3b !important;
}
.bg-amber, .bg-hover-amber:hover {
background-color: #ffc107 !important;
}
.bg-orange, .bg-hover-orange:hover {
background-color: #ff9800 !important;
}
.bg-deep-orange, .bg-hover-deep-orange:hover {
background-color: #ff5722 !important;
}
.bg-brown, .bg-hover-brown:hover {
background-color: #795548 !important;
}
.bg-grey-light, .bg-hover-grey-light:hover {
background-color: #e0e0e0 !important;
}
.bg-grey, .bg-hover-grey:hover {
background-color: #bdbdbd !important;
}
.bg-grey-2, .bg-hover-grey-2:hover {
background-color: #9e9e9e !important;
}
.bg-grey-3, .bg-hover-grey-3:hover {
background-color: #757575 !important;
}
.bg-grey-4, .bg-hover-grey-4:hover {
background-color: #616161 !important;
}
.bg-grey-5, .bg-hover-grey-5:hover {
background-color: #424242 !important;
}
.bg-deep-grey, .bg-hover-deep-grey:hover {
background-color: #212121 !important;
}
.bg-blue-grey, .bg-hover-blue-grey:hover {
background-color: #607d8b !important;
}
.bg-deep-blue-grey, .bg-hover-deep-blue-grey:hover {
background-color: #263238 !important;
}
.border-black, .border-hover-black:hover {
border-color: #000 !important;
}
.border-white, .border-hover-white:hover {
border-color: #fff !important;
}
.border-red, .border-hover-red:hover {
border-color: #f44336 !important;
}
.border-pink, .border-hover-pink:hover {
border-color: #e91e63 !important;
}
.border-purple, .border-hover-purple:hover {
border-color: #9c27b0 !important;
}
.border-deep-purple, .border-hover-deep-purple:hover {
border-color: #673ab7 !important;
}
.border-indigo, .border-hover-indigo:hover {
border-color: #3f51b5 !important;
}
.border-blue, .border-hover-blue:hover {
border-color: #2196f3 !important;
}
.border-light-blue, .border-hover-light-blue:hover {
border-color: #03a9f4 !important;
}
.border-cyan, .border-hover-cyan:hover {
border-color: #00bcd4 !important;
}
.border-teal, .border-hover-teal:hover {
border-color: #009688 !important;
}
.border-green, .border-hover-green:hover {
border-color: #4caf50 !important;
}
.border-light-green, .border-hover-light-green:hover {
border-color: #8bc34a !important;
}
.border-lime, .border-hover-lime:hover {
border-color: #cddc39 !important;
}
.border-yellow, .border-hover-yellow:hover {
border-color: #ffeb3b !important;
}
.border-amber, .border-hover-amber:hover {
border-color: #ffc107 !important;
}
.border-orange, .border-hover-orange:hover {
border-color: #ff9800 !important;
}
.border-deep-orange, .border-hover-deep-orange:hover {
border-color: #ff5722 !important;
}
.border-brown, .border-hover-brown:hover {
border-color: #795548 !important;
}
.border-grey-light, .border-hover-grey-light:hover {
border-color: #e0e0e0 !important;
}
.border-grey, .border-hover-grey:hover {
border-color: #bdbdbd !important;
}
.border-grey-2, .border-hover-grey-2:hover {
border-color: #9e9e9e !important;
}
.border-grey-3, .border-hover-grey-3:hover {
border-color: #757575 !important;
}
.border-grey-4, .border-hover-grey-4:hover {
border-color: #616161 !important;
}
.border-grey-5, .border-hover-grey-5:hover {
border-color: #424242 !important;
}
.border-deep-grey, .border-hover-deep-grey:hover {
border-color: #212121 !important;
}
.border-blue-grey, .border-hover-blue-grey:hover {
border-color: #607d8b !important;
}
.border-deep-blue-grey, .border-hover-deep-blue-grey:hover {
border-color: #263238 !important;
} | 0.565539 | 0.063599 |
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
background-image: url('../img/background.min.svg');
height: 100%;
width: 100%;
position: fixed;
overflow: hidden;
}
footer {
text-align: center;
position: fixed;
bottom: 0;
width: 100%;
padding: 2px 0 2px 0;
font-size: x-small;
}
path {
fill: transparent;
}
.container {
text-align: center;
}
.ie{
display: none;
}
.hh-text {
animation:blinkingText 7s infinite;
position: fixed;
bottom: 1vw;
left: 50%;
transform: translate(-50%, -50%);
font-size: 5vw;
}
.bigGrinchText {
animation:blinkingText 7s infinite;
font-size: 3.35em;
text-shadow: 5px 5px green;
}
@keyframes blinkingText {
0% {
fill: #131313;
color: #131313;
text-shadow: 5px 5px green;
}
50% {
fill: #dbdbdb;
color: #dbdbdb;
text-shadow: 5px 5px red;
}
100% {
fill: #131313;
color: #131313;
text-shadow: 5px 5px green;
}
}
.grinch {
position: fixed;
width: 55vw;
max-width: 500px;
top: 51%;
left: 50%;
transform: translate(-50%, -50%);
}
@media screen and (max-width: 600px){
.hh-text {
bottom: 18vh;
font-size: 6vw;
}
}
@media screen and (min-aspect-ratio: 1/1){
.grinch{
width: 45vh;
}
}
.present-1 {
position: fixed;
bottom: 5vh;
left: 2vw;
max-width: 20%;
min-width: 180px;
}
.present-2 {
width: 15vw;
position: fixed;
bottom: 5vh;
right: 2vw;
max-width: 30%;
min-width: 100px;
}
.truckL {
width: 12vw;
min-width: 90px;
position: fixed;
top: 1vh;
left: 1vw;
}
.truckR {
width: 12vw;
min-width: 90px;
position: fixed;
top: 1%;
right: 1%;
-moz-transform: scale(-1, 1);
-webkit-transform: scale(-1, 1);
-o-transform: scale(-1, 1);
transform: scale(-1, 1);
filter: FlipH;
}
.editor-stage .snow {
height:50px;
background: #fff;
}
.snow{
position:fixed;
pointer-events:none;
top:0;
left:0;
right:0;
bottom:0;
height:100vh;
background: none;
background-image: url('https://s3-eu-west-1.amazonaws.com/static-ressources/s1.png'), url('https://s3-eu-west-1.amazonaws.com/static-ressources/s2.png'), url('https://s3-eu-west-1.amazonaws.com/static-ressources/s3.png');
z-index:100;
-webkit-animation: snow 10s linear infinite;
-moz-animation: snow 10s linear infinite;
-ms-animation: snow 10s linear infinite;
animation: snow 10s linear infinite;
}
@keyframes snow {
0% {background-position: 0px 0px, 0px 0px, 0px 0px;}
50% {background-position: 500px 500px, 100px 200px, -100px 150px;}
100% {background-position: 500px 1000px, 200px 400px, -100px 300px;}
}
@-moz-keyframes snow {
0% {background-position: 0px 0px, 0px 0px, 0px 0px;}
50% {background-position: 500px 500px, 100px 200px, -100px 150px;}
100% {background-position: 400px 1000px, 200px 400px, 100px 300px;}
}
@-webkit-keyframes snow {
0% {background-position: 0px 0px, 0px 0px, 0px 0px;}
50% {background-position: 500px 500px, 100px 200px, -100px 150px;}
100% {background-position: 500px 1000px, 200px 400px, -100px 300px;}
}
@-ms-keyframes snow {
0% {background-position: 0px 0px, 0px 0px, 0px 0px;}
50% {background-position: 500px 500px, 100px 200px, -100px 150px;}
100% {background-position: 500px 1000px, 200px 400px, -100px 300px;}
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
svg{
display: none;
}
.ie{
display: block;
animation:blinkingText 7s infinite;
bottom: 1vw;
font-size: 7vw;
}
} | css/stylesheet-3.css | * {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
background-image: url('../img/background.min.svg');
height: 100%;
width: 100%;
position: fixed;
overflow: hidden;
}
footer {
text-align: center;
position: fixed;
bottom: 0;
width: 100%;
padding: 2px 0 2px 0;
font-size: x-small;
}
path {
fill: transparent;
}
.container {
text-align: center;
}
.ie{
display: none;
}
.hh-text {
animation:blinkingText 7s infinite;
position: fixed;
bottom: 1vw;
left: 50%;
transform: translate(-50%, -50%);
font-size: 5vw;
}
.bigGrinchText {
animation:blinkingText 7s infinite;
font-size: 3.35em;
text-shadow: 5px 5px green;
}
@keyframes blinkingText {
0% {
fill: #131313;
color: #131313;
text-shadow: 5px 5px green;
}
50% {
fill: #dbdbdb;
color: #dbdbdb;
text-shadow: 5px 5px red;
}
100% {
fill: #131313;
color: #131313;
text-shadow: 5px 5px green;
}
}
.grinch {
position: fixed;
width: 55vw;
max-width: 500px;
top: 51%;
left: 50%;
transform: translate(-50%, -50%);
}
@media screen and (max-width: 600px){
.hh-text {
bottom: 18vh;
font-size: 6vw;
}
}
@media screen and (min-aspect-ratio: 1/1){
.grinch{
width: 45vh;
}
}
.present-1 {
position: fixed;
bottom: 5vh;
left: 2vw;
max-width: 20%;
min-width: 180px;
}
.present-2 {
width: 15vw;
position: fixed;
bottom: 5vh;
right: 2vw;
max-width: 30%;
min-width: 100px;
}
.truckL {
width: 12vw;
min-width: 90px;
position: fixed;
top: 1vh;
left: 1vw;
}
.truckR {
width: 12vw;
min-width: 90px;
position: fixed;
top: 1%;
right: 1%;
-moz-transform: scale(-1, 1);
-webkit-transform: scale(-1, 1);
-o-transform: scale(-1, 1);
transform: scale(-1, 1);
filter: FlipH;
}
.editor-stage .snow {
height:50px;
background: #fff;
}
.snow{
position:fixed;
pointer-events:none;
top:0;
left:0;
right:0;
bottom:0;
height:100vh;
background: none;
background-image: url('https://s3-eu-west-1.amazonaws.com/static-ressources/s1.png'), url('https://s3-eu-west-1.amazonaws.com/static-ressources/s2.png'), url('https://s3-eu-west-1.amazonaws.com/static-ressources/s3.png');
z-index:100;
-webkit-animation: snow 10s linear infinite;
-moz-animation: snow 10s linear infinite;
-ms-animation: snow 10s linear infinite;
animation: snow 10s linear infinite;
}
@keyframes snow {
0% {background-position: 0px 0px, 0px 0px, 0px 0px;}
50% {background-position: 500px 500px, 100px 200px, -100px 150px;}
100% {background-position: 500px 1000px, 200px 400px, -100px 300px;}
}
@-moz-keyframes snow {
0% {background-position: 0px 0px, 0px 0px, 0px 0px;}
50% {background-position: 500px 500px, 100px 200px, -100px 150px;}
100% {background-position: 400px 1000px, 200px 400px, 100px 300px;}
}
@-webkit-keyframes snow {
0% {background-position: 0px 0px, 0px 0px, 0px 0px;}
50% {background-position: 500px 500px, 100px 200px, -100px 150px;}
100% {background-position: 500px 1000px, 200px 400px, -100px 300px;}
}
@-ms-keyframes snow {
0% {background-position: 0px 0px, 0px 0px, 0px 0px;}
50% {background-position: 500px 500px, 100px 200px, -100px 150px;}
100% {background-position: 500px 1000px, 200px 400px, -100px 300px;}
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
svg{
display: none;
}
.ie{
display: block;
animation:blinkingText 7s infinite;
bottom: 1vw;
font-size: 7vw;
}
} | 0.491212 | 0.116714 |
@charset "UTF-8";
#heading {
color: #1C75BC;
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
text-align: center;
}
#box {
width: 50%;
text-shadow: 0px 0px #D8D8D8;
border-color: #1F53D2;
}
.report_box {
width: 700px;
color: #5D5D5D;
height: 375px;
border-style: solid;
-webkit-box-shadow: 3px 3px 3px #D5D5D5;
box-shadow: 3px 3px 3px #D5D5D5;
background-color: #FFFFFF;
margin-left: auto;
margin-right: auto;
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
border-collapse: collapse;
}
.report_box_files {
width: 700px;
color: #5D5D5D;
border-style: solid;
-webkit-box-shadow: 4px 4px 5px #D5D5D5;
box-shadow: 4px 4px 5px #D5D5D5;
background-color: #FFFFFF;
margin-left: auto;
margin-right: auto;
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
border-collapse: collapse;
}
.report_box_source {
width: 700px;
color: #000000;
border-style: solid;
background-color: #FFFFFF;
margin-left: auto;
margin-right: auto;
font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", monospace;
border-collapse: collapse;
white-space: pre;
tab-size: 4;
border-width: thin;
}
.report_box_stats {
width: 700px;
color: #000000;
border-left-style: solid;
border-right-style: solid;
border-top-style: solid;
-webkit-box-shadow: 3px 3px 3px #D5D5D5;
box-shadow: 3px 3px 3px #D5D5D5;
background-color: #FFFFFF;
margin-left: auto;
margin-right: auto;
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
border-collapse: collapse;
height: 200px;
font-style: normal;
text-align: center;
font-size: small;
max-width: 700px;
}
.body_class {
background-color: #F2F2F2;
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
}
.icon_class {
height: 60px;
position: relative;
text-align: center;
}
.files_class {
height: 30px;
position: relative;
text-align: left;
padding-left: 10px;
padding-right: 10px;
}
.code_line_class {
position: relative;
text-align: left;
padding-left: 10px;
padding-right: 10px;
width: 50px;
}
.body_class header .header_class {
background-color: #FFFFFF;
width: 100%;
-webkit-box-shadow: 3px 3px 3px #D5D5D5;
box-shadow: 3px 3px 3px #D5D5D5;
}
.body_class .hierarchy_class {
height: 40px;
line-height: 40px;
background-color: #FFFFFF;
padding-left: 10px;
-webkit-box-shadow: 3px 3px 3px #D5D5D5;
box-shadow: 3px 3px 3px #D5D5D5;
}
.body_class .separation_class {
height: 7px;
}
a {
color: #1C75BC;
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
position: relative;
}
a:hover {
color: #EC6663;
}
a:hover span {
display: block;
text-align: center;
}
.report_frame {
margin-left: auto;
margin-right: auto;
}
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted black;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 200px;
background-color: antiquewhite;
color: black;
text-align: left;
border-radius: 6px;
padding: 10px;
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
/* Position the tooltip */
position: absolute;
z-index: 1;
top: -5px;
left: 110%;
font-size: small;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}
.td_class {
padding-left: 10px;
padding-top: 10px;
padding-right: 10px;
padding-bottom: 10px;
text-align: left;
max-width: 400px;
overflow-x: scroll;
}
code {
font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
white-space: pre;
}
.highlightme {
background-color:#FFFF00;
}
.th_class {
text-align: left;
height: 40px;
}
.tr_class {
border-bottom: thin solid #E5E5E5;
}
.report_title {
height: 40px;
line-height: 40px;
background-color: #FFFFFF;
padding-left: 10px;
-webkit-box-shadow: 3px 3px 3px #D5D5D5;
box-shadow: 3px 3px 3px #D5D5D5;
font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", monospace;
color: #1234DF;
} | open-source-reports/qmcpack/tests/fpc-report/sitestyle.css | @charset "UTF-8";
#heading {
color: #1C75BC;
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
text-align: center;
}
#box {
width: 50%;
text-shadow: 0px 0px #D8D8D8;
border-color: #1F53D2;
}
.report_box {
width: 700px;
color: #5D5D5D;
height: 375px;
border-style: solid;
-webkit-box-shadow: 3px 3px 3px #D5D5D5;
box-shadow: 3px 3px 3px #D5D5D5;
background-color: #FFFFFF;
margin-left: auto;
margin-right: auto;
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
border-collapse: collapse;
}
.report_box_files {
width: 700px;
color: #5D5D5D;
border-style: solid;
-webkit-box-shadow: 4px 4px 5px #D5D5D5;
box-shadow: 4px 4px 5px #D5D5D5;
background-color: #FFFFFF;
margin-left: auto;
margin-right: auto;
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
border-collapse: collapse;
}
.report_box_source {
width: 700px;
color: #000000;
border-style: solid;
background-color: #FFFFFF;
margin-left: auto;
margin-right: auto;
font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", monospace;
border-collapse: collapse;
white-space: pre;
tab-size: 4;
border-width: thin;
}
.report_box_stats {
width: 700px;
color: #000000;
border-left-style: solid;
border-right-style: solid;
border-top-style: solid;
-webkit-box-shadow: 3px 3px 3px #D5D5D5;
box-shadow: 3px 3px 3px #D5D5D5;
background-color: #FFFFFF;
margin-left: auto;
margin-right: auto;
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
border-collapse: collapse;
height: 200px;
font-style: normal;
text-align: center;
font-size: small;
max-width: 700px;
}
.body_class {
background-color: #F2F2F2;
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
}
.icon_class {
height: 60px;
position: relative;
text-align: center;
}
.files_class {
height: 30px;
position: relative;
text-align: left;
padding-left: 10px;
padding-right: 10px;
}
.code_line_class {
position: relative;
text-align: left;
padding-left: 10px;
padding-right: 10px;
width: 50px;
}
.body_class header .header_class {
background-color: #FFFFFF;
width: 100%;
-webkit-box-shadow: 3px 3px 3px #D5D5D5;
box-shadow: 3px 3px 3px #D5D5D5;
}
.body_class .hierarchy_class {
height: 40px;
line-height: 40px;
background-color: #FFFFFF;
padding-left: 10px;
-webkit-box-shadow: 3px 3px 3px #D5D5D5;
box-shadow: 3px 3px 3px #D5D5D5;
}
.body_class .separation_class {
height: 7px;
}
a {
color: #1C75BC;
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
position: relative;
}
a:hover {
color: #EC6663;
}
a:hover span {
display: block;
text-align: center;
}
.report_frame {
margin-left: auto;
margin-right: auto;
}
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted black;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 200px;
background-color: antiquewhite;
color: black;
text-align: left;
border-radius: 6px;
padding: 10px;
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
/* Position the tooltip */
position: absolute;
z-index: 1;
top: -5px;
left: 110%;
font-size: small;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}
.td_class {
padding-left: 10px;
padding-top: 10px;
padding-right: 10px;
padding-bottom: 10px;
text-align: left;
max-width: 400px;
overflow-x: scroll;
}
code {
font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
white-space: pre;
}
.highlightme {
background-color:#FFFF00;
}
.th_class {
text-align: left;
height: 40px;
}
.tr_class {
border-bottom: thin solid #E5E5E5;
}
.report_title {
height: 40px;
line-height: 40px;
background-color: #FFFFFF;
padding-left: 10px;
-webkit-box-shadow: 3px 3px 3px #D5D5D5;
box-shadow: 3px 3px 3px #D5D5D5;
font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", monospace;
color: #1234DF;
} | 0.35354 | 0.153486 |
@charset "utf-8";
/**
* 新闻详情页 - 样式文件
* @author lizhigao(<EMAIL>)
*/
/*==================== common style ====================*/
.w1002 {
width: 1002px;
}
.bc {
display: block;
margin-left: auto;
margin-right: auto;
}
.split-line {
font-family: sans-serif;
color: #DDDDDD;
}
/*==================== header ====================*/
.header {
background-color: #F8F8F8;
border-bottom: 1px solid #DBDBDB;
}
.header .header-wrap .top {
/* 顶部nav */
height: 38px;
line-height: 38px;
}
.header .header-wrap .top a {
color: #666;
font-size: 12px;
}
.header .header-wrap .top a:hover {
color: #f00;
text-decoration: none;
}
.header .header-wrap .top a img {
height: 18px;
margin-right: 3px;
vertical-align: middle;
margin-bottom: 3px;
}
.header .header-wrap .top .top-r {
_padding-top: 10px;
}
.header .header-wrap .ad-wrap {
/* 广告 - 1 */
text-align: center;
}
.header .header-wrap .bottom {
padding: 15px 0;
position: relative;
}
.header .header-wrap .bottom .bottom-l .logo {
display: inline-block;
height: 30px;
line-height: 0;
font-size: 24px;
font-family: "microsoft yahei";
color: #333;
margin-right: 5px;
}
.header .header-wrap .bottom .bottom-l .logo img {
vertical-align: middle;
margin-bottom: 5px;
margin-right: 3px;
_margin-bottom: 0;
}
.header .header-wrap .bottom .bottom-l .logo:hover {
text-decoration: none;
color: #333;
}
.header .header-wrap .bottom .bottom-l .crumbs a {
color: #666;
font-size: 12px;
}
.header .header-wrap .bottom .act-wrap {
text-align: right;
width: 100%;
position: absolute;
right: 245px;
top: 25px;
}
.header .header-wrap .bottom .act-wrap .act {
color: red;
padding-right: 20px;
position: relative;
}
.header .header-wrap .bottom .act-wrap .act img {
position: absolute;
right: 0;
top: -10px;
}
.header .header-wrap .bottom .bottom-r {
height: 30px;
width: 230px;
overflow: hidden;
}
.header .header-wrap .bottom .bottom-r form .input-wrap {
border: 1px solid #DBDBDB;
background-color: #fff;
height: 26px;
line-height: 26px;
overflow: hidden;
}
.header .header-wrap .bottom .bottom-r form .input-wrap input {
border: 0 none;
background-color: transparent;
}
.header .header-wrap .bottom .bottom-r form .input-wrap input.txt {
padding: 5px 6px;
width: 170px;
}
.header .header-wrap .bottom .bottom-r form .input-wrap .split-line {
_padding-bottom: 5px;
_display: inline-block;
}
.header .header-wrap .bottom .bottom-r form .input-wrap input.submit {
background-image: url("../img/icon_search.png");
background-repeat: no-repeat;
background-position: center center;
height: 26px;
line-height: 26px;
text-indent: -999px;
width: 30px;
} | df_news_details/css/page_details_copy.css | @charset "utf-8";
/**
* 新闻详情页 - 样式文件
* @author lizhigao(<EMAIL>)
*/
/*==================== common style ====================*/
.w1002 {
width: 1002px;
}
.bc {
display: block;
margin-left: auto;
margin-right: auto;
}
.split-line {
font-family: sans-serif;
color: #DDDDDD;
}
/*==================== header ====================*/
.header {
background-color: #F8F8F8;
border-bottom: 1px solid #DBDBDB;
}
.header .header-wrap .top {
/* 顶部nav */
height: 38px;
line-height: 38px;
}
.header .header-wrap .top a {
color: #666;
font-size: 12px;
}
.header .header-wrap .top a:hover {
color: #f00;
text-decoration: none;
}
.header .header-wrap .top a img {
height: 18px;
margin-right: 3px;
vertical-align: middle;
margin-bottom: 3px;
}
.header .header-wrap .top .top-r {
_padding-top: 10px;
}
.header .header-wrap .ad-wrap {
/* 广告 - 1 */
text-align: center;
}
.header .header-wrap .bottom {
padding: 15px 0;
position: relative;
}
.header .header-wrap .bottom .bottom-l .logo {
display: inline-block;
height: 30px;
line-height: 0;
font-size: 24px;
font-family: "microsoft yahei";
color: #333;
margin-right: 5px;
}
.header .header-wrap .bottom .bottom-l .logo img {
vertical-align: middle;
margin-bottom: 5px;
margin-right: 3px;
_margin-bottom: 0;
}
.header .header-wrap .bottom .bottom-l .logo:hover {
text-decoration: none;
color: #333;
}
.header .header-wrap .bottom .bottom-l .crumbs a {
color: #666;
font-size: 12px;
}
.header .header-wrap .bottom .act-wrap {
text-align: right;
width: 100%;
position: absolute;
right: 245px;
top: 25px;
}
.header .header-wrap .bottom .act-wrap .act {
color: red;
padding-right: 20px;
position: relative;
}
.header .header-wrap .bottom .act-wrap .act img {
position: absolute;
right: 0;
top: -10px;
}
.header .header-wrap .bottom .bottom-r {
height: 30px;
width: 230px;
overflow: hidden;
}
.header .header-wrap .bottom .bottom-r form .input-wrap {
border: 1px solid #DBDBDB;
background-color: #fff;
height: 26px;
line-height: 26px;
overflow: hidden;
}
.header .header-wrap .bottom .bottom-r form .input-wrap input {
border: 0 none;
background-color: transparent;
}
.header .header-wrap .bottom .bottom-r form .input-wrap input.txt {
padding: 5px 6px;
width: 170px;
}
.header .header-wrap .bottom .bottom-r form .input-wrap .split-line {
_padding-bottom: 5px;
_display: inline-block;
}
.header .header-wrap .bottom .bottom-r form .input-wrap input.submit {
background-image: url("../img/icon_search.png");
background-repeat: no-repeat;
background-position: center center;
height: 26px;
line-height: 26px;
text-indent: -999px;
width: 30px;
} | 0.285173 | 0.043103 |
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital@0;1&family=Work+Sans:wght@600&display=swap');
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
:root{
--fonte-titulo: "Fira sans", sans-serif;
--fonte-corpo: 20px "open sans";
--cor-01: #5F24C2;
--cor-02: #3E1880;
--cor-03: #7C30FF;
--cor-04: #1F0C40;
--cor-05: #702CE6;
--light: #EEEEEEEE;
--dark: #212121;
}
html{
scroll-behavior: smooth;
}
body{
font: var(--fonte-corpo);
background-color: #c8c8c8;
overflow-x: hidden;
}
/*Scrollbar*/
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-thumb {
background: #888;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
/* Nav topo */
nav{
padding: 16px 32px;
background-color: var(--dark);
border-bottom: 3px solid var(--cor-01);
}
div#menu-container{
max-width: 1200px;
margin: 0 auto;
align-items: center;
justify-content: space-between;
display: flex;
}
nav h1{
color: var(--light);
text-transform: uppercase;
font: 28px "Fira Sans", sans-serif;
font-weight: 700;
letter-spacing: 2px;
}
span{
color: black;
}
.nav-links{
list-style: none;
flex: 1 1 0%;
display: flex;
justify-content: flex-end;
align-items: center;
}
.nav-links li{
padding: 5px;
}
.menu a{
color: var(--light);
text-decoration: none;
padding: 8px 24px;
border-radius: 99px;
transition: 0.4s;
}
.menu a:hover{
background-color: var(--cor-01);
}
.hamburguer{
display: none;
position: relative;
z-index: 1;
cursor: pointer;
transition: 0.4s;
}
.hamburguer div{
display: block;
width: 33px;
height: 4px;
margin-bottom: 5px;
position: relative;
background-color: var(--light);
border-radius: 6px;
z-index: 1;
transform-origin: 0 0;
transition: 0.4s;
}
.hamburguer:hover .linha2{
transform: translateX(5px);
background-color: var(--cor-01);
transition: 0.2s;
}
.hamburguer.nav-active .linha1 {
-webkit-transform: rotate(45deg) translate(1px, -2px);
transform: rotate(45deg) translate(1px, -2px);
}
.hamburguer.nav-active .linha2 {
opacity: 0;
transform: translateX(15px);
}
.hamburguer.nav-active .linha3 {
-webkit-transform: rotate(-45deg) translate(-3px, 3px) ;
transform: rotate(-45deg) translate(-3px, 3px) ;
}
.hamburguer.nav-active:hover div{
background-color: var(--cor-01);
transition: 0.4s;
}
.hamburguer.nav-active{
transform: translateX(0%);
}
@media only screen and (max-width: 1024px){
.hamburguer{
display: block;
}
.nav-links{
--gap: 2em;
position: absolute;
inset: 67.4px 0 0 30%;
height: 92.7vh;
z-index: 1;
flex-direction: column;
padding: min(60vh, 20rem) 2em;
background-color: hsla(0, 0%, 12.94%,0.1);
backdrop-filter: blur(0.7rem);
-webkit-backdrop-filter: blur(0.7rem);
transform: translateX(100%);
transition: transform 350ms ease-in;
}
.nav-links[data-visible="true"]{
transform: translateX(0%);
}
.nav-links li{
padding: 10px;
}
}
/* Home */
div.home-container{
display: flex;
height: 92.8vh;
align-items: center;
}
div#home{
background-image: url(img/fundo01.webp);
box-shadow:inset 0 0 0 2000px #00000081;
background-size: cover;
background-attachment: fixed;
flex-wrap: wrap;
flex-direction: column;
justify-content: center;
text-align: center;
}
div.conteudo{
width: 50%;
padding: 50px;
display: flex;
flex-direction: column;
}
.home-container h2{
color: var(--cor-04);
font-family: var(--fonte-titulo);
font-size: 35px;
letter-spacing: 2px;
}
#app, div.conteudo{
position: relative;
top: 15px;
font-size: 1.5em;
}
div.conteudo p{
margin-top: 50px;
font-weight: bold;
font-size: 1.3em;
}
div.button{
margin-top: 15px;
border-radius: 99px;
padding: 10px 20px;
background-color: var(--cor-01);
}
div.button a{
color: white;
text-decoration: none;
}
div.button:hover{
color: white;
background-color: var(--cor-02);
transition: 0.4s;
}
@media only screen and (max-width: 1200px){
div.conteudo{
width: 70%;
}
.sobre-container h2{
font-size: 30px;
}
}
@media only screen and (max-width: 760px){
div.conteudo{
width: 100%;
padding: 10px;
}
}
@media only screen and (max-width: 340px){
div.button{
display: none;
}
}
/* Sobre */
.sobre-container{
margin: -30px auto;
width: 95%;
max-width: 1200px;
}
.sobre-container h2{padding-top: 50px;}
.sobre-container h3{margin-bottom: 10px;}
.column-light {
flex: 1;
text-align: center;
margin: 60px 10px 60px 10px;
}
.column-light:not(:first-child){
border-left: 1px solid #7979794d;
padding: 0 10px;
}
.column-light ion-icon{
font-size: 2em;
color: #5f59998e;
}
/* Projetos */
.projetos-container{
padding: 5px;
max-width: 1200px;
width: 95%;
margin: 30px auto;
}
.top h2{
color: var(--cor-02);
text-align: center;
margin-top: 30px;
font-family: var(--fonte-titulo);
font-size: 35px;
letter-spacing: 2px;
}
.row{
display: flex;
flex-flow: row wrap;
justify-content: center;
margin: 5px 0;
}
.column{
flex: 1;
background-color: var(--cor-01);
margin: 60px 10px 10px 10px;
padding: 30px;
text-align: center;
border-radius: 10px;
-webkit-box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.48);
box-shadow: 0px 0px 13px 3px rgba(0,0,0,0.48);
}
.column h3{
margin: 20px 25px;
text-align: center;
letter-spacing: 2px;
}
.button-projeto{
margin-top: 15px;
border-radius: 99px;
padding: 10px 20px;
cursor: pointer;
border: 1px solid var(--cor-04);
}
.button-projeto a{
color: white;
text-decoration: none;
}
.button-projeto:hover{
background-color: var(--cor-04);
transition: 0.4s;
}
/* Footer */
footer{
border-top: 3px solid var(--cor-01);
background-color: var(--dark);
padding: 16px 32px;
}
.footer-container{
max-width: 1200px;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
}
.footer-separador{
width: 50%;
margin: 30px auto;
background-color: var(--cor-01);
height: 1px;
}
ul.social-media{
display: flex;
color: white;
list-style: none;
}
.footer-container h2{
color: white;
letter-spacing: 2px;
font: var(--fonte-titulo);
font-size: 40px;
}
.social{
color: white;
width: 40px;
height: 40px;
margin: 0 10px;
}
.social:hover{
color: var(--cor-01);
transition: 0.4s;
}
@media only screen and (max-width: 375px){
.footer-container h2{
font-size: 30px;
}
}
.contatos{
display: flex;
flex-direction: column;
}
.contatos p{
color: white;
}
.contatos p:first-child{
position: relative;
top: 3px;
}
.icons{
color: white;
position: relative;
top: 5px;
right: 2px;
}
.copyright{
color: white;
font-size: 0.5em;
margin-top: 40px;
} | style.css | @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital@0;1&family=Work+Sans:wght@600&display=swap');
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
:root{
--fonte-titulo: "Fira sans", sans-serif;
--fonte-corpo: 20px "open sans";
--cor-01: #5F24C2;
--cor-02: #3E1880;
--cor-03: #7C30FF;
--cor-04: #1F0C40;
--cor-05: #702CE6;
--light: #EEEEEEEE;
--dark: #212121;
}
html{
scroll-behavior: smooth;
}
body{
font: var(--fonte-corpo);
background-color: #c8c8c8;
overflow-x: hidden;
}
/*Scrollbar*/
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-thumb {
background: #888;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
/* Nav topo */
nav{
padding: 16px 32px;
background-color: var(--dark);
border-bottom: 3px solid var(--cor-01);
}
div#menu-container{
max-width: 1200px;
margin: 0 auto;
align-items: center;
justify-content: space-between;
display: flex;
}
nav h1{
color: var(--light);
text-transform: uppercase;
font: 28px "Fira Sans", sans-serif;
font-weight: 700;
letter-spacing: 2px;
}
span{
color: black;
}
.nav-links{
list-style: none;
flex: 1 1 0%;
display: flex;
justify-content: flex-end;
align-items: center;
}
.nav-links li{
padding: 5px;
}
.menu a{
color: var(--light);
text-decoration: none;
padding: 8px 24px;
border-radius: 99px;
transition: 0.4s;
}
.menu a:hover{
background-color: var(--cor-01);
}
.hamburguer{
display: none;
position: relative;
z-index: 1;
cursor: pointer;
transition: 0.4s;
}
.hamburguer div{
display: block;
width: 33px;
height: 4px;
margin-bottom: 5px;
position: relative;
background-color: var(--light);
border-radius: 6px;
z-index: 1;
transform-origin: 0 0;
transition: 0.4s;
}
.hamburguer:hover .linha2{
transform: translateX(5px);
background-color: var(--cor-01);
transition: 0.2s;
}
.hamburguer.nav-active .linha1 {
-webkit-transform: rotate(45deg) translate(1px, -2px);
transform: rotate(45deg) translate(1px, -2px);
}
.hamburguer.nav-active .linha2 {
opacity: 0;
transform: translateX(15px);
}
.hamburguer.nav-active .linha3 {
-webkit-transform: rotate(-45deg) translate(-3px, 3px) ;
transform: rotate(-45deg) translate(-3px, 3px) ;
}
.hamburguer.nav-active:hover div{
background-color: var(--cor-01);
transition: 0.4s;
}
.hamburguer.nav-active{
transform: translateX(0%);
}
@media only screen and (max-width: 1024px){
.hamburguer{
display: block;
}
.nav-links{
--gap: 2em;
position: absolute;
inset: 67.4px 0 0 30%;
height: 92.7vh;
z-index: 1;
flex-direction: column;
padding: min(60vh, 20rem) 2em;
background-color: hsla(0, 0%, 12.94%,0.1);
backdrop-filter: blur(0.7rem);
-webkit-backdrop-filter: blur(0.7rem);
transform: translateX(100%);
transition: transform 350ms ease-in;
}
.nav-links[data-visible="true"]{
transform: translateX(0%);
}
.nav-links li{
padding: 10px;
}
}
/* Home */
div.home-container{
display: flex;
height: 92.8vh;
align-items: center;
}
div#home{
background-image: url(img/fundo01.webp);
box-shadow:inset 0 0 0 2000px #00000081;
background-size: cover;
background-attachment: fixed;
flex-wrap: wrap;
flex-direction: column;
justify-content: center;
text-align: center;
}
div.conteudo{
width: 50%;
padding: 50px;
display: flex;
flex-direction: column;
}
.home-container h2{
color: var(--cor-04);
font-family: var(--fonte-titulo);
font-size: 35px;
letter-spacing: 2px;
}
#app, div.conteudo{
position: relative;
top: 15px;
font-size: 1.5em;
}
div.conteudo p{
margin-top: 50px;
font-weight: bold;
font-size: 1.3em;
}
div.button{
margin-top: 15px;
border-radius: 99px;
padding: 10px 20px;
background-color: var(--cor-01);
}
div.button a{
color: white;
text-decoration: none;
}
div.button:hover{
color: white;
background-color: var(--cor-02);
transition: 0.4s;
}
@media only screen and (max-width: 1200px){
div.conteudo{
width: 70%;
}
.sobre-container h2{
font-size: 30px;
}
}
@media only screen and (max-width: 760px){
div.conteudo{
width: 100%;
padding: 10px;
}
}
@media only screen and (max-width: 340px){
div.button{
display: none;
}
}
/* Sobre */
.sobre-container{
margin: -30px auto;
width: 95%;
max-width: 1200px;
}
.sobre-container h2{padding-top: 50px;}
.sobre-container h3{margin-bottom: 10px;}
.column-light {
flex: 1;
text-align: center;
margin: 60px 10px 60px 10px;
}
.column-light:not(:first-child){
border-left: 1px solid #7979794d;
padding: 0 10px;
}
.column-light ion-icon{
font-size: 2em;
color: #5f59998e;
}
/* Projetos */
.projetos-container{
padding: 5px;
max-width: 1200px;
width: 95%;
margin: 30px auto;
}
.top h2{
color: var(--cor-02);
text-align: center;
margin-top: 30px;
font-family: var(--fonte-titulo);
font-size: 35px;
letter-spacing: 2px;
}
.row{
display: flex;
flex-flow: row wrap;
justify-content: center;
margin: 5px 0;
}
.column{
flex: 1;
background-color: var(--cor-01);
margin: 60px 10px 10px 10px;
padding: 30px;
text-align: center;
border-radius: 10px;
-webkit-box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.48);
box-shadow: 0px 0px 13px 3px rgba(0,0,0,0.48);
}
.column h3{
margin: 20px 25px;
text-align: center;
letter-spacing: 2px;
}
.button-projeto{
margin-top: 15px;
border-radius: 99px;
padding: 10px 20px;
cursor: pointer;
border: 1px solid var(--cor-04);
}
.button-projeto a{
color: white;
text-decoration: none;
}
.button-projeto:hover{
background-color: var(--cor-04);
transition: 0.4s;
}
/* Footer */
footer{
border-top: 3px solid var(--cor-01);
background-color: var(--dark);
padding: 16px 32px;
}
.footer-container{
max-width: 1200px;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
}
.footer-separador{
width: 50%;
margin: 30px auto;
background-color: var(--cor-01);
height: 1px;
}
ul.social-media{
display: flex;
color: white;
list-style: none;
}
.footer-container h2{
color: white;
letter-spacing: 2px;
font: var(--fonte-titulo);
font-size: 40px;
}
.social{
color: white;
width: 40px;
height: 40px;
margin: 0 10px;
}
.social:hover{
color: var(--cor-01);
transition: 0.4s;
}
@media only screen and (max-width: 375px){
.footer-container h2{
font-size: 30px;
}
}
.contatos{
display: flex;
flex-direction: column;
}
.contatos p{
color: white;
}
.contatos p:first-child{
position: relative;
top: 3px;
}
.icons{
color: white;
position: relative;
top: 5px;
right: 2px;
}
.copyright{
color: white;
font-size: 0.5em;
margin-top: 40px;
} | 0.328529 | 0.098947 |
* {
margin: 0;
border: 0;
padding: 0;
}
html {
height: 100%;
background: #000;
color: #fff;
overflow: hidden;
font-family: Arial;
font-size: 12px;
}
html, th, td {
}
#_LOGO {
margin: 0.2em 0.6em;
}
h1 {
position: absolute;
left: 2.4em;
top: 0.4em;
color: #25b;
text-shadow: 0.1em 0.1em #000;
font-size: 13px;
}
h1 b {
color: #c70;
}
body._MANAGER #_CONTENT {
padding: 1em 2.2em;
overflow: auto;
}
#_APPS {
margin: 0.5em 0;
}
._SCREEN {
display: none;
}
._ACTIVE {
display: block;
}
a._DISABLED {
color: #ccc;
}
fieldset {
padding: 0.4em 0;
}
form li {
clear: both;
margin: 0.4em 0;
list-style-type: none;
}
form label {
float: left;
width: 8em;
margin: 0.4em 0;
}
form legend {
display: block;
width: 100%;
font-size: 1.2em;
color: #666;
border-bottom: 1px solid #111;
padding-top: 0.4em;
margin-bottom: -0.2em;
}
input,
select,
textarea {
background: #111;
border: 1px solid #333;
color: #ccc;
border-radius: 0.2em;
margin: 0;
padding: 0.2em 0.4em;
outline: none;
}
button {
border: 1px solid #292;
border-radius: 0.5em;
padding: 0.5em 1em;
background: #050;
color: #fff;
font: bold 13px Arial;
text-shadow: 0.2em 0.2em #020;
cursor: pointer;
outline: none;
}
button:focus {
background: #090;
border-color: #6f6;
}
input:focus,
select:focus,
textarea:focus {
border-color: #999;
background: #222;
color: #fff;
}
input#name {
width: 10em;
}
input#port {
width: 4em;
}
td._CONTROLS {
padding: 0 0.2em;
}
i._CONTROL {
display: inline-block;
width: 20px;
height: 20px;
margin: 0.1em 0.3em;
cursor: pointer;
}
i._CONTROL:hover {
filter: brightness(1.5);
-webkit-filter: brightness(1.5);
-moz-filter: brightness(1.5);
-o-filter: brightness(1.5);
-ms-filter: brightness(1.5);
}
._SPIN {
-webkit-animation: _SPIN 2s infinite linear;
-moz-animation: _SPIN 2s infinite linear;
-o-animation: _SPIN 2s infinite linear;
animation: _SPIN 2s infinite linear;
}
@-moz-keyframes _SPIN {
0% { -moz-transform: rotate(0deg); }
100% { -moz-transform: rotate(359deg); }
}
@-webkit-keyframes _SPIN {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(359deg); }
}
@-o-keyframes _SPIN {
0% { -o-transform: rotate(0deg); }
100% { -o-transform: rotate(359deg); }
}
@-ms-keyframes _SPIN {
0% { -ms-transform: rotate(0deg); }
100% { -ms-transform: rotate(359deg); }
}
@keyframes _SPIN {
0% { transform: rotate(0deg); }
100% { transform: rotate(359deg); }
}
h2 {
font-weight: normal;
font-size: 16px;
margin: 0 0 0.4em;
color: #999;
}
h2 b {
font-weight: normal;
font-size: 13px;
color: #666;
}
table {
border-spacing: 1px;
margin: -1px;
}
th,
td {
padding: 0.3em 0.6em;
}
th {
background: #333;
text-align: left;
font-weight: bold;
}
td {
background: #111;
}
a {
color: #25b;
text-decoration: none;
cursor: pointer;
}
a:hover {
color: #c70;
}
#_NAV {
position: absolute;
left: 0;
top: 0;
right: 0;
height: 2.3em;
background: #222;
border-bottom: 0.1em solid #555;
}
#_NAV, #_MENU, #_TREE {
user-select: none;
-o-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
}
#_CONTENT, #_LOADING {
position: absolute;
left: 0;
top: 2.4em;
right: 0;
bottom: 0;
}
#_LOADING {
background: #000;
opacity: 0.9;
z-index: 2;
text-align: center;
vertical-align: middle;
}
#_LOADING>span {
display: inline-block;
color: #fff;
font-size: 2em;
margin-top: 2em;
}
._NAV {
float: left;
padding: 0.2em 0.4em;
cursor: pointer;
}
._NAV._ON, ._NAV._ERROR {
border-top-left-radius: 0.5em;
border-top-right-radius: 0.5em;
}
#_NAV svg {
margin-top: 0.1em;
width: 1.7em;
height: 1.7em;
}
._NAV._ON {
background: #555;
}
#_EDITOR {
height: 100%;
}
._AREA, .CodeMirror {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: #000;
color: #ddd;
}
._AREA {
z-index: 3;
display: none;
overflow: auto;
top: -0.1em;
border: 0.1em solid #555;
background: #111;
}
#_MENU {
padding: 0.7em;
right: auto;
bottom: auto;
min-width: 24em;
}
#_MENU label>span {
margin: 0 0 0 0.5em;
}
#_MENU label {
display: block;
padding: 0.3em;
}
#_TREE {
padding: 0.5em;
right: auto;
min-width: 25em;
}
._ON {
display: block !important;
}
._DISABLED {
opacity: 0.2;
}
._HIDDEN {
display: none !important;
}
div._ITEM {
white-space: nowrap;
padding: 0.1em 0;
}
div._FILE, div._TREE {
padding-left: 1.6em;
}
div._ITEM:hover {
background: #222;
cursor: pointer;
}
#_TREE i._FOLDER,
i._PLUS, i._FILE {
display: inline-block;
width: 1.6em;
height: 1.6em;
vertical-align: middle;
}
i._FOLDER, i._FILE {
margin-right: 0.3em;
}
div._TREE {
display: none;
}
#_CONSOLE {
background: #000;
padding: 0.1em 0.3em;
}
#_CONSOLE>pre {
margin: 0;
}
#_CONSOLE>pre a {
text-decoration: none;
cursor: pointer;
}
#_CONSOLE>pre._LOG { color: #bbb; }
#_CONSOLE>pre._TRACE { color: #0ee; }
#_CONSOLE>pre._DEBUG {color: #e0e; }
#_CONSOLE>pre._INFO { color: #0b0; }
#_CONSOLE>pre._WARN { color: #ee0; }
#_CONSOLE>pre._ERROR { color: #e00; }
#_CONSOLE>pre._LOG a { border-bottom: solid 0.1em #444; }
#_CONSOLE>pre._TRACE a { border-bottom: solid 0.1em #066; }
#_CONSOLE>pre._DEBUG a { border-bottom: solid 0.1em #606; }
#_CONSOLE>pre._INFO a { border-bottom: solid 0.1em #060; }
#_CONSOLE>pre._WARN a { border-bottom: solid 0.1em #660; }
#_CONSOLE>pre._ERROR a { border-bottom: solid 0.1em #600; }
#_CONSOLE>pre._LOG a:hover { color: #ccc; }
#_CONSOLE>pre._TRACE a:hover { color: #0ff; }
#_CONSOLE>pre._DEBUG a:hover { color: #f0f; }
#_CONSOLE>pre._INFO a:hover { color: #0c0; }
#_CONSOLE>pre._WARN a:hover { color: #ff0; }
#_CONSOLE>pre._ERROR a:hover { color: #f00; }
#_CONSOLE__BUTTON._ERROR { background: #900; }
#_SEARCH_BOX {
position: absolute;
left: 13em;
right: 7.5em;
height: 1.8em;
padding: 0;
margin: 0.2em 0;
}
#_SEARCH_BOX svg {
position: absolute;
z-index: 2;
left: 0.1em;
}
#_SEARCH_BOX div {
position: relative;
width: 100%;
height: 100%;
}
#_SEARCH_BOX input {
width: 100%;
height: 100%;
border-radius: 1em;
border: 0.1em solid #555;
background: #333;
padding: 0 0.6em 0 2em;
outline: none;
color: #999;
/* transition: border 0.2s, width 0.2s, background 0.2s, color 0.2s; */
}
#_SEARCH_BOX input._FOCUS, #_SEARCH_RESULTS>div {
background: #eee;
color: #000;
border: 0.1em solid #fff;
}
#_SEARCH_RESULTS {
position: absolute;
z-index: 3;
top: -0.2em;
left: 0;
right: 0;
max-height: 90%;
overflow: auto;
}
#_SEARCH_RESULTS>div {
border-top: 0;
border-bottom: 0.1em solid #f8f8f8;
cursor: pointer;
padding: 0.3em 1em;
color: #666;
overflow: hidden;
font-size: 1.2em;
}
#_SEARCH_RESULTS>div>b {
color: #000;
}
#_SEARCH_RESULTS>div>i {
color: #666;
font-style: normal;
}
#_SEARCH_RESULTS>div:hover {
background: #fff;
}
#_AVATAR {
float: right;
width: 2em;
height: 2em;
margin: 0.1em;
border: 0.1em solid #999;
border-radius: 0.2em;
} | public/css/editor.css | * {
margin: 0;
border: 0;
padding: 0;
}
html {
height: 100%;
background: #000;
color: #fff;
overflow: hidden;
font-family: Arial;
font-size: 12px;
}
html, th, td {
}
#_LOGO {
margin: 0.2em 0.6em;
}
h1 {
position: absolute;
left: 2.4em;
top: 0.4em;
color: #25b;
text-shadow: 0.1em 0.1em #000;
font-size: 13px;
}
h1 b {
color: #c70;
}
body._MANAGER #_CONTENT {
padding: 1em 2.2em;
overflow: auto;
}
#_APPS {
margin: 0.5em 0;
}
._SCREEN {
display: none;
}
._ACTIVE {
display: block;
}
a._DISABLED {
color: #ccc;
}
fieldset {
padding: 0.4em 0;
}
form li {
clear: both;
margin: 0.4em 0;
list-style-type: none;
}
form label {
float: left;
width: 8em;
margin: 0.4em 0;
}
form legend {
display: block;
width: 100%;
font-size: 1.2em;
color: #666;
border-bottom: 1px solid #111;
padding-top: 0.4em;
margin-bottom: -0.2em;
}
input,
select,
textarea {
background: #111;
border: 1px solid #333;
color: #ccc;
border-radius: 0.2em;
margin: 0;
padding: 0.2em 0.4em;
outline: none;
}
button {
border: 1px solid #292;
border-radius: 0.5em;
padding: 0.5em 1em;
background: #050;
color: #fff;
font: bold 13px Arial;
text-shadow: 0.2em 0.2em #020;
cursor: pointer;
outline: none;
}
button:focus {
background: #090;
border-color: #6f6;
}
input:focus,
select:focus,
textarea:focus {
border-color: #999;
background: #222;
color: #fff;
}
input#name {
width: 10em;
}
input#port {
width: 4em;
}
td._CONTROLS {
padding: 0 0.2em;
}
i._CONTROL {
display: inline-block;
width: 20px;
height: 20px;
margin: 0.1em 0.3em;
cursor: pointer;
}
i._CONTROL:hover {
filter: brightness(1.5);
-webkit-filter: brightness(1.5);
-moz-filter: brightness(1.5);
-o-filter: brightness(1.5);
-ms-filter: brightness(1.5);
}
._SPIN {
-webkit-animation: _SPIN 2s infinite linear;
-moz-animation: _SPIN 2s infinite linear;
-o-animation: _SPIN 2s infinite linear;
animation: _SPIN 2s infinite linear;
}
@-moz-keyframes _SPIN {
0% { -moz-transform: rotate(0deg); }
100% { -moz-transform: rotate(359deg); }
}
@-webkit-keyframes _SPIN {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(359deg); }
}
@-o-keyframes _SPIN {
0% { -o-transform: rotate(0deg); }
100% { -o-transform: rotate(359deg); }
}
@-ms-keyframes _SPIN {
0% { -ms-transform: rotate(0deg); }
100% { -ms-transform: rotate(359deg); }
}
@keyframes _SPIN {
0% { transform: rotate(0deg); }
100% { transform: rotate(359deg); }
}
h2 {
font-weight: normal;
font-size: 16px;
margin: 0 0 0.4em;
color: #999;
}
h2 b {
font-weight: normal;
font-size: 13px;
color: #666;
}
table {
border-spacing: 1px;
margin: -1px;
}
th,
td {
padding: 0.3em 0.6em;
}
th {
background: #333;
text-align: left;
font-weight: bold;
}
td {
background: #111;
}
a {
color: #25b;
text-decoration: none;
cursor: pointer;
}
a:hover {
color: #c70;
}
#_NAV {
position: absolute;
left: 0;
top: 0;
right: 0;
height: 2.3em;
background: #222;
border-bottom: 0.1em solid #555;
}
#_NAV, #_MENU, #_TREE {
user-select: none;
-o-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
}
#_CONTENT, #_LOADING {
position: absolute;
left: 0;
top: 2.4em;
right: 0;
bottom: 0;
}
#_LOADING {
background: #000;
opacity: 0.9;
z-index: 2;
text-align: center;
vertical-align: middle;
}
#_LOADING>span {
display: inline-block;
color: #fff;
font-size: 2em;
margin-top: 2em;
}
._NAV {
float: left;
padding: 0.2em 0.4em;
cursor: pointer;
}
._NAV._ON, ._NAV._ERROR {
border-top-left-radius: 0.5em;
border-top-right-radius: 0.5em;
}
#_NAV svg {
margin-top: 0.1em;
width: 1.7em;
height: 1.7em;
}
._NAV._ON {
background: #555;
}
#_EDITOR {
height: 100%;
}
._AREA, .CodeMirror {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: #000;
color: #ddd;
}
._AREA {
z-index: 3;
display: none;
overflow: auto;
top: -0.1em;
border: 0.1em solid #555;
background: #111;
}
#_MENU {
padding: 0.7em;
right: auto;
bottom: auto;
min-width: 24em;
}
#_MENU label>span {
margin: 0 0 0 0.5em;
}
#_MENU label {
display: block;
padding: 0.3em;
}
#_TREE {
padding: 0.5em;
right: auto;
min-width: 25em;
}
._ON {
display: block !important;
}
._DISABLED {
opacity: 0.2;
}
._HIDDEN {
display: none !important;
}
div._ITEM {
white-space: nowrap;
padding: 0.1em 0;
}
div._FILE, div._TREE {
padding-left: 1.6em;
}
div._ITEM:hover {
background: #222;
cursor: pointer;
}
#_TREE i._FOLDER,
i._PLUS, i._FILE {
display: inline-block;
width: 1.6em;
height: 1.6em;
vertical-align: middle;
}
i._FOLDER, i._FILE {
margin-right: 0.3em;
}
div._TREE {
display: none;
}
#_CONSOLE {
background: #000;
padding: 0.1em 0.3em;
}
#_CONSOLE>pre {
margin: 0;
}
#_CONSOLE>pre a {
text-decoration: none;
cursor: pointer;
}
#_CONSOLE>pre._LOG { color: #bbb; }
#_CONSOLE>pre._TRACE { color: #0ee; }
#_CONSOLE>pre._DEBUG {color: #e0e; }
#_CONSOLE>pre._INFO { color: #0b0; }
#_CONSOLE>pre._WARN { color: #ee0; }
#_CONSOLE>pre._ERROR { color: #e00; }
#_CONSOLE>pre._LOG a { border-bottom: solid 0.1em #444; }
#_CONSOLE>pre._TRACE a { border-bottom: solid 0.1em #066; }
#_CONSOLE>pre._DEBUG a { border-bottom: solid 0.1em #606; }
#_CONSOLE>pre._INFO a { border-bottom: solid 0.1em #060; }
#_CONSOLE>pre._WARN a { border-bottom: solid 0.1em #660; }
#_CONSOLE>pre._ERROR a { border-bottom: solid 0.1em #600; }
#_CONSOLE>pre._LOG a:hover { color: #ccc; }
#_CONSOLE>pre._TRACE a:hover { color: #0ff; }
#_CONSOLE>pre._DEBUG a:hover { color: #f0f; }
#_CONSOLE>pre._INFO a:hover { color: #0c0; }
#_CONSOLE>pre._WARN a:hover { color: #ff0; }
#_CONSOLE>pre._ERROR a:hover { color: #f00; }
#_CONSOLE__BUTTON._ERROR { background: #900; }
#_SEARCH_BOX {
position: absolute;
left: 13em;
right: 7.5em;
height: 1.8em;
padding: 0;
margin: 0.2em 0;
}
#_SEARCH_BOX svg {
position: absolute;
z-index: 2;
left: 0.1em;
}
#_SEARCH_BOX div {
position: relative;
width: 100%;
height: 100%;
}
#_SEARCH_BOX input {
width: 100%;
height: 100%;
border-radius: 1em;
border: 0.1em solid #555;
background: #333;
padding: 0 0.6em 0 2em;
outline: none;
color: #999;
/* transition: border 0.2s, width 0.2s, background 0.2s, color 0.2s; */
}
#_SEARCH_BOX input._FOCUS, #_SEARCH_RESULTS>div {
background: #eee;
color: #000;
border: 0.1em solid #fff;
}
#_SEARCH_RESULTS {
position: absolute;
z-index: 3;
top: -0.2em;
left: 0;
right: 0;
max-height: 90%;
overflow: auto;
}
#_SEARCH_RESULTS>div {
border-top: 0;
border-bottom: 0.1em solid #f8f8f8;
cursor: pointer;
padding: 0.3em 1em;
color: #666;
overflow: hidden;
font-size: 1.2em;
}
#_SEARCH_RESULTS>div>b {
color: #000;
}
#_SEARCH_RESULTS>div>i {
color: #666;
font-style: normal;
}
#_SEARCH_RESULTS>div:hover {
background: #fff;
}
#_AVATAR {
float: right;
width: 2em;
height: 2em;
margin: 0.1em;
border: 0.1em solid #999;
border-radius: 0.2em;
} | 0.262653 | 0.062331 |
h1{font-family:'Pinyon Script',cursive;padding:10 0 0 0;color:wheat;font-size:30px;font-weight:700;text-align:center}
h3{text-align:center;margin:0 auto;color:#000;background-color:#66cdaa;padding:10px;font-size:28px}
h5{margin-left:30px;text-decoration:underline;font-size:30px;color:#fff8dc;font-weight:700;margin-top:0;font-family:'Bree Serif',serif}
p{color:#faebd7;font-size:20px;margin:20px}
#mydiv{position: relative;background-color:#66cdaa;text-align:center;display:flex;flex-direction:column;border:1px solid #d3d3d3;margin-bottom: 100px; width: 40%;}
#mydivheader{padding:10px;cursor:move;z-index:10;background-color:#2196f3;color:#fff}
#mydivheader:hover{cursor:grabbing}
form{width:100%;padding: 5%;}
@media screen and (min-width:320px){.head{
box-shadow:0 8px 4px -4px #000;text-align:center;display:flex;justify-content:space-between;flex-direction:column}
.head h1{font-size:40px;align-self:40%;padding:10 0 0 10;margin-right:20px}
.head .nav{justify-content:flex-end;display:flex;flex-direction:row;align-self:flex-end;align-items:flex-end}.nav a{padding:20px}
.projects{width:100%}.project-flex div{flex-direction:column;max-width:100%;justify-content:space-around}
.project-flex div img{min-width:100%;height:auto;margin:10 auto}
}
@media screen and (min-width:675px){
.head h1{font-size:50px}
.head{flex-direction:row}
#div-1{justify-content:space-between;align-items:flex-start}
img{margin-top:30px;min-width:230px;height:auto;}
.projects{display:flex;flex-wrap:wrap;flex-direction:column;}
.project-flex{display:flex;flex-wrap:wrap;flex-direction:row}
.project-flex{width:90%;display:flex;flex-wrap:nowrap;flex-direction:row}
.project-flex div{display:flex;flex-wrap:nowrap;flex-direction:column;padding:6px;width:100%;height:auto;border-radius:5px;margin:1%}
.project-flex div img{max-width:100px;height:auto;margin:10 auto}
}
@media screen and (min-width:1024px){
.head{padding:0 5%}
.head h1{font-size:70px}
p{font-size:22px}
img{min-width:270px;height:auto}
.project-flex div img{max-width:180px;height:auto;margin:10 auto}
} | src/pages/contact.css | h1{font-family:'Pinyon Script',cursive;padding:10 0 0 0;color:wheat;font-size:30px;font-weight:700;text-align:center}
h3{text-align:center;margin:0 auto;color:#000;background-color:#66cdaa;padding:10px;font-size:28px}
h5{margin-left:30px;text-decoration:underline;font-size:30px;color:#fff8dc;font-weight:700;margin-top:0;font-family:'Bree Serif',serif}
p{color:#faebd7;font-size:20px;margin:20px}
#mydiv{position: relative;background-color:#66cdaa;text-align:center;display:flex;flex-direction:column;border:1px solid #d3d3d3;margin-bottom: 100px; width: 40%;}
#mydivheader{padding:10px;cursor:move;z-index:10;background-color:#2196f3;color:#fff}
#mydivheader:hover{cursor:grabbing}
form{width:100%;padding: 5%;}
@media screen and (min-width:320px){.head{
box-shadow:0 8px 4px -4px #000;text-align:center;display:flex;justify-content:space-between;flex-direction:column}
.head h1{font-size:40px;align-self:40%;padding:10 0 0 10;margin-right:20px}
.head .nav{justify-content:flex-end;display:flex;flex-direction:row;align-self:flex-end;align-items:flex-end}.nav a{padding:20px}
.projects{width:100%}.project-flex div{flex-direction:column;max-width:100%;justify-content:space-around}
.project-flex div img{min-width:100%;height:auto;margin:10 auto}
}
@media screen and (min-width:675px){
.head h1{font-size:50px}
.head{flex-direction:row}
#div-1{justify-content:space-between;align-items:flex-start}
img{margin-top:30px;min-width:230px;height:auto;}
.projects{display:flex;flex-wrap:wrap;flex-direction:column;}
.project-flex{display:flex;flex-wrap:wrap;flex-direction:row}
.project-flex{width:90%;display:flex;flex-wrap:nowrap;flex-direction:row}
.project-flex div{display:flex;flex-wrap:nowrap;flex-direction:column;padding:6px;width:100%;height:auto;border-radius:5px;margin:1%}
.project-flex div img{max-width:100px;height:auto;margin:10 auto}
}
@media screen and (min-width:1024px){
.head{padding:0 5%}
.head h1{font-size:70px}
p{font-size:22px}
img{min-width:270px;height:auto}
.project-flex div img{max-width:180px;height:auto;margin:10 auto}
} | 0.143188 | 0.057229 |
:root {
font-size: 16px;
--button-primary: #fa8231;
--button-secondary: #8854d0;
--button-secondary2: #a55eea;
--button-tertiary: #20bf6b;
--gray-text-bg: #393939;
--menu-color: #1d1d1d;
--white-text-bg: #ffffff;
}
body {
margin: 0;
padding: 0;
overflow-x: hidden;
}
body::-webkit-scrollbar {
width: 0.3rem;
}
body::-webkit-scrollbar-track {
background: var(--menu-color);
}
body::-webkit-scrollbar-thumb {
background: var(--button-secondary);
}
/*Parte inicial do site*/
main {
margin-left: 5rem;
width: math(100% - 5rem);
}
.navbar {
width: 5rem;
height: 100vh;
position: fixed;
background-color: var(--menu-color);
}
.init {
width: math(100% - 5rem);
height:100vh;
padding: 1rem 1rem 1rem 3.5rem;
background-color: var(--gray-text-bg);
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 2fr 1fr;
grid-template-areas: "intro terminal" "buttons terminal";
}
.text-init {
display: flex;
flex-direction: column;
justify-content: center;
}
.init>div>h1{
font-size: 8rem;
font-family:"Arial";
color: var(--white-text-bg);
display: flex;
grid-area: intro;
}
.init>div>h4{
font-size: 1rem;
color:var(--white-text-bg);
grid-area: intro;
}
.buttons-init {
grid-area: buttons;
display: flex;
align-items: center;
justify-content: end;
}
.terminal {
grid-area: terminal;
}
.init>div>button{
border-radius: 10rem;
background-color: transparent;
width: 14rem;
height:3.5rem;
font-size: 2rem;
color:var(--white-text-bg);
}
.sobre-bt{
margin-right: 8rem;
border: solid 0.4rem;
border-color: var(--button-primary);
}
.projeto-bt {
border: solid 0.4rem;
border-color: var(--button-secondary);
}
.terminal {
display: flex;
flex-direction: center;
align-items: center;
}
/* Parte sobre o labmati */
.about {
height: 100vh;
padding: 1rem 1rem 1rem 3.5rem;
width: math(100% - 5rem);
}
.about>h2 {
font-family: "Montserrat";
font-weight: 800;
font-size: 4rem;
}
.about>h2>img {
width: 2rem;
height: 2rem;
border-color: var(--button-secondary);
}
.about p {
max-width: 70rem;
flex-direction: center;
align-items: center;
margin-left: 3rem;
}
/* Parte de projetos*/
.projects {
height: 100vh;
padding: 1rem 1rem 1rem 3.5rem;
width: math(100% - 5rem);
background-color: red;
}
/*Parte de contato */
.contact {
height: 100vh;
padding: 1rem 1rem 1rem 3.5rem;
width: math(100% - 5rem);
background-color: blue;
}
form {
font-family: Verdana,Tahoma,sans-serif;
font-size: 15px;
background-color: #CC3300;
max-width: 500px;
}
.contact h1 {
margin-bottom: 20px;
margin-left: 20px;
color: #66FFFF;
}
input, textarea {
width: 200px;
padding: 10px;
color: black;
margin-left: 20px;
margin-top: 10px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border: 1px solid;
}
input:hover, textarea:hover, input:focus, textarea:focus {
border-color: #000066;
box-shadow: 5px 0px 9px #FFFF00;
background-color: #66FFFF;
color: black;
font-weight: bold;
}
.enviar {
background-color: #66FFFF;
height: 40px;
width: 100px;
font-weight: bold;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border: 1px solid;
color: black;
}
textarea {
width: 400px;
height: 120px;
line-height: 20px;
max-width: 400px;
}
form label {
margin-left: 20px;
color: #FFFFFF;
font-weight: bold;
} | styles/styles.css | :root {
font-size: 16px;
--button-primary: #fa8231;
--button-secondary: #8854d0;
--button-secondary2: #a55eea;
--button-tertiary: #20bf6b;
--gray-text-bg: #393939;
--menu-color: #1d1d1d;
--white-text-bg: #ffffff;
}
body {
margin: 0;
padding: 0;
overflow-x: hidden;
}
body::-webkit-scrollbar {
width: 0.3rem;
}
body::-webkit-scrollbar-track {
background: var(--menu-color);
}
body::-webkit-scrollbar-thumb {
background: var(--button-secondary);
}
/*Parte inicial do site*/
main {
margin-left: 5rem;
width: math(100% - 5rem);
}
.navbar {
width: 5rem;
height: 100vh;
position: fixed;
background-color: var(--menu-color);
}
.init {
width: math(100% - 5rem);
height:100vh;
padding: 1rem 1rem 1rem 3.5rem;
background-color: var(--gray-text-bg);
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 2fr 1fr;
grid-template-areas: "intro terminal" "buttons terminal";
}
.text-init {
display: flex;
flex-direction: column;
justify-content: center;
}
.init>div>h1{
font-size: 8rem;
font-family:"Arial";
color: var(--white-text-bg);
display: flex;
grid-area: intro;
}
.init>div>h4{
font-size: 1rem;
color:var(--white-text-bg);
grid-area: intro;
}
.buttons-init {
grid-area: buttons;
display: flex;
align-items: center;
justify-content: end;
}
.terminal {
grid-area: terminal;
}
.init>div>button{
border-radius: 10rem;
background-color: transparent;
width: 14rem;
height:3.5rem;
font-size: 2rem;
color:var(--white-text-bg);
}
.sobre-bt{
margin-right: 8rem;
border: solid 0.4rem;
border-color: var(--button-primary);
}
.projeto-bt {
border: solid 0.4rem;
border-color: var(--button-secondary);
}
.terminal {
display: flex;
flex-direction: center;
align-items: center;
}
/* Parte sobre o labmati */
.about {
height: 100vh;
padding: 1rem 1rem 1rem 3.5rem;
width: math(100% - 5rem);
}
.about>h2 {
font-family: "Montserrat";
font-weight: 800;
font-size: 4rem;
}
.about>h2>img {
width: 2rem;
height: 2rem;
border-color: var(--button-secondary);
}
.about p {
max-width: 70rem;
flex-direction: center;
align-items: center;
margin-left: 3rem;
}
/* Parte de projetos*/
.projects {
height: 100vh;
padding: 1rem 1rem 1rem 3.5rem;
width: math(100% - 5rem);
background-color: red;
}
/*Parte de contato */
.contact {
height: 100vh;
padding: 1rem 1rem 1rem 3.5rem;
width: math(100% - 5rem);
background-color: blue;
}
form {
font-family: Verdana,Tahoma,sans-serif;
font-size: 15px;
background-color: #CC3300;
max-width: 500px;
}
.contact h1 {
margin-bottom: 20px;
margin-left: 20px;
color: #66FFFF;
}
input, textarea {
width: 200px;
padding: 10px;
color: black;
margin-left: 20px;
margin-top: 10px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border: 1px solid;
}
input:hover, textarea:hover, input:focus, textarea:focus {
border-color: #000066;
box-shadow: 5px 0px 9px #FFFF00;
background-color: #66FFFF;
color: black;
font-weight: bold;
}
.enviar {
background-color: #66FFFF;
height: 40px;
width: 100px;
font-weight: bold;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border: 1px solid;
color: black;
}
textarea {
width: 400px;
height: 120px;
line-height: 20px;
max-width: 400px;
}
form label {
margin-left: 20px;
color: #FFFFFF;
font-weight: bold;
} | 0.388502 | 0.119717 |
body{
margin: 0;
background-color: #1a191f !important;
}
.page-content {
width: 100%;
display: flex;
display: -webkit-flex;
justify-content: center;
-o-justify-content: center;
-ms-justify-content: center;
-moz-justify-content: center;
-webkit-justify-content: center;
}
.sign-content {
width: 800px;
-webkit-box-shadow: 0px 11px 42px -2px rgba(0,0,0,0.57);
-moz-box-shadow: 0px 11px 42px -2px rgba(0,0,0,0.57);
box-shadow: 0px 11px 42px -2px rgba(0,0,0,0.57);
background-color: #1a191f;
}
.sign-content h2 {
font-weight: 700;
font-size: 30px;
padding: 6px 0 0;
margin-bottom: 34px;
}
.sign-content .form-left {
padding: 20px 40px;
background: #FD6060;
color: #fff;
}
.sign-content .form-left p {
font-size: 14px;
font-weight: 300;
line-height: 1.8;
}
.sign-content .form-left span {
font-weight: 700;
}
.sign-content .form-left .text-2 {
margin: 20px 0 25px;
}
.sign-content .form-left .account {
background: #fff;
width: 180px;
border: none;
margin: 15px 0 50px 0px;
padding: 12px 8px;
cursor: pointer;
color: #333;
font-weight: 700;
font-size: 14px;
appearance: unset;
-moz-appearance: unset;
-webkit-appearance: unset;
-o-appearance: unset;
-ms-appearance: unset;
outline: none;
-moz-outline: none;
-webkit-outline: none;
-o-outline: none;
-ms-outline: none;
}
.sign-content .form-left .account:hover {
background: #e5e5e5;
}
.sign-content .form-left .form-left-last input {
padding: 15px;
}
.sign-content .form-detail {
padding: 20px 40px;
position: relative;
}
.sign-content .form-detail h2 {
color: #FD6060;
}
.sign-content .form-detail .form-group {
display: flex;
display: -webkit-flex;
margin: 0 -8px;
}
.sign-content .form-detail .form-row {
width: 100%;
position: relative;
}
.sign-content .form-detail .form-group .form-row.form-row-1 {
width: 50%;
padding: 0 8px;
}
.sign-content .form-detail label {
font-weight: 300;
font-size: 14px;
color: whitesmoke;
margin-bottom: 8px;
}
.sign-content .form-detail .form-row label#valid {
position: absolute;
right: 20px;
top: 50%;
transform: translateY(-50%);
-o-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-webkit-transform: translateY(-50%);
width: 14px;
height: 14px;
border-radius: 50%;
-o-border-radius: 50%;
-ms-border-radius: 50%;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
background: #53c83c;
}
.sign-content .form-detail .form-row label#valid::after {
content: "";
position: absolute;
left: 5px;
top: 1px;
width: 3px;
height: 8px;
border: 1px solid #fff;
border-width: 0 2px 2px 0;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
-moz-transform: rotate(45deg);
transform: rotate(45deg);
}
.sign-content .form-detail .form-row label.error {
padding-left: 0;
margin-left: 0;
display: block;
position: absolute;
bottom: -5px;
width: 100%;
background: none;
color: red;
}
.sign-content .form-detail .input-text {
margin-bottom: 27px;
}
.sign-content .form-detail input[type="text"],.sign-content .form-detail input[type="password"] {
width: 100%;
padding: 11.5px 15px;
border: 1px solid transparent;
appearance: unset;
-moz-appearance: unset;
-webkit-appearance: unset;
-o-appearance: unset;
-ms-appearance: unset;
outline: none;
-moz-outline: none;
-webkit-outline: none;
-o-outline: none;
-ms-outline: none;
font-size: 14px;
background-color:rgba(210,201,255,0.04);
color: whitesmoke;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
}
.sign-content .form-detail .form-row input:focus {
border: 1px solid #FD6060;
}
.sign-content .form-detail .form-checkbox p {
color: white;
font-size: 14px;
font-weight: 300;
}
.sign-content .form-detail .form-checkbox .text {
font-weight: 700;
color: #FD6060;
text-decoration: underline;
}
/* Base for label styling */
.form-checkbox [type="checkbox"]:not(:checked),
.form-checkbox [type="checkbox"]:checked {
position: absolute;
left: -9999px;
}
.form-checkbox [type="checkbox"]:not(:checked) + label,
.form-checkbox [type="checkbox"]:checked + label {
position: relative;
padding-left: 1.95em;
cursor: pointer;
}
/* checkbox aspect */
.form-checkbox [type="checkbox"]:not(:checked) + label:before,
.form-checkbox [type="checkbox"]:checked + label:before {
content: '';
position: absolute;
left: 0; top: 0;
width: 1.25em; height: 1.25em;
border: 2px solid #ccc;
background: transparent;
border-radius: 4px;
border: 1px solid #fd6060;
}
.form-checkbox [type="checkbox"]:checked + label:before {
border: none;
}
/* checked mark aspect */
.form-checkbox [type="checkbox"]:not(:checked) + label:after,
.form-checkbox [type="checkbox"]:checked + label:after {
content: '\2713\0020';
position: absolute;
top: .15em; left: .22em;
font-size: 1.3em;
line-height: 0.8;
color: #fd6060;
transition: all .2s;
}
/* checked mark aspect changes */
.form-checkbox [type="checkbox"]:not(:checked) + label:after {
opacity: 0;
transform: scale(0);
}
.form-checkbox [type="checkbox"]:checked + label:after {
opacity: 1;
transform: scale(1);
}
/* accessibility */
.form-checkbox [type="checkbox"]:checked:focus + label:before,
.form-checkbox [type="checkbox"]:not(:checked):focus + label:before {
border: none;
}
.form-checkbox [type="checkbox"]:not(:checked):focus + label:before {
border: 1px solid #fd6060;
}
.sign-content .form-detail .register {
background: rgba(210,201,255,0.04);
width: 130px;
border: none;
margin: 6px 0 50px 0px;
cursor: pointer;
color: #fff;
font-size: 14px;
} | dist/css/style.css | body{
margin: 0;
background-color: #1a191f !important;
}
.page-content {
width: 100%;
display: flex;
display: -webkit-flex;
justify-content: center;
-o-justify-content: center;
-ms-justify-content: center;
-moz-justify-content: center;
-webkit-justify-content: center;
}
.sign-content {
width: 800px;
-webkit-box-shadow: 0px 11px 42px -2px rgba(0,0,0,0.57);
-moz-box-shadow: 0px 11px 42px -2px rgba(0,0,0,0.57);
box-shadow: 0px 11px 42px -2px rgba(0,0,0,0.57);
background-color: #1a191f;
}
.sign-content h2 {
font-weight: 700;
font-size: 30px;
padding: 6px 0 0;
margin-bottom: 34px;
}
.sign-content .form-left {
padding: 20px 40px;
background: #FD6060;
color: #fff;
}
.sign-content .form-left p {
font-size: 14px;
font-weight: 300;
line-height: 1.8;
}
.sign-content .form-left span {
font-weight: 700;
}
.sign-content .form-left .text-2 {
margin: 20px 0 25px;
}
.sign-content .form-left .account {
background: #fff;
width: 180px;
border: none;
margin: 15px 0 50px 0px;
padding: 12px 8px;
cursor: pointer;
color: #333;
font-weight: 700;
font-size: 14px;
appearance: unset;
-moz-appearance: unset;
-webkit-appearance: unset;
-o-appearance: unset;
-ms-appearance: unset;
outline: none;
-moz-outline: none;
-webkit-outline: none;
-o-outline: none;
-ms-outline: none;
}
.sign-content .form-left .account:hover {
background: #e5e5e5;
}
.sign-content .form-left .form-left-last input {
padding: 15px;
}
.sign-content .form-detail {
padding: 20px 40px;
position: relative;
}
.sign-content .form-detail h2 {
color: #FD6060;
}
.sign-content .form-detail .form-group {
display: flex;
display: -webkit-flex;
margin: 0 -8px;
}
.sign-content .form-detail .form-row {
width: 100%;
position: relative;
}
.sign-content .form-detail .form-group .form-row.form-row-1 {
width: 50%;
padding: 0 8px;
}
.sign-content .form-detail label {
font-weight: 300;
font-size: 14px;
color: whitesmoke;
margin-bottom: 8px;
}
.sign-content .form-detail .form-row label#valid {
position: absolute;
right: 20px;
top: 50%;
transform: translateY(-50%);
-o-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-webkit-transform: translateY(-50%);
width: 14px;
height: 14px;
border-radius: 50%;
-o-border-radius: 50%;
-ms-border-radius: 50%;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
background: #53c83c;
}
.sign-content .form-detail .form-row label#valid::after {
content: "";
position: absolute;
left: 5px;
top: 1px;
width: 3px;
height: 8px;
border: 1px solid #fff;
border-width: 0 2px 2px 0;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
-moz-transform: rotate(45deg);
transform: rotate(45deg);
}
.sign-content .form-detail .form-row label.error {
padding-left: 0;
margin-left: 0;
display: block;
position: absolute;
bottom: -5px;
width: 100%;
background: none;
color: red;
}
.sign-content .form-detail .input-text {
margin-bottom: 27px;
}
.sign-content .form-detail input[type="text"],.sign-content .form-detail input[type="password"] {
width: 100%;
padding: 11.5px 15px;
border: 1px solid transparent;
appearance: unset;
-moz-appearance: unset;
-webkit-appearance: unset;
-o-appearance: unset;
-ms-appearance: unset;
outline: none;
-moz-outline: none;
-webkit-outline: none;
-o-outline: none;
-ms-outline: none;
font-size: 14px;
background-color:rgba(210,201,255,0.04);
color: whitesmoke;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
}
.sign-content .form-detail .form-row input:focus {
border: 1px solid #FD6060;
}
.sign-content .form-detail .form-checkbox p {
color: white;
font-size: 14px;
font-weight: 300;
}
.sign-content .form-detail .form-checkbox .text {
font-weight: 700;
color: #FD6060;
text-decoration: underline;
}
/* Base for label styling */
.form-checkbox [type="checkbox"]:not(:checked),
.form-checkbox [type="checkbox"]:checked {
position: absolute;
left: -9999px;
}
.form-checkbox [type="checkbox"]:not(:checked) + label,
.form-checkbox [type="checkbox"]:checked + label {
position: relative;
padding-left: 1.95em;
cursor: pointer;
}
/* checkbox aspect */
.form-checkbox [type="checkbox"]:not(:checked) + label:before,
.form-checkbox [type="checkbox"]:checked + label:before {
content: '';
position: absolute;
left: 0; top: 0;
width: 1.25em; height: 1.25em;
border: 2px solid #ccc;
background: transparent;
border-radius: 4px;
border: 1px solid #fd6060;
}
.form-checkbox [type="checkbox"]:checked + label:before {
border: none;
}
/* checked mark aspect */
.form-checkbox [type="checkbox"]:not(:checked) + label:after,
.form-checkbox [type="checkbox"]:checked + label:after {
content: '\2713\0020';
position: absolute;
top: .15em; left: .22em;
font-size: 1.3em;
line-height: 0.8;
color: #fd6060;
transition: all .2s;
}
/* checked mark aspect changes */
.form-checkbox [type="checkbox"]:not(:checked) + label:after {
opacity: 0;
transform: scale(0);
}
.form-checkbox [type="checkbox"]:checked + label:after {
opacity: 1;
transform: scale(1);
}
/* accessibility */
.form-checkbox [type="checkbox"]:checked:focus + label:before,
.form-checkbox [type="checkbox"]:not(:checked):focus + label:before {
border: none;
}
.form-checkbox [type="checkbox"]:not(:checked):focus + label:before {
border: 1px solid #fd6060;
}
.sign-content .form-detail .register {
background: rgba(210,201,255,0.04);
width: 130px;
border: none;
margin: 6px 0 50px 0px;
cursor: pointer;
color: #fff;
font-size: 14px;
} | 0.253122 | 0.039306 |
body {
/*http://www.artsfon.com/pic/201502/2560x1600/artsfon.com-55149.jpg*/
background-color: black !important;
background: black url("../img/wine.jpg") no-repeat center;
background-size: auto 100%;
background-attachment: fixed;
}
h3 {
text-align: center;
}
.headerText{
color:#4c0404;
}
.footerText{
color:white;
}
.rangeslider--vertical {
margin: 5px auto;
}
.rangeslider__fill {
background: #4c0404;
position: absolute;
}
.rangeslider--vertical {
width: 10px;
min-height: 150px;
max-height: 100%;
}
.rangeslider__handle {
background: white;
border: 1px solid #ccc;
cursor: pointer;
display: inline-block;
width: 30px;
height: 30px;
position: absolute;
background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4xIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
background-size: 100%;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(0, 0, 0, 0.1)));
background-image: -moz-linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
-moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
}
.rangeslider__handle:after {
content: "";
display: block;
width: 8px;
height: 8px;
margin: auto;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-image: url('data:image/svg+xml;base64,<KEY>');
background-size: 100%;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0.13)), color-stop(100%, rgba(255, 255, 255, 0)));
background-image: -moz-linear-gradient(rgba(0, 0, 0, 0.13), rgba(255, 255, 255, 0));
background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.13), rgba(255, 255, 255, 0));
background-image: linear-gradient(rgba(0, 0, 0, 0.13), rgba(255, 255, 255, 0));
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
} | css/app.css | body {
/*http://www.artsfon.com/pic/201502/2560x1600/artsfon.com-55149.jpg*/
background-color: black !important;
background: black url("../img/wine.jpg") no-repeat center;
background-size: auto 100%;
background-attachment: fixed;
}
h3 {
text-align: center;
}
.headerText{
color:#4c0404;
}
.footerText{
color:white;
}
.rangeslider--vertical {
margin: 5px auto;
}
.rangeslider__fill {
background: #4c0404;
position: absolute;
}
.rangeslider--vertical {
width: 10px;
min-height: 150px;
max-height: 100%;
}
.rangeslider__handle {
background: white;
border: 1px solid #ccc;
cursor: pointer;
display: inline-block;
width: 30px;
height: 30px;
position: absolute;
background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4xIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
background-size: 100%;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(0, 0, 0, 0.1)));
background-image: -moz-linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
-moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
}
.rangeslider__handle:after {
content: "";
display: block;
width: 8px;
height: 8px;
margin: auto;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-image: url('data:image/svg+xml;base64,<KEY>');
background-size: 100%;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0.13)), color-stop(100%, rgba(255, 255, 255, 0)));
background-image: -moz-linear-gradient(rgba(0, 0, 0, 0.13), rgba(255, 255, 255, 0));
background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.13), rgba(255, 255, 255, 0));
background-image: linear-gradient(rgba(0, 0, 0, 0.13), rgba(255, 255, 255, 0));
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
} | 0.380183 | 0.12062 |
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap');
*{
box-sizing: border-box;
margin: 0;
padding: 0;
-webkit-font-smoothing:antialiased;
}
body{
align-items: center;
background: #974fe4;
color: #fff;
display: flex;
font: 30px 'Lato', arial, sans-serif;
flex-flow: column nowrap;
height: 100vh;
justify-content: center;
width: 100vw;
}
.note{
font-size: 0.375em;
font-weight: bold;
text-transform: uppercase;
color: #6426a7;
}
#search{
align-items: center;
background: #8a44d5;
border-radius: 10px;
display: flex;
justify-content: space-between;
margin: 0.5em 0;
padding: 0.5em 0.5em 0.5em 1em;
transition: all 0.5s;
width: 500px;
}
#search:hover,
#search:focus{
background: #853cd3;
}
#search button,
#search input{
appearance: none;
background: transparent;
border: 0;
color: inherit;
font: inherit;
outline: 0;
}
#search button{
cursor: pointer;
padding: 0 0.25em;
}
#search input{
flex: 1;
}
#search input::placeholder{
color: #fff;
}
#search .spinner{
animation: spinner 1s infinite linear;
display: none;
padding: 0 0.25em;
}
#search.loading button{
display: none;
}
#search.loading .spinner{
display: block;
}
@keyframes spinner {
0%{
transform: rotate(0deg);
}
100%{
transform: rotate(360deg);
}
}
/*Barra de Navegação*/
.nav {
display: flex;
align-content: center;
position: fixed;
bottom: 0;
left: auto;
}
.nav .icon{
position: relative;
background-color: #ffffff;
border-radius: 50%;
padding: 15px;
margin: 10px;
width: 50px;
height: 50px;
font-size: 18px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
cursor: pointer;
transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.nav .tooltip{
z-index: 1000;
position: absolute;
top: 0;
font-size: 14px;
background-color: #ffffff;
color: #ffffff;
padding: 5px 8px;
border-radius: 5px;
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
opacity: 0;
pointer-events: none;
transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.nav .icon:hover .tooltip{
top: -45px;
opacity: 1;
visibility: visible;
pointer-events: auto;
}
.nav .tooltip::before{
position: absolute;
content: "";
height: 8px;
width: 8px;
background-color: #ffffff;
bottom: -3px;
left: 50%;
transform: translate(-50%) rotate(45deg);
transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);/*Pesquisar Cubic-Bezier*/
}
.nav a{
color: #050801;
}
.nav .icon:hover a,
.nav .icon:hover .tooltip{
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}
.nav .back:hover,
.nav .back:hover .tooltip,
.nav .back:hover .tooltip::before{
background-color: #3b00df;
color: #ffffff;
}
.nav .home:hover,
.nav .home:hover .tooltip,
.nav .home:hover .tooltip::before{
background-color: #0060df;
color: #ffffff;
}
.nav .next:hover,
.nav .next:hover .tooltip,
.nav .next:hover .tooltip::before{
background-color: #009fc7;
color: #ffffff;
} | Desafios/Dia_19/estilos.css | @import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap');
*{
box-sizing: border-box;
margin: 0;
padding: 0;
-webkit-font-smoothing:antialiased;
}
body{
align-items: center;
background: #974fe4;
color: #fff;
display: flex;
font: 30px 'Lato', arial, sans-serif;
flex-flow: column nowrap;
height: 100vh;
justify-content: center;
width: 100vw;
}
.note{
font-size: 0.375em;
font-weight: bold;
text-transform: uppercase;
color: #6426a7;
}
#search{
align-items: center;
background: #8a44d5;
border-radius: 10px;
display: flex;
justify-content: space-between;
margin: 0.5em 0;
padding: 0.5em 0.5em 0.5em 1em;
transition: all 0.5s;
width: 500px;
}
#search:hover,
#search:focus{
background: #853cd3;
}
#search button,
#search input{
appearance: none;
background: transparent;
border: 0;
color: inherit;
font: inherit;
outline: 0;
}
#search button{
cursor: pointer;
padding: 0 0.25em;
}
#search input{
flex: 1;
}
#search input::placeholder{
color: #fff;
}
#search .spinner{
animation: spinner 1s infinite linear;
display: none;
padding: 0 0.25em;
}
#search.loading button{
display: none;
}
#search.loading .spinner{
display: block;
}
@keyframes spinner {
0%{
transform: rotate(0deg);
}
100%{
transform: rotate(360deg);
}
}
/*Barra de Navegação*/
.nav {
display: flex;
align-content: center;
position: fixed;
bottom: 0;
left: auto;
}
.nav .icon{
position: relative;
background-color: #ffffff;
border-radius: 50%;
padding: 15px;
margin: 10px;
width: 50px;
height: 50px;
font-size: 18px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
cursor: pointer;
transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.nav .tooltip{
z-index: 1000;
position: absolute;
top: 0;
font-size: 14px;
background-color: #ffffff;
color: #ffffff;
padding: 5px 8px;
border-radius: 5px;
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
opacity: 0;
pointer-events: none;
transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.nav .icon:hover .tooltip{
top: -45px;
opacity: 1;
visibility: visible;
pointer-events: auto;
}
.nav .tooltip::before{
position: absolute;
content: "";
height: 8px;
width: 8px;
background-color: #ffffff;
bottom: -3px;
left: 50%;
transform: translate(-50%) rotate(45deg);
transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);/*Pesquisar Cubic-Bezier*/
}
.nav a{
color: #050801;
}
.nav .icon:hover a,
.nav .icon:hover .tooltip{
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}
.nav .back:hover,
.nav .back:hover .tooltip,
.nav .back:hover .tooltip::before{
background-color: #3b00df;
color: #ffffff;
}
.nav .home:hover,
.nav .home:hover .tooltip,
.nav .home:hover .tooltip::before{
background-color: #0060df;
color: #ffffff;
}
.nav .next:hover,
.nav .next:hover .tooltip,
.nav .next:hover .tooltip::before{
background-color: #009fc7;
color: #ffffff;
} | 0.420481 | 0.091342 |
*{font-weight: 300}
.chat-container{
padding: 0;
width: 100%;
height: 100%;
}
.chat-system{
padding: 8px 15px;
background-color: #e2e2e2;
border-radius: 3px;
color: #333;
word-break: break-all;
font-size: 13px;
cursor: pointer;
}
.chat-container .chat-header,.chat-container .chat-body{
position: absolute;
left: 0;
right: 0;
width: 100%
}
.chat-container .chat-header{
height: 60px;
background: #1E9FFF;
}
.chat-header .chat-header-avatar{
height: 100%;
}
.chat-header .chat-header-avatar .agent-avatar{
position: absolute;
top: 10px;
left: 10px;
width: 40px;
height: 40px;
border-radius: 20px;
box-shadow: 0 3px 3px 0 rgba(0,0,0,.1);
}
.chat-header .chat-header-title{
height: 100%;
line-height: 60px;
text-align: left;
color: #fff;
}
.chat-header .chat-header-tool{
height: 100%;
line-height: 60px;
color: #eee;
text-align: center;
cursor: pointer;
}
.chat-container .chat-body{
top: 60px;
bottom: 130px;
background-color: #fcfcfc;
}
.chat-container .chat-body .chat-box{
position: absolute;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
overflow-x: hidden;
overflow-y: auto;
word-wrap: break-word;
}
.chat-container .chat-footer{
position: absolute;
bottom: 25px;
left: 0;
right: 0;
width: 100%;
height: 130px;
background-color: #fff;
box-shadow: 0 -1px 0 0 rgba(0,0,0,.04), 0 -2px 0 0 rgba(0,0,0,.01);
}
.chat-container .copyright{
position:absolute;
bottom: 0;
left: 0;
width: 100%;
cursor: pointer;
background-color: #F7F7F7;
height: 25px;
line-height: 25px;
border-top: 1px solid #eee;
font-size: 12px;
text-align: center;
}
.clearfloat {
zoom: 1;
margin: 10px 10px;
}
.author-name {
text-align: center;
margin: 15px 0 5px 0;
color: #888;
}
.small-chat-box .chat-date {
opacity: .6;
font-size: 10px;
font-weight: 400;
}
.clearfloat .left .chat-avatars {
margin-right: 10px;
}
.clearfloat .chat-avatars {
display: inline-block;
width: 35px;
height: 35px;
border-radius: 50%;
background: #eee;
vertical-align: top;
overflow: hidden;
}
.clearfloat .chat-avatars>img {
width: 35px;
height: 35px;
}
img {
display: inline-block;
border: none;
vertical-align: middle;
}
.clearfloat .chat-message {
max-width: 252px;
padding: 8px 12px;
border-radius: 6px;
word-wrap: break-word;
display: inline-block;
position: relative;
}
.clearfloat .left .chat-message {
background: #e9f0ef;
min-height: 14px;
}
.clearfloat .left .chat-message:before {
border-right: 10px solid #e9f0ef;
}
.clearfloat .left .chat-message:before {
position: absolute;
content: "";
top: 8px;
left: -6px;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
}
.clearfloat .right {
text-align: right;
}
.clearfloat .right {
float: right;
}
.clearfloat .right .chat-message {
background: #01AAED;
color: #fff;
text-align: left;
min-height: 14px;
margin-right: 12px;
}
.clearfloat .right .chat-message:before {
position: absolute;
content: "";
top: 6px;
right: -6px;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
border-left: 10px solid #01AAED;
}
.chat-footer .text-holder {
height: 90px;
}
.chat-footer .text-holder #textarea {
display: block;
width: 92%;
height: 90px;
padding: 8px 10px;
overflow-x: hidden;
overflow-y: auto;
resize: none;
outline: 0;
background-color: #fff;
border: 0;
word-break: break-all;
font-size: 13px;
line-height: 17px;
-webkit-appearance: none;
}
.chat-footer .send-bar{
height: 40px;
}
.chat-footer .send-bar div{
float: left;
}
.chat-footer .send-bar .tool-box{
height: 100%;
width: 80%;
line-height: 40px;
text-align: left;
position: relative;
left: 10px;
}
.chat-footer .send-bar .tool-box i{
margin-left: 10px;
font-size: 20px;
color: #c2c2c2;
cursor: pointer;
}
.chat-footer .send-bar .send-btn-div{
height: 100%;
width: 20%;
}
.chat-footer .send-bar .send-btn-div .send-input{
display: block;
padding: 0;
margin-top: 4px;
margin-right: 10px;
width: 60px;
height: 30px;
font-size: 13px;
border: 0;
outline: none;
background-color: #f7f7f7;
border-radius: 3px;
color: #cfcfcf;
cursor: pointer;
text-align: center;
}
.chat-footer .send-bar .send-btn-div #sendBtn.active {
background-color: #1E9FFF;
color: #fff;
}
body .layui-whisper-face{
border: none;
background: none;
}
body .layui-whisper-face .layui-layer-content{
padding:0;
background-color:#fff;
color:#666;
box-shadow:none
}
.layui-whisper-face .layui-layer-TipsG{
display:none;
}
.layui-whisper-face ul{
position:relative;
width:372px;
padding:10px;
border:1px solid #D9D9D9;
background-color:#fff;
box-shadow: 0 0 20px rgba(0,0,0,.2);
}
.layui-whisper-face ul li{
cursor: pointer;
float: left;
border: 1px solid #e8e8e8;
height: 22px;
width: 26px;
overflow: hidden;
margin: -1px 0 0 -1px;
padding: 4px 2px;
text-align: center;
}
.layui-whisper-face ul li:hover{
position: relative;
z-index: 2;
border: 1px solid #eb7350;
background: #fff9ec;
}
.layui-unselect .close{
position: relative;
top: -24px;
left: 36px;
color:#2F4056
}
.server_status{
font-size: 13px;
float: right;
margin-right: 5px;
} | www/web/static/css/code/chat_mini.css | *{font-weight: 300}
.chat-container{
padding: 0;
width: 100%;
height: 100%;
}
.chat-system{
padding: 8px 15px;
background-color: #e2e2e2;
border-radius: 3px;
color: #333;
word-break: break-all;
font-size: 13px;
cursor: pointer;
}
.chat-container .chat-header,.chat-container .chat-body{
position: absolute;
left: 0;
right: 0;
width: 100%
}
.chat-container .chat-header{
height: 60px;
background: #1E9FFF;
}
.chat-header .chat-header-avatar{
height: 100%;
}
.chat-header .chat-header-avatar .agent-avatar{
position: absolute;
top: 10px;
left: 10px;
width: 40px;
height: 40px;
border-radius: 20px;
box-shadow: 0 3px 3px 0 rgba(0,0,0,.1);
}
.chat-header .chat-header-title{
height: 100%;
line-height: 60px;
text-align: left;
color: #fff;
}
.chat-header .chat-header-tool{
height: 100%;
line-height: 60px;
color: #eee;
text-align: center;
cursor: pointer;
}
.chat-container .chat-body{
top: 60px;
bottom: 130px;
background-color: #fcfcfc;
}
.chat-container .chat-body .chat-box{
position: absolute;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
overflow-x: hidden;
overflow-y: auto;
word-wrap: break-word;
}
.chat-container .chat-footer{
position: absolute;
bottom: 25px;
left: 0;
right: 0;
width: 100%;
height: 130px;
background-color: #fff;
box-shadow: 0 -1px 0 0 rgba(0,0,0,.04), 0 -2px 0 0 rgba(0,0,0,.01);
}
.chat-container .copyright{
position:absolute;
bottom: 0;
left: 0;
width: 100%;
cursor: pointer;
background-color: #F7F7F7;
height: 25px;
line-height: 25px;
border-top: 1px solid #eee;
font-size: 12px;
text-align: center;
}
.clearfloat {
zoom: 1;
margin: 10px 10px;
}
.author-name {
text-align: center;
margin: 15px 0 5px 0;
color: #888;
}
.small-chat-box .chat-date {
opacity: .6;
font-size: 10px;
font-weight: 400;
}
.clearfloat .left .chat-avatars {
margin-right: 10px;
}
.clearfloat .chat-avatars {
display: inline-block;
width: 35px;
height: 35px;
border-radius: 50%;
background: #eee;
vertical-align: top;
overflow: hidden;
}
.clearfloat .chat-avatars>img {
width: 35px;
height: 35px;
}
img {
display: inline-block;
border: none;
vertical-align: middle;
}
.clearfloat .chat-message {
max-width: 252px;
padding: 8px 12px;
border-radius: 6px;
word-wrap: break-word;
display: inline-block;
position: relative;
}
.clearfloat .left .chat-message {
background: #e9f0ef;
min-height: 14px;
}
.clearfloat .left .chat-message:before {
border-right: 10px solid #e9f0ef;
}
.clearfloat .left .chat-message:before {
position: absolute;
content: "";
top: 8px;
left: -6px;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
}
.clearfloat .right {
text-align: right;
}
.clearfloat .right {
float: right;
}
.clearfloat .right .chat-message {
background: #01AAED;
color: #fff;
text-align: left;
min-height: 14px;
margin-right: 12px;
}
.clearfloat .right .chat-message:before {
position: absolute;
content: "";
top: 6px;
right: -6px;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
border-left: 10px solid #01AAED;
}
.chat-footer .text-holder {
height: 90px;
}
.chat-footer .text-holder #textarea {
display: block;
width: 92%;
height: 90px;
padding: 8px 10px;
overflow-x: hidden;
overflow-y: auto;
resize: none;
outline: 0;
background-color: #fff;
border: 0;
word-break: break-all;
font-size: 13px;
line-height: 17px;
-webkit-appearance: none;
}
.chat-footer .send-bar{
height: 40px;
}
.chat-footer .send-bar div{
float: left;
}
.chat-footer .send-bar .tool-box{
height: 100%;
width: 80%;
line-height: 40px;
text-align: left;
position: relative;
left: 10px;
}
.chat-footer .send-bar .tool-box i{
margin-left: 10px;
font-size: 20px;
color: #c2c2c2;
cursor: pointer;
}
.chat-footer .send-bar .send-btn-div{
height: 100%;
width: 20%;
}
.chat-footer .send-bar .send-btn-div .send-input{
display: block;
padding: 0;
margin-top: 4px;
margin-right: 10px;
width: 60px;
height: 30px;
font-size: 13px;
border: 0;
outline: none;
background-color: #f7f7f7;
border-radius: 3px;
color: #cfcfcf;
cursor: pointer;
text-align: center;
}
.chat-footer .send-bar .send-btn-div #sendBtn.active {
background-color: #1E9FFF;
color: #fff;
}
body .layui-whisper-face{
border: none;
background: none;
}
body .layui-whisper-face .layui-layer-content{
padding:0;
background-color:#fff;
color:#666;
box-shadow:none
}
.layui-whisper-face .layui-layer-TipsG{
display:none;
}
.layui-whisper-face ul{
position:relative;
width:372px;
padding:10px;
border:1px solid #D9D9D9;
background-color:#fff;
box-shadow: 0 0 20px rgba(0,0,0,.2);
}
.layui-whisper-face ul li{
cursor: pointer;
float: left;
border: 1px solid #e8e8e8;
height: 22px;
width: 26px;
overflow: hidden;
margin: -1px 0 0 -1px;
padding: 4px 2px;
text-align: center;
}
.layui-whisper-face ul li:hover{
position: relative;
z-index: 2;
border: 1px solid #eb7350;
background: #fff9ec;
}
.layui-unselect .close{
position: relative;
top: -24px;
left: 36px;
color:#2F4056
}
.server_status{
font-size: 13px;
float: right;
margin-right: 5px;
} | 0.466116 | 0.054727 |
@charset "UTF-8";
html,
body {
height: 100%; }
h1,
h2,
h3,
h4 {
font-family: '黑体'; }
.map {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%; }
.left-side-bar {
position: absolute;
top: 0;
left: 0;
width: 20%;
height: 100%;
background-color: #fff;
box-shadow: 5px;
display: none; }
.right-side-bar {
position: absolute;
top: 0;
right: 0;
width: 20%;
height: 100%;
background-color: rgba(255, 255, 255, 0.5);
box-shadow: 5px;
padding: 10px; }
.right-side-bar .right-show-btn {
position: absolute;
top: 50%;
left: -30px; }
.bottom-side-bar {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 25%;
padding: 10px;
background-color: rgba(255, 255, 255, 0.5); }
.bottom-right-bar {
position: absolute;
bottom: 0;
right: 20%;
width: 80%;
height: 25%;
padding: 10px;
background-color: rgba(255, 255, 255, 0.5); }
.point-panel {
width: auto;
overflow: hidden;
position: relative;
background-color: #fff;
color: #3189f3;
font-weight: 900;
white-space: nowrap;
padding: 5px;
border: 1px solid #3189f3; }
.tip-panel {
width: auto;
overflow: hidden;
position: relative;
background-color: #ff3333;
color: #fff;
font-weight: 900;
white-space: nowrap;
padding: 10px; }
#bubbles {
height: 80%; }
.nation-btn {
position: absolute;
top: 25%;
left: 15px;
height: 80px;
width: 80px;
cursor: pointer;
background-color: #ff0000;
color: #fff; }
.globe-btn {
position: absolute;
top: 15%;
left: 15px;
height: 80px;
width: 80px;
cursor: pointer;
background-color: #143761;
color: #fff; }
.cooperate-btn {
position: absolute;
top: 35%;
left: 15px;
height: 80px;
width: 80px;
cursor: pointer;
background-color: #7fab20;
color: #fff; }
.ftz-btn {
position: absolute;
top: 45%;
left: 15px;
height: 80px;
width: 80px;
cursor: pointer;
background-color: #1ab3c5;
color: #fff; }
.left-menu {
position: absolute;
top: 10%;
left: 5px;
width: 100px;
height: 50%; }
.left-menu .rounded-wrap {
width: 80px;
height: 80px;
margin: 5px;
background-color: #fff;
cursor: pointer; }
.left-menu .rounded-wrap .rounded-content {
color: #fff; }
.left-menu #left-btn-1 {
background-color: #143761; }
.left-menu #left-btn-1:hover {
background-color: #395373; }
.left-menu #left-btn-2 {
background-color: #ff0000; }
.left-menu #left-btn-2:hover {
background-color: #fe6764; }
.left-menu #left-btn-3 {
background-color: #7fab20; }
.left-menu #left-btn-3:hover {
background-color: #a4c25f; }
.left-menu #left-btn-4 {
background-color: #edbe14; }
.left-menu #left-btn-4:hover {
background-color: #f1d056; }
.left-menu #left-btn-5 {
background-color: #1ab3c5; }
.left-menu #left-btn-5:hover {
background-color: #5dc8d2; }
.left-menu #left-btn-6 {
background-color: #ea8814; }
.left-menu #left-btn-6:hover {
background-color: #efaa56; }
.rounded-wrap {
display: table;
border-radius: 2000px; }
.rounded-content {
vertical-align: middle;
display: table-cell;
text-align: center; }
.port-panel {
display: none;
height: 100%; }
.port-panel .port-title {
position: absolute; }
.port-panel .port-title h1,
.port-panel .port-title h2 {
margin: 0;
padding: 0;
white-space: nowrap; }
.port-panel .port-box {
display: none;
position: absolute;
background-color: rgba(255, 255, 255, 0.9);
width: 80%;
height: 60%;
top: 8%;
left: 10%;
box-shadow: 1px 1px 10px #333; }
.port-panel .port-box .port-content {
padding: 10px;
height: 100%;
width: 100%; }
.port-panel .port-box .port-content .port-info {
height: 100%;
overflow-y: auto;
overflow-x: hidden; }
.port-panel .port-box .port-content .port-info .list-group-item .title {
width: 150px;
display: block;
float: left;
font-weight: 900; }
.port-panel .port-box .port-box-close-btn {
float: right;
display: block;
cursor: pointer;
margin-top: -15px;
margin-right: -15px; }
#nation .top-menu {
position: absolute;
top: 5px;
left: 10%;
width: 50%;
height: 100px; }
#nation .top-menu .rounded-wrap {
width: 80px;
height: 80px;
float: left;
margin: 5px;
background-color: #fff;
border: 6px solid #000;
cursor: pointer; }
#nation .top-menu .rounded-wrap .rounded-content {
color: #fff; }
#nation .top-menu #top-btn-1 {
background-color: #143761;
border-color: #2c4461; }
#nation .top-menu #top-btn-1:hover {
background-color: #2c4461;
border-color: #143761; }
#nation .top-menu #top-btn-2 {
background-color: #ff0000;
border-color: #fe6764; }
#nation .top-menu #top-btn-2:hover {
background-color: #fe6764;
border-color: #ff0000; }
#nation .top-menu #top-btn-3 {
background-color: #7fab20;
border-color: #a4c25f; }
#nation .top-menu #top-btn-3:hover {
background-color: #a4c25f;
border-color: #7fab20; }
#nation .top-menu #top-btn-4 {
background-color: #edbe14;
border-color: #f1d056; }
#nation .top-menu #top-btn-4:hover {
background-color: #f1d056;
border-color: #edbe14; }
#nation .top-menu #top-btn-5 {
background-color: #1ab3c5;
border-color: #5dc8d2; }
#nation .top-menu #top-btn-5:hover {
background-color: #5dc8d2;
border-color: #1ab3c5; }
#nation .top-menu #top-btn-6 {
background-color: #ea8814;
border-color: #efaa56; }
#nation .top-menu #top-btn-6:hover {
background-color: #efaa56;
border-color: #ea8814; }
.portBottom {
display: none; }
#shipDynamic {
height: 15em;
overflow: hidden;
width: 50%;
float: left;
margin-left: 2em; }
#shipDynamic ul,
#shipDynamic li {
list-style: none; }
#shipDynamic .dynamic-head {
margin-top: 5px;
margin-bottom: 20px;
padding-top: 5px;
background-color: #143761;
color: #fff; }
#shipDynamic .field-1 {
display: inline-block;
width: 200px;
overflow-x: hidden; }
#shipDynamic .field-2 {
display: inline-block;
width: 100px;
overflow-x: hidden; }
#shipDynamic .field-3 {
display: inline-block;
width: 100px;
overflow-x: hidden; }
#shipDynamic .field-4 {
display: inline-block;
width: 200px;
overflow-x: hidden; }
#shipCount {
float: left;
height: 15em;
overflow: hidden;
width: 40%;
margin-left: 2em; }
#shipCount ul,
#shipCount li {
list-style: none; }
#shipCount .dynamic-head {
margin-top: 5px;
margin-bottom: 20px;
padding-top: 5px;
background-color: #a60000;
color: #fff; }
#shipCount .field-1 {
display: inline-block;
width: 100px;
overflow-x: hidden; }
#shipCount .field-2 {
display: inline-block;
width: 100px;
overflow-x: hidden; }
#shipCount .field-3 {
display: inline-block;
width: 100px;
overflow-x: hidden; }
#shipCount .field-4 {
display: inline-block;
width: 100px;
overflow-x: hidden; }
#shipCount .field-5 {
display: inline-block;
width: 100px;
overflow-x: hidden; }
.highcharts-title {
font-family: '黑体';
font-weight: 900; } | css/style.css | @charset "UTF-8";
html,
body {
height: 100%; }
h1,
h2,
h3,
h4 {
font-family: '黑体'; }
.map {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%; }
.left-side-bar {
position: absolute;
top: 0;
left: 0;
width: 20%;
height: 100%;
background-color: #fff;
box-shadow: 5px;
display: none; }
.right-side-bar {
position: absolute;
top: 0;
right: 0;
width: 20%;
height: 100%;
background-color: rgba(255, 255, 255, 0.5);
box-shadow: 5px;
padding: 10px; }
.right-side-bar .right-show-btn {
position: absolute;
top: 50%;
left: -30px; }
.bottom-side-bar {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 25%;
padding: 10px;
background-color: rgba(255, 255, 255, 0.5); }
.bottom-right-bar {
position: absolute;
bottom: 0;
right: 20%;
width: 80%;
height: 25%;
padding: 10px;
background-color: rgba(255, 255, 255, 0.5); }
.point-panel {
width: auto;
overflow: hidden;
position: relative;
background-color: #fff;
color: #3189f3;
font-weight: 900;
white-space: nowrap;
padding: 5px;
border: 1px solid #3189f3; }
.tip-panel {
width: auto;
overflow: hidden;
position: relative;
background-color: #ff3333;
color: #fff;
font-weight: 900;
white-space: nowrap;
padding: 10px; }
#bubbles {
height: 80%; }
.nation-btn {
position: absolute;
top: 25%;
left: 15px;
height: 80px;
width: 80px;
cursor: pointer;
background-color: #ff0000;
color: #fff; }
.globe-btn {
position: absolute;
top: 15%;
left: 15px;
height: 80px;
width: 80px;
cursor: pointer;
background-color: #143761;
color: #fff; }
.cooperate-btn {
position: absolute;
top: 35%;
left: 15px;
height: 80px;
width: 80px;
cursor: pointer;
background-color: #7fab20;
color: #fff; }
.ftz-btn {
position: absolute;
top: 45%;
left: 15px;
height: 80px;
width: 80px;
cursor: pointer;
background-color: #1ab3c5;
color: #fff; }
.left-menu {
position: absolute;
top: 10%;
left: 5px;
width: 100px;
height: 50%; }
.left-menu .rounded-wrap {
width: 80px;
height: 80px;
margin: 5px;
background-color: #fff;
cursor: pointer; }
.left-menu .rounded-wrap .rounded-content {
color: #fff; }
.left-menu #left-btn-1 {
background-color: #143761; }
.left-menu #left-btn-1:hover {
background-color: #395373; }
.left-menu #left-btn-2 {
background-color: #ff0000; }
.left-menu #left-btn-2:hover {
background-color: #fe6764; }
.left-menu #left-btn-3 {
background-color: #7fab20; }
.left-menu #left-btn-3:hover {
background-color: #a4c25f; }
.left-menu #left-btn-4 {
background-color: #edbe14; }
.left-menu #left-btn-4:hover {
background-color: #f1d056; }
.left-menu #left-btn-5 {
background-color: #1ab3c5; }
.left-menu #left-btn-5:hover {
background-color: #5dc8d2; }
.left-menu #left-btn-6 {
background-color: #ea8814; }
.left-menu #left-btn-6:hover {
background-color: #efaa56; }
.rounded-wrap {
display: table;
border-radius: 2000px; }
.rounded-content {
vertical-align: middle;
display: table-cell;
text-align: center; }
.port-panel {
display: none;
height: 100%; }
.port-panel .port-title {
position: absolute; }
.port-panel .port-title h1,
.port-panel .port-title h2 {
margin: 0;
padding: 0;
white-space: nowrap; }
.port-panel .port-box {
display: none;
position: absolute;
background-color: rgba(255, 255, 255, 0.9);
width: 80%;
height: 60%;
top: 8%;
left: 10%;
box-shadow: 1px 1px 10px #333; }
.port-panel .port-box .port-content {
padding: 10px;
height: 100%;
width: 100%; }
.port-panel .port-box .port-content .port-info {
height: 100%;
overflow-y: auto;
overflow-x: hidden; }
.port-panel .port-box .port-content .port-info .list-group-item .title {
width: 150px;
display: block;
float: left;
font-weight: 900; }
.port-panel .port-box .port-box-close-btn {
float: right;
display: block;
cursor: pointer;
margin-top: -15px;
margin-right: -15px; }
#nation .top-menu {
position: absolute;
top: 5px;
left: 10%;
width: 50%;
height: 100px; }
#nation .top-menu .rounded-wrap {
width: 80px;
height: 80px;
float: left;
margin: 5px;
background-color: #fff;
border: 6px solid #000;
cursor: pointer; }
#nation .top-menu .rounded-wrap .rounded-content {
color: #fff; }
#nation .top-menu #top-btn-1 {
background-color: #143761;
border-color: #2c4461; }
#nation .top-menu #top-btn-1:hover {
background-color: #2c4461;
border-color: #143761; }
#nation .top-menu #top-btn-2 {
background-color: #ff0000;
border-color: #fe6764; }
#nation .top-menu #top-btn-2:hover {
background-color: #fe6764;
border-color: #ff0000; }
#nation .top-menu #top-btn-3 {
background-color: #7fab20;
border-color: #a4c25f; }
#nation .top-menu #top-btn-3:hover {
background-color: #a4c25f;
border-color: #7fab20; }
#nation .top-menu #top-btn-4 {
background-color: #edbe14;
border-color: #f1d056; }
#nation .top-menu #top-btn-4:hover {
background-color: #f1d056;
border-color: #edbe14; }
#nation .top-menu #top-btn-5 {
background-color: #1ab3c5;
border-color: #5dc8d2; }
#nation .top-menu #top-btn-5:hover {
background-color: #5dc8d2;
border-color: #1ab3c5; }
#nation .top-menu #top-btn-6 {
background-color: #ea8814;
border-color: #efaa56; }
#nation .top-menu #top-btn-6:hover {
background-color: #efaa56;
border-color: #ea8814; }
.portBottom {
display: none; }
#shipDynamic {
height: 15em;
overflow: hidden;
width: 50%;
float: left;
margin-left: 2em; }
#shipDynamic ul,
#shipDynamic li {
list-style: none; }
#shipDynamic .dynamic-head {
margin-top: 5px;
margin-bottom: 20px;
padding-top: 5px;
background-color: #143761;
color: #fff; }
#shipDynamic .field-1 {
display: inline-block;
width: 200px;
overflow-x: hidden; }
#shipDynamic .field-2 {
display: inline-block;
width: 100px;
overflow-x: hidden; }
#shipDynamic .field-3 {
display: inline-block;
width: 100px;
overflow-x: hidden; }
#shipDynamic .field-4 {
display: inline-block;
width: 200px;
overflow-x: hidden; }
#shipCount {
float: left;
height: 15em;
overflow: hidden;
width: 40%;
margin-left: 2em; }
#shipCount ul,
#shipCount li {
list-style: none; }
#shipCount .dynamic-head {
margin-top: 5px;
margin-bottom: 20px;
padding-top: 5px;
background-color: #a60000;
color: #fff; }
#shipCount .field-1 {
display: inline-block;
width: 100px;
overflow-x: hidden; }
#shipCount .field-2 {
display: inline-block;
width: 100px;
overflow-x: hidden; }
#shipCount .field-3 {
display: inline-block;
width: 100px;
overflow-x: hidden; }
#shipCount .field-4 {
display: inline-block;
width: 100px;
overflow-x: hidden; }
#shipCount .field-5 {
display: inline-block;
width: 100px;
overflow-x: hidden; }
.highcharts-title {
font-family: '黑体';
font-weight: 900; } | 0.430866 | 0.054249 |
:root {
--light-gray-color: #C6CBD1;
--medium-gray-color: #959DA5;
--dark-gray-color: #444D56;
--white-color: #FAFBFC;
--primary-color-dark1: #235689;
--primary-color-dark2: #1f4c7a;
--primary-color-dark3: #1b436b;
--primary-color-dark4: #17395b;
--primary-color-dark5: #13304c;
--primary-color-light1: #3c6fa3;
--primary-color-light2: #527fad;
--primary-color-light3: #678fb7;
--primary-color-light4: #7d9fc1;
--primary-color-light5: #93afcc;
--primary-color: #276099;
--secondary-color: #7c7b6f;
--accent-color-dark: #2196f3;
--accent-color-light: #2196f3;
--accent-color: #2196f3;
--copyright-color: #ededed;
--footer-color: #b0b0b0;
--menu-a-color:var(--white-color);
--menu-active-color:var(--white-color);
--menu-ul-color:var(--white-color);
--bg-color: #23231f;
--code-bg-color: #F0E8E8;
--copyright-bg-color: var(--primary-color-dark4);
--footer-bg-color: var(--primary-color-dark2);
--hero-bg-color: var(--secondary-color);
--nav-bg-color: var(--primary-color);
--wrapper-bg-color:var(--bg-color);
}
/* normalized */
html, body {
background-color: var(--bg-color);
color: var(--white-color);
font-family: 'Roboto', 'Nunito Sans', sans-serif;
height: 100%;
margin: 0;
padding: 0;
}
body {
display: flex;
flex-direction: column;
}
p, ul {
font-weight: 300;
color: var(--white-color);
}
a, a:hover {
text-decoration: none;
color: var(--accent-color);
}
hr {
padding: 1rem 0;
border: 0;
border-bottom: 1px solid var(--bg-color);
}
* {
box-sizing: border-box;
}
/* global components */
/* typography */
.section__title {
color: var(--primary-color);
}
/* tabs */
.tab__container {
position: relative;
}
.tab__container > ul {
position: absolute;
list-style: none;
margin: 0;
right: 1rem;
top: -2rem;
padding-left: 0;
}
.tab__container .code {
white-space: normal;
padding: 1rem 1.5rem;
}
.tab {
display: inline-block;
padding: 0.3rem 0.5rem;
font-weight: 200;
cursor: pointer;
}
.tab.active {
border-bottom: 1px solid var(--primary-color);
font-weight: 700;
display: inline-block;
}
.tab__pane {
display: none;
}
.tab__pane.active {
display: block;
}
/* code */
.code {
border-radius: 3px;
font-family: Space Mono, SFMono-Regular, Menlo,Monaco, Consolas, Liberation Mono, Courier New, monospace;
background: var(--bg-color);
border: 1px solid var(--code-bg-color);
color: var(--primary-color-light1);
}
.code--block {
white-space: pre-line;
padding: 0 1.5rem;
}
.code--inline {
padding: 3px 6px;
font-size: 80%;
}
/* buttons */
.button--primary {
padding: 10px 22px;
background-color: var(--accent-color);
color: var(--white-color);
position: relative;
text-decoration: none;
border: 0;
transition: all .3s ease-out;
}
.button--primary:after {
position: absolute;
content: "";
width: 1rem;
height: 1rem;
background-color: var(--accent-color-light);
right: -0.4rem;
top: -0.4rem;
transition: all 0.3s ease-out;
}
.button--primary:hover {
text-shadow: 0px 1px 1px var(--accent-color-dark);
color: var(--white-color);
transform: translate3D(0, -3px, 0);
}
.button--primary:hover::after {
transform: rotate(90deg);
}
.button--secondary {
padding: 10px 22px;
border: 2px solid var(--primary-color);
transition: all 0.5s ease-out;
}
.button--secondary:hover {
border-color: var(--accent-color);
color: var(--accent-color);
}
/* links */
.link {
text-decoration: none;
transition: all 0.3s ease-out;
}
.link:hover {
color: var(--accent-color);
}
.link--dark {
color: var(--primary-color);
}
.link--light {
color: var(--accent-color);
}
/* menu */
.nav-logo {
height: -moz-fit-content;
height: fit-content;
padding: 1em;
width: -moz-fit-content;
width: fit-content;
}
.nav-logo object {
height: auto;
width: 50%;
}
.nav-spacer {
flex-grow: 1 !important;
}
.nav-title {
flex-grow: 1;
}
.nav-title h1 {
font-size: 3em;
margin: 0.5em;
width: -moz-fit-content;
width: fit-content;
}
nav {
background-color: var(--nav-bg-color);
color: var(--white-color);
display: flex;
flex: 1 1 100%;
grid-template-columns: 70px auto;
max-height: 155px;
padding: 1em;
width: 100%;
}
/** MENU */
.nav-menu {
flex: 0 0 50%;
max-width: 50%;
margin: 0;
text-align: right;
overflow: hidden;
list-style: none;
padding: 0 0 0 0;
}
.nav-menu ul {
float: right;
list-style: none;
line-height: normal;
display: block;
letter-spacing: 2px;
text-align: center;
text-transform: uppercase;
font-family: 'Archivo Narrow', sans-serif;
font-size: 1.0em;
font-weight: 600;
color: var(--menu-ul-color);
}
.nav-menu li {
display: inline-block;
margin-left: 0.5em;
padding: 0.5em 0.75em;
}
.nav-menu a {
text-decoration: none;
color: var(--menu-a-color);
}
.nav-menu .active
{
background: var(--accent-color);
border-radius: 5px;
color: var(--menu-active-color);
}
.nav-menu a:hover {
text-decoration: underline;
}
.toggle {
display: none;
position: relative;
}
.toggle span,
.toggle span:before,
.toggle span:after {
content: '';
position: absolute;
height: 2px;
width: 18px;
border-radius: 2px;
background: var(--primary-color);
display: block;
cursor: pointer;
transition: all 0.3s ease-in-out;
right: 0;
}
/* table */
table {
border-collapse: collapse;
width: 100%;
transition: color .3s ease-out;
margin-bottom: 2rem;
}
table td, table th {
border: 1px solid var(--code-bg-color);
padding: 0.8rem;
font-weight: 300;
}
table th {
text-align: left;
background-color: var(--white-color);
border-color: var(--white-color);
border-bottom-color: var(--code-bg-color);
}
table td:first-child {
background-color: var(--bg-color);
font-weight: 600;
}
@media screen and (max-width: 600px) {
nav {
grid-template-columns: 70px auto;
}
.menu__item{
display: none;
}
.menu__item.toggle {
display: inline-block;
}
.menu {
text-align: right;
padding: 0.5rem 1rem;
}
.toggle {
display: block;
}
.menu.responsive .menu__item:not(:first-child) {
display: block;
padding: 0 0 0.5rem 0;
}
}
/* layout */
.wrapper {
background-color: var(--wrapper-bg-color);
border-radius: 10px 10px 0px 0px;
margin: 0 auto;
padding: 2em;
width: 70%;
}
#footer {
background-color: var(--footer-bg-color);
color:var(--white-color);
flex: 1 0 auto;
flex-shrink: 0;
margin: 0 auto 0 auto;
max-height: 400px;
overflow: hidden;
padding: 2em;
width: 100%
}
#footer h2 {
color: var(--footer-color)
}
#footer a {
color: var(--footer-color);
}
#footer p {
color: var(--footer-color);
}
#footer #fbox1 {
float: left;
width: 30%;
margin-right: 60px;
}
#footer #fbox1 ul {
margin: 0px;
padding: 0px;
list-style: none;
}
#footer #fbox1 ul li {
padding: 10px 0px 20px 0px;
}
#footer #fbox1 #first {
padding-top: 0px;
border-top: none;
}
#footer #fbox2 {
float: right;
width: 30%;
}
#footer #fbox2 ul {
margin: 30px 0px 0px 0px;
padding: 0px;
list-style: none;
}
#footer #fbox2 ul li {
float: left;
margin-right: 10px;
}
#footer #fbox3 {
float: right;
width: 30%;
}
.copyright p {
color: var(--copyright-color);
text-align: center;
}
.copyright a {
color: var(--copyright-color);
}
#copyright-div {
background-color: var(--copyright-bg-color);
color: var(--medium-gray-color);
flex: 1 0 auto;
flex-shrink: 0;
font-size: small;
margin: 0 auto 0 auto;
overflow: hidden;
padding: 2em;
width: 100%
}
#copyright-div p {
color: var(--medium-gray-color);
text-align: center;
}
#copyright-div a {
color: var(--medium-gray-color);
}
@keyframes fadeUp {
0% {
opacity: 0;
transform: translate3d(0,30px,0);
}
100% {
transform: translate3d(0,0,0);
}
} | src/assets/css/scribbler-global.css | :root {
--light-gray-color: #C6CBD1;
--medium-gray-color: #959DA5;
--dark-gray-color: #444D56;
--white-color: #FAFBFC;
--primary-color-dark1: #235689;
--primary-color-dark2: #1f4c7a;
--primary-color-dark3: #1b436b;
--primary-color-dark4: #17395b;
--primary-color-dark5: #13304c;
--primary-color-light1: #3c6fa3;
--primary-color-light2: #527fad;
--primary-color-light3: #678fb7;
--primary-color-light4: #7d9fc1;
--primary-color-light5: #93afcc;
--primary-color: #276099;
--secondary-color: #7c7b6f;
--accent-color-dark: #2196f3;
--accent-color-light: #2196f3;
--accent-color: #2196f3;
--copyright-color: #ededed;
--footer-color: #b0b0b0;
--menu-a-color:var(--white-color);
--menu-active-color:var(--white-color);
--menu-ul-color:var(--white-color);
--bg-color: #23231f;
--code-bg-color: #F0E8E8;
--copyright-bg-color: var(--primary-color-dark4);
--footer-bg-color: var(--primary-color-dark2);
--hero-bg-color: var(--secondary-color);
--nav-bg-color: var(--primary-color);
--wrapper-bg-color:var(--bg-color);
}
/* normalized */
html, body {
background-color: var(--bg-color);
color: var(--white-color);
font-family: 'Roboto', 'Nunito Sans', sans-serif;
height: 100%;
margin: 0;
padding: 0;
}
body {
display: flex;
flex-direction: column;
}
p, ul {
font-weight: 300;
color: var(--white-color);
}
a, a:hover {
text-decoration: none;
color: var(--accent-color);
}
hr {
padding: 1rem 0;
border: 0;
border-bottom: 1px solid var(--bg-color);
}
* {
box-sizing: border-box;
}
/* global components */
/* typography */
.section__title {
color: var(--primary-color);
}
/* tabs */
.tab__container {
position: relative;
}
.tab__container > ul {
position: absolute;
list-style: none;
margin: 0;
right: 1rem;
top: -2rem;
padding-left: 0;
}
.tab__container .code {
white-space: normal;
padding: 1rem 1.5rem;
}
.tab {
display: inline-block;
padding: 0.3rem 0.5rem;
font-weight: 200;
cursor: pointer;
}
.tab.active {
border-bottom: 1px solid var(--primary-color);
font-weight: 700;
display: inline-block;
}
.tab__pane {
display: none;
}
.tab__pane.active {
display: block;
}
/* code */
.code {
border-radius: 3px;
font-family: Space Mono, SFMono-Regular, Menlo,Monaco, Consolas, Liberation Mono, Courier New, monospace;
background: var(--bg-color);
border: 1px solid var(--code-bg-color);
color: var(--primary-color-light1);
}
.code--block {
white-space: pre-line;
padding: 0 1.5rem;
}
.code--inline {
padding: 3px 6px;
font-size: 80%;
}
/* buttons */
.button--primary {
padding: 10px 22px;
background-color: var(--accent-color);
color: var(--white-color);
position: relative;
text-decoration: none;
border: 0;
transition: all .3s ease-out;
}
.button--primary:after {
position: absolute;
content: "";
width: 1rem;
height: 1rem;
background-color: var(--accent-color-light);
right: -0.4rem;
top: -0.4rem;
transition: all 0.3s ease-out;
}
.button--primary:hover {
text-shadow: 0px 1px 1px var(--accent-color-dark);
color: var(--white-color);
transform: translate3D(0, -3px, 0);
}
.button--primary:hover::after {
transform: rotate(90deg);
}
.button--secondary {
padding: 10px 22px;
border: 2px solid var(--primary-color);
transition: all 0.5s ease-out;
}
.button--secondary:hover {
border-color: var(--accent-color);
color: var(--accent-color);
}
/* links */
.link {
text-decoration: none;
transition: all 0.3s ease-out;
}
.link:hover {
color: var(--accent-color);
}
.link--dark {
color: var(--primary-color);
}
.link--light {
color: var(--accent-color);
}
/* menu */
.nav-logo {
height: -moz-fit-content;
height: fit-content;
padding: 1em;
width: -moz-fit-content;
width: fit-content;
}
.nav-logo object {
height: auto;
width: 50%;
}
.nav-spacer {
flex-grow: 1 !important;
}
.nav-title {
flex-grow: 1;
}
.nav-title h1 {
font-size: 3em;
margin: 0.5em;
width: -moz-fit-content;
width: fit-content;
}
nav {
background-color: var(--nav-bg-color);
color: var(--white-color);
display: flex;
flex: 1 1 100%;
grid-template-columns: 70px auto;
max-height: 155px;
padding: 1em;
width: 100%;
}
/** MENU */
.nav-menu {
flex: 0 0 50%;
max-width: 50%;
margin: 0;
text-align: right;
overflow: hidden;
list-style: none;
padding: 0 0 0 0;
}
.nav-menu ul {
float: right;
list-style: none;
line-height: normal;
display: block;
letter-spacing: 2px;
text-align: center;
text-transform: uppercase;
font-family: 'Archivo Narrow', sans-serif;
font-size: 1.0em;
font-weight: 600;
color: var(--menu-ul-color);
}
.nav-menu li {
display: inline-block;
margin-left: 0.5em;
padding: 0.5em 0.75em;
}
.nav-menu a {
text-decoration: none;
color: var(--menu-a-color);
}
.nav-menu .active
{
background: var(--accent-color);
border-radius: 5px;
color: var(--menu-active-color);
}
.nav-menu a:hover {
text-decoration: underline;
}
.toggle {
display: none;
position: relative;
}
.toggle span,
.toggle span:before,
.toggle span:after {
content: '';
position: absolute;
height: 2px;
width: 18px;
border-radius: 2px;
background: var(--primary-color);
display: block;
cursor: pointer;
transition: all 0.3s ease-in-out;
right: 0;
}
/* table */
table {
border-collapse: collapse;
width: 100%;
transition: color .3s ease-out;
margin-bottom: 2rem;
}
table td, table th {
border: 1px solid var(--code-bg-color);
padding: 0.8rem;
font-weight: 300;
}
table th {
text-align: left;
background-color: var(--white-color);
border-color: var(--white-color);
border-bottom-color: var(--code-bg-color);
}
table td:first-child {
background-color: var(--bg-color);
font-weight: 600;
}
@media screen and (max-width: 600px) {
nav {
grid-template-columns: 70px auto;
}
.menu__item{
display: none;
}
.menu__item.toggle {
display: inline-block;
}
.menu {
text-align: right;
padding: 0.5rem 1rem;
}
.toggle {
display: block;
}
.menu.responsive .menu__item:not(:first-child) {
display: block;
padding: 0 0 0.5rem 0;
}
}
/* layout */
.wrapper {
background-color: var(--wrapper-bg-color);
border-radius: 10px 10px 0px 0px;
margin: 0 auto;
padding: 2em;
width: 70%;
}
#footer {
background-color: var(--footer-bg-color);
color:var(--white-color);
flex: 1 0 auto;
flex-shrink: 0;
margin: 0 auto 0 auto;
max-height: 400px;
overflow: hidden;
padding: 2em;
width: 100%
}
#footer h2 {
color: var(--footer-color)
}
#footer a {
color: var(--footer-color);
}
#footer p {
color: var(--footer-color);
}
#footer #fbox1 {
float: left;
width: 30%;
margin-right: 60px;
}
#footer #fbox1 ul {
margin: 0px;
padding: 0px;
list-style: none;
}
#footer #fbox1 ul li {
padding: 10px 0px 20px 0px;
}
#footer #fbox1 #first {
padding-top: 0px;
border-top: none;
}
#footer #fbox2 {
float: right;
width: 30%;
}
#footer #fbox2 ul {
margin: 30px 0px 0px 0px;
padding: 0px;
list-style: none;
}
#footer #fbox2 ul li {
float: left;
margin-right: 10px;
}
#footer #fbox3 {
float: right;
width: 30%;
}
.copyright p {
color: var(--copyright-color);
text-align: center;
}
.copyright a {
color: var(--copyright-color);
}
#copyright-div {
background-color: var(--copyright-bg-color);
color: var(--medium-gray-color);
flex: 1 0 auto;
flex-shrink: 0;
font-size: small;
margin: 0 auto 0 auto;
overflow: hidden;
padding: 2em;
width: 100%
}
#copyright-div p {
color: var(--medium-gray-color);
text-align: center;
}
#copyright-div a {
color: var(--medium-gray-color);
}
@keyframes fadeUp {
0% {
opacity: 0;
transform: translate3d(0,30px,0);
}
100% {
transform: translate3d(0,0,0);
}
} | 0.448668 | 0.112551 |
html {
height: 100%;
}
body {
height: 100%;
margin: 0 auto;
padding: 0;
width: 100%;
}
h3 {
color: #222;
line-height: 1.1;
}
p {
color: #444;
line-height: 1.5;
/* The following should be the same as the line-height (1.5). */
margin: 1.5em 0;
text-align: left;
word-spacing: 0;
}
.navbar-static-top .container,
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
margin: 0 auto;
width: 98%;
}
#wrapper {
min-height: 100%;
position: relative;
}
/*
The following rule ensures that, as the viewport gets
smaller, any media will scale down according to its
container's width.
*/
img, video, canvas {
max-width: 100%
}
textarea {
width: 90%;
}
.oppia-code {
font-family: Consolas, Monaco, Lucida Console, Liberation Mono, monospace;
}
.oppia-gallery-box {
border: 1px solid #CCC;
border-radius: 3px;
display: block;
float: left;
margin: 5px;
min-width: 160px;
padding: 2px 0;
width: 30%;
}
.oppia-gallery-title {
color: #888;
padding: 2px;
}
.oppia-page-title {
color: #222;
font-size: 30px;
margin: 0 0 20px 0;
}
.oppia-content {
margin: 0 auto;
max-width: 700px;
-webkit-overflow-scrolling: touch;
width: 80%;
}
.oppia-exploration {
padding: 5px;
width: 98%;
}
.oppia-iframe-container {
-webkit-overflow-scrolling: touch;
}
.oppia-alert-blocks {
position: fixed;
width: 80%;
z-index: 3000;
}
.oppia-reader-response-container {
margin: 20px 0;
}
.oppia-reader-response-container:before {
content: "\2767";
}
.oppia-reader-response {
border-radius: 6px;
font-style: italic;
margin: 0 20px;
}
.oppia-response {
background: #f3f3f3;
background: rgba(0,0,0,0.04);
border-radius: 6px;
padding: 10px 20px;
}
.oppia-btn {
background-image: -webkit-linear-gradient(top, rgba(255, 204, 139, 0.5), rgba(230, 167, 93, 0.5));
background-image: -moz-linear-gradient(top, rgba(255, 204, 139, 0.5), rgba(230, 167, 93, 0.5));
background-image: linear-gradient(top, rgba(255, 204, 139, 0.5), rgba(230, 167, 93, 0.5));
color: #444;
border-radius: 3px;
font: bold 14px/20px Arial, sans-serif;
padding: 4px 10px;
text-shadow: 0 -1px 0 rgba(0,0,0,0.15);
text-transform: uppercase;
}
.oppia-btn:hover {
background: rgb(255, 177, 84);
}
.oppia-small-font {
font-size: 1.0em;
}
/* Adds to existing Bootstrap CSS rule. */
.alert-block {
border: 1px solid black;
font-size: 1.2em;
margin: 0 25% 0 25%;
opacity: 1;
width: 80%;
z-index: 3000;
}
.oppia-form input.ng-invalid.ng-dirty {
border: 2px solid #FA787E;
}
.oppia-form input.ng-valid.ng-dirty {
border: 2px solid #78FA89;
}
.oppia-gallery-frame {
border-radius: 20px;
margin: 10px;
padding: 10px;
width: 100%;
}
.oppia-gallery-block {
display: block;
}
.oppia-form-search {
padding-right: 20px;
}
.oppia-grayed {
color: gray;
opacity: 0.5;
}
.oppia-rte-inactive {
border: 1px solid #ddd;
background-color: #eee;
padding: 2px;
}
.oppia-help {
height: 16px;
width: 16px;
}
.oppia-main-body {
height: 100%;
margin: 0 auto -4em;
min-height: 100%;
padding-bottom: 3em;
}
.oppia-footer {
border-top: 1px solid #DDD;
bottom: 0;
height: 3em;
max-height: 3em;
margin: auto;
position: absolute;
width: 100%;
}
.oppia-exploration-header {
margin: 10px auto;
padding: 6px 0;
text-align: center;
width: 80%;
}
.oppia-exploration-header a {
font-size: 200%;
text-decoration: none;
}
.oppia-wide-panel {
border: 1px solid black;
border-radius: 20px;
width: 100%;
}
.oppia-wide-panel-content {
font-size: large;
margin: 5px auto;
min-height: 400px;
padding: 20px;
}
.oppia-wide-panel-title {
color: #062770;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 24pt;
font-weight: bold;
margin-bottom: 30px;
}
.oppia-btn-container {
padding: 10px;
}
.oppia-loading {
background: url(/images/loading.gif) no-repeat center;
display: none;
float: left;
height: 15px;
margin: 3px;
width: 15px;
}
#oppia-popup {
background: white;
border-radius: 12px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
left: 300px;
padding: 20px;
position: fixed;
top: 300px;
width: 500px;
z-index: 9002;
}
.oppia-warning {
background: #F9EDBE;
width: 80%;
}
.oppia-butterbar {
background: #F9EDBE;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
border: 1px solid #F0C36D;
-moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
left: 500px;
margin: -20px auto 0 auto;
padding: 0 16px;
position: fixed;
text-align: center;
top: 100px;
}
.oppia-conversation-log {
opacity: 0.7;
}
.oppia-cursor-pointer {
cursor: pointer;
}
.oppia-editable-name {
color: #8f8661;
font-weight: bold;
}
.oppia-editable-name:hover {
background: #efefef;
}
.oppia-editable-name:hover::after {
content: ' ✎';
}
.oppia-add-content-box {
border: 1px dashed silver;
color: silver;
font-size: 150%;
margin: 0 auto -30px auto;
padding: 10px 0;
text-align: center;
width: 94%;
}
.oppia-small-image {
height: 50px;
}
.oppia-large-image {
width: 80px;
}
.oppia-thumbnail {
position: relative;
top: -50px;
}
.oppia-placeholder {
color: gray;
}
.oppia-state-text-item {
border: 1px solid black;
min-height: 20px;
padding: 5px;
}
.oppia-state-text-list {
border-collapse: collapse;
list-style-type: none;
}
/* Graph styles */
#oppia-state-graph-canvas {
padding-top: 40px;
position: absolute;
}
.oppia-state-graph-vertex-delete {
font-size: 1em;
position: absolute;
right: 5px;
top: 1px;
}
.oppia-state-graph-vertex-delete:hover {
background-color: red;
cursor: move;
}
.oppia-state-graph-vertex-info {
font-size: 1em;
padding: 4px;
}
.oppia-state-graph-vertex-info-editable:hover {
background-color: #8F8661;
cursor: move;
}
/* Category editor styles */
.oppia-category-block {
border: 1px solid #efefef;
min-height: 40px;
width: 80%;
}
/* Styles for the state graph vizualization. */
.oppia-graph-viz path.link {
fill: none;
stroke: #666;
stroke-width: 1.5px;
}
.oppia-graph-viz ellipse {
fill: #ccc;
stroke: #333;
stroke-width: 1.5px;
}
.oppia-graph-viz text {
font: 15px sans-serif;
pointer-events: none;
}
.oppia-graph-viz text.shadow {
stroke: #fff;
stroke-width: 3px;
stroke-opacity: .8;
}
.oppia-graph-viz .node rect {
cursor: pointer;
fill: #fff;
fill-opacity: .5;
stroke-width: 0px;
}
.oppia-graph-viz .clickable {
cursor: pointer;
}
/* Styles for the indented tree visualization. */
.oppia-tree-viz path.link {
fill: none;
stroke: #666;
stroke-width: 1.5px;
}
.oppia-tree-viz text {
font: 15px sans-serif;
pointer-events: none;
}
.oppia-tree-viz text.shadow {
stroke: #fff;
stroke-width: 3px;
stroke-opacity: .8;
}
.oppia-tree-viz .node rect {
cursor: pointer;
fill: #fff;
fill-opacity: .5;
stroke: #3182bd;
stroke-width: 1.5px;
}
/* Styles for interactive widgets. */
.oppia-rule {
height: 30px;
}
/* Styles for the statistics page. */
.oppia-stats-table {
border: 1px solid black;
padding: 10px;
}
@media screen and (max-width: 460px) {
.pull-right {
float: none;
width: auto;
}
}
.feedback-button {
transition-property: all;
transition-duration: 0.2s;
align-content: center;
background: green;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
bottom: 10px;
box-shadow: -5px 5px 3px #CCCCCC;
color: white;
cursor: pointer;
font-size: 15px;
font-weight: bold;
height: 90px;
left: 0;
opacity: 0.75;
position: fixed;
top: 50%;
width: 100px;
-moz-transform-origin: 25px 75px;
-moz-transform: rotate(-90deg);
-ms-transform-origin: 25px 75px;
-ms-transform: rotate(-90deg);
-o-transform-origin: 25px 75px;
-o-transform: rotate(-90deg);
-webkit-transform-origin: 25px 75px;
-webkit-transform: rotate(-90deg);
}
.feedback-button:hover {
opacity: 1;
-moz-transform-origin: 35px 65px;
-ms-transform-origin: 35px 65px;
-o-transform-origin: 35px 65px;
-webkit-transform-origin: 35px 65px;
} | core/templates/dev/head/css/oppia.css |
html {
height: 100%;
}
body {
height: 100%;
margin: 0 auto;
padding: 0;
width: 100%;
}
h3 {
color: #222;
line-height: 1.1;
}
p {
color: #444;
line-height: 1.5;
/* The following should be the same as the line-height (1.5). */
margin: 1.5em 0;
text-align: left;
word-spacing: 0;
}
.navbar-static-top .container,
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
margin: 0 auto;
width: 98%;
}
#wrapper {
min-height: 100%;
position: relative;
}
/*
The following rule ensures that, as the viewport gets
smaller, any media will scale down according to its
container's width.
*/
img, video, canvas {
max-width: 100%
}
textarea {
width: 90%;
}
.oppia-code {
font-family: Consolas, Monaco, Lucida Console, Liberation Mono, monospace;
}
.oppia-gallery-box {
border: 1px solid #CCC;
border-radius: 3px;
display: block;
float: left;
margin: 5px;
min-width: 160px;
padding: 2px 0;
width: 30%;
}
.oppia-gallery-title {
color: #888;
padding: 2px;
}
.oppia-page-title {
color: #222;
font-size: 30px;
margin: 0 0 20px 0;
}
.oppia-content {
margin: 0 auto;
max-width: 700px;
-webkit-overflow-scrolling: touch;
width: 80%;
}
.oppia-exploration {
padding: 5px;
width: 98%;
}
.oppia-iframe-container {
-webkit-overflow-scrolling: touch;
}
.oppia-alert-blocks {
position: fixed;
width: 80%;
z-index: 3000;
}
.oppia-reader-response-container {
margin: 20px 0;
}
.oppia-reader-response-container:before {
content: "\2767";
}
.oppia-reader-response {
border-radius: 6px;
font-style: italic;
margin: 0 20px;
}
.oppia-response {
background: #f3f3f3;
background: rgba(0,0,0,0.04);
border-radius: 6px;
padding: 10px 20px;
}
.oppia-btn {
background-image: -webkit-linear-gradient(top, rgba(255, 204, 139, 0.5), rgba(230, 167, 93, 0.5));
background-image: -moz-linear-gradient(top, rgba(255, 204, 139, 0.5), rgba(230, 167, 93, 0.5));
background-image: linear-gradient(top, rgba(255, 204, 139, 0.5), rgba(230, 167, 93, 0.5));
color: #444;
border-radius: 3px;
font: bold 14px/20px Arial, sans-serif;
padding: 4px 10px;
text-shadow: 0 -1px 0 rgba(0,0,0,0.15);
text-transform: uppercase;
}
.oppia-btn:hover {
background: rgb(255, 177, 84);
}
.oppia-small-font {
font-size: 1.0em;
}
/* Adds to existing Bootstrap CSS rule. */
.alert-block {
border: 1px solid black;
font-size: 1.2em;
margin: 0 25% 0 25%;
opacity: 1;
width: 80%;
z-index: 3000;
}
.oppia-form input.ng-invalid.ng-dirty {
border: 2px solid #FA787E;
}
.oppia-form input.ng-valid.ng-dirty {
border: 2px solid #78FA89;
}
.oppia-gallery-frame {
border-radius: 20px;
margin: 10px;
padding: 10px;
width: 100%;
}
.oppia-gallery-block {
display: block;
}
.oppia-form-search {
padding-right: 20px;
}
.oppia-grayed {
color: gray;
opacity: 0.5;
}
.oppia-rte-inactive {
border: 1px solid #ddd;
background-color: #eee;
padding: 2px;
}
.oppia-help {
height: 16px;
width: 16px;
}
.oppia-main-body {
height: 100%;
margin: 0 auto -4em;
min-height: 100%;
padding-bottom: 3em;
}
.oppia-footer {
border-top: 1px solid #DDD;
bottom: 0;
height: 3em;
max-height: 3em;
margin: auto;
position: absolute;
width: 100%;
}
.oppia-exploration-header {
margin: 10px auto;
padding: 6px 0;
text-align: center;
width: 80%;
}
.oppia-exploration-header a {
font-size: 200%;
text-decoration: none;
}
.oppia-wide-panel {
border: 1px solid black;
border-radius: 20px;
width: 100%;
}
.oppia-wide-panel-content {
font-size: large;
margin: 5px auto;
min-height: 400px;
padding: 20px;
}
.oppia-wide-panel-title {
color: #062770;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 24pt;
font-weight: bold;
margin-bottom: 30px;
}
.oppia-btn-container {
padding: 10px;
}
.oppia-loading {
background: url(/images/loading.gif) no-repeat center;
display: none;
float: left;
height: 15px;
margin: 3px;
width: 15px;
}
#oppia-popup {
background: white;
border-radius: 12px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
left: 300px;
padding: 20px;
position: fixed;
top: 300px;
width: 500px;
z-index: 9002;
}
.oppia-warning {
background: #F9EDBE;
width: 80%;
}
.oppia-butterbar {
background: #F9EDBE;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
border: 1px solid #F0C36D;
-moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
left: 500px;
margin: -20px auto 0 auto;
padding: 0 16px;
position: fixed;
text-align: center;
top: 100px;
}
.oppia-conversation-log {
opacity: 0.7;
}
.oppia-cursor-pointer {
cursor: pointer;
}
.oppia-editable-name {
color: #8f8661;
font-weight: bold;
}
.oppia-editable-name:hover {
background: #efefef;
}
.oppia-editable-name:hover::after {
content: ' ✎';
}
.oppia-add-content-box {
border: 1px dashed silver;
color: silver;
font-size: 150%;
margin: 0 auto -30px auto;
padding: 10px 0;
text-align: center;
width: 94%;
}
.oppia-small-image {
height: 50px;
}
.oppia-large-image {
width: 80px;
}
.oppia-thumbnail {
position: relative;
top: -50px;
}
.oppia-placeholder {
color: gray;
}
.oppia-state-text-item {
border: 1px solid black;
min-height: 20px;
padding: 5px;
}
.oppia-state-text-list {
border-collapse: collapse;
list-style-type: none;
}
/* Graph styles */
#oppia-state-graph-canvas {
padding-top: 40px;
position: absolute;
}
.oppia-state-graph-vertex-delete {
font-size: 1em;
position: absolute;
right: 5px;
top: 1px;
}
.oppia-state-graph-vertex-delete:hover {
background-color: red;
cursor: move;
}
.oppia-state-graph-vertex-info {
font-size: 1em;
padding: 4px;
}
.oppia-state-graph-vertex-info-editable:hover {
background-color: #8F8661;
cursor: move;
}
/* Category editor styles */
.oppia-category-block {
border: 1px solid #efefef;
min-height: 40px;
width: 80%;
}
/* Styles for the state graph vizualization. */
.oppia-graph-viz path.link {
fill: none;
stroke: #666;
stroke-width: 1.5px;
}
.oppia-graph-viz ellipse {
fill: #ccc;
stroke: #333;
stroke-width: 1.5px;
}
.oppia-graph-viz text {
font: 15px sans-serif;
pointer-events: none;
}
.oppia-graph-viz text.shadow {
stroke: #fff;
stroke-width: 3px;
stroke-opacity: .8;
}
.oppia-graph-viz .node rect {
cursor: pointer;
fill: #fff;
fill-opacity: .5;
stroke-width: 0px;
}
.oppia-graph-viz .clickable {
cursor: pointer;
}
/* Styles for the indented tree visualization. */
.oppia-tree-viz path.link {
fill: none;
stroke: #666;
stroke-width: 1.5px;
}
.oppia-tree-viz text {
font: 15px sans-serif;
pointer-events: none;
}
.oppia-tree-viz text.shadow {
stroke: #fff;
stroke-width: 3px;
stroke-opacity: .8;
}
.oppia-tree-viz .node rect {
cursor: pointer;
fill: #fff;
fill-opacity: .5;
stroke: #3182bd;
stroke-width: 1.5px;
}
/* Styles for interactive widgets. */
.oppia-rule {
height: 30px;
}
/* Styles for the statistics page. */
.oppia-stats-table {
border: 1px solid black;
padding: 10px;
}
@media screen and (max-width: 460px) {
.pull-right {
float: none;
width: auto;
}
}
.feedback-button {
transition-property: all;
transition-duration: 0.2s;
align-content: center;
background: green;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
bottom: 10px;
box-shadow: -5px 5px 3px #CCCCCC;
color: white;
cursor: pointer;
font-size: 15px;
font-weight: bold;
height: 90px;
left: 0;
opacity: 0.75;
position: fixed;
top: 50%;
width: 100px;
-moz-transform-origin: 25px 75px;
-moz-transform: rotate(-90deg);
-ms-transform-origin: 25px 75px;
-ms-transform: rotate(-90deg);
-o-transform-origin: 25px 75px;
-o-transform: rotate(-90deg);
-webkit-transform-origin: 25px 75px;
-webkit-transform: rotate(-90deg);
}
.feedback-button:hover {
opacity: 1;
-moz-transform-origin: 35px 65px;
-ms-transform-origin: 35px 65px;
-o-transform-origin: 35px 65px;
-webkit-transform-origin: 35px 65px;
} | 0.454472 | 0.101367 |
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
body {
font-size: 14px;
font-family: Roboto !important;
}
html.dark {
background: black;
filter: invert(1) hue-rotate(180deg);
}
button {
padding: 7px;
font-weight: bold;
margin: 2px;
border-radius: 3px;
font-family: Roboto !important;
font-size: 14px;
background: rgb(233, 233, 237);
border: 1px solid rgb(143, 143, 157);
}
button:hover:enabled{
background: rgb(200, 200, 200);
cursor: pointer;
}
input[type="number"]{
padding: 7px;
margin: 7px;
font-size: 14px;
width: 60px;
border: 1px solid gray;
border-radius: 5px;
}
select{
padding: 7px;
margin: 7px;
font-size: 14px;
}
input[type="text"], input[type="password"]{
line-height: 22px;
margin-top: 4px;
margin-bottom: 4px;
margin-left: 14px;
padding: 3px;
font-size: 14px;
border: 1px solid gray;
border-radius: 5px;
}
fieldset {
border-radius: 5px;
}
progress {
width: 100%;
display: none;
}
.tableButtons {
float: right;
margin-top: -30px;
}
#clear_button, #copy_button, #download_button{
font-size: 16px;
padding-left: 3px;
margin-bottom: 3px;
}
.click{
cursor: pointer;
}
.click:hover{
text-decoration: underline;
}
.material-icons{
font-family: "Material Icons" !important;
font-size: 14px;
padding:3px;
line-height: 100%;
margin-top: 0px;
margin-bottom: 0px;
}
#input_livello_ghost {
height: 10px;
margin: 0px;
padding: 1px;
border: 0px;
outline: none;
}
input[type=number].no-spinner::-webkit-outer-spin-button,
input[type=number].no-spinner::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type=number].no-spinner {
-moz-appearance:textfield;
}
#trenini_table {
margin-top: 10px;
}
/* TABS */
/* Style the tab */
.tab {
overflow: hidden;
border: 1px solid #ccc;
background-color: #f1f1f1;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
/* Style the buttons that are used to open the tab content */
.tab button {
background-color: inherit;
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 14px 16px;
transition: background-color 0.3s linear;
border-radius: 0;
margin: 0;
font-weight: normal;
}
/* Change background color of buttons on hover */
.tab button:hover {
background-color: #ddd;
}
/* Create an active/current tablink class */
.tab button.active {
background-color: #d6d6d6;
}
/* Style the tab content */
.tabcontent {
display: none;
padding: 6px 12px;
border: 1px solid #ccc;
border-top: none;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
#theme_button{
position: absolute;
top: 10px;
right: 10px;
} | src/style.css | @import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
body {
font-size: 14px;
font-family: Roboto !important;
}
html.dark {
background: black;
filter: invert(1) hue-rotate(180deg);
}
button {
padding: 7px;
font-weight: bold;
margin: 2px;
border-radius: 3px;
font-family: Roboto !important;
font-size: 14px;
background: rgb(233, 233, 237);
border: 1px solid rgb(143, 143, 157);
}
button:hover:enabled{
background: rgb(200, 200, 200);
cursor: pointer;
}
input[type="number"]{
padding: 7px;
margin: 7px;
font-size: 14px;
width: 60px;
border: 1px solid gray;
border-radius: 5px;
}
select{
padding: 7px;
margin: 7px;
font-size: 14px;
}
input[type="text"], input[type="password"]{
line-height: 22px;
margin-top: 4px;
margin-bottom: 4px;
margin-left: 14px;
padding: 3px;
font-size: 14px;
border: 1px solid gray;
border-radius: 5px;
}
fieldset {
border-radius: 5px;
}
progress {
width: 100%;
display: none;
}
.tableButtons {
float: right;
margin-top: -30px;
}
#clear_button, #copy_button, #download_button{
font-size: 16px;
padding-left: 3px;
margin-bottom: 3px;
}
.click{
cursor: pointer;
}
.click:hover{
text-decoration: underline;
}
.material-icons{
font-family: "Material Icons" !important;
font-size: 14px;
padding:3px;
line-height: 100%;
margin-top: 0px;
margin-bottom: 0px;
}
#input_livello_ghost {
height: 10px;
margin: 0px;
padding: 1px;
border: 0px;
outline: none;
}
input[type=number].no-spinner::-webkit-outer-spin-button,
input[type=number].no-spinner::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type=number].no-spinner {
-moz-appearance:textfield;
}
#trenini_table {
margin-top: 10px;
}
/* TABS */
/* Style the tab */
.tab {
overflow: hidden;
border: 1px solid #ccc;
background-color: #f1f1f1;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
/* Style the buttons that are used to open the tab content */
.tab button {
background-color: inherit;
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 14px 16px;
transition: background-color 0.3s linear;
border-radius: 0;
margin: 0;
font-weight: normal;
}
/* Change background color of buttons on hover */
.tab button:hover {
background-color: #ddd;
}
/* Create an active/current tablink class */
.tab button.active {
background-color: #d6d6d6;
}
/* Style the tab content */
.tabcontent {
display: none;
padding: 6px 12px;
border: 1px solid #ccc;
border-top: none;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
#theme_button{
position: absolute;
top: 10px;
right: 10px;
} | 0.319758 | 0.100304 |
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500&display=swap");
body {
background-color: #0f0e10;
font-family: "Roboto", sans-serif;
font-size: 24px;
color: #fff;
margin: 0;
padding: 0;
min-height: 100vh;
min-width: 60vw;
}
.hidden {
display: none !important;
}
.highlighted {
font-size: 125%;
font-weight: 500;
color: #28a5c8;
}
a {
color: #28a5c8;
text-decoration: none;
}
a .icon-link {
height: 24px;
width: auto;
vertical-align: middle;
}
a .icon-link.big {
height: 60px;
}
button, a.button {
line-height: 40px;
width: 270px;
border: 2px solid;
border-radius: 29px;
font-weight: 400;
font-size: 18px;
text-align: center;
background-color: transparent;
border-color: #28a5c8;
color: #fff;
}
button:hover, button.selected, a.button:hover, a.button.selected {
background-color: #28a5c8;
border-color: #28a5c8;
color: #fff;
}
button:disabled, button[aria-disabled="true"], a.button:disabled, a.button[aria-disabled="true"] {
background-color: transparent;
border-color: rgba(40, 165, 200, 0.3);
color: rgba(255, 255, 255, 0.3);
}
button:disabled img, button[aria-disabled="true"] img, a.button:disabled img, a.button[aria-disabled="true"] img {
opacity: 0.3;
}
button.hide-when-disabled:disabled, a.button.hide-when-disabled:disabled {
display: none !important;
}
button img, a.button img {
height: 36px;
width: auto;
vertical-align: middle;
}
button img.small, a.button img.small {
height: 24px;
}
button.big, a.button.big {
height: 64px;
}
h1, h2 {
text-align: center;
margin: 0;
}
h1 {
font-size: 80px;
line-height: 94px;
font-weight: 900;
font-style: normal;
}
h2 {
font-size: 36px;
line-height: 43px;
}
h3 {
font-size: 16px;
line-height: 24px;
}
ul {
list-style-type: none;
-webkit-padding-start: 0;
padding-inline-start: 0;
}
input[type=text], input[type=number], input[type=password] {
background-color: #323232;
border: 0;
border-radius: 20px;
color: #28a5c8;
height: 28px;
padding: 0px 10px 0px 10px;
width: 350px;
}
input[type=password] {
margin-bottom: 15px;
}
input[type=text] {
margin-bottom: 15px;
}
input#eth-amount {
width: 90px;
margin-left: 10px;
font-size: 18px;
height: 46px;
}
span.small {
font-size: 18px;
}
.error-box {
height: 28px;
}
span.error {
color: #ef5350;
-ms-grid-column-align: center;
justify-self: center;
font-size: 12px;
}
div.logo {
width: 370px;
height: 105px;
display: inline-block;
text-align: center;
}
div.logo img {
width: auto;
height: 100%;
}
div.logo.business-card {
position: fixed;
bottom: 10px;
left: 10px;
margin-left: 0 !important;
text-align: left;
width: 222px;
height: 63px;
}
div.logo.home {
display: none;
}
ul.checklist {
margin: 0;
}
ul.checklist li {
display: block;
padding-bottom: 10px;
}
ul.checklist li span.check-value.nok {
color: #ef5350 !important;
}
ul.checklist li span.check-value.ok {
color: #28a5c8 !important;
}
.wallet-download {
display: none;
}
.wallet-download.is-visible {
display: block;
}
#no-web3 {
display: none;
}
section.content {
width: 60vw;
margin: 0 auto;
padding: 50px 0;
}
section.content .progress {
display: none;
}
section.content .progress.is-visible {
display: block;
}
section.content .progress .steps {
margin-left: auto;
margin-right: auto;
margin-bottom: 30px;
width: 45vw;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
section.content .progress .steps .circle {
background-color: #323232;
border-radius: 50%;
width: 45px;
height: 45px;
padding: 10px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-line-pack: center;
align-content: center;
}
section.content .progress .steps .circle img {
display: inline-block;
max-width: 100%;
max-height: 100%;
opacity: 0.2;
}
section.content .progress .steps .circle img.rounded {
border-radius: 50%;
}
section.content .progress .steps .circle.active {
background-color: #28a5c8;
}
section.content .progress .steps .circle.active img {
opacity: 1;
}
section.content .progress .steps .divider {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
height: 4px;
background-color: #323232;
}
section.content div.container {
display: -ms-grid;
display: grid;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-grid-column-align: center;
justify-self: center;
min-height: 480px;
-ms-grid-rows: 160px minmax(120px, auto) minmax(120px, auto) 80px;
grid-template-rows: 160px minmax(120px, auto) minmax(120px, auto) 80px;
}
section.content div.container div {
-ms-grid-column-align: center;
justify-self: center;
}
section.content div.container h1 {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
section.content div.container h1 img {
width: auto;
height: 105px;
}
section.content div.container div.hero {
text-align: center;
}
section.content div.container div.description {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-line-pack: center;
align-content: center;
}
section.content div.container div.description div:not(:last-child) {
margin-bottom: 30px;
}
section.content div.container div.description .row-items {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
width: 100%;
}
section.content div.container div.description .row-items div {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
section.content div.container div.description .row-items div:not(:last-child) {
margin-right: 26px;
}
section.content div.container div.description .row-items div img {
height: 105px;
width: auto;
margin-bottom: 52px;
}
section.content div.container div.description .row-items div span {
max-width: 290px;
}
section.content div.container div.info-panel {
text-align: center;
}
section.content div.container div.info-panel.small {
max-width: 900px;
}
section.content div.container div.info-panel p {
font-size: 14px;
text-align: left;
}
section.content div.container div.action {
width: 100%;
display: -ms-inline-grid;
display: inline-grid;
grid-auto-flow: column;
-webkit-box-pack: space-evenly;
-ms-flex-pack: space-evenly;
justify-content: space-evenly;
}
section.content div.container div.action-list {
width: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
section.content div.container div.action-list .exchange-button {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
section.content div.container div.action-list .exchange-button .dex-icon {
height: 200px;
font-size: 120px;
line-height: 200px;
width: auto;
}
section.content div.container div.action-list .exchange-button .estimation {
font-size: 12px;
line-height: 24px;
}
section.content div.container div.action-list .exchange-button:disabled img {
opacity: 0.3;
}
section.content div.container div.action-list > *:not(:last-child) {
margin-right: 22px;
}
section.content div.container div.ack-prompt {
display: -ms-inline-grid;
display: inline-grid;
-ms-grid-columns: 30px auto;
grid-template-columns: 30px auto;
line-height: 21px;
max-width: 630px;
margin: auto;
font-size: 70%;
text-align: center;
}
section.content div.container div.ack-prompt i {
color: #28a5c8;
cursor: pointer;
}
#background-task-tracker {
margin: 70px 0;
}
#background-task-tracker ul.messages {
color: #fff;
line-height: 28px;
list-style-type: none;
margin: 0;
padding: 30px 0px 30px 0px;
text-align: center;
}
#background-task-tracker ul.messages.big {
font-size: 36px;
line-height: 94px;
}
#background-task-tracker img {
height: 105px;
width: auto;
}
#background-task-tracker.video-tracker {
z-index: 120;
width: 100%;
margin: 0;
position: fixed;
bottom: 0;
left: 0;
right: 0;
}
#background-task-tracker.video-tracker .spinner {
display: none;
}
div.spinner {
display: -ms-grid;
display: grid;
margin: auto;
-ms-grid-row-align: center;
align-self: center;
-webkit-animation: .8s spin infinite;
animation: .8s spin infinite;
border: 4px solid #323232;
border-radius: 50%;
border-bottom-color: #0a6e87;
border-right-color: #0a6e87;
border-top-color: #0a6e87;
height: 100px;
width: 100px;
}
@-webkit-keyframes spin {
to {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes spin {
to {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
.body-blackout {
display: none;
position: fixed;
z-index: 1010;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.65);
}
.body-blackout.is-blacked-out {
display: block;
}
.modal {
min-height: 400px;
max-height: 565px;
width: 480px;
background-color: #282828;
border-radius: 10px 10px 10px 10px;
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
padding: 45px;
-webkit-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
z-index: 1011;
pointer-events: none;
opacity: 0;
overflow: hidden;
}
.modal.is-visible {
opacity: 1;
pointer-events: auto;
}
.modal .modal__close {
position: absolute;
right: 24px;
top: 24px;
cursor: pointer;
}
.modal .overflow-box {
width: 100%;
height: 490px;
padding: 0 10px;
overflow-y: scroll;
}
.modal .overflow-box p {
font-weight: 400;
font-size: 50%;
text-align: left;
}
.tooltip-item:not(button) {
color: #28a5c8;
}
.tooltip-item {
position: relative;
display: inline-block;
}
.tooltip-item:hover > .tooltip {
visibility: visible;
opacity: 1;
}
.tooltip {
font-size: 18px;
text-align: left;
color: #fff;
position: absolute;
z-index: 50;
bottom: 100%;
left: 50%;
visibility: hidden;
opacity: 0;
-webkit-transition: opacity 0.3s;
transition: opacity 0.3s;
width: 400px;
margin-left: -250px;
padding: 15px;
background-color: #3c3c3c;
border-radius: 10px;
}
.tooltip ul {
margin: 10px 0;
list-style-type: disc;
-webkit-padding-start: 20px;
padding-inline-start: 20px;
}
.tooltip ul li {
margin-bottom: 10px;
}
.tooltip ul li:last-child {
margin-bottom: 0;
}
.tooltip.is-visible {
visibility: visible;
opacity: 1;
}
.question {
width: 200px;
position: fixed;
bottom: 30px;
right: 45px;
}
.question img {
height: 60px;
}
.video-wrapper {
position: fixed;
width: 100vw;
height: 100vh;
display: none;
background-color: #000000;
z-index: 110;
}
.video-wrapper.is-visible {
display: block;
}
.video-wrapper video {
height: 80%;
width: 100%;
z-index: 130;
}
.terms-list {
counter-reset: item;
font-size: 16px;
line-height: 24px;
font-weight: 500;
text-align: left;
padding-left: 0;
}
.terms-list .inner-list {
counter-reset: item;
font-size: 14px;
text-align: left;
font-weight: 400;
padding-left: 0;
}
.terms-list li {
margin-top: 14px;
display: block;
}
.terms-list li:before {
content: counters(item, ".") ". ";
counter-increment: item;
}
/*# sourceMappingURL=app.css.map */ | resources/static/css/app.css | @import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500&display=swap");
body {
background-color: #0f0e10;
font-family: "Roboto", sans-serif;
font-size: 24px;
color: #fff;
margin: 0;
padding: 0;
min-height: 100vh;
min-width: 60vw;
}
.hidden {
display: none !important;
}
.highlighted {
font-size: 125%;
font-weight: 500;
color: #28a5c8;
}
a {
color: #28a5c8;
text-decoration: none;
}
a .icon-link {
height: 24px;
width: auto;
vertical-align: middle;
}
a .icon-link.big {
height: 60px;
}
button, a.button {
line-height: 40px;
width: 270px;
border: 2px solid;
border-radius: 29px;
font-weight: 400;
font-size: 18px;
text-align: center;
background-color: transparent;
border-color: #28a5c8;
color: #fff;
}
button:hover, button.selected, a.button:hover, a.button.selected {
background-color: #28a5c8;
border-color: #28a5c8;
color: #fff;
}
button:disabled, button[aria-disabled="true"], a.button:disabled, a.button[aria-disabled="true"] {
background-color: transparent;
border-color: rgba(40, 165, 200, 0.3);
color: rgba(255, 255, 255, 0.3);
}
button:disabled img, button[aria-disabled="true"] img, a.button:disabled img, a.button[aria-disabled="true"] img {
opacity: 0.3;
}
button.hide-when-disabled:disabled, a.button.hide-when-disabled:disabled {
display: none !important;
}
button img, a.button img {
height: 36px;
width: auto;
vertical-align: middle;
}
button img.small, a.button img.small {
height: 24px;
}
button.big, a.button.big {
height: 64px;
}
h1, h2 {
text-align: center;
margin: 0;
}
h1 {
font-size: 80px;
line-height: 94px;
font-weight: 900;
font-style: normal;
}
h2 {
font-size: 36px;
line-height: 43px;
}
h3 {
font-size: 16px;
line-height: 24px;
}
ul {
list-style-type: none;
-webkit-padding-start: 0;
padding-inline-start: 0;
}
input[type=text], input[type=number], input[type=password] {
background-color: #323232;
border: 0;
border-radius: 20px;
color: #28a5c8;
height: 28px;
padding: 0px 10px 0px 10px;
width: 350px;
}
input[type=password] {
margin-bottom: 15px;
}
input[type=text] {
margin-bottom: 15px;
}
input#eth-amount {
width: 90px;
margin-left: 10px;
font-size: 18px;
height: 46px;
}
span.small {
font-size: 18px;
}
.error-box {
height: 28px;
}
span.error {
color: #ef5350;
-ms-grid-column-align: center;
justify-self: center;
font-size: 12px;
}
div.logo {
width: 370px;
height: 105px;
display: inline-block;
text-align: center;
}
div.logo img {
width: auto;
height: 100%;
}
div.logo.business-card {
position: fixed;
bottom: 10px;
left: 10px;
margin-left: 0 !important;
text-align: left;
width: 222px;
height: 63px;
}
div.logo.home {
display: none;
}
ul.checklist {
margin: 0;
}
ul.checklist li {
display: block;
padding-bottom: 10px;
}
ul.checklist li span.check-value.nok {
color: #ef5350 !important;
}
ul.checklist li span.check-value.ok {
color: #28a5c8 !important;
}
.wallet-download {
display: none;
}
.wallet-download.is-visible {
display: block;
}
#no-web3 {
display: none;
}
section.content {
width: 60vw;
margin: 0 auto;
padding: 50px 0;
}
section.content .progress {
display: none;
}
section.content .progress.is-visible {
display: block;
}
section.content .progress .steps {
margin-left: auto;
margin-right: auto;
margin-bottom: 30px;
width: 45vw;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
section.content .progress .steps .circle {
background-color: #323232;
border-radius: 50%;
width: 45px;
height: 45px;
padding: 10px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-line-pack: center;
align-content: center;
}
section.content .progress .steps .circle img {
display: inline-block;
max-width: 100%;
max-height: 100%;
opacity: 0.2;
}
section.content .progress .steps .circle img.rounded {
border-radius: 50%;
}
section.content .progress .steps .circle.active {
background-color: #28a5c8;
}
section.content .progress .steps .circle.active img {
opacity: 1;
}
section.content .progress .steps .divider {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
height: 4px;
background-color: #323232;
}
section.content div.container {
display: -ms-grid;
display: grid;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-grid-column-align: center;
justify-self: center;
min-height: 480px;
-ms-grid-rows: 160px minmax(120px, auto) minmax(120px, auto) 80px;
grid-template-rows: 160px minmax(120px, auto) minmax(120px, auto) 80px;
}
section.content div.container div {
-ms-grid-column-align: center;
justify-self: center;
}
section.content div.container h1 {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
section.content div.container h1 img {
width: auto;
height: 105px;
}
section.content div.container div.hero {
text-align: center;
}
section.content div.container div.description {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-line-pack: center;
align-content: center;
}
section.content div.container div.description div:not(:last-child) {
margin-bottom: 30px;
}
section.content div.container div.description .row-items {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
width: 100%;
}
section.content div.container div.description .row-items div {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
section.content div.container div.description .row-items div:not(:last-child) {
margin-right: 26px;
}
section.content div.container div.description .row-items div img {
height: 105px;
width: auto;
margin-bottom: 52px;
}
section.content div.container div.description .row-items div span {
max-width: 290px;
}
section.content div.container div.info-panel {
text-align: center;
}
section.content div.container div.info-panel.small {
max-width: 900px;
}
section.content div.container div.info-panel p {
font-size: 14px;
text-align: left;
}
section.content div.container div.action {
width: 100%;
display: -ms-inline-grid;
display: inline-grid;
grid-auto-flow: column;
-webkit-box-pack: space-evenly;
-ms-flex-pack: space-evenly;
justify-content: space-evenly;
}
section.content div.container div.action-list {
width: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
section.content div.container div.action-list .exchange-button {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
section.content div.container div.action-list .exchange-button .dex-icon {
height: 200px;
font-size: 120px;
line-height: 200px;
width: auto;
}
section.content div.container div.action-list .exchange-button .estimation {
font-size: 12px;
line-height: 24px;
}
section.content div.container div.action-list .exchange-button:disabled img {
opacity: 0.3;
}
section.content div.container div.action-list > *:not(:last-child) {
margin-right: 22px;
}
section.content div.container div.ack-prompt {
display: -ms-inline-grid;
display: inline-grid;
-ms-grid-columns: 30px auto;
grid-template-columns: 30px auto;
line-height: 21px;
max-width: 630px;
margin: auto;
font-size: 70%;
text-align: center;
}
section.content div.container div.ack-prompt i {
color: #28a5c8;
cursor: pointer;
}
#background-task-tracker {
margin: 70px 0;
}
#background-task-tracker ul.messages {
color: #fff;
line-height: 28px;
list-style-type: none;
margin: 0;
padding: 30px 0px 30px 0px;
text-align: center;
}
#background-task-tracker ul.messages.big {
font-size: 36px;
line-height: 94px;
}
#background-task-tracker img {
height: 105px;
width: auto;
}
#background-task-tracker.video-tracker {
z-index: 120;
width: 100%;
margin: 0;
position: fixed;
bottom: 0;
left: 0;
right: 0;
}
#background-task-tracker.video-tracker .spinner {
display: none;
}
div.spinner {
display: -ms-grid;
display: grid;
margin: auto;
-ms-grid-row-align: center;
align-self: center;
-webkit-animation: .8s spin infinite;
animation: .8s spin infinite;
border: 4px solid #323232;
border-radius: 50%;
border-bottom-color: #0a6e87;
border-right-color: #0a6e87;
border-top-color: #0a6e87;
height: 100px;
width: 100px;
}
@-webkit-keyframes spin {
to {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes spin {
to {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
.body-blackout {
display: none;
position: fixed;
z-index: 1010;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.65);
}
.body-blackout.is-blacked-out {
display: block;
}
.modal {
min-height: 400px;
max-height: 565px;
width: 480px;
background-color: #282828;
border-radius: 10px 10px 10px 10px;
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
padding: 45px;
-webkit-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
z-index: 1011;
pointer-events: none;
opacity: 0;
overflow: hidden;
}
.modal.is-visible {
opacity: 1;
pointer-events: auto;
}
.modal .modal__close {
position: absolute;
right: 24px;
top: 24px;
cursor: pointer;
}
.modal .overflow-box {
width: 100%;
height: 490px;
padding: 0 10px;
overflow-y: scroll;
}
.modal .overflow-box p {
font-weight: 400;
font-size: 50%;
text-align: left;
}
.tooltip-item:not(button) {
color: #28a5c8;
}
.tooltip-item {
position: relative;
display: inline-block;
}
.tooltip-item:hover > .tooltip {
visibility: visible;
opacity: 1;
}
.tooltip {
font-size: 18px;
text-align: left;
color: #fff;
position: absolute;
z-index: 50;
bottom: 100%;
left: 50%;
visibility: hidden;
opacity: 0;
-webkit-transition: opacity 0.3s;
transition: opacity 0.3s;
width: 400px;
margin-left: -250px;
padding: 15px;
background-color: #3c3c3c;
border-radius: 10px;
}
.tooltip ul {
margin: 10px 0;
list-style-type: disc;
-webkit-padding-start: 20px;
padding-inline-start: 20px;
}
.tooltip ul li {
margin-bottom: 10px;
}
.tooltip ul li:last-child {
margin-bottom: 0;
}
.tooltip.is-visible {
visibility: visible;
opacity: 1;
}
.question {
width: 200px;
position: fixed;
bottom: 30px;
right: 45px;
}
.question img {
height: 60px;
}
.video-wrapper {
position: fixed;
width: 100vw;
height: 100vh;
display: none;
background-color: #000000;
z-index: 110;
}
.video-wrapper.is-visible {
display: block;
}
.video-wrapper video {
height: 80%;
width: 100%;
z-index: 130;
}
.terms-list {
counter-reset: item;
font-size: 16px;
line-height: 24px;
font-weight: 500;
text-align: left;
padding-left: 0;
}
.terms-list .inner-list {
counter-reset: item;
font-size: 14px;
text-align: left;
font-weight: 400;
padding-left: 0;
}
.terms-list li {
margin-top: 14px;
display: block;
}
.terms-list li:before {
content: counters(item, ".") ". ";
counter-increment: item;
}
/*# sourceMappingURL=app.css.map */ | 0.310485 | 0.06666 |
@font-face {
font-family: "GT-America-Mono";
src: url("https://storage.googleapis.com/wp-bronx-storage/1/2020/09/GT-America-Mono-Regular.woff");
}
button#babylonUnmuteIconBtn {
margin-left: -500px;
}
body.home #responsive-menu-button {
display: none;
}
body {
font-family: 'GT-America-Mono', monospace;
background-color: #000;
color: #fff;
font-size: 0.8em;
cursor: url('https://storage.googleapis.com/wp-bronx-storage/1/2020/09/cursor-32x32.png') 10 0, auto !important;
}
h1,
h2,
h3,
h4 {
font-size: 1.1rem;
}
a {
background-color: transparent;
text-decoration: none;
color: #0f0;
cursor: url('https://storage.googleapis.com/wp-bronx-storage/1/2020/09/cursor-manito-32x32.png') 10 0, auto !important;
-webkit-touch-callout: none;
/* iOS Safari */
-webkit-user-select: none;
/* Safari */
-khtml-user-select: none;
/* Konqueror HTML */
-moz-user-select: none;
/* Old versions of Firefox */
-ms-user-select: none;
/* Internet Explorer/Edge */
user-select: none;
/* Non-prefixed version, currently */
}
a:hover {
color: #0f0;
}
.white-text {
color: #fff;
}
.white-text a {
color: #fff;
}
.white-text a:hover {
color: #0f0;
}
button {
background-color: transparent;
text-decoration: none;
color: #0f0;
cursor: url('https://storage.googleapis.com/wp-bronx-storage/1/2020/09/cursor-manito-32x32.png') 10 0, auto !important;
-webkit-touch-callout: none;
/* iOS Safari */
-webkit-user-select: none;
/* Safari */
-khtml-user-select: none;
/* Konqueror HTML */
-moz-user-select: none;
/* Old versions of Firefox */
-ms-user-select: none;
/* Internet Explorer/Edge */
user-select: none;
/* Non-prefixed version, currently */
}
/*** Wordpress ***/
.page-content {
margin: 0;
padding: 0;
}
.info-container {
display: block;
top: 100px;
position: relative;
font-size: 0.8rem;
}
.site-header {
padding: 0;
}
/*Obra arbol*/
.post-8111 .page-header {
display: none;
}
.post-8111 {
max-width: 100% !important;
}
/*Temblores*/
.post-8658 .page-header {
display: none;
}
.post-8658 {
max-width: 100% !important;
}
/**/
.entry-title {
font-size: 1.2rem;
color: #0f0;
/*margin-top: -200px;*/
}
.page-template-default .entry-title,
.post-tags {
display: none;
}
.post-template-default .responsive-menu-button {
display: none !important;
}
.page-id-1197 .responsive-menu-button {
display: none !important;
}
.page-id-1568 .responsive-menu-button {
display: none !important;
}
.site-branding {
display: none;
}
figure.wp-block-embed-youtube.wp-block-embed.is-type-video.is-provider-youtube.wp-embed-aspect-16-9.wp-has-aspect-ratio {
padding: 0;
margin: 0;
height: auto;
}
figure.wp-block-embed.is-type-video.is-provider-vimeo {
margin: 0;
padding: 0;
height: auto;
}
/* Setian */
.full-screen-centered {
width: 100%;
height: 100%;
position: absolute;
margin: 0;
padding: 0;
border: 0;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.full-screen-centered img {
object-fit: cover;
}
.half-screen-centered {
width: 50%;
height: 50%;
position: absolute;
margin: 0;
padding: 0;
border: 0;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.page-content .iframeVideoProfile {
width: 100%;
height: 260px;
}
#mapa-iframe-container {
margin: 0;
padding: 0;
border: 0;
}
.popup-setian-container {
width: 100%;
height: -webkit-fill-available;
}
.map-image-container {
z-index: -1;
margin: 0;
padding: 0;
border: 0;
display: flex;
position: relative;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
justify-content: center;
}
.map-image-container img {
object-fit: cover;
height: 100%;
}
@media (orientation: landscape) {
.mapa-image-container img {
height: 100%;
}
}
@media (orientation: portrait) {
.mapa-image-container img {
width: 100%;
}
}
#popmake-1572 {
margin: 0;
padding: 0;
border: 0;
}
.fluid-screen {
position: absolute;
top: 0;
left: 0;
margin: 0;
padding: 0;
border: 0;
width: 100%;
height: 100%;
pointer-events: none;
}
.green-border {
border: 10px solid #00ff00;
}
.center-middle {
position: fixed;
top: 50%;
left: 50%;
/* bring your own prefixes */
transform: translate(-50%, -50%);
}
.active-button {
pointer-events: all;
font-size: 0.7rem;
}
.button-fdm {
margin: 0px;
padding: 0px;
width: 2em;
height: 2em;
color: #00ff00;
pointer-events: all;
font-size: 0.4rem;
text-align: left;
}
.button-fdm a:hover {
background-color: #0f0;
}
.long-button {
width: 100%;
border-radius: 0px;
padding: 5px;
}
.button-left {
position: absolute;
bottom: 50px;
left: calc(50% - 55px);
}
.button-right {
position: absolute;
bottom: 50px;
left: calc(50% + 15px);
}
.button-right-top {
position: absolute;
top: 15px;
right: 40px;
}
.button-right-top-2 {
position: absolute;
top: 15px;
right: 120px;
}
.button-up {
position: absolute;
bottom: 80px;
left: 50%;
transform: rotate(90deg);
}
.button-down {
position: absolute;
bottom: 35px;
left: 50%;
transform: rotate(90deg);
}
.button-up .wp-block-button__link,
.button-down .wp-block-button__link {
box-shadow: 6px -6px #000;
}
.button-top {
position: absolute;
top: 15px;
}
.button-bottom {
position: absolute;
left: 80px;
bottom: 40px;
}
.button-bottom-left {
position: absolute;
bottom: 60px;
left: 10px;
}
.button-bottom-left-2 {
position: absolute;
bottom: 60px;
right: 80px;
}
.btn-map a {
background-color: #0f0;
}
.btn-map a:hover {
background-color: #fff;
}
.btn-map-rigth-up {
position: absolute;
top: 20%;
right: 40%;
}
.btn-map-rigth-down {
position: absolute;
bottom: 40%;
right: 30%;
}
.btn-map-left-up {
position: absolute;
top: 30%;
left: 30%;
}
.btn-map-left-down {
position: absolute;
bottom: 35%;
left: 15%;
}
.btn-map-center-up {
position: absolute;
top: 15%;
left: 45%;
}
.btn-map-center-down {
position: absolute;
bottom: 25%;
left: 45%;
}
.centered {
margin-left: 45%;
}
#autoPlayTimeline {
width: 100%;
height: 10px;
background-color: #00ff00;
position: absolute;
bottom: 0px;
left: 0px;
z-index: -1;
margin: 0;
padding: 0;
border: 0;
}
/* Virtual Insanity */
#virtualInsanityCanvas {
border: 0;
background-color: #000000;
background-image: url("https://storage.googleapis.com/wp-bronx-storage/1/2020/09/fondo-loading-08.png");
cursor: url('https://storage.googleapis.com/wp-bronx-storage/1/2020/09/cursor-grab-32x32.png') 10 0, auto !important;
}
#virtualInsanityCanvas:active:hover {
cursor: url('https://storage.googleapis.com/wp-bronx-storage/1/2020/09/cursor-grabbing-32x32.png') 10 0, auto !important;
}
#virtualInsanityCanvas.horizTranslate {
-webkit-transition: 3s;
-moz-transition: 3s;
-ms-transition: 3s;
-o-transition: 3s;
transition: 3s;
left: -250px;
top: 0%;
}
#virtualInsanityCanvas.resetPosition {
-webkit-transition: 3s;
-moz-transition: 3s;
-ms-transition: 3s;
-o-transition: 3s;
transition: 3s;
left: 0px;
top: 0%;
}
/* Gutenberg Modifications */
.wp-block-button__link {
background-color: #d6d6d6;
color: #000 !important;
font-weight: 700;
font-size: 0.8rem;
box-shadow: 6px 6px #000;
border: solid 2px #000;
padding: 0.2rem 0.7rem 0.3rem 0.7rem;
}
.wp-block-button .button-fdm-green {
background-color: #0f0 !important;
color: #000;
}
.button-fdm-gray.wp-block-button__link {
background-color: #d6d6d6;
color: #000;
}
.button-buy {
margin-bottom: 20px;
}
/******ARTIST INDEX*********/
.indexItem:hover {
color: #0f0 !important;
background-color: #000;
}
#popmake-1521 {
overflow-y: scroll;
padding-right: 20px;
}
#popmake-1521,
#popmake-1521 li {
font-size: 0.8rem;
color: #000;
}
#popmake-1521 a:hover {
color: #0f0;
}
p.VirtualIn_index_posts_letter.indexLetter {
margin-bottom: 0px;
}
#popmake-1521 h1 {
font-size: 1.5rem;
/*color: #0f0 !important;*/
}
#pum-1521 .pum-close {
position: absolute;
left: 18%;
top: 15%;
/*pointer-events: all;*/
z-index: 9999999990;
height: 36px;
width: 36px;
padding: 0px;
color: #0a0101;
font-family: "Arial";
font-weight: 700;
font-size: 16px;
line-height: 20px;
border: 2px solid #000;
border-radius: 0px;
box-shadow: 6px 6px 0px 0px rgba( 0, 0, 0);
background-color: #d6d6d6;
}
/* TOOLTIPS */
div#popmake-1946,
div#popmake-1946,
div#popmake-1959 {
max-height: 48px;
}
/* Menu responsive Plugin */
@media screen and (max-width: 8000px) {
button#responsive-menu-button {
box-shadow: 6px 6px #fff;
border-radius: 0px;
}
}
#responsive-menu-container {
padding: 8% 0;
}
/* Popup Maker Plugin */
.spritespin-stage,
.spritespin-canvas,
.spritespin,
.spritespin-instance,
container-360 {
cursor: url('https://storage.googleapis.com/wp-bronx-storage/1/2020/09/cursor-grab-32x32.png') 10 0, auto !important;
}
#pum-2082 {
cursor: url('https://storage.googleapis.com/wp-bronx-storage/1/2020/09/cursor-grab-32x32.png') 10 0, auto !important;
}
#pum-2082:active:hover {
cursor: url('https://storage.googleapis.com/wp-bronx-storage/1/2020/09/cursor-grabbing-32x32.png') 10 0, auto !important;
}
.pum-content,
.popmake-content {
height: -webkit-fill-available;
}
.pum-container.pum-scrollable .pum-content {
border-right: dotted 2px #000;
padding-right: 5px;
}
.pum-theme-1951 .pum-content,
.pum-theme-tooltips .pum-content {
font-size: 0.8rem;
max-height: 250px;
}
#popmake-175 button.pum-close.popmake-close {
pointer-events: none;
}
/* PARA MOVILES */
@media screen and (max-width: 600px) {
.pum-theme-171 .pum-container,
.pum-theme-cutting-edge .pum-container {
width: 100% !important;
padding: 0px;
left: 0;
right: 0;
top: 35% !important;
height: 65% !important;
}
#pum-175 .pum-close {
left: 10px !important;
top: -40px !important;
}
#virtualInsanityCanvas.horizTranslate {
-webkit-transition: 3s;
-moz-transition: 3s;
-ms-transition: 3s;
-o-transition: 3s;
transition: 3s;
top: -30%;
left: 0;
}
#popmake-1572 {
width: 95% !important;
height: 70% !important;
top: 25% !important;
left: 2.5% !important;
}
#responsive-menu-container {
padding-top: 70px;
}
/* Menu Artistas */
#popmake-1521 {
width: 95% !important;
height: 70% !important;
top: 25% !important;
left: 2% !important;
padding: 15px;
}
#pum-1521 .pum-close {
position: absolute;
left: 15px;
top: 20%;
}
/* BOTONES MENÚ MAPA */
.btn-map-rigth-up {
position: absolute;
top: 25%;
right: 35%;
}
.btn-map-rigth-down {
position: absolute;
bottom: 40%;
right: 30%;
}
.btn-map-left-up {
position: absolute;
top: 30%;
left: 30%;
}
.btn-map-left-down {
position: absolute;
bottom: 35%;
left: 15%;
}
.btn-map-center-up {
position: absolute;
top: 15%;
left: 45%;
}
.btn-map-center-down {
position: absolute;
bottom: 25%;
left: 45%;
}
.button-right-top-2 {
position: absolute;
top: 55px;
right: 60px;
}
}
/*FINAL DE MOVILES */
/* FORMULARIOS. */
.um .um-form input[type=text],
.um .um-form input[type=search],
.um .um-form input[type=tel],
.um .um-form input[type=number],
.um .um-form input[type=password],
.um .um-form textarea,
.select2-container .select2-choice,
.select2-container-multi .select2-choices {
background-color: #000000;
}
a.um-button.um-disabled:active {
background: #00ff00;
}
.um .um-form input[type=text],
.um .um-form input[type=search],
.um .um-form input[type=tel],
.um .um-form input[type=number],
.um .um-form input[type=password],
.um .um-form textarea,
.select2-container .select2-choice,
.select2-container-multi .select2-choices {
background-color: #000000;
}
.um input[type=submit].um-button,
.um input[type=submit].um-button:focus,
.um a.um-button,
.um a.um-button.um-disabled:hover,
.um a.um-button.um-disabled:focus,
.um a.um-button.um-disabled:active {
background: #00ff00;
}
.um .um-form input[type=text],
.um .um-form input[type=search],
.um .um-form input[type=tel],
.um .um-form input[type=number],
.um .um-form input[type=password],
.um .um-form textarea,
.um .upload-progress,
.select2-container .select2-choice,
.select2-drop,
.select2-container-multi .select2-choices,
.select2-drop-active,
.select2-drop.select2-drop-above {
border-top-color: #000000 !important;
border-top-style: solid !important;
border-top-width: 1px !important;
border-right-color: #000000 !important;
border-right-style: solid !important;
border-right-width: 1px !important;
border-bottom-color: #d6d6d6 !important;
border-bottom-style: solid !important;
border-bottom-width: 1px !important;
border-left-color: #000000 !important;
border-left-style: solid !important;
border-left-width: 1px !important;
border-image-source: initial !important;
}
.um .um-field-label {
color: #d6d6d6;
}
.um-field-checkbox-option,
.um-field-radio-option {
margin: 0px 0px 0px 36px;
line-height: 24px;
color: #d6d6d6 !important;
display: block;
}
.um .um-button {
color: #000000;
}
input[type=submit].um-button,
input[type=submit].um-button:focus {
vertical-align: middle !important;
height: auto !important;
font-size: 15px;
font-weight: bolder !important;
cursor: pointer !important;
width: fit-content;
box-shadow: none;
text-shadow: none;
font-family: inherit;
outline: none !important;
margin: 0;
opacity: 1;
}
input[type=submit].um-button,
input[type=submit].um-button {
border-radius: 0 !important;
}
.page-id-134 p {
margin-top: 0;
margin-bottom: 0px;
}
.um input[type=submit].um-button:hover,
.um a.um-button:hover {
background-color: #277327;
}
a.um-button {
font-size: 14px;
border: none !important;
display: block;
width: 100%;
line-height: 1em !important;
text-decoration: none !important;
text-align: center;
text-transform: none !important;
font-weight: normal !important;
overflow: hidden;
position: relative;
transition: 0.25s;
box-sizing: border-box;
font-weight: bolder !important;
border-radius: 0!important;
}
.um .um-button.um-alt,
.um input[type=submit].um-button.um-alt {
background: #d6d6d6;
}
.um .um-button.um-alt,
.um input[type=submit].um-button.um-alt {
color: #000000;
}
.um .um-button.um-alt:hover,
.um input[type=submit].um-button.um-alt:hover {
background: #d6d6d65c;
}
.um-icon-help-circled:before {
display: none;
}
.page-id-134 .wp-block-button__link {
color: #00ff00 !important;
font-weight: 200;
}
.page-content {
padding-top: 0px;
}
.um-field-checkbox-option,
.um-field-radio-option {
margin: 0px 0px 10px 36px;
line-height: 24px;
color: #d6d6d6 !important;
display: block;
}
button.um-button:hover {
background-color: #0f0;
color: #000;
}
/* <NAME> */
.fondo-colfondos {
background-color: #0d1c3a;
}
.caja-colfondos {
border-radius: 10px;
background-color: white;
padding: 10px;
margin: 10px;
height: auto;
min-height: 280px;
color: #2b325b;
box-sizing: content-box;
}
p.Cajita-colfondos-2 {
border-radius: 10px;
background-color: white;
padding: 10px;
margin: 10px;
height: px;
color: #2b325b;
font-size: 16px;
font-weight: bold;
}
@media screen and (max-width: 2000px) {
p.Cajita-colfondos-2 {
margin-left: 200px;
margin-right: 200px;
}
}
@media screen and (max-width: 600px) {
p.Cajita-colfondos-2 {
margin-left: 0px;
margin-right: 0px;
}
}
h1.has-text-align-center.Observar-colfondos-2 {
font-weight: 900;
color: #ffdb58;
}
h2.has-text-align-center.titulos-colfondos-2 {
font-weight: bold;
}
.page-id-8522 .page-content {
height: 100%;
margin: 0px;
}
.page-id-3157 {
font-family: Arial, Helvetica, sans-serif;
background-color: #0d1c3a;
background-image: url(https://storage.googleapis.com/wp-bronx-storage/1/2020/10/Splash-top-left-mobile.png), url(https://storage.googleapis.com/wp-bronx-storage/1/2020/10/logocolfondos-e1602121430189.png), url(https://storage.googleapis.com/wp-bronx-storage/1/2020/10/Webp.net-resizeimage-2.png);
background-position: left top, right top, right bottom;
background-repeat: no-repeat, no-repeat, no-repeat;
}
.page-id-3157 .wp-block-button__link {
background-color: #d6d6d600;
color: #ffffff !important;
font-weight: normal;
font-size: 0.8rem;
border: solid 2px #ffdb58;
padding: 0.2rem 0.7rem 0.3rem 0.7rem;
box-shadow: none;
}
p.has-text-align-center.responsabilidad-colfondos-2 {
background-color: #0d1c3a;
margin-top: 50px;
margin-bottom: 0px;
}
.page-id-4135 .wp-block-button__link {
background-color: #d6d6d600;
color: #ffffff !important;
font-weight: normal;
font-size: 0.8rem;
border: solid 2px #ffdb58;
padding: 0.2rem 0.7rem 0.3rem 0.7rem;
box-shadow: none;
}
.page-id-4135 {
font-family: Arial, Helvetica, sans-serif;
background-color: #0d1c3a;
background-image: url(https://storage.googleapis.com/wp-bronx-storage/1/2020/10/Webp.net-resizeimage.png), url(https://storage.googleapis.com/wp-bronx-storage/1/2020/10/logocolfondos-e1602121430189.png);
background-position: center, right top;
background-repeat: no-repeat, no-repeat;
}
.titulos-colfondos-main {
color: #ffdb58;
font-weight: bold
}
.page-id-4135 .wp-block-column:not(:first-child) {
margin-left: -100px!important;
}
.responsabilidad-2-colfondos-2 {
background-color: #E0E0E0;
color: #2b325b;
}
.page-id-4135 p {
margin-top: 0;
margin-bottom: 0rem;
}
.page-id-2262 {
font-family: Arial, Helvetica, sans-serif;
background-color: #0d1c3a;
background-image: url(https://storage.googleapis.com/wp-bronx-storage/1/2020/10/Splash-top-left-mobile.png), url(https://storage.googleapis.com/wp-bronx-storage/1/2020/10/logocolfondos-e1602121430189.png), url(https://storage.googleapis.com/wp-bronx-storage/1/2020/10/Webp.net-resizeimage-2.png);
background-position: left top, right top, right bottom;
background-repeat: no-repeat, no-repeat, no-repeat;
}
.page-id-2262 .wp-block-button__link {
background-color: #d6d6d600;
color: #ffffff !important;
font-weight: normal;
font-size: 1.3rem;
border: solid 2px #ffdb58;
padding: 0.2rem 0.7rem 0.3rem 0.7rem;
box-shadow: none;
}
.page-id-2262 .wp-block-media-text__content {
color: #2b325b!important;
}
.titulo-colfondos-3 {
color: #ffdb58;
font-weight: bold
}
.page-id-4398 {
font-family: Arial, Helvetica, sans-serif;
background-color: #0d1c3a;
background-image: url(https://storage.googleapis.com/wp-bronx-storage/1/2020/10/Splash-top-left-mobile.png), url(https://storage.googleapis.com/wp-bronx-storage/1/2020/10/logocolfondos-e1602121430189.png), url(https://storage.googleapis.com/wp-bronx-storage/1/2020/10/Webp.net-resizeimage-2.png);
background-position: left top, right top, right bottom;
background-repeat: no-repeat, no-repeat, no-repeat;
}
.page-id-4398 .wp-block-button__link {
background-color: #d6d6d600;
color: #ffffff !important;
font-weight: normal;
font-size: 1.3rem;
border: solid 2px #ffdb58;
padding: 0.2rem 0.7rem 0.3rem 0.7rem;
box-shadow: none;
}
.page-id-4398 .wp-block-media-text__content {
color: #2b325b!important;
}
.page-id-4398 .caja-colfondos {
border-radius: 10px;
background-color: white;
padding: 10px;
margin: 10px;
height: auto;
min-height: 380px;
color: #2b325b;
box-sizing: content-box;
}
.page-id-2055 {
font-family: Arial, Helvetica, sans-serif;
background-color: #0d1c3a;
background-image: url(https://storage.googleapis.com/wp-bronx-storage/1/2020/10/Splash-top-left-mobile.png), url(https://storage.googleapis.com/wp-bronx-storage/1/2020/10/logocolfondos-e1602121430189.png), url(https://storage.googleapis.com/wp-bronx-storage/1/2020/10/Webp.net-resizeimage-2.png);
background-position: left top, right top, right bottom;
background-repeat: no-repeat, no-repeat, no-repeat;
}
.qmn_quiz_container .qmn_btn,
.qmn_quiz_container .btn {
background-color: #d6d6d600;
color: #ffffff !important;
font-weight: normal;
font-size: 1.3rem;
border: solid 2px #ffdb58;
padding: 0.2rem 0.7rem 0.3rem 0.7rem;
box-shadow: none;
}
.responsabilidad-colfondos-3 {
background-color: #0d1c3a;
margin-top: 50px;
margin-bottom: 0px;
}
/* MENU CARPETAS */
.menu-carpetas-container {
width: 100%;
}
.menu-carpetas {
position: absolute;
background-color: #d6d6d6;
border-style: solid;
border-color: black;
box-shadow: 6px 6px #000000;
padding: 20px;
width: 550px;
}
.menu-carpetas p {
font-size: 0.7rem;
}
.menu-carpetas-1 {
top: 10px;
left: 10px;
}
.menu-carpetas-2 {
top: 120px;
left: 360px;
}
.menu-carpetas-3 {
top: 300px;
left: 25%;
}
@media (max-width: 1024px) {
.menu-carpetas {
position: relative;
margin: 0;
}
.menu-carpetas-1 {
top: auto;
left: 10px;
margin: 0 auto;
}
.menu-carpetas-2 {
top: auto;
left: 10px;
margin: 0 auto;
}
.menu-carpetas-3 {
top: auto;
left: 10px;
margin: 0 auto;
}
}
/* INFO ARTISTAS */
.artWorkContainer {
margin-top: 25px;
}
.technicalSheet {
margin-top: 20px;
}
.imageContainerSheet {}
.technicalSheet {}
/*
.menu-carpertas-1 {
position: absolute;
top: 0px;
left: 5%;
width: 450px;
border-style: solid;
border-color: black;
padding: 10px 30px;
background-color: lightgrey;
box-shadow: 6px 6px #000000;
}
.menu-carpertas-1 .wp-block-column {
margin: 10px !important;
}
.menu-carpertas-1 p {
font-size: 0.7rem;
}
.menu-carpertas-3 p {
font-size: 0.7rem;
}
.menu-carpetas-2{
width: 450px;
border-style: solid;
border-color: black;
margin-left: 400px;
margin-top: 200px;
padding: 10px 30px;
background-color: lightgrey;
box-shadow: 6px 6px #000000;
}
.menu-carpertas-2 p {
font-size: 0.7rem;
}
.menu-carpetas-3 {
border-style: solid;
border-color: #0a0a0a;
margin-left: 350px;
margin-right: 35px;
margin-top: 190px;
background-color: lightgrey;
box-shadow: 6px 6px #000000;
}
wp-block-image .aligncenter>figcaption,
.wp-block-image .alignleft>figcaption,
.wp-block-image .alignright>figcaption,
.wp-block-image.is-resized>figcaption {
display: table-row-group;
caption-side: bottom;
}
figcaption {
font-size: 10px;
color: #333;
line-height: 1.4;
font-style: italic;
font-weight: 400;
}
.wp-block-column:not(:first-child) {
margin-left: 2px;
}
figure.wp-block-image.size-large.is-resized {
margin: 0 40px;
}
*/
/*
@media (max-width: 991px) {
.menu-carpetas{
position: absolute;
}
}*/
/* FORO */
.page-id-8522 .page-content {
margin: 120px;
background-color: #000;
}
.page-id-8522 {
height: 100%;
background-image: url(https://storage.googleapis.com/wp-bronx-storage/1/2020/10/fondo-foro.jpg);
background-position: absolute;
background-repeat: no-repeat;
background-size: cover;
}
.page-id-8522 .wp-block-image img {
margin-top: -18px;
}
.video-foro {
width: 1000px;
margin-bottom: -200px;
}
/* Boton Trivia Post Artistas */
.boton-artista-trivia {
background-color: transparent;
text-decoration: none;
color: #0f0;
cursor: url(https://storage.googleapis.com/wp-bronx-storage/1/2020/09/cursor-manito-32x32.png) 10 0, auto !important;
user-select: none;
border: solid 0.5px !important;
padding: 10px 10px;
font-weight: bold;
}
/* Boton Mayor de 18 */
.pum-theme-167 .pum-content+.pum-close,
.pum-theme-tema-por-defecto .pum-content+.pum-close {
color: #000000;
background-color: #00ff00;
} | public/styles.css | @font-face {
font-family: "GT-America-Mono";
src: url("https://storage.googleapis.com/wp-bronx-storage/1/2020/09/GT-America-Mono-Regular.woff");
}
button#babylonUnmuteIconBtn {
margin-left: -500px;
}
body.home #responsive-menu-button {
display: none;
}
body {
font-family: 'GT-America-Mono', monospace;
background-color: #000;
color: #fff;
font-size: 0.8em;
cursor: url('https://storage.googleapis.com/wp-bronx-storage/1/2020/09/cursor-32x32.png') 10 0, auto !important;
}
h1,
h2,
h3,
h4 {
font-size: 1.1rem;
}
a {
background-color: transparent;
text-decoration: none;
color: #0f0;
cursor: url('https://storage.googleapis.com/wp-bronx-storage/1/2020/09/cursor-manito-32x32.png') 10 0, auto !important;
-webkit-touch-callout: none;
/* iOS Safari */
-webkit-user-select: none;
/* Safari */
-khtml-user-select: none;
/* Konqueror HTML */
-moz-user-select: none;
/* Old versions of Firefox */
-ms-user-select: none;
/* Internet Explorer/Edge */
user-select: none;
/* Non-prefixed version, currently */
}
a:hover {
color: #0f0;
}
.white-text {
color: #fff;
}
.white-text a {
color: #fff;
}
.white-text a:hover {
color: #0f0;
}
button {
background-color: transparent;
text-decoration: none;
color: #0f0;
cursor: url('https://storage.googleapis.com/wp-bronx-storage/1/2020/09/cursor-manito-32x32.png') 10 0, auto !important;
-webkit-touch-callout: none;
/* iOS Safari */
-webkit-user-select: none;
/* Safari */
-khtml-user-select: none;
/* Konqueror HTML */
-moz-user-select: none;
/* Old versions of Firefox */
-ms-user-select: none;
/* Internet Explorer/Edge */
user-select: none;
/* Non-prefixed version, currently */
}
/*** Wordpress ***/
.page-content {
margin: 0;
padding: 0;
}
.info-container {
display: block;
top: 100px;
position: relative;
font-size: 0.8rem;
}
.site-header {
padding: 0;
}
/*Obra arbol*/
.post-8111 .page-header {
display: none;
}
.post-8111 {
max-width: 100% !important;
}
/*Temblores*/
.post-8658 .page-header {
display: none;
}
.post-8658 {
max-width: 100% !important;
}
/**/
.entry-title {
font-size: 1.2rem;
color: #0f0;
/*margin-top: -200px;*/
}
.page-template-default .entry-title,
.post-tags {
display: none;
}
.post-template-default .responsive-menu-button {
display: none !important;
}
.page-id-1197 .responsive-menu-button {
display: none !important;
}
.page-id-1568 .responsive-menu-button {
display: none !important;
}
.site-branding {
display: none;
}
figure.wp-block-embed-youtube.wp-block-embed.is-type-video.is-provider-youtube.wp-embed-aspect-16-9.wp-has-aspect-ratio {
padding: 0;
margin: 0;
height: auto;
}
figure.wp-block-embed.is-type-video.is-provider-vimeo {
margin: 0;
padding: 0;
height: auto;
}
/* Setian */
.full-screen-centered {
width: 100%;
height: 100%;
position: absolute;
margin: 0;
padding: 0;
border: 0;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.full-screen-centered img {
object-fit: cover;
}
.half-screen-centered {
width: 50%;
height: 50%;
position: absolute;
margin: 0;
padding: 0;
border: 0;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.page-content .iframeVideoProfile {
width: 100%;
height: 260px;
}
#mapa-iframe-container {
margin: 0;
padding: 0;
border: 0;
}
.popup-setian-container {
width: 100%;
height: -webkit-fill-available;
}
.map-image-container {
z-index: -1;
margin: 0;
padding: 0;
border: 0;
display: flex;
position: relative;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
justify-content: center;
}
.map-image-container img {
object-fit: cover;
height: 100%;
}
@media (orientation: landscape) {
.mapa-image-container img {
height: 100%;
}
}
@media (orientation: portrait) {
.mapa-image-container img {
width: 100%;
}
}
#popmake-1572 {
margin: 0;
padding: 0;
border: 0;
}
.fluid-screen {
position: absolute;
top: 0;
left: 0;
margin: 0;
padding: 0;
border: 0;
width: 100%;
height: 100%;
pointer-events: none;
}
.green-border {
border: 10px solid #00ff00;
}
.center-middle {
position: fixed;
top: 50%;
left: 50%;
/* bring your own prefixes */
transform: translate(-50%, -50%);
}
.active-button {
pointer-events: all;
font-size: 0.7rem;
}
.button-fdm {
margin: 0px;
padding: 0px;
width: 2em;
height: 2em;
color: #00ff00;
pointer-events: all;
font-size: 0.4rem;
text-align: left;
}
.button-fdm a:hover {
background-color: #0f0;
}
.long-button {
width: 100%;
border-radius: 0px;
padding: 5px;
}
.button-left {
position: absolute;
bottom: 50px;
left: calc(50% - 55px);
}
.button-right {
position: absolute;
bottom: 50px;
left: calc(50% + 15px);
}
.button-right-top {
position: absolute;
top: 15px;
right: 40px;
}
.button-right-top-2 {
position: absolute;
top: 15px;
right: 120px;
}
.button-up {
position: absolute;
bottom: 80px;
left: 50%;
transform: rotate(90deg);
}
.button-down {
position: absolute;
bottom: 35px;
left: 50%;
transform: rotate(90deg);
}
.button-up .wp-block-button__link,
.button-down .wp-block-button__link {
box-shadow: 6px -6px #000;
}
.button-top {
position: absolute;
top: 15px;
}
.button-bottom {
position: absolute;
left: 80px;
bottom: 40px;
}
.button-bottom-left {
position: absolute;
bottom: 60px;
left: 10px;
}
.button-bottom-left-2 {
position: absolute;
bottom: 60px;
right: 80px;
}
.btn-map a {
background-color: #0f0;
}
.btn-map a:hover {
background-color: #fff;
}
.btn-map-rigth-up {
position: absolute;
top: 20%;
right: 40%;
}
.btn-map-rigth-down {
position: absolute;
bottom: 40%;
right: 30%;
}
.btn-map-left-up {
position: absolute;
top: 30%;
left: 30%;
}
.btn-map-left-down {
position: absolute;
bottom: 35%;
left: 15%;
}
.btn-map-center-up {
position: absolute;
top: 15%;
left: 45%;
}
.btn-map-center-down {
position: absolute;
bottom: 25%;
left: 45%;
}
.centered {
margin-left: 45%;
}
#autoPlayTimeline {
width: 100%;
height: 10px;
background-color: #00ff00;
position: absolute;
bottom: 0px;
left: 0px;
z-index: -1;
margin: 0;
padding: 0;
border: 0;
}
/* Virtual Insanity */
#virtualInsanityCanvas {
border: 0;
background-color: #000000;
background-image: url("https://storage.googleapis.com/wp-bronx-storage/1/2020/09/fondo-loading-08.png");
cursor: url('https://storage.googleapis.com/wp-bronx-storage/1/2020/09/cursor-grab-32x32.png') 10 0, auto !important;
}
#virtualInsanityCanvas:active:hover {
cursor: url('https://storage.googleapis.com/wp-bronx-storage/1/2020/09/cursor-grabbing-32x32.png') 10 0, auto !important;
}
#virtualInsanityCanvas.horizTranslate {
-webkit-transition: 3s;
-moz-transition: 3s;
-ms-transition: 3s;
-o-transition: 3s;
transition: 3s;
left: -250px;
top: 0%;
}
#virtualInsanityCanvas.resetPosition {
-webkit-transition: 3s;
-moz-transition: 3s;
-ms-transition: 3s;
-o-transition: 3s;
transition: 3s;
left: 0px;
top: 0%;
}
/* Gutenberg Modifications */
.wp-block-button__link {
background-color: #d6d6d6;
color: #000 !important;
font-weight: 700;
font-size: 0.8rem;
box-shadow: 6px 6px #000;
border: solid 2px #000;
padding: 0.2rem 0.7rem 0.3rem 0.7rem;
}
.wp-block-button .button-fdm-green {
background-color: #0f0 !important;
color: #000;
}
.button-fdm-gray.wp-block-button__link {
background-color: #d6d6d6;
color: #000;
}
.button-buy {
margin-bottom: 20px;
}
/******ARTIST INDEX*********/
.indexItem:hover {
color: #0f0 !important;
background-color: #000;
}
#popmake-1521 {
overflow-y: scroll;
padding-right: 20px;
}
#popmake-1521,
#popmake-1521 li {
font-size: 0.8rem;
color: #000;
}
#popmake-1521 a:hover {
color: #0f0;
}
p.VirtualIn_index_posts_letter.indexLetter {
margin-bottom: 0px;
}
#popmake-1521 h1 {
font-size: 1.5rem;
/*color: #0f0 !important;*/
}
#pum-1521 .pum-close {
position: absolute;
left: 18%;
top: 15%;
/*pointer-events: all;*/
z-index: 9999999990;
height: 36px;
width: 36px;
padding: 0px;
color: #0a0101;
font-family: "Arial";
font-weight: 700;
font-size: 16px;
line-height: 20px;
border: 2px solid #000;
border-radius: 0px;
box-shadow: 6px 6px 0px 0px rgba( 0, 0, 0);
background-color: #d6d6d6;
}
/* TOOLTIPS */
div#popmake-1946,
div#popmake-1946,
div#popmake-1959 {
max-height: 48px;
}
/* Menu responsive Plugin */
@media screen and (max-width: 8000px) {
button#responsive-menu-button {
box-shadow: 6px 6px #fff;
border-radius: 0px;
}
}
#responsive-menu-container {
padding: 8% 0;
}
/* Popup Maker Plugin */
.spritespin-stage,
.spritespin-canvas,
.spritespin,
.spritespin-instance,
container-360 {
cursor: url('https://storage.googleapis.com/wp-bronx-storage/1/2020/09/cursor-grab-32x32.png') 10 0, auto !important;
}
#pum-2082 {
cursor: url('https://storage.googleapis.com/wp-bronx-storage/1/2020/09/cursor-grab-32x32.png') 10 0, auto !important;
}
#pum-2082:active:hover {
cursor: url('https://storage.googleapis.com/wp-bronx-storage/1/2020/09/cursor-grabbing-32x32.png') 10 0, auto !important;
}
.pum-content,
.popmake-content {
height: -webkit-fill-available;
}
.pum-container.pum-scrollable .pum-content {
border-right: dotted 2px #000;
padding-right: 5px;
}
.pum-theme-1951 .pum-content,
.pum-theme-tooltips .pum-content {
font-size: 0.8rem;
max-height: 250px;
}
#popmake-175 button.pum-close.popmake-close {
pointer-events: none;
}
/* PARA MOVILES */
@media screen and (max-width: 600px) {
.pum-theme-171 .pum-container,
.pum-theme-cutting-edge .pum-container {
width: 100% !important;
padding: 0px;
left: 0;
right: 0;
top: 35% !important;
height: 65% !important;
}
#pum-175 .pum-close {
left: 10px !important;
top: -40px !important;
}
#virtualInsanityCanvas.horizTranslate {
-webkit-transition: 3s;
-moz-transition: 3s;
-ms-transition: 3s;
-o-transition: 3s;
transition: 3s;
top: -30%;
left: 0;
}
#popmake-1572 {
width: 95% !important;
height: 70% !important;
top: 25% !important;
left: 2.5% !important;
}
#responsive-menu-container {
padding-top: 70px;
}
/* Menu Artistas */
#popmake-1521 {
width: 95% !important;
height: 70% !important;
top: 25% !important;
left: 2% !important;
padding: 15px;
}
#pum-1521 .pum-close {
position: absolute;
left: 15px;
top: 20%;
}
/* BOTONES MENÚ MAPA */
.btn-map-rigth-up {
position: absolute;
top: 25%;
right: 35%;
}
.btn-map-rigth-down {
position: absolute;
bottom: 40%;
right: 30%;
}
.btn-map-left-up {
position: absolute;
top: 30%;
left: 30%;
}
.btn-map-left-down {
position: absolute;
bottom: 35%;
left: 15%;
}
.btn-map-center-up {
position: absolute;
top: 15%;
left: 45%;
}
.btn-map-center-down {
position: absolute;
bottom: 25%;
left: 45%;
}
.button-right-top-2 {
position: absolute;
top: 55px;
right: 60px;
}
}
/*FINAL DE MOVILES */
/* FORMULARIOS. */
.um .um-form input[type=text],
.um .um-form input[type=search],
.um .um-form input[type=tel],
.um .um-form input[type=number],
.um .um-form input[type=password],
.um .um-form textarea,
.select2-container .select2-choice,
.select2-container-multi .select2-choices {
background-color: #000000;
}
a.um-button.um-disabled:active {
background: #00ff00;
}
.um .um-form input[type=text],
.um .um-form input[type=search],
.um .um-form input[type=tel],
.um .um-form input[type=number],
.um .um-form input[type=password],
.um .um-form textarea,
.select2-container .select2-choice,
.select2-container-multi .select2-choices {
background-color: #000000;
}
.um input[type=submit].um-button,
.um input[type=submit].um-button:focus,
.um a.um-button,
.um a.um-button.um-disabled:hover,
.um a.um-button.um-disabled:focus,
.um a.um-button.um-disabled:active {
background: #00ff00;
}
.um .um-form input[type=text],
.um .um-form input[type=search],
.um .um-form input[type=tel],
.um .um-form input[type=number],
.um .um-form input[type=password],
.um .um-form textarea,
.um .upload-progress,
.select2-container .select2-choice,
.select2-drop,
.select2-container-multi .select2-choices,
.select2-drop-active,
.select2-drop.select2-drop-above {
border-top-color: #000000 !important;
border-top-style: solid !important;
border-top-width: 1px !important;
border-right-color: #000000 !important;
border-right-style: solid !important;
border-right-width: 1px !important;
border-bottom-color: #d6d6d6 !important;
border-bottom-style: solid !important;
border-bottom-width: 1px !important;
border-left-color: #000000 !important;
border-left-style: solid !important;
border-left-width: 1px !important;
border-image-source: initial !important;
}
.um .um-field-label {
color: #d6d6d6;
}
.um-field-checkbox-option,
.um-field-radio-option {
margin: 0px 0px 0px 36px;
line-height: 24px;
color: #d6d6d6 !important;
display: block;
}
.um .um-button {
color: #000000;
}
input[type=submit].um-button,
input[type=submit].um-button:focus {
vertical-align: middle !important;
height: auto !important;
font-size: 15px;
font-weight: bolder !important;
cursor: pointer !important;
width: fit-content;
box-shadow: none;
text-shadow: none;
font-family: inherit;
outline: none !important;
margin: 0;
opacity: 1;
}
input[type=submit].um-button,
input[type=submit].um-button {
border-radius: 0 !important;
}
.page-id-134 p {
margin-top: 0;
margin-bottom: 0px;
}
.um input[type=submit].um-button:hover,
.um a.um-button:hover {
background-color: #277327;
}
a.um-button {
font-size: 14px;
border: none !important;
display: block;
width: 100%;
line-height: 1em !important;
text-decoration: none !important;
text-align: center;
text-transform: none !important;
font-weight: normal !important;
overflow: hidden;
position: relative;
transition: 0.25s;
box-sizing: border-box;
font-weight: bolder !important;
border-radius: 0!important;
}
.um .um-button.um-alt,
.um input[type=submit].um-button.um-alt {
background: #d6d6d6;
}
.um .um-button.um-alt,
.um input[type=submit].um-button.um-alt {
color: #000000;
}
.um .um-button.um-alt:hover,
.um input[type=submit].um-button.um-alt:hover {
background: #d6d6d65c;
}
.um-icon-help-circled:before {
display: none;
}
.page-id-134 .wp-block-button__link {
color: #00ff00 !important;
font-weight: 200;
}
.page-content {
padding-top: 0px;
}
.um-field-checkbox-option,
.um-field-radio-option {
margin: 0px 0px 10px 36px;
line-height: 24px;
color: #d6d6d6 !important;
display: block;
}
button.um-button:hover {
background-color: #0f0;
color: #000;
}
/* <NAME> */
.fondo-colfondos {
background-color: #0d1c3a;
}
.caja-colfondos {
border-radius: 10px;
background-color: white;
padding: 10px;
margin: 10px;
height: auto;
min-height: 280px;
color: #2b325b;
box-sizing: content-box;
}
p.Cajita-colfondos-2 {
border-radius: 10px;
background-color: white;
padding: 10px;
margin: 10px;
height: px;
color: #2b325b;
font-size: 16px;
font-weight: bold;
}
@media screen and (max-width: 2000px) {
p.Cajita-colfondos-2 {
margin-left: 200px;
margin-right: 200px;
}
}
@media screen and (max-width: 600px) {
p.Cajita-colfondos-2 {
margin-left: 0px;
margin-right: 0px;
}
}
h1.has-text-align-center.Observar-colfondos-2 {
font-weight: 900;
color: #ffdb58;
}
h2.has-text-align-center.titulos-colfondos-2 {
font-weight: bold;
}
.page-id-8522 .page-content {
height: 100%;
margin: 0px;
}
.page-id-3157 {
font-family: Arial, Helvetica, sans-serif;
background-color: #0d1c3a;
background-image: url(https://storage.googleapis.com/wp-bronx-storage/1/2020/10/Splash-top-left-mobile.png), url(https://storage.googleapis.com/wp-bronx-storage/1/2020/10/logocolfondos-e1602121430189.png), url(https://storage.googleapis.com/wp-bronx-storage/1/2020/10/Webp.net-resizeimage-2.png);
background-position: left top, right top, right bottom;
background-repeat: no-repeat, no-repeat, no-repeat;
}
.page-id-3157 .wp-block-button__link {
background-color: #d6d6d600;
color: #ffffff !important;
font-weight: normal;
font-size: 0.8rem;
border: solid 2px #ffdb58;
padding: 0.2rem 0.7rem 0.3rem 0.7rem;
box-shadow: none;
}
p.has-text-align-center.responsabilidad-colfondos-2 {
background-color: #0d1c3a;
margin-top: 50px;
margin-bottom: 0px;
}
.page-id-4135 .wp-block-button__link {
background-color: #d6d6d600;
color: #ffffff !important;
font-weight: normal;
font-size: 0.8rem;
border: solid 2px #ffdb58;
padding: 0.2rem 0.7rem 0.3rem 0.7rem;
box-shadow: none;
}
.page-id-4135 {
font-family: Arial, Helvetica, sans-serif;
background-color: #0d1c3a;
background-image: url(https://storage.googleapis.com/wp-bronx-storage/1/2020/10/Webp.net-resizeimage.png), url(https://storage.googleapis.com/wp-bronx-storage/1/2020/10/logocolfondos-e1602121430189.png);
background-position: center, right top;
background-repeat: no-repeat, no-repeat;
}
.titulos-colfondos-main {
color: #ffdb58;
font-weight: bold
}
.page-id-4135 .wp-block-column:not(:first-child) {
margin-left: -100px!important;
}
.responsabilidad-2-colfondos-2 {
background-color: #E0E0E0;
color: #2b325b;
}
.page-id-4135 p {
margin-top: 0;
margin-bottom: 0rem;
}
.page-id-2262 {
font-family: Arial, Helvetica, sans-serif;
background-color: #0d1c3a;
background-image: url(https://storage.googleapis.com/wp-bronx-storage/1/2020/10/Splash-top-left-mobile.png), url(https://storage.googleapis.com/wp-bronx-storage/1/2020/10/logocolfondos-e1602121430189.png), url(https://storage.googleapis.com/wp-bronx-storage/1/2020/10/Webp.net-resizeimage-2.png);
background-position: left top, right top, right bottom;
background-repeat: no-repeat, no-repeat, no-repeat;
}
.page-id-2262 .wp-block-button__link {
background-color: #d6d6d600;
color: #ffffff !important;
font-weight: normal;
font-size: 1.3rem;
border: solid 2px #ffdb58;
padding: 0.2rem 0.7rem 0.3rem 0.7rem;
box-shadow: none;
}
.page-id-2262 .wp-block-media-text__content {
color: #2b325b!important;
}
.titulo-colfondos-3 {
color: #ffdb58;
font-weight: bold
}
.page-id-4398 {
font-family: Arial, Helvetica, sans-serif;
background-color: #0d1c3a;
background-image: url(https://storage.googleapis.com/wp-bronx-storage/1/2020/10/Splash-top-left-mobile.png), url(https://storage.googleapis.com/wp-bronx-storage/1/2020/10/logocolfondos-e1602121430189.png), url(https://storage.googleapis.com/wp-bronx-storage/1/2020/10/Webp.net-resizeimage-2.png);
background-position: left top, right top, right bottom;
background-repeat: no-repeat, no-repeat, no-repeat;
}
.page-id-4398 .wp-block-button__link {
background-color: #d6d6d600;
color: #ffffff !important;
font-weight: normal;
font-size: 1.3rem;
border: solid 2px #ffdb58;
padding: 0.2rem 0.7rem 0.3rem 0.7rem;
box-shadow: none;
}
.page-id-4398 .wp-block-media-text__content {
color: #2b325b!important;
}
.page-id-4398 .caja-colfondos {
border-radius: 10px;
background-color: white;
padding: 10px;
margin: 10px;
height: auto;
min-height: 380px;
color: #2b325b;
box-sizing: content-box;
}
.page-id-2055 {
font-family: Arial, Helvetica, sans-serif;
background-color: #0d1c3a;
background-image: url(https://storage.googleapis.com/wp-bronx-storage/1/2020/10/Splash-top-left-mobile.png), url(https://storage.googleapis.com/wp-bronx-storage/1/2020/10/logocolfondos-e1602121430189.png), url(https://storage.googleapis.com/wp-bronx-storage/1/2020/10/Webp.net-resizeimage-2.png);
background-position: left top, right top, right bottom;
background-repeat: no-repeat, no-repeat, no-repeat;
}
.qmn_quiz_container .qmn_btn,
.qmn_quiz_container .btn {
background-color: #d6d6d600;
color: #ffffff !important;
font-weight: normal;
font-size: 1.3rem;
border: solid 2px #ffdb58;
padding: 0.2rem 0.7rem 0.3rem 0.7rem;
box-shadow: none;
}
.responsabilidad-colfondos-3 {
background-color: #0d1c3a;
margin-top: 50px;
margin-bottom: 0px;
}
/* MENU CARPETAS */
.menu-carpetas-container {
width: 100%;
}
.menu-carpetas {
position: absolute;
background-color: #d6d6d6;
border-style: solid;
border-color: black;
box-shadow: 6px 6px #000000;
padding: 20px;
width: 550px;
}
.menu-carpetas p {
font-size: 0.7rem;
}
.menu-carpetas-1 {
top: 10px;
left: 10px;
}
.menu-carpetas-2 {
top: 120px;
left: 360px;
}
.menu-carpetas-3 {
top: 300px;
left: 25%;
}
@media (max-width: 1024px) {
.menu-carpetas {
position: relative;
margin: 0;
}
.menu-carpetas-1 {
top: auto;
left: 10px;
margin: 0 auto;
}
.menu-carpetas-2 {
top: auto;
left: 10px;
margin: 0 auto;
}
.menu-carpetas-3 {
top: auto;
left: 10px;
margin: 0 auto;
}
}
/* INFO ARTISTAS */
.artWorkContainer {
margin-top: 25px;
}
.technicalSheet {
margin-top: 20px;
}
.imageContainerSheet {}
.technicalSheet {}
/*
.menu-carpertas-1 {
position: absolute;
top: 0px;
left: 5%;
width: 450px;
border-style: solid;
border-color: black;
padding: 10px 30px;
background-color: lightgrey;
box-shadow: 6px 6px #000000;
}
.menu-carpertas-1 .wp-block-column {
margin: 10px !important;
}
.menu-carpertas-1 p {
font-size: 0.7rem;
}
.menu-carpertas-3 p {
font-size: 0.7rem;
}
.menu-carpetas-2{
width: 450px;
border-style: solid;
border-color: black;
margin-left: 400px;
margin-top: 200px;
padding: 10px 30px;
background-color: lightgrey;
box-shadow: 6px 6px #000000;
}
.menu-carpertas-2 p {
font-size: 0.7rem;
}
.menu-carpetas-3 {
border-style: solid;
border-color: #0a0a0a;
margin-left: 350px;
margin-right: 35px;
margin-top: 190px;
background-color: lightgrey;
box-shadow: 6px 6px #000000;
}
wp-block-image .aligncenter>figcaption,
.wp-block-image .alignleft>figcaption,
.wp-block-image .alignright>figcaption,
.wp-block-image.is-resized>figcaption {
display: table-row-group;
caption-side: bottom;
}
figcaption {
font-size: 10px;
color: #333;
line-height: 1.4;
font-style: italic;
font-weight: 400;
}
.wp-block-column:not(:first-child) {
margin-left: 2px;
}
figure.wp-block-image.size-large.is-resized {
margin: 0 40px;
}
*/
/*
@media (max-width: 991px) {
.menu-carpetas{
position: absolute;
}
}*/
/* FORO */
.page-id-8522 .page-content {
margin: 120px;
background-color: #000;
}
.page-id-8522 {
height: 100%;
background-image: url(https://storage.googleapis.com/wp-bronx-storage/1/2020/10/fondo-foro.jpg);
background-position: absolute;
background-repeat: no-repeat;
background-size: cover;
}
.page-id-8522 .wp-block-image img {
margin-top: -18px;
}
.video-foro {
width: 1000px;
margin-bottom: -200px;
}
/* Boton Trivia Post Artistas */
.boton-artista-trivia {
background-color: transparent;
text-decoration: none;
color: #0f0;
cursor: url(https://storage.googleapis.com/wp-bronx-storage/1/2020/09/cursor-manito-32x32.png) 10 0, auto !important;
user-select: none;
border: solid 0.5px !important;
padding: 10px 10px;
font-weight: bold;
}
/* Boton Mayor de 18 */
.pum-theme-167 .pum-content+.pum-close,
.pum-theme-tema-por-defecto .pum-content+.pum-close {
color: #000000;
background-color: #00ff00;
} | 0.522689 | 0.071786 |
.top-banner {position:relative;}
.top-banner h1 {position:absolute; left:0; top:0; font:normal 24px/30px 'latolight', arial, sans-serif; color:#2b9cd5;}
.top-banner h1 span.head1 {color:#9e6aaa;}
.top-banner h1 span.head2 {color:#ea851d;}
.top-banner h1 span.head3 {color:#7cb447;}
#info h3 {margin-top:20px; color:#329cd2;}
header h1 span {color:#329cd2;}
#midCol {text-align:center;}
#midCol h3 {text-align:left;}
dl.latest {width:240px; margin:20px 0; display:inline-block; padding:0 0 10px 0;
background:#dfefff;
vertical-align:top; border-radius:5px; text-align:left;}
dl.latest.col2 {margin:20px 15px;}
/* dl.latest {*display:inline;} */
dl.latest dt {font:normal 25px/45px 'latolight', arial, sans-serif; color:#fff; margin:0; padding:0 15px; border-radius:5px 5px 0 0; background:#000; background:rgba(0,0,0,0.4);}
dl.latest dd {padding:0; margin:0;}
dl.latest dd a {display:block; font:normal 14px/30px 'latomedium', arial, sans-serif; color:#000; text-decoration:none; padding:0 15px;}
#info p {text-align:justify;}
#info p a {color:#c00;}
img.float_left {float:left; padding:10px 10px 10px 0;}
p a.exlink {color:#fff;}
#info blockquote {padding:20px 0; margin:0;}
#info blockquote p.cite {padding:0; margin:0; font:normal 20px/30px 'latomedium', arial, sans-serif; color:#7cb447;}
/* design and assistance */
ol li {padding:5px 0; font:normal 14px/18px 'latomedium', arial, sans-serif; color:#333;}
/* faqs */
dl.faqs {padding:0; margin:30px 0;}
dl.faqs dt {font:normal 16px/22px 'latobold', arial, sans-serif; color:#000;}
dl.faqs dd {padding:0 0 10px 0; margin:0; font:normal 14px/18px 'latomedium', arial, sans-serif; color:#333;}
dl.faqs dd a {color:#c00;}
dl.faqs dd a:visited {color:#c00;}
/* support */
#supporters {padding:0; margin:0; list-style:none; text-align:center;}
#supporters li {text-align:left; display:inline-block; width:220px; font:normal 14px/18px 'latomedium', arial, sans-serif; padding:5px 10px; margin:2px; background:#dadbdf; color:#000;}
/* #supporters li {*display:inline;} */
#supporters li a {color:#000;}
#supporters li a:visited {color:#000;}
/* moj */
#grad1 {
height: 100px;
background-color: #cccccc;
/*
#fefbd8=yellow, #f18973 or coral=orange,
#92a8d1=blue, rgb(201, 76, 76)=darkred, rgba(201, 76, 76, 0.3)=pink,
#80ced6 or hsl(89, 43%, 51%)=green,
#d5f4e6 or hsla(89, 43%, 51%, 0.3)=lightgreen
*/
/* background-image: radial-gradient(lightgray, yellow, green); */
/* background-image: linear-gradient(green, yellow, lightgray); */
background-image: linear-gradient(#999, #ddd);
}
/* ~~~ I added : ~~~ */
/* -- Links that have been visited are DeepPink -- */
/* a:visited { color: DeepPink !important; } */
/* -- Links that need javascript are green -- */
a[href^="javascript:"] { color: SandyBrown !important; font-weight: bold !important; }
/* T,R,D,L smedja= #936709*/
pre, code, kbd, samp {
text-align:left;
white-space: pre-wrap;
border-style: solid; border-color: lightblue; border-width: 1px 3px 3px 1px;
padding: 1px 8px;
background: white;
margin-left: 5px;
margin-right: 5px;
color:black;
font-family: courier-prime, 'Courier New',Courier,monospace;
font-size: 1em;
display: block;
max-width: 850px;
}
/* width: 700px; */
/* text-align:justify; */
/* text-justify:none; */
#rightCol .box300.tad {padding:5px 40px; margin:2px 0; background:#ddd;}
.tad p {padding:0; margin:0; font-size:14px !important;}
.tad p a {color:#069; text-decoration:none;}
#cse-search-box input.search {padding:0 10px; height:38px; border:0; border-radius:5px 0 0 5px;
width:150px; float:left; font:normal 15px/37px 'latomedium', arial, sans-serif;}
.auto-style2 {
text-align: left;
}
.h2_csscls {
text-align: left;
background-color: #DDDDDD;
/* height:83px; position:relative; */
width:100%;
word-wrap: break-word;
}
/* Responsive Table with horizontal scrollbar
HOR.SCROLLBAR DOES NOT WORK WITH CSS USED IN SOME PAGES !!!
*/
.w3-container:after,.w3-container:before,.w3-panel:after,.w3-panel:before,
.w3-row:after,.w3-row:before,.w3-row-padding:after,.w3-row-padding:before,
.w3-cell-row:before,.w3-cell-row:after,.w3-clear:after,.w3-clear:before,
.w3-bar:before,.w3-bar:after{content:"";display:table;clear:both}
.w3-container,.w3-panel{padding:0.01em 16px}
.w3-responsive{display:block;overflow-x:auto}
.w3-table,.w3-table-all{border-collapse:collapse;border-spacing:0;
width:100%;display:table}
.w3-table-all{border:1px solid #ccc}
.w3-bordered tr,.w3-table-all tr{border-bottom:1px solid #ddd}
.w3-table-all tr:nth-child(odd){background-color:#fff}
.w3-table-all tr:nth-child(even){background-color:#f1f1f1}
.w3-table td,.w3-table th,.w3-table-all td,.w3-table-all th{
padding:8px 8px;display:table-cell;text-align:left;vertical-align:top}
.w3-table th:first-child,.w3-table td:first-child,.w3-table-all th:first-child,.w3-table-all td:first-child{padding-left:16px} | zinc/themes/z_2_4_col_home.css | .top-banner {position:relative;}
.top-banner h1 {position:absolute; left:0; top:0; font:normal 24px/30px 'latolight', arial, sans-serif; color:#2b9cd5;}
.top-banner h1 span.head1 {color:#9e6aaa;}
.top-banner h1 span.head2 {color:#ea851d;}
.top-banner h1 span.head3 {color:#7cb447;}
#info h3 {margin-top:20px; color:#329cd2;}
header h1 span {color:#329cd2;}
#midCol {text-align:center;}
#midCol h3 {text-align:left;}
dl.latest {width:240px; margin:20px 0; display:inline-block; padding:0 0 10px 0;
background:#dfefff;
vertical-align:top; border-radius:5px; text-align:left;}
dl.latest.col2 {margin:20px 15px;}
/* dl.latest {*display:inline;} */
dl.latest dt {font:normal 25px/45px 'latolight', arial, sans-serif; color:#fff; margin:0; padding:0 15px; border-radius:5px 5px 0 0; background:#000; background:rgba(0,0,0,0.4);}
dl.latest dd {padding:0; margin:0;}
dl.latest dd a {display:block; font:normal 14px/30px 'latomedium', arial, sans-serif; color:#000; text-decoration:none; padding:0 15px;}
#info p {text-align:justify;}
#info p a {color:#c00;}
img.float_left {float:left; padding:10px 10px 10px 0;}
p a.exlink {color:#fff;}
#info blockquote {padding:20px 0; margin:0;}
#info blockquote p.cite {padding:0; margin:0; font:normal 20px/30px 'latomedium', arial, sans-serif; color:#7cb447;}
/* design and assistance */
ol li {padding:5px 0; font:normal 14px/18px 'latomedium', arial, sans-serif; color:#333;}
/* faqs */
dl.faqs {padding:0; margin:30px 0;}
dl.faqs dt {font:normal 16px/22px 'latobold', arial, sans-serif; color:#000;}
dl.faqs dd {padding:0 0 10px 0; margin:0; font:normal 14px/18px 'latomedium', arial, sans-serif; color:#333;}
dl.faqs dd a {color:#c00;}
dl.faqs dd a:visited {color:#c00;}
/* support */
#supporters {padding:0; margin:0; list-style:none; text-align:center;}
#supporters li {text-align:left; display:inline-block; width:220px; font:normal 14px/18px 'latomedium', arial, sans-serif; padding:5px 10px; margin:2px; background:#dadbdf; color:#000;}
/* #supporters li {*display:inline;} */
#supporters li a {color:#000;}
#supporters li a:visited {color:#000;}
/* moj */
#grad1 {
height: 100px;
background-color: #cccccc;
/*
#fefbd8=yellow, #f18973 or coral=orange,
#92a8d1=blue, rgb(201, 76, 76)=darkred, rgba(201, 76, 76, 0.3)=pink,
#80ced6 or hsl(89, 43%, 51%)=green,
#d5f4e6 or hsla(89, 43%, 51%, 0.3)=lightgreen
*/
/* background-image: radial-gradient(lightgray, yellow, green); */
/* background-image: linear-gradient(green, yellow, lightgray); */
background-image: linear-gradient(#999, #ddd);
}
/* ~~~ I added : ~~~ */
/* -- Links that have been visited are DeepPink -- */
/* a:visited { color: DeepPink !important; } */
/* -- Links that need javascript are green -- */
a[href^="javascript:"] { color: SandyBrown !important; font-weight: bold !important; }
/* T,R,D,L smedja= #936709*/
pre, code, kbd, samp {
text-align:left;
white-space: pre-wrap;
border-style: solid; border-color: lightblue; border-width: 1px 3px 3px 1px;
padding: 1px 8px;
background: white;
margin-left: 5px;
margin-right: 5px;
color:black;
font-family: courier-prime, 'Courier New',Courier,monospace;
font-size: 1em;
display: block;
max-width: 850px;
}
/* width: 700px; */
/* text-align:justify; */
/* text-justify:none; */
#rightCol .box300.tad {padding:5px 40px; margin:2px 0; background:#ddd;}
.tad p {padding:0; margin:0; font-size:14px !important;}
.tad p a {color:#069; text-decoration:none;}
#cse-search-box input.search {padding:0 10px; height:38px; border:0; border-radius:5px 0 0 5px;
width:150px; float:left; font:normal 15px/37px 'latomedium', arial, sans-serif;}
.auto-style2 {
text-align: left;
}
.h2_csscls {
text-align: left;
background-color: #DDDDDD;
/* height:83px; position:relative; */
width:100%;
word-wrap: break-word;
}
/* Responsive Table with horizontal scrollbar
HOR.SCROLLBAR DOES NOT WORK WITH CSS USED IN SOME PAGES !!!
*/
.w3-container:after,.w3-container:before,.w3-panel:after,.w3-panel:before,
.w3-row:after,.w3-row:before,.w3-row-padding:after,.w3-row-padding:before,
.w3-cell-row:before,.w3-cell-row:after,.w3-clear:after,.w3-clear:before,
.w3-bar:before,.w3-bar:after{content:"";display:table;clear:both}
.w3-container,.w3-panel{padding:0.01em 16px}
.w3-responsive{display:block;overflow-x:auto}
.w3-table,.w3-table-all{border-collapse:collapse;border-spacing:0;
width:100%;display:table}
.w3-table-all{border:1px solid #ccc}
.w3-bordered tr,.w3-table-all tr{border-bottom:1px solid #ddd}
.w3-table-all tr:nth-child(odd){background-color:#fff}
.w3-table-all tr:nth-child(even){background-color:#f1f1f1}
.w3-table td,.w3-table th,.w3-table-all td,.w3-table-all th{
padding:8px 8px;display:table-cell;text-align:left;vertical-align:top}
.w3-table th:first-child,.w3-table td:first-child,.w3-table-all th:first-child,.w3-table-all td:first-child{padding-left:16px} | 0.168994 | 0.206134 |
* {
letter-spacing: 0.02em;
font-size: 1em;
outline: 0px none !important;
}
html {
height: 100%;
}
body {
position: relative;
height: 100%;
height: auto\0/; /** IE 8 Fix **/
}
.has-icon {
position: relative;
}
.form-stack .glyphicon {
position: absolute;
right: 10px;
color: #ccc;
}
.form-stack .btn .glyphicon {
position: absolute;
right: 15px;
top: 17px;
color: #fff;
}
.panel {
border-color: #CFD9DB #CFD9DB #C0CDD1;
border-radius: 3px;
border-width: 1px 1px 2px;
box-shadow: none;
position: relative;
}
hr {
border-color: #CFD9DB;
}
.alert {
padding: 10px;
}
.alert-dismissable {
padding-right: 10px;
}
.navbar {
margin-bottom: 0px;
border-radius: 0px;
border: 0px none;
}
.sidebar {
background-color: #2A2A2A;
bottom: 0;
color: #777777;
position: relative;
top: 0;
transition: -webkit-transform 0.2s ease 0s, -moz-transform 0.2s ease 0s, -o-transform 0.2s ease 0s, transform 0.2s ease 0s;
width: 180px;
z-index: 200;
}
.sidebar.sidebar-left.sidebar-menu {
bottom: auto;
left: 0;
min-height: 400px;
height: 100%;
padding-top: 60px;
position: absolute;
}
.sidebar-minimized .sidebar.sidebar-left.sidebar-menu {
bottom: auto;
left: 0;
min-height: 100%;
padding-top: 60px;
position: absolute;
width: 60px;
}
.login-wrapper {
width: 320px;
margin: 0px auto;
}
.navbar-header {
background-color: #00B1E1;
border-bottom: 1px solid #63D3E9;
height: 60px;
height: 70px\0/; /** IE 8 Fix **/
float:left;
}
#header .navbar-header .navbar-brand {
height: 60px;
line-height: 59px;
padding: 0;
display: block;
text-align: center;
min-width: 180px;
width: 100%;
color: #f2f2f2 !important;
text-shadow: 0px 1px 1px #999;
}
.navbar-brand span.logo-text {
padding: 0px 30px;
font-size: 20pt;
}
#header.navbar.navbar-fixed-top > .navbar-toolbar {
box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.08);
}
#header.navbar > .navbar-toolbar {
background-color: rgba(255, 255, 255, 0.97);
border-bottom: 1px solid #E3E9EB;
min-height: 50px;
}
.navbar-toolbar .navbar-nav {
float: left;
margin: 0px 0 0 40px;
}
.navbar-toolbar .navbar-right {
float: right;
}
.navbar-toolbar .navbar-left li {
float: left;
}
.navbar-nav > li > a {
cursor: pointer;
line-height: 22px;
padding-bottom: 13px;
padding: 15px;
}
.navbar-nav > li.profile > a {
padding: 10px;
}
.notify-icon > li > a {
padding: 13px;
}
.notify-icon > li.dropdown > a {
padding: 15px;
}
#notification-panel, #messages-panel {
background-color: #FFFFFF;
border: 1px solid #CFD9DB;
border-radius: 4px;
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
position: absolute;
width: 300px;
padding-bottom: 0px;
}
#messages-panel {
left: -50px;
}
#messages-panel .old .media-text,#messages-panel .old .media-heading {
color: #999;
}
#profile-panel {
background-color: #FFFFFF;
border: 1px solid #CFD9DB;
border-radius: 4px;
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
right: 5px;
top: 50px;
position: absolute;
width: 300px;
}
.navbar-toolbar .navbar-left .glyphicon,.navbar-toolbar .navbar-left .fa {
font-size: 16px;
}
.dropdown-header {
margin-top: -5px;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
color: #5E5E5E;
display: table;
height: 36px;
line-height: 36px;
padding: 0 15px !important;
width: 100%;
}
.dropdown-footer {
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
color: #5E5E5E;
display: table;
height: 36px;
line-height: 36px;
padding: 0 15px !important;
width: 100%;
}
.dropdown-header .title,.dropdown-header .option {
display: table-cell;
font-weight: 600;
font-size: 13px;
}
.dropdown-header .option a {
color: #00B1E1;
}
.media-list > a.media {
display: block;
position: relative;
padding: 5px;
}
a.media:hover {
text-decoration: none;
}
.media-list > .media.border-dotted:after {
border-bottom-style: dotted;
}
.media-list > .media:after {
border-bottom: 1px solid #DDE4E6;
bottom: 0;
content: "";
height: 1px;
left: 75px;
position: absolute;
right: 0;
}
.media-list > .media .media-object {
height: 50px;
text-align: center;
width: 50px;
}
.media > .pull-left {
margin-right: 10px;
}
.media-list > .media .media-object > [class*=" glyphicon-"], .media-list > .media .media-object > [class^="glyphicon-"] {
background-color: #ECF0F1;
border-radius: 50%;
color: #B1C2C6;
display: block;
height: 34px;
line-height: 33px;
margin: 0 auto;
text-align: center;
width: 34px;
}
.bgcolor-teal {
background-color: #6BCCB4 !important;
border-color: #5CC7AC !important;
color: #FFFFFF !important;
}
.bgcolor-info {
background-color: #00B1E1 !important;
border-color: #4DCDE6 !important;
color: #FFFFFF !important;
}
.media, .media-body {
overflow: hidden;
}
.media-list > .media > .media-body > .media-heading {
color: #00B1E1;
display: block;
font-weight: 600;
margin-bottom: 0;
}
.media-list > .media > .media-body > .media-text {
color: #444444;
display: block;
margin: 0;
}
.media-list > .media > .media-body .media-meta {
font-size: 11px;
margin: 0;
color: #777;
}
.media-list .glyphicon {
font-size: 15px;
}
.slimScrollDiv .media-body {
display: inline;
}
.ellipsis {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.nm {
margin: 0 !important;
}
#header.navbar .avatar {
display: table-cell;
height: 32px;
vertical-align: middle;
width: 32px;
}
.navbar-toolbar .meta {
display: table;
width: 100%;
margin-right: 10px;
}
#header.navbar .avatar > img {
display: block;
width: 100%;
height: 100%;
vertical-align: middle;
}
#header.navbar .meta .text {
font-size: 13px;
line-height: 30px;
font-weight: 600;
padding-left: 5px;
}
.p0 {
padding: 0px;
}
.p10 {
padding: 10px;
}
.pl5 {
padding-left: 5px !important;
}
.pr5 {
padding-right: 5px !important;
}
.pr0 {
padding-right: 0px !important;
}
.m5 {
margin: 5px;
}
.profile-dropdown {
width: 200px;
}
.container-fluid .page-header.page-header-block {
margin-left: -15px;
margin-right: -15px;
margin-top: 0px;
background-color: #FBFCFC;
border-bottom-color: #DAE2E4;
padding: 14px 15px 16px;
width: auto;
}
.page-header.page-header-block .col-xs-5 {
margin: 5px 0px;
}
hr.dark {
border-top: 1px solid #222;
border-bottom: 1px solid #333;
}
.sidebar-menu ul.nav li a {
color: #ddd;
padding: 10px 5px;
}
.sidebar .menu li a .menu-text {
font-size: 1em;
}
.stick {
position:fixed !important;
top:0px !important;
}
.sidebar .menu li .notification {
background-color: #F86868;
border-radius: 5px;
color: #FFFFFF !important;
display: inline-block;
font-size: 11px;
height: 5px;
padding: 0;
text-align: center;
width: 5px;
}
.notification {
background-color: #D9EDF7;
border: 0 solid #BCE8F1;
border-radius: 3px;
color: #333333;
margin-bottom: 10px;
padding: 20px;
}
.sidebar .submenu {
display: none;
position: relative;
left: !00% !importnat;
width: 1;
margin-left: 0px;
padding-left: 0px;
border-bottom-right-radius: 3px;
border-top-right-radius: 3px;
padding-right: 2px;
z-index: 300;
}
.sidebar .menu li.active .arrow{
transform:rotate(180deg);
-ms-transform:rotate(180deg);
-webkit-transform:rotate(180deg);
}
ul.submenu li .a1 {
}
/*.sidebar .menu li:hover .arrow,.menu li.active .arrow {
transform:rotate(90deg);
-ms-transform:rotate(90deg);
-webkit-transform:rotate(90deg);
}*/
.sidebar .submenu li {
position: relative;
padding-left: 10px;
display: block;
list-style: none outside none;
position: relative;
width: 100%;
}
.sidebar .submenu li:hover {
background-color: #222;
}
.sidebar .submenu li a {
display: block;
padding: 10px;
}
.sidebar .submenu li a:hover {
text-decoration: none;
}
.sidebar .submenu li a .glyphicon {
margin-right: 5px;
}
.nav-tabs > li > a {
border: 0px none;
}
.tabs-left > .nav-tabs > li,
.tabs-right > .nav-tabs > li {
float: none;
margin-bottom: 0px;
border: 0px none;
word-wrap: break-word;
}
.tabs-left > .nav-tabs > li .glyphicon,.tabs-left > .nav-tabs > li .fa {
margin-right: 5px;
}
.nav-tabs > li.active,.nav-tabs > li.active a.tab-title {
background: #fff;
border: 0px none;
position: relative;
}
.tabs-left > .nav-tabs {
float: left;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
border: 0px none;
background: none !important;
}
.nav-tabs > li > a:hover {
border-color: none;
}
.nav-tabs > li > a:hover,
.nav-tabs > li > a:focus {
text-decoration: none;
background: none !important;
}
.tabs-left > .nav-tabs > li > a:hover,
.tabs-left > .nav-tabs > li > a:focus {
background: none;
border-radius: 0px;
}
.dropdown-menu > li > a {
padding: 6px 20px;
}
.small .glyphicon {font-size: 12px;}
.pagination {margin: 5px 0px;}
.pagination > li > a, .pagination > li > span {
padding: 6px 10px;
}
.btn-file {
padding: 1px;
}
.btn-file input[type=file] {
width: auto;
float: left;
margin: 5px;
max-width: 170px;
font-size: 12px;
}
.input-group .btn-file {
position: relative;
overflow: hidden;
}
.input-group .btn-file input[type=file] {
position: absolute;
top: 0;
right: 0;
min-width: 100%;
min-height: 100%;
font-size: 999px;
text-align: right;
filter: alpha(opacity=0);
opacity: 0;
outline: none;
background: white;
cursor: inherit;
display: block;
}
.panel-group .panel {
overflow: visible;
}
.panel-footer {
word-wrap: break-word;
}
.nav-tabs li > a {
color: #fff;
}
.nav-tabs li > a.action-icon :hover {
color: #2A2A2A;
}
.nav-tabs li.active > a.action-icon :hover {
color: #00B1E1;
}
.tab-content {
position: relative;
background: #fff;
width: 100%;
min-height: 300px;
float: left;
padding: 5px 10px 2px 10px;
border-right: 1px solid #DBDFE0;
box-shadow: 0 3px 0 #DBDFE0;
}
.list-group-item {
padding: 5px 10px;
}
.list-table {
display: table;
margin: 0;
padding: 0;
table-layout: fixed;
width: 100%;
}
.list-table > li:first-child {
padding-left: 0;
}
.list-table > li {
display: table-cell;
padding: 0 5px;
table-layout: fixed;
vertical-align: middle;
width: auto;
}
.fa {
vertical-align: middle;
}
.title .fa {
font-size: 19px;
}
.btn .fa {
margin-top: -1px;
}
#settingFieldOptionsWrapper,#settingFieldOptionsWrapper .col-md-4,#settingFieldOptionsWrapper .col-md-8 {
padding: 0px;
}
#settingFieldOptionsWrapper .hidden-xs, #settingFieldOptionsWrapper .date_default_value_label {
display: none;
}
#settingFieldOptionsWrapper #optionList,#settingFieldOptionsWrapper .date_default_value_field {
width: 100%;
}
#optionList .table {
margin-bottom: 0px;
}
.cp {
cursor: pointer !important;
}
#settingFieldOptionsWrapper .default_value_label {
font-weight: normal;
font-size: 12px;
}
.ui-datepicker {
z-index: 1050 !important;
}
.underline {
padding-bottom: 5px;
border-bottom: 1px solid #eee;
font-size: 14px;
}
.tabs-left .tab-content {
width: 70%;
}
.tabs-left .nav-tabs {
width: 30%;
left: 1px;
}
.action-icon {
margin-left: 1px;
color: #aaa;
}
.action-icon:hover {
color: #00B1E1;
}
.panel-title > a {
display: block;
line-height: 18px;
}
.panel-title > a .glyphicon {
margin-right: 10px;
}
.panel-title > a .glyphicon:before {
content: "\2212";
}
.panel-title > a.collapsed .glyphicon:before {
content: "\2b";
}
.field-row {
position: relative;
margin-top: 20px;
}
.field-row:first-child {
margin-top: 5px;
}
.user-grid .panel-body {
padding: 10px 0px;
}
.user-grid .col-md-6 .panel-body {
padding: 0px;
word-wrap: break-word;
position: relative;
}
.user-grid .stretch {
padding: 0px;
}
.user-grid h6 {
margin: 3px 0px;
}
.user-grid .action-iconset {
color: #aaa;
margin: 5px 0px;
padding: 0px 5px;
}
.user-grid .user-details {
padding: 5px;
}
.muted {
font-size: 12px;
}
.muted .glyphicon {
font-size: 10px;
}
.user-avatar {
max-width: 100%;
width: 100%;
}
.ui-datepicker-trigger {
position: absolute;
bottom: 5px;
right: 5px;
cursor: pointer;
}
#optionList .row-fluid {
padding: 2px 0px;
}
.add-option {
display: block;
}
.max50 {
max-width: 50px;
}
.card-layout {
display: table;
margin-bottom: 20px;
table-layout: fixed;
width: 100%;
}
.card-layout > .col-xs-1, .card-layout > .col-xs-10, .card-layout > .col-xs-11, .card-layout > .col-xs-2, .card-layout > .col-xs-3, .card-layout > .col-xs-4, .card-layout > .col-xs-5, .card-layout > .col-xs-6, .card-layout > .col-xs-7, .card-layout > .col-xs-8, .card-layout > .col-xs-9 {
display: table-cell;
float: none;
table-layout: fixed;
vertical-align: middle;
}
.icon-box {
background: #B1C2C6;
border-right: 0px none;
border-radius: 3px 0px 0px 3px;
}
.icon-box a {
color: #fff;
display: block;
}
.icon-box-detail {
border-left: 0px none;
border-radius: 0px 3px 3px 0px;
}
.media, .media .media {
margin-top: 0px;
}
.media-list-feed {
padding-bottom: 0px;
margin-bottom: 0px;
}
.media-list > .media {
padding: 0px 15px 15px 15px;
position: relative;
}
.media:first-child {
margin-top: 0;
}
.media-list-feed > .media:after {
background-color: #DDE4E6;
border-bottom-width: 0;
bottom: -50%;
content: "";
height: auto;
left: 40px;
position: absolute;
right: auto;
top: -50%;
width: 1px;
z-index: -1;
}
.media-list-feed > .media:last-child:after {
background-color: transparent;
}
#nextFeed:after {
bottom: 50%;
}
#nextFeed .media-body {
padding-top: 7px;
}
.state-container {
box-sizing: border-box;
width: 100%;
height: 450px;
padding: 20px 15px 15px 15px;
margin: 15px auto 30px auto;
overflow: hidden;
}
.state-placeholder {
width: 100%;
height: 100%;
font-size: 14px;
line-height: 1.2em;
}
.legendLabel {
padding: 3px;
font-size: 11px;
}
.hasAlert {
position: absolute;
left: 10px;
top: 10px;
display: inline-block;
height: 8px;
width: 8px;
border-radius: 50%;
text-indent: -999999px;
}
.dateBox {
max-width: 100px;
margin-right: 15px;
}
.inbox-options {
margin-top: 10px;
}
.inbox-options a {
display: block;
line-height: 16px;
font-size: 14px;
padding-left: 5px;
color: #345;
}
.inbox-options a:hover {
text-decoration: none;
}
.has-icon {
position: relative;
}
.has-icon .glyphicon {
position: absolute;
right: 5px;
z-index: 111;
}
.message-list .media-meta {
margin-left: 5px !important;
}
.labels-list .list-group-item:hover .remove-label {
display: block !important;
}
.red {
color: #F86868;
}
.form-light input{
background: transparent;
border: 0px none;
border-bottom: 1px dotted #ccc;
}
.permission-table .permission-row {
padding: 5px 0px;
border-bottom: 1px dotted #eee;
}
.permission-table .permission-row:hover , .table tr:hover {
background-color: #F5F5F5 !important;
}
.break-word {
word-break: break-all;
}
.remove-section {
position: absolute !important;
top: 10px;
right: 0px;
padding: 2px !important;
display: none !important;
}
.edit-section {
position: absolute !important;
top: -4px;
right: 0px;
padding: 2px !important;
display: none !important;
}
.remove-section span,.edit-section span {
font-size: 9px !important;
}
.section-tab:hover .remove-section,.section-tab:hover .edit-section {
display: block !important;
}
.cke_show_borders {
padding: 5px;
border: 1px dashed #ccc;
min-height: 100px;
height: auto;
}
.hidden-row {
display: none;
}
.section-tab .tab-title {
display: inline-block;
padding-right: 1px;
}
.section-tab .btn-group .dropdown-menu {
min-width: 120px;
}
.section-tab .btn-group .dropdown-menu a {
color: #111;
}
.nav-tabs .section-tab {
border-top: 1px solid #7987A1 !important;
}
.nav-tabs .section-tab:first-child {
border-top: 0px none !important;
}
.nav-tabs .section-tab a.btn {
color: #4C607F;
}
.nav-tabs .active a.btn {
color: #aaa;
}
.hidden-xxs {
word-break: break-all;
}
.tab-pane h4 {
margin-top: 0px;
}
#wrapper {
position: relative;
overflow-x: hidden;
width: 100%;
height: 100%;
padding-bottom: 50px;
}
#canvas {
width: 100%;
min-height: 475px;
min-height: 100%;
padding-top: 53px;
position: relative;
-webkit-transform: translateX(0);
transform: translateX(0);
-webkit-transition: 300ms ease all;
transition: 300ms ease all;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
#menu {
width: 180px;
position: absolute;
top: 0;
left: -180px;
padding-top: 75px;
}
#wrapper.show-nav #canvas {
-webkit-transform: translateX(180px);
-ms-transform: translateX(180px);
transform: translateX(180px);
}
.show-nav #menu {
left: 0px\0/;
width: 205px\0/;
}
#canvas {
padding-top: 15px\0/;
}
.label-form .col-xs-3,.label-form .col-xs-8 {
padding:0px;
margin:1px;
}
.label-form .form-control {
padding:2px;
}
.dataTables_filter input,.dataTables_length select {
border:1px solid #ccc;
padding: 3px;
}
.cke_inner {
top: 62px !important;
}
.notify-icon {
height: 52px;
}
#sideMenuIcon {
position: absolute;
left: 0px;
}
/*.xAxis .tickLabel {
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
}*/
#sidebarMenu ul.submenu {
left: 1px ssolid transparent important;
}
/* End Genral Styles ********************************************************/
@media (max-width: 767px) {
#menu {
width: 44px;
left: -44px;
}
#wrapper.show-nav #canvas {
-webkit-transform: translateX(180px);
-ms-transform: translateX(180px);
transform: translateX(44px);
}
.sidebar .menu li a .menu-text {
display: none;
}
hr.dark {
margin: 25px 0px;
}
.muted {
font-size: 10px;
}
.muted .glyphicon {
font-size: 8px;
}
.cke_inner {
top: 115px !important;
}
.permission-table th {
display: inline-block;
}
.bootbox-confirm .modal-dialog {
width: 300px;
}
.section-tab .pull-right > .dropdown-menu {
left:1px;
}
}
@media (max-width: 557px) {
#canvas {
padding-top: 52px;
}
#menu {
padding-top: 53px;
}
.section-tab .hidden-xxs {
display: none;
}
}
@media (max-width: 320px) {
.navbar-header {
width: 320px;
}
#menu {
width: 44px;
left: -44px;
}
#wrapper.show-nav #canvas {
-webkit-transform: translateX(180px);
-ms-transform: translateX(180px);
transform: translateX(44px);
}
#sideMenuIcon {
position: absolute;
left: 0px;
background-color: #8999B7;
}
.sidebar {
width: 65px;
}
.sidebar .menu li a .menu-text {
display: none;
}
hr.dark {
margin: 25px 0px;
}
#sidebarMenu li .notification {
width: 5px;
height: 5px;
position: absolute;
}
#sidebarMenu li .arrow {
font-size: 10px;
line-height: 20px;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
padding-left: 5px;
padding-right: 5px;
}
.panel-heading {
padding: 10px;
}
.pagination .page_number {
display: none;
}
.nav-tabs > li > a {
padding: 10px !important;
}
.tabs-left .nav-tabs > li > a {
padding: 10px 1px 10px 10px !important;
}
.panel-body {
padding: 5px;
}
.action-iconset {
text-align: left !important;
}
.hidden-xxs {
display: none !important;
}
.permission-table th {
display: inline-block;
}
}
@media (max-width: 360px) {
.navbar-header {
width: 100%;
}
.section-tab .tab-title {
display: inline-block;
padding-right: 1px;
padding-left: 5px;
}
.permission-table th {
display: inline-block;
}
.sidebar .menu li a .menu-text {
display: none;
}
#sidebarMenu li .arrow {
font-size: 10px;
line-height: 20px;
}
} | skins/admin/css/style.css | * {
letter-spacing: 0.02em;
font-size: 1em;
outline: 0px none !important;
}
html {
height: 100%;
}
body {
position: relative;
height: 100%;
height: auto\0/; /** IE 8 Fix **/
}
.has-icon {
position: relative;
}
.form-stack .glyphicon {
position: absolute;
right: 10px;
color: #ccc;
}
.form-stack .btn .glyphicon {
position: absolute;
right: 15px;
top: 17px;
color: #fff;
}
.panel {
border-color: #CFD9DB #CFD9DB #C0CDD1;
border-radius: 3px;
border-width: 1px 1px 2px;
box-shadow: none;
position: relative;
}
hr {
border-color: #CFD9DB;
}
.alert {
padding: 10px;
}
.alert-dismissable {
padding-right: 10px;
}
.navbar {
margin-bottom: 0px;
border-radius: 0px;
border: 0px none;
}
.sidebar {
background-color: #2A2A2A;
bottom: 0;
color: #777777;
position: relative;
top: 0;
transition: -webkit-transform 0.2s ease 0s, -moz-transform 0.2s ease 0s, -o-transform 0.2s ease 0s, transform 0.2s ease 0s;
width: 180px;
z-index: 200;
}
.sidebar.sidebar-left.sidebar-menu {
bottom: auto;
left: 0;
min-height: 400px;
height: 100%;
padding-top: 60px;
position: absolute;
}
.sidebar-minimized .sidebar.sidebar-left.sidebar-menu {
bottom: auto;
left: 0;
min-height: 100%;
padding-top: 60px;
position: absolute;
width: 60px;
}
.login-wrapper {
width: 320px;
margin: 0px auto;
}
.navbar-header {
background-color: #00B1E1;
border-bottom: 1px solid #63D3E9;
height: 60px;
height: 70px\0/; /** IE 8 Fix **/
float:left;
}
#header .navbar-header .navbar-brand {
height: 60px;
line-height: 59px;
padding: 0;
display: block;
text-align: center;
min-width: 180px;
width: 100%;
color: #f2f2f2 !important;
text-shadow: 0px 1px 1px #999;
}
.navbar-brand span.logo-text {
padding: 0px 30px;
font-size: 20pt;
}
#header.navbar.navbar-fixed-top > .navbar-toolbar {
box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.08);
}
#header.navbar > .navbar-toolbar {
background-color: rgba(255, 255, 255, 0.97);
border-bottom: 1px solid #E3E9EB;
min-height: 50px;
}
.navbar-toolbar .navbar-nav {
float: left;
margin: 0px 0 0 40px;
}
.navbar-toolbar .navbar-right {
float: right;
}
.navbar-toolbar .navbar-left li {
float: left;
}
.navbar-nav > li > a {
cursor: pointer;
line-height: 22px;
padding-bottom: 13px;
padding: 15px;
}
.navbar-nav > li.profile > a {
padding: 10px;
}
.notify-icon > li > a {
padding: 13px;
}
.notify-icon > li.dropdown > a {
padding: 15px;
}
#notification-panel, #messages-panel {
background-color: #FFFFFF;
border: 1px solid #CFD9DB;
border-radius: 4px;
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
position: absolute;
width: 300px;
padding-bottom: 0px;
}
#messages-panel {
left: -50px;
}
#messages-panel .old .media-text,#messages-panel .old .media-heading {
color: #999;
}
#profile-panel {
background-color: #FFFFFF;
border: 1px solid #CFD9DB;
border-radius: 4px;
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
right: 5px;
top: 50px;
position: absolute;
width: 300px;
}
.navbar-toolbar .navbar-left .glyphicon,.navbar-toolbar .navbar-left .fa {
font-size: 16px;
}
.dropdown-header {
margin-top: -5px;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
color: #5E5E5E;
display: table;
height: 36px;
line-height: 36px;
padding: 0 15px !important;
width: 100%;
}
.dropdown-footer {
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
color: #5E5E5E;
display: table;
height: 36px;
line-height: 36px;
padding: 0 15px !important;
width: 100%;
}
.dropdown-header .title,.dropdown-header .option {
display: table-cell;
font-weight: 600;
font-size: 13px;
}
.dropdown-header .option a {
color: #00B1E1;
}
.media-list > a.media {
display: block;
position: relative;
padding: 5px;
}
a.media:hover {
text-decoration: none;
}
.media-list > .media.border-dotted:after {
border-bottom-style: dotted;
}
.media-list > .media:after {
border-bottom: 1px solid #DDE4E6;
bottom: 0;
content: "";
height: 1px;
left: 75px;
position: absolute;
right: 0;
}
.media-list > .media .media-object {
height: 50px;
text-align: center;
width: 50px;
}
.media > .pull-left {
margin-right: 10px;
}
.media-list > .media .media-object > [class*=" glyphicon-"], .media-list > .media .media-object > [class^="glyphicon-"] {
background-color: #ECF0F1;
border-radius: 50%;
color: #B1C2C6;
display: block;
height: 34px;
line-height: 33px;
margin: 0 auto;
text-align: center;
width: 34px;
}
.bgcolor-teal {
background-color: #6BCCB4 !important;
border-color: #5CC7AC !important;
color: #FFFFFF !important;
}
.bgcolor-info {
background-color: #00B1E1 !important;
border-color: #4DCDE6 !important;
color: #FFFFFF !important;
}
.media, .media-body {
overflow: hidden;
}
.media-list > .media > .media-body > .media-heading {
color: #00B1E1;
display: block;
font-weight: 600;
margin-bottom: 0;
}
.media-list > .media > .media-body > .media-text {
color: #444444;
display: block;
margin: 0;
}
.media-list > .media > .media-body .media-meta {
font-size: 11px;
margin: 0;
color: #777;
}
.media-list .glyphicon {
font-size: 15px;
}
.slimScrollDiv .media-body {
display: inline;
}
.ellipsis {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.nm {
margin: 0 !important;
}
#header.navbar .avatar {
display: table-cell;
height: 32px;
vertical-align: middle;
width: 32px;
}
.navbar-toolbar .meta {
display: table;
width: 100%;
margin-right: 10px;
}
#header.navbar .avatar > img {
display: block;
width: 100%;
height: 100%;
vertical-align: middle;
}
#header.navbar .meta .text {
font-size: 13px;
line-height: 30px;
font-weight: 600;
padding-left: 5px;
}
.p0 {
padding: 0px;
}
.p10 {
padding: 10px;
}
.pl5 {
padding-left: 5px !important;
}
.pr5 {
padding-right: 5px !important;
}
.pr0 {
padding-right: 0px !important;
}
.m5 {
margin: 5px;
}
.profile-dropdown {
width: 200px;
}
.container-fluid .page-header.page-header-block {
margin-left: -15px;
margin-right: -15px;
margin-top: 0px;
background-color: #FBFCFC;
border-bottom-color: #DAE2E4;
padding: 14px 15px 16px;
width: auto;
}
.page-header.page-header-block .col-xs-5 {
margin: 5px 0px;
}
hr.dark {
border-top: 1px solid #222;
border-bottom: 1px solid #333;
}
.sidebar-menu ul.nav li a {
color: #ddd;
padding: 10px 5px;
}
.sidebar .menu li a .menu-text {
font-size: 1em;
}
.stick {
position:fixed !important;
top:0px !important;
}
.sidebar .menu li .notification {
background-color: #F86868;
border-radius: 5px;
color: #FFFFFF !important;
display: inline-block;
font-size: 11px;
height: 5px;
padding: 0;
text-align: center;
width: 5px;
}
.notification {
background-color: #D9EDF7;
border: 0 solid #BCE8F1;
border-radius: 3px;
color: #333333;
margin-bottom: 10px;
padding: 20px;
}
.sidebar .submenu {
display: none;
position: relative;
left: !00% !importnat;
width: 1;
margin-left: 0px;
padding-left: 0px;
border-bottom-right-radius: 3px;
border-top-right-radius: 3px;
padding-right: 2px;
z-index: 300;
}
.sidebar .menu li.active .arrow{
transform:rotate(180deg);
-ms-transform:rotate(180deg);
-webkit-transform:rotate(180deg);
}
ul.submenu li .a1 {
}
/*.sidebar .menu li:hover .arrow,.menu li.active .arrow {
transform:rotate(90deg);
-ms-transform:rotate(90deg);
-webkit-transform:rotate(90deg);
}*/
.sidebar .submenu li {
position: relative;
padding-left: 10px;
display: block;
list-style: none outside none;
position: relative;
width: 100%;
}
.sidebar .submenu li:hover {
background-color: #222;
}
.sidebar .submenu li a {
display: block;
padding: 10px;
}
.sidebar .submenu li a:hover {
text-decoration: none;
}
.sidebar .submenu li a .glyphicon {
margin-right: 5px;
}
.nav-tabs > li > a {
border: 0px none;
}
.tabs-left > .nav-tabs > li,
.tabs-right > .nav-tabs > li {
float: none;
margin-bottom: 0px;
border: 0px none;
word-wrap: break-word;
}
.tabs-left > .nav-tabs > li .glyphicon,.tabs-left > .nav-tabs > li .fa {
margin-right: 5px;
}
.nav-tabs > li.active,.nav-tabs > li.active a.tab-title {
background: #fff;
border: 0px none;
position: relative;
}
.tabs-left > .nav-tabs {
float: left;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
border: 0px none;
background: none !important;
}
.nav-tabs > li > a:hover {
border-color: none;
}
.nav-tabs > li > a:hover,
.nav-tabs > li > a:focus {
text-decoration: none;
background: none !important;
}
.tabs-left > .nav-tabs > li > a:hover,
.tabs-left > .nav-tabs > li > a:focus {
background: none;
border-radius: 0px;
}
.dropdown-menu > li > a {
padding: 6px 20px;
}
.small .glyphicon {font-size: 12px;}
.pagination {margin: 5px 0px;}
.pagination > li > a, .pagination > li > span {
padding: 6px 10px;
}
.btn-file {
padding: 1px;
}
.btn-file input[type=file] {
width: auto;
float: left;
margin: 5px;
max-width: 170px;
font-size: 12px;
}
.input-group .btn-file {
position: relative;
overflow: hidden;
}
.input-group .btn-file input[type=file] {
position: absolute;
top: 0;
right: 0;
min-width: 100%;
min-height: 100%;
font-size: 999px;
text-align: right;
filter: alpha(opacity=0);
opacity: 0;
outline: none;
background: white;
cursor: inherit;
display: block;
}
.panel-group .panel {
overflow: visible;
}
.panel-footer {
word-wrap: break-word;
}
.nav-tabs li > a {
color: #fff;
}
.nav-tabs li > a.action-icon :hover {
color: #2A2A2A;
}
.nav-tabs li.active > a.action-icon :hover {
color: #00B1E1;
}
.tab-content {
position: relative;
background: #fff;
width: 100%;
min-height: 300px;
float: left;
padding: 5px 10px 2px 10px;
border-right: 1px solid #DBDFE0;
box-shadow: 0 3px 0 #DBDFE0;
}
.list-group-item {
padding: 5px 10px;
}
.list-table {
display: table;
margin: 0;
padding: 0;
table-layout: fixed;
width: 100%;
}
.list-table > li:first-child {
padding-left: 0;
}
.list-table > li {
display: table-cell;
padding: 0 5px;
table-layout: fixed;
vertical-align: middle;
width: auto;
}
.fa {
vertical-align: middle;
}
.title .fa {
font-size: 19px;
}
.btn .fa {
margin-top: -1px;
}
#settingFieldOptionsWrapper,#settingFieldOptionsWrapper .col-md-4,#settingFieldOptionsWrapper .col-md-8 {
padding: 0px;
}
#settingFieldOptionsWrapper .hidden-xs, #settingFieldOptionsWrapper .date_default_value_label {
display: none;
}
#settingFieldOptionsWrapper #optionList,#settingFieldOptionsWrapper .date_default_value_field {
width: 100%;
}
#optionList .table {
margin-bottom: 0px;
}
.cp {
cursor: pointer !important;
}
#settingFieldOptionsWrapper .default_value_label {
font-weight: normal;
font-size: 12px;
}
.ui-datepicker {
z-index: 1050 !important;
}
.underline {
padding-bottom: 5px;
border-bottom: 1px solid #eee;
font-size: 14px;
}
.tabs-left .tab-content {
width: 70%;
}
.tabs-left .nav-tabs {
width: 30%;
left: 1px;
}
.action-icon {
margin-left: 1px;
color: #aaa;
}
.action-icon:hover {
color: #00B1E1;
}
.panel-title > a {
display: block;
line-height: 18px;
}
.panel-title > a .glyphicon {
margin-right: 10px;
}
.panel-title > a .glyphicon:before {
content: "\2212";
}
.panel-title > a.collapsed .glyphicon:before {
content: "\2b";
}
.field-row {
position: relative;
margin-top: 20px;
}
.field-row:first-child {
margin-top: 5px;
}
.user-grid .panel-body {
padding: 10px 0px;
}
.user-grid .col-md-6 .panel-body {
padding: 0px;
word-wrap: break-word;
position: relative;
}
.user-grid .stretch {
padding: 0px;
}
.user-grid h6 {
margin: 3px 0px;
}
.user-grid .action-iconset {
color: #aaa;
margin: 5px 0px;
padding: 0px 5px;
}
.user-grid .user-details {
padding: 5px;
}
.muted {
font-size: 12px;
}
.muted .glyphicon {
font-size: 10px;
}
.user-avatar {
max-width: 100%;
width: 100%;
}
.ui-datepicker-trigger {
position: absolute;
bottom: 5px;
right: 5px;
cursor: pointer;
}
#optionList .row-fluid {
padding: 2px 0px;
}
.add-option {
display: block;
}
.max50 {
max-width: 50px;
}
.card-layout {
display: table;
margin-bottom: 20px;
table-layout: fixed;
width: 100%;
}
.card-layout > .col-xs-1, .card-layout > .col-xs-10, .card-layout > .col-xs-11, .card-layout > .col-xs-2, .card-layout > .col-xs-3, .card-layout > .col-xs-4, .card-layout > .col-xs-5, .card-layout > .col-xs-6, .card-layout > .col-xs-7, .card-layout > .col-xs-8, .card-layout > .col-xs-9 {
display: table-cell;
float: none;
table-layout: fixed;
vertical-align: middle;
}
.icon-box {
background: #B1C2C6;
border-right: 0px none;
border-radius: 3px 0px 0px 3px;
}
.icon-box a {
color: #fff;
display: block;
}
.icon-box-detail {
border-left: 0px none;
border-radius: 0px 3px 3px 0px;
}
.media, .media .media {
margin-top: 0px;
}
.media-list-feed {
padding-bottom: 0px;
margin-bottom: 0px;
}
.media-list > .media {
padding: 0px 15px 15px 15px;
position: relative;
}
.media:first-child {
margin-top: 0;
}
.media-list-feed > .media:after {
background-color: #DDE4E6;
border-bottom-width: 0;
bottom: -50%;
content: "";
height: auto;
left: 40px;
position: absolute;
right: auto;
top: -50%;
width: 1px;
z-index: -1;
}
.media-list-feed > .media:last-child:after {
background-color: transparent;
}
#nextFeed:after {
bottom: 50%;
}
#nextFeed .media-body {
padding-top: 7px;
}
.state-container {
box-sizing: border-box;
width: 100%;
height: 450px;
padding: 20px 15px 15px 15px;
margin: 15px auto 30px auto;
overflow: hidden;
}
.state-placeholder {
width: 100%;
height: 100%;
font-size: 14px;
line-height: 1.2em;
}
.legendLabel {
padding: 3px;
font-size: 11px;
}
.hasAlert {
position: absolute;
left: 10px;
top: 10px;
display: inline-block;
height: 8px;
width: 8px;
border-radius: 50%;
text-indent: -999999px;
}
.dateBox {
max-width: 100px;
margin-right: 15px;
}
.inbox-options {
margin-top: 10px;
}
.inbox-options a {
display: block;
line-height: 16px;
font-size: 14px;
padding-left: 5px;
color: #345;
}
.inbox-options a:hover {
text-decoration: none;
}
.has-icon {
position: relative;
}
.has-icon .glyphicon {
position: absolute;
right: 5px;
z-index: 111;
}
.message-list .media-meta {
margin-left: 5px !important;
}
.labels-list .list-group-item:hover .remove-label {
display: block !important;
}
.red {
color: #F86868;
}
.form-light input{
background: transparent;
border: 0px none;
border-bottom: 1px dotted #ccc;
}
.permission-table .permission-row {
padding: 5px 0px;
border-bottom: 1px dotted #eee;
}
.permission-table .permission-row:hover , .table tr:hover {
background-color: #F5F5F5 !important;
}
.break-word {
word-break: break-all;
}
.remove-section {
position: absolute !important;
top: 10px;
right: 0px;
padding: 2px !important;
display: none !important;
}
.edit-section {
position: absolute !important;
top: -4px;
right: 0px;
padding: 2px !important;
display: none !important;
}
.remove-section span,.edit-section span {
font-size: 9px !important;
}
.section-tab:hover .remove-section,.section-tab:hover .edit-section {
display: block !important;
}
.cke_show_borders {
padding: 5px;
border: 1px dashed #ccc;
min-height: 100px;
height: auto;
}
.hidden-row {
display: none;
}
.section-tab .tab-title {
display: inline-block;
padding-right: 1px;
}
.section-tab .btn-group .dropdown-menu {
min-width: 120px;
}
.section-tab .btn-group .dropdown-menu a {
color: #111;
}
.nav-tabs .section-tab {
border-top: 1px solid #7987A1 !important;
}
.nav-tabs .section-tab:first-child {
border-top: 0px none !important;
}
.nav-tabs .section-tab a.btn {
color: #4C607F;
}
.nav-tabs .active a.btn {
color: #aaa;
}
.hidden-xxs {
word-break: break-all;
}
.tab-pane h4 {
margin-top: 0px;
}
#wrapper {
position: relative;
overflow-x: hidden;
width: 100%;
height: 100%;
padding-bottom: 50px;
}
#canvas {
width: 100%;
min-height: 475px;
min-height: 100%;
padding-top: 53px;
position: relative;
-webkit-transform: translateX(0);
transform: translateX(0);
-webkit-transition: 300ms ease all;
transition: 300ms ease all;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
#menu {
width: 180px;
position: absolute;
top: 0;
left: -180px;
padding-top: 75px;
}
#wrapper.show-nav #canvas {
-webkit-transform: translateX(180px);
-ms-transform: translateX(180px);
transform: translateX(180px);
}
.show-nav #menu {
left: 0px\0/;
width: 205px\0/;
}
#canvas {
padding-top: 15px\0/;
}
.label-form .col-xs-3,.label-form .col-xs-8 {
padding:0px;
margin:1px;
}
.label-form .form-control {
padding:2px;
}
.dataTables_filter input,.dataTables_length select {
border:1px solid #ccc;
padding: 3px;
}
.cke_inner {
top: 62px !important;
}
.notify-icon {
height: 52px;
}
#sideMenuIcon {
position: absolute;
left: 0px;
}
/*.xAxis .tickLabel {
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
}*/
#sidebarMenu ul.submenu {
left: 1px ssolid transparent important;
}
/* End Genral Styles ********************************************************/
@media (max-width: 767px) {
#menu {
width: 44px;
left: -44px;
}
#wrapper.show-nav #canvas {
-webkit-transform: translateX(180px);
-ms-transform: translateX(180px);
transform: translateX(44px);
}
.sidebar .menu li a .menu-text {
display: none;
}
hr.dark {
margin: 25px 0px;
}
.muted {
font-size: 10px;
}
.muted .glyphicon {
font-size: 8px;
}
.cke_inner {
top: 115px !important;
}
.permission-table th {
display: inline-block;
}
.bootbox-confirm .modal-dialog {
width: 300px;
}
.section-tab .pull-right > .dropdown-menu {
left:1px;
}
}
@media (max-width: 557px) {
#canvas {
padding-top: 52px;
}
#menu {
padding-top: 53px;
}
.section-tab .hidden-xxs {
display: none;
}
}
@media (max-width: 320px) {
.navbar-header {
width: 320px;
}
#menu {
width: 44px;
left: -44px;
}
#wrapper.show-nav #canvas {
-webkit-transform: translateX(180px);
-ms-transform: translateX(180px);
transform: translateX(44px);
}
#sideMenuIcon {
position: absolute;
left: 0px;
background-color: #8999B7;
}
.sidebar {
width: 65px;
}
.sidebar .menu li a .menu-text {
display: none;
}
hr.dark {
margin: 25px 0px;
}
#sidebarMenu li .notification {
width: 5px;
height: 5px;
position: absolute;
}
#sidebarMenu li .arrow {
font-size: 10px;
line-height: 20px;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
padding-left: 5px;
padding-right: 5px;
}
.panel-heading {
padding: 10px;
}
.pagination .page_number {
display: none;
}
.nav-tabs > li > a {
padding: 10px !important;
}
.tabs-left .nav-tabs > li > a {
padding: 10px 1px 10px 10px !important;
}
.panel-body {
padding: 5px;
}
.action-iconset {
text-align: left !important;
}
.hidden-xxs {
display: none !important;
}
.permission-table th {
display: inline-block;
}
}
@media (max-width: 360px) {
.navbar-header {
width: 100%;
}
.section-tab .tab-title {
display: inline-block;
padding-right: 1px;
padding-left: 5px;
}
.permission-table th {
display: inline-block;
}
.sidebar .menu li a .menu-text {
display: none;
}
#sidebarMenu li .arrow {
font-size: 10px;
line-height: 20px;
}
} | 0.423339 | 0.10226 |
@-moz-document domain(torrentfreak.com){
#wrap-page {
background: none;
}
#stick-logo {
position: relative;
}
/*
get rid of the pink theme
*/
html, body {
border-bottom: 4px solid #00AEFF;
}
a {
color: #0070FF;
text-decoration: none;
}
#logo {
background: repeat scroll 0 0 #00B0FF;
}
#logo:hover {
background: repeat scroll 0 0 #00C8FF;
}
#feature {
border-bottom: 3px solid #00AEFF;
}
.stats-caption {
color: #00AEFF;
}
.flag-featured {
background: none repeat scroll 0 0 #00AEFF;
}
.flag-featured .flag-end:before {
border-top: 15.3px solid #00AEFF;
}
.flag-featured .flag-end:after {
border-bottom: 15.3px solid #00AEFF;
}
.flag-featured:after {
border-top: 9px solid #0055FF;
}
.entry-meta a, .entry-meta time {
color: #0083FF;
}
.widg-copyright a {
color: #0083FF;
}
.btn {
background: none repeat scroll 0 0 #00B0FF;
text-shadow: 0 1px 1px #0040FF;
}
.btn-icon {
background: none repeat scroll 0 0 #0080FF;
}
.btn:hover {
background: none repeat scroll 0 0 #00C0FF;
}
.btn:hover .btn-icon {
background: none repeat scroll 0 0 #0090FF;
}
.nav-link:hover {
color: #00AEFF !important;
}
.entry-link:hover {
color: #0090FF;
}
.archive-header h1 span {
color: #00A0FF;
}
.pullquote {
border-left: 5px solid #00AEFF;
}
textarea:focus, select:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="email"]:focus, input[type="month"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="time"]:focus, input[type="url"]:focus, input[type="week"]:focus {
border-bottom-color: #0080F0;
outline: medium none;
}
a.widg-topcomments-comments {
filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='invert'><feColorMatrix in='SourceGraphic' type='matrix' values='0 0 0 0 00 3 0 0 00 0 2 0 00 0 0 1 0'/></filter></svg>#invert");
}
.entry-content ul {
list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAIBAMAAAA2IaO4AAAAD1BMVEUAbP8AbP8AAAAAbP8AbP8JzPFfAAAABHRSTlOwJgD+yCTNSQAAACFJREFUCNdjUGRxEGIQcXFxZGBxcXFgcAECMAHmgiXASgB+XgZhpZMMKAAAAABJRU5ErkJggg==');
}
} | data/usercss/98246.user.css | @-moz-document domain(torrentfreak.com){
#wrap-page {
background: none;
}
#stick-logo {
position: relative;
}
/*
get rid of the pink theme
*/
html, body {
border-bottom: 4px solid #00AEFF;
}
a {
color: #0070FF;
text-decoration: none;
}
#logo {
background: repeat scroll 0 0 #00B0FF;
}
#logo:hover {
background: repeat scroll 0 0 #00C8FF;
}
#feature {
border-bottom: 3px solid #00AEFF;
}
.stats-caption {
color: #00AEFF;
}
.flag-featured {
background: none repeat scroll 0 0 #00AEFF;
}
.flag-featured .flag-end:before {
border-top: 15.3px solid #00AEFF;
}
.flag-featured .flag-end:after {
border-bottom: 15.3px solid #00AEFF;
}
.flag-featured:after {
border-top: 9px solid #0055FF;
}
.entry-meta a, .entry-meta time {
color: #0083FF;
}
.widg-copyright a {
color: #0083FF;
}
.btn {
background: none repeat scroll 0 0 #00B0FF;
text-shadow: 0 1px 1px #0040FF;
}
.btn-icon {
background: none repeat scroll 0 0 #0080FF;
}
.btn:hover {
background: none repeat scroll 0 0 #00C0FF;
}
.btn:hover .btn-icon {
background: none repeat scroll 0 0 #0090FF;
}
.nav-link:hover {
color: #00AEFF !important;
}
.entry-link:hover {
color: #0090FF;
}
.archive-header h1 span {
color: #00A0FF;
}
.pullquote {
border-left: 5px solid #00AEFF;
}
textarea:focus, select:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="email"]:focus, input[type="month"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="time"]:focus, input[type="url"]:focus, input[type="week"]:focus {
border-bottom-color: #0080F0;
outline: medium none;
}
a.widg-topcomments-comments {
filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='invert'><feColorMatrix in='SourceGraphic' type='matrix' values='0 0 0 0 00 3 0 0 00 0 2 0 00 0 0 1 0'/></filter></svg>#invert");
}
.entry-content ul {
list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAIBAMAAAA2IaO4AAAAD1BMVEUAbP8AbP8AAAAAbP8AbP8JzPFfAAAABHRSTlOwJgD+yCTNSQAAACFJREFUCNdjUGRxEGIQcXFxZGBxcXFgcAECMAHmgiXASgB+XgZhpZMMKAAAAABJRU5ErkJggg==');
}
} | 0.124559 | 0.105625 |
.mmc_welcome{ margin: 12px;padding: 50px 10px;border-radius: 10px;text-align: center;width: 500p }
.mmc_title{ text-align: center;font-size: 30px;font-weight: 100; line-height: 35px; }
.mmc_welcome .mmc_lincense_key{ width: 404px;border-radius: 6px;font-size: 17px;padding: 9px 14px;margin-top: 30px }
.mmc_welcome .mmc_save_license{ font-size: 12px;height: 52px;width: 100px;font-size: 20px }
.mmc_welcome_content form{ width: 512px;margin: 0 auto }
.mmc_welcome_content a{ text-align: left }
.mmc_license_link a{ text-decoration: none }
.mmc_license_link{ text-align: left;margin: 5px 0px}
.mycred-membership-menu-label { color: #ffffff; margin: 5px; background: #892bff; padding: 1px 5px 3px 5px; border-radius: 4px; font-size: 10px; }
/** myCred Review **/
.mycred-review-notice { padding: 15px 15px 15px 0; background-color: #fff; border-radius: 3px; margin: 20px 20px 0 0; border-left: 4px solid transparent; } .mycred-review-notice:after { content: ''; display: table; clear: both; }
.mycred-review-thumbnail { width: 114px; float: left; line-height: 80px; text-align: center; border-right: 4px solid transparent; }
.mycred-review-thumbnail img { width: 74px; vertical-align: middle; }
.mycred-review-text { overflow: hidden; }
.mycred-review-text h3 { font-size: 24px; margin: 0 0 5px; font-weight: 400; line-height: 1.3; }
.mycred-review-text p { font-size: 13px; margin: 0 0 5px; }
.mycred-review-ul { margin: 0; padding: 0; }
.mycred-review-ul li { display: inline-block; margin-right: 15px; }
.mycred-review-ul li a { display: inline-block; color: #10738B; text-decoration: none; padding-left: 26px; position: relative; }
.mycred-review-ul li a span { position: absolute; left: 0; top: -2px; }
a.thickbox.open-plugin-details-modal {
text-decoration: none ;
}
.wrap {
margin: 10px 20px 0 2px;
}
.wrap h1.wp-heading-inline {
display: inline-block;
margin-right: 5px;
}
h1, h2, h3, h4, h5, h6 {
display: block;
font-weight: 600;
}
h2, h3 {
color: #1d2327;
font-size: 1.3em;
margin: 1em 0;
}
p {
font-size: 13px;
line-height: 1.5;
margin: 1em 0;
}
/*.theme.active {
display: flex;
align-items: center;
justify-content: center;
flex-direction: row;
flex-wrap: wrap;
}*/
.theme-browser .theme {
min-height: 10em;
}
.membership-license-activated{
float: left;
position: absolute;
margin-left: 370px;
margin-top: 44px;
font-size: 28px;
color: #15b915;
}
.membership-license-inactive{
float: left;
position: absolute;
margin-left: 370px;
margin-top: 44px;
font-size: 28px;
color: #b91515;
}
.mycred-addon-network-active{
pointer-events: none;
cursor: default;
}
/** myCred Membership Table **/
.mmc_table{
/* background-color:#FFF; */ padding: 0 20px 0 20px;
}
.mmc-packages {
display: table;
margin: 0 auto;
}
.most-popular{
position: relative;
}
.mmc_table_column{
background-color:#FFF;
display: table-cell;
}
.mmc_table .mmc_table_plan {
font-size: 18px;
font-weight: bold;
color: rgba(89, 40, 158, 1);
text-align: center;
line-height: 24px;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
margin: 11% 0;
text-transform: uppercase;
}
.mmc_table .mmc_table_pricing_worth {
color: #999;
font-weight: normal;
text-align:center;
margin-bottom: 0px;
font-size: 20px;
-webkit-text-decoration-line: line-through;
text-decoration-line: line-through;
text-decoration-color: red;
}
.mmc_table .mmc_table_pricing_current {
font-size: 48px;
font-weight: bold;
color: rgba(89, 40, 158, 1);
text-align: center;
line-height: 24px;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
margin: 3% 0 14% 0;
}
.mmc_table .mmc_table_pricing .mmc_table_pricing_dollar_sign{
font-size: 26px;
vertical-align: super;
}
.mmc_table .mmc_table_plan_sites {
font-size: 16px;
color: rgba(136, 0, 255, 1);
text-align: center;
line-height: 24px;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
margin: 11% 0;
font-weight: normal;
margin: 3% 0;
margin-bottom: 0 !important;
}
.mmc_table .mmc_table_plan_billed{
color: #999ea9;
font-size: 12px;
font-weight: 100;
line-height: 20px;
margin-bottom: 10px;
font-style: italic;
text-align: center;
margin-top: 0px;
}
.mmc_table .mmc_table_addon_details li{
position: relative;
display: block;
padding: 8px 25px;
margin-bottom: -1px;
background-color: #ffffff;
border: none;
font-size: 16px;
color: rgba(89, 40, 158, 1) !important;
text-align: center;
line-height: 24px;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.mmc_table .mmc_table_get_started{
text-align:center;
margin-bottom: 30px;
}
.mmc_table .mmc_table_get_started a{
font-size: 14px;
font-weight: bold;
color: rgba(255, 255, 255, 1) !important;
text-align: center;
line-height: 19px;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
background: rgba(106, 0, 255, 1);
border-radius: 25px;
cursor: pointer !important;
text-decoration: none !important;
margin: 10% 0 0 0;
display: block;
padding: 10px 40px;
width: 100px;
margin: 0 auto;
}
.mmc_table .border-right{
border-right: 1px solid #ccc;
}
.mmc_table .mmc_table_most_popular{
color: white;
background: #ff6f41;
padding: 8px 0px 6px 0px;
position: absolute;
top: -20px;
z-index: 99;
width: 150px;
text-align: center;
right: 0;
left: 0;
margin: 0 auto;
font-size: 16px;
line-height: 22px;
}
div#tabs_package_1 {
width: auto;
display: block;
float: none;
text-align: center;
margin-bottom: 50px;
}
#tabs_package_1 a {
padding: 8px 10px;
height: 45px;
line-height: 42px;
color: #000;
text-decoration: none;
text-transform: uppercase;
position: relative;
}
#tabs_package_1 a sup {
background: #f05d3e;
width: 97px;
/* height: 30px; */
word-break: break-all;
overflow: hidden;
padding: 10px 1px;
position: absolute;
top: -20px;
color: #FFF;
font-size: 12px;
line-height: 14px;
right: 10px;
border-radius: 10px 10px 0px 0px;
margin: -6px;
display:none;
}
#tabs_package_1 a.active_pkg {
color: #000!important;
font-weight: bold;
color: purple !important;
text-decoration:underline;
}
.radio_btns_pkg{
width: 480px;
background-color: #f7f7f7;
border-radius: 50px;
color: black;
margin: 0 auto;
box-shadow: 2px 2px 5px #272727;
}
div#tabs_package_1 {
position: relative;
}
#tabs_package_1 .switch_btn {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
margin-bottom:0px;
}
#tabs_package_1 .switch_btn input {
opacity: 0;
width: 0;
height: 0;
}
#tabs_package_1 .slider_btn {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #894be0!important;
-webkit-transition: .4s;
transition: .4s;
}
#tabs_package_1 .slider_btn:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 4px;
bottom: 4px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}
.join_one_year,
.join_three_year{
margin-bottom: 50px;
}
#tabs_package_1 input:checked + #tabs_package_1 .slider_btn {
background-color: #894be0!important;
}
#tabs_package_1 input:checked + .slider_btn:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(26px);
}
#tabs_package_1 .radio_btns_pkg{
line-height:34px;
}
/* Rounded sliders */
#tabs_package_1 .slider_btn.round {
border-radius: 34px;
}
#tabs_package_1 .slider_btn.round:before {
border-radius: 50%;
}
.show_cont{
display:block!important;
}
.hide_cont{
display:none!important;
}
.row.mycred-money-back {
display: none;
}
@media (min-width: 1640px) {
.mycred-treasures .theme-browser .theme {
width: 29.7%;
margin: 0 3% 3% 0;
}
.mycred-treasures .theme-id-container {
width: 100%;
height: 100%;
}
.mycred-treasures .theme.active {
width: 30%;
width: calc(33.1% - 5em);
}
}
/*@media screen and (min-width: 1600px) and (max-width: 2299px){
.theme.active {
width: 30%;
width: calc(33.1% - 8px);
}
}*/
@media (max-width: 1120px) {
.theme-browser .theme {
cursor: pointer;
float: left;
margin: 0 4% 4% 0;
position: relative;
width: 100%;
border: 1px solid #dcdcde;
box-shadow: 0 1px 1px -1px rgb(0 0 0 / 10%);
box-sizing: border-box;
}
}
@media (max-width: 510px) {
div#tabs_package_1{
margin-bottom: 30px;
}
#tabs_package_1 .radio_btns_pkg{
width: 100%!important;
}
}
@media (max-width: 440px) {
#tabs_package_1 a sup{
margin: 0px;
width:80px;
padding:3px 1px;
}
#tabs_package_1 a{
display: block;
}
#tabs_package_1 a sup{
top: 0px;
right: 70px;
height:auto;
}
}
.three_year {
display: none;
}
.mmc_table .mmc_table_get_started a.three_year{
display: none;
}
.mmc-addons .theme .theme-screenshot img {
/* height: 100%; */
width: 75%;
text-align: center;
margin: 0 auto;
}
.mmc-addons .theme .theme-screenshot1 img {
/* height: 100%; */
width: 100%;
/* text-align: center;
margin: 0 auto;*/
}
.mmc-addons .theme .theme-screenshot1 {
display: block;
overflow: hidden;
position: relative;
-webkit-backface-visibility: hidden;
transition: opacity .2s ease-in-out;
/*background-color: white;*/
text-align: center;
}
.mmc-addons .theme .theme-screenshot1:after {
padding-top: 0%;
}
.mmc-addons .theme .theme-screenshot1 img {
/*margin: 0 auto;*/
display: block;
float: none;
/*position: relative!important;*/
}
.mmc-addons .theme .theme-screenshot {
display: block;
overflow: hidden;
position: relative;
-webkit-backface-visibility: hidden;
transition: opacity .2s ease-in-out;
background-color: white;
text-align: center;
}
.mmc-addons .theme .theme-screenshot:after {
padding-top: 0%;
}
.mmc-addons .theme .theme-screenshot img {
margin: 0 auto;
display: block;
float: none;
position: relative!important;
height: 262.19px;
width: 262.19px;
}
#myCRED-wrap h1{
display: block!important;
font-weight: 600;
}
@font-face {
font-family: 'mycred-font';
src: url('mycred-font/mycred.eot?85147245');
src: url('mycred-font/mycred.eot?85147245#iefix') format('embedded-opentype'),
url('mycred-font/mycred.woff?85147245') format('woff'),
url('mycred-font/mycred.ttf?85147245') format('truetype'),
url('mycred-font/mycred.svg?85147245#fontello') format('svg');
font-weight: normal;
font-style: normal;
}
.dashicons-mycred:before {
content: '\e800';
font-family: "mycred-font";
font-style: normal;
font-weight: normal;
speak: never;
display: inline-block;
text-decoration: inherit;
text-align: center;
font-variant: normal;
text-transform: none;
line-height: 1em;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.mycred-support-page-container {
max-width: 1024px;
}
.mycred-support-page-content {
padding: 10px 27px 14px 27px;
background: white;
margin-top: 10px;
}
.mycred-support-page-content h2 {
margin-bottom: 2px;
}
.mycred-support-page-content p {
margin-top: 5px;
}
.mycred-treasure-pack {
/*background: white;*/
cursor: auto !important;
}
.mycred-treasure-pack-content {
background: white;
padding: 20px 20px 10px 20px;
}
.mycred-treasure-pack img {
width: 100%;
}
.mycred-treasure-pack h3 {
color: #2271b1;
margin: 8px 0 0 0;
}
.mycred-treasure-pack p {
margin: 8px 0 0 0;
}
.mycred-treasure-pack .theme-id-container .theme-name {
padding: 20px;
}
.mycred-treasure-pack .theme-id-container .theme-actions {
padding: 14px 20px !important;
}
.mycred-tools-ba-award-table p{
margin: 0px;
}
.mycred-tools-ba-award-table tr td:first-child {
min-width: 200px;
max-width: 200px;
}
.mycred-tools-ba-award-table .tb-zero-padding{
padding-top: 0px!important;
padding-bottom: 0px!important;
}
.theme-screenshot-item {
width: 278px;
height: 278px;
margin: auto;
display: flex;
align-items: center;
justify-content: center;
}
.theme-screenshot .theme-screenshot-item img {
height: unset !important;
width: 100% !important;
} | 2021/CVE-2021-25015/vultarget/mycred/assets/css/admin-subscription.css | .mmc_welcome{ margin: 12px;padding: 50px 10px;border-radius: 10px;text-align: center;width: 500p }
.mmc_title{ text-align: center;font-size: 30px;font-weight: 100; line-height: 35px; }
.mmc_welcome .mmc_lincense_key{ width: 404px;border-radius: 6px;font-size: 17px;padding: 9px 14px;margin-top: 30px }
.mmc_welcome .mmc_save_license{ font-size: 12px;height: 52px;width: 100px;font-size: 20px }
.mmc_welcome_content form{ width: 512px;margin: 0 auto }
.mmc_welcome_content a{ text-align: left }
.mmc_license_link a{ text-decoration: none }
.mmc_license_link{ text-align: left;margin: 5px 0px}
.mycred-membership-menu-label { color: #ffffff; margin: 5px; background: #892bff; padding: 1px 5px 3px 5px; border-radius: 4px; font-size: 10px; }
/** myCred Review **/
.mycred-review-notice { padding: 15px 15px 15px 0; background-color: #fff; border-radius: 3px; margin: 20px 20px 0 0; border-left: 4px solid transparent; } .mycred-review-notice:after { content: ''; display: table; clear: both; }
.mycred-review-thumbnail { width: 114px; float: left; line-height: 80px; text-align: center; border-right: 4px solid transparent; }
.mycred-review-thumbnail img { width: 74px; vertical-align: middle; }
.mycred-review-text { overflow: hidden; }
.mycred-review-text h3 { font-size: 24px; margin: 0 0 5px; font-weight: 400; line-height: 1.3; }
.mycred-review-text p { font-size: 13px; margin: 0 0 5px; }
.mycred-review-ul { margin: 0; padding: 0; }
.mycred-review-ul li { display: inline-block; margin-right: 15px; }
.mycred-review-ul li a { display: inline-block; color: #10738B; text-decoration: none; padding-left: 26px; position: relative; }
.mycred-review-ul li a span { position: absolute; left: 0; top: -2px; }
a.thickbox.open-plugin-details-modal {
text-decoration: none ;
}
.wrap {
margin: 10px 20px 0 2px;
}
.wrap h1.wp-heading-inline {
display: inline-block;
margin-right: 5px;
}
h1, h2, h3, h4, h5, h6 {
display: block;
font-weight: 600;
}
h2, h3 {
color: #1d2327;
font-size: 1.3em;
margin: 1em 0;
}
p {
font-size: 13px;
line-height: 1.5;
margin: 1em 0;
}
/*.theme.active {
display: flex;
align-items: center;
justify-content: center;
flex-direction: row;
flex-wrap: wrap;
}*/
.theme-browser .theme {
min-height: 10em;
}
.membership-license-activated{
float: left;
position: absolute;
margin-left: 370px;
margin-top: 44px;
font-size: 28px;
color: #15b915;
}
.membership-license-inactive{
float: left;
position: absolute;
margin-left: 370px;
margin-top: 44px;
font-size: 28px;
color: #b91515;
}
.mycred-addon-network-active{
pointer-events: none;
cursor: default;
}
/** myCred Membership Table **/
.mmc_table{
/* background-color:#FFF; */ padding: 0 20px 0 20px;
}
.mmc-packages {
display: table;
margin: 0 auto;
}
.most-popular{
position: relative;
}
.mmc_table_column{
background-color:#FFF;
display: table-cell;
}
.mmc_table .mmc_table_plan {
font-size: 18px;
font-weight: bold;
color: rgba(89, 40, 158, 1);
text-align: center;
line-height: 24px;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
margin: 11% 0;
text-transform: uppercase;
}
.mmc_table .mmc_table_pricing_worth {
color: #999;
font-weight: normal;
text-align:center;
margin-bottom: 0px;
font-size: 20px;
-webkit-text-decoration-line: line-through;
text-decoration-line: line-through;
text-decoration-color: red;
}
.mmc_table .mmc_table_pricing_current {
font-size: 48px;
font-weight: bold;
color: rgba(89, 40, 158, 1);
text-align: center;
line-height: 24px;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
margin: 3% 0 14% 0;
}
.mmc_table .mmc_table_pricing .mmc_table_pricing_dollar_sign{
font-size: 26px;
vertical-align: super;
}
.mmc_table .mmc_table_plan_sites {
font-size: 16px;
color: rgba(136, 0, 255, 1);
text-align: center;
line-height: 24px;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
margin: 11% 0;
font-weight: normal;
margin: 3% 0;
margin-bottom: 0 !important;
}
.mmc_table .mmc_table_plan_billed{
color: #999ea9;
font-size: 12px;
font-weight: 100;
line-height: 20px;
margin-bottom: 10px;
font-style: italic;
text-align: center;
margin-top: 0px;
}
.mmc_table .mmc_table_addon_details li{
position: relative;
display: block;
padding: 8px 25px;
margin-bottom: -1px;
background-color: #ffffff;
border: none;
font-size: 16px;
color: rgba(89, 40, 158, 1) !important;
text-align: center;
line-height: 24px;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.mmc_table .mmc_table_get_started{
text-align:center;
margin-bottom: 30px;
}
.mmc_table .mmc_table_get_started a{
font-size: 14px;
font-weight: bold;
color: rgba(255, 255, 255, 1) !important;
text-align: center;
line-height: 19px;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
background: rgba(106, 0, 255, 1);
border-radius: 25px;
cursor: pointer !important;
text-decoration: none !important;
margin: 10% 0 0 0;
display: block;
padding: 10px 40px;
width: 100px;
margin: 0 auto;
}
.mmc_table .border-right{
border-right: 1px solid #ccc;
}
.mmc_table .mmc_table_most_popular{
color: white;
background: #ff6f41;
padding: 8px 0px 6px 0px;
position: absolute;
top: -20px;
z-index: 99;
width: 150px;
text-align: center;
right: 0;
left: 0;
margin: 0 auto;
font-size: 16px;
line-height: 22px;
}
div#tabs_package_1 {
width: auto;
display: block;
float: none;
text-align: center;
margin-bottom: 50px;
}
#tabs_package_1 a {
padding: 8px 10px;
height: 45px;
line-height: 42px;
color: #000;
text-decoration: none;
text-transform: uppercase;
position: relative;
}
#tabs_package_1 a sup {
background: #f05d3e;
width: 97px;
/* height: 30px; */
word-break: break-all;
overflow: hidden;
padding: 10px 1px;
position: absolute;
top: -20px;
color: #FFF;
font-size: 12px;
line-height: 14px;
right: 10px;
border-radius: 10px 10px 0px 0px;
margin: -6px;
display:none;
}
#tabs_package_1 a.active_pkg {
color: #000!important;
font-weight: bold;
color: purple !important;
text-decoration:underline;
}
.radio_btns_pkg{
width: 480px;
background-color: #f7f7f7;
border-radius: 50px;
color: black;
margin: 0 auto;
box-shadow: 2px 2px 5px #272727;
}
div#tabs_package_1 {
position: relative;
}
#tabs_package_1 .switch_btn {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
margin-bottom:0px;
}
#tabs_package_1 .switch_btn input {
opacity: 0;
width: 0;
height: 0;
}
#tabs_package_1 .slider_btn {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #894be0!important;
-webkit-transition: .4s;
transition: .4s;
}
#tabs_package_1 .slider_btn:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 4px;
bottom: 4px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}
.join_one_year,
.join_three_year{
margin-bottom: 50px;
}
#tabs_package_1 input:checked + #tabs_package_1 .slider_btn {
background-color: #894be0!important;
}
#tabs_package_1 input:checked + .slider_btn:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(26px);
}
#tabs_package_1 .radio_btns_pkg{
line-height:34px;
}
/* Rounded sliders */
#tabs_package_1 .slider_btn.round {
border-radius: 34px;
}
#tabs_package_1 .slider_btn.round:before {
border-radius: 50%;
}
.show_cont{
display:block!important;
}
.hide_cont{
display:none!important;
}
.row.mycred-money-back {
display: none;
}
@media (min-width: 1640px) {
.mycred-treasures .theme-browser .theme {
width: 29.7%;
margin: 0 3% 3% 0;
}
.mycred-treasures .theme-id-container {
width: 100%;
height: 100%;
}
.mycred-treasures .theme.active {
width: 30%;
width: calc(33.1% - 5em);
}
}
/*@media screen and (min-width: 1600px) and (max-width: 2299px){
.theme.active {
width: 30%;
width: calc(33.1% - 8px);
}
}*/
@media (max-width: 1120px) {
.theme-browser .theme {
cursor: pointer;
float: left;
margin: 0 4% 4% 0;
position: relative;
width: 100%;
border: 1px solid #dcdcde;
box-shadow: 0 1px 1px -1px rgb(0 0 0 / 10%);
box-sizing: border-box;
}
}
@media (max-width: 510px) {
div#tabs_package_1{
margin-bottom: 30px;
}
#tabs_package_1 .radio_btns_pkg{
width: 100%!important;
}
}
@media (max-width: 440px) {
#tabs_package_1 a sup{
margin: 0px;
width:80px;
padding:3px 1px;
}
#tabs_package_1 a{
display: block;
}
#tabs_package_1 a sup{
top: 0px;
right: 70px;
height:auto;
}
}
.three_year {
display: none;
}
.mmc_table .mmc_table_get_started a.three_year{
display: none;
}
.mmc-addons .theme .theme-screenshot img {
/* height: 100%; */
width: 75%;
text-align: center;
margin: 0 auto;
}
.mmc-addons .theme .theme-screenshot1 img {
/* height: 100%; */
width: 100%;
/* text-align: center;
margin: 0 auto;*/
}
.mmc-addons .theme .theme-screenshot1 {
display: block;
overflow: hidden;
position: relative;
-webkit-backface-visibility: hidden;
transition: opacity .2s ease-in-out;
/*background-color: white;*/
text-align: center;
}
.mmc-addons .theme .theme-screenshot1:after {
padding-top: 0%;
}
.mmc-addons .theme .theme-screenshot1 img {
/*margin: 0 auto;*/
display: block;
float: none;
/*position: relative!important;*/
}
.mmc-addons .theme .theme-screenshot {
display: block;
overflow: hidden;
position: relative;
-webkit-backface-visibility: hidden;
transition: opacity .2s ease-in-out;
background-color: white;
text-align: center;
}
.mmc-addons .theme .theme-screenshot:after {
padding-top: 0%;
}
.mmc-addons .theme .theme-screenshot img {
margin: 0 auto;
display: block;
float: none;
position: relative!important;
height: 262.19px;
width: 262.19px;
}
#myCRED-wrap h1{
display: block!important;
font-weight: 600;
}
@font-face {
font-family: 'mycred-font';
src: url('mycred-font/mycred.eot?85147245');
src: url('mycred-font/mycred.eot?85147245#iefix') format('embedded-opentype'),
url('mycred-font/mycred.woff?85147245') format('woff'),
url('mycred-font/mycred.ttf?85147245') format('truetype'),
url('mycred-font/mycred.svg?85147245#fontello') format('svg');
font-weight: normal;
font-style: normal;
}
.dashicons-mycred:before {
content: '\e800';
font-family: "mycred-font";
font-style: normal;
font-weight: normal;
speak: never;
display: inline-block;
text-decoration: inherit;
text-align: center;
font-variant: normal;
text-transform: none;
line-height: 1em;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.mycred-support-page-container {
max-width: 1024px;
}
.mycred-support-page-content {
padding: 10px 27px 14px 27px;
background: white;
margin-top: 10px;
}
.mycred-support-page-content h2 {
margin-bottom: 2px;
}
.mycred-support-page-content p {
margin-top: 5px;
}
.mycred-treasure-pack {
/*background: white;*/
cursor: auto !important;
}
.mycred-treasure-pack-content {
background: white;
padding: 20px 20px 10px 20px;
}
.mycred-treasure-pack img {
width: 100%;
}
.mycred-treasure-pack h3 {
color: #2271b1;
margin: 8px 0 0 0;
}
.mycred-treasure-pack p {
margin: 8px 0 0 0;
}
.mycred-treasure-pack .theme-id-container .theme-name {
padding: 20px;
}
.mycred-treasure-pack .theme-id-container .theme-actions {
padding: 14px 20px !important;
}
.mycred-tools-ba-award-table p{
margin: 0px;
}
.mycred-tools-ba-award-table tr td:first-child {
min-width: 200px;
max-width: 200px;
}
.mycred-tools-ba-award-table .tb-zero-padding{
padding-top: 0px!important;
padding-bottom: 0px!important;
}
.theme-screenshot-item {
width: 278px;
height: 278px;
margin: auto;
display: flex;
align-items: center;
justify-content: center;
}
.theme-screenshot .theme-screenshot-item img {
height: unset !important;
width: 100% !important;
} | 0.375936 | 0.149998 |
html {
overflow: hidden;
}
#fullPageVid {
width: 100vw;
height: 100vh;
object-fit: cover;
object-position: center;
z-index: -1;
/* position: absolute; */
}
.video-background {
background: #000;
position: fixed;
top: 0; right: 0; bottom: 0; left: 0;
z-index: -99;
}
.video-foreground,
.video-background iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
}
.vimeo-wrapper {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
pointer-events: none;
}
.vimeo-wrapper iframe {
width: 100vw;
height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
min-height: 100vh;
min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#nav {
position: absolute;
top: 0;
right: 0;
bottom: 0;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
#nav .background {
position: absolute;
top: 0;
right: 0;
bottom: 0;
width: 100%;
background: #101010;
}
#nav button {
outline: none;
border: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
cursor: pointer;
position: absolute;
top: 18px;
right: 15px;
width: 50px;
height: 50px;
border-radius: 50%;
background: transparent;
}
#nav ul,
li {
margin: 0;
padding: 0;
}
#nav ul {
padding: 25px;
position: absolute;
}
#nav li {
list-style: none;
margin-bottom: 20px;
/* display: flex; */
/* align-items: center; */
cursor: pointer;
text-align: center;
line-height: 1.1;
}
#nav li a {
font-family: "Dosis";
text-decoration: none;
font-weight: 200 !important;
font-size: 28px;
color: #f2f2f2;
text-transform: uppercase;
letter-spacing: 4px;
transition: color .2s;
}
#nav li a:hover {
color: #68c072;
}
.time {
color: white;
height: 100px;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.cityTitles {
min-height: 207px;
display: flex;
align-items: center;
justify-content: center;
}
.centered-text {
position: relative;
z-index: 99;
width: 100%;
height: 100%;
}
h2.hero-heading {
/* visibility: hidden; */
padding-bottom: 0.5em;
text-align: center;
font-size: 3em;
line-height: 0.9em;
letter-spacing: 7.5px;
color: #fff;
/* font-weight: 700; */
text-transform: uppercase;
text-shadow: 0px 0px 1px rgba(13, 13, 13, 0.9), 0px 2px 4px #0d0d0d;
font-weight: 700;
/* filter: text-shadow(0px 0px 1px rgba(13, 13, 13, 0.9)), text-shadow(0px 4px 8px #0D0D0D); */
}
h2.hero-heading span {
font-size: 0.5em;
}
hr {
content: "";
background: #cdb083;
/* bottom: 0%;
left: 25%; */
width: 100%;
height: 2px;
/* visibility: hidden; */
}
p.subheading {
text-align: center;
width: 100%;
padding: 1.5em 0;
font-family: "Proza Libre", sans-serif;
font-weight: 800;
/* color: rgb(238,232,170); */
color: #fff;
text-transform: uppercase;
letter-spacing: 10px;
font-size: 1em;
text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.9), 0px 2px 4px #000000;
/* visibility: hidden; */
}
.text-container {
/* visibility: hidden; */
/* background-color: rgba(10, 10, 10, 0.3); */
padding: 1.5rem;
}
@media (min-aspect-ratio: 16/9) {
.video-foreground { height: 400%; top: -150%; }
}
@media (max-aspect-ratio: 16/9) {
.video-foreground { width: 400%; left: -150%; }
}
@media only screen and (max-width: 480px) {
.cityTitles {
min-height: 130px;
}
} | src/components/fullpage.css | html {
overflow: hidden;
}
#fullPageVid {
width: 100vw;
height: 100vh;
object-fit: cover;
object-position: center;
z-index: -1;
/* position: absolute; */
}
.video-background {
background: #000;
position: fixed;
top: 0; right: 0; bottom: 0; left: 0;
z-index: -99;
}
.video-foreground,
.video-background iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
}
.vimeo-wrapper {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
pointer-events: none;
}
.vimeo-wrapper iframe {
width: 100vw;
height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
min-height: 100vh;
min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#nav {
position: absolute;
top: 0;
right: 0;
bottom: 0;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
#nav .background {
position: absolute;
top: 0;
right: 0;
bottom: 0;
width: 100%;
background: #101010;
}
#nav button {
outline: none;
border: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
cursor: pointer;
position: absolute;
top: 18px;
right: 15px;
width: 50px;
height: 50px;
border-radius: 50%;
background: transparent;
}
#nav ul,
li {
margin: 0;
padding: 0;
}
#nav ul {
padding: 25px;
position: absolute;
}
#nav li {
list-style: none;
margin-bottom: 20px;
/* display: flex; */
/* align-items: center; */
cursor: pointer;
text-align: center;
line-height: 1.1;
}
#nav li a {
font-family: "Dosis";
text-decoration: none;
font-weight: 200 !important;
font-size: 28px;
color: #f2f2f2;
text-transform: uppercase;
letter-spacing: 4px;
transition: color .2s;
}
#nav li a:hover {
color: #68c072;
}
.time {
color: white;
height: 100px;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.cityTitles {
min-height: 207px;
display: flex;
align-items: center;
justify-content: center;
}
.centered-text {
position: relative;
z-index: 99;
width: 100%;
height: 100%;
}
h2.hero-heading {
/* visibility: hidden; */
padding-bottom: 0.5em;
text-align: center;
font-size: 3em;
line-height: 0.9em;
letter-spacing: 7.5px;
color: #fff;
/* font-weight: 700; */
text-transform: uppercase;
text-shadow: 0px 0px 1px rgba(13, 13, 13, 0.9), 0px 2px 4px #0d0d0d;
font-weight: 700;
/* filter: text-shadow(0px 0px 1px rgba(13, 13, 13, 0.9)), text-shadow(0px 4px 8px #0D0D0D); */
}
h2.hero-heading span {
font-size: 0.5em;
}
hr {
content: "";
background: #cdb083;
/* bottom: 0%;
left: 25%; */
width: 100%;
height: 2px;
/* visibility: hidden; */
}
p.subheading {
text-align: center;
width: 100%;
padding: 1.5em 0;
font-family: "Proza Libre", sans-serif;
font-weight: 800;
/* color: rgb(238,232,170); */
color: #fff;
text-transform: uppercase;
letter-spacing: 10px;
font-size: 1em;
text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.9), 0px 2px 4px #000000;
/* visibility: hidden; */
}
.text-container {
/* visibility: hidden; */
/* background-color: rgba(10, 10, 10, 0.3); */
padding: 1.5rem;
}
@media (min-aspect-ratio: 16/9) {
.video-foreground { height: 400%; top: -150%; }
}
@media (max-aspect-ratio: 16/9) {
.video-foreground { width: 400%; left: -150%; }
}
@media only screen and (max-width: 480px) {
.cityTitles {
min-height: 130px;
}
} | 0.506103 | 0.068569 |
.squareBox {
position: relative; }
.squareBox:before {
display: block;
content: '';
padding-top: 100%; }
.content {
position: absolute;
top: 0;
width: 100%;
height: 100%;
box-sizing: border-box;
box-shadow: 0px 0px 0.8rem 0.05rem rgba(0, 0, 0, 0.4); }
.imsf-b {
overflow: hidden;
background: transparent; }
.imsf-b:before {
content: "";
display: block;
width: 100%;
height: 100%;
background: #FF0000;
transform-origin: 0 100%;
transform: skewX(45deg); }
.imsf-b:after {
content: "";
display: block;
width: 100%;
height: 100%;
background: #FF0000;
transform-origin: 0 100%;
transform: skewX(-45deg) translatex(0%); }
.imsf-c {
background-image: linear-gradient(#0000FF 0%, #0000FF 20%, #FFFFFF 20%, #FFFFFF 40%, #FF0000 40%, #FF0000 60%, #FFFFFF 60%, #FFFFFF 80%, #0000FF 80%); }
.imsf-d {
background-image: linear-gradient(#FFFF00 0%, #FFFF00 25%, #0000FF 25%, #0000FF 50%, #0000FF 75%, #FFFF00 75%); }
.imsf-e {
background-image: linear-gradient(#0000FF 50%, #FF0000 50%, #FF0000); }
.imsf-f {
background-color: #FF0000;
background-image: linear-gradient(to left bottom, #FFFFFF 25%, transparent 25%, transparent 75%, #FFFFFF 75%), linear-gradient(to right bottom, #FFFFFF 25%, transparent 25%, transparent 75%, #FFFFFF 75%); }
.imsf-g {
background-image: linear-gradient(90deg, #FFFF00 0%, #FFFF00 16.6%, #0000FF 16.6%, #0000FF 33.3%, #FFFF00 33.3%, #FFFF00 50%, #0000FF 50%, #0000FF 66.6%, #FFFF00 66.6%, #FFFF00 66.6%, #FFFF00 83.3%, #0000FF 83.3%); }
.imsf-h {
background-image: linear-gradient(90deg, #FFFFFF 50%, #FF0000 50%, #FF0000); }
.imsf-i {
background-image: radial-gradient(farthest-side circle at center center, #000000 0%, #000000 40%, #FFFF00 40%); }
.imsf-j {
background-image: linear-gradient(#0000FF 0%, #0000FF 33.3%, #FFFFFF 33.3%, #FFFFFF 66.6%, #0000FF 66.6%); }
.imsf-k {
background-image: linear-gradient(90deg, #FFFF00 50%, #0000FF 50%, #0000FF); }
.imsf-l {
background-color: #FFFF00;
background-image: linear-gradient(transparent 50%, #000000 50%, #000000);
overflow: hidden; }
.imsf-l:after {
display: block;
content: '';
width: 100%;
height: 100%;
transform: scaley(2) translatex(50%);
background-image: linear-gradient(#FFFF00 50%, #000000 50%, #000000);
background-size: 50%; }
.imsf-m {
background-color: #0000FF;
background-image: linear-gradient(to left bottom, transparent 45%, #FFFFFF 45%, #FFFFFF 55%, transparent 55%), linear-gradient(to right bottom, transparent 45%, #FFFFFF 45%, #FFFFFF 55%, transparent 55%); }
.imsf-n {
background-color: #0000FF;
background-image: repeating-linear-gradient(to left bottom, #FFFFFF 25%, transparent 25%, transparent 75%, #FFFFFF 75%, #FFFFFF), repeating-linear-gradient(to left bottom, #FFFFFF 25%, transparent 25%, transparent 75%, #FFFFFF 75%, #FFFFFF);
background-position: 0 0, 50% 50%;
background-size: 50% 50%; }
.imsf-o {
background-image: linear-gradient(to left bottom, #FF0000 50%, #FFFF00 50%, #FFFF00); }
.imsf-q {
background-color: #FFFF00; }
.imsf-r {
background-color: #FF0000;
background-image: linear-gradient(transparent 40%, #FFFF00 40%, #FFFF00 60%, transparent 60%);
overflow: hidden; }
.imsf-r:after {
display: block;
content: '';
width: 100%;
height: 100%;
transform: rotate(90deg) scalex(2);
background-image: linear-gradient(transparent 40%, #FFFF00 40%, #FFFF00 60%, transparent 60%); }
.imsf-t {
background-image: linear-gradient(90deg, #FF0000 0%, #FF0000 33.3%, #FFFFFF 33.3%, #FFFFFF 66.6%, #0000FF 66.6%); }
.imsf-u {
background-color: #FF0000;
background-image: linear-gradient(transparent 50%, #FFFFFF 50%, #FFFFFF);
overflow: hidden; }
.imsf-u:after {
display: block;
content: '';
width: 100%;
height: 100%;
transform: scaley(2) translatex(50%);
background-image: linear-gradient(#FF0000 50%, #FFFFFF 50%, #FFFFFF);
background-size: 50%; }
.imsf-v {
background-color: #FFFFFF;
background-image: linear-gradient(to left bottom, transparent 45%, #FF0000 45%, #FF0000 55%, transparent 55%), linear-gradient(to right bottom, transparent 45%, #FF0000 45%, #FF0000 55%, transparent 55%); }
.imsf-x {
background-color: #FFFFFF;
background-image: linear-gradient(transparent 40%, #0000FF 40%, #0000FF 60%, transparent 60%);
overflow: hidden; }
.imsf-x:after {
display: block;
content: '';
width: 100%;
height: 100%;
transform: rotate(90deg) scalex(2);
background-image: linear-gradient(transparent 40%, #0000FF 40%, #0000FF 60%, transparent 60%); }
.imsf-y {
background-image: linear-gradient(135deg, #FFFF00 0%, #FFFF00 10%, #FF0000 10%, #FF0000 20%, #FFFF00 20%, #FFFF00 30%, #FF0000 30%, #FF0000 40%, #FFFF00 40%, #FFFF00 50%, #FF0000 50%, #FF0000 60%, #FFFF00 60%, #FFFF00 70%, #FF0000 70%, #FF0000 80%, #FFFF00 80%, #FFFF00 90%, #FF0000 90%); } | css/imsf.css | .squareBox {
position: relative; }
.squareBox:before {
display: block;
content: '';
padding-top: 100%; }
.content {
position: absolute;
top: 0;
width: 100%;
height: 100%;
box-sizing: border-box;
box-shadow: 0px 0px 0.8rem 0.05rem rgba(0, 0, 0, 0.4); }
.imsf-b {
overflow: hidden;
background: transparent; }
.imsf-b:before {
content: "";
display: block;
width: 100%;
height: 100%;
background: #FF0000;
transform-origin: 0 100%;
transform: skewX(45deg); }
.imsf-b:after {
content: "";
display: block;
width: 100%;
height: 100%;
background: #FF0000;
transform-origin: 0 100%;
transform: skewX(-45deg) translatex(0%); }
.imsf-c {
background-image: linear-gradient(#0000FF 0%, #0000FF 20%, #FFFFFF 20%, #FFFFFF 40%, #FF0000 40%, #FF0000 60%, #FFFFFF 60%, #FFFFFF 80%, #0000FF 80%); }
.imsf-d {
background-image: linear-gradient(#FFFF00 0%, #FFFF00 25%, #0000FF 25%, #0000FF 50%, #0000FF 75%, #FFFF00 75%); }
.imsf-e {
background-image: linear-gradient(#0000FF 50%, #FF0000 50%, #FF0000); }
.imsf-f {
background-color: #FF0000;
background-image: linear-gradient(to left bottom, #FFFFFF 25%, transparent 25%, transparent 75%, #FFFFFF 75%), linear-gradient(to right bottom, #FFFFFF 25%, transparent 25%, transparent 75%, #FFFFFF 75%); }
.imsf-g {
background-image: linear-gradient(90deg, #FFFF00 0%, #FFFF00 16.6%, #0000FF 16.6%, #0000FF 33.3%, #FFFF00 33.3%, #FFFF00 50%, #0000FF 50%, #0000FF 66.6%, #FFFF00 66.6%, #FFFF00 66.6%, #FFFF00 83.3%, #0000FF 83.3%); }
.imsf-h {
background-image: linear-gradient(90deg, #FFFFFF 50%, #FF0000 50%, #FF0000); }
.imsf-i {
background-image: radial-gradient(farthest-side circle at center center, #000000 0%, #000000 40%, #FFFF00 40%); }
.imsf-j {
background-image: linear-gradient(#0000FF 0%, #0000FF 33.3%, #FFFFFF 33.3%, #FFFFFF 66.6%, #0000FF 66.6%); }
.imsf-k {
background-image: linear-gradient(90deg, #FFFF00 50%, #0000FF 50%, #0000FF); }
.imsf-l {
background-color: #FFFF00;
background-image: linear-gradient(transparent 50%, #000000 50%, #000000);
overflow: hidden; }
.imsf-l:after {
display: block;
content: '';
width: 100%;
height: 100%;
transform: scaley(2) translatex(50%);
background-image: linear-gradient(#FFFF00 50%, #000000 50%, #000000);
background-size: 50%; }
.imsf-m {
background-color: #0000FF;
background-image: linear-gradient(to left bottom, transparent 45%, #FFFFFF 45%, #FFFFFF 55%, transparent 55%), linear-gradient(to right bottom, transparent 45%, #FFFFFF 45%, #FFFFFF 55%, transparent 55%); }
.imsf-n {
background-color: #0000FF;
background-image: repeating-linear-gradient(to left bottom, #FFFFFF 25%, transparent 25%, transparent 75%, #FFFFFF 75%, #FFFFFF), repeating-linear-gradient(to left bottom, #FFFFFF 25%, transparent 25%, transparent 75%, #FFFFFF 75%, #FFFFFF);
background-position: 0 0, 50% 50%;
background-size: 50% 50%; }
.imsf-o {
background-image: linear-gradient(to left bottom, #FF0000 50%, #FFFF00 50%, #FFFF00); }
.imsf-q {
background-color: #FFFF00; }
.imsf-r {
background-color: #FF0000;
background-image: linear-gradient(transparent 40%, #FFFF00 40%, #FFFF00 60%, transparent 60%);
overflow: hidden; }
.imsf-r:after {
display: block;
content: '';
width: 100%;
height: 100%;
transform: rotate(90deg) scalex(2);
background-image: linear-gradient(transparent 40%, #FFFF00 40%, #FFFF00 60%, transparent 60%); }
.imsf-t {
background-image: linear-gradient(90deg, #FF0000 0%, #FF0000 33.3%, #FFFFFF 33.3%, #FFFFFF 66.6%, #0000FF 66.6%); }
.imsf-u {
background-color: #FF0000;
background-image: linear-gradient(transparent 50%, #FFFFFF 50%, #FFFFFF);
overflow: hidden; }
.imsf-u:after {
display: block;
content: '';
width: 100%;
height: 100%;
transform: scaley(2) translatex(50%);
background-image: linear-gradient(#FF0000 50%, #FFFFFF 50%, #FFFFFF);
background-size: 50%; }
.imsf-v {
background-color: #FFFFFF;
background-image: linear-gradient(to left bottom, transparent 45%, #FF0000 45%, #FF0000 55%, transparent 55%), linear-gradient(to right bottom, transparent 45%, #FF0000 45%, #FF0000 55%, transparent 55%); }
.imsf-x {
background-color: #FFFFFF;
background-image: linear-gradient(transparent 40%, #0000FF 40%, #0000FF 60%, transparent 60%);
overflow: hidden; }
.imsf-x:after {
display: block;
content: '';
width: 100%;
height: 100%;
transform: rotate(90deg) scalex(2);
background-image: linear-gradient(transparent 40%, #0000FF 40%, #0000FF 60%, transparent 60%); }
.imsf-y {
background-image: linear-gradient(135deg, #FFFF00 0%, #FFFF00 10%, #FF0000 10%, #FF0000 20%, #FFFF00 20%, #FFFF00 30%, #FF0000 30%, #FF0000 40%, #FFFF00 40%, #FFFF00 50%, #FF0000 50%, #FF0000 60%, #FFFF00 60%, #FFFF00 70%, #FF0000 70%, #FF0000 80%, #FFFF00 80%, #FFFF00 90%, #FF0000 90%); } | 0.514156 | 0.07971 |
.list-view {
comm_colour: #7d30ce;
aide_colour: #ec9b63;
}
.list-view > .virtual-flow > .clipped-container > .sheet > .list-cell:filled {
-fx-border-color: black;
-fx-border-insets: 1px, 0px, 1px, 0px;
-fx-background-insets: 1px, 0px, 1px, 0px;
}
.list-view > .virtual-flow > .clipped-container > .sheet > #comm-visible.list-cell,
.list-view > .virtual-flow > .clipped-container > .sheet > #comm-filtered.list-cell,
.list-view > .virtual-flow > .clipped-container > .sheet > #aide-visible.list-cell,
.list-view > .virtual-flow > .clipped-container > .sheet > #aide-filtered.list-cell {
-fx-text-fill: white;
}
.list-view > .virtual-flow > .clipped-container > .sheet > #comm-visible.list-cell {
-fx-background-color: radial-gradient(center 50% 50%, radius 80%, derive(comm_colour,15%), derive(comm_colour,-15%));
}
.list-view > .virtual-flow > .clipped-container > .sheet > #comm-visible.list-cell:hover {
-fx-background-color: derive(comm_colour, 50%);
}
.list-view > .virtual-flow > .clipped-container > .sheet > #comm-filtered.list-cell {
-fx-background-color: derive(comm_colour, 80%);
}
.list-view > .virtual-flow > .clipped-container > .sheet > #aide-visible.list-cell {
-fx-background-color: radial-gradient(center 50% 50%, radius 80%, derive(aide_colour,10%), derive(aide_colour,-20%));;
}
.list-view > .virtual-flow > .clipped-container > .sheet > #aide-visible.list-cell:hover {
-fx-background-color: derive(aide_colour, 30%);
}
.list-view > .virtual-flow > .clipped-container > .sheet > #aide-filtered.list-cell {
-fx-background-color: derive(aide_colour, 60%);
}
.list-view > .virtual-flow > .clipped-container > .sheet > #player-visible.list-cell {
-fx-background-color: white;
-fx-text-fill: black;
}
.list-view > .virtual-flow > .clipped-container > .sheet > #player-visible.list-cell:hover {
-fx-background-color: rgb(230,230,230);
}
.list-view > .virtual-flow > .clipped-container > .sheet > #player-filtered.list-cell {
-fx-background-color: rgba(255,255,255,0.5);
-fx-text-fill: rgba(0, 0, 0, 0.5);
}
.button {
-fx-background-color: transparent;
}
.button:hover, .toggle-button:hover{
-fx-border-color: black;
} | assets/style/list-view-custom.css | .list-view {
comm_colour: #7d30ce;
aide_colour: #ec9b63;
}
.list-view > .virtual-flow > .clipped-container > .sheet > .list-cell:filled {
-fx-border-color: black;
-fx-border-insets: 1px, 0px, 1px, 0px;
-fx-background-insets: 1px, 0px, 1px, 0px;
}
.list-view > .virtual-flow > .clipped-container > .sheet > #comm-visible.list-cell,
.list-view > .virtual-flow > .clipped-container > .sheet > #comm-filtered.list-cell,
.list-view > .virtual-flow > .clipped-container > .sheet > #aide-visible.list-cell,
.list-view > .virtual-flow > .clipped-container > .sheet > #aide-filtered.list-cell {
-fx-text-fill: white;
}
.list-view > .virtual-flow > .clipped-container > .sheet > #comm-visible.list-cell {
-fx-background-color: radial-gradient(center 50% 50%, radius 80%, derive(comm_colour,15%), derive(comm_colour,-15%));
}
.list-view > .virtual-flow > .clipped-container > .sheet > #comm-visible.list-cell:hover {
-fx-background-color: derive(comm_colour, 50%);
}
.list-view > .virtual-flow > .clipped-container > .sheet > #comm-filtered.list-cell {
-fx-background-color: derive(comm_colour, 80%);
}
.list-view > .virtual-flow > .clipped-container > .sheet > #aide-visible.list-cell {
-fx-background-color: radial-gradient(center 50% 50%, radius 80%, derive(aide_colour,10%), derive(aide_colour,-20%));;
}
.list-view > .virtual-flow > .clipped-container > .sheet > #aide-visible.list-cell:hover {
-fx-background-color: derive(aide_colour, 30%);
}
.list-view > .virtual-flow > .clipped-container > .sheet > #aide-filtered.list-cell {
-fx-background-color: derive(aide_colour, 60%);
}
.list-view > .virtual-flow > .clipped-container > .sheet > #player-visible.list-cell {
-fx-background-color: white;
-fx-text-fill: black;
}
.list-view > .virtual-flow > .clipped-container > .sheet > #player-visible.list-cell:hover {
-fx-background-color: rgb(230,230,230);
}
.list-view > .virtual-flow > .clipped-container > .sheet > #player-filtered.list-cell {
-fx-background-color: rgba(255,255,255,0.5);
-fx-text-fill: rgba(0, 0, 0, 0.5);
}
.button {
-fx-background-color: transparent;
}
.button:hover, .toggle-button:hover{
-fx-border-color: black;
} | 0.550124 | 0.1015 |
.fs8 {
font-size: 8px;
}
.fs10 {
font-size: 10px;
}
.fs12 {
font-size: 12px;
}
.fs14 {
font-size: 14px;
}
.fs16 {
font-size: 16px;
}
.fs18 {
font-size: 18px;
}
.fs20 {
font-size: 20px;
}
.fs22 {
font-size: 22px;
}
.fs24 {
font-size: 24px;
}
.fs26 {
font-size: 26px;
}
.fs28 {
font-size: 28px;
}
.fs30 {
font-size: 30px;
}
.fs32 {
font-size: 32px;
}
.fs34 {
font-size: 34px;
}
.fs36 {
font-size: 36px;
}
.fs38 {
font-size: 38px;
}
.fs40 {
font-size: 40px;
}
.fs42 {
font-size: 42px;
}
.fs44 {
font-size: 44px;
}
.fs46 {
font-size: 46px;
}
.fs48 {
font-size: 48px;
}
.fs50 {
font-size: 50px;
}
.fs52 {
font-size: 52px;
}
.fs54 {
font-size: 54px;
}
.fs56 {
font-size: 56px;
}
.fs58 {
font-size: 58px;
}
.fs60 {
font-size: 60px;
}
.fs62 {
font-size: 62px;
}
.fs64 {
font-size: 64px;
}
.fs66 {
font-size: 66px;
}
.fs68 {
font-size: 68px;
}
.fs70 {
font-size: 70px;
}
.fs72 {
font-size: 72px;
}
.fs74 {
font-size: 74px;
}
.fs76 {
font-size: 76px;
}
.fs78 {
font-size: 78px;
}
.fs80 {
font-size: 80px;
}
.fw900 {
font-weight: 900;
}
.fw800 {
font-weight: 800;
}
.fw700 {
font-weight: 700;
}
.fw600 {
font-weight: 600;
}
.fw500 {
font-weight: 500;
}
.fw400 {
font-weight: 400;
}
.fw300 {
font-weight: 300;
}
.fw200 {
font-weight: 200;
}
.fw100 {
font-weight: 100;
}
.fwbold {
font-weight: bold;
}
.fwbolder {
font-weight: bolder;
}
.fwnormal {
font-weight: normal;
}
@media (min-width: 768px) {
.fs8md {
font-size: 8px;
}
.fs10md {
font-size: 10px;
}
.fs12md {
font-size: 12px;
}
.fs14md {
font-size: 14px;
}
.fs16md {
font-size: 16px;
}
.fs18md {
font-size: 18px;
}
.fs20md {
font-size: 20px;
}
.fs22md {
font-size: 22px;
}
.fs24md {
font-size: 24px;
}
.fs26md {
font-size: 26px;
}
.fs28md {
font-size: 28px;
}
.fs30md {
font-size: 30px;
}
.fs32md {
font-size: 32px;
}
.fs34md {
font-size: 34px;
}
.fs36md {
font-size: 36px;
}
.fs38md {
font-size: 38px;
}
.fs40md {
font-size: 40px;
}
.fs42md {
font-size: 42px;
}
.fs44md {
font-size: 44px;
}
.fs46md {
font-size: 46px;
}
.fs48md {
font-size: 48px;
}
.fs50md {
font-size: 50px;
}
.fs52md {
font-size: 52px;
}
.fs54md {
font-size: 54px;
}
.fs56md {
font-size: 56px;
}
.fs58md {
font-size: 58px;
}
.fs60md {
font-size: 60px;
}
.fs62md {
font-size: 62px;
}
.fs64md {
font-size: 64px;
}
.fs66md {
font-size: 66px;
}
.fs68md {
font-size: 68px;
}
.fs70md {
font-size: 70px;
}
.fs72md {
font-size: 72px;
}
.fs74md {
font-size: 74px;
}
.fs76md {
font-size: 76px;
}
.fs78md {
font-size: 78px;
}
.fs80md {
font-size: 80px;
}
.fw900md {
font-weight: 900;
}
.fw800md {
font-weight: 800;
}
.fw700md {
font-weight: 700;
}
.fw600md {
font-weight: 600;
}
.fw500md {
font-weight: 500;
}
.fw400md {
font-weight: 400;
}
.fw300md {
font-weight: 300;
}
.fw200md {
font-weight: 200;
}
.fw100md {
font-weight: 100;
}
.fwboldmd {
font-weight: bold;
}
.fwboldermd {
font-weight: bolder;
}
.fwnormalmd {
font-weight: normal;
}
}
@media (max-height:650px){
.fs8 {
font-size: 6px;
}
.fs10 {
font-size: 8px;
}
.fs12 {
font-size: 9.5px;
}
.fs14 {
font-size: 11px;
}
.fs16 {
font-size: 13px;
}
.fs18 {
font-size: 15px;
}
.fs20 {
font-size: 17px;
}
.fs22 {
font-size: 19px;
}
.fs24 {
font-size: 21px;
}
.fs26 {
font-size: 23px;
}
.fs28 {
font-size: 25px;
}
.fs30 {
font-size: 27px;
}
.fs32 {
font-size: 29px;
}
.fs34 {
font-size: 31px;
}
.fs36 {
font-size: 33px;
}
.fs38 {
font-size: 35px;
}
.fs40 {
font-size: 37px;
}
.fs42 {
font-size: 39px;
}
.fs44 {
font-size: 41px;
}
.fs46 {
font-size: 43px;
}
.fs48 {
font-size: 45px;
}
.fs50 {
font-size: 47px;
}
.fs52 {
font-size: 49px;
}
.fs54 {
font-size: 51px;
}
.fs56 {
font-size: 53px;
}
.fs58 {
font-size: 55px;
}
.fs60 {
font-size: 57px;
}
.fs62 {
font-size: 59px;
}
.fs64 {
font-size: 61px;
}
.fs66 {
font-size: 63px;
}
.fs68 {
font-size: 65px;
}
.fs70 {
font-size: 67px;
}
.fs72 {
font-size: 69px;
}
.fs74 {
font-size: 71px;
}
.fs76 {
font-size: 73px;
}
.fs78 {
font-size: 75px;
}
.fs80 {
font-size: 77px;
}
}
@media (max-height:650px) and (min-width: 769px){
.fs8md {
font-size: 6px;
}
.fs10md {
font-size: 8px;
}
.fs12md {
font-size: 9.5px;
}
.fs14md {
font-size: 11px;
}
.fs16md {
font-size: 13px;
}
.fs18md {
font-size: 15px;
}
.fs20md {
font-size: 17px;
}
.fs22md {
font-size: 19px;
}
.fs24md {
font-size: 21px;
}
.fs26md {
font-size: 23px;
}
.fs28md {
font-size: 25px;
}
.fs30md {
font-size: 27px;
}
.fs32md {
font-size: 29px;
}
.fs34md {
font-size: 31px;
}
.fs36md {
font-size: 33px;
}
.fs38md {
font-size: 35px;
}
.fs40md {
font-size: 37px;
}
.fs42md {
font-size: 39px;
}
.fs44md {
font-size: 41px;
}
.fs46md {
font-size: 43px;
}
.fs48md {
font-size: 45px;
}
.fs50md {
font-size: 47px;
}
.fs52md {
font-size: 49px;
}
.fs54md {
font-size: 51px;
}
.fs56md {
font-size: 53px;
}
.fs58md {
font-size: 55px;
}
.fs60md {
font-size: 57px;
}
.fs62md {
font-size: 59px;
}
.fs64md {
font-size: 61px;
}
.fs66md {
font-size: 63px;
}
.fs68md {
font-size: 65px;
}
.fs70md {
font-size: 67px;
}
.fs72md {
font-size: 69px;
}
.fs74md {
font-size: 71px;
}
.fs76md {
font-size: 73px;
}
.fs78md {
font-size: 75px;
}
.fs80md {
font-size: 77px;
}
} | vet_website/www/static/src/css/font.css | .fs8 {
font-size: 8px;
}
.fs10 {
font-size: 10px;
}
.fs12 {
font-size: 12px;
}
.fs14 {
font-size: 14px;
}
.fs16 {
font-size: 16px;
}
.fs18 {
font-size: 18px;
}
.fs20 {
font-size: 20px;
}
.fs22 {
font-size: 22px;
}
.fs24 {
font-size: 24px;
}
.fs26 {
font-size: 26px;
}
.fs28 {
font-size: 28px;
}
.fs30 {
font-size: 30px;
}
.fs32 {
font-size: 32px;
}
.fs34 {
font-size: 34px;
}
.fs36 {
font-size: 36px;
}
.fs38 {
font-size: 38px;
}
.fs40 {
font-size: 40px;
}
.fs42 {
font-size: 42px;
}
.fs44 {
font-size: 44px;
}
.fs46 {
font-size: 46px;
}
.fs48 {
font-size: 48px;
}
.fs50 {
font-size: 50px;
}
.fs52 {
font-size: 52px;
}
.fs54 {
font-size: 54px;
}
.fs56 {
font-size: 56px;
}
.fs58 {
font-size: 58px;
}
.fs60 {
font-size: 60px;
}
.fs62 {
font-size: 62px;
}
.fs64 {
font-size: 64px;
}
.fs66 {
font-size: 66px;
}
.fs68 {
font-size: 68px;
}
.fs70 {
font-size: 70px;
}
.fs72 {
font-size: 72px;
}
.fs74 {
font-size: 74px;
}
.fs76 {
font-size: 76px;
}
.fs78 {
font-size: 78px;
}
.fs80 {
font-size: 80px;
}
.fw900 {
font-weight: 900;
}
.fw800 {
font-weight: 800;
}
.fw700 {
font-weight: 700;
}
.fw600 {
font-weight: 600;
}
.fw500 {
font-weight: 500;
}
.fw400 {
font-weight: 400;
}
.fw300 {
font-weight: 300;
}
.fw200 {
font-weight: 200;
}
.fw100 {
font-weight: 100;
}
.fwbold {
font-weight: bold;
}
.fwbolder {
font-weight: bolder;
}
.fwnormal {
font-weight: normal;
}
@media (min-width: 768px) {
.fs8md {
font-size: 8px;
}
.fs10md {
font-size: 10px;
}
.fs12md {
font-size: 12px;
}
.fs14md {
font-size: 14px;
}
.fs16md {
font-size: 16px;
}
.fs18md {
font-size: 18px;
}
.fs20md {
font-size: 20px;
}
.fs22md {
font-size: 22px;
}
.fs24md {
font-size: 24px;
}
.fs26md {
font-size: 26px;
}
.fs28md {
font-size: 28px;
}
.fs30md {
font-size: 30px;
}
.fs32md {
font-size: 32px;
}
.fs34md {
font-size: 34px;
}
.fs36md {
font-size: 36px;
}
.fs38md {
font-size: 38px;
}
.fs40md {
font-size: 40px;
}
.fs42md {
font-size: 42px;
}
.fs44md {
font-size: 44px;
}
.fs46md {
font-size: 46px;
}
.fs48md {
font-size: 48px;
}
.fs50md {
font-size: 50px;
}
.fs52md {
font-size: 52px;
}
.fs54md {
font-size: 54px;
}
.fs56md {
font-size: 56px;
}
.fs58md {
font-size: 58px;
}
.fs60md {
font-size: 60px;
}
.fs62md {
font-size: 62px;
}
.fs64md {
font-size: 64px;
}
.fs66md {
font-size: 66px;
}
.fs68md {
font-size: 68px;
}
.fs70md {
font-size: 70px;
}
.fs72md {
font-size: 72px;
}
.fs74md {
font-size: 74px;
}
.fs76md {
font-size: 76px;
}
.fs78md {
font-size: 78px;
}
.fs80md {
font-size: 80px;
}
.fw900md {
font-weight: 900;
}
.fw800md {
font-weight: 800;
}
.fw700md {
font-weight: 700;
}
.fw600md {
font-weight: 600;
}
.fw500md {
font-weight: 500;
}
.fw400md {
font-weight: 400;
}
.fw300md {
font-weight: 300;
}
.fw200md {
font-weight: 200;
}
.fw100md {
font-weight: 100;
}
.fwboldmd {
font-weight: bold;
}
.fwboldermd {
font-weight: bolder;
}
.fwnormalmd {
font-weight: normal;
}
}
@media (max-height:650px){
.fs8 {
font-size: 6px;
}
.fs10 {
font-size: 8px;
}
.fs12 {
font-size: 9.5px;
}
.fs14 {
font-size: 11px;
}
.fs16 {
font-size: 13px;
}
.fs18 {
font-size: 15px;
}
.fs20 {
font-size: 17px;
}
.fs22 {
font-size: 19px;
}
.fs24 {
font-size: 21px;
}
.fs26 {
font-size: 23px;
}
.fs28 {
font-size: 25px;
}
.fs30 {
font-size: 27px;
}
.fs32 {
font-size: 29px;
}
.fs34 {
font-size: 31px;
}
.fs36 {
font-size: 33px;
}
.fs38 {
font-size: 35px;
}
.fs40 {
font-size: 37px;
}
.fs42 {
font-size: 39px;
}
.fs44 {
font-size: 41px;
}
.fs46 {
font-size: 43px;
}
.fs48 {
font-size: 45px;
}
.fs50 {
font-size: 47px;
}
.fs52 {
font-size: 49px;
}
.fs54 {
font-size: 51px;
}
.fs56 {
font-size: 53px;
}
.fs58 {
font-size: 55px;
}
.fs60 {
font-size: 57px;
}
.fs62 {
font-size: 59px;
}
.fs64 {
font-size: 61px;
}
.fs66 {
font-size: 63px;
}
.fs68 {
font-size: 65px;
}
.fs70 {
font-size: 67px;
}
.fs72 {
font-size: 69px;
}
.fs74 {
font-size: 71px;
}
.fs76 {
font-size: 73px;
}
.fs78 {
font-size: 75px;
}
.fs80 {
font-size: 77px;
}
}
@media (max-height:650px) and (min-width: 769px){
.fs8md {
font-size: 6px;
}
.fs10md {
font-size: 8px;
}
.fs12md {
font-size: 9.5px;
}
.fs14md {
font-size: 11px;
}
.fs16md {
font-size: 13px;
}
.fs18md {
font-size: 15px;
}
.fs20md {
font-size: 17px;
}
.fs22md {
font-size: 19px;
}
.fs24md {
font-size: 21px;
}
.fs26md {
font-size: 23px;
}
.fs28md {
font-size: 25px;
}
.fs30md {
font-size: 27px;
}
.fs32md {
font-size: 29px;
}
.fs34md {
font-size: 31px;
}
.fs36md {
font-size: 33px;
}
.fs38md {
font-size: 35px;
}
.fs40md {
font-size: 37px;
}
.fs42md {
font-size: 39px;
}
.fs44md {
font-size: 41px;
}
.fs46md {
font-size: 43px;
}
.fs48md {
font-size: 45px;
}
.fs50md {
font-size: 47px;
}
.fs52md {
font-size: 49px;
}
.fs54md {
font-size: 51px;
}
.fs56md {
font-size: 53px;
}
.fs58md {
font-size: 55px;
}
.fs60md {
font-size: 57px;
}
.fs62md {
font-size: 59px;
}
.fs64md {
font-size: 61px;
}
.fs66md {
font-size: 63px;
}
.fs68md {
font-size: 65px;
}
.fs70md {
font-size: 67px;
}
.fs72md {
font-size: 69px;
}
.fs74md {
font-size: 71px;
}
.fs76md {
font-size: 73px;
}
.fs78md {
font-size: 75px;
}
.fs80md {
font-size: 77px;
}
} | 0.4231 | 0.314195 |
.panel-group.resume .resume-item {
position: relative;
margin-bottom: 40px;
}
@media (min-width: 568px) {
.panel-group.resume .resume-item {
margin-bottom: 20px;
}
}
@media (min-width: 768px) {
.panel-group.resume .resume-item:before {
position: absolute;
content: '';
width: 1px;
height: calc(100% + 20px);
top: 0;
left: 170px;
border-left: 1px dashed #484848;
}
}
.panel-group.resume .resume-item:last-child {
margin-bottom: 0px;
}
.panel-group.resume .resume-item:last-child:before {
display: none;
}
.panel-group.resume .resume-item .resume-year {
display: block;
position: relative;
width: 120px;
height: 40px;
margin-bottom: -20px;
margin-right: auto;
margin-left: auto;
line-height: 40px;
background-color: #c80a48;
text-align: center;
font-weight: 700;
text-transform: uppercase;
border-radius: 4px;
}
@media (min-width: 568px) {
.panel-group.resume .resume-item .resume-year {
position: absolute;
top: 0;
left: 0;
margin: 0;
}
}
.panel-group.resume .resume-item .resume-btn {
position: absolute;
z-index: 5;
top: 0;
left: 150px;
width: 40px;
height: 40px;
background-color: #2e2e2e;
border-radius: 4px;
}
@media (max-width: 767px) {
.panel-group.resume .resume-item .resume-btn {
display: none;
}
}
.panel-group.resume .resume-item .resume-btn > a {
display: block;
position: absolute;
z-index: 10;
top: 0;
left: 0;
width: 40px;
height: 40px;
}
.panel-group.resume .resume-item .resume-btn > a:before {
display: block;
position: absolute;
z-index: 15;
content: '-';
top: 0;
left: 0;
width: 40px;
height: 40px;
line-height: 38px;
color: #ffffff;
font-size: 30px;
font-weight: 700;
text-align: center;
}
.panel-group.resume .resume-item .resume-btn > a.collapsed:before {
content: '+';
}
.panel-group.resume .resume-item .panel {
padding: 10px;
width: 100%;
background: transparent;
border: 1px solid #6e6e6e;
border-radius: 0px;
}
@media (min-width: 568px) {
.panel-group.resume .resume-item .panel {
width: calc(100% - 140px);
margin-left: 140px;
}
}
@media (min-width: 768px) {
.panel-group.resume .resume-item .panel {
width: calc(100% - 210px);
margin-left: 210px;
}
}
.panel-group.resume .resume-item .panel .panel-heading {
position: relative;
}
.panel-group.resume .resume-item .panel .panel-heading .panel-title {
text-transform: uppercase;
}
@media (max-width: 567px) {
.panel-group.resume .resume-item .panel .panel-heading .panel-title {
padding-top: 20px;
}
}
.panel-group.resume .resume-item .panel .panel-collapse .panel-body {
padding-top: 5px;
border-top: none;
}
.panel-group.resume .resume-item .panel .panel-collapse .panel-body p {
margin-bottom: 0px;
}
/*Auto Type */
.typed-cursor{
opacity: 1;
-webkit-animation: blink 0.7s infinite;
-moz-animation: blink 0.7s infinite;
animation: blink 0.7s infinite;
display: none;
}
@keyframes blink{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}
@-webkit-keyframes blink{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}
@-moz-keyframes blink{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}
/* custom classes */
.left {
text-align: left;
}
blockquote {
font-family: Georgia, serif;
font-size: 20px;
font-style: italic;
width: 500px;
margin: 0.25em 0;
padding: 0.35em 40px;
line-height: 1.45;
position: relative;
color: white;
}
blockquote:before {
display: block;
padding-left: 10px;
content: "\201C";
font-size: 80px;
position: absolute;
left: -20px;
top: -20px;
color: #7a7a7a;
}
blockquote cite {
color: #999999;
font-size: 14px;
display: block;
margin-top: 5px;
}
blockquote cite:before {
content: "\2014 \2009";
}
.font-medium {
font-size: medium;
} | css/main.css | .panel-group.resume .resume-item {
position: relative;
margin-bottom: 40px;
}
@media (min-width: 568px) {
.panel-group.resume .resume-item {
margin-bottom: 20px;
}
}
@media (min-width: 768px) {
.panel-group.resume .resume-item:before {
position: absolute;
content: '';
width: 1px;
height: calc(100% + 20px);
top: 0;
left: 170px;
border-left: 1px dashed #484848;
}
}
.panel-group.resume .resume-item:last-child {
margin-bottom: 0px;
}
.panel-group.resume .resume-item:last-child:before {
display: none;
}
.panel-group.resume .resume-item .resume-year {
display: block;
position: relative;
width: 120px;
height: 40px;
margin-bottom: -20px;
margin-right: auto;
margin-left: auto;
line-height: 40px;
background-color: #c80a48;
text-align: center;
font-weight: 700;
text-transform: uppercase;
border-radius: 4px;
}
@media (min-width: 568px) {
.panel-group.resume .resume-item .resume-year {
position: absolute;
top: 0;
left: 0;
margin: 0;
}
}
.panel-group.resume .resume-item .resume-btn {
position: absolute;
z-index: 5;
top: 0;
left: 150px;
width: 40px;
height: 40px;
background-color: #2e2e2e;
border-radius: 4px;
}
@media (max-width: 767px) {
.panel-group.resume .resume-item .resume-btn {
display: none;
}
}
.panel-group.resume .resume-item .resume-btn > a {
display: block;
position: absolute;
z-index: 10;
top: 0;
left: 0;
width: 40px;
height: 40px;
}
.panel-group.resume .resume-item .resume-btn > a:before {
display: block;
position: absolute;
z-index: 15;
content: '-';
top: 0;
left: 0;
width: 40px;
height: 40px;
line-height: 38px;
color: #ffffff;
font-size: 30px;
font-weight: 700;
text-align: center;
}
.panel-group.resume .resume-item .resume-btn > a.collapsed:before {
content: '+';
}
.panel-group.resume .resume-item .panel {
padding: 10px;
width: 100%;
background: transparent;
border: 1px solid #6e6e6e;
border-radius: 0px;
}
@media (min-width: 568px) {
.panel-group.resume .resume-item .panel {
width: calc(100% - 140px);
margin-left: 140px;
}
}
@media (min-width: 768px) {
.panel-group.resume .resume-item .panel {
width: calc(100% - 210px);
margin-left: 210px;
}
}
.panel-group.resume .resume-item .panel .panel-heading {
position: relative;
}
.panel-group.resume .resume-item .panel .panel-heading .panel-title {
text-transform: uppercase;
}
@media (max-width: 567px) {
.panel-group.resume .resume-item .panel .panel-heading .panel-title {
padding-top: 20px;
}
}
.panel-group.resume .resume-item .panel .panel-collapse .panel-body {
padding-top: 5px;
border-top: none;
}
.panel-group.resume .resume-item .panel .panel-collapse .panel-body p {
margin-bottom: 0px;
}
/*Auto Type */
.typed-cursor{
opacity: 1;
-webkit-animation: blink 0.7s infinite;
-moz-animation: blink 0.7s infinite;
animation: blink 0.7s infinite;
display: none;
}
@keyframes blink{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}
@-webkit-keyframes blink{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}
@-moz-keyframes blink{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}
/* custom classes */
.left {
text-align: left;
}
blockquote {
font-family: Georgia, serif;
font-size: 20px;
font-style: italic;
width: 500px;
margin: 0.25em 0;
padding: 0.35em 40px;
line-height: 1.45;
position: relative;
color: white;
}
blockquote:before {
display: block;
padding-left: 10px;
content: "\201C";
font-size: 80px;
position: absolute;
left: -20px;
top: -20px;
color: #7a7a7a;
}
blockquote cite {
color: #999999;
font-size: 14px;
display: block;
margin-top: 5px;
}
blockquote cite:before {
content: "\2014 \2009";
}
.font-medium {
font-size: medium;
} | 0.524882 | 0.077832 |
.p_l_10 {
padding-left: 10px;
}
.p_r_10 {
padding-right: 10px;
}
#res {
background-image: url("../img/bg/92eab8cdecda200af38397948a2e9ca.png");
background-size: cover;
background-repeat: no-repeat;
/*height: 500px;*/
border: none;
}
#res .logo_register {
padding: 60px 0 100px 0;
}
#res .res_box {
background: #FFFFFF;
border: 1px solid #F6F9FC;
box-shadow: 0 4px 14px 2px rgba(0, 0, 0, 0.06);
border-radius: 8px;
margin-top: 40px;
}
#res .res_box h3 {
font-family: PingFangSC-Medium;
font-size: 20px;
color: rgba(0, 0, 0, 0.65);
letter-spacing: 1.11px;
font-weight: bold;
padding: 50px 0;
}
form#register-form .controls {
border: 1px solid #E1E4E8;
border-radius: 4px;
height: 48px;
}
form#register-form .controls input {
width: 70%;
float: right;
border: none;
text-align: right;
max-height: 46px;
margin-top: 3px;
font-size: 14px;
color: rgba(0, 0, 0, 0.65);
letter-spacing: 0;
/*margin-bottom:0px;*/
/*border: 1px solid #E1E4E8;*/
}
form#register-form .label-left {
width: 30%;
display: inline-block;
height: 48px;
line-height: 48px;
padding-left: 10px;
}
form#register-form .form-group {
margin-bottom: 20px !important;
}
form#register-form .get-code {
font-family: PingFangSC-Regular;
font-size: 14px;
color: rgba(0, 0, 0, 0.85);
letter-spacing: 0;
text-align: right;
float: right;
padding-right: 10px
}
form#register-form .tagers {
width: 1px;
height: 11px;
border: 1px solid rgba(0, 0, 0, 0.85);;
position: absolute;
top: 40%;
right: 24%;
}
form#register-form .down-ico {
display: inline-block;
height: 48px;
line-height: 48px;
padding-right: 10px;
}
form#register-form .down-ico:hover,form#register-form .yuchan_sel > p:hover,form#register-form .get-code:hover {
cursor: pointer;
color: rgb(3, 204, 255);
}
form#register-form .down-ico+ul{
}
form#register-form .yuchan_sel {
z-index: 999;
position: absolute;
/*margin: 0 0 0 79px;*/
right: 0;
padding-left: 0;
border-top: none;
background-color: #fff;
min-width: 100%;
border: 1px solid #E1E4E8;
border-top: none;
}
form#register-form .yuchan_sel > p {
padding: 10px 10px 10px 0;
text-align: right;
padding-right: 38px;
font-weight: bold;
width: 100%;
}
form#register-form .city-picker-span{
max-width: 70%;
float: right;
}
form#register-form .city-picker-dropdown{
min-width: 100%;
border-bottom:none;
/*float: right;*/
}
form#register-form .city-picker-span{
border-bottom:none;
height: 46px !important;
line-height: 46px !important;
text-align: right;
padding-right: 30px;
}
form#register-form .n-right .msg-wrap{
/*margin-top: 10px !important;*/
}
form#register-form button[type='submit']:hover{
border: none !important;
}
form#register-form button[type='submit']:focus{
border: none !important;
}
/*
#res .res_box ul li {
background: rgba(255, 255, 255, 0.00);
border: 1px solid #E1E4E8;
border-radius: 4px;
height: 48px;
line-height: 48px;
margin-bottom: 20px;
}
#res .res_box ul li span.res_form_note {
display: inline-block;
width: 80%;
font-family: PingFangSC-Medium;
font-size: 14px;
color: rgba(0, 0, 0, 0.85);
letter-spacing: 0;
text-align: right;
}
#res .res_box ul li span:nth-child(1):not(.res_form_note) {
min-width: 70%;
}
#res .res_box ul li span.res_form_note, #res .res_box ul li span:first-child:focus {
outline: none !important;
}
#res .res_box ul li:nth-child(2) span:nth-child(2) {
display: inline-block;
width: 30%;
max-width: 30%;
text-align: right;
float: right;
font-family: PingFangSC-Medium;
font-size: 14px;
color: rgba(0, 0, 0, 0.85);
letter-spacing: 0;
font-weight: bold;
}
#res .res_box ul li:nth-child(2)>span:first-child{
height: 48px;
display: inline-block;
max-width: 70%;
overflow: hidden;
color: #ddd;
}
#res .res_box ul li:nth-child(2) span:nth-child(2) > span {
width: 1px;
border: 1px solid rgba(0, 0, 0, 0.85);
height: 10px;
margin-right: 3px;
display: inline-block;
min-width: 1px;
font-family: PingFangSC-Medium;
}
#res .res_box ul li:nth-child(2) span:nth-child(2):hover {
cursor: pointer;
color: rgb(3, 204, 255);
}
#res .res_box .send-register ~ p a {
font-weight: bold;
}
#res .res_box .send-register ~ p {
margin-bottom: 60px !important;
}*/ | public/assets/css/user.css | .p_l_10 {
padding-left: 10px;
}
.p_r_10 {
padding-right: 10px;
}
#res {
background-image: url("../img/bg/92eab8cdecda200af38397948a2e9ca.png");
background-size: cover;
background-repeat: no-repeat;
/*height: 500px;*/
border: none;
}
#res .logo_register {
padding: 60px 0 100px 0;
}
#res .res_box {
background: #FFFFFF;
border: 1px solid #F6F9FC;
box-shadow: 0 4px 14px 2px rgba(0, 0, 0, 0.06);
border-radius: 8px;
margin-top: 40px;
}
#res .res_box h3 {
font-family: PingFangSC-Medium;
font-size: 20px;
color: rgba(0, 0, 0, 0.65);
letter-spacing: 1.11px;
font-weight: bold;
padding: 50px 0;
}
form#register-form .controls {
border: 1px solid #E1E4E8;
border-radius: 4px;
height: 48px;
}
form#register-form .controls input {
width: 70%;
float: right;
border: none;
text-align: right;
max-height: 46px;
margin-top: 3px;
font-size: 14px;
color: rgba(0, 0, 0, 0.65);
letter-spacing: 0;
/*margin-bottom:0px;*/
/*border: 1px solid #E1E4E8;*/
}
form#register-form .label-left {
width: 30%;
display: inline-block;
height: 48px;
line-height: 48px;
padding-left: 10px;
}
form#register-form .form-group {
margin-bottom: 20px !important;
}
form#register-form .get-code {
font-family: PingFangSC-Regular;
font-size: 14px;
color: rgba(0, 0, 0, 0.85);
letter-spacing: 0;
text-align: right;
float: right;
padding-right: 10px
}
form#register-form .tagers {
width: 1px;
height: 11px;
border: 1px solid rgba(0, 0, 0, 0.85);;
position: absolute;
top: 40%;
right: 24%;
}
form#register-form .down-ico {
display: inline-block;
height: 48px;
line-height: 48px;
padding-right: 10px;
}
form#register-form .down-ico:hover,form#register-form .yuchan_sel > p:hover,form#register-form .get-code:hover {
cursor: pointer;
color: rgb(3, 204, 255);
}
form#register-form .down-ico+ul{
}
form#register-form .yuchan_sel {
z-index: 999;
position: absolute;
/*margin: 0 0 0 79px;*/
right: 0;
padding-left: 0;
border-top: none;
background-color: #fff;
min-width: 100%;
border: 1px solid #E1E4E8;
border-top: none;
}
form#register-form .yuchan_sel > p {
padding: 10px 10px 10px 0;
text-align: right;
padding-right: 38px;
font-weight: bold;
width: 100%;
}
form#register-form .city-picker-span{
max-width: 70%;
float: right;
}
form#register-form .city-picker-dropdown{
min-width: 100%;
border-bottom:none;
/*float: right;*/
}
form#register-form .city-picker-span{
border-bottom:none;
height: 46px !important;
line-height: 46px !important;
text-align: right;
padding-right: 30px;
}
form#register-form .n-right .msg-wrap{
/*margin-top: 10px !important;*/
}
form#register-form button[type='submit']:hover{
border: none !important;
}
form#register-form button[type='submit']:focus{
border: none !important;
}
/*
#res .res_box ul li {
background: rgba(255, 255, 255, 0.00);
border: 1px solid #E1E4E8;
border-radius: 4px;
height: 48px;
line-height: 48px;
margin-bottom: 20px;
}
#res .res_box ul li span.res_form_note {
display: inline-block;
width: 80%;
font-family: PingFangSC-Medium;
font-size: 14px;
color: rgba(0, 0, 0, 0.85);
letter-spacing: 0;
text-align: right;
}
#res .res_box ul li span:nth-child(1):not(.res_form_note) {
min-width: 70%;
}
#res .res_box ul li span.res_form_note, #res .res_box ul li span:first-child:focus {
outline: none !important;
}
#res .res_box ul li:nth-child(2) span:nth-child(2) {
display: inline-block;
width: 30%;
max-width: 30%;
text-align: right;
float: right;
font-family: PingFangSC-Medium;
font-size: 14px;
color: rgba(0, 0, 0, 0.85);
letter-spacing: 0;
font-weight: bold;
}
#res .res_box ul li:nth-child(2)>span:first-child{
height: 48px;
display: inline-block;
max-width: 70%;
overflow: hidden;
color: #ddd;
}
#res .res_box ul li:nth-child(2) span:nth-child(2) > span {
width: 1px;
border: 1px solid rgba(0, 0, 0, 0.85);
height: 10px;
margin-right: 3px;
display: inline-block;
min-width: 1px;
font-family: PingFangSC-Medium;
}
#res .res_box ul li:nth-child(2) span:nth-child(2):hover {
cursor: pointer;
color: rgb(3, 204, 255);
}
#res .res_box .send-register ~ p a {
font-weight: bold;
}
#res .res_box .send-register ~ p {
margin-bottom: 60px !important;
}*/ | 0.392337 | 0.108189 |
@import url("./reset.css");
@import url("https://fonts.googleapis.com/css2?family=Inter&family=Open+Sans&display=swap");
html {
height: 100%;
font-family: "Open Sans", sans-serif;
font-style: normal;
font-weight: normal;
scroll-behavior: smooth;
overflow-x: hidden;
background: #fafafa;
}
.wrapper {
max-width: 1232px;
margin: 0 auto;
}
#app .wrapper.dashboard {
margin-top: 40.88px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-column-gap: 16px;
column-gap: 16px;
}
#app .filters {
max-width: 296px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
row-gap: 24px;
}
#app .filters .sorts h3 {
font-weight: 600;
font-size: 13px;
line-height: 18px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
color: #697488;
margin-bottom: 13px;
}
#app .filters .sorts .sort-box {
max-width: 248px;
background: #ffffff;
-webkit-box-shadow: 0px 6px 24px rgba(93, 62, 188, 0.04);
box-shadow: 0px 6px 24px rgba(93, 62, 188, 0.04);
border-radius: 2px;
padding: 24px;
}
#app .filters .brands h3 {
font-weight: 600;
font-size: 13px;
line-height: 18px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
color: #697488;
margin-bottom: 13px;
}
#app .filters .brands .brands-box {
max-width: 248px;
background: #ffffff;
-webkit-box-shadow: 0px 6px 24px rgba(93, 62, 188, 0.04);
box-shadow: 0px 6px 24px rgba(93, 62, 188, 0.04);
border-radius: 2px;
padding: 24px;
padding-left: 19px;
}
#app .filters .brands .brands-box .checkbox-list {
max-height: 137px;
height: 137px;
overflow-y: auto;
margin-top: 17px;
}
#app .filters .brands .brands-box .checkbox-list h2 {
font-size: 13px;
text-align: center;
}
#app .filters .brands .brands-box .checkbox-list::-webkit-scrollbar {
width: 4px;
}
#app .filters .brands .brands-box .checkbox-list::-webkit-scrollbar-track {
background: #ffffff;
}
#app .filters .brands .brands-box .checkbox-list::-webkit-scrollbar-thumb {
background: #e0e0e0;
border-radius: 4px;
}
#app .filters .brands .brands-box .checkbox-list::-webkit-scrollbar-thumb:hover {
background: #555;
}
#app .filters .tags h3 {
font-weight: 600;
font-size: 13px;
line-height: 18px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
color: #697488;
margin-bottom: 13px;
}
#app .filters .tags .tags-box {
max-width: 248px;
background: #ffffff;
-webkit-box-shadow: 0px 6px 24px rgba(93, 62, 188, 0.04);
box-shadow: 0px 6px 24px rgba(93, 62, 188, 0.04);
border-radius: 2px;
padding: 24px;
padding-left: 19px;
}
#app .filters .tags .tags-box .checkbox-list {
max-height: 142px;
overflow-y: auto;
margin-top: 17px;
}
#app .filters .tags .tags-box .checkbox-list::-webkit-scrollbar {
width: 4px;
}
#app .filters .tags .tags-box .checkbox-list::-webkit-scrollbar-track {
background: #ffffff;
}
#app .filters .tags .tags-box .checkbox-list::-webkit-scrollbar-thumb {
background: #e0e0e0;
border-radius: 4px;
}
#app .filters .tags .tags-box .checkbox-list::-webkit-scrollbar-thumb:hover {
background: #555;
}
#app .product-list {
width: 608px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
}
#app .product-list .categories h2 {
font-size: 20px;
line-height: 26px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
letter-spacing: 0.25px;
color: #6f6f6f;
margin-bottom: 16px;
}
#app .product-list .categories .categories-group {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
-webkit-column-gap: 8px;
column-gap: 8px;
margin-bottom: 16px;
}
#app .product-list .categories .categories-group .categories-item {
cursor: pointer;
background: #f2f0fd;
border-radius: 2px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
color: #1ea4ce;
font-weight: 600;
font-size: 13px;
line-height: 18px;
padding: 6px 16px;
}
#app .product-list .categories .categories-group .categories-item.selected {
background: #1ea4ce;
color: #f2f0fd;
}
#app .product-list .card-group {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding: 22px 20px;
background: #ffffff;
-webkit-box-shadow: 0px 4px 24px rgba(93, 62, 188, 0.04);
box-shadow: 0px 4px 24px rgba(93, 62, 188, 0.04);
border-radius: 2px;
}
#app .product-list .card-group .card {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
width: 124px;
height: 225px;
margin-bottom: 20px;
}
#app .product-list .card-group .card .top {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
padding: 16px;
background: #fefefe;
border: 1.17666px solid #f3f0fe;
border-radius: 12px;
margin-bottom: 8px;
}
#app .product-list .card-group .card .top .img {
width: 92px;
height: 92px;
background: #c4c4c4;
}
#app .product-list .card-group .card .middle {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
margin-bottom: 8px;
}
#app .product-list .card-group .card .middle .price {
font-size: 14px;
line-height: 20px;
color: #1ea4ce;
}
#app .product-list .card-group .card .middle .name {
font-weight: 600;
font-size: 14px;
line-height: 20px;
color: #191919;
}
#app .product-list .card-group .card .bottom {
margin-top: auto;
}
#app .product-list .card-group .card .bottom button {
cursor: pointer;
background: #1ea4ce;
border-radius: 2px;
font-weight: 600;
font-size: 12px;
line-height: 20px;
color: #ffffff;
width: 100%;
height: 22px;
outline: none;
border: none;
}
#app .cart-bg {
background: #1ea4ce;
border-radius: 2px;
width: 280px;
height: 370px;
padding: 8px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-transition: .5s;
transition: .5s;
opacity: 1;
}
#app .cart-bg.hide {
height: 0;
opacity: 0;
-webkit-transition: .5s;
transition: .5s;
}
#app .cart-bg .card-inside {
background: #ffffff;
border-radius: 2px;
width: 100%;
height: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
#app .cart-bg .card-inside .items {
max-height: 300px;
overflow-y: auto;
}
#app .cart-bg .card-inside .items::-webkit-scrollbar {
width: 4px;
}
#app .cart-bg .card-inside .items::-webkit-scrollbar-track {
background: #ffffff;
}
#app .cart-bg .card-inside .items::-webkit-scrollbar-thumb {
background: #e0e0e0;
border-radius: 4px;
}
#app .cart-bg .card-inside .items::-webkit-scrollbar-thumb:hover {
background: #555;
}
#app .cart-bg .card-inside .items .item {
border-bottom: #f4f4f4 1px solid;
padding: 0 22px;
padding-top: 16px;
padding-bottom: 18.39px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
#app .cart-bg .card-inside .items .item:first-child {
margin-top: 10px;
}
#app .cart-bg .card-inside .items .item:hover {
background: #e0e0e0;
}
#app .cart-bg .card-inside .items .item .item-left {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
#app .cart-bg .card-inside .items .item .item-left .name {
font-size: 14px;
line-height: 18px;
letter-spacing: 0.16px;
color: #191919;
}
#app .cart-bg .card-inside .items .item .item-left .price {
font-weight: 600;
font-size: 14px;
line-height: 18px;
letter-spacing: 0.16px;
color: #1ea4ce;
}
#app .cart-bg .card-inside .items .item .item-right {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
#app .cart-bg .card-inside .items .item .item-right .btn {
cursor: pointer;
color: #1ea4ce;
width: 32px;
height: 32px;
line-height: 32px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
#app .cart-bg .card-inside .items .item .item-right .btn.decrease {
font-size: 31px;
font-weight: 500;
line-height: 29px;
}
#app .cart-bg .card-inside .items .item .item-right .btn.increase {
font-size: 18px;
font-weight: bold;
}
#app .cart-bg .card-inside .items .item .item-right .btn:hover {
background: #e0e0e0;
border-radius: 50%;
}
#app .cart-bg .card-inside .items .item .item-right .value {
background: #1ea4ce;
width: 32px;
height: 32px;
color: #ffffff;
font-weight: bold;
font-size: 15px;
line-height: 32px;
text-align: center;
}
#app .cart-bg .card-inside .cart-total-box-bg {
background: #1ea4ce;
border-radius: 2px;
padding: 2px;
width: 88px;
height: 47px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin: 16.35px 0;
margin-left: auto;
margin-right: 16px;
}
#app .cart-bg .card-inside .cart-total-box-bg .cart-total-box-inside {
background: #ffffff;
border-radius: 2px;
width: 100%;
height: 100%;
font-weight: 600;
font-size: 14px;
line-height: 16px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
color: #1ea4ce;
}
#app .pagination {
width: 100%;
margin-top: 32px;
}
#app .pagination .pagination-group {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin: 0 auto;
max-width: 535px;
width: 100%;
height: 40px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
#app .pagination .pagination-group ul {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
max-width: 298px;
font-weight: 600;
font-size: 14px;
line-height: 16px;
color: #697488;
}
#app .pagination .pagination-group ul li {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
cursor: pointer;
height: 40px;
padding: 0 12px;
}
#app .pagination .pagination-group ul li.active {
background: #1ea4ce;
border-radius: 2px;
padding: 0 12px;
color: #ffffff;
}
#app .pagination .pagination-group ul li.active:hover {
background: #1ea4ce;
}
#app .pagination .pagination-group ul li:hover {
background: #e0e0e0;
}
#app .pagination .pagination-group .btn {
position: relative;
cursor: default;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
width: 57px;
height: 40px;
padding: 0 6px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
#app .pagination .pagination-group .btn:hover {
background: #e0e0e0;
}
#app .pagination .pagination-group .btn.active {
cursor: pointer;
}
#app .pagination .pagination-group .btn.active .icon-pre {
background: url("../img/arrow-left-selected.svg");
}
#app .pagination .pagination-group .btn.active .icon-next {
background: url("../img/arrow-left-selected.svg");
}
#app .pagination .pagination-group .btn.active .text {
color: #1ea4ce;
}
#app .pagination .pagination-group .btn .icon-pre {
width: 14px;
height: 14px;
background: url("../img/arrow-left.svg");
}
#app .pagination .pagination-group .btn .icon-next {
width: 14px;
height: 14px;
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
background: url("../img/arrow-left.svg");
}
#app .pagination .pagination-group .btn .text {
font-weight: 600;
font-size: 14px;
line-height: 16px;
color: #697488;
}
#header {
background: #1ea4ce;
height: 76.64px;
}
#header .wrapper.header {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
height: 100%;
}
#header .wrapper.header .logo {
margin-top: 17px;
margin-bottom: 19.32px;
}
#header .wrapper.header .logo img {
max-width: 100%;
height: auto;
}
#header .wrapper.header .cart-total {
cursor: pointer;
position: absolute;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
background: #147594;
height: 100%;
padding: 0 24px;
right: 0;
}
#header .wrapper.header .cart-total .icon {
content: "";
background-image: url("../img/basket_lock.svg");
width: 14px;
height: 17px;
left: 0;
}
#header .wrapper.header .cart-total .value {
font-weight: 600;
font-size: 14px;
line-height: 18px;
margin-left: 13.41px;
letter-spacing: 0.16px;
color: #ffffff;
}
#footer {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
padding-bottom: 40px;
margin-top: 136px;
}
#footer ul {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
font-size: 13px;
line-height: 174%;
height: 23px;
}
#footer ul li {
position: relative;
padding: 0 16px;
}
#footer ul a {
color: #1ea4ce;
text-decoration: none;
}
#footer ul li:not(:last-child):before {
content: ".";
color: #1ea4ce;
position: absolute;
right: -3px;
top: -3px;
}
.radio-container {
display: block;
position: relative;
padding-left: 35px;
margin-bottom: 16px;
cursor: pointer;
font-size: 14px;
line-height: 22px;
letter-spacing: 0.16px;
height: 22px;
color: #525252;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.radio-container:last-child {
margin-bottom: 0;
}
.radio-container input {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
}
.radio-container input:checked ~ .radioBtn {
border: 2px solid #1ea4ce;
}
.radio-container input:checked ~ .radioBtn:after {
display: block;
left: 6px;
top: 2px;
width: 4px;
height: 9px;
border: solid #1ea4ce;
border-width: 0 2px 2px 0;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
.radio-container:hover input ~ .radioBtn {
background-color: #ccc;
}
.radioBtn {
position: absolute;
top: 0;
left: 0;
height: 22px;
width: 22px;
background: #ffffff;
border: 2px solid #dfdee2;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-radius: 50%;
}
.radioBtn:after {
content: "";
position: absolute;
display: none;
}
.search-input {
border: 2px solid #e0e0e0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-radius: 2px;
padding: 12px 16px;
max-width: 243px;
margin-left: 5px;
}
.search-input::-webkit-input-placeholder {
font-family: "Inter", sans-serif;
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 24px;
letter-spacing: 0.15px;
color: #a8a8a8;
}
.search-input:-ms-input-placeholder {
font-family: "Inter", sans-serif;
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 24px;
letter-spacing: 0.15px;
color: #a8a8a8;
}
.search-input::-ms-input-placeholder {
font-family: "Inter", sans-serif;
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 24px;
letter-spacing: 0.15px;
color: #a8a8a8;
}
.search-input::placeholder {
font-family: "Inter", sans-serif;
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 24px;
letter-spacing: 0.15px;
color: #a8a8a8;
}
.check-container {
display: block;
position: relative;
padding-left: 35px;
margin-bottom: 18px;
margin-left: 5px;
margin-top: 5px;
height: 22px;
cursor: pointer;
font-weight: normal;
font-size: 14px;
line-height: 22px;
letter-spacing: 0.16px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.check-container input {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
}
.check-container input:checked ~ .checkBtn {
background-color: #1ea4ce;
-webkit-box-shadow: 0px 1px 7px rgba(93, 56, 192, 0.4);
box-shadow: 0px 1px 7px rgba(93, 56, 192, 0.4);
border-radius: 2px;
}
.check-container input:checked ~ .checkBtn:after {
display: block;
}
.check-container:hover input ~ .checkBtn {
background-color: #ccc;
}
.check-container .checkBtn:after {
left: 7px;
top: 3px;
width: 5px;
height: 10px;
border: solid white;
border-width: 0 2px 2px 0;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
.checkBtn {
position: absolute;
top: 0;
left: 0;
height: 22px;
width: 22px;
background: #ffffff;
-webkit-box-shadow: 0px 1px 7px rgba(93, 56, 192, 0.4);
box-shadow: 0px 1px 7px rgba(93, 56, 192, 0.4);
border-radius: 2px;
}
.checkBtn:after {
content: "";
position: absolute;
display: none;
}
/*# sourceMappingURL=app.css.map */ | src/assets/style/app.css | @import url("./reset.css");
@import url("https://fonts.googleapis.com/css2?family=Inter&family=Open+Sans&display=swap");
html {
height: 100%;
font-family: "Open Sans", sans-serif;
font-style: normal;
font-weight: normal;
scroll-behavior: smooth;
overflow-x: hidden;
background: #fafafa;
}
.wrapper {
max-width: 1232px;
margin: 0 auto;
}
#app .wrapper.dashboard {
margin-top: 40.88px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-column-gap: 16px;
column-gap: 16px;
}
#app .filters {
max-width: 296px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
row-gap: 24px;
}
#app .filters .sorts h3 {
font-weight: 600;
font-size: 13px;
line-height: 18px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
color: #697488;
margin-bottom: 13px;
}
#app .filters .sorts .sort-box {
max-width: 248px;
background: #ffffff;
-webkit-box-shadow: 0px 6px 24px rgba(93, 62, 188, 0.04);
box-shadow: 0px 6px 24px rgba(93, 62, 188, 0.04);
border-radius: 2px;
padding: 24px;
}
#app .filters .brands h3 {
font-weight: 600;
font-size: 13px;
line-height: 18px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
color: #697488;
margin-bottom: 13px;
}
#app .filters .brands .brands-box {
max-width: 248px;
background: #ffffff;
-webkit-box-shadow: 0px 6px 24px rgba(93, 62, 188, 0.04);
box-shadow: 0px 6px 24px rgba(93, 62, 188, 0.04);
border-radius: 2px;
padding: 24px;
padding-left: 19px;
}
#app .filters .brands .brands-box .checkbox-list {
max-height: 137px;
height: 137px;
overflow-y: auto;
margin-top: 17px;
}
#app .filters .brands .brands-box .checkbox-list h2 {
font-size: 13px;
text-align: center;
}
#app .filters .brands .brands-box .checkbox-list::-webkit-scrollbar {
width: 4px;
}
#app .filters .brands .brands-box .checkbox-list::-webkit-scrollbar-track {
background: #ffffff;
}
#app .filters .brands .brands-box .checkbox-list::-webkit-scrollbar-thumb {
background: #e0e0e0;
border-radius: 4px;
}
#app .filters .brands .brands-box .checkbox-list::-webkit-scrollbar-thumb:hover {
background: #555;
}
#app .filters .tags h3 {
font-weight: 600;
font-size: 13px;
line-height: 18px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
color: #697488;
margin-bottom: 13px;
}
#app .filters .tags .tags-box {
max-width: 248px;
background: #ffffff;
-webkit-box-shadow: 0px 6px 24px rgba(93, 62, 188, 0.04);
box-shadow: 0px 6px 24px rgba(93, 62, 188, 0.04);
border-radius: 2px;
padding: 24px;
padding-left: 19px;
}
#app .filters .tags .tags-box .checkbox-list {
max-height: 142px;
overflow-y: auto;
margin-top: 17px;
}
#app .filters .tags .tags-box .checkbox-list::-webkit-scrollbar {
width: 4px;
}
#app .filters .tags .tags-box .checkbox-list::-webkit-scrollbar-track {
background: #ffffff;
}
#app .filters .tags .tags-box .checkbox-list::-webkit-scrollbar-thumb {
background: #e0e0e0;
border-radius: 4px;
}
#app .filters .tags .tags-box .checkbox-list::-webkit-scrollbar-thumb:hover {
background: #555;
}
#app .product-list {
width: 608px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
}
#app .product-list .categories h2 {
font-size: 20px;
line-height: 26px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
letter-spacing: 0.25px;
color: #6f6f6f;
margin-bottom: 16px;
}
#app .product-list .categories .categories-group {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
-webkit-column-gap: 8px;
column-gap: 8px;
margin-bottom: 16px;
}
#app .product-list .categories .categories-group .categories-item {
cursor: pointer;
background: #f2f0fd;
border-radius: 2px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
color: #1ea4ce;
font-weight: 600;
font-size: 13px;
line-height: 18px;
padding: 6px 16px;
}
#app .product-list .categories .categories-group .categories-item.selected {
background: #1ea4ce;
color: #f2f0fd;
}
#app .product-list .card-group {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding: 22px 20px;
background: #ffffff;
-webkit-box-shadow: 0px 4px 24px rgba(93, 62, 188, 0.04);
box-shadow: 0px 4px 24px rgba(93, 62, 188, 0.04);
border-radius: 2px;
}
#app .product-list .card-group .card {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
width: 124px;
height: 225px;
margin-bottom: 20px;
}
#app .product-list .card-group .card .top {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
padding: 16px;
background: #fefefe;
border: 1.17666px solid #f3f0fe;
border-radius: 12px;
margin-bottom: 8px;
}
#app .product-list .card-group .card .top .img {
width: 92px;
height: 92px;
background: #c4c4c4;
}
#app .product-list .card-group .card .middle {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
margin-bottom: 8px;
}
#app .product-list .card-group .card .middle .price {
font-size: 14px;
line-height: 20px;
color: #1ea4ce;
}
#app .product-list .card-group .card .middle .name {
font-weight: 600;
font-size: 14px;
line-height: 20px;
color: #191919;
}
#app .product-list .card-group .card .bottom {
margin-top: auto;
}
#app .product-list .card-group .card .bottom button {
cursor: pointer;
background: #1ea4ce;
border-radius: 2px;
font-weight: 600;
font-size: 12px;
line-height: 20px;
color: #ffffff;
width: 100%;
height: 22px;
outline: none;
border: none;
}
#app .cart-bg {
background: #1ea4ce;
border-radius: 2px;
width: 280px;
height: 370px;
padding: 8px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-transition: .5s;
transition: .5s;
opacity: 1;
}
#app .cart-bg.hide {
height: 0;
opacity: 0;
-webkit-transition: .5s;
transition: .5s;
}
#app .cart-bg .card-inside {
background: #ffffff;
border-radius: 2px;
width: 100%;
height: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
#app .cart-bg .card-inside .items {
max-height: 300px;
overflow-y: auto;
}
#app .cart-bg .card-inside .items::-webkit-scrollbar {
width: 4px;
}
#app .cart-bg .card-inside .items::-webkit-scrollbar-track {
background: #ffffff;
}
#app .cart-bg .card-inside .items::-webkit-scrollbar-thumb {
background: #e0e0e0;
border-radius: 4px;
}
#app .cart-bg .card-inside .items::-webkit-scrollbar-thumb:hover {
background: #555;
}
#app .cart-bg .card-inside .items .item {
border-bottom: #f4f4f4 1px solid;
padding: 0 22px;
padding-top: 16px;
padding-bottom: 18.39px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
#app .cart-bg .card-inside .items .item:first-child {
margin-top: 10px;
}
#app .cart-bg .card-inside .items .item:hover {
background: #e0e0e0;
}
#app .cart-bg .card-inside .items .item .item-left {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
#app .cart-bg .card-inside .items .item .item-left .name {
font-size: 14px;
line-height: 18px;
letter-spacing: 0.16px;
color: #191919;
}
#app .cart-bg .card-inside .items .item .item-left .price {
font-weight: 600;
font-size: 14px;
line-height: 18px;
letter-spacing: 0.16px;
color: #1ea4ce;
}
#app .cart-bg .card-inside .items .item .item-right {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
#app .cart-bg .card-inside .items .item .item-right .btn {
cursor: pointer;
color: #1ea4ce;
width: 32px;
height: 32px;
line-height: 32px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
#app .cart-bg .card-inside .items .item .item-right .btn.decrease {
font-size: 31px;
font-weight: 500;
line-height: 29px;
}
#app .cart-bg .card-inside .items .item .item-right .btn.increase {
font-size: 18px;
font-weight: bold;
}
#app .cart-bg .card-inside .items .item .item-right .btn:hover {
background: #e0e0e0;
border-radius: 50%;
}
#app .cart-bg .card-inside .items .item .item-right .value {
background: #1ea4ce;
width: 32px;
height: 32px;
color: #ffffff;
font-weight: bold;
font-size: 15px;
line-height: 32px;
text-align: center;
}
#app .cart-bg .card-inside .cart-total-box-bg {
background: #1ea4ce;
border-radius: 2px;
padding: 2px;
width: 88px;
height: 47px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin: 16.35px 0;
margin-left: auto;
margin-right: 16px;
}
#app .cart-bg .card-inside .cart-total-box-bg .cart-total-box-inside {
background: #ffffff;
border-radius: 2px;
width: 100%;
height: 100%;
font-weight: 600;
font-size: 14px;
line-height: 16px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
color: #1ea4ce;
}
#app .pagination {
width: 100%;
margin-top: 32px;
}
#app .pagination .pagination-group {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin: 0 auto;
max-width: 535px;
width: 100%;
height: 40px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
#app .pagination .pagination-group ul {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
max-width: 298px;
font-weight: 600;
font-size: 14px;
line-height: 16px;
color: #697488;
}
#app .pagination .pagination-group ul li {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
cursor: pointer;
height: 40px;
padding: 0 12px;
}
#app .pagination .pagination-group ul li.active {
background: #1ea4ce;
border-radius: 2px;
padding: 0 12px;
color: #ffffff;
}
#app .pagination .pagination-group ul li.active:hover {
background: #1ea4ce;
}
#app .pagination .pagination-group ul li:hover {
background: #e0e0e0;
}
#app .pagination .pagination-group .btn {
position: relative;
cursor: default;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
width: 57px;
height: 40px;
padding: 0 6px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
#app .pagination .pagination-group .btn:hover {
background: #e0e0e0;
}
#app .pagination .pagination-group .btn.active {
cursor: pointer;
}
#app .pagination .pagination-group .btn.active .icon-pre {
background: url("../img/arrow-left-selected.svg");
}
#app .pagination .pagination-group .btn.active .icon-next {
background: url("../img/arrow-left-selected.svg");
}
#app .pagination .pagination-group .btn.active .text {
color: #1ea4ce;
}
#app .pagination .pagination-group .btn .icon-pre {
width: 14px;
height: 14px;
background: url("../img/arrow-left.svg");
}
#app .pagination .pagination-group .btn .icon-next {
width: 14px;
height: 14px;
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
background: url("../img/arrow-left.svg");
}
#app .pagination .pagination-group .btn .text {
font-weight: 600;
font-size: 14px;
line-height: 16px;
color: #697488;
}
#header {
background: #1ea4ce;
height: 76.64px;
}
#header .wrapper.header {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
height: 100%;
}
#header .wrapper.header .logo {
margin-top: 17px;
margin-bottom: 19.32px;
}
#header .wrapper.header .logo img {
max-width: 100%;
height: auto;
}
#header .wrapper.header .cart-total {
cursor: pointer;
position: absolute;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
background: #147594;
height: 100%;
padding: 0 24px;
right: 0;
}
#header .wrapper.header .cart-total .icon {
content: "";
background-image: url("../img/basket_lock.svg");
width: 14px;
height: 17px;
left: 0;
}
#header .wrapper.header .cart-total .value {
font-weight: 600;
font-size: 14px;
line-height: 18px;
margin-left: 13.41px;
letter-spacing: 0.16px;
color: #ffffff;
}
#footer {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
padding-bottom: 40px;
margin-top: 136px;
}
#footer ul {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
font-size: 13px;
line-height: 174%;
height: 23px;
}
#footer ul li {
position: relative;
padding: 0 16px;
}
#footer ul a {
color: #1ea4ce;
text-decoration: none;
}
#footer ul li:not(:last-child):before {
content: ".";
color: #1ea4ce;
position: absolute;
right: -3px;
top: -3px;
}
.radio-container {
display: block;
position: relative;
padding-left: 35px;
margin-bottom: 16px;
cursor: pointer;
font-size: 14px;
line-height: 22px;
letter-spacing: 0.16px;
height: 22px;
color: #525252;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.radio-container:last-child {
margin-bottom: 0;
}
.radio-container input {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
}
.radio-container input:checked ~ .radioBtn {
border: 2px solid #1ea4ce;
}
.radio-container input:checked ~ .radioBtn:after {
display: block;
left: 6px;
top: 2px;
width: 4px;
height: 9px;
border: solid #1ea4ce;
border-width: 0 2px 2px 0;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
.radio-container:hover input ~ .radioBtn {
background-color: #ccc;
}
.radioBtn {
position: absolute;
top: 0;
left: 0;
height: 22px;
width: 22px;
background: #ffffff;
border: 2px solid #dfdee2;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-radius: 50%;
}
.radioBtn:after {
content: "";
position: absolute;
display: none;
}
.search-input {
border: 2px solid #e0e0e0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-radius: 2px;
padding: 12px 16px;
max-width: 243px;
margin-left: 5px;
}
.search-input::-webkit-input-placeholder {
font-family: "Inter", sans-serif;
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 24px;
letter-spacing: 0.15px;
color: #a8a8a8;
}
.search-input:-ms-input-placeholder {
font-family: "Inter", sans-serif;
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 24px;
letter-spacing: 0.15px;
color: #a8a8a8;
}
.search-input::-ms-input-placeholder {
font-family: "Inter", sans-serif;
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 24px;
letter-spacing: 0.15px;
color: #a8a8a8;
}
.search-input::placeholder {
font-family: "Inter", sans-serif;
font-style: normal;
font-weight: normal;
font-size: 14px;
line-height: 24px;
letter-spacing: 0.15px;
color: #a8a8a8;
}
.check-container {
display: block;
position: relative;
padding-left: 35px;
margin-bottom: 18px;
margin-left: 5px;
margin-top: 5px;
height: 22px;
cursor: pointer;
font-weight: normal;
font-size: 14px;
line-height: 22px;
letter-spacing: 0.16px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.check-container input {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
}
.check-container input:checked ~ .checkBtn {
background-color: #1ea4ce;
-webkit-box-shadow: 0px 1px 7px rgba(93, 56, 192, 0.4);
box-shadow: 0px 1px 7px rgba(93, 56, 192, 0.4);
border-radius: 2px;
}
.check-container input:checked ~ .checkBtn:after {
display: block;
}
.check-container:hover input ~ .checkBtn {
background-color: #ccc;
}
.check-container .checkBtn:after {
left: 7px;
top: 3px;
width: 5px;
height: 10px;
border: solid white;
border-width: 0 2px 2px 0;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
.checkBtn {
position: absolute;
top: 0;
left: 0;
height: 22px;
width: 22px;
background: #ffffff;
-webkit-box-shadow: 0px 1px 7px rgba(93, 56, 192, 0.4);
box-shadow: 0px 1px 7px rgba(93, 56, 192, 0.4);
border-radius: 2px;
}
.checkBtn:after {
content: "";
position: absolute;
display: none;
}
/*# sourceMappingURL=app.css.map */ | 0.208582 | 0.038829 |
html {
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
/***** Fonts *****/
@font-face {
font-family: 'Computerfont';
src: url("/css/fonts/Computerfont.woff2") format('woff2'), url("/css/fonts/Computerfont.woff") format('woff'), url("/css/fonts/Computerfont.ttf") format('truetype');
font-weight: 100;
font-style: normal;
}
@font-face {
font-family: 'Nasa';
src: url("/css/fonts/NasalizationRg-Regular.woff2") format('woff2'), url("/css/fonts/NasalizationRg-Regular.woff") format('woff'), url("/css/fonts/NasalizationRg-Regular.ttf") format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'CMD';
src: url("/css/fonts/Windows-Command-Prompt.woff2") format('woff2'), url("/css/fonts/Windows-Command-Prompt.woff") format('woff'), url("/css/fonts/Windows-Command-Prompt.ttf") format('truetype');
font-weight: normal;
font-style: normal;
}
/***** Scrollbar *****/
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 20px #041607;
}
::-webkit-scrollbar-thumb {
-webkit-box-shadow: inset 0 0 50px #11581e;
}
::-webkit-scrollbar-thumb:hover {
-webkit-box-shadow: inset 0 0 50px #fff;
}
/***** General/Global *****/
:root {
font-size: 15px;
}
html {
min-height: 100%;
font-size: 2.4rem;
line-height: 1.2;
letter-spacing: 1.2px;
}
body {
box-sizing: border-box;
height: 100%;
background-color: #000;
background-image: radial-gradient(#11581e, #041607), url("/css/images/terminal-static-animated.gif");
background-repeat: no-repeat;
background-size: cover;
font-family: CMD, Helvetica, sans-serif;
font-size: 1.5rem;
color: rgba(128,255,128,0.8);
text-shadow: 0 0 1ex #3f3, 0 0 2px rgba(255,255,255,0.8);
}
/***** Terminal Effects *****/
@keyframes scan {
0% {
background-position: 0 -100vh;
}
35%, 100% {
background-position: 0 100vh;
}
}
.noise {
pointer-events: none;
position: absolute;
width: 100%;
height: 100%;
background-image: url("/css/images/terminal-static-animated.gif");
background-repeat: no-repeat;
background-size: cover;
z-index: 100;
opacity: 0.02;
}
.overlay {
pointer-events: none;
position: absolute;
width: 100%;
height: 100%;
background: repeating-linear-gradient(180deg, rgba(0,0,0,0) 0, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
background-size: auto 4px;
z-index: 101;
}
.overlay::before {
content: "";
pointer-events: none;
position: absolute;
display: block;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
background-image: linear-gradient(0deg, transparent 0%, rgba(32,128,32,0.2) 2%, rgba(32,128,32,0.8) 3%, rgba(32,128,32,0.2) 3%, transparent 100%);
background-repeat: no-repeat;
-webkit-animation: scan 7.5s linear 0s infinite;
animation: scan 7.5s linear 0s infinite;
}
.terminal {
display: block;
box-sizing: inherit;
height: 100vh;
width: 100%;
max-width: 800px;
width: 100%;
margin: 0 auto;
padding: 35px 15px 65px;
text-transform: uppercase;
overflow-y: auto;
}
/***** Links *****/
a {
color: #fff;
text-decoration: none;
padding: 5px;
transition: .01s;
}
a:hover,
a:focus {
color: #11581e;
background-color: #fff;
}
a::before {
content: "[ ";
}
a::after {
content: " ]";
}
/***** Heading *****/
.heading {
font-family: 'Computerfont';
font-size: 1.8rem;
display: inline-block;
padding: 35px 35px 10px;
border: dashed 5px rgba(128,255,128,0.8);
margin-bottom: 50px;
}
.heading li{
margin-bottom: 15px;
}
.heading .small{
font-size: 0.75em;
}
.heading .small li{
margin-bottom: 5px;
}
.heading .highlight {
color: #fff;
}
@media only screen and (max-width: 900px) {
.heading {
font-family: 'Computerfont';
font-size: 1.8rem;
padding: 10px 15px;
border: dashed 3px rgba(128,255,128,0.8);
}
.heading .highlight {
display: block;
}
}
/***** Body *****/
.output {
font-family: 'cmd';
font-size: 1.8rem;
color: rgba(128,255,128,0.8);
text-shadow: 0 0 1px rgba(51,255,51,0.4), 0 0 2px rgba(255,255,255,0.8);
padding: 0px 5px 0px;
}
.output ul {
padding-left: 20px;
}
.output li {
list-style: none;
margin: 10px 0;
}
.output li::before {
content: "> ";
}
@media only screen and (max-width: 900px) {
.output {
font-size: 1.4rem;
}
.output li a {
font-size: 1.8rem;
display: block;
}
}
/***** HR/Divider *****/
.custom_hr{
width: 100%;
height: 0px;
border-bottom: dashed 3px rgba(128,255,128,0.8);
margin: 25px 0px;
} | css/custom.css | html {
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
/***** Fonts *****/
@font-face {
font-family: 'Computerfont';
src: url("/css/fonts/Computerfont.woff2") format('woff2'), url("/css/fonts/Computerfont.woff") format('woff'), url("/css/fonts/Computerfont.ttf") format('truetype');
font-weight: 100;
font-style: normal;
}
@font-face {
font-family: 'Nasa';
src: url("/css/fonts/NasalizationRg-Regular.woff2") format('woff2'), url("/css/fonts/NasalizationRg-Regular.woff") format('woff'), url("/css/fonts/NasalizationRg-Regular.ttf") format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'CMD';
src: url("/css/fonts/Windows-Command-Prompt.woff2") format('woff2'), url("/css/fonts/Windows-Command-Prompt.woff") format('woff'), url("/css/fonts/Windows-Command-Prompt.ttf") format('truetype');
font-weight: normal;
font-style: normal;
}
/***** Scrollbar *****/
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 20px #041607;
}
::-webkit-scrollbar-thumb {
-webkit-box-shadow: inset 0 0 50px #11581e;
}
::-webkit-scrollbar-thumb:hover {
-webkit-box-shadow: inset 0 0 50px #fff;
}
/***** General/Global *****/
:root {
font-size: 15px;
}
html {
min-height: 100%;
font-size: 2.4rem;
line-height: 1.2;
letter-spacing: 1.2px;
}
body {
box-sizing: border-box;
height: 100%;
background-color: #000;
background-image: radial-gradient(#11581e, #041607), url("/css/images/terminal-static-animated.gif");
background-repeat: no-repeat;
background-size: cover;
font-family: CMD, Helvetica, sans-serif;
font-size: 1.5rem;
color: rgba(128,255,128,0.8);
text-shadow: 0 0 1ex #3f3, 0 0 2px rgba(255,255,255,0.8);
}
/***** Terminal Effects *****/
@keyframes scan {
0% {
background-position: 0 -100vh;
}
35%, 100% {
background-position: 0 100vh;
}
}
.noise {
pointer-events: none;
position: absolute;
width: 100%;
height: 100%;
background-image: url("/css/images/terminal-static-animated.gif");
background-repeat: no-repeat;
background-size: cover;
z-index: 100;
opacity: 0.02;
}
.overlay {
pointer-events: none;
position: absolute;
width: 100%;
height: 100%;
background: repeating-linear-gradient(180deg, rgba(0,0,0,0) 0, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
background-size: auto 4px;
z-index: 101;
}
.overlay::before {
content: "";
pointer-events: none;
position: absolute;
display: block;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
background-image: linear-gradient(0deg, transparent 0%, rgba(32,128,32,0.2) 2%, rgba(32,128,32,0.8) 3%, rgba(32,128,32,0.2) 3%, transparent 100%);
background-repeat: no-repeat;
-webkit-animation: scan 7.5s linear 0s infinite;
animation: scan 7.5s linear 0s infinite;
}
.terminal {
display: block;
box-sizing: inherit;
height: 100vh;
width: 100%;
max-width: 800px;
width: 100%;
margin: 0 auto;
padding: 35px 15px 65px;
text-transform: uppercase;
overflow-y: auto;
}
/***** Links *****/
a {
color: #fff;
text-decoration: none;
padding: 5px;
transition: .01s;
}
a:hover,
a:focus {
color: #11581e;
background-color: #fff;
}
a::before {
content: "[ ";
}
a::after {
content: " ]";
}
/***** Heading *****/
.heading {
font-family: 'Computerfont';
font-size: 1.8rem;
display: inline-block;
padding: 35px 35px 10px;
border: dashed 5px rgba(128,255,128,0.8);
margin-bottom: 50px;
}
.heading li{
margin-bottom: 15px;
}
.heading .small{
font-size: 0.75em;
}
.heading .small li{
margin-bottom: 5px;
}
.heading .highlight {
color: #fff;
}
@media only screen and (max-width: 900px) {
.heading {
font-family: 'Computerfont';
font-size: 1.8rem;
padding: 10px 15px;
border: dashed 3px rgba(128,255,128,0.8);
}
.heading .highlight {
display: block;
}
}
/***** Body *****/
.output {
font-family: 'cmd';
font-size: 1.8rem;
color: rgba(128,255,128,0.8);
text-shadow: 0 0 1px rgba(51,255,51,0.4), 0 0 2px rgba(255,255,255,0.8);
padding: 0px 5px 0px;
}
.output ul {
padding-left: 20px;
}
.output li {
list-style: none;
margin: 10px 0;
}
.output li::before {
content: "> ";
}
@media only screen and (max-width: 900px) {
.output {
font-size: 1.4rem;
}
.output li a {
font-size: 1.8rem;
display: block;
}
}
/***** HR/Divider *****/
.custom_hr{
width: 100%;
height: 0px;
border-bottom: dashed 3px rgba(128,255,128,0.8);
margin: 25px 0px;
} | 0.186317 | 0.055952 |
@charset "UTF-8";
/* Formatação do formulário para a página de anúncio */
/* Formatação geral */
form#formularioAnunciar {
display: block;
width: 899px;
margin: auto;
margin-top: 55px;
font-family: 'Raleway', sans-serif;
}
label {
display: none;
}
/* Formatação do fieldset de "contato" do formulário */
fieldset.formContato {
display: block;
width: 899px;
height: 260px;
border: none;
margin: 0 0 20px 0;
padding: 0;
}
div.tituloForm {
display: block;
width: 899px;
height: 60px;
background-color: #606060;
color: #f7f6f6;
margin-top: -16px;
}
div.tituloForm:hover {
color: #c0c0c0;
}
div.tituloForm p {
text-indent: 15px;
font-size: 16px;
padding-top: 27px;
transition: color 0.5s;
}
p.itensFormAnunciar {
display: block;
width: 800px;
height: 40px;
margin: 15px auto 10px auto;
}
input.anunciarInput {
width: 800px;
height: 40px;
background-color: #d6d6d6;
border: transparent;
text-indent: 10px;
transition: background-color 0.5s;
border-radius: 2px;
font-size: 14px;
font-family: 'Raleway', sans-serif;
}
input.anunciarInput:hover {
background-color: #c0c0c0;
}
/* Formatação do fieldset "localização" do formulário */
fieldset.formLocalizacao {
display: block;
width: 899px;
height: 225px;
border: none;
margin: 0;
padding: 0;
}
div.tituloForm {
display: block;
width: 899px;
height: 60px;
background-color: #606060;
color: #f7f6f6;
margin-top: -16px;
}
div.tituloForm:hover {
color: #c0c0c0;
}
div.tituloForm p {
text-indent: 15px;
font-size: 16px;
padding-top: 27px;
transition: color 0.5s;
}
p.itensFormLocalizacao {
display: block;
width: 800px;
height: 40px;
margin: 15px auto 10px auto;
}
input.localizacaoInput {
width: 800px;
height: 40px;
background-color: #d6d6d6;
border: transparent;
text-indent: 10px;
transition: background-color 0.5s;
border-radius: 2px;
font-size: 14px;
font-family: 'Raleway', sans-serif;
}
input.localizacaoInput:hover {
background-color: #c0c0c0;
}
/* Formatação do fieldset "Mascote" do formulário */
fieldset.formAnimal {
display: block;
width: 899px;
height: 530px;
border: none;
margin: 0;
padding: 0;
}
div.tituloForm {
display: block;
width: 899px;
height: 60px;
background-color: #606060;
color: #f7f6f6;
margin-top: -16px;
font-family: 'Raleway', sans-serif;
}
div.tituloForm:hover {
color: #c0c0c0;
}
div.tituloForm p {
text-indent: 15px;
font-size: 16px;
padding-top: 27px;
transition: color 0.5s;
}
p.itensFormAnimal {
display: block;
width: 800px;
height: 40px;
margin: 15px auto 10px auto;
}
input.animalInput {
width: 800px;
height: 40px;
background-color: #d6d6d6;
border: transparent;
text-indent: 10px;
transition: background-color 0.5s;
border-radius: 2px;
font-size: 14px;
font-family: 'Raleway', sans-serif;
}
input.animalInput:hover {
background-color: #c0c0c0;
}
p.itensSelectFormAnimal {
display: block;
width: 800px;
height: 40px;
margin: 15px auto 10px auto;
}
span.esquerda {
width: 390px;
height: 40px;
float: left;
}
span.direita {
width: 390px;
height: 40px;
float: right;
}
select.itensSelecionarInput {
width: 390px;
height: 40px;
text-indent: 8px;
border: transparent;
border-radius: 2px;
background-color: #d6d6d6;
transition: background-color 0.5s;
color: #606060;
font-family: 'Raleway', sans-serif;
}
select.itensSelecionarInput:hover {
background-color: #c0c0c0;
}
p.caixasTextoForm {
width: 800px;
height: 120px;
margin: 20px auto 0 auto;
color: #606060;
}
textarea.caixaTextoAnimal {
min-width: 370px;
max-width: 370px;
min-height: 100px;
max-height: 100px;
overflow: auto;
background-color: #d6d6d6;
border: transparent;
border-radius: 2px;
padding: 10px;
font-family: 'Raleway', sans-serif;
font-size: 14px;
transition: background-color 0.5s;
}
textarea.caixaTextoAnimal:hover {
background-color: #c0c0c0;
}
textarea#animalCaracteristicas {
width: 390px;
height: 120px;
float: left;
}
textarea#animalDescricao {
width: 390px;
height: 120px;
float: right;
}
/* Formatação da área de inserção de imagens */
fieldset.formAnimalImages {
display: block;
width: 800px;
height: 185px;
margin: -35px auto 0 auto;
border: transparent;
padding: 0;
}
div.introFormImages {
display: block;
width: 800px;
height: 50px;
margin-top: -16px;
}
div.introFormImages p {
width: 800px;
height: 50px;
font-size: 16px;
color: #606060;
padding: 20px 15px 0 5px;
transition: color 0.5s;
}
div.introFormImages p:hover {
color: #444444;
}
p.itensFormImagens {
display: block;
margin-top: 20px;
width: 390px;
height: 110px;
}
input.imageInput {
display: block;
width: 335px;
height: 40px;
margin-bottom: 25px;
border-radius: 3px;
padding: 10px 15px 0 40px;
font-size: 14px;
color: #606060;
background-color: #d6d6d6;
transition: background-color 0.5s;
font-family: 'Raleway', sans-serif;
}
input.imageInput:hover {
background-color: #c0c0c0;
}
p#imagensEsquerda {
float: left;
}
p#imagensDireita {
float: right;
}
/* Formatação dos botões do rodapé do formulário */
fieldset#rodapeFormBotoes {
width: 800px;
height: 50px;
margin: 0 auto 40px auto;
border: transparent;
padding: 0;
}
div.buttons {
width: 390px;
height: 50px;
float: right;
}
span.left {
float: left;
}
span.right {
float: right;
}
input.formButtons {
width: 185px;
height: 50px;
border: transparent;
background-color: #113f90;
color: #c0c0c0;
transition: all 0.5s;
font-size: 14px;
border-radius: 3px;
}
input.formButtons:hover {
background-color: #0a2a5b;
color: #d6d6d6;
}
/* AD PAGE */
.error-box-ad-page {
width: 780px;
min-height: 10px;
padding: 10px;
line-height: 20px;
text-align: justify;
font-weight: bolder;
font-size: 14px;
margin: 30px auto -20px auto;
background-color: rgb(255, 186, 179);
color: #BF1300;
border: solid 1px #BF1300;
border-radius: 3px;
}
.success-box-ad-page {
width: 780px;
min-height: 10px;
padding: 10px;
line-height: 20px;
text-align: justify;
font-weight: bolder;
font-size: 14px;
margin: 30px auto -20px auto;
background-color: rgb(148, 216, 147);
color: #2B802A;
border: solid 1px #2B802A;
border-radius: 3px;
} | css/anunciar.css | @charset "UTF-8";
/* Formatação do formulário para a página de anúncio */
/* Formatação geral */
form#formularioAnunciar {
display: block;
width: 899px;
margin: auto;
margin-top: 55px;
font-family: 'Raleway', sans-serif;
}
label {
display: none;
}
/* Formatação do fieldset de "contato" do formulário */
fieldset.formContato {
display: block;
width: 899px;
height: 260px;
border: none;
margin: 0 0 20px 0;
padding: 0;
}
div.tituloForm {
display: block;
width: 899px;
height: 60px;
background-color: #606060;
color: #f7f6f6;
margin-top: -16px;
}
div.tituloForm:hover {
color: #c0c0c0;
}
div.tituloForm p {
text-indent: 15px;
font-size: 16px;
padding-top: 27px;
transition: color 0.5s;
}
p.itensFormAnunciar {
display: block;
width: 800px;
height: 40px;
margin: 15px auto 10px auto;
}
input.anunciarInput {
width: 800px;
height: 40px;
background-color: #d6d6d6;
border: transparent;
text-indent: 10px;
transition: background-color 0.5s;
border-radius: 2px;
font-size: 14px;
font-family: 'Raleway', sans-serif;
}
input.anunciarInput:hover {
background-color: #c0c0c0;
}
/* Formatação do fieldset "localização" do formulário */
fieldset.formLocalizacao {
display: block;
width: 899px;
height: 225px;
border: none;
margin: 0;
padding: 0;
}
div.tituloForm {
display: block;
width: 899px;
height: 60px;
background-color: #606060;
color: #f7f6f6;
margin-top: -16px;
}
div.tituloForm:hover {
color: #c0c0c0;
}
div.tituloForm p {
text-indent: 15px;
font-size: 16px;
padding-top: 27px;
transition: color 0.5s;
}
p.itensFormLocalizacao {
display: block;
width: 800px;
height: 40px;
margin: 15px auto 10px auto;
}
input.localizacaoInput {
width: 800px;
height: 40px;
background-color: #d6d6d6;
border: transparent;
text-indent: 10px;
transition: background-color 0.5s;
border-radius: 2px;
font-size: 14px;
font-family: 'Raleway', sans-serif;
}
input.localizacaoInput:hover {
background-color: #c0c0c0;
}
/* Formatação do fieldset "Mascote" do formulário */
fieldset.formAnimal {
display: block;
width: 899px;
height: 530px;
border: none;
margin: 0;
padding: 0;
}
div.tituloForm {
display: block;
width: 899px;
height: 60px;
background-color: #606060;
color: #f7f6f6;
margin-top: -16px;
font-family: 'Raleway', sans-serif;
}
div.tituloForm:hover {
color: #c0c0c0;
}
div.tituloForm p {
text-indent: 15px;
font-size: 16px;
padding-top: 27px;
transition: color 0.5s;
}
p.itensFormAnimal {
display: block;
width: 800px;
height: 40px;
margin: 15px auto 10px auto;
}
input.animalInput {
width: 800px;
height: 40px;
background-color: #d6d6d6;
border: transparent;
text-indent: 10px;
transition: background-color 0.5s;
border-radius: 2px;
font-size: 14px;
font-family: 'Raleway', sans-serif;
}
input.animalInput:hover {
background-color: #c0c0c0;
}
p.itensSelectFormAnimal {
display: block;
width: 800px;
height: 40px;
margin: 15px auto 10px auto;
}
span.esquerda {
width: 390px;
height: 40px;
float: left;
}
span.direita {
width: 390px;
height: 40px;
float: right;
}
select.itensSelecionarInput {
width: 390px;
height: 40px;
text-indent: 8px;
border: transparent;
border-radius: 2px;
background-color: #d6d6d6;
transition: background-color 0.5s;
color: #606060;
font-family: 'Raleway', sans-serif;
}
select.itensSelecionarInput:hover {
background-color: #c0c0c0;
}
p.caixasTextoForm {
width: 800px;
height: 120px;
margin: 20px auto 0 auto;
color: #606060;
}
textarea.caixaTextoAnimal {
min-width: 370px;
max-width: 370px;
min-height: 100px;
max-height: 100px;
overflow: auto;
background-color: #d6d6d6;
border: transparent;
border-radius: 2px;
padding: 10px;
font-family: 'Raleway', sans-serif;
font-size: 14px;
transition: background-color 0.5s;
}
textarea.caixaTextoAnimal:hover {
background-color: #c0c0c0;
}
textarea#animalCaracteristicas {
width: 390px;
height: 120px;
float: left;
}
textarea#animalDescricao {
width: 390px;
height: 120px;
float: right;
}
/* Formatação da área de inserção de imagens */
fieldset.formAnimalImages {
display: block;
width: 800px;
height: 185px;
margin: -35px auto 0 auto;
border: transparent;
padding: 0;
}
div.introFormImages {
display: block;
width: 800px;
height: 50px;
margin-top: -16px;
}
div.introFormImages p {
width: 800px;
height: 50px;
font-size: 16px;
color: #606060;
padding: 20px 15px 0 5px;
transition: color 0.5s;
}
div.introFormImages p:hover {
color: #444444;
}
p.itensFormImagens {
display: block;
margin-top: 20px;
width: 390px;
height: 110px;
}
input.imageInput {
display: block;
width: 335px;
height: 40px;
margin-bottom: 25px;
border-radius: 3px;
padding: 10px 15px 0 40px;
font-size: 14px;
color: #606060;
background-color: #d6d6d6;
transition: background-color 0.5s;
font-family: 'Raleway', sans-serif;
}
input.imageInput:hover {
background-color: #c0c0c0;
}
p#imagensEsquerda {
float: left;
}
p#imagensDireita {
float: right;
}
/* Formatação dos botões do rodapé do formulário */
fieldset#rodapeFormBotoes {
width: 800px;
height: 50px;
margin: 0 auto 40px auto;
border: transparent;
padding: 0;
}
div.buttons {
width: 390px;
height: 50px;
float: right;
}
span.left {
float: left;
}
span.right {
float: right;
}
input.formButtons {
width: 185px;
height: 50px;
border: transparent;
background-color: #113f90;
color: #c0c0c0;
transition: all 0.5s;
font-size: 14px;
border-radius: 3px;
}
input.formButtons:hover {
background-color: #0a2a5b;
color: #d6d6d6;
}
/* AD PAGE */
.error-box-ad-page {
width: 780px;
min-height: 10px;
padding: 10px;
line-height: 20px;
text-align: justify;
font-weight: bolder;
font-size: 14px;
margin: 30px auto -20px auto;
background-color: rgb(255, 186, 179);
color: #BF1300;
border: solid 1px #BF1300;
border-radius: 3px;
}
.success-box-ad-page {
width: 780px;
min-height: 10px;
padding: 10px;
line-height: 20px;
text-align: justify;
font-weight: bolder;
font-size: 14px;
margin: 30px auto -20px auto;
background-color: rgb(148, 216, 147);
color: #2B802A;
border: solid 1px #2B802A;
border-radius: 3px;
} | 0.304042 | 0.073231 |
.container {
display: grid;
grid-template-columns: max-content 1fr 25ch max-content;
grid-template-rows: 1fr max-content;
align-items: end;
column-gap: 1rem;
margin: 0;
border: 1px solid var(--light-gray__4);
padding: 1rem;
line-height: initial;
transition: 200ms ease-in-out;
box-shadow: 0 0 0.55rem #dddddd22;
}
.container > * {
--margin-bottom: 0.45rem;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.container:hover {
border-color: var(--accent-color);
}
.image {
grid-column: 1 / 2;
grid-row: 1 / 3;
width: 6rem;
margin: 0;
padding: 0;
}
.title {
grid-column: 2 / 4;
grid-row: 1 / 2;
margin-bottom: 0.7rem;
font-size: 2.1rem;
}
.artist {
grid-column: 2 / 3;
grid-row: 2 / 3;
margin-bottom: var(--margin-bottom);
font-size: 1.2rem;
}
.artist span {
color: var(--light-gray__6);
}
.album {
grid-column: 3 / 4;
grid-row: 1 / 3;
margin-bottom: var(--margin-bottom);
font-size: 0.8rem;
}
.album span {
color: var(--light-gray__6);
}
.link {
grid-column: 4 / 5;
grid-row: 2 / 3;
margin-bottom: var(--margin-bottom);
font-size: 1.1rem;
overflow: visible;
}
.seeMore {
cursor: pointer;
grid-column: -1 / -2;
grid-row: 1 / 2;
align-self: start;
justify-self: end;
display: flex;
gap: 0.4rem;
}
.seeMore > * {
transition: 200ms ease;
}
.seeMore > span {
align-self: start;
margin-bottom: auto;
font-size: 0.7rem;
line-height: initial;
color: var(--light-gray__6);
}
.seeMore > svg {
width: 1rem;
vertical-align: middle;
fill: var(--light-gray__6);
}
.seeMore:hover > * {
color: var(--light-gray);
fill: var(--light-gray);
}
@media only screen and (max-width: 101.35em) {
.container {
grid-template-columns: max-content 1fr 19ch max-content;
}
}
@media only screen and (max-width: 80.75em) {
.container:hover {
border-color: var(--light-gray__4);
}
.title {
margin-bottom: 0.8rem;
font-size: 2rem;
}
.artist {
font-size: 1.15rem;
}
.link a {
font-size: 1.05rem;
}
.seeMore > span {
text-decoration: underline;
text-underline-offset: 1px;
color: var(--light-gray);
}
.seeMore > svg {
fill: var(--light-gray);
}
}
@media only screen and (max-width: 55em) {
.container {
grid-template-columns: max-content 1fr 22vw max-content;
}
}
@media only screen and (max-width: 43.25em) {
.container {
grid-template-columns:
[content-start image-start] max-content
[image-end info-start] 1fr
[link-start] max-content
[link-end info-end content-end];
grid-template-rows: 1fr max-content;
row-gap: 0.8rem;
column-gap: 0.7rem;
align-items: center;
padding: 0.8rem 0.7rem;
}
.image {
grid-column: image-start / image-end;
grid-row: 1 / 2;
width: 5rem;
}
.info {
grid-column: info-start / info-end;
grid-row: 1 / 2;
display: flex;
flex-direction: column;
}
.info > * {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.title {
margin: 0;
margin-bottom: 0.1rem;
font-size: 1.5rem;
}
.artist {
margin: 0;
margin-bottom: 0.25rem;
font-size: 1rem;
}
.album {
margin: 0;
font-size: 0.8rem;
}
.link {
grid-column: content-start / link-start;
grid-row: 2 / 3;
margin: 0;
font-size: 1rem;
}
.seeMore {
grid-column: link-start / link-end;
grid-row: 2 / 3;
margin: 0;
align-self: inherit;
}
} | components/Track.module.css | .container {
display: grid;
grid-template-columns: max-content 1fr 25ch max-content;
grid-template-rows: 1fr max-content;
align-items: end;
column-gap: 1rem;
margin: 0;
border: 1px solid var(--light-gray__4);
padding: 1rem;
line-height: initial;
transition: 200ms ease-in-out;
box-shadow: 0 0 0.55rem #dddddd22;
}
.container > * {
--margin-bottom: 0.45rem;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.container:hover {
border-color: var(--accent-color);
}
.image {
grid-column: 1 / 2;
grid-row: 1 / 3;
width: 6rem;
margin: 0;
padding: 0;
}
.title {
grid-column: 2 / 4;
grid-row: 1 / 2;
margin-bottom: 0.7rem;
font-size: 2.1rem;
}
.artist {
grid-column: 2 / 3;
grid-row: 2 / 3;
margin-bottom: var(--margin-bottom);
font-size: 1.2rem;
}
.artist span {
color: var(--light-gray__6);
}
.album {
grid-column: 3 / 4;
grid-row: 1 / 3;
margin-bottom: var(--margin-bottom);
font-size: 0.8rem;
}
.album span {
color: var(--light-gray__6);
}
.link {
grid-column: 4 / 5;
grid-row: 2 / 3;
margin-bottom: var(--margin-bottom);
font-size: 1.1rem;
overflow: visible;
}
.seeMore {
cursor: pointer;
grid-column: -1 / -2;
grid-row: 1 / 2;
align-self: start;
justify-self: end;
display: flex;
gap: 0.4rem;
}
.seeMore > * {
transition: 200ms ease;
}
.seeMore > span {
align-self: start;
margin-bottom: auto;
font-size: 0.7rem;
line-height: initial;
color: var(--light-gray__6);
}
.seeMore > svg {
width: 1rem;
vertical-align: middle;
fill: var(--light-gray__6);
}
.seeMore:hover > * {
color: var(--light-gray);
fill: var(--light-gray);
}
@media only screen and (max-width: 101.35em) {
.container {
grid-template-columns: max-content 1fr 19ch max-content;
}
}
@media only screen and (max-width: 80.75em) {
.container:hover {
border-color: var(--light-gray__4);
}
.title {
margin-bottom: 0.8rem;
font-size: 2rem;
}
.artist {
font-size: 1.15rem;
}
.link a {
font-size: 1.05rem;
}
.seeMore > span {
text-decoration: underline;
text-underline-offset: 1px;
color: var(--light-gray);
}
.seeMore > svg {
fill: var(--light-gray);
}
}
@media only screen and (max-width: 55em) {
.container {
grid-template-columns: max-content 1fr 22vw max-content;
}
}
@media only screen and (max-width: 43.25em) {
.container {
grid-template-columns:
[content-start image-start] max-content
[image-end info-start] 1fr
[link-start] max-content
[link-end info-end content-end];
grid-template-rows: 1fr max-content;
row-gap: 0.8rem;
column-gap: 0.7rem;
align-items: center;
padding: 0.8rem 0.7rem;
}
.image {
grid-column: image-start / image-end;
grid-row: 1 / 2;
width: 5rem;
}
.info {
grid-column: info-start / info-end;
grid-row: 1 / 2;
display: flex;
flex-direction: column;
}
.info > * {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.title {
margin: 0;
margin-bottom: 0.1rem;
font-size: 1.5rem;
}
.artist {
margin: 0;
margin-bottom: 0.25rem;
font-size: 1rem;
}
.album {
margin: 0;
font-size: 0.8rem;
}
.link {
grid-column: content-start / link-start;
grid-row: 2 / 3;
margin: 0;
font-size: 1rem;
}
.seeMore {
grid-column: link-start / link-end;
grid-row: 2 / 3;
margin: 0;
align-self: inherit;
}
} | 0.64232 | 0.160661 |
display: none;
text-align: center;
margin: 0 auto;
/* background-color: #ffffff; */
}
#panel-edit {
font-family: Arial, sans-serif;
/* width: 300px;
height: 630px;
font-size: 30px; */
margin: 0 auto;
}
#banner {
max-width: 90vw;
}
#yeshu {
width: 100%;
height: 100%;
/* width: auto;
height: 0; */
margin: 0 auto;
background-color: #000;
border: 2px solid #feef50;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 6px 0;
font-weight: bold;
text-align: center;
line-height: 1;
/* width: 300px; */
transition: all 500ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.yeshu-center {
margin: 0 12px;
background-color: #feef50;
padding: 3px;
}
.yeshu-title {
color: #000;
height: 5%;
font-size: 33px;
}
.yeshu-inner {
background-color: #0021fc;
border: 1.2px solid #000000;
color: #ffffff;
padding: 1.2px 1.2px 12px;
}
.yeshu-zhengzong {
font-size: 33px;
vertical-align: baseline;
margin: 3px 0;
}
.yeshu-brand {
border: 1.2px solid #feef50;
border-radius: 15px;
background-color: #fd0000;
padding: 3px;
font-size: 108px;
}
.yeshu-year {
margin: 3px 0;
text-shadow: -1.2px -1.2px 0 #000, 1.2px -1.2px 0 #000, -1.2px 1.2px 0 #000, 1.2px 1.2px 0 #000;
font-size: 3.3rem;
}
.yeshu-island {
color: #feef50;
font-size: 36px;
}
.yeshu-fresh {
border: 2.4px solid #fd0000;
border-radius: 3px;
background-color: #feef50;
color: #fd0000;
margin: 3px -3px;
padding: 3px;
font-size: 36px;
}
.yeshu-xianzha {
color: #feef50;
font-size: 120px;
text-shadow: -1.2px -1.2px 0 #000, 1.2px -1.2px 0 #000, -1.2px 1.2px 0 #000, 1.2px 1.2px 0 #000;
}
.yeshu-no-addon {
border: 1.8px solid #feef50;
border-radius: 9px;
background-color: #fd0000;
padding: 3px;
margin: -3px 3px;
color: #ffffff;
}
.yeshu-no-addon > p {
line-height: 1;
margin: 0;
font-size: 36px;
}
.yeshu-no-addon > p:first-child {
font-size: 45px;
}
.yeshu {
transition: all 250ms ease-out;
}
.yeshu:focus {
--shadow-config: 0 0 0 0.3rem;
outline: none;
border-color: #adb5bd;
box-shadow: var(--shadow-config) #80808080;
text-shadow: 0 0 50px black;
} | generator/coconut/yeshu.css | display: none;
text-align: center;
margin: 0 auto;
/* background-color: #ffffff; */
}
#panel-edit {
font-family: Arial, sans-serif;
/* width: 300px;
height: 630px;
font-size: 30px; */
margin: 0 auto;
}
#banner {
max-width: 90vw;
}
#yeshu {
width: 100%;
height: 100%;
/* width: auto;
height: 0; */
margin: 0 auto;
background-color: #000;
border: 2px solid #feef50;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 6px 0;
font-weight: bold;
text-align: center;
line-height: 1;
/* width: 300px; */
transition: all 500ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.yeshu-center {
margin: 0 12px;
background-color: #feef50;
padding: 3px;
}
.yeshu-title {
color: #000;
height: 5%;
font-size: 33px;
}
.yeshu-inner {
background-color: #0021fc;
border: 1.2px solid #000000;
color: #ffffff;
padding: 1.2px 1.2px 12px;
}
.yeshu-zhengzong {
font-size: 33px;
vertical-align: baseline;
margin: 3px 0;
}
.yeshu-brand {
border: 1.2px solid #feef50;
border-radius: 15px;
background-color: #fd0000;
padding: 3px;
font-size: 108px;
}
.yeshu-year {
margin: 3px 0;
text-shadow: -1.2px -1.2px 0 #000, 1.2px -1.2px 0 #000, -1.2px 1.2px 0 #000, 1.2px 1.2px 0 #000;
font-size: 3.3rem;
}
.yeshu-island {
color: #feef50;
font-size: 36px;
}
.yeshu-fresh {
border: 2.4px solid #fd0000;
border-radius: 3px;
background-color: #feef50;
color: #fd0000;
margin: 3px -3px;
padding: 3px;
font-size: 36px;
}
.yeshu-xianzha {
color: #feef50;
font-size: 120px;
text-shadow: -1.2px -1.2px 0 #000, 1.2px -1.2px 0 #000, -1.2px 1.2px 0 #000, 1.2px 1.2px 0 #000;
}
.yeshu-no-addon {
border: 1.8px solid #feef50;
border-radius: 9px;
background-color: #fd0000;
padding: 3px;
margin: -3px 3px;
color: #ffffff;
}
.yeshu-no-addon > p {
line-height: 1;
margin: 0;
font-size: 36px;
}
.yeshu-no-addon > p:first-child {
font-size: 45px;
}
.yeshu {
transition: all 250ms ease-out;
}
.yeshu:focus {
--shadow-config: 0 0 0 0.3rem;
outline: none;
border-color: #adb5bd;
box-shadow: var(--shadow-config) #80808080;
text-shadow: 0 0 50px black;
} | 0.134094 | 0.070017 |
margin-top: 20px;
color: white;
}
body {
margin: 0;
padding: 0;
}
button {
background-color: #4CAF50;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
}
body {
font-family: 'Lato', sans-serif;
font-size: 16px
}
body.active {
overflow: hidden;
z-index: -1
}
@keyframes dropHeader {
0% {
transform: translateY(-100%)
}
100% {
transform: translateY(0)
}
}
header {
position: absolute;
top: 0;
left: 0;
right: 0;
text-align: center;
z-index: 10;
animation-name: dropHeader;
animation-iteration-count: 1;
animation-timing-function: ease;
animation-duration: 0.75s
}
header ul {
display: inline-block;
background: rgba(255, 255, 255, 0.7);
text-align: center;
padding: 10px;
margin: 0;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px
}
header li {
display: inline-block
}
header a {
display: block;
color:#2f363b;
padding: 10px
}
header a:hover {
color: #000;
text-decoration: none;
background: #eee;
border-radius: 4px
}
header a:focus {
color: #000;
text-decoration: none
}
header.active {
display: block
}
header.sticky {
position: fixed;
z-index: 999
}
#menu.active {
display: block
}
#mobile-menu-open {
display: none;
cursor: pointer;
position: fixed;
right: 15px;
top: 10px;
color: #000;
font-size: 1.5em;
z-index: 20;
padding: 0 7px;
border-radius: 4px;
background: rgba(255, 255, 255, 0.7)
}
#mobile-menu-close {
display: none;
text-align: right;
width: 100%;
background: #fff;
font-size: 1.5em;
padding-right: 15px;
padding-top: 10px;
cursor: pointer;
color: #000
}
#mobile-menu-close span {
font-size: 0.5em;
text-transform: uppercase
}
#mobile-menu-close i {
vertical-align: middle
}
footer {
padding: 50px 0
}
.copyright {
padding-top: 20px
}
.copyright p {
margin: 0;
color: #74808a
}
.top {
text-align: center
}
.top span {
cursor: pointer;
display: block;
margin: 15px auto 0 auto;
width: 35px;
height: 35px;
border-radius: 50%;
border: 3px solid #b9bfc4;
text-align: center
}
.top i {
color: #74808a
}
.social {
text-align: right
}
.social ul {
margin: 5px 0 0 0;
padding: 0
}
.social li {
display: inline-block;
font-size: 1.25em;
list-style: none
}
.social a {
display: block;
color: #74808a;
padding: 10px
}
.social a:hover {
color: #000
}
.btn-rounded-white {
display: inline-block;
color: #fff;
padding: 15px 25px;
border: 3px solid #fff;
border-radius: 30px;
transition: .5s ease all
}
.btn-rounded-white:hover {
color: #000;
background: #fff;
text-decoration: none
}
.shadow {
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24)
}
.shadow-large {
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08), 0 3px 6px rgba(0, 0, 0, 0.15)
}
.heading {
position: relative;
display: inline-block;
font-size: 2em;
font-weight: 300;
margin: 0 0 30px 0
}
.heading:after {
position: absolute;
content: '';
top: 100%;
height: 1px;
width: 50px;
left: 0;
right: 0;
margin: 0 auto;
background: #000
}
.background-alt {
background: #000;
}
#lead {
position: relative;
height: 100vh;
min-height: 500px;
max-height: 1080px;
background: url(../images/lead-bg.jpg);
background-size: cover;
padding: 15px;
overflow: hidden
}
#contact {
padding: 50px 15px;
text-align: center;
background: url(../images/lead-bg.jpg);
background-size: cover;
overflow: hidden
}
#lead-content {
position: absolute;
z-index: 10;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center
}
#lead-content h1,
#lead-content h2 {
margin: 0
}
#lead-content h1 {
color: #fff;
font-weight: 900;
font-size: 5em;
text-transform: uppercase;
letter-spacing: 0.05em;
line-height: 0.9em
}
#lead-content h2 {
color: #b8bcbe;
font-weight: 500;
font-size: 2.25em;
margin-bottom: 15px
}
#contact-content h2 {
color: #b8bcbe;
font-weight: 500;
font-size: 2.25em;
margin-bottom: 15px
}
#lead-overlay {
position: absolute;
height: 100%;
width: 100%;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: raga(0, 0, 0, 0.6);
z-index: 1
}
#contact-overlay {
position: absolute;
height: 100%;
width: 100%;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: raga(0, 0, 0, 0.6);
z-index: 1
}
#lead-down {
position: absolute;
left: 0;
right: 0;
width: 100%;
text-align: center;
z-index: 10;
bottom: 15px;
color: #fff
}
#lead-down span {
cursor: pointer;
display: block;
margin: 0 auto;
width: 35px;
height: 35px;
border-radius: 50%;
border: 3px solid #fff;
text-align: center;
}
#lead-down i {
animation: pulsate 1.5s ease;
animation-iteration-count: infinite;
padding-top: 5px
}
@keyframes pulsate {
0% {
transform: scale(1, 1)
}
50% {
transform: scale(1.2, 1.2)
}
100% {
transform: scale(1, 1)
}
}
#about {
padding: 75px 15px;
border-bottom: 1px solid #dcd9d9;
background: black;
}
#about h2 {
color: #fff;
}
#about p {
color: #04d45b;
margin: 0
}
#experience {
padding: 50px 15px;
text-align: center;
background: #5eff87;
}
#experience p {
color: #000;
margin: 0
}
#skills {
padding: 50px 15px;
text-align: center;
background: #127a3e;
}
#skills-overlay {
height: 100%;
width: 100%;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: raga(0, 0, 0, 0.6);
}
#skills h2 {
color: #fff;
margin-bottom: 50px
}
#skills ul {
display: block;
margin: 0 auto;
padding: 0;
max-width: 800px
}
#skills li {
display: inline-block;
margin: 7px;
padding: 5px 10px;
color: #374054;
background: #e4e4ea;
list-style: none;
cursor: default;
font-size: 1.2em
}
#contact h2 {
margin: 0 0 15px 0;
color: #fff;
font-weight: 500
}
.optional-section {
padding: 50px 15px;
text-align: center;
border-top: 1px solid #dcd9d9
}
.optional-section h2 {
color: #374054
}
.optional-section-block {
max-width: 700px;
margin: 0 auto 30px auto;
padding: 15px;
border: 1px solid #dcd9d9;
background: #fff;
text-align: left
}
.optional-section-block h3 {
font-weight: 500;
margin: 0 0 15px 0;
color: #374054
}
.optional-section-block h4 {
color: #74808a;
clear: both;
font-weight: 500;
margin: 0 0 15px 0
}
.optional-section-block p,
.optional-section-block ul {
margin: 0 0 15px 0;
color: #74808a;
font-size: 0.9em
}
.optional-section-block ul {
padding: 0 0 0 15px
}
@media only screen and (max-width: 992px) {
#lead {
height: auto;
min-height: auto;
max-height: auto;
padding: 100px 15px
}
#lead-content {
position: relative;
transform: none;
left: auto;
top: auto
}
#lead-content h1 {
font-size: 3em
}
#lead-content h2 {
font-size: 1.75em
}
#about {
text-align: center
}
#about p {
text-align: left
}
}
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
background-color: rgba(255,255,255,0.8);
max-width: 300px;
margin: auto;
text-align: center;
}
.title {
color: grey;
font-size: 18px;
}
@media only screen and (max-width: 768px) {
header {
position: fixed;
display: none;
z-index: 999;
animation: none;
bottom: 0;
height: 100%
}
#mobile-menu-open,
#mobile-menu-close {
display: block
}
#menu {
height: 100%;
overflow-y: auto;
box-shadow: none;
border-radius: 0;
width: 100%
}
#menu li {
display: block;
margin-bottom: 10px
}
#lead-content h1 {
font-size: 2em
}
#lead-content h2 {
font-size: 1.3em
}
#lead-content a {
padding: 10px 20px
}
#lead-down {
display: none
}
.education-block h3,
.education-block span {
float: none
}
.project-image {
display: none
}
.project-info {
position: relative;
margin: 0;
padding: 30px 15px;
top: auto;
transform: none
}
footer {
text-align: center
}
.social {
text-align: center
}
}
@media only screen and (max-width: 480px) {
#lead-content h1 {
font-size: 1.5em
}
#lead-content h2 {
font-size: 1em
}
#lead-content a {
font-size: 0.9em;
padding: 5px 10px
}
}
.fa-facebook, .fa-facebook-square {
color: #3b5998
}
.fa-twitter, .fa-twitter-square {
color: #00aced
}
.fa-google-plus.fa-colored {
color: #dc4e41;
}
.fa-google-plus-square.fa-colored {
color: #dc4e41;
}
.fa-linkedin, .fa-linkedin-square {
color: #007bb6
}
.fa-instagram {
color: #3f729b;
}
.fa-git,
.fa-git-square {
color: #000;
}
.fa-github,
.fa-github-alt,
.fa-github-square {
color: #000;
} | portfolio/src/main/webapp/style.css | margin-top: 20px;
color: white;
}
body {
margin: 0;
padding: 0;
}
button {
background-color: #4CAF50;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
}
body {
font-family: 'Lato', sans-serif;
font-size: 16px
}
body.active {
overflow: hidden;
z-index: -1
}
@keyframes dropHeader {
0% {
transform: translateY(-100%)
}
100% {
transform: translateY(0)
}
}
header {
position: absolute;
top: 0;
left: 0;
right: 0;
text-align: center;
z-index: 10;
animation-name: dropHeader;
animation-iteration-count: 1;
animation-timing-function: ease;
animation-duration: 0.75s
}
header ul {
display: inline-block;
background: rgba(255, 255, 255, 0.7);
text-align: center;
padding: 10px;
margin: 0;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px
}
header li {
display: inline-block
}
header a {
display: block;
color:#2f363b;
padding: 10px
}
header a:hover {
color: #000;
text-decoration: none;
background: #eee;
border-radius: 4px
}
header a:focus {
color: #000;
text-decoration: none
}
header.active {
display: block
}
header.sticky {
position: fixed;
z-index: 999
}
#menu.active {
display: block
}
#mobile-menu-open {
display: none;
cursor: pointer;
position: fixed;
right: 15px;
top: 10px;
color: #000;
font-size: 1.5em;
z-index: 20;
padding: 0 7px;
border-radius: 4px;
background: rgba(255, 255, 255, 0.7)
}
#mobile-menu-close {
display: none;
text-align: right;
width: 100%;
background: #fff;
font-size: 1.5em;
padding-right: 15px;
padding-top: 10px;
cursor: pointer;
color: #000
}
#mobile-menu-close span {
font-size: 0.5em;
text-transform: uppercase
}
#mobile-menu-close i {
vertical-align: middle
}
footer {
padding: 50px 0
}
.copyright {
padding-top: 20px
}
.copyright p {
margin: 0;
color: #74808a
}
.top {
text-align: center
}
.top span {
cursor: pointer;
display: block;
margin: 15px auto 0 auto;
width: 35px;
height: 35px;
border-radius: 50%;
border: 3px solid #b9bfc4;
text-align: center
}
.top i {
color: #74808a
}
.social {
text-align: right
}
.social ul {
margin: 5px 0 0 0;
padding: 0
}
.social li {
display: inline-block;
font-size: 1.25em;
list-style: none
}
.social a {
display: block;
color: #74808a;
padding: 10px
}
.social a:hover {
color: #000
}
.btn-rounded-white {
display: inline-block;
color: #fff;
padding: 15px 25px;
border: 3px solid #fff;
border-radius: 30px;
transition: .5s ease all
}
.btn-rounded-white:hover {
color: #000;
background: #fff;
text-decoration: none
}
.shadow {
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24)
}
.shadow-large {
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08), 0 3px 6px rgba(0, 0, 0, 0.15)
}
.heading {
position: relative;
display: inline-block;
font-size: 2em;
font-weight: 300;
margin: 0 0 30px 0
}
.heading:after {
position: absolute;
content: '';
top: 100%;
height: 1px;
width: 50px;
left: 0;
right: 0;
margin: 0 auto;
background: #000
}
.background-alt {
background: #000;
}
#lead {
position: relative;
height: 100vh;
min-height: 500px;
max-height: 1080px;
background: url(../images/lead-bg.jpg);
background-size: cover;
padding: 15px;
overflow: hidden
}
#contact {
padding: 50px 15px;
text-align: center;
background: url(../images/lead-bg.jpg);
background-size: cover;
overflow: hidden
}
#lead-content {
position: absolute;
z-index: 10;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center
}
#lead-content h1,
#lead-content h2 {
margin: 0
}
#lead-content h1 {
color: #fff;
font-weight: 900;
font-size: 5em;
text-transform: uppercase;
letter-spacing: 0.05em;
line-height: 0.9em
}
#lead-content h2 {
color: #b8bcbe;
font-weight: 500;
font-size: 2.25em;
margin-bottom: 15px
}
#contact-content h2 {
color: #b8bcbe;
font-weight: 500;
font-size: 2.25em;
margin-bottom: 15px
}
#lead-overlay {
position: absolute;
height: 100%;
width: 100%;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: raga(0, 0, 0, 0.6);
z-index: 1
}
#contact-overlay {
position: absolute;
height: 100%;
width: 100%;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: raga(0, 0, 0, 0.6);
z-index: 1
}
#lead-down {
position: absolute;
left: 0;
right: 0;
width: 100%;
text-align: center;
z-index: 10;
bottom: 15px;
color: #fff
}
#lead-down span {
cursor: pointer;
display: block;
margin: 0 auto;
width: 35px;
height: 35px;
border-radius: 50%;
border: 3px solid #fff;
text-align: center;
}
#lead-down i {
animation: pulsate 1.5s ease;
animation-iteration-count: infinite;
padding-top: 5px
}
@keyframes pulsate {
0% {
transform: scale(1, 1)
}
50% {
transform: scale(1.2, 1.2)
}
100% {
transform: scale(1, 1)
}
}
#about {
padding: 75px 15px;
border-bottom: 1px solid #dcd9d9;
background: black;
}
#about h2 {
color: #fff;
}
#about p {
color: #04d45b;
margin: 0
}
#experience {
padding: 50px 15px;
text-align: center;
background: #5eff87;
}
#experience p {
color: #000;
margin: 0
}
#skills {
padding: 50px 15px;
text-align: center;
background: #127a3e;
}
#skills-overlay {
height: 100%;
width: 100%;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: raga(0, 0, 0, 0.6);
}
#skills h2 {
color: #fff;
margin-bottom: 50px
}
#skills ul {
display: block;
margin: 0 auto;
padding: 0;
max-width: 800px
}
#skills li {
display: inline-block;
margin: 7px;
padding: 5px 10px;
color: #374054;
background: #e4e4ea;
list-style: none;
cursor: default;
font-size: 1.2em
}
#contact h2 {
margin: 0 0 15px 0;
color: #fff;
font-weight: 500
}
.optional-section {
padding: 50px 15px;
text-align: center;
border-top: 1px solid #dcd9d9
}
.optional-section h2 {
color: #374054
}
.optional-section-block {
max-width: 700px;
margin: 0 auto 30px auto;
padding: 15px;
border: 1px solid #dcd9d9;
background: #fff;
text-align: left
}
.optional-section-block h3 {
font-weight: 500;
margin: 0 0 15px 0;
color: #374054
}
.optional-section-block h4 {
color: #74808a;
clear: both;
font-weight: 500;
margin: 0 0 15px 0
}
.optional-section-block p,
.optional-section-block ul {
margin: 0 0 15px 0;
color: #74808a;
font-size: 0.9em
}
.optional-section-block ul {
padding: 0 0 0 15px
}
@media only screen and (max-width: 992px) {
#lead {
height: auto;
min-height: auto;
max-height: auto;
padding: 100px 15px
}
#lead-content {
position: relative;
transform: none;
left: auto;
top: auto
}
#lead-content h1 {
font-size: 3em
}
#lead-content h2 {
font-size: 1.75em
}
#about {
text-align: center
}
#about p {
text-align: left
}
}
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
background-color: rgba(255,255,255,0.8);
max-width: 300px;
margin: auto;
text-align: center;
}
.title {
color: grey;
font-size: 18px;
}
@media only screen and (max-width: 768px) {
header {
position: fixed;
display: none;
z-index: 999;
animation: none;
bottom: 0;
height: 100%
}
#mobile-menu-open,
#mobile-menu-close {
display: block
}
#menu {
height: 100%;
overflow-y: auto;
box-shadow: none;
border-radius: 0;
width: 100%
}
#menu li {
display: block;
margin-bottom: 10px
}
#lead-content h1 {
font-size: 2em
}
#lead-content h2 {
font-size: 1.3em
}
#lead-content a {
padding: 10px 20px
}
#lead-down {
display: none
}
.education-block h3,
.education-block span {
float: none
}
.project-image {
display: none
}
.project-info {
position: relative;
margin: 0;
padding: 30px 15px;
top: auto;
transform: none
}
footer {
text-align: center
}
.social {
text-align: center
}
}
@media only screen and (max-width: 480px) {
#lead-content h1 {
font-size: 1.5em
}
#lead-content h2 {
font-size: 1em
}
#lead-content a {
font-size: 0.9em;
padding: 5px 10px
}
}
.fa-facebook, .fa-facebook-square {
color: #3b5998
}
.fa-twitter, .fa-twitter-square {
color: #00aced
}
.fa-google-plus.fa-colored {
color: #dc4e41;
}
.fa-google-plus-square.fa-colored {
color: #dc4e41;
}
.fa-linkedin, .fa-linkedin-square {
color: #007bb6
}
.fa-instagram {
color: #3f729b;
}
.fa-git,
.fa-git-square {
color: #000;
}
.fa-github,
.fa-github-alt,
.fa-github-square {
color: #000;
} | 0.397938 | 0.111096 |
@font-face {
font-family: "segoe";
src: url(../fonts/segoe-ui-regular.ttf) format("truetype");
font-weight: 400;
}
@font-face {
font-family: "Segoe";
src: url(../fonts/segoe-ui-bold.ttf) format("truetype");
font-weight: 700;
}
/*Variáveis*/
:root {
--background-color: #fafafa;
--white: #ffffff;
--border-color: 112, 112, 112;
--placeholder-color: #837979;
--or-text: #8e8e8e;
--fb-logo: #385185;
--log-in-button: #0095f6;
--black: #262626;
--footer-links: #1e4f7c;
--copyright-gray: #bfbfbf;
}
/*reset do navegador*/
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
font-weight: 400;
}
a {
text-decoration: none;
}
ul {
list-style-type: none;
}
html {
font-size: 62.5%;
}
body {
font-family: "Segoe";
background: var(--background-color);
}
/*********
* Login *
*********/
/*Container login*/
.login {
background: var(--white);
width: 35rem;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
border: 0.1rem solid rgba(var(--border-color), 0.5);
padding: 1.5rem 4rem;
margin-top: 4rem;
margin-bottom: 2rem;
}
/* Logo */
.logo {
width: 19rem;
margin-bottom: 1rem;
}
/* Formulário de login */
.login-form {
display: flex;
flex-direction: column;
width: 100%;
}
/* Estilos em comum para os campos do formulário e o botão de login */
.login-form input,
.log-in-button {
padding: 1rem 0 1rem 1rem;
border-radius: 0.5rem;
}
/* Estilos em comum para os campos de formulário e seus marcadores de posição */
.login-form input,
.login-form input::placeholder {
font-size: 1.1rem;
font-family: "Segoe";
}
/* Campos do formulário */
.login-form input {
background: var(--background-color);
border: 0.1rem solid rgba(var(--border-color), 0.5);
outline: none;
}
/* Estilos para o campo de texto do nome do usuário */
.login-form input[type="text"] {
margin-bottom: 0.5rem;
}
/* Espaço reservado para os campos de texto */
.login-form input::placeholder {
color: var(--placeholder-color);
}
/* Estilos para os campos de texto quando eles são selecionados */
.login-form input:focus {
border-color: rgba(var(--border-color), 0.8);
}
/* Botão de login */
.log-in-button {
background: var(--log-in-button);
color: var(--white);
margin: 2rem 0;
font-weight: 700;
cursor: pointer;
outline: none;
border: none;
}
/* Ou */
.or-divider {
color: var(--or-text);
font-weight: 700;
position: relative;
font-size: 1.2rem;
}
.or-divider:before,
.or-divider:after {
content: "";
display: block;
width: 11rem;
height: 0.1rem;
position: absolute;
background: rgba(var(--border-color), 0.4);
top: 50%;
}
.or-divider::before {
left: 3rem;
}
.or-divider::after {
right: 3rem;
}
/* Entrar com o Facebook */
.fb-login {
margin: 1.5rem 0;
}
.fb-login img,
.fb-login span {
vertical-align: middle;
}
.fb-login img {
width: 1.5rem;
margin-right: 0.5rem;
}
.fb-login span {
font-size: 1.3rem;
color: var(--fb-logo);
font-weight: 700;
}
/* Esqueceu a senha? */
.forgot-password {
color: var(--fb-logo);
font-size: 1.2rem;
}
/***************
* Cadastre-se *
***************/
/* Sign-up container */
.sign-up {
background: var(--white);
width: 35rem;
margin: auto;
border: 0.1rem solid rgba(var(--border-color), 0.5);
padding: 2rem;
text-align: center;
}
/* Não tem uma conta? */
.sign-up span {
font-size: 1.2rem;
margin-right: 0.5rem;
}
.sign-up a {
font-size: 1.3rem;
font-weight: 700;
color: var(--log-in-button);
}
/************************
* Obtenha o aplicativo *
************************/
/* Obtenha o aplicativo app conatainer */
.get-the-app {
display: flex;
flex-direction: column;
align-items: center;
width: 35rem;
margin: 0 auto;
margin-top: 1.5rem;
}
/* Obtenha o aplicativo texto */
.get-the-app span {
display: block;
margin-bottom: 2rem;
font-size: 1.4rem;
}
.app-images img {
width: 13rem;
}
/* Selecione a primeira imagem */
.app-images img:nth-child(1) {
margin-right: 1rem;
}
/*************
* Telefones *
*************/
.phones-container {
display: none;
}
/**********
* Rodapé *
**********/
footer {
width: 35rem;
display: flex;
flex-direction: column;
margin: 4rem auto 0 auto;
}
/* UL (Lista desrdenada/Unordered List */
.footer-links {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
font-size: 1.1rem;
margin-bottom: 1rem;
}
.footer-links li {
flex-basis: 13%;
text-align: center;
}
.footer-links a {
color: var(--footer-links);
font-weight: 700;
display: inline-block;
margin-bottom: 1rem;
}
/*************
* Copyright *
*************/
.copyright {
text-align: center;
color: var(--copyright-gray);
font-weight: 700;
font-size: 1.2rem;
} | IG-Login/css/styles.css |
@font-face {
font-family: "segoe";
src: url(../fonts/segoe-ui-regular.ttf) format("truetype");
font-weight: 400;
}
@font-face {
font-family: "Segoe";
src: url(../fonts/segoe-ui-bold.ttf) format("truetype");
font-weight: 700;
}
/*Variáveis*/
:root {
--background-color: #fafafa;
--white: #ffffff;
--border-color: 112, 112, 112;
--placeholder-color: #837979;
--or-text: #8e8e8e;
--fb-logo: #385185;
--log-in-button: #0095f6;
--black: #262626;
--footer-links: #1e4f7c;
--copyright-gray: #bfbfbf;
}
/*reset do navegador*/
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
font-weight: 400;
}
a {
text-decoration: none;
}
ul {
list-style-type: none;
}
html {
font-size: 62.5%;
}
body {
font-family: "Segoe";
background: var(--background-color);
}
/*********
* Login *
*********/
/*Container login*/
.login {
background: var(--white);
width: 35rem;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
border: 0.1rem solid rgba(var(--border-color), 0.5);
padding: 1.5rem 4rem;
margin-top: 4rem;
margin-bottom: 2rem;
}
/* Logo */
.logo {
width: 19rem;
margin-bottom: 1rem;
}
/* Formulário de login */
.login-form {
display: flex;
flex-direction: column;
width: 100%;
}
/* Estilos em comum para os campos do formulário e o botão de login */
.login-form input,
.log-in-button {
padding: 1rem 0 1rem 1rem;
border-radius: 0.5rem;
}
/* Estilos em comum para os campos de formulário e seus marcadores de posição */
.login-form input,
.login-form input::placeholder {
font-size: 1.1rem;
font-family: "Segoe";
}
/* Campos do formulário */
.login-form input {
background: var(--background-color);
border: 0.1rem solid rgba(var(--border-color), 0.5);
outline: none;
}
/* Estilos para o campo de texto do nome do usuário */
.login-form input[type="text"] {
margin-bottom: 0.5rem;
}
/* Espaço reservado para os campos de texto */
.login-form input::placeholder {
color: var(--placeholder-color);
}
/* Estilos para os campos de texto quando eles são selecionados */
.login-form input:focus {
border-color: rgba(var(--border-color), 0.8);
}
/* Botão de login */
.log-in-button {
background: var(--log-in-button);
color: var(--white);
margin: 2rem 0;
font-weight: 700;
cursor: pointer;
outline: none;
border: none;
}
/* Ou */
.or-divider {
color: var(--or-text);
font-weight: 700;
position: relative;
font-size: 1.2rem;
}
.or-divider:before,
.or-divider:after {
content: "";
display: block;
width: 11rem;
height: 0.1rem;
position: absolute;
background: rgba(var(--border-color), 0.4);
top: 50%;
}
.or-divider::before {
left: 3rem;
}
.or-divider::after {
right: 3rem;
}
/* Entrar com o Facebook */
.fb-login {
margin: 1.5rem 0;
}
.fb-login img,
.fb-login span {
vertical-align: middle;
}
.fb-login img {
width: 1.5rem;
margin-right: 0.5rem;
}
.fb-login span {
font-size: 1.3rem;
color: var(--fb-logo);
font-weight: 700;
}
/* Esqueceu a senha? */
.forgot-password {
color: var(--fb-logo);
font-size: 1.2rem;
}
/***************
* Cadastre-se *
***************/
/* Sign-up container */
.sign-up {
background: var(--white);
width: 35rem;
margin: auto;
border: 0.1rem solid rgba(var(--border-color), 0.5);
padding: 2rem;
text-align: center;
}
/* Não tem uma conta? */
.sign-up span {
font-size: 1.2rem;
margin-right: 0.5rem;
}
.sign-up a {
font-size: 1.3rem;
font-weight: 700;
color: var(--log-in-button);
}
/************************
* Obtenha o aplicativo *
************************/
/* Obtenha o aplicativo app conatainer */
.get-the-app {
display: flex;
flex-direction: column;
align-items: center;
width: 35rem;
margin: 0 auto;
margin-top: 1.5rem;
}
/* Obtenha o aplicativo texto */
.get-the-app span {
display: block;
margin-bottom: 2rem;
font-size: 1.4rem;
}
.app-images img {
width: 13rem;
}
/* Selecione a primeira imagem */
.app-images img:nth-child(1) {
margin-right: 1rem;
}
/*************
* Telefones *
*************/
.phones-container {
display: none;
}
/**********
* Rodapé *
**********/
footer {
width: 35rem;
display: flex;
flex-direction: column;
margin: 4rem auto 0 auto;
}
/* UL (Lista desrdenada/Unordered List */
.footer-links {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
font-size: 1.1rem;
margin-bottom: 1rem;
}
.footer-links li {
flex-basis: 13%;
text-align: center;
}
.footer-links a {
color: var(--footer-links);
font-weight: 700;
display: inline-block;
margin-bottom: 1rem;
}
/*************
* Copyright *
*************/
.copyright {
text-align: center;
color: var(--copyright-gray);
font-weight: 700;
font-size: 1.2rem;
} | 0.312055 | 0.079997 |
/* Made by @gilbN */
/* https://github.com/gilbN/theme.park */
@import url("/css/defaults/placeholders.css");
@import url("/css/defaults/transparent.css");
@import url("/css/defaults/servarr-base.css");
[class*="IndexerSearchInput-sectionTitle-"] {
color: var(--text-hover);
}
[class*="IndexerSearchInput-containerOpen-"] [class*="IndexerSearchInput-movieContainer-"] {
border: none !important;
background: var(--modal-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
color: var(--text-hover) !important;
box-shadow: 0 0 10px 1px transparent !important;
}
[class*="IndexerSearchInput-highlighted-"] {
background: var(--transparency-dark-10);
}
[class*="IndexerSearchInput-container-"] [class*="Input-input-"] {
background: transparent;
border-bottom: solid 1px var(--text);
}
[class*="IndexerSearchInput-container-"] [class*="Input-input-"]:focus {
border-bottom: none;
background: transparent;
}
[class*="IndexerSearchResult-alternateTitle-"] {
color: var(--text-hover);
font-size: 12px;
}
/* Indexers */
[class*="IndexerProxies-center-"] {
background-color: transparent;
border: none;
color: var(--text);
}
[class*="Card-card-"]:hover [class*="IndexerProxies-center-"] {
color: var(--text-hover);
}
/* ChartJS */
[class*="Stats-fullWidthChart-"],
[class*="Stats-halfWidthChart-"] {
background: var(--transparency-dark-25) !important;
}
canvas {
filter: invert(1)
}
/* QUERY OPTIONS */
[class*="QueryParameterOption-option-"] {
border: 1px solid transparent;
}
[class*="QueryParameterOption-token-"] {
background: var(--transparency-light-15);
}
[class*="QueryParameterOption-example-"] {
background: var(--transparency-light-25);
}
[class*="QueryParameterOption-option-"]:hover [class*="QueryParameterOption-token-"] {
background: var(--transparency-light-25);
}
[class*="QueryParameterOption-option-"]:hover [class*="QueryParameterOption-example-"] {
background: var(--transparency-light-35);
}
/* HISTORY */
[class*="HistoryRowParameter-parameter-"] {
border: 1px solid rgb(var(--accent-color));
background-color: rgb(var(--accent-color));
color: var(--label-text-color)
}
[class*="HistoryRowParameter-value-"] {
background: var(--transparency-light-50);
color: #1f1f1f;
} | css/base/prowlarr/prowlarr-base.css |
/* Made by @gilbN */
/* https://github.com/gilbN/theme.park */
@import url("/css/defaults/placeholders.css");
@import url("/css/defaults/transparent.css");
@import url("/css/defaults/servarr-base.css");
[class*="IndexerSearchInput-sectionTitle-"] {
color: var(--text-hover);
}
[class*="IndexerSearchInput-containerOpen-"] [class*="IndexerSearchInput-movieContainer-"] {
border: none !important;
background: var(--modal-bg-color);
background-repeat: repeat, no-repeat;
background-attachment: fixed, fixed;
background-position: center center, center center;
background-size: auto, cover;
-webkit-background-size: auto, cover;
-moz-background-size: auto, cover;
-o-background-size: auto, cover;
color: var(--text-hover) !important;
box-shadow: 0 0 10px 1px transparent !important;
}
[class*="IndexerSearchInput-highlighted-"] {
background: var(--transparency-dark-10);
}
[class*="IndexerSearchInput-container-"] [class*="Input-input-"] {
background: transparent;
border-bottom: solid 1px var(--text);
}
[class*="IndexerSearchInput-container-"] [class*="Input-input-"]:focus {
border-bottom: none;
background: transparent;
}
[class*="IndexerSearchResult-alternateTitle-"] {
color: var(--text-hover);
font-size: 12px;
}
/* Indexers */
[class*="IndexerProxies-center-"] {
background-color: transparent;
border: none;
color: var(--text);
}
[class*="Card-card-"]:hover [class*="IndexerProxies-center-"] {
color: var(--text-hover);
}
/* ChartJS */
[class*="Stats-fullWidthChart-"],
[class*="Stats-halfWidthChart-"] {
background: var(--transparency-dark-25) !important;
}
canvas {
filter: invert(1)
}
/* QUERY OPTIONS */
[class*="QueryParameterOption-option-"] {
border: 1px solid transparent;
}
[class*="QueryParameterOption-token-"] {
background: var(--transparency-light-15);
}
[class*="QueryParameterOption-example-"] {
background: var(--transparency-light-25);
}
[class*="QueryParameterOption-option-"]:hover [class*="QueryParameterOption-token-"] {
background: var(--transparency-light-25);
}
[class*="QueryParameterOption-option-"]:hover [class*="QueryParameterOption-example-"] {
background: var(--transparency-light-35);
}
/* HISTORY */
[class*="HistoryRowParameter-parameter-"] {
border: 1px solid rgb(var(--accent-color));
background-color: rgb(var(--accent-color));
color: var(--label-text-color)
}
[class*="HistoryRowParameter-value-"] {
background: var(--transparency-light-50);
color: #1f1f1f;
} | 0.289372 | 0.059674 |
#m-chart .inside .hide,
#m-chart-spreadsheet .inside .hide,
#m-chart-csv .inside .hide {
display: none;
}
/* line 3, ../sass/_misc.scss */
#m-chart-subtitle {
margin-left: 0;
}
/* line 3, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet {
border-left: none;
}
/* line 7, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet h2.hndle {
border-bottom: none;
border-left: 1px solid #cdd0d4;
}
/* line 13, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet h3 {
border-bottom: none;
border-left: 1px solid #cdd0d4;
}
/* line 18, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .handlediv {
height: 35px;
}
/* line 22, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .inside {
margin: 0;
padding: 0;
}
/* line 27, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .nav-tab-wrapper {
border-bottom: none;
border-left: 1px solid #cdd0d4;
border-top: 1px solid #cdd0d4;
overflow-x: scroll;
overflow-y: hidden;
padding-top: 7px;
white-space: nowrap;
}
/* line 36, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .nav-tab-wrapper.hide {
display: none;
}
/* line 40, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .nav-tab-wrapper .add-sheet {
color: #82878c;
float: left;
margin-bottom: 0;
margin-left: 7px;
text-decoration: none;
}
/* line 47, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .nav-tab-wrapper .add-sheet:hover {
color: #000000;
}
/* line 51, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .nav-tab-wrapper .add-sheet span {
line-height: 38px;
}
@media (max-width: 782px) {
/* line 51, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .nav-tab-wrapper .add-sheet span {
line-height: 46px;
}
}
/* line 60, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .nav-tab-wrapper .nav-tab {
display: inline-block;
float: none;
}
/* line 64, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .nav-tab-wrapper .nav-tab span {
color: #555555;
margin-top: 3px;
}
@media (max-width: 782px) {
/* line 64, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .nav-tab-wrapper .nav-tab span {
margin-top: 7px;
}
}
/* line 72, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .nav-tab-wrapper .nav-tab span:hover {
color: #c80011;
}
/* line 77, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .nav-tab-wrapper .nav-tab input {
min-width: 30px;
}
/* line 80, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .nav-tab-wrapper .nav-tab input[disabled="disabled"] {
background: transparent;
border: 1px solid transparent;
box-shadow: none;
color: #555555;
-webkit-text-fill-color: #555555;
}
/* line 90, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .nav-tab-wrapper .nav-tab.nav-tab-active span {
color: #000000;
}
/* line 93, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .nav-tab-wrapper .nav-tab.nav-tab-active span:hover {
color: #c80011;
}
/* line 99, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .nav-tab-wrapper .nav-tab.nav-tab-active input[disabled="disabled"] {
color: #000000;
-webkit-text-fill-color: #000000;
}
/* line 106, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .nav-tab-wrapper .nav-tab:last-of-type {
margin-right: 10px;
}
/* line 111, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .nav-tab-wrapper .nav-tab.do-not-delete span {
display: none;
}
/* line 118, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet #m-chart-csv {
background-color: #f5f5f5;
border-left: 1px solid #cdd0d4;
border-top: 1px solid #dddddd;
padding: 15px 10px 10px;
}
/* line 4, ../sass/_global-mixins-and-variables.scss */
#m-chart-spreadsheet #m-chart-csv::after {
clear: both;
content: '';
display: table;
}
/* line 125, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet #m-chart-csv::after {
clear: both;
}
/* line 129, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet #m-chart-csv .button {
margin-top: 6px;
}
/* line 132, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet #m-chart-csv .button.select {
margin-right: 10px;
}
/* line 136, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet #m-chart-csv .button.import {
float: left;
margin-right: 10px;
}
/* line 143, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet #m-chart-csv div.import {
margin-right: 65px;
}
/* line 147, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet #m-chart-csv div.export {
float: right;
}
/* line 152, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet #m-chart-csv .warning,
#m-chart-spreadsheet #m-chart-csv .error {
color: #b00000;
}
/* line 157, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet #m-chart-csv .error,
#m-chart-spreadsheet #m-chart-csv .in-progress {
margin: 10px 0 0 5px;
}
/* line 161, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet #m-chart-csv .error:not(.hide),
#m-chart-spreadsheet #m-chart-csv .in-progress:not(.hide) {
display: inline-block;
}
/* line 167, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet #m-chart-csv a.dashicons {
color: #b8b8b8;
}
/* line 170, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet #m-chart-csv a.dashicons:hover {
color: #b00000;
}
/* line 4, ../sass/_chart-settings.scss */
#m-chart .inside {
padding: 0;
}
/* line 7, ../sass/_chart-settings.scss */
#m-chart .inside .m-chart-container {
padding: 7px 10px 10px;
}
/* line 11, ../sass/_chart-settings.scss */
#m-chart .inside .settings {
background-color: #f5f5f5;
border-top: 1px solid #dddddd;
padding: 0 10px 10px;
}
/* line 16, ../sass/_chart-settings.scss */
#m-chart .inside .settings .row {
border-top: none;
padding: 0;
}
/* line 4, ../sass/_global-mixins-and-variables.scss */
#m-chart .inside .settings .row::after {
clear: both;
content: '';
display: table;
}
/* line 21, ../sass/_chart-settings.scss */
#m-chart .inside .settings .row p {
margin-bottom: 0;
}
/* line 27, ../sass/_chart-settings.scss */
#m-chart .inside .settings .row.one p, #m-chart .inside .settings .row.two p {
float: left;
margin-left: 1%;
width: 49%;
}
/* line 32, ../sass/_chart-settings.scss */
#m-chart .inside .settings .row.one p:first-child, #m-chart .inside .settings .row.two p:first-child {
margin-left: 0;
}
/* line 40, ../sass/_chart-settings.scss */
#m-chart .inside .settings .row.three p, #m-chart .inside .settings .row.five p {
float: left;
width: 73%;
}
/* line 44, ../sass/_chart-settings.scss */
#m-chart .inside .settings .row.three p.units, #m-chart .inside .settings .row.five p.units {
float: right;
width: 25%;
}
/* line 52, ../sass/_chart-settings.scss */
#m-chart .inside .settings .row.four p {
margin-top: 5px;
}
/* line 55, ../sass/_chart-settings.scss */
#m-chart .inside .settings .row.four p label {
display: inline-block;
height: 23px;
}
/* line 64, ../sass/_chart-settings.scss */
#m-chart .inside .row {
border-top: 1px solid #dddddd;
padding: 0 10px 10px;
}
/* line 4, ../sass/_global-mixins-and-variables.scss */
#m-chart .inside .row::after {
clear: both;
content: '';
display: table;
}
/* line 70, ../sass/_chart-settings.scss */
#m-chart .inside .row.seven p {
float: right;
margin-bottom: 0;
width: 49%;
}
/* line 75, ../sass/_chart-settings.scss */
#m-chart .inside .row.seven p:first-child {
float: left;
}
/* line 79, ../sass/_chart-settings.scss */
#m-chart .inside .row.seven p.image {
position: relative;
}
/* line 82, ../sass/_chart-settings.scss */
#m-chart .inside .row.seven p.image em {
display: block;
margin-top: 5px;
}
/* line 87, ../sass/_chart-settings.scss */
#m-chart .inside .row.seven p.image .button {
min-height: 24px;
line-height: 21px;
position: absolute;
right: 2px;
top: 23px;
}
@media screen and (max-width: 782px) {
/* line 96, ../sass/_chart-settings.scss */
#m-chart .inside .row.seven p.image .button {
min-height: 34px;
line-height: 31px;
}
}
/* line 3, ../sass/_settings.scss */
#m-chart-settings-page span.description {
color: #666666;
}
/* line 9, ../sass/_settings.scss */
#m-chart-settings-error {
padding-left: 10px;
padding-right: 10px;
} | components/css/m-chart-admin.css | #m-chart .inside .hide,
#m-chart-spreadsheet .inside .hide,
#m-chart-csv .inside .hide {
display: none;
}
/* line 3, ../sass/_misc.scss */
#m-chart-subtitle {
margin-left: 0;
}
/* line 3, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet {
border-left: none;
}
/* line 7, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet h2.hndle {
border-bottom: none;
border-left: 1px solid #cdd0d4;
}
/* line 13, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet h3 {
border-bottom: none;
border-left: 1px solid #cdd0d4;
}
/* line 18, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .handlediv {
height: 35px;
}
/* line 22, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .inside {
margin: 0;
padding: 0;
}
/* line 27, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .nav-tab-wrapper {
border-bottom: none;
border-left: 1px solid #cdd0d4;
border-top: 1px solid #cdd0d4;
overflow-x: scroll;
overflow-y: hidden;
padding-top: 7px;
white-space: nowrap;
}
/* line 36, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .nav-tab-wrapper.hide {
display: none;
}
/* line 40, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .nav-tab-wrapper .add-sheet {
color: #82878c;
float: left;
margin-bottom: 0;
margin-left: 7px;
text-decoration: none;
}
/* line 47, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .nav-tab-wrapper .add-sheet:hover {
color: #000000;
}
/* line 51, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .nav-tab-wrapper .add-sheet span {
line-height: 38px;
}
@media (max-width: 782px) {
/* line 51, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .nav-tab-wrapper .add-sheet span {
line-height: 46px;
}
}
/* line 60, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .nav-tab-wrapper .nav-tab {
display: inline-block;
float: none;
}
/* line 64, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .nav-tab-wrapper .nav-tab span {
color: #555555;
margin-top: 3px;
}
@media (max-width: 782px) {
/* line 64, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .nav-tab-wrapper .nav-tab span {
margin-top: 7px;
}
}
/* line 72, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .nav-tab-wrapper .nav-tab span:hover {
color: #c80011;
}
/* line 77, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .nav-tab-wrapper .nav-tab input {
min-width: 30px;
}
/* line 80, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .nav-tab-wrapper .nav-tab input[disabled="disabled"] {
background: transparent;
border: 1px solid transparent;
box-shadow: none;
color: #555555;
-webkit-text-fill-color: #555555;
}
/* line 90, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .nav-tab-wrapper .nav-tab.nav-tab-active span {
color: #000000;
}
/* line 93, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .nav-tab-wrapper .nav-tab.nav-tab-active span:hover {
color: #c80011;
}
/* line 99, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .nav-tab-wrapper .nav-tab.nav-tab-active input[disabled="disabled"] {
color: #000000;
-webkit-text-fill-color: #000000;
}
/* line 106, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .nav-tab-wrapper .nav-tab:last-of-type {
margin-right: 10px;
}
/* line 111, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet .nav-tab-wrapper .nav-tab.do-not-delete span {
display: none;
}
/* line 118, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet #m-chart-csv {
background-color: #f5f5f5;
border-left: 1px solid #cdd0d4;
border-top: 1px solid #dddddd;
padding: 15px 10px 10px;
}
/* line 4, ../sass/_global-mixins-and-variables.scss */
#m-chart-spreadsheet #m-chart-csv::after {
clear: both;
content: '';
display: table;
}
/* line 125, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet #m-chart-csv::after {
clear: both;
}
/* line 129, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet #m-chart-csv .button {
margin-top: 6px;
}
/* line 132, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet #m-chart-csv .button.select {
margin-right: 10px;
}
/* line 136, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet #m-chart-csv .button.import {
float: left;
margin-right: 10px;
}
/* line 143, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet #m-chart-csv div.import {
margin-right: 65px;
}
/* line 147, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet #m-chart-csv div.export {
float: right;
}
/* line 152, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet #m-chart-csv .warning,
#m-chart-spreadsheet #m-chart-csv .error {
color: #b00000;
}
/* line 157, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet #m-chart-csv .error,
#m-chart-spreadsheet #m-chart-csv .in-progress {
margin: 10px 0 0 5px;
}
/* line 161, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet #m-chart-csv .error:not(.hide),
#m-chart-spreadsheet #m-chart-csv .in-progress:not(.hide) {
display: inline-block;
}
/* line 167, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet #m-chart-csv a.dashicons {
color: #b8b8b8;
}
/* line 170, ../sass/_spreadsheet.scss */
#m-chart-spreadsheet #m-chart-csv a.dashicons:hover {
color: #b00000;
}
/* line 4, ../sass/_chart-settings.scss */
#m-chart .inside {
padding: 0;
}
/* line 7, ../sass/_chart-settings.scss */
#m-chart .inside .m-chart-container {
padding: 7px 10px 10px;
}
/* line 11, ../sass/_chart-settings.scss */
#m-chart .inside .settings {
background-color: #f5f5f5;
border-top: 1px solid #dddddd;
padding: 0 10px 10px;
}
/* line 16, ../sass/_chart-settings.scss */
#m-chart .inside .settings .row {
border-top: none;
padding: 0;
}
/* line 4, ../sass/_global-mixins-and-variables.scss */
#m-chart .inside .settings .row::after {
clear: both;
content: '';
display: table;
}
/* line 21, ../sass/_chart-settings.scss */
#m-chart .inside .settings .row p {
margin-bottom: 0;
}
/* line 27, ../sass/_chart-settings.scss */
#m-chart .inside .settings .row.one p, #m-chart .inside .settings .row.two p {
float: left;
margin-left: 1%;
width: 49%;
}
/* line 32, ../sass/_chart-settings.scss */
#m-chart .inside .settings .row.one p:first-child, #m-chart .inside .settings .row.two p:first-child {
margin-left: 0;
}
/* line 40, ../sass/_chart-settings.scss */
#m-chart .inside .settings .row.three p, #m-chart .inside .settings .row.five p {
float: left;
width: 73%;
}
/* line 44, ../sass/_chart-settings.scss */
#m-chart .inside .settings .row.three p.units, #m-chart .inside .settings .row.five p.units {
float: right;
width: 25%;
}
/* line 52, ../sass/_chart-settings.scss */
#m-chart .inside .settings .row.four p {
margin-top: 5px;
}
/* line 55, ../sass/_chart-settings.scss */
#m-chart .inside .settings .row.four p label {
display: inline-block;
height: 23px;
}
/* line 64, ../sass/_chart-settings.scss */
#m-chart .inside .row {
border-top: 1px solid #dddddd;
padding: 0 10px 10px;
}
/* line 4, ../sass/_global-mixins-and-variables.scss */
#m-chart .inside .row::after {
clear: both;
content: '';
display: table;
}
/* line 70, ../sass/_chart-settings.scss */
#m-chart .inside .row.seven p {
float: right;
margin-bottom: 0;
width: 49%;
}
/* line 75, ../sass/_chart-settings.scss */
#m-chart .inside .row.seven p:first-child {
float: left;
}
/* line 79, ../sass/_chart-settings.scss */
#m-chart .inside .row.seven p.image {
position: relative;
}
/* line 82, ../sass/_chart-settings.scss */
#m-chart .inside .row.seven p.image em {
display: block;
margin-top: 5px;
}
/* line 87, ../sass/_chart-settings.scss */
#m-chart .inside .row.seven p.image .button {
min-height: 24px;
line-height: 21px;
position: absolute;
right: 2px;
top: 23px;
}
@media screen and (max-width: 782px) {
/* line 96, ../sass/_chart-settings.scss */
#m-chart .inside .row.seven p.image .button {
min-height: 34px;
line-height: 31px;
}
}
/* line 3, ../sass/_settings.scss */
#m-chart-settings-page span.description {
color: #666666;
}
/* line 9, ../sass/_settings.scss */
#m-chart-settings-error {
padding-left: 10px;
padding-right: 10px;
} | 0.151404 | 0.042245 |
background-color: rgba(233, 0, 0, 0.7);
border-bottom-left-radius: 4px;
color: #fff;
content: "paused";
display: block;
font-size: 0.7em;
font-weight: 700;
right: 0;
opacity: 0;
padding: 0.2em 0.4em;
position: absolute;
text-align: center;
text-transform: uppercase;
top: 0;
z-index: 2;
}
#slideshow ul:hover:before {
opacity: 1;
}
#slideshow ul img {
display: block;
margin: 0 auto;
width: 20%;
height: auto;
max-width:100%;
max-height: 100%;
min-height: 200px;
border: 2px solid black;
}
#slideshow ul:hover li,
ul:hover img {
/*
NOTE: This property is being considered for removal from the spec
@see: http://www.w3.org/TR/css3-animations/#the-animation-play-state-property-
*/
-webkit-animation-play-state: paused;
-moz-animation-play-state: paused;
}
#slideshow li {
left: 40.5%;
list-style: none inside;
overflow: hidden;
position: absolute;
top: 1.9%;
width: 97%;
height: 40%;
}
/* - Special styles for the Falling demo - */
/* - Fade In/Out -*/
#slideshow ul:first-of-type li {
-webkit-animation-duration: 12s;
-webkit-animation-iteration-count: infinite;
-moz-animation-duration: 12s;
-moz-animation-iteration-count: infinite;
opacity: 0;
}
#slideshow ul:first-of-type li:first-child {
-webkit-animation-name: fadeOne;
-moz-animation-name: fadeOne;
opacity: 1;
}
#slideshow ul:first-of-type li:nth-of-type(2) {
-webkit-animation-name: fadeTwo;
-moz-animation-name: fadeTwo;
}
#slideshow ul:first-of-type li:nth-of-type(3) {
-webkit-animation-name: fadeThree;
-moz-animation-name: fadeThree;
}
@-webkit-keyframes fadeOne {
0%, 30% { opacity: 1; }
33%, 94% { opacity: 0; }
97%, 100% { opacity: 1; }
}
@-webkit-keyframes fadeTwo {
0%, 30% { opacity: 0; }
33%, 63% { opacity: 1; }
66%, 100% { opacity: 0; }
}
@-webkit-keyframes fadeThree {
0%, 63% { opacity: 0; }
66%, 94% { opacity: 1; }
97%, 100% { opacity: 0; }
}
@-moz-keyframes fadeOne {
0%, 30% { opacity: 1; }
33%, 94% { opacity: 0; }
97%, 100% { opacity: 1; }
}
@-moz-keyframes fadeTwo {
0%, 30% { opacity: 0; }
33%, 63% { opacity: 1; }
66%, 100% { opacity: 0; }
}
@-moz-keyframes fadeThree {
0%, 63% { opacity: 0; }
66%, 94% { opacity: 1; }
97%, 100% { opacity: 0; }
}
/* - General page styles -*/ | css/slideshow.css | background-color: rgba(233, 0, 0, 0.7);
border-bottom-left-radius: 4px;
color: #fff;
content: "paused";
display: block;
font-size: 0.7em;
font-weight: 700;
right: 0;
opacity: 0;
padding: 0.2em 0.4em;
position: absolute;
text-align: center;
text-transform: uppercase;
top: 0;
z-index: 2;
}
#slideshow ul:hover:before {
opacity: 1;
}
#slideshow ul img {
display: block;
margin: 0 auto;
width: 20%;
height: auto;
max-width:100%;
max-height: 100%;
min-height: 200px;
border: 2px solid black;
}
#slideshow ul:hover li,
ul:hover img {
/*
NOTE: This property is being considered for removal from the spec
@see: http://www.w3.org/TR/css3-animations/#the-animation-play-state-property-
*/
-webkit-animation-play-state: paused;
-moz-animation-play-state: paused;
}
#slideshow li {
left: 40.5%;
list-style: none inside;
overflow: hidden;
position: absolute;
top: 1.9%;
width: 97%;
height: 40%;
}
/* - Special styles for the Falling demo - */
/* - Fade In/Out -*/
#slideshow ul:first-of-type li {
-webkit-animation-duration: 12s;
-webkit-animation-iteration-count: infinite;
-moz-animation-duration: 12s;
-moz-animation-iteration-count: infinite;
opacity: 0;
}
#slideshow ul:first-of-type li:first-child {
-webkit-animation-name: fadeOne;
-moz-animation-name: fadeOne;
opacity: 1;
}
#slideshow ul:first-of-type li:nth-of-type(2) {
-webkit-animation-name: fadeTwo;
-moz-animation-name: fadeTwo;
}
#slideshow ul:first-of-type li:nth-of-type(3) {
-webkit-animation-name: fadeThree;
-moz-animation-name: fadeThree;
}
@-webkit-keyframes fadeOne {
0%, 30% { opacity: 1; }
33%, 94% { opacity: 0; }
97%, 100% { opacity: 1; }
}
@-webkit-keyframes fadeTwo {
0%, 30% { opacity: 0; }
33%, 63% { opacity: 1; }
66%, 100% { opacity: 0; }
}
@-webkit-keyframes fadeThree {
0%, 63% { opacity: 0; }
66%, 94% { opacity: 1; }
97%, 100% { opacity: 0; }
}
@-moz-keyframes fadeOne {
0%, 30% { opacity: 1; }
33%, 94% { opacity: 0; }
97%, 100% { opacity: 1; }
}
@-moz-keyframes fadeTwo {
0%, 30% { opacity: 0; }
33%, 63% { opacity: 1; }
66%, 100% { opacity: 0; }
}
@-moz-keyframes fadeThree {
0%, 63% { opacity: 0; }
66%, 94% { opacity: 1; }
97%, 100% { opacity: 0; }
}
/* - General page styles -*/ | 0.356895 | 0.072703 |
body {
line-height: 0;
}
/* header */
.logo img{
width: 146px;
height: 87px;
}
.logo{
display: flex;
width: 100%;
justify-content:space-between;
height:100px;
/* padding: 20px 0; */
background-color: #FFFFFF;
}
.leftlogo{
margin-left: 100px;
display:flex
}
.leftlogo h1{
padding: 17% 0;
font-size:30px;
font-family:fantasy
}
.rightlogo{
margin-right: 180px;
padding:35px 0 ;
}
.vl{
border-left: 3px solid gray;
height: 20px;
display:inline-block;
margin:0 10px;
}
.rightlogo i{
margin: 0 10px;
color:#5190CD ;
}
.header2{
padding-left: 133px;
padding-right: 183px;
background-color: #162E44;
color: white;
}
.header2 nav{
display: flex;
width: 100%;
height:80px;
justify-content: space-between;
align-items: center;
position: relative;
}
.header2 nav .ul1{
display: flex;
justify-content: center;
}
.header2 nav .ul1 i{
margin-left: 10px;
}
.header2 nav div{
text-align: center;
}
.header2 nav .ul1 li{
text-align: center;
padding:24px 15px;
margin-right:75px;
/* font-size: 16px; */
}
.header2 nav .ul1 li a{
text-decoration: none;
color: white;
font-size: 20px;
padding-left: 15px;
}
.header2 nav .ul1 li:hover .inm-div1 {
width: 78.89px;
}
.header2 nav .ul1 li:hover .inm-div2 {
width: 80px;
}
.header2 nav .ul1 li:hover .inm-div3 {
width: 106.11px;
}
.header2 nav .ul1 li:hover .inm-div4 {
width: 119.40px;
}
.inm-div
{
text-align: center;
height: 4px;
background-color: #01B3A7;
position: absolute;
top:0;
transition-property: width;
transition-duration: 0.5s;
}
.inm-div1{
width: 0;
/* display: none; */
}
.inm-div2{
width: 0;
}
.inm-div3{
width: 0;
}
.inm-div4{
width: 0;
}
.header2 .ul2{
display: flex;
}
.header2 .ul2 li{
margin-left: 20px;
}
.fa.fa-clock-o:before {
content: "\f017";
font-size: 25px;
}
.fa-phone:before {
content: "\f095";
font-size: 25px;
}
.fa-home:before {
content: "\f015";
font-size: 33px;
}
.fa.fa-address-card-o:before {
content: "\f2bb";
font-size: 33px;
}
.fa-object-group:before {
content: "\f247";
font-size: 33px;
}
.fa.fa-mobile-phone:before, .fa.fa-mobile:before {
content: "\f3cd";
font-size: 33px;
}
/* end header */
/* footer */
footer{
height: 200px;
}
.footer-distributed{
background-color: #292c2f;
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
box-sizing: border-box;
width: 100%;
text-align: left;
font: bold 16px sans-serif;
/* padding: 55px 50px; */
padding: 20px 46px;;
margin-top: 80px;
}
.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
display: inline-block;
vertical-align: top;
}
.footer-distributed .footer-left{
width: 40%;
}
.footer-distributed h3{
color: #ffffff;
font: normal 36px 'Cookie', cursive;
margin: 0;
}
.footer-distributed h3 span{
color: #5383d3;
}
.footer-distributed .footer-links{
color: #ffffff;
margin: 20px 0 12px;
padding: 0;
}
.footer-distributed .footer-links a{
display:inline-block;
line-height: 1.8;
text-decoration: none;
color: inherit;
}
.footer-distributed .footer-company-name{
color: #8f9296;
font-size: 14px;
font-weight: normal;
margin: 0;
}
.footer-distributed .footer-center{
width: 35%;
}
.footer-distributed .footer-center i{
background-color: #33383b;
color: #ffffff;
font-size: 25px;
width: 38px;
height: 38px;
border-radius: 50%;
text-align: center;
line-height: 42px;
margin: 10px 15px;
vertical-align: middle;
}
.footer-distributed .footer-center i.fa-envelope{
font-size: 17px;
line-height: 38px;
}
.footer-distributed .footer-center p{
display: inline-block;
color: #ffffff;
vertical-align: middle;
margin:0;
}
.footer-distributed .footer-center p span{
display:block;
font-weight: normal;
font-size:14px;
line-height:2;
}
.footer-distributed .footer-center p a{
color: #5383d3;
text-decoration: none;;
}
.footer-distributed .footer-right{
width: 20%;
}
.footer-distributed .footer-company-about{
line-height: 20px;
color: #92999f;
font-size: 13px;
font-weight: normal;
margin: 0;
}
.footer-distributed .footer-company-about span{
display: block;
color: #ffffff;
font-size: 14px;
font-weight: bold;
margin-bottom: 20px;
}
.footer-distributed .footer-icons{
margin-top: 25px;
}
.footer-distributed .footer-icons a{
display: inline-block;
width: 35px;
height: 35px;
cursor: pointer;
background-color: #33383b;
border-radius: 2px;
font-size: 20px;
color: #ffffff;
text-align: center;
line-height: 35px;
margin-right: 3px;
margin-bottom: 5px;
}
/* end footer */
body{
background-color: rgb(247, 255, 255);
box-sizing:content-box;
}
/* main */
.contactus-background{
position: relative;
align-items: center;
}
.contactus-background img{
width: 100%;
height: 550px;
}
.overlay{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 90px;
}
.overlay2{
position: absolute;
top: 65%;
left: 45%;
transform: translate(-50%, -50%);
color: white;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 90px;
}
.overlay2 a{
text-decoration: none;
font-size: 25px;
font-family: "Montserrat", sans-serif, Arial, sans-serif;
color: white;
text-align: center;
margin-left: 180px;
}
.overlay2 a:hover{
text-decoration: underline;
}
.video-slider{
width: 130%;
height: 550px;
object-fit:cover;
top: 0;
left: 0;
box-shadow: 5px 5px #BDE7E7;
}
.container2{
box-sizing: border-box;
width: 100%;
justify-content: center;
display: flex;
margin-top: 60px;
}
.phone-container{
text-align: center;
align-items: center;
justify-content: center;
min-height: 400px;
box-shadow: 3px 3px 10px 3px rgb(0 0 0 / 20%);
width: 25%;
flex-direction: column;
line-height: 1.5;
margin-right: 20px;
border-radius: 8px;
background-color: white;
}
.fa-mobile-alt{
font-size: 90px;
color: rgb(83, 185, 233);
padding-bottom: 50px;
margin-top:25%;
}
.fa-mobile-alt:hover{
opacity: .6;
font-size: 150px;
}
.phone a{
text-decoration: none;
font-size: 20px;
color: black;
line-height: 1.8;
font-family: "Montserrat", sans-serif, Arial, sans-serif;
padding-top: 20px;
}
.phone a:hover{
color:rgb(83, 185, 233);
font-size: 35px;
}
.email-container{
text-align: center;
align-items: center;
justify-content:center;
min-height: 400px;
box-shadow: 3px 3px 10px 3px rgb(0 0 0 / 20%);
width: 25%;
flex-direction: column;
margin-right: 20px;
border-radius: 8px;
background-color: white;
}
.fa-at{
font-size: 90px;
color: rgb(83, 185, 233);
padding-bottom: 50px;
margin-top:25%;
}
.fa-at:hover{
opacity: .6;
font-size: 150px;
}
.email a{
text-decoration: none;
font-size: 20px;
color: black;
line-height: 1.8;
font-family: "Montserrat", sans-serif, Arial, sans-serif;
padding-top: 20px;
}
.email a:hover{
color:rgb(83, 185, 233);
font-size: 35px;
}
.map-container{
text-align: center;
margin-bottom: 5px;
align-items: center;
justify-content: center;
min-height: 400px;
box-shadow: 3px 3px 10px 3px rgb(0 0 0 / 20%);
width: 25%;
flex-direction: column;
border-radius: 8px;
background-color: white;
}
.fa-map-marked{
font-size: 90px;
color: rgb(83, 185, 233);
padding-bottom: 40px;
transition: width 2s, heigh t4s;
margin-top:25%;
}
.fa-map-marked:hover{
opacity: .6;
font-size: 150px;
}
.location a{
text-decoration: none;
font-size: 20px;
color: black;
line-height: 1.8;
font-family: "Montserrat", sans-serif, Arial, sans-serif;
padding-top: 20px;
}
.location a:hover{
color:rgb(83, 185, 233);
font-size: 35px;
}
/* iframe{
padding-top: 10px;
}
iframe:hover{
width: 300px;
height: 300px;
} */
.contact-form-container{
width: 100%;
margin-top: 60px;
}
.contact-title h3{
text-align: center;
font-size: 60px;
padding:15px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.contact-paragraph p{
text-align: center;
font-size: 25px;
font-family: 'Exo 2', sans-serif;
padding:20px;
margin-left: 150px;
margin-right: 150px;
font-weight:bold;
line-height: 1.3;
}
#contact-form{
border-radius: 5px;
background-color:rgb(225, 243, 250) ;
padding: 20px;
width: 70%;
margin-left: auto;
margin-right: auto;
}
input[type=text],input[type=email] , textarea , #form-message{
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
margin-top: 6px;
margin-bottom: 16px;
resize: vertical;
font-size:17px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
#form-subject {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
margin-top: 6px;
margin-bottom: 16px;
resize: vertical;
font-size:17px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
#submit-button {
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
width: 100%;
font-size:20px;
background-color:rgb(83, 185, 233);
}
#submit-button:hover {
background-color: #1FD8AA;
}
.mybtn{
float: right;
margin-right:20px;
margin-top: 20px;
margin-bottom: 20px;
}
#mybtn{
padding: 12px;
border: none;
border-radius: 4px;
cursor: pointer;
width: 50px;
font-size:15px;
background-color:rgb(83, 185, 233);
text-align: center;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
#mybtn a{
color: white;
text-decoration: none;
}
#mybtn:hover {
background-color: #1FD8AA;
} | css/contactus.css | body {
line-height: 0;
}
/* header */
.logo img{
width: 146px;
height: 87px;
}
.logo{
display: flex;
width: 100%;
justify-content:space-between;
height:100px;
/* padding: 20px 0; */
background-color: #FFFFFF;
}
.leftlogo{
margin-left: 100px;
display:flex
}
.leftlogo h1{
padding: 17% 0;
font-size:30px;
font-family:fantasy
}
.rightlogo{
margin-right: 180px;
padding:35px 0 ;
}
.vl{
border-left: 3px solid gray;
height: 20px;
display:inline-block;
margin:0 10px;
}
.rightlogo i{
margin: 0 10px;
color:#5190CD ;
}
.header2{
padding-left: 133px;
padding-right: 183px;
background-color: #162E44;
color: white;
}
.header2 nav{
display: flex;
width: 100%;
height:80px;
justify-content: space-between;
align-items: center;
position: relative;
}
.header2 nav .ul1{
display: flex;
justify-content: center;
}
.header2 nav .ul1 i{
margin-left: 10px;
}
.header2 nav div{
text-align: center;
}
.header2 nav .ul1 li{
text-align: center;
padding:24px 15px;
margin-right:75px;
/* font-size: 16px; */
}
.header2 nav .ul1 li a{
text-decoration: none;
color: white;
font-size: 20px;
padding-left: 15px;
}
.header2 nav .ul1 li:hover .inm-div1 {
width: 78.89px;
}
.header2 nav .ul1 li:hover .inm-div2 {
width: 80px;
}
.header2 nav .ul1 li:hover .inm-div3 {
width: 106.11px;
}
.header2 nav .ul1 li:hover .inm-div4 {
width: 119.40px;
}
.inm-div
{
text-align: center;
height: 4px;
background-color: #01B3A7;
position: absolute;
top:0;
transition-property: width;
transition-duration: 0.5s;
}
.inm-div1{
width: 0;
/* display: none; */
}
.inm-div2{
width: 0;
}
.inm-div3{
width: 0;
}
.inm-div4{
width: 0;
}
.header2 .ul2{
display: flex;
}
.header2 .ul2 li{
margin-left: 20px;
}
.fa.fa-clock-o:before {
content: "\f017";
font-size: 25px;
}
.fa-phone:before {
content: "\f095";
font-size: 25px;
}
.fa-home:before {
content: "\f015";
font-size: 33px;
}
.fa.fa-address-card-o:before {
content: "\f2bb";
font-size: 33px;
}
.fa-object-group:before {
content: "\f247";
font-size: 33px;
}
.fa.fa-mobile-phone:before, .fa.fa-mobile:before {
content: "\f3cd";
font-size: 33px;
}
/* end header */
/* footer */
footer{
height: 200px;
}
.footer-distributed{
background-color: #292c2f;
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
box-sizing: border-box;
width: 100%;
text-align: left;
font: bold 16px sans-serif;
/* padding: 55px 50px; */
padding: 20px 46px;;
margin-top: 80px;
}
.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
display: inline-block;
vertical-align: top;
}
.footer-distributed .footer-left{
width: 40%;
}
.footer-distributed h3{
color: #ffffff;
font: normal 36px 'Cookie', cursive;
margin: 0;
}
.footer-distributed h3 span{
color: #5383d3;
}
.footer-distributed .footer-links{
color: #ffffff;
margin: 20px 0 12px;
padding: 0;
}
.footer-distributed .footer-links a{
display:inline-block;
line-height: 1.8;
text-decoration: none;
color: inherit;
}
.footer-distributed .footer-company-name{
color: #8f9296;
font-size: 14px;
font-weight: normal;
margin: 0;
}
.footer-distributed .footer-center{
width: 35%;
}
.footer-distributed .footer-center i{
background-color: #33383b;
color: #ffffff;
font-size: 25px;
width: 38px;
height: 38px;
border-radius: 50%;
text-align: center;
line-height: 42px;
margin: 10px 15px;
vertical-align: middle;
}
.footer-distributed .footer-center i.fa-envelope{
font-size: 17px;
line-height: 38px;
}
.footer-distributed .footer-center p{
display: inline-block;
color: #ffffff;
vertical-align: middle;
margin:0;
}
.footer-distributed .footer-center p span{
display:block;
font-weight: normal;
font-size:14px;
line-height:2;
}
.footer-distributed .footer-center p a{
color: #5383d3;
text-decoration: none;;
}
.footer-distributed .footer-right{
width: 20%;
}
.footer-distributed .footer-company-about{
line-height: 20px;
color: #92999f;
font-size: 13px;
font-weight: normal;
margin: 0;
}
.footer-distributed .footer-company-about span{
display: block;
color: #ffffff;
font-size: 14px;
font-weight: bold;
margin-bottom: 20px;
}
.footer-distributed .footer-icons{
margin-top: 25px;
}
.footer-distributed .footer-icons a{
display: inline-block;
width: 35px;
height: 35px;
cursor: pointer;
background-color: #33383b;
border-radius: 2px;
font-size: 20px;
color: #ffffff;
text-align: center;
line-height: 35px;
margin-right: 3px;
margin-bottom: 5px;
}
/* end footer */
body{
background-color: rgb(247, 255, 255);
box-sizing:content-box;
}
/* main */
.contactus-background{
position: relative;
align-items: center;
}
.contactus-background img{
width: 100%;
height: 550px;
}
.overlay{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 90px;
}
.overlay2{
position: absolute;
top: 65%;
left: 45%;
transform: translate(-50%, -50%);
color: white;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 90px;
}
.overlay2 a{
text-decoration: none;
font-size: 25px;
font-family: "Montserrat", sans-serif, Arial, sans-serif;
color: white;
text-align: center;
margin-left: 180px;
}
.overlay2 a:hover{
text-decoration: underline;
}
.video-slider{
width: 130%;
height: 550px;
object-fit:cover;
top: 0;
left: 0;
box-shadow: 5px 5px #BDE7E7;
}
.container2{
box-sizing: border-box;
width: 100%;
justify-content: center;
display: flex;
margin-top: 60px;
}
.phone-container{
text-align: center;
align-items: center;
justify-content: center;
min-height: 400px;
box-shadow: 3px 3px 10px 3px rgb(0 0 0 / 20%);
width: 25%;
flex-direction: column;
line-height: 1.5;
margin-right: 20px;
border-radius: 8px;
background-color: white;
}
.fa-mobile-alt{
font-size: 90px;
color: rgb(83, 185, 233);
padding-bottom: 50px;
margin-top:25%;
}
.fa-mobile-alt:hover{
opacity: .6;
font-size: 150px;
}
.phone a{
text-decoration: none;
font-size: 20px;
color: black;
line-height: 1.8;
font-family: "Montserrat", sans-serif, Arial, sans-serif;
padding-top: 20px;
}
.phone a:hover{
color:rgb(83, 185, 233);
font-size: 35px;
}
.email-container{
text-align: center;
align-items: center;
justify-content:center;
min-height: 400px;
box-shadow: 3px 3px 10px 3px rgb(0 0 0 / 20%);
width: 25%;
flex-direction: column;
margin-right: 20px;
border-radius: 8px;
background-color: white;
}
.fa-at{
font-size: 90px;
color: rgb(83, 185, 233);
padding-bottom: 50px;
margin-top:25%;
}
.fa-at:hover{
opacity: .6;
font-size: 150px;
}
.email a{
text-decoration: none;
font-size: 20px;
color: black;
line-height: 1.8;
font-family: "Montserrat", sans-serif, Arial, sans-serif;
padding-top: 20px;
}
.email a:hover{
color:rgb(83, 185, 233);
font-size: 35px;
}
.map-container{
text-align: center;
margin-bottom: 5px;
align-items: center;
justify-content: center;
min-height: 400px;
box-shadow: 3px 3px 10px 3px rgb(0 0 0 / 20%);
width: 25%;
flex-direction: column;
border-radius: 8px;
background-color: white;
}
.fa-map-marked{
font-size: 90px;
color: rgb(83, 185, 233);
padding-bottom: 40px;
transition: width 2s, heigh t4s;
margin-top:25%;
}
.fa-map-marked:hover{
opacity: .6;
font-size: 150px;
}
.location a{
text-decoration: none;
font-size: 20px;
color: black;
line-height: 1.8;
font-family: "Montserrat", sans-serif, Arial, sans-serif;
padding-top: 20px;
}
.location a:hover{
color:rgb(83, 185, 233);
font-size: 35px;
}
/* iframe{
padding-top: 10px;
}
iframe:hover{
width: 300px;
height: 300px;
} */
.contact-form-container{
width: 100%;
margin-top: 60px;
}
.contact-title h3{
text-align: center;
font-size: 60px;
padding:15px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.contact-paragraph p{
text-align: center;
font-size: 25px;
font-family: 'Exo 2', sans-serif;
padding:20px;
margin-left: 150px;
margin-right: 150px;
font-weight:bold;
line-height: 1.3;
}
#contact-form{
border-radius: 5px;
background-color:rgb(225, 243, 250) ;
padding: 20px;
width: 70%;
margin-left: auto;
margin-right: auto;
}
input[type=text],input[type=email] , textarea , #form-message{
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
margin-top: 6px;
margin-bottom: 16px;
resize: vertical;
font-size:17px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
#form-subject {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
margin-top: 6px;
margin-bottom: 16px;
resize: vertical;
font-size:17px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
#submit-button {
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
width: 100%;
font-size:20px;
background-color:rgb(83, 185, 233);
}
#submit-button:hover {
background-color: #1FD8AA;
}
.mybtn{
float: right;
margin-right:20px;
margin-top: 20px;
margin-bottom: 20px;
}
#mybtn{
padding: 12px;
border: none;
border-radius: 4px;
cursor: pointer;
width: 50px;
font-size:15px;
background-color:rgb(83, 185, 233);
text-align: center;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
#mybtn a{
color: white;
text-decoration: none;
}
#mybtn:hover {
background-color: #1FD8AA;
} | 0.322099 | 0.081483 |
.width60{width:57%}
/* main - lists page */
.clear{clear:both;}
label {font-weight:600;}
.ahb-new-calendar{width:50%;}
.ahb-section-container {
border: 1px solid #e6e6e6;
padding: 20px;
border-radius: 3px;
-webkit-box-flex: 1;
flex: 1;
margin: 1em 1em 1em 0;
min-width: 200px;
background: white;
position:relative;
}
.ahb-section{}
.ahb-section label{font-weight:600;}
.ahb-calendars-list{border-collapse: collapse;}
.ahb-calendars-list thead tr,
.ahb-calendars-list tbody tr:not(:last-child){border-bottom:1px solid #efefef;}
.ahb-calendars-list td .button{margin-right:5px;}
.ahb-calendars-list td .button:last-child{margin-right:0;}
.ahb-mssg{margin-left:0 !important; display:none;}
.form-builder .button {
margin: 5px 10px !important;
}
.ui-button-text-only .ui-button-text {
padding: .4em 0em !important;
}
@media screen and (max-width: 710px)
{
.form-builder .button {
margin: 5px 5px !important;
}
.ahb-calendars-list table,
.ahb-calendars-list thead,
.ahb-calendars-list tbody,
.ahb-calendars-list th,
.ahb-calendars-list td,
.ahb-calendars-list tr
{
display: block;
width:100%;
text-align:left;
}
.ahb-calendars-list thead,
.ahb-calendars-list th{display:none}
.ahb-calendars-list td .button{width:48%; margin:5px 0;}
.ahb-calendars-list .firstcol,
.ahb-calendars-list td .button:nth-child(1) {display: none }
.ahb-calendars-list .lastcol { clear:both; visibility:hidden; }
.ahb-calendars-list td .button:nth-child(2),
.ahb-calendars-list td .button:nth-child(3),
.ahb-calendars-list td .button:nth-child(4),
.ahb-calendars-list td .button:nth-child(5),
.ahb-calendars-list td .button:nth-child(6),
.ahb-calendars-list td .button:nth-child(7),
.ahb-calendars-list td .button:nth-child(8),
.ahb-calendars-list td .button:nth-child(9) {float:left; margin-left:0px; margin-right:5px;}
.ahb-new-calendar,
.ahb-calendars-list input[type="text"]{width:100%;}
}
/* stats - reports page */
.ahb-statssection-container {
border: 1px solid #e6e6e6;
padding:0px;
border-radius: 3px;
-webkit-box-flex: 1;
flex: 1;
margin: 1em 1em 1em 0;
min-width: 200px;
background: #ffffff;
position:relative;
}
.ahb-buttons-container{margin:1em 1em 1em 0;}
.ahb-return-link{float:right;}
.ahb-statssection{padding:20px;}
.ahb-statssection-header{
background:white;
padding:10px 20px;
-webkit-box-shadow: 0px 2px 2px 0px rgba(100, 100, 100, 0.1);
-moz-box-shadow: 0px 2px 2px 0px rgba(100, 100, 100, 0.1);
box-shadow: 0px 2px 2px 0px rgba(100, 100, 100, 0.1);
}
@media screen and (max-width: 710px)
{
.ahb-statssection-container{width:100% !important;}
}
/* booking orders page */
.ahb-orderssection-container {
border: 1px solid #e6e6e6;
padding:0;
border-radius: 3px;
-webkit-box-flex: 1;
flex: 1;
margin: 1em 1em 1em 0;
min-width: 200px;
background: #ffffff;
position:relative;
}
.ahb-orders-list{border-collapse: collapse;}
.ahb-orders-list tbody tr:not(:last-child){border-bottom:2px solid #ffffff;}
.ahb-orders-list td .button{margin-right:5px;float:none;}
.ahb-orders-list td .button:last-child{margin-right:0;}
.ahb-orders-list thead{
background:white;
padding:10px 20px;
-webkit-box-shadow: 0px 2px 2px 0px rgba(100, 100, 100, 0.1);
-moz-box-shadow: 0px 2px 2px 0px rgba(100, 100, 100, 0.1);
box-shadow: 0px 2px 2px 0px rgba(100, 100, 100, 0.1);
}
/* admin int */
#dex_printable_contents,
.ahb-adintsection-container {
border: 1px solid #e6e6e6;
padding:0px;
border-radius: 3px;
-webkit-box-flex: 1;
flex: 1;
margin: 1em 1em 1em 0;
min-width: 200px;
background: #f6f6f6;
position:relative;
}
.ahb-adintsection{padding:20px;display:none;}
.ahb-adintsection label{font-weight:600;}
.ahb-adintsection-active{display:block;}
.ahb-breadcrumb{
background:white;
padding:10px 20px;
-webkit-box-shadow: 0px 2px 2px 0px rgba(100, 100, 100, 0.1);
-moz-box-shadow: 0px 2px 2px 0px rgba(100, 100, 100, 0.1);
box-shadow: 0px 2px 2px 0px rgba(100, 100, 100, 0.1);
}
.ahb-step{display:inline-block; cursor:pointer;}
.ahb-step:not(:last-child){margin-right:50px;}
.ahb-step *{
color:#8c8c8c;
line-height:28px;
font-weight:600;
font-style:normal;
text-decoration:none;
}
.ahb-step i{
display:inline-block;
width: 28px;
height: 28px;
background:#e2e2e2;
border-radius:20px;
text-align:center;
}
.ahb-step:hover i,
.ahb-step.ahb-step-active i{background:#006799;color:#ffffff;}
.ahb-step:hover label,
.ahb-step.ahb-step-active label{color:#006799;}
.form-builder{
width: 100% !important;
background: white !important;
border-radius: 6px !important;
border: 1px solid #e6e6e6 !important;
height:620px !important;
}
.form-builder #tabs{
height:615px !important;
border-right: 1px solid #e6e6e6;
border-left:0;
border-top:0;
border-bottom:0;
}
.working_dates input[type='checkbox'] { width: auto !important; margin-left: 10px; }
#sWD0 { margin-left: 0px; }
#dex_printable_contents{overflow:auto;}
.cpapp_no_wrap{
width: 100%;
display:flex;
border-bottom:1px solid #e6e6e6;
}
.cpapp_no_wrap:first-child,
.cpapp_no_wrap:last-child{
border-bottom:0;
}
.cpappb_field_0,
.cpappb_field_1,
.cpappb_field_2,
.cpappb_field_3,
.cpappb_field_4,
.cpappb_field_5,
.cpappb_field_6,
.cpappb_field_7,
.cpappb_field_8,
.cpappb_field_9,
.cpappb_field_10,
.cpappb_field_11{
flex-grow:1;
margin:0;
padding:10px 0 10px 10px;
border-bottom:0;
}
.cpappb_field_header{
background:white;
border-bottom:0;
-webkit-box-shadow: 0px 2px 2px 0px rgba(100, 100, 100, 0.1);
-moz-box-shadow: 0px 2px 2px 0px rgba(100, 100, 100, 0.1);
box-shadow: 0px 2px 2px 0px rgba(100, 100, 100, 0.1);
}
.ahb-statssection{
text-align:center;
}
.ahb-statssection .canvas{
margin-left: auto !important;
margin-right: auto !important;
width: 310px;
}
.ahb-statssection #dex_printable_contents{
border: 0;
text-align:left;
overflow:unset;
}
.button.n{pointer-events: none !important;}
.button-primary2 { background-color: #AADDFF !important; }
.button-primary3 { background-color: #CCFFFF !important; }
.ahbsmallpadding1 td, .ahbsmallpadding1 tr, .ahbsmallpadding1 th { margin: 0px !important; padding:4px !important; }
/*
#facceptance{
background: url("cupertino/images/ui-bg_glass_80_eebd4dc_1x400.png") repeat-x scroll 50% 50% #619218;
border: 1px solid #619218;
color: #25530F;
}
#facceptance span{padding-left: 0; padding-right:0;}
*/ | web/app/plugins/appointment-hour-booking/css/newadminlayout.css | .width60{width:57%}
/* main - lists page */
.clear{clear:both;}
label {font-weight:600;}
.ahb-new-calendar{width:50%;}
.ahb-section-container {
border: 1px solid #e6e6e6;
padding: 20px;
border-radius: 3px;
-webkit-box-flex: 1;
flex: 1;
margin: 1em 1em 1em 0;
min-width: 200px;
background: white;
position:relative;
}
.ahb-section{}
.ahb-section label{font-weight:600;}
.ahb-calendars-list{border-collapse: collapse;}
.ahb-calendars-list thead tr,
.ahb-calendars-list tbody tr:not(:last-child){border-bottom:1px solid #efefef;}
.ahb-calendars-list td .button{margin-right:5px;}
.ahb-calendars-list td .button:last-child{margin-right:0;}
.ahb-mssg{margin-left:0 !important; display:none;}
.form-builder .button {
margin: 5px 10px !important;
}
.ui-button-text-only .ui-button-text {
padding: .4em 0em !important;
}
@media screen and (max-width: 710px)
{
.form-builder .button {
margin: 5px 5px !important;
}
.ahb-calendars-list table,
.ahb-calendars-list thead,
.ahb-calendars-list tbody,
.ahb-calendars-list th,
.ahb-calendars-list td,
.ahb-calendars-list tr
{
display: block;
width:100%;
text-align:left;
}
.ahb-calendars-list thead,
.ahb-calendars-list th{display:none}
.ahb-calendars-list td .button{width:48%; margin:5px 0;}
.ahb-calendars-list .firstcol,
.ahb-calendars-list td .button:nth-child(1) {display: none }
.ahb-calendars-list .lastcol { clear:both; visibility:hidden; }
.ahb-calendars-list td .button:nth-child(2),
.ahb-calendars-list td .button:nth-child(3),
.ahb-calendars-list td .button:nth-child(4),
.ahb-calendars-list td .button:nth-child(5),
.ahb-calendars-list td .button:nth-child(6),
.ahb-calendars-list td .button:nth-child(7),
.ahb-calendars-list td .button:nth-child(8),
.ahb-calendars-list td .button:nth-child(9) {float:left; margin-left:0px; margin-right:5px;}
.ahb-new-calendar,
.ahb-calendars-list input[type="text"]{width:100%;}
}
/* stats - reports page */
.ahb-statssection-container {
border: 1px solid #e6e6e6;
padding:0px;
border-radius: 3px;
-webkit-box-flex: 1;
flex: 1;
margin: 1em 1em 1em 0;
min-width: 200px;
background: #ffffff;
position:relative;
}
.ahb-buttons-container{margin:1em 1em 1em 0;}
.ahb-return-link{float:right;}
.ahb-statssection{padding:20px;}
.ahb-statssection-header{
background:white;
padding:10px 20px;
-webkit-box-shadow: 0px 2px 2px 0px rgba(100, 100, 100, 0.1);
-moz-box-shadow: 0px 2px 2px 0px rgba(100, 100, 100, 0.1);
box-shadow: 0px 2px 2px 0px rgba(100, 100, 100, 0.1);
}
@media screen and (max-width: 710px)
{
.ahb-statssection-container{width:100% !important;}
}
/* booking orders page */
.ahb-orderssection-container {
border: 1px solid #e6e6e6;
padding:0;
border-radius: 3px;
-webkit-box-flex: 1;
flex: 1;
margin: 1em 1em 1em 0;
min-width: 200px;
background: #ffffff;
position:relative;
}
.ahb-orders-list{border-collapse: collapse;}
.ahb-orders-list tbody tr:not(:last-child){border-bottom:2px solid #ffffff;}
.ahb-orders-list td .button{margin-right:5px;float:none;}
.ahb-orders-list td .button:last-child{margin-right:0;}
.ahb-orders-list thead{
background:white;
padding:10px 20px;
-webkit-box-shadow: 0px 2px 2px 0px rgba(100, 100, 100, 0.1);
-moz-box-shadow: 0px 2px 2px 0px rgba(100, 100, 100, 0.1);
box-shadow: 0px 2px 2px 0px rgba(100, 100, 100, 0.1);
}
/* admin int */
#dex_printable_contents,
.ahb-adintsection-container {
border: 1px solid #e6e6e6;
padding:0px;
border-radius: 3px;
-webkit-box-flex: 1;
flex: 1;
margin: 1em 1em 1em 0;
min-width: 200px;
background: #f6f6f6;
position:relative;
}
.ahb-adintsection{padding:20px;display:none;}
.ahb-adintsection label{font-weight:600;}
.ahb-adintsection-active{display:block;}
.ahb-breadcrumb{
background:white;
padding:10px 20px;
-webkit-box-shadow: 0px 2px 2px 0px rgba(100, 100, 100, 0.1);
-moz-box-shadow: 0px 2px 2px 0px rgba(100, 100, 100, 0.1);
box-shadow: 0px 2px 2px 0px rgba(100, 100, 100, 0.1);
}
.ahb-step{display:inline-block; cursor:pointer;}
.ahb-step:not(:last-child){margin-right:50px;}
.ahb-step *{
color:#8c8c8c;
line-height:28px;
font-weight:600;
font-style:normal;
text-decoration:none;
}
.ahb-step i{
display:inline-block;
width: 28px;
height: 28px;
background:#e2e2e2;
border-radius:20px;
text-align:center;
}
.ahb-step:hover i,
.ahb-step.ahb-step-active i{background:#006799;color:#ffffff;}
.ahb-step:hover label,
.ahb-step.ahb-step-active label{color:#006799;}
.form-builder{
width: 100% !important;
background: white !important;
border-radius: 6px !important;
border: 1px solid #e6e6e6 !important;
height:620px !important;
}
.form-builder #tabs{
height:615px !important;
border-right: 1px solid #e6e6e6;
border-left:0;
border-top:0;
border-bottom:0;
}
.working_dates input[type='checkbox'] { width: auto !important; margin-left: 10px; }
#sWD0 { margin-left: 0px; }
#dex_printable_contents{overflow:auto;}
.cpapp_no_wrap{
width: 100%;
display:flex;
border-bottom:1px solid #e6e6e6;
}
.cpapp_no_wrap:first-child,
.cpapp_no_wrap:last-child{
border-bottom:0;
}
.cpappb_field_0,
.cpappb_field_1,
.cpappb_field_2,
.cpappb_field_3,
.cpappb_field_4,
.cpappb_field_5,
.cpappb_field_6,
.cpappb_field_7,
.cpappb_field_8,
.cpappb_field_9,
.cpappb_field_10,
.cpappb_field_11{
flex-grow:1;
margin:0;
padding:10px 0 10px 10px;
border-bottom:0;
}
.cpappb_field_header{
background:white;
border-bottom:0;
-webkit-box-shadow: 0px 2px 2px 0px rgba(100, 100, 100, 0.1);
-moz-box-shadow: 0px 2px 2px 0px rgba(100, 100, 100, 0.1);
box-shadow: 0px 2px 2px 0px rgba(100, 100, 100, 0.1);
}
.ahb-statssection{
text-align:center;
}
.ahb-statssection .canvas{
margin-left: auto !important;
margin-right: auto !important;
width: 310px;
}
.ahb-statssection #dex_printable_contents{
border: 0;
text-align:left;
overflow:unset;
}
.button.n{pointer-events: none !important;}
.button-primary2 { background-color: #AADDFF !important; }
.button-primary3 { background-color: #CCFFFF !important; }
.ahbsmallpadding1 td, .ahbsmallpadding1 tr, .ahbsmallpadding1 th { margin: 0px !important; padding:4px !important; }
/*
#facceptance{
background: url("cupertino/images/ui-bg_glass_80_eebd4dc_1x400.png") repeat-x scroll 50% 50% #619218;
border: 1px solid #619218;
color: #25530F;
}
#facceptance span{padding-left: 0; padding-right:0;}
*/ | 0.129554 | 0.145328 |
<style> .jumbotron {
background-color: #FF0000 !important;
color: #FF0000 !important;
}
.container-fluid {
max-width: 1000px;
}
.container {
max-width: 1000px;
}
.bg-grey {
background-color: #213236;
}
div.table {
border: 1px solid black;
max-height: 300px;
overflow: auto;
}
.centered-text {
text-align: center
}
#container {
height: 100%;
width: 100%;
}
html {
overflow-x: hidden !important;
}
body {
padding-top: 50px;
perspective: 1200px;
}
.scrollable {
height: 100%;
overflow: auto !important;
}
#sidebar {
position: relative;
width: 220px;
height: 100%;
max-width: 100%;
overflow-y: scroll;
overflow-x: hidden;
float: right;
z-index: 11;
-webkit-transition: all 1s ease-out;
-moz-transition: all 1s ease-out;
transition: all 1s ease-out;
}
#map {
position: relative;
width: auto;
height: 100%;
overflow-y: hidden;
}
.mapboxgl-popup {
max-width: 400px;
font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
z-index: 12;
}
.marker-title {
font-weight: 700;
}
.leaflet-container {
background: none;
}
#btn.btn-primary.savedesign {
position: absolute;
left: 50%;
top: 55px;
}
#loading {
position: absolute;
width: 220px;
height: 19px;
top: 50%;
left: 50%;
margin: -10px 0 0 -110px;
z-index: 20001;
}
#features {
margin: 0px;
border: none;
border-radius: 0px;
-webkit-box-shadow: none;
box-shadow: none;
}
#aboutTabsContent {
padding-top: 10px;
}
.progress-bar-full {
width: 100%;
}
.white {
color: #FFFFFF;
}
.feature-row {
cursor: pointer;
}
#sidebar-hide-btn {
margin-top: -2px;
}
#sidebar-toggle-btn {
background-color: rgba(255, 255, 255, 0.9);
text-align: center;
}
.sidebar-wrapper {
width: 100%;
height: 100%;
position: relative;
}
.sidebar-table {
position: absolute;
width: 100%;
top: 103px;
bottom: 0px;
overflow: auto;
}
.table {
margin-bottom: 0px;
}
.btnz {
display: inline-block;
text-align: center;
padding: 10px 10px;
border: none;
background-color: #ececec;
text-decoration: none;
font-size: 16px;
color: #FFF;
}
.facebook {
background-color: #3b5998;
}
.gplus {
background-color: #dd4b39;
}
.twitter {
background-color: #55acee;
}
.pinterest {
background-color: #cc2127;
}
.linkedin {
background-color: #0077b5;
}
.navbar {
background-color: #213236;
font-family: "Roboto", "HelveticaNeue", "Helvetica Neue", sans-serif;
font-size: 1.07143em;
font-weight: 700;
}
.navbar .navbar-brand {
font-weight: 700;
font-size: 25px;
color: #f7f7f7;
}
.navbar-collapse.in {
overflow-y: hidden;
}
.navbar-header .navbar-icon-container {
margin-right: 15px;
}
.navbar-header .navbar-icon {
line-height: 50px;
height: 50px;
}
.navbar-header a.navbar-icon {
margin-left: 25px;
}
.typeahead {
background-color: #213236;
}
.tt-dropdown-menu {
background-color: #FFFFFF;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 4px 4px 4px 4px;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
margin-top: 4px;
padding: 4px 0;
width: 100%;
max-height: 300px;
overflow: auto;
}
.mapboxgl-ctrl-geocoder {
z-index: 12 !important;
}
.tt-suggestion {
font-size: 14px;
line-height: 20px;
padding: 3px 10px;
}
.tt-suggestion.tt-cursor {
background-color: #0097CF;
color: #FFFFFF;
cursor: pointer;
}
.tt-suggestion p {
margin: 0;
}
.tt-suggestion + .tt-suggestion {
border-top: 1px solid #ccc;
}
.typeahead-header {
margin: 0 5px 5px 5px;
padding: 3px 0;
border-bottom: 2px solid #333;
}
.has-feedback .form-control-feedback {
position: absolute;
top: 0;
right: 0;
display: block;
width: 34px;
height: 34px;
line-height: 34px;
text-align: center;
}
#render_map {
position: absolute;
top: 10px;
margin-right: auto;
margin-left: auto;
width: 125px;
height: 30px;
padding: 5px;
border-radius: 5px;
font-size: 18px;
text-align: center;
color: #fff;
background-color: #213236;
}
#snapshot {
position: relative;
width: auto;
height: auto;
}
div.slider.slider-horizontal {
width: 150px;
}
img {
display: block;
background-position: center center;
}
.flash {
background-color: #FBB0B0;
padding: 10px;
width: 400px;
}
.my-product-grid {
padding: 0;
margin: 0 auto;
max-width: 1100px;
box-sizing: border-box;
display: block;
}
.my-product-row {
display: block;
width: 100%;
clear: both;
}
.my-product-embed {
padding: 0 10px 20px 10px;
margin: 0;
width: 25%;
box-sizing: border-box;
display: block;
float: left;
}
.mapboxgl-ctrl-group {
height: 90pt;
width: 30pt;
margin: 10 10pt 20pt 0px !important;
}
.mapboxgl-ctrl-group > .mapboxgl-ctrl-icon {
width: 30pt;
height: 30pt;
}
.mapboxgl-ctrl-group > .mapboxgl-ctrl-icon > .arrow {
width: 25pt !important;
height: 25pt !important;
}
.legend-container {
position: absolute;
top: 200px;
left: 0;
padding: 0 10px;
margin-bottom: 30px;
z-index: 1;
}
.legend {
font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
background-color: #fff;
padding: 10px;
border-radius: 3px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.10);
}
.legend h4 {
margin: 0 0 10px;
}
.legend-key {
display: inline-block;
border-radius: 50%;
width: 10px;
height: 10px;
margin-right: 5px;
}
</style> | static/css/style_inline_base.css | <style> .jumbotron {
background-color: #FF0000 !important;
color: #FF0000 !important;
}
.container-fluid {
max-width: 1000px;
}
.container {
max-width: 1000px;
}
.bg-grey {
background-color: #213236;
}
div.table {
border: 1px solid black;
max-height: 300px;
overflow: auto;
}
.centered-text {
text-align: center
}
#container {
height: 100%;
width: 100%;
}
html {
overflow-x: hidden !important;
}
body {
padding-top: 50px;
perspective: 1200px;
}
.scrollable {
height: 100%;
overflow: auto !important;
}
#sidebar {
position: relative;
width: 220px;
height: 100%;
max-width: 100%;
overflow-y: scroll;
overflow-x: hidden;
float: right;
z-index: 11;
-webkit-transition: all 1s ease-out;
-moz-transition: all 1s ease-out;
transition: all 1s ease-out;
}
#map {
position: relative;
width: auto;
height: 100%;
overflow-y: hidden;
}
.mapboxgl-popup {
max-width: 400px;
font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
z-index: 12;
}
.marker-title {
font-weight: 700;
}
.leaflet-container {
background: none;
}
#btn.btn-primary.savedesign {
position: absolute;
left: 50%;
top: 55px;
}
#loading {
position: absolute;
width: 220px;
height: 19px;
top: 50%;
left: 50%;
margin: -10px 0 0 -110px;
z-index: 20001;
}
#features {
margin: 0px;
border: none;
border-radius: 0px;
-webkit-box-shadow: none;
box-shadow: none;
}
#aboutTabsContent {
padding-top: 10px;
}
.progress-bar-full {
width: 100%;
}
.white {
color: #FFFFFF;
}
.feature-row {
cursor: pointer;
}
#sidebar-hide-btn {
margin-top: -2px;
}
#sidebar-toggle-btn {
background-color: rgba(255, 255, 255, 0.9);
text-align: center;
}
.sidebar-wrapper {
width: 100%;
height: 100%;
position: relative;
}
.sidebar-table {
position: absolute;
width: 100%;
top: 103px;
bottom: 0px;
overflow: auto;
}
.table {
margin-bottom: 0px;
}
.btnz {
display: inline-block;
text-align: center;
padding: 10px 10px;
border: none;
background-color: #ececec;
text-decoration: none;
font-size: 16px;
color: #FFF;
}
.facebook {
background-color: #3b5998;
}
.gplus {
background-color: #dd4b39;
}
.twitter {
background-color: #55acee;
}
.pinterest {
background-color: #cc2127;
}
.linkedin {
background-color: #0077b5;
}
.navbar {
background-color: #213236;
font-family: "Roboto", "HelveticaNeue", "Helvetica Neue", sans-serif;
font-size: 1.07143em;
font-weight: 700;
}
.navbar .navbar-brand {
font-weight: 700;
font-size: 25px;
color: #f7f7f7;
}
.navbar-collapse.in {
overflow-y: hidden;
}
.navbar-header .navbar-icon-container {
margin-right: 15px;
}
.navbar-header .navbar-icon {
line-height: 50px;
height: 50px;
}
.navbar-header a.navbar-icon {
margin-left: 25px;
}
.typeahead {
background-color: #213236;
}
.tt-dropdown-menu {
background-color: #FFFFFF;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 4px 4px 4px 4px;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
margin-top: 4px;
padding: 4px 0;
width: 100%;
max-height: 300px;
overflow: auto;
}
.mapboxgl-ctrl-geocoder {
z-index: 12 !important;
}
.tt-suggestion {
font-size: 14px;
line-height: 20px;
padding: 3px 10px;
}
.tt-suggestion.tt-cursor {
background-color: #0097CF;
color: #FFFFFF;
cursor: pointer;
}
.tt-suggestion p {
margin: 0;
}
.tt-suggestion + .tt-suggestion {
border-top: 1px solid #ccc;
}
.typeahead-header {
margin: 0 5px 5px 5px;
padding: 3px 0;
border-bottom: 2px solid #333;
}
.has-feedback .form-control-feedback {
position: absolute;
top: 0;
right: 0;
display: block;
width: 34px;
height: 34px;
line-height: 34px;
text-align: center;
}
#render_map {
position: absolute;
top: 10px;
margin-right: auto;
margin-left: auto;
width: 125px;
height: 30px;
padding: 5px;
border-radius: 5px;
font-size: 18px;
text-align: center;
color: #fff;
background-color: #213236;
}
#snapshot {
position: relative;
width: auto;
height: auto;
}
div.slider.slider-horizontal {
width: 150px;
}
img {
display: block;
background-position: center center;
}
.flash {
background-color: #FBB0B0;
padding: 10px;
width: 400px;
}
.my-product-grid {
padding: 0;
margin: 0 auto;
max-width: 1100px;
box-sizing: border-box;
display: block;
}
.my-product-row {
display: block;
width: 100%;
clear: both;
}
.my-product-embed {
padding: 0 10px 20px 10px;
margin: 0;
width: 25%;
box-sizing: border-box;
display: block;
float: left;
}
.mapboxgl-ctrl-group {
height: 90pt;
width: 30pt;
margin: 10 10pt 20pt 0px !important;
}
.mapboxgl-ctrl-group > .mapboxgl-ctrl-icon {
width: 30pt;
height: 30pt;
}
.mapboxgl-ctrl-group > .mapboxgl-ctrl-icon > .arrow {
width: 25pt !important;
height: 25pt !important;
}
.legend-container {
position: absolute;
top: 200px;
left: 0;
padding: 0 10px;
margin-bottom: 30px;
z-index: 1;
}
.legend {
font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
background-color: #fff;
padding: 10px;
border-radius: 3px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.10);
}
.legend h4 {
margin: 0 0 10px;
}
.legend-key {
display: inline-block;
border-radius: 50%;
width: 10px;
height: 10px;
margin-right: 5px;
}
</style> | 0.429429 | 0.114666 |
@media screen and (max-width: 480px) {
.card-head-content {
width: 60%;
}
.tab {
width: 20%;
margin-top: 0%;
background-color: #dff1f9;
height: 600px;
color: #394b54;
}
.btn-giant {
margin-top: 5%;
}
.btn-success:disabled {
color: #ffffff;
background-color: #bdc3c7;
}
.btn-warning:disabled {
color: #ffffff;
background-color: #bdc3c7;
}
.btn-danger:disabled {
color: #ffffff;
background-color: #bdc3c7;
}
.tabRest {
}
.tabTitle {
padding-top: 15%;
height: 35px;
text-align: center;
background-color: #829ca9;
color: #ffffff;
}
/* Change background color of buttons on hover */
.tabLinks:hover {
background-color: #ffffff;
color: red;
}
/* Create an active/current "tab button" class */
.tabLinks.active {
background-color: #ffffff;
color: #232f34;
}
.tabLinks {
padding-top: 20%;
width: 100%;
height: 35px;
text-align: center;
}
.tabLinksRight:hover {
background-color: #ffffff;
color: red;
}
/* Create an active/current "tab button" class */
.tabLinksRight.active {
background-color: #ffffff;
color: #232f34;
}
.tabLinksRight {
padding-top: 20%;
width: 100%;
height: 35px;
text-align: center;
}
.card {
margin-left: 25%;
width: 50%;
}
ul {
width: 30%;
height: 100%;
}
li {
margin-top: 10px;
margin-bottom: 15px;
margin-left: 0;
width: 35px;
height: 26px;
font-weight: bolder;
font-size: large;
}
.timeSquare {
width: 50%;
border-width: 0;
border-radius: 5px;
color: #000;
text-align: center;
font-size: x-large;
font-family: Microsoft YaHei, Microsoft YaHei UI, serif;
}
.selector {
margin-left: 3%;
}
.text-left-margin {
margin-left: 5%;
}
.text-right-margin {
margin-right: 5%;
}
.btn-big {
padding: 0% 4%;
width: auto;
height: 30px;
margin-top: 3%;
}
.myBigMargin {
margin-top: 30px;
}
} | src/main/resources/oldcode/static/css/teacher/seminarOn.css | @media screen and (max-width: 480px) {
.card-head-content {
width: 60%;
}
.tab {
width: 20%;
margin-top: 0%;
background-color: #dff1f9;
height: 600px;
color: #394b54;
}
.btn-giant {
margin-top: 5%;
}
.btn-success:disabled {
color: #ffffff;
background-color: #bdc3c7;
}
.btn-warning:disabled {
color: #ffffff;
background-color: #bdc3c7;
}
.btn-danger:disabled {
color: #ffffff;
background-color: #bdc3c7;
}
.tabRest {
}
.tabTitle {
padding-top: 15%;
height: 35px;
text-align: center;
background-color: #829ca9;
color: #ffffff;
}
/* Change background color of buttons on hover */
.tabLinks:hover {
background-color: #ffffff;
color: red;
}
/* Create an active/current "tab button" class */
.tabLinks.active {
background-color: #ffffff;
color: #232f34;
}
.tabLinks {
padding-top: 20%;
width: 100%;
height: 35px;
text-align: center;
}
.tabLinksRight:hover {
background-color: #ffffff;
color: red;
}
/* Create an active/current "tab button" class */
.tabLinksRight.active {
background-color: #ffffff;
color: #232f34;
}
.tabLinksRight {
padding-top: 20%;
width: 100%;
height: 35px;
text-align: center;
}
.card {
margin-left: 25%;
width: 50%;
}
ul {
width: 30%;
height: 100%;
}
li {
margin-top: 10px;
margin-bottom: 15px;
margin-left: 0;
width: 35px;
height: 26px;
font-weight: bolder;
font-size: large;
}
.timeSquare {
width: 50%;
border-width: 0;
border-radius: 5px;
color: #000;
text-align: center;
font-size: x-large;
font-family: Microsoft YaHei, Microsoft YaHei UI, serif;
}
.selector {
margin-left: 3%;
}
.text-left-margin {
margin-left: 5%;
}
.text-right-margin {
margin-right: 5%;
}
.btn-big {
padding: 0% 4%;
width: auto;
height: 30px;
margin-top: 3%;
}
.myBigMargin {
margin-top: 30px;
}
} | 0.491456 | 0.096195 |
@import url('https://fonts.googleapis.com/css2?family=Abel&family=Aladin&family=Bungee+Shade&display=swap');
/*Seccion navbar*/
html,body{
margin: 0;
background-color:rgb(255, 255, 255);
height:100vh;
}
.dropdown{
margin:0 auto;
}
.toro{
width: 80px;
padding: 2px 0px 0px 4px;
}
.titulo{
color: rgb(255, 255, 255);
font-size: 40px;
font-family: 'Bungee Shade', cursive;
text-decoration: none;
position: relative;
bottom: 20px;
}
nav{
height: 70px;
background-color:rgb(75, 75, 75);
}
nav ul {
padding: 0px;
margin:0px;
float: right;
margin-right:120px;
}
nav ul li{
background: rgb(75, 75, 75);
list-style: none;
position:relative;
display: inline-block;
}
nav ul li a{
display: inline-block;
padding: 0 15px;
color:white;
text-decoration: none;
line-height:60px;
font-size: 20px;
font-family: 'Abel', sans-serif;
}
nav ul li a:hover{
background-color:rgb(39, 38, 38);
}
nav ul ul{
position:absolute;
top:60px;
display:none;
}
nav ul li:hover >ul{
display: block;
}
nav ul ul li{
width: 180px;
float: none;
display: list-item;
position: relative;
}
/*Seccion Descripcion*/
.caja{
display:flex;
flex-direction: row-reverse;
padding:30px;
margin:20px;
background-color: rgb(255, 255, 255);
box-shadow: 5px 4px 8px rgb(87, 85, 85);
font-family: 'Abel', sans-serif;
font-size: 20px;
}
#titulo{
font-size:20px;
font-family: 'Aladin', cursive;
font-size: 2rem;
}
.caja img{
width:200px;
height:220px;
border-radius:50%;
margin:19px 40px 0 0;
}
.link{
text-decoration: none;
font-family: 'Abel', sans-serif;
font-size: 20px;
color:black;
}
#contenido {
padding-bottom:20px; /* este valor debe ser igual o mayor al alto del pie */
}
#pagina {
position: relative;
min-height: 100%;
}
/*Footboard*/
#pie {
height:90px;
line-height:80px;
background:rgb(75, 75, 75);
color:white;
text-align:center;
position:absolute;
/* bottom:0; */
left:0;
width:100%;
font-family: 'Abel', sans-serif;
font-size: 18.5px;
}
.item1{
position:absolute;
left:250px;
}
.item2{
position:absolute;
right:0;
left:800px;
}
.item2 a{
color:white;
text-decoration:none;
}
.icon{
position:relative;
top:12px;
} | static/css/estilo_aboutus.css | @import url('https://fonts.googleapis.com/css2?family=Abel&family=Aladin&family=Bungee+Shade&display=swap');
/*Seccion navbar*/
html,body{
margin: 0;
background-color:rgb(255, 255, 255);
height:100vh;
}
.dropdown{
margin:0 auto;
}
.toro{
width: 80px;
padding: 2px 0px 0px 4px;
}
.titulo{
color: rgb(255, 255, 255);
font-size: 40px;
font-family: 'Bungee Shade', cursive;
text-decoration: none;
position: relative;
bottom: 20px;
}
nav{
height: 70px;
background-color:rgb(75, 75, 75);
}
nav ul {
padding: 0px;
margin:0px;
float: right;
margin-right:120px;
}
nav ul li{
background: rgb(75, 75, 75);
list-style: none;
position:relative;
display: inline-block;
}
nav ul li a{
display: inline-block;
padding: 0 15px;
color:white;
text-decoration: none;
line-height:60px;
font-size: 20px;
font-family: 'Abel', sans-serif;
}
nav ul li a:hover{
background-color:rgb(39, 38, 38);
}
nav ul ul{
position:absolute;
top:60px;
display:none;
}
nav ul li:hover >ul{
display: block;
}
nav ul ul li{
width: 180px;
float: none;
display: list-item;
position: relative;
}
/*Seccion Descripcion*/
.caja{
display:flex;
flex-direction: row-reverse;
padding:30px;
margin:20px;
background-color: rgb(255, 255, 255);
box-shadow: 5px 4px 8px rgb(87, 85, 85);
font-family: 'Abel', sans-serif;
font-size: 20px;
}
#titulo{
font-size:20px;
font-family: 'Aladin', cursive;
font-size: 2rem;
}
.caja img{
width:200px;
height:220px;
border-radius:50%;
margin:19px 40px 0 0;
}
.link{
text-decoration: none;
font-family: 'Abel', sans-serif;
font-size: 20px;
color:black;
}
#contenido {
padding-bottom:20px; /* este valor debe ser igual o mayor al alto del pie */
}
#pagina {
position: relative;
min-height: 100%;
}
/*Footboard*/
#pie {
height:90px;
line-height:80px;
background:rgb(75, 75, 75);
color:white;
text-align:center;
position:absolute;
/* bottom:0; */
left:0;
width:100%;
font-family: 'Abel', sans-serif;
font-size: 18.5px;
}
.item1{
position:absolute;
left:250px;
}
.item2{
position:absolute;
right:0;
left:800px;
}
.item2 a{
color:white;
text-decoration:none;
}
.icon{
position:relative;
top:12px;
} | 0.375248 | 0.071267 |
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}
header{
position: relative;
}
header nav.row{
--bs-gutter-x: 0;
background-color: #000;
padding: 20px;
}
header nav .logo h3{
color: white;
text-align: center;
}
header nav ul{
padding: 0;
margin: 0;
text-align: right;
}
header nav ul li {
display: inline-block;
list-style: none;
margin: 0 10px;
}
header nav ul li a {
text-decoration: none;
font-size: 18px;
color: white;
}
header .navmenu .hide-nav button{
padding: 20px;
color: white;
background: none;
border: none;
font-size: 18px;
cursor: pointer;
}
.banner .carousel.slide .carousel-inner .carousel-item img{
width: 100%;
height: 480px;
}
.banner .carousel.slide .carousel-inner .carousel-item{
position: relative;
}
.banner .carousel.slide .carousel-inner .carousel-item .banner-text{
background-color: rgba(0, 0, 0, .6);
text-align: center;
color: white;
padding: 40px;
letter-spacing: 5px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
-webkit-transform: translate(-50%,-50%);
-moz-transform: translate(-50%,-50%);
-ms-transform: translate(-50%,-50%);
-o-transform: translate(-50%,-50%);
}
/* ---------------------------------collection-------------------- */
.collection{
width: 100%;
margin: 50px 0;
}
.collection img{
width: 100%;
height: 100%;
}
.collection .collection-img1{
width: 100%;
height: 300px;
}
.collection .collection-img2{
width: 100%;
height: 300px;
padding-bottom: 20px;
}
.collection .collection-text{
padding: 20px 0;
}
.collection .collection-text h3{
color: rgb(223, 73, 73);
letter-spacing: 5px;
}
.collection .collection-text h1{
font:bold;
}
.collection .collection-text button{
background-color: transparent;
padding: 5px;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
}
/*------------------------------------- section featured and trending-----------------------------*/
.featured,.trending,.chehare,.textimg,.latest{
margin: 70px 0;
}
.featured .featured-text,.trending .trending-text,.trending .trending-btn,.latest .latest-blog{
text-align: center;
}
.featured .featured-text h2,.trending .trending-text h2{
padding-bottom: 15px;
}
.featured .featured-text p{
word-spacing: 25px;
font-weight: bold;
padding: 10px 0;
}
.featured .featured-text p span,.trending .trending-text p span{
color: rgb(223, 73, 73);
}
.featured .featured-boxs .featured-box .featured-box-img,.trending .trending-boxs .trending-box .trending-box-img{
height: 300px;
}
.featured .featured-boxs .featured-box .featured-box-img img,.trending .trending-boxs .trending-box .trending-box-img img{
width: 100%;
height: 100%;
}
.featured .featured-boxs .featured-box .featured-box-text,.trending .trending-boxs .trending-box .trending-box-text{
padding: 15px 10px;
}
.featured .featured-boxs .featured-box .featured-box-text h3 svg,.trending .trending-boxs .trending-box .trending-box-text h3 svg{
font-size: 22px;
}
.featured .featured-boxs .featured-box .featured-box-text p svg,.trending .trending-boxs .trending-box .trending-box-text p svg{
color: rgb(202, 115, 127);
font-size: 18px;
}
.featured .featured-boxs .featured-box .featured-box-text p span svg,.trending .trending-boxs .trending-box .trending-box-text p span svg{
color:silver;
}
.featured .featured-boxs .featured-box .featured-box-text a svg,.trending .trending-boxs .trending-box .trending-box-text a svg{
color: rgb(95, 228, 172);
font-size: 18px;
}
.trending .trending-btn button{
font-weight: bold;
background-color: transparent;
padding: 10px 20px;
}
/*--------------------------------------section chehare and textimg---------------------*/
.chehare .row,.textimg .row{
--bs-gutter-x: 0rem;
}
.chehare .chehare-img,.textimg .textimg-img{
height: 500px;
background-size: cover;
background-position:center;
background-repeat: no-repeat;
position: relative;
}
.chehare .chehare-img.img1{
background-image: url(../images/chehare1.jpg);
}
.chehare .chehare-img.img2{
background-image: url(../images/chehare2.jpg);
}
.textimg .textimg-img{
background-image: url(../images/textimg1.jpg);
}
.chehare .chehare-img .chehare-img-text,.textimg .textimg-img .textimg-text{
width: 100%;
text-align: center;
color: white;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
-webkit-transform: translate(-50%,-50%);
-moz-transform: translate(-50%,-50%);
-ms-transform: translate(-50%,-50%);
-o-transform: translate(-50%,-50%);
}
.chehare .chehare-img .chehare-img-text h2{
font-weight: bold;
font-size: 40px;
}
.chehare .chehare-img .chehare-img-text span{
color: deeppink;
}
.chehare .chehare-img .chehare-img-text p{
letter-spacing: 7px;
}
.textimg .textimg-img .textimg-text p{
font-size: 15px;
font-style: italic;
}
/* ------------------------ */
.latest .latest-blog{
padding: 20px 0 30px 0;
}
.latest .latest-box .latest-box-img{
width: 100%;
height: 250px;
}
.latest .latest-box .latest-box-img img{
width: 100%;
height: 100%;
}
.latest .latest-box .latest-box-text h2{
padding: 15px 0;
}
.latest .latest-box .latest-box-text button{
padding: 5px 15px;
background-color: transparent;
font-weight: bold;
}
footer{
margin-top: 30px;
padding: 50px 0;
background-color: rgb(24, 23, 23);
}
.footer-boxs .footer-box h3{
color: white;
font-size: 18px;
letter-spacing: 0.1em;
text-transform: uppercase;
margin-bottom: 7px;
font-weight: bold;
}
.footer-boxs .footer-box ul{
list-style: none;
padding: 0;
}
.footer-boxs .footer-box ul li{
margin-bottom: 5px;
}
.footer-boxs .footer-box ul li a{
color: #b2bfe0;
text-decoration: none;
}
.footer-boxs .footer-box ul li a:hover{
color: #2a81ea;
}
.footer-boxs .footer-box p{
color: #b2bfe0;
}
.footer-boxs .footer-box button{
padding: 10px 30px;
margin: 20px 0;
color: white;
background-color: transparent;
font-weight: bold;
background-color: deeppink;
border: none;
display: block;
}
.footer-boxs .footer-box svg{
font-size: 22px;
color: white;
margin: 0 5px;
cursor: pointer;
}
.footer-boxs .footer-box svg:hover{
color: #2a81ea;
} | public/userpanel/css/main.css | *{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}
header{
position: relative;
}
header nav.row{
--bs-gutter-x: 0;
background-color: #000;
padding: 20px;
}
header nav .logo h3{
color: white;
text-align: center;
}
header nav ul{
padding: 0;
margin: 0;
text-align: right;
}
header nav ul li {
display: inline-block;
list-style: none;
margin: 0 10px;
}
header nav ul li a {
text-decoration: none;
font-size: 18px;
color: white;
}
header .navmenu .hide-nav button{
padding: 20px;
color: white;
background: none;
border: none;
font-size: 18px;
cursor: pointer;
}
.banner .carousel.slide .carousel-inner .carousel-item img{
width: 100%;
height: 480px;
}
.banner .carousel.slide .carousel-inner .carousel-item{
position: relative;
}
.banner .carousel.slide .carousel-inner .carousel-item .banner-text{
background-color: rgba(0, 0, 0, .6);
text-align: center;
color: white;
padding: 40px;
letter-spacing: 5px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
-webkit-transform: translate(-50%,-50%);
-moz-transform: translate(-50%,-50%);
-ms-transform: translate(-50%,-50%);
-o-transform: translate(-50%,-50%);
}
/* ---------------------------------collection-------------------- */
.collection{
width: 100%;
margin: 50px 0;
}
.collection img{
width: 100%;
height: 100%;
}
.collection .collection-img1{
width: 100%;
height: 300px;
}
.collection .collection-img2{
width: 100%;
height: 300px;
padding-bottom: 20px;
}
.collection .collection-text{
padding: 20px 0;
}
.collection .collection-text h3{
color: rgb(223, 73, 73);
letter-spacing: 5px;
}
.collection .collection-text h1{
font:bold;
}
.collection .collection-text button{
background-color: transparent;
padding: 5px;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
}
/*------------------------------------- section featured and trending-----------------------------*/
.featured,.trending,.chehare,.textimg,.latest{
margin: 70px 0;
}
.featured .featured-text,.trending .trending-text,.trending .trending-btn,.latest .latest-blog{
text-align: center;
}
.featured .featured-text h2,.trending .trending-text h2{
padding-bottom: 15px;
}
.featured .featured-text p{
word-spacing: 25px;
font-weight: bold;
padding: 10px 0;
}
.featured .featured-text p span,.trending .trending-text p span{
color: rgb(223, 73, 73);
}
.featured .featured-boxs .featured-box .featured-box-img,.trending .trending-boxs .trending-box .trending-box-img{
height: 300px;
}
.featured .featured-boxs .featured-box .featured-box-img img,.trending .trending-boxs .trending-box .trending-box-img img{
width: 100%;
height: 100%;
}
.featured .featured-boxs .featured-box .featured-box-text,.trending .trending-boxs .trending-box .trending-box-text{
padding: 15px 10px;
}
.featured .featured-boxs .featured-box .featured-box-text h3 svg,.trending .trending-boxs .trending-box .trending-box-text h3 svg{
font-size: 22px;
}
.featured .featured-boxs .featured-box .featured-box-text p svg,.trending .trending-boxs .trending-box .trending-box-text p svg{
color: rgb(202, 115, 127);
font-size: 18px;
}
.featured .featured-boxs .featured-box .featured-box-text p span svg,.trending .trending-boxs .trending-box .trending-box-text p span svg{
color:silver;
}
.featured .featured-boxs .featured-box .featured-box-text a svg,.trending .trending-boxs .trending-box .trending-box-text a svg{
color: rgb(95, 228, 172);
font-size: 18px;
}
.trending .trending-btn button{
font-weight: bold;
background-color: transparent;
padding: 10px 20px;
}
/*--------------------------------------section chehare and textimg---------------------*/
.chehare .row,.textimg .row{
--bs-gutter-x: 0rem;
}
.chehare .chehare-img,.textimg .textimg-img{
height: 500px;
background-size: cover;
background-position:center;
background-repeat: no-repeat;
position: relative;
}
.chehare .chehare-img.img1{
background-image: url(../images/chehare1.jpg);
}
.chehare .chehare-img.img2{
background-image: url(../images/chehare2.jpg);
}
.textimg .textimg-img{
background-image: url(../images/textimg1.jpg);
}
.chehare .chehare-img .chehare-img-text,.textimg .textimg-img .textimg-text{
width: 100%;
text-align: center;
color: white;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
-webkit-transform: translate(-50%,-50%);
-moz-transform: translate(-50%,-50%);
-ms-transform: translate(-50%,-50%);
-o-transform: translate(-50%,-50%);
}
.chehare .chehare-img .chehare-img-text h2{
font-weight: bold;
font-size: 40px;
}
.chehare .chehare-img .chehare-img-text span{
color: deeppink;
}
.chehare .chehare-img .chehare-img-text p{
letter-spacing: 7px;
}
.textimg .textimg-img .textimg-text p{
font-size: 15px;
font-style: italic;
}
/* ------------------------ */
.latest .latest-blog{
padding: 20px 0 30px 0;
}
.latest .latest-box .latest-box-img{
width: 100%;
height: 250px;
}
.latest .latest-box .latest-box-img img{
width: 100%;
height: 100%;
}
.latest .latest-box .latest-box-text h2{
padding: 15px 0;
}
.latest .latest-box .latest-box-text button{
padding: 5px 15px;
background-color: transparent;
font-weight: bold;
}
footer{
margin-top: 30px;
padding: 50px 0;
background-color: rgb(24, 23, 23);
}
.footer-boxs .footer-box h3{
color: white;
font-size: 18px;
letter-spacing: 0.1em;
text-transform: uppercase;
margin-bottom: 7px;
font-weight: bold;
}
.footer-boxs .footer-box ul{
list-style: none;
padding: 0;
}
.footer-boxs .footer-box ul li{
margin-bottom: 5px;
}
.footer-boxs .footer-box ul li a{
color: #b2bfe0;
text-decoration: none;
}
.footer-boxs .footer-box ul li a:hover{
color: #2a81ea;
}
.footer-boxs .footer-box p{
color: #b2bfe0;
}
.footer-boxs .footer-box button{
padding: 10px 30px;
margin: 20px 0;
color: white;
background-color: transparent;
font-weight: bold;
background-color: deeppink;
border: none;
display: block;
}
.footer-boxs .footer-box svg{
font-size: 22px;
color: white;
margin: 0 5px;
cursor: pointer;
}
.footer-boxs .footer-box svg:hover{
color: #2a81ea;
} | 0.395718 | 0.071429 |
@charset "UTF-8";
/* CSS js_adv.v1.0.css last modified 10/10/25 */
/* ゲーム画面の外枠 */
div.js_game {
margin: 0px;
padding: 20px auto;
padding-right: 10px;
font-size: 14px;
font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'MS Pゴシック', Verdana, sans-serif;
}
/* ゲーム画面のDOM要素 */
div.disp {
margin: 20px auto;
padding: 0px;
overflow: hidden;
z-index: 1;
position: relative;
width: 300px;
height: 450px;
background-color: #000;
border: none;
}
/* モーダルウィンドウ */
div.modal {
margin: 20px auto;
padding: 0px;
overflow: hidden;
z-index: 210;
width: 300px;
height: 450px;
position: absolute;
left: 0px;
top: 0px;
background-color: #000;
border: none;
}
.clear_float {
clear: both;
}
/* 各種ウィンドウのフレーム */
.window1 {
margin: 0px;
padding: 0px;
background-color: #CBCBCC;
padding: 2px;
border-style: solid;
border-width: 1px;
border-color: #FDFDFE #9A9A9B #9A9A9B #FDFDFE;
}
.window2 {
margin: 0px;
padding: 0px;
border: solid 1px #818182;
}
.window3 {
margin: 0px;
padding: 0px;
background-color: #E2E2E3;
padding: 1px;
border-style: solid;
border-width: 1px;
border-color: #FDFDFE #DADADB #DADADB #FDFDFE;
}
/* タイトルウィンドウ外枠 */
.title_win {
margin: 0px;
padding: 0px;
width: 280px;
font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", Verdana, arial, sans-serif;
font-size: 18px;
line-height: 24px;
z-index: 200;
position: absolute;
top: 20px;
left: 180px;
border: solid 1px #616162;
cursor: default;
}
/* タイトルウィンドウのテキスト部分 */
.title_text {
margin: 0px;
padding: 4px;
text-align: center;
color: #ADD8E6;
overflow: hidden;
height: 24px;
background-color: #000;
border: solid 1px #818182;
}
/* 警告ウィンドウ外枠 */
.warn_win {
margin: 0px;
padding: 0px;
width: 540px;
font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", Verdana, arial, sans-serif;
font-size: 18px;
line-height: 24px;
letter-spacing: 1px;
z-index: 200;
position: absolute;
top: 150px;
left: 50px;
border: solid 1px #616162;
cursor: default;
}
/* 警告ウィンドウのテキスト部分 */
.warn_text {
margin: 0px;
padding: 4px;
text-align: center;
overflow: hidden;
color: #F00;
height: 24px;
background-color: #000;
border: solid 1px #818182;
}
/* メッセージウィンドウ外枠 */
.main_win {
margin: 0px;
padding: 0px;
width: 620px;
font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", Verdana, arial, sans-serif;
font-size: 12px;
line-height: 24px;
letter-spacing: 1px;
z-index: 200;
position: absolute;
top: 200px;
left: 10px;
border: solid 1px #000000;
cursor: pointer;
}
/* メッセージウィンドウのテキスト部分 */
.main_text {
margin: 0px;
padding: 0px;
color: #000;
overflow: hidden;
height: 100px;
background-color: #000;
border: solid 1px #818182;
}
/* 問題文のテキスト部分 */
.question {
margin: 0px;
padding: 0px;
width: 592px;
color: #FFF;
position: absolute;
top: 14px;
left: 14px;
background-color: transparent;
}
/* 選択肢のテキスト部分 */
.answer {
margin: 0px;
padding: 0px;
width: 592px;
color: #FFF;
text-indent: 15px;
position: absolute;
top: 50px;
left: 14px;
background-color: transparent;
cursor: pointer;
}
/* 二者択一のテキスト部分 */
table.conf_table {
border-collapse: collapse;
border: none;
}
table.conf_table td.ok, table.conf_table td.cancel {
padding: 5px 15px;
color: #FF8C00;
background-color: #000;
}
/* 顔グラフィック用のフレーム */
.char_img {
margin: 0px;
position: absolute;
width: auto;
border: none;
}
/* 顔グラフィックのIMG要素スタイル 初期サイズは96×96 */
.img_frm {
margin: 0px;
padding: 0px;
width: 96px;
height: 96px;
z-index: 200;
position: absolute;
top: 25px;
left: 25px;
overflow: hidden;
border: solid 1px #616162;
background-color: #FFF;
}
/* メッセージの話者表示部分 */
.char_name {
margin: 0px;
padding: 0px;
width: 592px;
color: #FFF;
overflow: hidden;
position: absolute;
top: 14px;
left: 14px;
background-color: transparent;
}
/* メッセージ部分のスタイル */
.message {
margin: 0px;
padding: 0px;
height: 120px;
width: 592px;
color: #FFF;
overflow: hidden;
position: absolute;
top: 14px;
left: 14px;
background-color: transparent;
}
/* ウィンドウの透過が顔グラフィックに継承されるため */
.black_sheet {
margin: 0px;
padding: 0px;
width: 98px;
height: 98px;
z-index: 150;
position: absolute;
top: 226px;
left: 36px;
background-color: #000;
}
/* メッセージ右下に表示されるアイコン */
.page_next {
margin: 0px;
padding: 0px;
width: 24px;
height: 24px;
z-index: 250;
position: absolute;
top: 0px;
left: 0px;
background-image: url(http://wiz-code.digick.jp/image/icon/enter06.png);
}
/* ノベルウィンドウ外枠 */
.text_win {
margin: 0px;
padding: 0;
color: #FFF;
font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", Verdana, arial, sans-serif;
font-size: 18px;
letter-spacing: 1px;
line-height: 24px;
width: 300px;
height: 100px;
z-index: 10;
position: absolute;
top: 350px;
/*left: 40px;*/
background-color: #000;
border: none;
cursor: pointer;
opacity: 1.0;
border-color: #000;
}
/* ノベルウィンドウのテキスト部分 */
.passage {
margin: 0px;
padding: 10px 15px 0px;
position: relative;
color: #FFF;
overflow: hidden;
}
/* 背景画像のフレーム */
.bg_frm {
margin: 0px;
padding: 0px;
width: 300px;
height: 450px;
overflow: hidden;
z-index: 5;
position: absolute;
top: 0px;
left: 0px;
background-color: #FFF;
}
/* 背景画像のIMG要素スタイル */
img.bg_img {
margin: 0px;
width: auto;
border: none;
background-color: #FFF;
}
/* 音楽再生の要素を格納 */
.track {
margin: 0px;
padding: 0px;
overflow: hidden;
position: absolute;
width: 0px;
height: 0px;
}
/* 画像のフレーム */
.fg_frm {
margin: 0px;
padding: 0px;
overflow: hidden;
z-index: 100;
position: absolute;
top: 0px;
left: 0px;
background-color: transparent;
}
/* 画像のIMG要素スタイル */
img.fg_img {
margin: 0px;
width: 100%;
border: none;
background-color: transparent;
}
/* ダイアログウィンドウの外枠 */
.dialog_win {
margin: 0px;
padding: 0px;
width: 450px;
font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", Verdana, arial, sans-serif;
font-size: 18px;
line-height: 24px;
letter-spacing: 1px;
z-index: 250;
position: absolute;
top: 110px;
left: 100px;
border: solid 1px #616162;
cursor: default;
}
/* ダイアログウィンドウのテキスト部分 */
.dialog_text {
margin: 0px;
padding: 10px;
text-align: center;
color: #FFF;
overflow: hidden;
height: 110px;
background-color: #000;
border: solid 1px #818182;
}
.dialog_text input {
font-size: 18px;
letter-spacing: 2px;
}
.dialog_text input.input_text {
margin-bottom: 20px;
border: 1px solid #3b6e22;
width: 410px;
background-color: #F0F8FF;
}
.dialog_text label {
padding: 0px;
text-align: left;
display: block;
margin-bottom: 10px;
}
.dialog_text input.input_ok {
color: #32CD32;
font-weight: bold;
width: 120px;
}
.dialog_text input.input_cancel {
margin-left: 10px;
color: #FF1493;
font-weight: bold;
width: 120px;
}
/* ロード中アイコンの表示 */
img.loading {
margin: 0px;
z-index: 300;
width: 64px;
height: 64px;
position: absolute;
top: 180px;
left: 120px;
border: none;
}
/* 音楽プレイヤーアイコンの表示 */
div.audio {
width: 32px;
height: 32px;
z-index: 300;
position: absolute;
left: 595px;
top: 10px;
cursor: pointer;
}
.quiz_font01 {
color: #FFF;
font-size: 20px;
font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", Verdana, arial, sans-serif;
} | public/assets/css/js_adv.v1.0.css | @charset "UTF-8";
/* CSS js_adv.v1.0.css last modified 10/10/25 */
/* ゲーム画面の外枠 */
div.js_game {
margin: 0px;
padding: 20px auto;
padding-right: 10px;
font-size: 14px;
font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'MS Pゴシック', Verdana, sans-serif;
}
/* ゲーム画面のDOM要素 */
div.disp {
margin: 20px auto;
padding: 0px;
overflow: hidden;
z-index: 1;
position: relative;
width: 300px;
height: 450px;
background-color: #000;
border: none;
}
/* モーダルウィンドウ */
div.modal {
margin: 20px auto;
padding: 0px;
overflow: hidden;
z-index: 210;
width: 300px;
height: 450px;
position: absolute;
left: 0px;
top: 0px;
background-color: #000;
border: none;
}
.clear_float {
clear: both;
}
/* 各種ウィンドウのフレーム */
.window1 {
margin: 0px;
padding: 0px;
background-color: #CBCBCC;
padding: 2px;
border-style: solid;
border-width: 1px;
border-color: #FDFDFE #9A9A9B #9A9A9B #FDFDFE;
}
.window2 {
margin: 0px;
padding: 0px;
border: solid 1px #818182;
}
.window3 {
margin: 0px;
padding: 0px;
background-color: #E2E2E3;
padding: 1px;
border-style: solid;
border-width: 1px;
border-color: #FDFDFE #DADADB #DADADB #FDFDFE;
}
/* タイトルウィンドウ外枠 */
.title_win {
margin: 0px;
padding: 0px;
width: 280px;
font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", Verdana, arial, sans-serif;
font-size: 18px;
line-height: 24px;
z-index: 200;
position: absolute;
top: 20px;
left: 180px;
border: solid 1px #616162;
cursor: default;
}
/* タイトルウィンドウのテキスト部分 */
.title_text {
margin: 0px;
padding: 4px;
text-align: center;
color: #ADD8E6;
overflow: hidden;
height: 24px;
background-color: #000;
border: solid 1px #818182;
}
/* 警告ウィンドウ外枠 */
.warn_win {
margin: 0px;
padding: 0px;
width: 540px;
font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", Verdana, arial, sans-serif;
font-size: 18px;
line-height: 24px;
letter-spacing: 1px;
z-index: 200;
position: absolute;
top: 150px;
left: 50px;
border: solid 1px #616162;
cursor: default;
}
/* 警告ウィンドウのテキスト部分 */
.warn_text {
margin: 0px;
padding: 4px;
text-align: center;
overflow: hidden;
color: #F00;
height: 24px;
background-color: #000;
border: solid 1px #818182;
}
/* メッセージウィンドウ外枠 */
.main_win {
margin: 0px;
padding: 0px;
width: 620px;
font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", Verdana, arial, sans-serif;
font-size: 12px;
line-height: 24px;
letter-spacing: 1px;
z-index: 200;
position: absolute;
top: 200px;
left: 10px;
border: solid 1px #000000;
cursor: pointer;
}
/* メッセージウィンドウのテキスト部分 */
.main_text {
margin: 0px;
padding: 0px;
color: #000;
overflow: hidden;
height: 100px;
background-color: #000;
border: solid 1px #818182;
}
/* 問題文のテキスト部分 */
.question {
margin: 0px;
padding: 0px;
width: 592px;
color: #FFF;
position: absolute;
top: 14px;
left: 14px;
background-color: transparent;
}
/* 選択肢のテキスト部分 */
.answer {
margin: 0px;
padding: 0px;
width: 592px;
color: #FFF;
text-indent: 15px;
position: absolute;
top: 50px;
left: 14px;
background-color: transparent;
cursor: pointer;
}
/* 二者択一のテキスト部分 */
table.conf_table {
border-collapse: collapse;
border: none;
}
table.conf_table td.ok, table.conf_table td.cancel {
padding: 5px 15px;
color: #FF8C00;
background-color: #000;
}
/* 顔グラフィック用のフレーム */
.char_img {
margin: 0px;
position: absolute;
width: auto;
border: none;
}
/* 顔グラフィックのIMG要素スタイル 初期サイズは96×96 */
.img_frm {
margin: 0px;
padding: 0px;
width: 96px;
height: 96px;
z-index: 200;
position: absolute;
top: 25px;
left: 25px;
overflow: hidden;
border: solid 1px #616162;
background-color: #FFF;
}
/* メッセージの話者表示部分 */
.char_name {
margin: 0px;
padding: 0px;
width: 592px;
color: #FFF;
overflow: hidden;
position: absolute;
top: 14px;
left: 14px;
background-color: transparent;
}
/* メッセージ部分のスタイル */
.message {
margin: 0px;
padding: 0px;
height: 120px;
width: 592px;
color: #FFF;
overflow: hidden;
position: absolute;
top: 14px;
left: 14px;
background-color: transparent;
}
/* ウィンドウの透過が顔グラフィックに継承されるため */
.black_sheet {
margin: 0px;
padding: 0px;
width: 98px;
height: 98px;
z-index: 150;
position: absolute;
top: 226px;
left: 36px;
background-color: #000;
}
/* メッセージ右下に表示されるアイコン */
.page_next {
margin: 0px;
padding: 0px;
width: 24px;
height: 24px;
z-index: 250;
position: absolute;
top: 0px;
left: 0px;
background-image: url(http://wiz-code.digick.jp/image/icon/enter06.png);
}
/* ノベルウィンドウ外枠 */
.text_win {
margin: 0px;
padding: 0;
color: #FFF;
font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", Verdana, arial, sans-serif;
font-size: 18px;
letter-spacing: 1px;
line-height: 24px;
width: 300px;
height: 100px;
z-index: 10;
position: absolute;
top: 350px;
/*left: 40px;*/
background-color: #000;
border: none;
cursor: pointer;
opacity: 1.0;
border-color: #000;
}
/* ノベルウィンドウのテキスト部分 */
.passage {
margin: 0px;
padding: 10px 15px 0px;
position: relative;
color: #FFF;
overflow: hidden;
}
/* 背景画像のフレーム */
.bg_frm {
margin: 0px;
padding: 0px;
width: 300px;
height: 450px;
overflow: hidden;
z-index: 5;
position: absolute;
top: 0px;
left: 0px;
background-color: #FFF;
}
/* 背景画像のIMG要素スタイル */
img.bg_img {
margin: 0px;
width: auto;
border: none;
background-color: #FFF;
}
/* 音楽再生の要素を格納 */
.track {
margin: 0px;
padding: 0px;
overflow: hidden;
position: absolute;
width: 0px;
height: 0px;
}
/* 画像のフレーム */
.fg_frm {
margin: 0px;
padding: 0px;
overflow: hidden;
z-index: 100;
position: absolute;
top: 0px;
left: 0px;
background-color: transparent;
}
/* 画像のIMG要素スタイル */
img.fg_img {
margin: 0px;
width: 100%;
border: none;
background-color: transparent;
}
/* ダイアログウィンドウの外枠 */
.dialog_win {
margin: 0px;
padding: 0px;
width: 450px;
font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", Verdana, arial, sans-serif;
font-size: 18px;
line-height: 24px;
letter-spacing: 1px;
z-index: 250;
position: absolute;
top: 110px;
left: 100px;
border: solid 1px #616162;
cursor: default;
}
/* ダイアログウィンドウのテキスト部分 */
.dialog_text {
margin: 0px;
padding: 10px;
text-align: center;
color: #FFF;
overflow: hidden;
height: 110px;
background-color: #000;
border: solid 1px #818182;
}
.dialog_text input {
font-size: 18px;
letter-spacing: 2px;
}
.dialog_text input.input_text {
margin-bottom: 20px;
border: 1px solid #3b6e22;
width: 410px;
background-color: #F0F8FF;
}
.dialog_text label {
padding: 0px;
text-align: left;
display: block;
margin-bottom: 10px;
}
.dialog_text input.input_ok {
color: #32CD32;
font-weight: bold;
width: 120px;
}
.dialog_text input.input_cancel {
margin-left: 10px;
color: #FF1493;
font-weight: bold;
width: 120px;
}
/* ロード中アイコンの表示 */
img.loading {
margin: 0px;
z-index: 300;
width: 64px;
height: 64px;
position: absolute;
top: 180px;
left: 120px;
border: none;
}
/* 音楽プレイヤーアイコンの表示 */
div.audio {
width: 32px;
height: 32px;
z-index: 300;
position: absolute;
left: 595px;
top: 10px;
cursor: pointer;
}
.quiz_font01 {
color: #FFF;
font-size: 20px;
font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", Verdana, arial, sans-serif;
} | 0.270673 | 0.078254 |
.userOldTicketsDiv
{
/*margin-top:50px;*/
}
.userProfileDivSpan
{
font-size: 25px;
font-weight: 600;
font-family: sans-serif;
padding-bottom: 15px;
/*margin-top:50px;*/
}
.statTopBoxSupportDiv
{
color: #373838;
background: #fff;
border-radius: 5px;
display:none;
margin-top: 10px;
}
.imgDivSupport
{
background-color: #daa521;
border-radius: 5px 5px 5px 5px;
color: #fff;
padding: 7%;
text-align: center;
font-family: sans-serif;
height: 415px;
}
.imgDivSupportHead
{
font-size: 35px;
font-weight: 800;
padding-top:20px;
}
.userSupportChatDiv
{
display:none;
}
.userSupportForm label
{
font-weight: 600;
font-size: 15px;
color: #5e5f61;
padding-bottom: 5px;
font-family: sans-serif;
}
.userSupportForm input
{
background: #f1f2f4;
border: 1px;
font-size: 14px;
height: 45px;
font-family: sans-serif;
resize: none;
}
.userSupportForm textarea
{
min-height: 88px;
max-height: 120px;
background-color: #e9ecef;
}
.userSupportForm input:hover
{
background: #f1f2f4;
border: 1px;
font-size: 14px;
height: 45px;
}
.userSupportForm input:focus
{
box-shadow: 0 0 0 0.2rem #d6d8dc;
border-color: #fff;
}
.userSupportBtn
{
background-color: #daa521;
color: #fff;
padding: 8px 40px;
font-family: sans-serif;
font-weight:700;
margin-bottom:20px;
}
.userSupportBtn:hover
{
box-shadow: 0 0 0 2px #252525;
cursor: pointer;
}
.userSupportBtn:focus
{
box-shadow: 0 0 0 2px #252525;
}
.userSupportForm select
{
background: #f1f2f4;
border: 1px;
font-size: 14px;
height: 45px;
font-family: sans-serif;
}
.userSupportForm select:hover
{
background: #f1f2f4;
border: 1px;
font-size: 14px;
height: 45px;
}
.userSupportForm select:focus
{
box-shadow: 0 0 0 0.2rem #d6d8dc;
border-color: #fff;
}
.userClass {
text-align: right;
/*color: #0000008a;*/
}
.userClass p {
display: inline-block;
padding: 10px 10px;
background: #f5f5f5;
border-radius: 8em 0em 8em 8em;
margin: 5px 0px;
position: relative;
color: #000;
}
.userClass p:before {
position: absolute;
display: inline-block;
content: '';
width: 20px;
height: 20px;
background: #f5f5f5;
/* border-bottom-right-radius: 4em; */
top: 0px;
right: 0;
/* transform: scale(0.7); */
visibility: hidden;
}
.adminClass {
}
.adminClass p {
position: relative;
display: inline-block;
padding: 10px 10px;
border-radius: 0em 8em 8em 8em;
background: #fff;
margin: 5px 0;
}
.mobileViewDiv
{
background-color: #63646440;
height: 350px;
font-family: sans-serif;
overflow-y: scroll;
padding: 15px;
border-radius: 8px 8px 0 0;
border: 1px solid;
}
.col_75_messnger
{
flex: 0 0 75%;
max-width: 75%;
position: relative;
width: 100%;
min-height: 1px;
padding-left: 15px;
}
.col_75_messnger textarea
{
width: 100%;
max-height: 50px;
background-color: #acb5b514;
border: none;
padding-left: 5px;
font-family: sans-serif;
resize: none;
}
.col_25_messnger
{
flex: 0 0 25%;
max-width: 25%;
position: relative;
width: 100%;
min-height: 1px;
padding-right: 15px;
}
.col_25_messnger .btn
{
display: inline-block;
font-weight: 400;
text-align: center;
white-space: nowrap;
font-family: sans-serif;
vertical-align: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
border: 1px solid transparent;
font-size: 1rem;
width: -webkit-fill-available;
line-height: 1.5;
border-radius: 0 0 8px 0px;
transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
height: 50px;
}
.btn-reply {
background-color: #daa521;
color: #fff;
padding: 8px 20px;
font-family: 'Roboto-Bold';
}
.btn-reply:hover {
box-shadow: 0 0 0 2px #252525;
cursor: pointer;
}
.btn-reply:focus {
box-shadow: 0 0 0 2px #252525;
}
.subjectDiv
{
background-color: #343a40;
color: #fff;
padding: 8px 20px;
border-radius: 5PX 5PX 0 0;
font-weight: 700;
font-size: 20px;
}
#replyMsg::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
padding-top:10px;
}
#replyMsg:-ms-input-placeholder { /* Internet Explorer 10-11 */
padding-top:10px;
}
#replyMsg::-ms-input-placeholder { /* Microsoft Edge */
padding-top:10px;
}
#chatbox
{
background-color: #79707052;
padding: 20px;
border-radius: 0;
height: 300px;
overflow-y: scroll;
}
/* width */
#chatbox::-webkit-scrollbar {
width: 5px;
}
/* Track */
#chatbox::-webkit-scrollbar-track {
background: #f1f1f1;
}
/* Handle */
#chatbox::-webkit-scrollbar-thumb {
background: #888;
}
/* Handle on hover */
#chatbox::-webkit-scrollbar-thumb:hover {
background: #555;
}
#chatbox label{
font-family: 'Roboto-Bold';
text-decoration: underline;
text-transform: capitalize;
}
#chatbox p{
font-family: sans-serif;
}
#chatOldHistory{
background-color: #b0b0b038;
padding: 20px;
margin: 15px;
border-radius: 5px;
height: 300px;
overflow-y: scroll;
}
#chatOldHistory label{
font-family: 'Roboto-Bold';
text-decoration: underline;
text-transform: capitalize;
}
#chatOldHistory p{
font-family: sans-serif;
padding-left: 5%;
}
.robotoRegular{
font-family: sans-serif;
}
/**********NEW CHANGES***************/
.support_Tabs .nav.nav-tabs {
justify-content: space-around;
background: #343940;
border-radius: 10px 10px 0 0;
}
.support_Tabs .nav-tabs li {
width: auto;
text-align: center;
text-transform: uppercase;
color: #343a40;
padding: 0;
font-weight: 700;
}
.redStatus,
.greenStatus,
.orangeStatus{
background: red;
width: 8px;
height: 8px;
margin: 0px 10px 2px 0;
border-radius: 50%;
box-shadow: 0 0 10px #ccc;
display: inline-block;
}
.greenStatus{background: green;}
.orangeStatus{background: orange;}
.support_Tabs .nav-tabs a {
padding: 10px 100px;
color: #fff;
display: inherit;
text-decoration: none;
overflow: hidden;
transition: .3s ease all;
position: relative;
}
.support_Tabs .nav-link.active:before{display: none;}
.support_Tabs .nav-tabs a.active {
color: #daa521;
background: #343a40;
}
.support_Tabs .nav-tabs a:before {
position: absolute;
display: inline-block;
content: "";
top: 0;
left: -100%;
width: 100%;
background: #daa521;
height: 5px;
transition: .3s ease all;
}
.support_Tabs .nav-tabs a.active:before {
left: 0;
}
.support_Tabs .tab-content {
background: #ddd;
/*border-radius: 0 0 10px 10px;*/
/*padding: 10px 15px;*/
padding: 10px 15px 10px 15px;
}
.support_Tabs .panel-collapse {
padding: 10px 15px;
background: rgba(204, 204, 204, 0.3);
border: 1px solid #454c56;
border-top: 0;
margin-bottom: 5px;
border-radius: 0 0 5px 5px;
}
.userTx_boxDiv {
background-color: #fff;
border-radius: 10px;
margin: 0;
box-shadow: 0 0 5px #000;
padding: 10px 15px 30px;
}
.status_Bar{display: none;}
/**/
.status_BarCollapsable .panel-title{
cursor: pointer;
font-size: 18px;
background: #161f2d;
/*background: rgba(22, 31, 45, 0.5);*/
background: rgba(22, 31, 45, 0.81);
color: #fff;
/*border-radius: 10px 10px 0 0;*/
padding: 5px 15px;
margin: 0;
text-shadow: 0 0 10px #000;
transition: 0.3s ease all;
border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.status_BarCollapsable .panel-title:hover, .status_BarCollapsable .panel-title[aria-expanded="true"]{
color: #daa521;margin-top: 5px;
background: #161f2d;
}
.status_BarCollapsable .panel-title[aria-expanded="true"]{border-radius: 10px 10px 0 0;}
.statusDIV{
/*position: relative; */
/*height: 60px;*/
}
.statusDIV > span{
display: flex;
justify-content: space-around;
flex-flow: wrap;
/*position: absolute;*/
/*display: inline-block;*/
/*content: '';*/
/*top: 0;*/
/*left: 0;*/
font-size: 12px;
text-align: left;
}
.statusDIV > span > div {min-width: 150px;}
.statusDIV .redStatus, .statusDIV .greenStatus, .statusDIV .orangeStatus{
/*margin: 0 0 0 10px ;*/
}
/*****************************************************************************************/
.status_BarCollapsable .nav-link{
color: #000;
font-weight: 600;
font-size: 18px;
padding: 5px 15px;
transition: 0.3s ease all;
/*border-bottom: 1px solid rgba(0, 0, 0, 0.3);*/
}
.status_BarCollapsable .nav-link.active,
.status_BarCollapsable .nav-link:hover{
cursor: pointer;
background: #161f2d;
/* background: rgba(22, 31, 45, 0.5); */
background: rgba(22, 31, 45, 0.81);
color: #fff;
/* border-radius: 10px 10px 0 0; */
margin: 0;
text-shadow: 0 0 10px #000;
}
#txHashInpDiv {display:none;}
@media screen and (max-width: 1199px){
.status_BarCollapsable .nav-link
.status_BarCollapsable .nav-link.active,
.status_BarCollapsable .nav-link:hover{font-size: 16px;}
}
@media screen and (max-width: 767px){
.status_BarCollapsable .nav-link,
.status_BarCollapsable .nav-link.active,
.status_BarCollapsable .nav-link:hover{font-size: 14px;}
.support_Tabs .nav-tabs a{padding: 10px 10px;}
} | assets/backend/css/support.css | .userOldTicketsDiv
{
/*margin-top:50px;*/
}
.userProfileDivSpan
{
font-size: 25px;
font-weight: 600;
font-family: sans-serif;
padding-bottom: 15px;
/*margin-top:50px;*/
}
.statTopBoxSupportDiv
{
color: #373838;
background: #fff;
border-radius: 5px;
display:none;
margin-top: 10px;
}
.imgDivSupport
{
background-color: #daa521;
border-radius: 5px 5px 5px 5px;
color: #fff;
padding: 7%;
text-align: center;
font-family: sans-serif;
height: 415px;
}
.imgDivSupportHead
{
font-size: 35px;
font-weight: 800;
padding-top:20px;
}
.userSupportChatDiv
{
display:none;
}
.userSupportForm label
{
font-weight: 600;
font-size: 15px;
color: #5e5f61;
padding-bottom: 5px;
font-family: sans-serif;
}
.userSupportForm input
{
background: #f1f2f4;
border: 1px;
font-size: 14px;
height: 45px;
font-family: sans-serif;
resize: none;
}
.userSupportForm textarea
{
min-height: 88px;
max-height: 120px;
background-color: #e9ecef;
}
.userSupportForm input:hover
{
background: #f1f2f4;
border: 1px;
font-size: 14px;
height: 45px;
}
.userSupportForm input:focus
{
box-shadow: 0 0 0 0.2rem #d6d8dc;
border-color: #fff;
}
.userSupportBtn
{
background-color: #daa521;
color: #fff;
padding: 8px 40px;
font-family: sans-serif;
font-weight:700;
margin-bottom:20px;
}
.userSupportBtn:hover
{
box-shadow: 0 0 0 2px #252525;
cursor: pointer;
}
.userSupportBtn:focus
{
box-shadow: 0 0 0 2px #252525;
}
.userSupportForm select
{
background: #f1f2f4;
border: 1px;
font-size: 14px;
height: 45px;
font-family: sans-serif;
}
.userSupportForm select:hover
{
background: #f1f2f4;
border: 1px;
font-size: 14px;
height: 45px;
}
.userSupportForm select:focus
{
box-shadow: 0 0 0 0.2rem #d6d8dc;
border-color: #fff;
}
.userClass {
text-align: right;
/*color: #0000008a;*/
}
.userClass p {
display: inline-block;
padding: 10px 10px;
background: #f5f5f5;
border-radius: 8em 0em 8em 8em;
margin: 5px 0px;
position: relative;
color: #000;
}
.userClass p:before {
position: absolute;
display: inline-block;
content: '';
width: 20px;
height: 20px;
background: #f5f5f5;
/* border-bottom-right-radius: 4em; */
top: 0px;
right: 0;
/* transform: scale(0.7); */
visibility: hidden;
}
.adminClass {
}
.adminClass p {
position: relative;
display: inline-block;
padding: 10px 10px;
border-radius: 0em 8em 8em 8em;
background: #fff;
margin: 5px 0;
}
.mobileViewDiv
{
background-color: #63646440;
height: 350px;
font-family: sans-serif;
overflow-y: scroll;
padding: 15px;
border-radius: 8px 8px 0 0;
border: 1px solid;
}
.col_75_messnger
{
flex: 0 0 75%;
max-width: 75%;
position: relative;
width: 100%;
min-height: 1px;
padding-left: 15px;
}
.col_75_messnger textarea
{
width: 100%;
max-height: 50px;
background-color: #acb5b514;
border: none;
padding-left: 5px;
font-family: sans-serif;
resize: none;
}
.col_25_messnger
{
flex: 0 0 25%;
max-width: 25%;
position: relative;
width: 100%;
min-height: 1px;
padding-right: 15px;
}
.col_25_messnger .btn
{
display: inline-block;
font-weight: 400;
text-align: center;
white-space: nowrap;
font-family: sans-serif;
vertical-align: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
border: 1px solid transparent;
font-size: 1rem;
width: -webkit-fill-available;
line-height: 1.5;
border-radius: 0 0 8px 0px;
transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
height: 50px;
}
.btn-reply {
background-color: #daa521;
color: #fff;
padding: 8px 20px;
font-family: 'Roboto-Bold';
}
.btn-reply:hover {
box-shadow: 0 0 0 2px #252525;
cursor: pointer;
}
.btn-reply:focus {
box-shadow: 0 0 0 2px #252525;
}
.subjectDiv
{
background-color: #343a40;
color: #fff;
padding: 8px 20px;
border-radius: 5PX 5PX 0 0;
font-weight: 700;
font-size: 20px;
}
#replyMsg::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
padding-top:10px;
}
#replyMsg:-ms-input-placeholder { /* Internet Explorer 10-11 */
padding-top:10px;
}
#replyMsg::-ms-input-placeholder { /* Microsoft Edge */
padding-top:10px;
}
#chatbox
{
background-color: #79707052;
padding: 20px;
border-radius: 0;
height: 300px;
overflow-y: scroll;
}
/* width */
#chatbox::-webkit-scrollbar {
width: 5px;
}
/* Track */
#chatbox::-webkit-scrollbar-track {
background: #f1f1f1;
}
/* Handle */
#chatbox::-webkit-scrollbar-thumb {
background: #888;
}
/* Handle on hover */
#chatbox::-webkit-scrollbar-thumb:hover {
background: #555;
}
#chatbox label{
font-family: 'Roboto-Bold';
text-decoration: underline;
text-transform: capitalize;
}
#chatbox p{
font-family: sans-serif;
}
#chatOldHistory{
background-color: #b0b0b038;
padding: 20px;
margin: 15px;
border-radius: 5px;
height: 300px;
overflow-y: scroll;
}
#chatOldHistory label{
font-family: 'Roboto-Bold';
text-decoration: underline;
text-transform: capitalize;
}
#chatOldHistory p{
font-family: sans-serif;
padding-left: 5%;
}
.robotoRegular{
font-family: sans-serif;
}
/**********NEW CHANGES***************/
.support_Tabs .nav.nav-tabs {
justify-content: space-around;
background: #343940;
border-radius: 10px 10px 0 0;
}
.support_Tabs .nav-tabs li {
width: auto;
text-align: center;
text-transform: uppercase;
color: #343a40;
padding: 0;
font-weight: 700;
}
.redStatus,
.greenStatus,
.orangeStatus{
background: red;
width: 8px;
height: 8px;
margin: 0px 10px 2px 0;
border-radius: 50%;
box-shadow: 0 0 10px #ccc;
display: inline-block;
}
.greenStatus{background: green;}
.orangeStatus{background: orange;}
.support_Tabs .nav-tabs a {
padding: 10px 100px;
color: #fff;
display: inherit;
text-decoration: none;
overflow: hidden;
transition: .3s ease all;
position: relative;
}
.support_Tabs .nav-link.active:before{display: none;}
.support_Tabs .nav-tabs a.active {
color: #daa521;
background: #343a40;
}
.support_Tabs .nav-tabs a:before {
position: absolute;
display: inline-block;
content: "";
top: 0;
left: -100%;
width: 100%;
background: #daa521;
height: 5px;
transition: .3s ease all;
}
.support_Tabs .nav-tabs a.active:before {
left: 0;
}
.support_Tabs .tab-content {
background: #ddd;
/*border-radius: 0 0 10px 10px;*/
/*padding: 10px 15px;*/
padding: 10px 15px 10px 15px;
}
.support_Tabs .panel-collapse {
padding: 10px 15px;
background: rgba(204, 204, 204, 0.3);
border: 1px solid #454c56;
border-top: 0;
margin-bottom: 5px;
border-radius: 0 0 5px 5px;
}
.userTx_boxDiv {
background-color: #fff;
border-radius: 10px;
margin: 0;
box-shadow: 0 0 5px #000;
padding: 10px 15px 30px;
}
.status_Bar{display: none;}
/**/
.status_BarCollapsable .panel-title{
cursor: pointer;
font-size: 18px;
background: #161f2d;
/*background: rgba(22, 31, 45, 0.5);*/
background: rgba(22, 31, 45, 0.81);
color: #fff;
/*border-radius: 10px 10px 0 0;*/
padding: 5px 15px;
margin: 0;
text-shadow: 0 0 10px #000;
transition: 0.3s ease all;
border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.status_BarCollapsable .panel-title:hover, .status_BarCollapsable .panel-title[aria-expanded="true"]{
color: #daa521;margin-top: 5px;
background: #161f2d;
}
.status_BarCollapsable .panel-title[aria-expanded="true"]{border-radius: 10px 10px 0 0;}
.statusDIV{
/*position: relative; */
/*height: 60px;*/
}
.statusDIV > span{
display: flex;
justify-content: space-around;
flex-flow: wrap;
/*position: absolute;*/
/*display: inline-block;*/
/*content: '';*/
/*top: 0;*/
/*left: 0;*/
font-size: 12px;
text-align: left;
}
.statusDIV > span > div {min-width: 150px;}
.statusDIV .redStatus, .statusDIV .greenStatus, .statusDIV .orangeStatus{
/*margin: 0 0 0 10px ;*/
}
/*****************************************************************************************/
.status_BarCollapsable .nav-link{
color: #000;
font-weight: 600;
font-size: 18px;
padding: 5px 15px;
transition: 0.3s ease all;
/*border-bottom: 1px solid rgba(0, 0, 0, 0.3);*/
}
.status_BarCollapsable .nav-link.active,
.status_BarCollapsable .nav-link:hover{
cursor: pointer;
background: #161f2d;
/* background: rgba(22, 31, 45, 0.5); */
background: rgba(22, 31, 45, 0.81);
color: #fff;
/* border-radius: 10px 10px 0 0; */
margin: 0;
text-shadow: 0 0 10px #000;
}
#txHashInpDiv {display:none;}
@media screen and (max-width: 1199px){
.status_BarCollapsable .nav-link
.status_BarCollapsable .nav-link.active,
.status_BarCollapsable .nav-link:hover{font-size: 16px;}
}
@media screen and (max-width: 767px){
.status_BarCollapsable .nav-link,
.status_BarCollapsable .nav-link.active,
.status_BarCollapsable .nav-link:hover{font-size: 14px;}
.support_Tabs .nav-tabs a{padding: 10px 10px;}
} | 0.201931 | 0.073596 |
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,900&display=swap');
*:focus:not(:focus-visible) {
outline: none;
}
html,
body {
font-size: 62.5%;
font-family: 'Roboto', sans-serif;
}
ul {
padding-left: 0;
}
ul li {
list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0;
padding: 0;
}
.container {
width: 120rem;
margin: 0 auto;
}
.header {
background: linear-gradient(269.91deg, rgba(46, 49, 146, 0.7) 0%, rgba(212, 20, 90, 0.7) 98.16%);
padding: 2.3rem 0 2.6rem 0;
color: #FFF;
}
.header__wrap {
display: flex;
justify-content: space-between;
align-items: center;
}
img {
width: 100%;
height: 100%;
object-fit: contain;
}
.header__phone {
font-weight: 500;
font-size: 1.5rem;
line-height: 63%;
}
.header__phone-img {
width: 2rem;
height: 2rem;
}
.header__phone-text a {
color: #FFF;
text-decoration: none;
}
.header__maps-text {
font-weight: 500;
font-size: 1.5rem;
line-height: 1.6rem;
}
.header__maps-img {
width: 1.5rem;
height: 2.5rem;
}
.header__instagram-text {
max-width: 12.8rem;
font-weight: 500;
font-size: 1.4rem;
line-height: 1.4rem;
}
.header__instagram-img {
width: 3rem;
height: 3rem;
}
.header__phone-img,
.header__maps-img,
.header__instagram-img {
padding-right: 1.5rem;
}
.header__phone,
.header__maps,
.header__instagram {
display: flex;
align-items: center;
}
.main__display .container {
margin-top: 4.7rem;
}
.main__display-top {
display: flex;
align-items: center;
justify-content: space-between;
}
.main__display-logo {
display: flex;
align-items: center;
}
.main__display-nav {
display: flex;
margin: 0;
}
.main__display-logo-img {
width: 10rem;
height: 6rem;
margin-right: 1.1rem;
}
.main__display-name {
font-style: italic;
font-weight: 900;
font-size: 3.6rem;
line-height: 117%;
}
.main__display-nav li {
margin-right: 2.5rem;
font-weight: 300;
font-size: 1.8rem;
line-height: 2.1rem;
color: #737373;
}
.main__display-right {
margin-top: -7rem;
width: 53.3rem;
height: 68.8rem;
}
.main__display-center {
display: flex;
justify-content: space-between;
}
.main__display-header {
margin: 19rem 0 1rem 0;
font-weight: 900;
font-size: 5rem;
line-height: 118%;
}
.main__display-subheader {
display: block;
font-weight: 300;
font-size: 2.4rem;
line-height: 117%;
}
.main__display-header-button {
width: 17.9rem;
height: 5.3rem;
background: linear-gradient(95.2deg, #B90160 2.23%, #2E3192 99.51%);
border-radius: .7rem;
border: none;
color: #FFF;
font-weight: 900;
font-size: 2rem;
line-height: 115%;
margin-top: 2rem;
cursor: pointer;
}
.about__header {
display: block;
font-weight: normal;
font-size: 5rem;
line-height: 118%;
margin-bottom: 10rem;
}
.about__header span {
background: linear-gradient(90deg, rgba(185, 1, 96, 1) 0%, rgba(61, 91, 245, 1) 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.about__items {
/* display: flex;
justify-content: space-between; */
display: grid;
grid-template-columns: repeat(3, 28%);
gap: 0 6.1rem;
}
.about__item {
/* width: 28%; */
box-shadow: 0 0 40px rgba(184, 0, 95, 0.2);
border-radius: .9rem;
overflow: hidden;
}
.about__item-info {
padding: 5%;
background: #FFF;
}
.about__item-title {
font-weight: bold;
font-size: 3.6rem;
line-height: 117%;
}
.about__item-description {
font-weight: 300;
font-size: 1.4rem;
line-height: 114%;
color: #767676;
}
.about__wrap-header {
display: flex;
justify-content: center;
}
.about__item-img {
width: 100%;
height: 21.5rem;
}
.about__item-img img {
object-fit: cover;
}
.footer {
position: relative;
}
.footer__wrap {
display: flex;
align-items: center;
justify-content: space-between;
padding: 17.2rem 12rem 8.4rem 12rem;
}
.footer__instagram-img {
width: 3.3rem;
height: 3.3rem;
}
.footer__header {
margin-bottom: 1rem;
}
.footer__address {
max-width: 22.5rem;
}
.footer__decor-1 {
position: absolute;
width: 11rem;
height: 12.5rem;
left: 12%;
top: 47%;
transform: translate(-50%, -50%);
}
.footer__decor-2 {
position: absolute;
width: 23.3rem;
height: 26.4rem;
left: 81%;
top: 47%;
transform: translate(-50%, -50%);
}
.footer__header {
font-weight: bold;
font-size: 1.4rem;
line-height: 114%;
}
.footer__instagram {
margin-bottom: 0.6rem;
}
.footer__address {
margin-top: 4rem;
}
.footer__address-city {
margin-top: 1rem;
}
.footer__wrap li {
font-weight: 300;
font-size: 1.4rem;
line-height: 114%;
} | css/style.css | @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,900&display=swap');
*:focus:not(:focus-visible) {
outline: none;
}
html,
body {
font-size: 62.5%;
font-family: 'Roboto', sans-serif;
}
ul {
padding-left: 0;
}
ul li {
list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0;
padding: 0;
}
.container {
width: 120rem;
margin: 0 auto;
}
.header {
background: linear-gradient(269.91deg, rgba(46, 49, 146, 0.7) 0%, rgba(212, 20, 90, 0.7) 98.16%);
padding: 2.3rem 0 2.6rem 0;
color: #FFF;
}
.header__wrap {
display: flex;
justify-content: space-between;
align-items: center;
}
img {
width: 100%;
height: 100%;
object-fit: contain;
}
.header__phone {
font-weight: 500;
font-size: 1.5rem;
line-height: 63%;
}
.header__phone-img {
width: 2rem;
height: 2rem;
}
.header__phone-text a {
color: #FFF;
text-decoration: none;
}
.header__maps-text {
font-weight: 500;
font-size: 1.5rem;
line-height: 1.6rem;
}
.header__maps-img {
width: 1.5rem;
height: 2.5rem;
}
.header__instagram-text {
max-width: 12.8rem;
font-weight: 500;
font-size: 1.4rem;
line-height: 1.4rem;
}
.header__instagram-img {
width: 3rem;
height: 3rem;
}
.header__phone-img,
.header__maps-img,
.header__instagram-img {
padding-right: 1.5rem;
}
.header__phone,
.header__maps,
.header__instagram {
display: flex;
align-items: center;
}
.main__display .container {
margin-top: 4.7rem;
}
.main__display-top {
display: flex;
align-items: center;
justify-content: space-between;
}
.main__display-logo {
display: flex;
align-items: center;
}
.main__display-nav {
display: flex;
margin: 0;
}
.main__display-logo-img {
width: 10rem;
height: 6rem;
margin-right: 1.1rem;
}
.main__display-name {
font-style: italic;
font-weight: 900;
font-size: 3.6rem;
line-height: 117%;
}
.main__display-nav li {
margin-right: 2.5rem;
font-weight: 300;
font-size: 1.8rem;
line-height: 2.1rem;
color: #737373;
}
.main__display-right {
margin-top: -7rem;
width: 53.3rem;
height: 68.8rem;
}
.main__display-center {
display: flex;
justify-content: space-between;
}
.main__display-header {
margin: 19rem 0 1rem 0;
font-weight: 900;
font-size: 5rem;
line-height: 118%;
}
.main__display-subheader {
display: block;
font-weight: 300;
font-size: 2.4rem;
line-height: 117%;
}
.main__display-header-button {
width: 17.9rem;
height: 5.3rem;
background: linear-gradient(95.2deg, #B90160 2.23%, #2E3192 99.51%);
border-radius: .7rem;
border: none;
color: #FFF;
font-weight: 900;
font-size: 2rem;
line-height: 115%;
margin-top: 2rem;
cursor: pointer;
}
.about__header {
display: block;
font-weight: normal;
font-size: 5rem;
line-height: 118%;
margin-bottom: 10rem;
}
.about__header span {
background: linear-gradient(90deg, rgba(185, 1, 96, 1) 0%, rgba(61, 91, 245, 1) 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.about__items {
/* display: flex;
justify-content: space-between; */
display: grid;
grid-template-columns: repeat(3, 28%);
gap: 0 6.1rem;
}
.about__item {
/* width: 28%; */
box-shadow: 0 0 40px rgba(184, 0, 95, 0.2);
border-radius: .9rem;
overflow: hidden;
}
.about__item-info {
padding: 5%;
background: #FFF;
}
.about__item-title {
font-weight: bold;
font-size: 3.6rem;
line-height: 117%;
}
.about__item-description {
font-weight: 300;
font-size: 1.4rem;
line-height: 114%;
color: #767676;
}
.about__wrap-header {
display: flex;
justify-content: center;
}
.about__item-img {
width: 100%;
height: 21.5rem;
}
.about__item-img img {
object-fit: cover;
}
.footer {
position: relative;
}
.footer__wrap {
display: flex;
align-items: center;
justify-content: space-between;
padding: 17.2rem 12rem 8.4rem 12rem;
}
.footer__instagram-img {
width: 3.3rem;
height: 3.3rem;
}
.footer__header {
margin-bottom: 1rem;
}
.footer__address {
max-width: 22.5rem;
}
.footer__decor-1 {
position: absolute;
width: 11rem;
height: 12.5rem;
left: 12%;
top: 47%;
transform: translate(-50%, -50%);
}
.footer__decor-2 {
position: absolute;
width: 23.3rem;
height: 26.4rem;
left: 81%;
top: 47%;
transform: translate(-50%, -50%);
}
.footer__header {
font-weight: bold;
font-size: 1.4rem;
line-height: 114%;
}
.footer__instagram {
margin-bottom: 0.6rem;
}
.footer__address {
margin-top: 4rem;
}
.footer__address-city {
margin-top: 1rem;
}
.footer__wrap li {
font-weight: 300;
font-size: 1.4rem;
line-height: 114%;
} | 0.539954 | 0.075619 |
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: #4563c5;
background: -webkit-linear-gradient(left top, #223374, #4563c5);
background: -o-linear-gradient(bottom right, #223374, #4563c5);
background: -moz-linear-gradient(bottom right, #223374, #4563c5);
background: linear-gradient(to bottom right, #223374, #4563c5);
opacity: 0.95;
padding-top: 10px;
padding-bottom: 0px;
margin-bottom: 0px;
font-family: 'Roboto', sans-serif;
font-size: 26px;
color: white;
letter-spacing: 0.005em;
}
.nav {
padding-right:246px;
}
.nav-pills a{
color:white;
background:transparent;
opacity:0.5;
font-family: 'Roboto',sans-serif;
}
.nav-pills a:hover {
color: black;
}
#logo {
margin-top: 20px;
margin-left: 120px;
}
#source-wrapper {
background-color: white;
color: black;
font-family: 'Roboto', sans-serif;
width: 100%;
font-size: 26px;
line-height: 2;
letter-spacing: 0.025em;
margin-bottom: 200px;
}
#submit {
background-color: transparent;
border-color: white;
border-width: 1.5px;
color: white;
font-family: 'Roboto', sans-serif;
font-size: 20px;
outline:none;
}
body {
background-image: url("https://image.ibb.co/mFHh6G/Untitled_5.jpg");
background-repeat: no-repeat;
background-color: white;
background-size: 100%;
}
.jumbotron {
background-color: transparent !important;
}
input[type="text"] {
font-family: 'Roboto', sans-serif;
}
#answerinput {
width: 1000px;
margin-bottom: 27px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
#submit {
margin-bottom: 27px;
}
#name1 {
float: left;
color: white !important;
font-family: 'Roboto', sans-serif;
font-weight: 700;
font-size: 80px !important;
}
#here1 {
float: left;
color: white !important;
font-family: 'Roboto', sans-serif;
font-weight: 100;
font-size: 80px !important;
}
.word {
display: inline;
}
#source-wrapper {
padding-top: 6px;
}
#sucky {
margin-bottom: 10px;
} | static/styles/read.css | position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: #4563c5;
background: -webkit-linear-gradient(left top, #223374, #4563c5);
background: -o-linear-gradient(bottom right, #223374, #4563c5);
background: -moz-linear-gradient(bottom right, #223374, #4563c5);
background: linear-gradient(to bottom right, #223374, #4563c5);
opacity: 0.95;
padding-top: 10px;
padding-bottom: 0px;
margin-bottom: 0px;
font-family: 'Roboto', sans-serif;
font-size: 26px;
color: white;
letter-spacing: 0.005em;
}
.nav {
padding-right:246px;
}
.nav-pills a{
color:white;
background:transparent;
opacity:0.5;
font-family: 'Roboto',sans-serif;
}
.nav-pills a:hover {
color: black;
}
#logo {
margin-top: 20px;
margin-left: 120px;
}
#source-wrapper {
background-color: white;
color: black;
font-family: 'Roboto', sans-serif;
width: 100%;
font-size: 26px;
line-height: 2;
letter-spacing: 0.025em;
margin-bottom: 200px;
}
#submit {
background-color: transparent;
border-color: white;
border-width: 1.5px;
color: white;
font-family: 'Roboto', sans-serif;
font-size: 20px;
outline:none;
}
body {
background-image: url("https://image.ibb.co/mFHh6G/Untitled_5.jpg");
background-repeat: no-repeat;
background-color: white;
background-size: 100%;
}
.jumbotron {
background-color: transparent !important;
}
input[type="text"] {
font-family: 'Roboto', sans-serif;
}
#answerinput {
width: 1000px;
margin-bottom: 27px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
#submit {
margin-bottom: 27px;
}
#name1 {
float: left;
color: white !important;
font-family: 'Roboto', sans-serif;
font-weight: 700;
font-size: 80px !important;
}
#here1 {
float: left;
color: white !important;
font-family: 'Roboto', sans-serif;
font-weight: 100;
font-size: 80px !important;
}
.word {
display: inline;
}
#source-wrapper {
padding-top: 6px;
}
#sucky {
margin-bottom: 10px;
} | 0.335895 | 0.118564 |
html{
height: 100%;
width: 100%;
overflow-x: hidden;
background-color: #D7CEC7;
}
body{
height: 100%;
width: 100%;
margin: auto;
background-color: #D7CEC7;
/* new body attribute in play CSS sets these two values so I am over writing the values here */
min-height: 0px;
min-width: 0px;
}
#header{
margin-top: 0;
padding-top: 0;
padding-bottom: 0;
margin-bottom: 3px;
font-size: 250%;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Chrome/Safari/Opera */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
not supported by any browser */
color: #76323F;
cursor: default;
}
#imgContainer{
width: 100%;
height: 42%;
margin: auto;
padding: 0;
}
#imgRow1Container{
width: 100%;
height: 50%;
}
.imgContainers{
width: 10%;
height: 33.3%;
float: left;
}
#imgRow2Container{
width: 100%;
height: 50%;
}
#answerContainer{
width: 100%;
height: 51.1%;
margin: auto;
padding: 0;
margin-top: 0.25%;
}
.answerAreas{
width: 18.75%;
height: 95%;
float: left;
border: 7px solid;
border-radius: 10%;
background-color: white;
}
#red{
margin-left: .75%;
border-color: red;
}
#green{
border-color: green;
}
#blue{
border-color: blue;
}
#yellow{
border-color: yellow;
}
#purple{
border-color: purple;
}
.redDropAreas{
height: 33.5%;
width: 50%;
float: left;
}
.greenDropAreas{
height: 33.5%;
width: 50%;
float: left;
}
.blueDropAreas{
height: 33.5%;
width: 50%;
float: left;
}
.yellowDropAreas{
height: 33.5%;
width: 50%;
float: left;
}
.purpleDropAreas{
height: 33.5%;
width: 50%;
float: left;
}
#BlocksGame{
height: 100%;
width: 90%;
}
@media only screen and (max-width: 1390px) {
.answerAreas{
width: 17.75%;
height: 90%;
}
#red{
margin-left: 2%;
}
#purple{
margin-right: auto;
}
}
@media only screen and (max-width: 960px) {
.answerAreas{
width: 17.75%;
border: 5px solid;
}
#red{
margin-left:2%;
}
}
@media only screen and (max-width: 690px) {
.answerAreas{
width: 17.75%;
border: 3px solid;
height: 88%;
}
#red{
margin-left:2%;
}
}
@media only screen and (max-width: 475px) {
.answerAreas{
width: 17.5%;
border: 2px solid;
}
#red{
margin-left:2%;
}
#imgContainer{
width: 93%;
margin-left: 0;
}
#answerContainer{
width: 93%;
}
#header{
font-size: 150%;
}
} | WebApp/ToTheRescueWebApplication/ToTheRescueWebApplication/MiniGames/ColorSortingGame/css/ColorSortingGame.css | html{
height: 100%;
width: 100%;
overflow-x: hidden;
background-color: #D7CEC7;
}
body{
height: 100%;
width: 100%;
margin: auto;
background-color: #D7CEC7;
/* new body attribute in play CSS sets these two values so I am over writing the values here */
min-height: 0px;
min-width: 0px;
}
#header{
margin-top: 0;
padding-top: 0;
padding-bottom: 0;
margin-bottom: 3px;
font-size: 250%;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Chrome/Safari/Opera */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
not supported by any browser */
color: #76323F;
cursor: default;
}
#imgContainer{
width: 100%;
height: 42%;
margin: auto;
padding: 0;
}
#imgRow1Container{
width: 100%;
height: 50%;
}
.imgContainers{
width: 10%;
height: 33.3%;
float: left;
}
#imgRow2Container{
width: 100%;
height: 50%;
}
#answerContainer{
width: 100%;
height: 51.1%;
margin: auto;
padding: 0;
margin-top: 0.25%;
}
.answerAreas{
width: 18.75%;
height: 95%;
float: left;
border: 7px solid;
border-radius: 10%;
background-color: white;
}
#red{
margin-left: .75%;
border-color: red;
}
#green{
border-color: green;
}
#blue{
border-color: blue;
}
#yellow{
border-color: yellow;
}
#purple{
border-color: purple;
}
.redDropAreas{
height: 33.5%;
width: 50%;
float: left;
}
.greenDropAreas{
height: 33.5%;
width: 50%;
float: left;
}
.blueDropAreas{
height: 33.5%;
width: 50%;
float: left;
}
.yellowDropAreas{
height: 33.5%;
width: 50%;
float: left;
}
.purpleDropAreas{
height: 33.5%;
width: 50%;
float: left;
}
#BlocksGame{
height: 100%;
width: 90%;
}
@media only screen and (max-width: 1390px) {
.answerAreas{
width: 17.75%;
height: 90%;
}
#red{
margin-left: 2%;
}
#purple{
margin-right: auto;
}
}
@media only screen and (max-width: 960px) {
.answerAreas{
width: 17.75%;
border: 5px solid;
}
#red{
margin-left:2%;
}
}
@media only screen and (max-width: 690px) {
.answerAreas{
width: 17.75%;
border: 3px solid;
height: 88%;
}
#red{
margin-left:2%;
}
}
@media only screen and (max-width: 475px) {
.answerAreas{
width: 17.5%;
border: 2px solid;
}
#red{
margin-left:2%;
}
#imgContainer{
width: 93%;
margin-left: 0;
}
#answerContainer{
width: 93%;
}
#header{
font-size: 150%;
}
} | 0.42919 | 0.063366 |
.CodeMirror {
padding-bottom: 20px;
font-size:11pt;
}
.CodeMirror-scroll {
overflow-x: hidden !important
}
.CodeMirror pre {
padding: 0 9px;
}
.CodeMirror-linenumber {
font-size: 80%;
padding-top: 2px;
}
.CodeMirror div.CodeMirror-cursor {
border-left: 2px solid #444444;
}
.CodeMirror-hints {
font-size: 11pt;
z-index: 96;
}
.CodeMirror-code div pre span span[cm-text=''] {
font-size: 0px;
}
div.cmeditor {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
background: none repeat scroll 0 0 #F3F3F3;
border-color: #C0C0C0;
border-image: none;
border-style: solid;
border-radius: 6px;
border-width: 1px;
color: #777777;
display: block;
margin: 0 2px 0 0;
padding: 2px 10px 5px;
position: relative;
}
/* NOW REPLACED BY BOOTSTRAP ALERTs */
/*
.cmeditor-tab-message {
position: absolute;
top: 0;
left: 0;
right: 0;
background: url("../images/skin/information.png") no-repeat scroll 0.5em 50% rgba(0, 0, 0, 0);
text-indent: 2.2em;
z-index: 1060;
}
.cmeditor-tab-errors ul, .cmeditor-tab-message {
padding: 0;
}
.cmeditor-tab-message {
background: none repeat scroll 0 0 #F3F3FF;
border: 1px solid #B2D1FF;
box-shadow: 0 0 0.25em #B2D1FF;
color: #006DBA;
}
.cmeditor-tab-errors, .cmeditor-tab-message {
font-size: 0.8em;
line-height: 2;
margin: 0 2em;
padding: 0.25em;
}
.cmeditor-tab-message {
background: url("../images/skin/information.png") no-repeat scroll 32px 50% #F3F8FC;
border-color: #B2D1FF;
border-image: none;
border-style: solid;
border-width: 1px;
color: #006DBA;
font-size: 0.76em;
margin: 0;
padding: 5px 5px 5px 55px;
}
*/
div.diffDialog div.modal-dialog {
max-width: 90%;
}
div.cmeditor-menu {
position: relative;
left: 0px;
/*top: 34px;*/ /* save space, and the warning message disappears automagically */
width:100%;
z-index:5;
}
.cmeditor .cmeditor-settings {
font-family: "Ubuntu Mono";
font-size: 11pt;
max-width: 20em;
width:20em;
position: absolute;
right: 0;
top: 0px;
}
.cmeditor .cmeditor-main {
position: relative;
}
.cmeditor .cmeditor-button {
max-width: 10em;
position: static;
}
.cmeditor .cmeditor-commands {
position: absolute;
left: 0;
top: 0;
z-index:5;
}
.cmeditor-menubar {
margin: 0 0 0.4em 0;
overflow:visible;
height: 30px; /*set fixed height, jquery's clearfix seems to be broken*/
}
.cmeditor .ui-button-text {
font-size: 11pt;
}
.cmeditor .ui-menu .ui-menu-item a {
font-size: 11pt;
}
.cmeditor .ui-menu li.ui-state-disabled {
margin-top:0px;
margin-bottom:0px;
}
.cmeditor ul.tabs {
font-family: "Ubuntu Mono";
list-style: none outside none;
margin: 0 0 -1px;
overflow:auto;
overflow-y:hidden;
padding: 5px 0 0 37px;
}
.cmeditor ul.tabs li {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
background: none repeat scroll 0 0 #F3F3F3;
border-color: #C0C0C0;
border-image: none;
border-style: solid;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
border-width: 1px 1px 0;
color: #777777;
cursor: pointer;
display: inline-block;
font-size: 11pt;
margin: 0 2px 0 0;
position: relative;
z-index: 1;
opacity:0.6;
}
.cmeditor ul.tabs li:hover {
color: #444444;
opacity:1;
}
.cmeditor ul.tabs li span.tabName {
padding: 2px 20px 5px 5px;
display: inline-block;
}
.cmeditor ul.tabs li span.changed::before {
content:"*";
}
.cmeditor ul.tabs li.selected {
background: none repeat scroll 0 0 #FFFFFF;
color: #222222;
cursor: default;
z-index: 3;
opacity:1;
}
.cmeditor ul.tabs .closeButton {
position:absolute;
right:2px;
top:-1px;
cursor:pointer;
font-weight:bold;
font-size:0.8em;
}
.cmeditor-completion {
padding-left: 22px;
position: relative;
}
.cm-errorhighlight {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAFklEQVQI12NgYGBgkKzc8x9CMDAwAAAmhwSbidEoSQAAAABJRU5ErkJggg==);
background-position: bottom;
background-repeat: repeat-x;
}
/*
* Stuff for plugins
*/
.fileSelectTree {
margin-top: 1em;
border: 1px solid #aaa;
border-radius: 4px;
padding: 5px;
background-color: white;
}
.fileSelectTree ul.jqueryFileTree a:hover {
background-color: #5897fb;
color:white;
}
.fileSelectTree ul.jqueryFileTree li.selected > a{
font-weight: normal;
}
/*
* Stuff for fullscreen mode
*/
div.cmeditor.cmeditor-fullscreen {
border:none;
padding:0;
border-radius:initial;
overflow-y: hidden;
box-sizing: border-box;
z-index: 95;
}
div.cmeditor.cmeditor-fullscreen .cmeditor-main {
position:static;
height: calc(100% - 40px);
}
div.cmeditor.cmeditor-fullscreen .cmeditor-main .cmeditor-main-center {
position:static;
height: 100%;
}
div.cmeditor.cmeditor-fullscreen .cmeditor-menu {
z-index:97;
/*top: 20px;*/
}
div.cmeditor.cmeditor-fullscreen .CodeMirror {
height: calc(100% - 30px);
height: -moz-calc(100% - 30px);
height: -webkit-calc(100% - 30px);
height: -o-calc(100% - 30px);
padding-bottom: 0px;
}
div.cmeditor.cmeditor-fullscreen .CodeMirror-scroll {
padding-bottom: 0; /* fucking hides stuff */
}
div.cmeditor.cmeditor-fullscreen .ui-layout-container, .ui-layout-container * {
box-sizing: border-box;
}
div.cmeditor.cmeditor-fullscreen .ui-layout-pane {
background:none;
padding:20px;
border:none;
}
div.cmeditor.cmeditor-fullscreen .ui-layout-pane-center {
background: none;
padding: 0px;
}
div.cmeditor.cmeditor-fullscreen .ui-layout-pane-north {
overflow:visible;
z-index: 95 !important; /*overwrite style-attribute set by jquery-layout; todo: in der doku nachgucken, da gibts scheinbar mechanismen*/
}
div.cmeditor.cmeditor-fullscreen .ui-layout-pane-north .ui-menu {
z-index: 96;
} | grails-app/assets/stylesheets/cmeditor-common.css | .CodeMirror {
padding-bottom: 20px;
font-size:11pt;
}
.CodeMirror-scroll {
overflow-x: hidden !important
}
.CodeMirror pre {
padding: 0 9px;
}
.CodeMirror-linenumber {
font-size: 80%;
padding-top: 2px;
}
.CodeMirror div.CodeMirror-cursor {
border-left: 2px solid #444444;
}
.CodeMirror-hints {
font-size: 11pt;
z-index: 96;
}
.CodeMirror-code div pre span span[cm-text=''] {
font-size: 0px;
}
div.cmeditor {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
background: none repeat scroll 0 0 #F3F3F3;
border-color: #C0C0C0;
border-image: none;
border-style: solid;
border-radius: 6px;
border-width: 1px;
color: #777777;
display: block;
margin: 0 2px 0 0;
padding: 2px 10px 5px;
position: relative;
}
/* NOW REPLACED BY BOOTSTRAP ALERTs */
/*
.cmeditor-tab-message {
position: absolute;
top: 0;
left: 0;
right: 0;
background: url("../images/skin/information.png") no-repeat scroll 0.5em 50% rgba(0, 0, 0, 0);
text-indent: 2.2em;
z-index: 1060;
}
.cmeditor-tab-errors ul, .cmeditor-tab-message {
padding: 0;
}
.cmeditor-tab-message {
background: none repeat scroll 0 0 #F3F3FF;
border: 1px solid #B2D1FF;
box-shadow: 0 0 0.25em #B2D1FF;
color: #006DBA;
}
.cmeditor-tab-errors, .cmeditor-tab-message {
font-size: 0.8em;
line-height: 2;
margin: 0 2em;
padding: 0.25em;
}
.cmeditor-tab-message {
background: url("../images/skin/information.png") no-repeat scroll 32px 50% #F3F8FC;
border-color: #B2D1FF;
border-image: none;
border-style: solid;
border-width: 1px;
color: #006DBA;
font-size: 0.76em;
margin: 0;
padding: 5px 5px 5px 55px;
}
*/
div.diffDialog div.modal-dialog {
max-width: 90%;
}
div.cmeditor-menu {
position: relative;
left: 0px;
/*top: 34px;*/ /* save space, and the warning message disappears automagically */
width:100%;
z-index:5;
}
.cmeditor .cmeditor-settings {
font-family: "Ubuntu Mono";
font-size: 11pt;
max-width: 20em;
width:20em;
position: absolute;
right: 0;
top: 0px;
}
.cmeditor .cmeditor-main {
position: relative;
}
.cmeditor .cmeditor-button {
max-width: 10em;
position: static;
}
.cmeditor .cmeditor-commands {
position: absolute;
left: 0;
top: 0;
z-index:5;
}
.cmeditor-menubar {
margin: 0 0 0.4em 0;
overflow:visible;
height: 30px; /*set fixed height, jquery's clearfix seems to be broken*/
}
.cmeditor .ui-button-text {
font-size: 11pt;
}
.cmeditor .ui-menu .ui-menu-item a {
font-size: 11pt;
}
.cmeditor .ui-menu li.ui-state-disabled {
margin-top:0px;
margin-bottom:0px;
}
.cmeditor ul.tabs {
font-family: "Ubuntu Mono";
list-style: none outside none;
margin: 0 0 -1px;
overflow:auto;
overflow-y:hidden;
padding: 5px 0 0 37px;
}
.cmeditor ul.tabs li {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
background: none repeat scroll 0 0 #F3F3F3;
border-color: #C0C0C0;
border-image: none;
border-style: solid;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
border-width: 1px 1px 0;
color: #777777;
cursor: pointer;
display: inline-block;
font-size: 11pt;
margin: 0 2px 0 0;
position: relative;
z-index: 1;
opacity:0.6;
}
.cmeditor ul.tabs li:hover {
color: #444444;
opacity:1;
}
.cmeditor ul.tabs li span.tabName {
padding: 2px 20px 5px 5px;
display: inline-block;
}
.cmeditor ul.tabs li span.changed::before {
content:"*";
}
.cmeditor ul.tabs li.selected {
background: none repeat scroll 0 0 #FFFFFF;
color: #222222;
cursor: default;
z-index: 3;
opacity:1;
}
.cmeditor ul.tabs .closeButton {
position:absolute;
right:2px;
top:-1px;
cursor:pointer;
font-weight:bold;
font-size:0.8em;
}
.cmeditor-completion {
padding-left: 22px;
position: relative;
}
.cm-errorhighlight {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAFklEQVQI12NgYGBgkKzc8x9CMDAwAAAmhwSbidEoSQAAAABJRU5ErkJggg==);
background-position: bottom;
background-repeat: repeat-x;
}
/*
* Stuff for plugins
*/
.fileSelectTree {
margin-top: 1em;
border: 1px solid #aaa;
border-radius: 4px;
padding: 5px;
background-color: white;
}
.fileSelectTree ul.jqueryFileTree a:hover {
background-color: #5897fb;
color:white;
}
.fileSelectTree ul.jqueryFileTree li.selected > a{
font-weight: normal;
}
/*
* Stuff for fullscreen mode
*/
div.cmeditor.cmeditor-fullscreen {
border:none;
padding:0;
border-radius:initial;
overflow-y: hidden;
box-sizing: border-box;
z-index: 95;
}
div.cmeditor.cmeditor-fullscreen .cmeditor-main {
position:static;
height: calc(100% - 40px);
}
div.cmeditor.cmeditor-fullscreen .cmeditor-main .cmeditor-main-center {
position:static;
height: 100%;
}
div.cmeditor.cmeditor-fullscreen .cmeditor-menu {
z-index:97;
/*top: 20px;*/
}
div.cmeditor.cmeditor-fullscreen .CodeMirror {
height: calc(100% - 30px);
height: -moz-calc(100% - 30px);
height: -webkit-calc(100% - 30px);
height: -o-calc(100% - 30px);
padding-bottom: 0px;
}
div.cmeditor.cmeditor-fullscreen .CodeMirror-scroll {
padding-bottom: 0; /* fucking hides stuff */
}
div.cmeditor.cmeditor-fullscreen .ui-layout-container, .ui-layout-container * {
box-sizing: border-box;
}
div.cmeditor.cmeditor-fullscreen .ui-layout-pane {
background:none;
padding:20px;
border:none;
}
div.cmeditor.cmeditor-fullscreen .ui-layout-pane-center {
background: none;
padding: 0px;
}
div.cmeditor.cmeditor-fullscreen .ui-layout-pane-north {
overflow:visible;
z-index: 95 !important; /*overwrite style-attribute set by jquery-layout; todo: in der doku nachgucken, da gibts scheinbar mechanismen*/
}
div.cmeditor.cmeditor-fullscreen .ui-layout-pane-north .ui-menu {
z-index: 96;
} | 0.258607 | 0.061734 |
.padding-right-2{
padding-right:2px;
}
.padding-left-2{
padding-left:2px;
}
.width-10{
width:10%;
}
.width-18{
width:18%;
}
.width-24{
width:24%;
}
.width-22{
width:22%;
}
.vertical-align-top{
vertical-align:text-top !important;
}
.font-40{
font-size:40px;
}
.red{
color:red;
}
.margin-top-7{
margin-top:7px;
}
.blue-breadcrumb-plans{
background-color:#13a9cc;
/* height: 45px;*/
}
.blue-breadcrumb-plans-down{
background-color:rgba(19, 169, 204, 0.51);
}
.nav-pills .dropdown.open>.back-drop, .nav-tabs .dropdown.open>.back-drop{
background:transparent;
}
.line-height-0{
line-height:0;
}
.vertical-align-bottom{
vertical-align:bottom;
}
.dropdown-icon-li{
padding-left: 0 !important;
padding-right: 0 !important;
display: inline-block !important;
}
.nav-tabs-horizontal .border-bottom{
border-bottom:0px !important;
}
.padding-top-7{
padding-top:7px;
}
.width-27{
width:27%;
}
.margin-top-9{
margin-top:9px;
}
.plan-link.active{
color:white !important;
}
.nav > li.hover > a:hover, .nav > li.hover > a:focus{
background-color: transparent !important;
}
/* new design */
div.required label:after {content: " *"; color: #a94442;font-size: 16px;}
.back-color-profile{
background: rgba(47, 85, 152, 0.1) !important;
}
.dropdown.dropdown-avatar .profile-icon:after{
color: #13a9cc;
}
.dropdown.dropdown-avatar .page-active:after{
color: #ffffff;
}
.page-active {
background-color: #f7971e;
font-size: 14px;
border-color: #f7971e;
padding: 4px 11px;
outline: none !important;
line-height: 1.7;
border-radius: .2rem;
display: inline-block;
font-weight: 400;
text-align: center;
white-space: nowrap;
vertical-align: middle;
cursor: pointer;
user-select: none;
border: 1px solid transparent;
color:white !important;
}
.color-b{
color:black!important;
}
.add-icon{
/* width: 23px;
border: 1px solid #13a9cc;
border-radius: 50%;
margin-left: 36px;*/
margin-top: 10px;
color:#13a9cc;
}
.button-add{
text-align: right;
margin-left: 6px;
color: #13a9cc;
}
.remove-icon{
/* width: 23px;
border: 1px solid red;
border-radius: 50%;
margin-left: 36px;
margin-top: 10px;*/
}
.button-remove{
/*text-align: right;*/
margin-left:8px;
color: red;
}
.color-red{
color:red;
}
.text-align-right{
text-align:right;
}
.font-weight-900{
font-weight:900 !important;
color: #fff;
background-color: #13a9cc !important;
}
.back-darkgray{
background:darkgray;
}
.back-lightyellow{
background:lightyellow;
}
.display-block{
dispaly:block !important;
}
/*.table-backcolor>tbody>tr:hover, .table-backcolor>tbody>tr:hover>td{
background: #ddd!important;
} */
.table-backcolor>tbody>tr:hover>td.font-weight-900{
background: #13a9cc!important;
}
.table-backcolor, .table-backcolor th,.table-backcolor td {
border-bottom: 1px solid #ddd;
border-top: 1px solid #ddd;
border-collapse: collapse;
border-color:#ddd !important;
}
.header-td{
pointer-events:none;
}
.back-gray{
background-color:gray;
}
.max-width-140{
max-width:140px;
}
.margin-15{
margin:15px !important;
}
.margin-top-10{
margin-top:10px !important;
}
.margin-top-2{
margin-top:2px !important;
}
body.blue .back-widget {
background: rgb(1, 38, 67) !important;
color: white !important;
}
.width-198{
width:198px;
}
body.blue .colorwhite>.dx-datagrid {
color: white !important;
}
.table-line, .table-line th,.table-line td {
border: 1px solid #ddd;
border-collapse: collapse;
border-color:#ddd;
}
.borders-right{
border-left: 1px solid white !important;
border-bottom: 1px solid white !important;
border-top: 1px solid white !important;
border-color: white !important;
border-right: 1px solid #ddd !important;
}
.body-blue .td-back{
background:white !important;
color:black !important;
text-align:center;
}
.body-blue .tr-back-color{
background:#13a9cc !important;
color:white !important;
}
.width-16{
width:16px;
}
.btn-group>.upper-icon:after, .dropdown-toggle>.upper-icon:after, .dropdown>.upper-icon:after{
left: 47px !important;
}
.btn-group>.upper-icon:before, .dropdown-toggle>.upper-icon:before, .dropdown>.upper-icon:before{
left: 47px !important;
}
ul#main_tab li img {
cursor: pointer;
}
.margin-left-0 {
margin-left:0px !important;
}
.bold-font{
font-size:14px;
font-weight:800px;
}
.engineer{
font-size: 27px;
color: #13a9cc;
font-weight: 200;
font-family:arial;
}
.box-body{
border-top: 2px solid #13a9cc;
border-bottom: 1px solid #ddd;
border-right: 1px solid #ddd;
border-left: 1px solid #ddd;
padding-bottom: 10px;
}
.pdf-download{
padding: 11px;
border: 1px solid white;
border-radius: 5px;
}
.download-icon{
border: 1px solid white;
border-radius: 50%;
font-size: 12px;
}
body.body-blue .back-lightblue{
background:#eff4f5;
}
body.body-blue .backcolor.active{
background-color:#eff4f5;
}
body.body-blue .widget-six .widget-header {
padding: 20px 25px;
-webkit-border-radius: 5px 5px 0px 0px;
border-radius: 5px 5px 0px 0px;
border-bottom: 1px solid rgba(248, 247, 247, 0.52);
text-align:center;
padding-left: 10px !important;
}
/*
body.body-blue .actions a.dropdown-toggle {
color: #000 !important;
}*/
body.body-blue .color-white {
color: #ffffff;
}
body.body-blue nav.top-menu
{
background: #fff!important;
border-bottom: 1px solid #13a9cc !important;
}
body.body-blue nav.top-menu{
height:75px;
}
body.body-blue nav.top-menu .menu{
height:75px ;
}
body.body-blue .actions>li{
margin-right: 35px!important;
font-family: arial;
}
.width-120{
width:120% ;
}
.width-12{
width:12% ;
}
body.body-blue nav.top-menu .back-color{
background:#fff ;
border-bottom: 1px solid #13a9cc !important
}
body.body-blue .header-name{
vertical-align: top;
padding: 0px 10px 0px 10px;
display: inline-block;
width: 110px;
font-family: arial;
color: #13a9cc;
}
body.body-blue .dropdown-a{
padding: 10px 15px !important;
font-size: 14px;
font-family: arial;
}
body.body-blue .btn-group>.arrow-icon:before, .dropdown-toggle>.arrow-icon:before, .dropdown>.arrow-icon:before{
content:none;
}
body.body-blue .btn-group>.arrow-icon:after, .dropdown-toggle>.arrow-icon:after, .dropdown>.arrow-icon:after{
content:none;
}
body.body-blue .dropdown-menu .dropdown-item:hover{
/* background:#ffd732 !important;
color:black !important;*/
background:#f7971e !important;
color:#fdfdfd !important;
}
body.body-blue .arrow-icon{
/*background:rgba(47, 85, 152, 0.70) !important;
opacity:0.7 !important;
min-width:203px !important;
margin-top: 13px !important;;*/
background:rgb(66, 203, 226) !important;
min-width:203px !important;
margin-top: 13px !important;;
}
body.body-blue nav.top-menu + .page-content-0{
margin-top: 75px !important;
}
body.body-blue .nav-link.active{
color:black !important;
}
body.body-blue .nav-link:hover{
color:black !important ;
}
body.body-blue .border-radius-1{
border-radius:1px solid
}
body.body-blue .text-align-left{
text-align:left !important;
}
body.body-blue .unique-firms{
text-align:left !important;
font-size:18px;
font-family:arial;
color:#13a9cc;
}
body.body-blue .fontcolor-blue{
color:#13a9cc;
}
.background-blue{
background:#13a9cc;
color:white;
}
body.body-blue #pieChartInfoText{
position: absolute;
text-align: center;
left: 125px !important;
top: 211px !important;
}
body.body-blue .dropdown-months::after{
content:none !important;
}
body.body-blue .margin-left-42{
margin-left:42px;
}
body.body-blue .back-header-color{
background:#f0f4f5 !important;
border: 1px solid #ddd;
}
body.body-blue .color-black {
color:#000;
}
body.body-blue .background-ddd{
background:#ddd;
}
/* endnew design */
#checkbox-inline .dx-datagrid .dx-column-indicators{
display: initial !important;
}
.reports-container{
border: 1px solid #ddd;
margin-bottom: 10px;
}
.box-head-claim{
font-size: 1.1286rem !important;
margin: 5px;
font-weight:700;
}
.left-head{
font-size: 0.9286rem !important;
margin: 5px;
font-weight:700;
}
.padding-comment{
padding: 54px 20px 54px 20px
}
.margin-top-0{
margin-top:0px !important;
}
.padding-15{
padding:15px;
}
.back-lightgrey{
background-color:rgb(237, 237, 237);
}
.padding-6{
padding:6px;
}
.dx-datagrid .dx-row-alt > td{
background-color : #ddd;
}
.cursor-default{
cursor: default;
}
.padding-top-8{
padding-top:8px !important;
}
.cursor-nodrop{
cursor:no-drop !important;
}
.placeholder-italics:-ms-input-placeholder {
font-style:italic;
}
.placeholder-italics::-moz-placeholder {
font-style:italic;
}
.placeholder-italics::-webkit-input-placeholder {
font-style:italic;
}
.border-radius-0{
border-radius: 0;
}
.col-form-label {
padding-top: .64rem;
padding-bottom: .64rem;
}
.chartist-tooltip
{
background: #01a8fe;
}
.chartist-tooltip:before{
border-top-color: #01a8fe;
}
.margin-right-2{
margin-right : 2px;
}
.dx-toolbar-after .dx-toolbar-item:first-child {
padding: inherit;
float: right;
}
.dx-toolbar-after .dx-toolbar-item {
padding: 0 0 0 5px;
float: left;
}
.donut.donut-success-faded
{
border-color: #7dd3ae;
}
.donut.donut-warning-faded{
border-color:rgb(198, 141, 41);
}
.donut.donut-purple
{
border-color: #926dde;
}
.width-20{
width:20px;
}
.donut.donut-red
{
border-color: #d15725;
}
.donut.donut-orange
{
border-color: orange;
}
.donut.donut-purple-faded
{
border-color: #9daaf3;
}
.information-icon{
font-size: 15px;
padding-left: 5px;
}
.cursor-pointer{
cursor:pointer;
}
.pointer-disable{
pointer-events: none;
}
.pointer-events{
pointer-events: none;
opacity: 0.5;
}
.padding-3{
padding:3px !important;
}
.font-17{
font-size:17px;
}
.font-21{
font-size:21px;
}
/*
.tr-back:hover{
background:#40a9fc !important;
}
.tr-back .td-back:hover{
background:transparent;
}*/
.border-1{
border:1px solid black;
}
.tbody-class{
background: #b5d7ec !important;
text-align: center !important;
}
.tbody-class2{
background: #c1dfb5 !important;
text-align: center !important;
}
.tbody-class3{
background: #ffc9ae !important;
text-align: center !important;
}
.tbody-class4{
background: #ffe49e !important;
text-align: center !important;
}
.tbody-class5{
background: rgba(0, 143, 231, 0.39) !important;
text-align: center !important;
}
.display-inblock{
display:inline-block;
}
.float-initial{
float:initial;
}
.back-white{
background:white;
}
.border-radius-8{
border-radius:8px;
}
.close-modal{
outline: none !important;
width: 30px;
height: 30px;
display: inline-block;
line-height: 30px;
text-align: center;
float: right;
font-size: 1.5rem;
font-weight: 700;
line-height: 1;
color: #000;
text-shadow: 0 1px 0 #fff;
opacity: .2;
}
.font-2rem{
font-size: 1.2rem !important;
}
.header-reimbursment{
line-height: 31px !important;
padding-bottom: 24px !important;
}
.secondary-nav {
margin: 0;
padding: 0;
list-style-type: none;
}
.secondary-nav li {
padding: 10px;
list-style: none;
position: relative;
cursor: pointer;
}
.secondary-nav a {
text-decoration: none;
font-size: 14px;
display: inline-block;
box-sizing: border-box;
width: 100%;
}
.secondary-nav li.active-page {
border-left: 3px solid #90d8f6;
background: #eaeaea;
padding: 10px 10px 10px 7px;
}
.box-padding.plan-years{
padding: 10px !important;
}
.aplhabets-div ul li {
float: left;
}
.aplhabets-div ul{
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
}
.gray {
background-color: gray;
}
.masterhead .actions{ float: right !important;
list-style: none !important;
margin: 0 !important;
}
.actions>li{
display: inline-block;
line-height: 36px;
margin-right: 25px;
vertical-align: middle;
font-size: 14px;
}
.color-black{
color:black;
}
.box-shadow{
box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.2) !important
}
.padding-7{
padding:7px;
}
.padding-top-6{
padding-top:6px;
}
.categoryButton {
font-size: 16px !important;
line-height: 30px !important;
height: 30px !important;
width: 28px !important;
min-width: 28px !important;
border-radius: 2px !important;
text-align: center !important;
cursor: pointer !important;
margin: 1px;
border:none;
background-color: #13a9cc!important;
}
.categoryButton.selected {
background-color: #90d8f6 !important;
color: #fff !important;
font-size: 16px !important;
line-height: 30px !important;
height: 30px !important;
width: 28px !important;
min-width: 28px !important;
border-radius: 2px !important;
text-align: center !important;
cursor: pointer !important;
}
.div-search .search-block
{
-webkit-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
max-width: 300px;
}
.data-count{
line-height: 16px !important;
border: 1px solid #5bc0de !important;
/* background-color: #fff2e4 !important;
-webkit-align-items: flex-start !important;*/
padding: 8px 20px 8px 8px !important;
position: relative !important;
display: flex !important;
font-size: 14px !important;
}
.data-count i{
color: #f9a72a !important;
padding-right: 5px;
}
/*
.form-control{
border-color : #bdbdbd;
}*/
.box-border{
border: 1px solid #bdbdbd;
}
.box-head{
font-size: 1.4286rem !important;
margin: 5px 0 !important;
}
.box-row{
float:left;
margin-top:10px;
margin-bottom: 10px;
}
.box-padding{
padding: 20px 20px 0px 20px !important;
}
.action-coloumn
{
margin-bottom: 15px !important;
display: block !important;
}
.action-coloumn a{
text-decoration: underline !important;
}
.section-padding{
padding: 16px;
}
.padding-10{
padding:10px !important;
}
.dropify-company-box div.dropify-wrapper
{
height:123px;
}
.pageTitle {
color: #666 !important;
font-size: 2.0000rem !important;
font-weight: 100 !important;
margin: 10px 0 !important;
/* overflow: hidden !important;*/
text-overflow: ellipsis !important;
}
.user-detail
{
margin-left: 10px;
}
/*
nav.top-menu .header-top{
height: 56px !important;
padding-top: 8px !important;
}
*/
/*
nav.top-nav{
height: 56px !important;
}
nav.top-menu + .page-content-0{
margin-top:56px !important;
}
*/
.header-main span.font-18{
font-size: 1.4000rem !important;
font-weight: 400 !important;
margin: 10px 0 !important;
overflow: hidden !important;
text-overflow: ellipsis !important;
}
#menu {
background: rgb(34, 45, 50);
color: #fff;
position: fixed;
right: 0;
top: 124px;
width: 23%;
z-index: 4;
}
.action_head{
margin-bottom: 15px !important;
display: block !important;
}
.font-14{
font-size:14px;
}
.margin-top-8{
margin-top:8px !important;
}
.hide{
display:none !important;
}
.padding-bottom-30{
padding-bottom:30px !important;
}
.load-gif {
position: fixed;
width: 100%;
height: 100%;
background: #fff;
top: 0;
left: 0;
opacity: 0.8;
z-index: 99999;
}
.procressing_plz_wait {
color: #000;
width: 50%;
margin: 15% auto;
text-align: center;
font-size: 17px;
top: 50%;
background: #fff;
}
.gif-img-prop{
width: 16px;margin-left: 12px;
}
.color-blue{
color:#27a4b0 !important;
}
.color-999{
color:#999 !important;
}
.padding-bottom-5{
padding-bottom:5px;
}
.padding-18 {
padding: 18px;
}
.margin-top-100{
margin-top:100px;
}
.padding-top-20 {
padding-top: 20px;
}
.padding-top-30 {
padding-top: 30px;
}
.padding-bottom-20 {
padding-bottom: 20px;
}
.padding-bottom-10 {
padding-bottom: 10px;
}
.margin-top-5 {
margin-top: 5px;
}
.margin-top-10 {
margin-top: 10px;
}
.margin-bottom-10 {
margin-bottom: 10px;
}
.padding-0 {
padding: 0px !important;
} /*
.form-group.form-md-line-input {
margin: 0 0 25px !important;
padding-left:8px;
}*/
.width-15 {
width: 15%;
}
.font-16 {
font-size: 16px;
}
.table-back {
background-color: #ff693e;
}
.text-center {
text-align: center !important;
}
.text-align-center{
text-align:center;
}
.second-header{
font-size: 2.4000rem !important;
font-weight: 400 !important;
margin: 10px 0 !important;
overflow: hidden !important;
text-overflow: ellipsis !important;
}
.back-header-color{
background:rgb(1, 38, 67) !important;
padding-top: 10px;
border-radius: 8px;
}
.color-orange {
background-color: #ff693e !important;
border-color: #ff693e !important;
}
.color-white {
color: white;
}
.box {
position: relative;
border-radius: 3px;
background: #ffffff;
border-top: 3px solid #d2d6de;
margin-bottom: 20px;
width: 100%;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.header {
font-size: 20px;
padding-bottom: 20px;
padding-top: 20px;
background: #ff693e !important;
color: #fff;
border-radius: 6px !important;
}
.header-main {
background: white;
margin-bottom: 10px;
padding: 5px;
border-bottom: 1px solid #ddd;
}
.font-22 {
font-size: 22px;
}
.table-headers {
padding-right: 0px !important;
background: #eceff4 !important;
color: #000 !important;
}
.table-rows {
padding: 5px !important;
}
.dx-datagrid-headers {
padding-right: 0px;
background: #eceff4 !important;
color: #000 !important;
}
.dx-datagrid-rowsview .dx-datagrid-nowrap {
padding: 5px;
}
.demo-container {
padding: 6px;
}
#gridContainer {
height: auto;
}
.margin-bottom-17 {
margin-bottom: 17px;
}
#eventContainer {
border: 1px solid lightgray;
margin-top: 20px;
min-height: 50px;
padding: 5px;
}
#eventContainer .eventLog {
margin-top: 5px;
}
#clearLog {
float: right;
}
.imp-red {
/*color: red;*/
}
#gridContainer {
height: auto;
}
.header-clients {
margin-bottom: 10px;
font-size: 16px;
}
.padding-left-0 {
padding-left: 0px !important;
}
.padding-right-0 {
padding-right: 0px !important;
}
.panel-heading {
padding: 15px !important;
}
.margin-right-15{
margin-right: 15px;
}
.padding-top-38 {
padding-top: 38px !important;
}
.padding-bottom-38 {
padding-bottom: 38px !important;
}
.font-15 {
font-size: 15px;
}
.padding-23 {
padding: 23px;
}
/*.widget-seven .widget-body .widget-body-inner{
z-index :0 !important
}*/
.line-height-30 {
line-height: 30px;
}
.position-rel {
position: relative !important;
margin-top: 11px !important;
font-size: 19px !important;
}
/* .widget-seven .widget-body{
padding: 20px 25px 35px;
}
*/
.color-grey {
background-color: #666 !important;
border-color: #666 !important;
}
.color-grey-h5 {
color: #666 !important;
font-size: 1.1rem !important;
}
.padding-left-8 {
padding-left: 8px;
}
.step-digit-span {
font-size: 11px !important;
width: auto !important;
height: auto;
line-height: normal !important;
}
.font-30 {
font-size: 30px !important;
}
.font-15 {
font-size: 15px;
}
.width-85 {
width: 85%;
}
.icon-plus {
margin-left: 10px;
font-size: 23px;
line-height: 32px !important;
}
.font-26 {
font-size: 26px !important;
}
.font-13 {
font-size: 13px;
}
.search-icon {
background-color: #ffffff !important;
}
.search-icon-back {
background-color: rgba(36, 34, 47, 0.7) !important;
}
.fa-color {
color: #514d6a;
}
.color-white {
color: white;
}
.padding-11 {
padding: 11px;
}
.padding-top-14 {
padding-top: 14px;
}
.border-color-none {
border-color: lightgrey !important;
}
.padding-top-9 {
padding-top: 9px;
}
.padding-bottom-8 {
padding-bottom: 8px;
}
.width-full {
width: 100%;
}
.width-50 {
width: 50%;
}
.width-100 {
width: 100%;
}
.line-height-35 {
line-height: 35px;
}
.margin-0 {
margin: 0!important;
}
.dashboard-add-button {
margin: 0;
padding: 5px 7px 5px 7px !important;
}
.color-green {
color: #46be8a;
}
.color-secondary{
color:#6a7a84;
}
.btn-secondary-outline{
border-color:#6a7a84;
}
.dashboard-add-white-button:hover{
background-color: #eee !important;
}
.padding-right-20{
padding-right:20px;
}
.line-height-13{
line-height:13px !important;
}
.top-16{
top:16px !important;
}
.button{
background-color: #46be8a !important;
border-color: #46be8a !important;
color: #ffffff !important;
}
.borders{
border-left:0px !important;
border-top:0px !important;
border-right:0px !important;
border-bottom:1px solid #999 !important;
}
.form-group.form-md-line-input.margin-bottom-5 label{
color:#999 !important;
}
.form-group.form-md-line-input .borders:focus:not([readonly])~label:after{
background:#999 !important;
}
.margin-bottom-0{
margin-bottom:0px !important;
}
.margin-bottom-5{
margin-bottom:5px !important;
}
.line-height-4{
line-height:4;
}
.font-18{
font-size:18px;
}
.cui-wizard .steps ul li.disabled a{
padding:0px
}
.wizard > .steps .current a{
padding:0px;
}
.wizard > .steps .done a{
padding:0px;
}
.cui-ecommerce--cart .actions{
padding-top:0px;
border-top:0px !important;
}
.wizard > .steps .current a{
color:red;
}
.blue-text{
color: #90d8f6 !important;
}
.btn-blue{
border-color: #90d8f6 !important;
background: #90d8f6 !important;
}
.yellow-text{
color: #dacb94 !important;
}
.btn-yellow{
border-color: #dacb94 !important;
background: #dacb94 !important;
}
/* for button in flow of form */
.cui-wizard .actions li a{
background:#2184be;
border-color:#2184be ;
}
.margin-top-15{
margin-top:15px;
}
.help-block-error{
color:red;
}
.select-border-color{
border-color:#999 !important;
}
.margin-top-16{
margin-top: 16px;
}
.btn-group>.dropdown-menu:before, .dropdown-toggle>.dropdown-menu:before, .dropdown>.arrow:before{
left:auto !important;
right:9px !important;
}
.btn-group>.dropdown-menu:before, .dropdown-toggle>.dropdown-menu:before, .dropdown>.arrow:after{
left:auto !important;
right:9px !important;
}
.line-height-5{
line-height:0.5 !important;
}
.font-20{
font-size:20px !important;
}
.width-150{
width:150% ;
}
/*
.locations>span.select2-container{
z-index:500 !important;
}*/
.select2-container{
z-index:1058 !important;
}
div.help-block{
font-size: 12px !important;
}
body.blue{
//background: url(http://172.16.31.10/themes/preview/smartadmin/1.8.x/ajax/img/glass.jpg) no-repeat center top fixed;
background-size: cover !important;
color: #000!important;
background-color: white!important;
}
body.blue nav.top-menu
{
background: #012643!important;
border-bottom: 1px solid rgba(248, 247, 247, 0.52)!important;
}
body.blue .mt-checkbox.mt-checkbox-outline>span{
border: 1px solid black !important;
}
body.blue .header-main {
background: rgba(255, 255, 255, 0.02)!important;
margin-bottom: 10px!important;
padding: 5px!important;
border-bottom: 1px solid #ddd!important;
}
/*body.blue section.panel{
background-color: rgba(1, 38, 67, 0)!important;
}
body.blue .dropify-wrapper{
background-color: rgba(1, 38, 67, 0)!important;
}
body.blue .select2 .select2-selection--multiple{
background-color: rgba(1, 38, 67, 0)!important;
}
*/
body.body-blue .widget-six .widget-header {
padding: 20px 25px;
-webkit-border-radius: 5px 5px 0px 0px;
border-radius: 5px 5px 0px 0px;
border-bottom: 1px solid rgba(248, 247, 247, 0.52);
text-align:center;
padding-left: 10px !important;
}
body.blue .widget {
background: rgba(255, 255, 255, 0.02);
-webkit-border-radius: 5px;
border-radius: 5px;
margin-bottom: 16px;
position: relative;
border: 1px solid rgba(248, 247, 247, 0.52);
}
body.blue .color-black {
color: #ffffff !important;
}
body.blue .dx-datagrid {
color: #000;
background-color: rgba(255, 255, 255, 0);
}
body.blue .dx-toolbar {
background-color: rgba(255, 255, 255, 0);
padding: 0;
overflow: visible;
}
body.blue .dx-widget {
color: white;
font-weight: normal;
font-size: 14px;
font-family: 'Helvetica Neue','Segoe UI',Helvetica,Verdana,sans-serif;
line-height: normal;
}
body.blue .dx-datagrid-headers {
padding-right: 0px;
background: rgb(1, 38, 67)!important;
color: white !important;
}
body.blue .dx-editor-cell .dx-texteditor .dx-texteditor-input{
background:rgb(5, 42, 70) !important;
color:white;
}
/*body.blue option{
background-color: rgb(5, 42, 70);
}*/
body.blue a{
color: #012643;
}
body.blue .dx-column-lines a{
color: black;
}
body.blue .ct-label {
fill: white;
color: white;
font-size: .75rem;
line-height: 1;
}/*
body.blue .form-control{
background-color:rgba(255, 255, 255, 0);
color: #ffffff;
}*/
/*
body.blue select.form-control {
background: rgba(255, 255, 255, 0.17) center right no-repeat url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAFCAYAAABB9hwOAAAAGXRFW…gv37w+qKmqOp+BQsAEpX8wMTFm/fnz5/P/f//DGagAAAIMAKIuMR+q/rU9AAAAAElFTkSuQmCC);
}
*/
body.blue .modal-content{
color:black;
}
body.blue .modal-content select.form-control{
color:black;
}
body.blue .modal-content option{
background-color: rgba(255, 255, 255, 0);
}
body.blue .borders{
color:white !important;
}
body.blue .popover{
color:black;
}
/*body.blue .select2-dropdown{
background-color: rgb(1, 38, 67)!important;
}*/
/*body.blue .select2-container .select2-results__option[aria-selected=true]{
background-color:rgba(1, 38, 67, 0) !important;
}
*/
body.blue .form-group.form-md-line-input.margin-bottom-5 label{
color:white !important;
}
body.blue hr {
margin-top: 1rem;
margin-bottom: 1rem;
border: 0;
border-top: 1px solid rgba(197, 197, 197, 0.28);
}
body.blue .secondary-nav li.active-page {
border-left: 3px solid #90d8f6;
background: rgba(234, 234, 234, 0.22);
padding: 10px 10px 10px 7px;
}
.contact-us-logo{
max-width: 32px !important;
background: #fff;
border-radius: 50%;
}
.help-button{
position: fixed;
bottom: 10px;
right: 15px;
border-radius: 31px;
background: #fdbb5d;
color: white;
font-size: 1.25rem;
padding: 10px 25px 10px 25px;
border-radius: 999rem;
cursor:pointer;
z-index: 999999;
}
.help-box{
border-radius: 9px;
border: 1px solid #c1c1c1;
padding: 0px;
position: fixed;
bottom: 10px;
right: 15px;
z-index: 3000;
}
.help-box-header{
background-color: #fdbb5d;
color: #794803;
border-radius: 9px 9px 0px 0px;
padding: 5px;
}
.help-box-minus{
float: right;
margin-right: 10px;
color: #a24803!important;
}
.help-box-body{
background-color: white;
}
nav.left-menu + nav.top-menu{
left:0px !important;
}
nav.left-menu + * + .page-content{
margin-left:0px !important;
}
.nav-tabs-horizontal .nav-tabs .nav-item .nav-link.active:hover{
border-bottom-color: #2c3f4c !important;
}
.nav-tabs-horizontal .nav-tabs .nav-item .nav-link.active{
background: #2c3f4c;
color: white;
}
/*
body.blue .widget-six .widget-header {
padding: 20px 25px!important;
-webkit-border-radius: 5px 5px 0px 0px!important;
border-radius: 5px 5px 0px 0px!important;
border-bottom: 1px solid rgba(248, 247, 247, 0.52)!important;
}*/
/*
.cui-wizard > .content{
margin-bottom:0px !important;
}
.cui-wizard--steps--icon{
width: 30px !important;
height: 30px !important;
font-size: 15px !important;
line-height: 27px !important;
}
.cui-wizard .steps ul li:before, .cui-wizard .steps ul li:after{
top:17px !important;
}
.cui-wizard .steps ul li a{
line-height:17px !important;
}*/
@media (min-width: 1200px) and (max-width: 1340px) {
.media-width {
width:50% !important;
}
}
@media only screen and (min-width: 768px) {
.media-hide{
display:none;
}
}
@media (max-width: 1200px) and (min-width: 768px) {
.media-hide-profile{
display:none !important;
}
}
@media only screen and (max-width: 768px) {
.media-hide-header{
display:none!important;
}
}
@media only screen and (max-width: 1200px) {
.media-hide-profilename{
display:none!important;
}
.media-width-10{
width:10% !important;
}
}
/*NEW*/
.search-page-content{
top: 70px;
}
.search-header{
width: 100%;
float: left;
background-color: #13a9cc;
}
.search-screen-header{
width: 100%;
float: left;
background-color: #13a9cc;
position: fixed;
top: 75px;
z-index: 99;
-webkit-transition: top 0.3s;
-moz-transition: top 0.3s;
-ms-transition: top 0.3s;
-o-transition: top 0.3s;
transition: top 0.3s;
}
.top-55
{
top: 55px !important;
}
.search-header-inner{
padding: 17px 16px;
}
body.body-blue .categoryButton.selected
{
background-color: #003083 !important;
color: #fff !important;
font-size: 16px !important;
line-height: 30px !important;
height: 30px !important;
width: 28px !important;
min-width: 28px !important;
border-radius: 2px !important;
text-align: center !important;
cursor: pointer !important;
}
body.body-blue .div-search .search-block{
max-width: inherit;
}
.search-user-box label{
color: #aaa;
}
.search-user-box span a{
color: #13a9cc ;
}
.search-user-box:hover{
background-color:#13a9cc;
}
.search-user-box-new:hover{
border: 1px solid #13a9cc;
padding: 5px !important;
}
.avatar-search{
width: 65px;
height: 65px;
background-color: #f2f4f8;
border-color: #dfe4ed;
display: inline-block;
overflow: hidden;
}
.avatar-search img {
width: 100%;
max-width: 100%;
height: auto;
}
.search-user-box:hover label{
color: #FFF;
}
.search-user-box:hover span a,.search-user-box:hover span{
color: #FFF;
}
.close-modal-blue{
border-radius: 20px;
background-color: #13a9cc;
color: #fff;
text-shadow: none;
font-weight: 100;
border: 2px solid #fff;
}
body.body-blue .modal-header-color{
background-color: #13a9cc !important;
}
.btn-modal-blue{
background-color: #003083!important;
border-color: #003083!important;
color: #fff!important;
}
.btn-modal-lightblue{
background-color: #13a9cc!important;
border-color: #13a9cc!important;
color: #fff!important;
}
.no-wrap{
white-space: nowrap;
}
.blue-nav-tabs>li .active{
background-color: #13a9cc!important;
color: #fff !important;
}
.blue-nav-content>.active{
border: 1px solid #13a9cc!important;
}
.blue-grid-head{
background-color: #13a9cc;
color: #fff !important;
text-align:center;
}
.blue-grid-head a{
color: #fff !important;
}
.blue-breadcrumb{
/*background-color: #2559b2;*/
background-color: #13a9cc;
height: 45px;
color: #fff;
}
.breadcrumb-back-btn{
padding: 10px;
width: 45px;
float: left;
background-color: #f7971e;
color: #fff;
height: 45px;
text-align: center;
}
.breadcrumb-back-btn i{
font-size: 27px;
vertical-align: middle;
}
.breadcrumb-description{
padding: 10px;
height: 45px;
}
.breadcrumb-description span{
vertical-align: middle;
padding-left: 20px;
}
.blue-main-nav-admin{
background: #eee;
padding-top: 7px;
padding-left: 15px;
}
.blue-main-nav{
background: #13a9cc;
padding-top: 7px;
padding-left: 15px;
}
.bg-sky-blue{
background-color: #eee;
/*background-color: #e6f5f8;*/
}
.margin-right-3{
margin-right:3px;
}
.tooltip .tooltip-inner {
background: #f3f4f6;
padding: 4px 15px;
color: #13a9cc;
font-size: 14px;
border-color: #13a9cc;
border-radius: 1px solid #ddd;
border: 1px solid;
}
body.body-blue.tooltip.top .tooltip-arrow, .tooltip.bs-tether-element-attached-top .tooltip-arrow{
border-bottom-color: #13a9cc;
}
/*
.dropdown.dropdown-avatar .dropdown-toggle:after{
color: #000;
}*/
.profile-photo-icon{
padding: 15px;
border-radius: 33px;
background-color: #003083;
color: white;
margin-top: 30px;
}
.profile-pic-background
{
background: #13a9cc;
float: left;
width: 100%;
min-width: 300px;
}
.profile-avatar{
width: 94px;
height: 94px;
background-color: #f2f4f8;
border-color: #dfe4ed;
display: inline-block;
overflow: hidden;
-webkit-border-radius: 500px;
border-radius: 500px;
}
.profile-avatar img{
width: 100%;
max-width: 100%;
height: auto;
}
.border-bottom-1{
border-top: 1px solid #ddd;
}
.footer-background{
background: rgba(221, 221, 221, 0.41);
}
.categoryButton:hover{
background-color: #003083 !important;
}
.nav-pills.nav-wizard > li {
position: relative;
overflow: visible;
border-right: 10px solid transparent;
border-left: 15px solid transparent;
}
.nav-pills.nav-wizard > li + li {
margin-left: 0;
}
.nav-pills.nav-wizard > li:first-child {
border-left: 0;
}
.nav-pills.nav-wizard > li:first-child a {
border-radius: 5px 0 0 5px;
}
.nav-pills.nav-wizard > li:last-child {
border-right: 0;
}
.nav-pills.nav-wizard > li:last-child a {
border-radius: 0 5px 5px 0;
}
.nav-pills.nav-wizard > li a {
border-radius: 0;
background-color: skyblue;
}
.nav-pills.nav-wizard > li:not(:last-child) a:after {
position: absolute;
content: "";
top: 0px;
right: -20px;
width: 0px;
height: 0px;
border-style: solid;
border-width: 20px 0 20px 20px;
border-color: transparent transparent transparent skyblue;
}
.nav-pills.nav-wizard > li:not(:first-child) a:before {
position: absolute;
content: "";
top: 0px;
left: -20px;
width: 0px;
height: 41px;
border-style: solid;
border-width: 20px 0 20px 20px;
border-color: skyblue skyblue skyblue transparent;
}
.nav-pills.nav-wizard > li:hover:not(:last-child) a:after {
border-color: transparent transparent transparent skyblue ;
}
.nav-pills.nav-wizard > li:hover:not(:first-child) a:before {
border-color: skyblue skyblue skyblue transparent;
}
.nav-pills.nav-wizard > li:hover a {
background-color: skyblue;
color: #fff;
}
.ul-block{
text-align:center;
}
.ul-block ul{
display:inline-block;
}
.inner-block-text{
color:#3c3c3c;
}
.main-pills > li:after {
content: " ";
position: absolute;
opacity: 0;
margin: 0;
margin-left: -10px;
bottom: -11px;
border: 10px solid transparent;
border-bottom-color: #fff;
transition: left 1s;
}
.main-pills > li.active:after {
left: 50%;
opacity: 1;
}
.main-pills > li[rel-index="-1"]:after {
left: calc(50% + 100%);
}
.main-pills > li[rel-index="-2"]:after {
left: calc(50% + 200%);
}
.main-pills > li[rel-index="-3"]:after {
left: calc(50% + 300%);
}
.main-pills > li[rel-index="1"]:after {
left: calc(50% - 100% );
}
.main-pills > li[rel-index="2"]:after {
left: calc(50% - 200%);
}
.main-pills > li[rel-index="3"]:after {
left: calc(50% - 300%);
}
/*
.inner-block-ul>li.active{
background-color: #f7971e !important;
}*/
.nav-pills.nav-wizard > li.active a {
background-color: #f7971e;
}
.nav-pills.nav-wizard > li.active:not(:last-child) a:after {
border-color: transparent transparent transparent #f7971e;
}
.nav-pills.nav-wizard > li.active:not(:first-child) a:before {
border-color: #f7971e #f7971e #f7971e transparent;
}
.inner-block-digits{
margin-right: 5px;
background: #fff;
width: 20px;
height: 20px;
border-radius: 50%;
text-align: center;
color: #3c3c3c;
}
.nav-pills.nav-wizard > li.active div {
color: #f7971e;
}
.nav-pills.nav-wizard > li.active span {
color: #FFF;
}
.border-top-bottom-ddd{
border-top: 1px solid #ddd;
border-bottom: 1px solid #ddd;
}
.edit-icon {
text-decoration: none !important;
font-size: 18px;
margin: 0 3px;
}
.back-report-header{
background: #eceff4;
color: black !important;
}
.back-report-header a{
color: black !important;
}
body.body-blue.dx-header-row{
background-color: #13a9cc;
color: #fff !important;
}
.search-user-box{
position: relative;
}
.search-user-box-dashboard{
position: absolute;
top: 2px;
right: 10px;
}
.search-user-box-dashboard a{
cursor: pointer;
color: #13a9cc;
font-size: 17px;
}
.search-user-box:hover .search-user-box-dashboard a{
color: #FFF;
}
.fieldset-box{
border: 1px solid #dfe4ed;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em;
}
.fieldset-box legend{
font-size: 14px;
width: inherit;
}
.grid-head-text{
color: #13a9cc;font-size: 16px;
}
.dropbtn {
cursor: pointer;
}
.dropdown-search {
float: right;
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
overflow: auto;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
right: 0;
z-index: 1;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.show {display:block;}
.alert-div div.alert {
padding: 15px;
margin-bottom: 20px;
border: 1px solid transparent;
border-radius: 4px;
}
.alert-div div.alert-success {
color: #3c763d;
background-color: #dff0d8 !important;
border-color: #d6e9c6;
}
.alert-div div.alert-danger{
color: #a94442;
background-color: #f2dede;
border-color: #ebccd1;
}
.alert-div button.close {
float: right;
font-size: 21px;
font-weight: 700;
line-height: 1;
color: #000;
text-shadow: 0 1px 0 #fff;
filter: alpha(opacity=20);
opacity: .2;
text-indent: inherit;
}
.alert-div button.close {
-webkit-appearance: none;
padding: 0;
cursor: pointer;
background: 0 0;
border: 0;
}
.load-gif {
position: fixed;
width: 100%;
height: 100%;
background: #fff;
top: 0;
left: 0;
opacity: 0.8;
z-index: 99999;
}
/* Styles for verification */
#pswd_info {
position: absolute;
padding: 15px;
background: #fefefe;
font-size: .875em;
border-radius: 5px;
box-shadow: 0 1px 3px #ccc;
border: 1px solid #ddd;
display: none;
z-index: 1051;
top: 214px;
/* left: 0px; */
right: 171px;
}
#pswd_info::before {
content: "\25c0";
position:absolute;
top:80px;
left:-16px;
font-size:20px;
line-height:14px;
color:#ddd;
text-shadow:none;
display:block;
}
#pswd_info h5 {
margin:0 0 10px 0;
padding:0;
font-weight:normal;
}
.invalid {
background:url('../images/invalid.png') no-repeat 0 50%;
padding-left:22px;
line-height:24px;
color:#ec3f41;
}
.valid {
background:url('../images/valid.png') no-repeat 0 50%;
padding-left:22px;
line-height:24px;
color:#3a7d34;
}
.search-edit{
float: right;
margin-right: 4px;
}
.width-20px{
width: 20px;
}
.search-screen-pagination ul.pagination{
margin-top:0px;
} | web/css/admin.css | .padding-right-2{
padding-right:2px;
}
.padding-left-2{
padding-left:2px;
}
.width-10{
width:10%;
}
.width-18{
width:18%;
}
.width-24{
width:24%;
}
.width-22{
width:22%;
}
.vertical-align-top{
vertical-align:text-top !important;
}
.font-40{
font-size:40px;
}
.red{
color:red;
}
.margin-top-7{
margin-top:7px;
}
.blue-breadcrumb-plans{
background-color:#13a9cc;
/* height: 45px;*/
}
.blue-breadcrumb-plans-down{
background-color:rgba(19, 169, 204, 0.51);
}
.nav-pills .dropdown.open>.back-drop, .nav-tabs .dropdown.open>.back-drop{
background:transparent;
}
.line-height-0{
line-height:0;
}
.vertical-align-bottom{
vertical-align:bottom;
}
.dropdown-icon-li{
padding-left: 0 !important;
padding-right: 0 !important;
display: inline-block !important;
}
.nav-tabs-horizontal .border-bottom{
border-bottom:0px !important;
}
.padding-top-7{
padding-top:7px;
}
.width-27{
width:27%;
}
.margin-top-9{
margin-top:9px;
}
.plan-link.active{
color:white !important;
}
.nav > li.hover > a:hover, .nav > li.hover > a:focus{
background-color: transparent !important;
}
/* new design */
div.required label:after {content: " *"; color: #a94442;font-size: 16px;}
.back-color-profile{
background: rgba(47, 85, 152, 0.1) !important;
}
.dropdown.dropdown-avatar .profile-icon:after{
color: #13a9cc;
}
.dropdown.dropdown-avatar .page-active:after{
color: #ffffff;
}
.page-active {
background-color: #f7971e;
font-size: 14px;
border-color: #f7971e;
padding: 4px 11px;
outline: none !important;
line-height: 1.7;
border-radius: .2rem;
display: inline-block;
font-weight: 400;
text-align: center;
white-space: nowrap;
vertical-align: middle;
cursor: pointer;
user-select: none;
border: 1px solid transparent;
color:white !important;
}
.color-b{
color:black!important;
}
.add-icon{
/* width: 23px;
border: 1px solid #13a9cc;
border-radius: 50%;
margin-left: 36px;*/
margin-top: 10px;
color:#13a9cc;
}
.button-add{
text-align: right;
margin-left: 6px;
color: #13a9cc;
}
.remove-icon{
/* width: 23px;
border: 1px solid red;
border-radius: 50%;
margin-left: 36px;
margin-top: 10px;*/
}
.button-remove{
/*text-align: right;*/
margin-left:8px;
color: red;
}
.color-red{
color:red;
}
.text-align-right{
text-align:right;
}
.font-weight-900{
font-weight:900 !important;
color: #fff;
background-color: #13a9cc !important;
}
.back-darkgray{
background:darkgray;
}
.back-lightyellow{
background:lightyellow;
}
.display-block{
dispaly:block !important;
}
/*.table-backcolor>tbody>tr:hover, .table-backcolor>tbody>tr:hover>td{
background: #ddd!important;
} */
.table-backcolor>tbody>tr:hover>td.font-weight-900{
background: #13a9cc!important;
}
.table-backcolor, .table-backcolor th,.table-backcolor td {
border-bottom: 1px solid #ddd;
border-top: 1px solid #ddd;
border-collapse: collapse;
border-color:#ddd !important;
}
.header-td{
pointer-events:none;
}
.back-gray{
background-color:gray;
}
.max-width-140{
max-width:140px;
}
.margin-15{
margin:15px !important;
}
.margin-top-10{
margin-top:10px !important;
}
.margin-top-2{
margin-top:2px !important;
}
body.blue .back-widget {
background: rgb(1, 38, 67) !important;
color: white !important;
}
.width-198{
width:198px;
}
body.blue .colorwhite>.dx-datagrid {
color: white !important;
}
.table-line, .table-line th,.table-line td {
border: 1px solid #ddd;
border-collapse: collapse;
border-color:#ddd;
}
.borders-right{
border-left: 1px solid white !important;
border-bottom: 1px solid white !important;
border-top: 1px solid white !important;
border-color: white !important;
border-right: 1px solid #ddd !important;
}
.body-blue .td-back{
background:white !important;
color:black !important;
text-align:center;
}
.body-blue .tr-back-color{
background:#13a9cc !important;
color:white !important;
}
.width-16{
width:16px;
}
.btn-group>.upper-icon:after, .dropdown-toggle>.upper-icon:after, .dropdown>.upper-icon:after{
left: 47px !important;
}
.btn-group>.upper-icon:before, .dropdown-toggle>.upper-icon:before, .dropdown>.upper-icon:before{
left: 47px !important;
}
ul#main_tab li img {
cursor: pointer;
}
.margin-left-0 {
margin-left:0px !important;
}
.bold-font{
font-size:14px;
font-weight:800px;
}
.engineer{
font-size: 27px;
color: #13a9cc;
font-weight: 200;
font-family:arial;
}
.box-body{
border-top: 2px solid #13a9cc;
border-bottom: 1px solid #ddd;
border-right: 1px solid #ddd;
border-left: 1px solid #ddd;
padding-bottom: 10px;
}
.pdf-download{
padding: 11px;
border: 1px solid white;
border-radius: 5px;
}
.download-icon{
border: 1px solid white;
border-radius: 50%;
font-size: 12px;
}
body.body-blue .back-lightblue{
background:#eff4f5;
}
body.body-blue .backcolor.active{
background-color:#eff4f5;
}
body.body-blue .widget-six .widget-header {
padding: 20px 25px;
-webkit-border-radius: 5px 5px 0px 0px;
border-radius: 5px 5px 0px 0px;
border-bottom: 1px solid rgba(248, 247, 247, 0.52);
text-align:center;
padding-left: 10px !important;
}
/*
body.body-blue .actions a.dropdown-toggle {
color: #000 !important;
}*/
body.body-blue .color-white {
color: #ffffff;
}
body.body-blue nav.top-menu
{
background: #fff!important;
border-bottom: 1px solid #13a9cc !important;
}
body.body-blue nav.top-menu{
height:75px;
}
body.body-blue nav.top-menu .menu{
height:75px ;
}
body.body-blue .actions>li{
margin-right: 35px!important;
font-family: arial;
}
.width-120{
width:120% ;
}
.width-12{
width:12% ;
}
body.body-blue nav.top-menu .back-color{
background:#fff ;
border-bottom: 1px solid #13a9cc !important
}
body.body-blue .header-name{
vertical-align: top;
padding: 0px 10px 0px 10px;
display: inline-block;
width: 110px;
font-family: arial;
color: #13a9cc;
}
body.body-blue .dropdown-a{
padding: 10px 15px !important;
font-size: 14px;
font-family: arial;
}
body.body-blue .btn-group>.arrow-icon:before, .dropdown-toggle>.arrow-icon:before, .dropdown>.arrow-icon:before{
content:none;
}
body.body-blue .btn-group>.arrow-icon:after, .dropdown-toggle>.arrow-icon:after, .dropdown>.arrow-icon:after{
content:none;
}
body.body-blue .dropdown-menu .dropdown-item:hover{
/* background:#ffd732 !important;
color:black !important;*/
background:#f7971e !important;
color:#fdfdfd !important;
}
body.body-blue .arrow-icon{
/*background:rgba(47, 85, 152, 0.70) !important;
opacity:0.7 !important;
min-width:203px !important;
margin-top: 13px !important;;*/
background:rgb(66, 203, 226) !important;
min-width:203px !important;
margin-top: 13px !important;;
}
body.body-blue nav.top-menu + .page-content-0{
margin-top: 75px !important;
}
body.body-blue .nav-link.active{
color:black !important;
}
body.body-blue .nav-link:hover{
color:black !important ;
}
body.body-blue .border-radius-1{
border-radius:1px solid
}
body.body-blue .text-align-left{
text-align:left !important;
}
body.body-blue .unique-firms{
text-align:left !important;
font-size:18px;
font-family:arial;
color:#13a9cc;
}
body.body-blue .fontcolor-blue{
color:#13a9cc;
}
.background-blue{
background:#13a9cc;
color:white;
}
body.body-blue #pieChartInfoText{
position: absolute;
text-align: center;
left: 125px !important;
top: 211px !important;
}
body.body-blue .dropdown-months::after{
content:none !important;
}
body.body-blue .margin-left-42{
margin-left:42px;
}
body.body-blue .back-header-color{
background:#f0f4f5 !important;
border: 1px solid #ddd;
}
body.body-blue .color-black {
color:#000;
}
body.body-blue .background-ddd{
background:#ddd;
}
/* endnew design */
#checkbox-inline .dx-datagrid .dx-column-indicators{
display: initial !important;
}
.reports-container{
border: 1px solid #ddd;
margin-bottom: 10px;
}
.box-head-claim{
font-size: 1.1286rem !important;
margin: 5px;
font-weight:700;
}
.left-head{
font-size: 0.9286rem !important;
margin: 5px;
font-weight:700;
}
.padding-comment{
padding: 54px 20px 54px 20px
}
.margin-top-0{
margin-top:0px !important;
}
.padding-15{
padding:15px;
}
.back-lightgrey{
background-color:rgb(237, 237, 237);
}
.padding-6{
padding:6px;
}
.dx-datagrid .dx-row-alt > td{
background-color : #ddd;
}
.cursor-default{
cursor: default;
}
.padding-top-8{
padding-top:8px !important;
}
.cursor-nodrop{
cursor:no-drop !important;
}
.placeholder-italics:-ms-input-placeholder {
font-style:italic;
}
.placeholder-italics::-moz-placeholder {
font-style:italic;
}
.placeholder-italics::-webkit-input-placeholder {
font-style:italic;
}
.border-radius-0{
border-radius: 0;
}
.col-form-label {
padding-top: .64rem;
padding-bottom: .64rem;
}
.chartist-tooltip
{
background: #01a8fe;
}
.chartist-tooltip:before{
border-top-color: #01a8fe;
}
.margin-right-2{
margin-right : 2px;
}
.dx-toolbar-after .dx-toolbar-item:first-child {
padding: inherit;
float: right;
}
.dx-toolbar-after .dx-toolbar-item {
padding: 0 0 0 5px;
float: left;
}
.donut.donut-success-faded
{
border-color: #7dd3ae;
}
.donut.donut-warning-faded{
border-color:rgb(198, 141, 41);
}
.donut.donut-purple
{
border-color: #926dde;
}
.width-20{
width:20px;
}
.donut.donut-red
{
border-color: #d15725;
}
.donut.donut-orange
{
border-color: orange;
}
.donut.donut-purple-faded
{
border-color: #9daaf3;
}
.information-icon{
font-size: 15px;
padding-left: 5px;
}
.cursor-pointer{
cursor:pointer;
}
.pointer-disable{
pointer-events: none;
}
.pointer-events{
pointer-events: none;
opacity: 0.5;
}
.padding-3{
padding:3px !important;
}
.font-17{
font-size:17px;
}
.font-21{
font-size:21px;
}
/*
.tr-back:hover{
background:#40a9fc !important;
}
.tr-back .td-back:hover{
background:transparent;
}*/
.border-1{
border:1px solid black;
}
.tbody-class{
background: #b5d7ec !important;
text-align: center !important;
}
.tbody-class2{
background: #c1dfb5 !important;
text-align: center !important;
}
.tbody-class3{
background: #ffc9ae !important;
text-align: center !important;
}
.tbody-class4{
background: #ffe49e !important;
text-align: center !important;
}
.tbody-class5{
background: rgba(0, 143, 231, 0.39) !important;
text-align: center !important;
}
.display-inblock{
display:inline-block;
}
.float-initial{
float:initial;
}
.back-white{
background:white;
}
.border-radius-8{
border-radius:8px;
}
.close-modal{
outline: none !important;
width: 30px;
height: 30px;
display: inline-block;
line-height: 30px;
text-align: center;
float: right;
font-size: 1.5rem;
font-weight: 700;
line-height: 1;
color: #000;
text-shadow: 0 1px 0 #fff;
opacity: .2;
}
.font-2rem{
font-size: 1.2rem !important;
}
.header-reimbursment{
line-height: 31px !important;
padding-bottom: 24px !important;
}
.secondary-nav {
margin: 0;
padding: 0;
list-style-type: none;
}
.secondary-nav li {
padding: 10px;
list-style: none;
position: relative;
cursor: pointer;
}
.secondary-nav a {
text-decoration: none;
font-size: 14px;
display: inline-block;
box-sizing: border-box;
width: 100%;
}
.secondary-nav li.active-page {
border-left: 3px solid #90d8f6;
background: #eaeaea;
padding: 10px 10px 10px 7px;
}
.box-padding.plan-years{
padding: 10px !important;
}
.aplhabets-div ul li {
float: left;
}
.aplhabets-div ul{
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
}
.gray {
background-color: gray;
}
.masterhead .actions{ float: right !important;
list-style: none !important;
margin: 0 !important;
}
.actions>li{
display: inline-block;
line-height: 36px;
margin-right: 25px;
vertical-align: middle;
font-size: 14px;
}
.color-black{
color:black;
}
.box-shadow{
box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.2) !important
}
.padding-7{
padding:7px;
}
.padding-top-6{
padding-top:6px;
}
.categoryButton {
font-size: 16px !important;
line-height: 30px !important;
height: 30px !important;
width: 28px !important;
min-width: 28px !important;
border-radius: 2px !important;
text-align: center !important;
cursor: pointer !important;
margin: 1px;
border:none;
background-color: #13a9cc!important;
}
.categoryButton.selected {
background-color: #90d8f6 !important;
color: #fff !important;
font-size: 16px !important;
line-height: 30px !important;
height: 30px !important;
width: 28px !important;
min-width: 28px !important;
border-radius: 2px !important;
text-align: center !important;
cursor: pointer !important;
}
.div-search .search-block
{
-webkit-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
max-width: 300px;
}
.data-count{
line-height: 16px !important;
border: 1px solid #5bc0de !important;
/* background-color: #fff2e4 !important;
-webkit-align-items: flex-start !important;*/
padding: 8px 20px 8px 8px !important;
position: relative !important;
display: flex !important;
font-size: 14px !important;
}
.data-count i{
color: #f9a72a !important;
padding-right: 5px;
}
/*
.form-control{
border-color : #bdbdbd;
}*/
.box-border{
border: 1px solid #bdbdbd;
}
.box-head{
font-size: 1.4286rem !important;
margin: 5px 0 !important;
}
.box-row{
float:left;
margin-top:10px;
margin-bottom: 10px;
}
.box-padding{
padding: 20px 20px 0px 20px !important;
}
.action-coloumn
{
margin-bottom: 15px !important;
display: block !important;
}
.action-coloumn a{
text-decoration: underline !important;
}
.section-padding{
padding: 16px;
}
.padding-10{
padding:10px !important;
}
.dropify-company-box div.dropify-wrapper
{
height:123px;
}
.pageTitle {
color: #666 !important;
font-size: 2.0000rem !important;
font-weight: 100 !important;
margin: 10px 0 !important;
/* overflow: hidden !important;*/
text-overflow: ellipsis !important;
}
.user-detail
{
margin-left: 10px;
}
/*
nav.top-menu .header-top{
height: 56px !important;
padding-top: 8px !important;
}
*/
/*
nav.top-nav{
height: 56px !important;
}
nav.top-menu + .page-content-0{
margin-top:56px !important;
}
*/
.header-main span.font-18{
font-size: 1.4000rem !important;
font-weight: 400 !important;
margin: 10px 0 !important;
overflow: hidden !important;
text-overflow: ellipsis !important;
}
#menu {
background: rgb(34, 45, 50);
color: #fff;
position: fixed;
right: 0;
top: 124px;
width: 23%;
z-index: 4;
}
.action_head{
margin-bottom: 15px !important;
display: block !important;
}
.font-14{
font-size:14px;
}
.margin-top-8{
margin-top:8px !important;
}
.hide{
display:none !important;
}
.padding-bottom-30{
padding-bottom:30px !important;
}
.load-gif {
position: fixed;
width: 100%;
height: 100%;
background: #fff;
top: 0;
left: 0;
opacity: 0.8;
z-index: 99999;
}
.procressing_plz_wait {
color: #000;
width: 50%;
margin: 15% auto;
text-align: center;
font-size: 17px;
top: 50%;
background: #fff;
}
.gif-img-prop{
width: 16px;margin-left: 12px;
}
.color-blue{
color:#27a4b0 !important;
}
.color-999{
color:#999 !important;
}
.padding-bottom-5{
padding-bottom:5px;
}
.padding-18 {
padding: 18px;
}
.margin-top-100{
margin-top:100px;
}
.padding-top-20 {
padding-top: 20px;
}
.padding-top-30 {
padding-top: 30px;
}
.padding-bottom-20 {
padding-bottom: 20px;
}
.padding-bottom-10 {
padding-bottom: 10px;
}
.margin-top-5 {
margin-top: 5px;
}
.margin-top-10 {
margin-top: 10px;
}
.margin-bottom-10 {
margin-bottom: 10px;
}
.padding-0 {
padding: 0px !important;
} /*
.form-group.form-md-line-input {
margin: 0 0 25px !important;
padding-left:8px;
}*/
.width-15 {
width: 15%;
}
.font-16 {
font-size: 16px;
}
.table-back {
background-color: #ff693e;
}
.text-center {
text-align: center !important;
}
.text-align-center{
text-align:center;
}
.second-header{
font-size: 2.4000rem !important;
font-weight: 400 !important;
margin: 10px 0 !important;
overflow: hidden !important;
text-overflow: ellipsis !important;
}
.back-header-color{
background:rgb(1, 38, 67) !important;
padding-top: 10px;
border-radius: 8px;
}
.color-orange {
background-color: #ff693e !important;
border-color: #ff693e !important;
}
.color-white {
color: white;
}
.box {
position: relative;
border-radius: 3px;
background: #ffffff;
border-top: 3px solid #d2d6de;
margin-bottom: 20px;
width: 100%;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.header {
font-size: 20px;
padding-bottom: 20px;
padding-top: 20px;
background: #ff693e !important;
color: #fff;
border-radius: 6px !important;
}
.header-main {
background: white;
margin-bottom: 10px;
padding: 5px;
border-bottom: 1px solid #ddd;
}
.font-22 {
font-size: 22px;
}
.table-headers {
padding-right: 0px !important;
background: #eceff4 !important;
color: #000 !important;
}
.table-rows {
padding: 5px !important;
}
.dx-datagrid-headers {
padding-right: 0px;
background: #eceff4 !important;
color: #000 !important;
}
.dx-datagrid-rowsview .dx-datagrid-nowrap {
padding: 5px;
}
.demo-container {
padding: 6px;
}
#gridContainer {
height: auto;
}
.margin-bottom-17 {
margin-bottom: 17px;
}
#eventContainer {
border: 1px solid lightgray;
margin-top: 20px;
min-height: 50px;
padding: 5px;
}
#eventContainer .eventLog {
margin-top: 5px;
}
#clearLog {
float: right;
}
.imp-red {
/*color: red;*/
}
#gridContainer {
height: auto;
}
.header-clients {
margin-bottom: 10px;
font-size: 16px;
}
.padding-left-0 {
padding-left: 0px !important;
}
.padding-right-0 {
padding-right: 0px !important;
}
.panel-heading {
padding: 15px !important;
}
.margin-right-15{
margin-right: 15px;
}
.padding-top-38 {
padding-top: 38px !important;
}
.padding-bottom-38 {
padding-bottom: 38px !important;
}
.font-15 {
font-size: 15px;
}
.padding-23 {
padding: 23px;
}
/*.widget-seven .widget-body .widget-body-inner{
z-index :0 !important
}*/
.line-height-30 {
line-height: 30px;
}
.position-rel {
position: relative !important;
margin-top: 11px !important;
font-size: 19px !important;
}
/* .widget-seven .widget-body{
padding: 20px 25px 35px;
}
*/
.color-grey {
background-color: #666 !important;
border-color: #666 !important;
}
.color-grey-h5 {
color: #666 !important;
font-size: 1.1rem !important;
}
.padding-left-8 {
padding-left: 8px;
}
.step-digit-span {
font-size: 11px !important;
width: auto !important;
height: auto;
line-height: normal !important;
}
.font-30 {
font-size: 30px !important;
}
.font-15 {
font-size: 15px;
}
.width-85 {
width: 85%;
}
.icon-plus {
margin-left: 10px;
font-size: 23px;
line-height: 32px !important;
}
.font-26 {
font-size: 26px !important;
}
.font-13 {
font-size: 13px;
}
.search-icon {
background-color: #ffffff !important;
}
.search-icon-back {
background-color: rgba(36, 34, 47, 0.7) !important;
}
.fa-color {
color: #514d6a;
}
.color-white {
color: white;
}
.padding-11 {
padding: 11px;
}
.padding-top-14 {
padding-top: 14px;
}
.border-color-none {
border-color: lightgrey !important;
}
.padding-top-9 {
padding-top: 9px;
}
.padding-bottom-8 {
padding-bottom: 8px;
}
.width-full {
width: 100%;
}
.width-50 {
width: 50%;
}
.width-100 {
width: 100%;
}
.line-height-35 {
line-height: 35px;
}
.margin-0 {
margin: 0!important;
}
.dashboard-add-button {
margin: 0;
padding: 5px 7px 5px 7px !important;
}
.color-green {
color: #46be8a;
}
.color-secondary{
color:#6a7a84;
}
.btn-secondary-outline{
border-color:#6a7a84;
}
.dashboard-add-white-button:hover{
background-color: #eee !important;
}
.padding-right-20{
padding-right:20px;
}
.line-height-13{
line-height:13px !important;
}
.top-16{
top:16px !important;
}
.button{
background-color: #46be8a !important;
border-color: #46be8a !important;
color: #ffffff !important;
}
.borders{
border-left:0px !important;
border-top:0px !important;
border-right:0px !important;
border-bottom:1px solid #999 !important;
}
.form-group.form-md-line-input.margin-bottom-5 label{
color:#999 !important;
}
.form-group.form-md-line-input .borders:focus:not([readonly])~label:after{
background:#999 !important;
}
.margin-bottom-0{
margin-bottom:0px !important;
}
.margin-bottom-5{
margin-bottom:5px !important;
}
.line-height-4{
line-height:4;
}
.font-18{
font-size:18px;
}
.cui-wizard .steps ul li.disabled a{
padding:0px
}
.wizard > .steps .current a{
padding:0px;
}
.wizard > .steps .done a{
padding:0px;
}
.cui-ecommerce--cart .actions{
padding-top:0px;
border-top:0px !important;
}
.wizard > .steps .current a{
color:red;
}
.blue-text{
color: #90d8f6 !important;
}
.btn-blue{
border-color: #90d8f6 !important;
background: #90d8f6 !important;
}
.yellow-text{
color: #dacb94 !important;
}
.btn-yellow{
border-color: #dacb94 !important;
background: #dacb94 !important;
}
/* for button in flow of form */
.cui-wizard .actions li a{
background:#2184be;
border-color:#2184be ;
}
.margin-top-15{
margin-top:15px;
}
.help-block-error{
color:red;
}
.select-border-color{
border-color:#999 !important;
}
.margin-top-16{
margin-top: 16px;
}
.btn-group>.dropdown-menu:before, .dropdown-toggle>.dropdown-menu:before, .dropdown>.arrow:before{
left:auto !important;
right:9px !important;
}
.btn-group>.dropdown-menu:before, .dropdown-toggle>.dropdown-menu:before, .dropdown>.arrow:after{
left:auto !important;
right:9px !important;
}
.line-height-5{
line-height:0.5 !important;
}
.font-20{
font-size:20px !important;
}
.width-150{
width:150% ;
}
/*
.locations>span.select2-container{
z-index:500 !important;
}*/
.select2-container{
z-index:1058 !important;
}
div.help-block{
font-size: 12px !important;
}
body.blue{
//background: url(http://172.16.31.10/themes/preview/smartadmin/1.8.x/ajax/img/glass.jpg) no-repeat center top fixed;
background-size: cover !important;
color: #000!important;
background-color: white!important;
}
body.blue nav.top-menu
{
background: #012643!important;
border-bottom: 1px solid rgba(248, 247, 247, 0.52)!important;
}
body.blue .mt-checkbox.mt-checkbox-outline>span{
border: 1px solid black !important;
}
body.blue .header-main {
background: rgba(255, 255, 255, 0.02)!important;
margin-bottom: 10px!important;
padding: 5px!important;
border-bottom: 1px solid #ddd!important;
}
/*body.blue section.panel{
background-color: rgba(1, 38, 67, 0)!important;
}
body.blue .dropify-wrapper{
background-color: rgba(1, 38, 67, 0)!important;
}
body.blue .select2 .select2-selection--multiple{
background-color: rgba(1, 38, 67, 0)!important;
}
*/
body.body-blue .widget-six .widget-header {
padding: 20px 25px;
-webkit-border-radius: 5px 5px 0px 0px;
border-radius: 5px 5px 0px 0px;
border-bottom: 1px solid rgba(248, 247, 247, 0.52);
text-align:center;
padding-left: 10px !important;
}
body.blue .widget {
background: rgba(255, 255, 255, 0.02);
-webkit-border-radius: 5px;
border-radius: 5px;
margin-bottom: 16px;
position: relative;
border: 1px solid rgba(248, 247, 247, 0.52);
}
body.blue .color-black {
color: #ffffff !important;
}
body.blue .dx-datagrid {
color: #000;
background-color: rgba(255, 255, 255, 0);
}
body.blue .dx-toolbar {
background-color: rgba(255, 255, 255, 0);
padding: 0;
overflow: visible;
}
body.blue .dx-widget {
color: white;
font-weight: normal;
font-size: 14px;
font-family: 'Helvetica Neue','Segoe UI',Helvetica,Verdana,sans-serif;
line-height: normal;
}
body.blue .dx-datagrid-headers {
padding-right: 0px;
background: rgb(1, 38, 67)!important;
color: white !important;
}
body.blue .dx-editor-cell .dx-texteditor .dx-texteditor-input{
background:rgb(5, 42, 70) !important;
color:white;
}
/*body.blue option{
background-color: rgb(5, 42, 70);
}*/
body.blue a{
color: #012643;
}
body.blue .dx-column-lines a{
color: black;
}
body.blue .ct-label {
fill: white;
color: white;
font-size: .75rem;
line-height: 1;
}/*
body.blue .form-control{
background-color:rgba(255, 255, 255, 0);
color: #ffffff;
}*/
/*
body.blue select.form-control {
background: rgba(255, 255, 255, 0.17) center right no-repeat url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAFCAYAAABB9hwOAAAAGXRFW…gv37w+qKmqOp+BQsAEpX8wMTFm/fnz5/P/f//DGagAAAIMAKIuMR+q/rU9AAAAAElFTkSuQmCC);
}
*/
body.blue .modal-content{
color:black;
}
body.blue .modal-content select.form-control{
color:black;
}
body.blue .modal-content option{
background-color: rgba(255, 255, 255, 0);
}
body.blue .borders{
color:white !important;
}
body.blue .popover{
color:black;
}
/*body.blue .select2-dropdown{
background-color: rgb(1, 38, 67)!important;
}*/
/*body.blue .select2-container .select2-results__option[aria-selected=true]{
background-color:rgba(1, 38, 67, 0) !important;
}
*/
body.blue .form-group.form-md-line-input.margin-bottom-5 label{
color:white !important;
}
body.blue hr {
margin-top: 1rem;
margin-bottom: 1rem;
border: 0;
border-top: 1px solid rgba(197, 197, 197, 0.28);
}
body.blue .secondary-nav li.active-page {
border-left: 3px solid #90d8f6;
background: rgba(234, 234, 234, 0.22);
padding: 10px 10px 10px 7px;
}
.contact-us-logo{
max-width: 32px !important;
background: #fff;
border-radius: 50%;
}
.help-button{
position: fixed;
bottom: 10px;
right: 15px;
border-radius: 31px;
background: #fdbb5d;
color: white;
font-size: 1.25rem;
padding: 10px 25px 10px 25px;
border-radius: 999rem;
cursor:pointer;
z-index: 999999;
}
.help-box{
border-radius: 9px;
border: 1px solid #c1c1c1;
padding: 0px;
position: fixed;
bottom: 10px;
right: 15px;
z-index: 3000;
}
.help-box-header{
background-color: #fdbb5d;
color: #794803;
border-radius: 9px 9px 0px 0px;
padding: 5px;
}
.help-box-minus{
float: right;
margin-right: 10px;
color: #a24803!important;
}
.help-box-body{
background-color: white;
}
nav.left-menu + nav.top-menu{
left:0px !important;
}
nav.left-menu + * + .page-content{
margin-left:0px !important;
}
.nav-tabs-horizontal .nav-tabs .nav-item .nav-link.active:hover{
border-bottom-color: #2c3f4c !important;
}
.nav-tabs-horizontal .nav-tabs .nav-item .nav-link.active{
background: #2c3f4c;
color: white;
}
/*
body.blue .widget-six .widget-header {
padding: 20px 25px!important;
-webkit-border-radius: 5px 5px 0px 0px!important;
border-radius: 5px 5px 0px 0px!important;
border-bottom: 1px solid rgba(248, 247, 247, 0.52)!important;
}*/
/*
.cui-wizard > .content{
margin-bottom:0px !important;
}
.cui-wizard--steps--icon{
width: 30px !important;
height: 30px !important;
font-size: 15px !important;
line-height: 27px !important;
}
.cui-wizard .steps ul li:before, .cui-wizard .steps ul li:after{
top:17px !important;
}
.cui-wizard .steps ul li a{
line-height:17px !important;
}*/
@media (min-width: 1200px) and (max-width: 1340px) {
.media-width {
width:50% !important;
}
}
@media only screen and (min-width: 768px) {
.media-hide{
display:none;
}
}
@media (max-width: 1200px) and (min-width: 768px) {
.media-hide-profile{
display:none !important;
}
}
@media only screen and (max-width: 768px) {
.media-hide-header{
display:none!important;
}
}
@media only screen and (max-width: 1200px) {
.media-hide-profilename{
display:none!important;
}
.media-width-10{
width:10% !important;
}
}
/*NEW*/
.search-page-content{
top: 70px;
}
.search-header{
width: 100%;
float: left;
background-color: #13a9cc;
}
.search-screen-header{
width: 100%;
float: left;
background-color: #13a9cc;
position: fixed;
top: 75px;
z-index: 99;
-webkit-transition: top 0.3s;
-moz-transition: top 0.3s;
-ms-transition: top 0.3s;
-o-transition: top 0.3s;
transition: top 0.3s;
}
.top-55
{
top: 55px !important;
}
.search-header-inner{
padding: 17px 16px;
}
body.body-blue .categoryButton.selected
{
background-color: #003083 !important;
color: #fff !important;
font-size: 16px !important;
line-height: 30px !important;
height: 30px !important;
width: 28px !important;
min-width: 28px !important;
border-radius: 2px !important;
text-align: center !important;
cursor: pointer !important;
}
body.body-blue .div-search .search-block{
max-width: inherit;
}
.search-user-box label{
color: #aaa;
}
.search-user-box span a{
color: #13a9cc ;
}
.search-user-box:hover{
background-color:#13a9cc;
}
.search-user-box-new:hover{
border: 1px solid #13a9cc;
padding: 5px !important;
}
.avatar-search{
width: 65px;
height: 65px;
background-color: #f2f4f8;
border-color: #dfe4ed;
display: inline-block;
overflow: hidden;
}
.avatar-search img {
width: 100%;
max-width: 100%;
height: auto;
}
.search-user-box:hover label{
color: #FFF;
}
.search-user-box:hover span a,.search-user-box:hover span{
color: #FFF;
}
.close-modal-blue{
border-radius: 20px;
background-color: #13a9cc;
color: #fff;
text-shadow: none;
font-weight: 100;
border: 2px solid #fff;
}
body.body-blue .modal-header-color{
background-color: #13a9cc !important;
}
.btn-modal-blue{
background-color: #003083!important;
border-color: #003083!important;
color: #fff!important;
}
.btn-modal-lightblue{
background-color: #13a9cc!important;
border-color: #13a9cc!important;
color: #fff!important;
}
.no-wrap{
white-space: nowrap;
}
.blue-nav-tabs>li .active{
background-color: #13a9cc!important;
color: #fff !important;
}
.blue-nav-content>.active{
border: 1px solid #13a9cc!important;
}
.blue-grid-head{
background-color: #13a9cc;
color: #fff !important;
text-align:center;
}
.blue-grid-head a{
color: #fff !important;
}
.blue-breadcrumb{
/*background-color: #2559b2;*/
background-color: #13a9cc;
height: 45px;
color: #fff;
}
.breadcrumb-back-btn{
padding: 10px;
width: 45px;
float: left;
background-color: #f7971e;
color: #fff;
height: 45px;
text-align: center;
}
.breadcrumb-back-btn i{
font-size: 27px;
vertical-align: middle;
}
.breadcrumb-description{
padding: 10px;
height: 45px;
}
.breadcrumb-description span{
vertical-align: middle;
padding-left: 20px;
}
.blue-main-nav-admin{
background: #eee;
padding-top: 7px;
padding-left: 15px;
}
.blue-main-nav{
background: #13a9cc;
padding-top: 7px;
padding-left: 15px;
}
.bg-sky-blue{
background-color: #eee;
/*background-color: #e6f5f8;*/
}
.margin-right-3{
margin-right:3px;
}
.tooltip .tooltip-inner {
background: #f3f4f6;
padding: 4px 15px;
color: #13a9cc;
font-size: 14px;
border-color: #13a9cc;
border-radius: 1px solid #ddd;
border: 1px solid;
}
body.body-blue.tooltip.top .tooltip-arrow, .tooltip.bs-tether-element-attached-top .tooltip-arrow{
border-bottom-color: #13a9cc;
}
/*
.dropdown.dropdown-avatar .dropdown-toggle:after{
color: #000;
}*/
.profile-photo-icon{
padding: 15px;
border-radius: 33px;
background-color: #003083;
color: white;
margin-top: 30px;
}
.profile-pic-background
{
background: #13a9cc;
float: left;
width: 100%;
min-width: 300px;
}
.profile-avatar{
width: 94px;
height: 94px;
background-color: #f2f4f8;
border-color: #dfe4ed;
display: inline-block;
overflow: hidden;
-webkit-border-radius: 500px;
border-radius: 500px;
}
.profile-avatar img{
width: 100%;
max-width: 100%;
height: auto;
}
.border-bottom-1{
border-top: 1px solid #ddd;
}
.footer-background{
background: rgba(221, 221, 221, 0.41);
}
.categoryButton:hover{
background-color: #003083 !important;
}
.nav-pills.nav-wizard > li {
position: relative;
overflow: visible;
border-right: 10px solid transparent;
border-left: 15px solid transparent;
}
.nav-pills.nav-wizard > li + li {
margin-left: 0;
}
.nav-pills.nav-wizard > li:first-child {
border-left: 0;
}
.nav-pills.nav-wizard > li:first-child a {
border-radius: 5px 0 0 5px;
}
.nav-pills.nav-wizard > li:last-child {
border-right: 0;
}
.nav-pills.nav-wizard > li:last-child a {
border-radius: 0 5px 5px 0;
}
.nav-pills.nav-wizard > li a {
border-radius: 0;
background-color: skyblue;
}
.nav-pills.nav-wizard > li:not(:last-child) a:after {
position: absolute;
content: "";
top: 0px;
right: -20px;
width: 0px;
height: 0px;
border-style: solid;
border-width: 20px 0 20px 20px;
border-color: transparent transparent transparent skyblue;
}
.nav-pills.nav-wizard > li:not(:first-child) a:before {
position: absolute;
content: "";
top: 0px;
left: -20px;
width: 0px;
height: 41px;
border-style: solid;
border-width: 20px 0 20px 20px;
border-color: skyblue skyblue skyblue transparent;
}
.nav-pills.nav-wizard > li:hover:not(:last-child) a:after {
border-color: transparent transparent transparent skyblue ;
}
.nav-pills.nav-wizard > li:hover:not(:first-child) a:before {
border-color: skyblue skyblue skyblue transparent;
}
.nav-pills.nav-wizard > li:hover a {
background-color: skyblue;
color: #fff;
}
.ul-block{
text-align:center;
}
.ul-block ul{
display:inline-block;
}
.inner-block-text{
color:#3c3c3c;
}
.main-pills > li:after {
content: " ";
position: absolute;
opacity: 0;
margin: 0;
margin-left: -10px;
bottom: -11px;
border: 10px solid transparent;
border-bottom-color: #fff;
transition: left 1s;
}
.main-pills > li.active:after {
left: 50%;
opacity: 1;
}
.main-pills > li[rel-index="-1"]:after {
left: calc(50% + 100%);
}
.main-pills > li[rel-index="-2"]:after {
left: calc(50% + 200%);
}
.main-pills > li[rel-index="-3"]:after {
left: calc(50% + 300%);
}
.main-pills > li[rel-index="1"]:after {
left: calc(50% - 100% );
}
.main-pills > li[rel-index="2"]:after {
left: calc(50% - 200%);
}
.main-pills > li[rel-index="3"]:after {
left: calc(50% - 300%);
}
/*
.inner-block-ul>li.active{
background-color: #f7971e !important;
}*/
.nav-pills.nav-wizard > li.active a {
background-color: #f7971e;
}
.nav-pills.nav-wizard > li.active:not(:last-child) a:after {
border-color: transparent transparent transparent #f7971e;
}
.nav-pills.nav-wizard > li.active:not(:first-child) a:before {
border-color: #f7971e #f7971e #f7971e transparent;
}
.inner-block-digits{
margin-right: 5px;
background: #fff;
width: 20px;
height: 20px;
border-radius: 50%;
text-align: center;
color: #3c3c3c;
}
.nav-pills.nav-wizard > li.active div {
color: #f7971e;
}
.nav-pills.nav-wizard > li.active span {
color: #FFF;
}
.border-top-bottom-ddd{
border-top: 1px solid #ddd;
border-bottom: 1px solid #ddd;
}
.edit-icon {
text-decoration: none !important;
font-size: 18px;
margin: 0 3px;
}
.back-report-header{
background: #eceff4;
color: black !important;
}
.back-report-header a{
color: black !important;
}
body.body-blue.dx-header-row{
background-color: #13a9cc;
color: #fff !important;
}
.search-user-box{
position: relative;
}
.search-user-box-dashboard{
position: absolute;
top: 2px;
right: 10px;
}
.search-user-box-dashboard a{
cursor: pointer;
color: #13a9cc;
font-size: 17px;
}
.search-user-box:hover .search-user-box-dashboard a{
color: #FFF;
}
.fieldset-box{
border: 1px solid #dfe4ed;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em;
}
.fieldset-box legend{
font-size: 14px;
width: inherit;
}
.grid-head-text{
color: #13a9cc;font-size: 16px;
}
.dropbtn {
cursor: pointer;
}
.dropdown-search {
float: right;
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
overflow: auto;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
right: 0;
z-index: 1;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.show {display:block;}
.alert-div div.alert {
padding: 15px;
margin-bottom: 20px;
border: 1px solid transparent;
border-radius: 4px;
}
.alert-div div.alert-success {
color: #3c763d;
background-color: #dff0d8 !important;
border-color: #d6e9c6;
}
.alert-div div.alert-danger{
color: #a94442;
background-color: #f2dede;
border-color: #ebccd1;
}
.alert-div button.close {
float: right;
font-size: 21px;
font-weight: 700;
line-height: 1;
color: #000;
text-shadow: 0 1px 0 #fff;
filter: alpha(opacity=20);
opacity: .2;
text-indent: inherit;
}
.alert-div button.close {
-webkit-appearance: none;
padding: 0;
cursor: pointer;
background: 0 0;
border: 0;
}
.load-gif {
position: fixed;
width: 100%;
height: 100%;
background: #fff;
top: 0;
left: 0;
opacity: 0.8;
z-index: 99999;
}
/* Styles for verification */
#pswd_info {
position: absolute;
padding: 15px;
background: #fefefe;
font-size: .875em;
border-radius: 5px;
box-shadow: 0 1px 3px #ccc;
border: 1px solid #ddd;
display: none;
z-index: 1051;
top: 214px;
/* left: 0px; */
right: 171px;
}
#pswd_info::before {
content: "\25c0";
position:absolute;
top:80px;
left:-16px;
font-size:20px;
line-height:14px;
color:#ddd;
text-shadow:none;
display:block;
}
#pswd_info h5 {
margin:0 0 10px 0;
padding:0;
font-weight:normal;
}
.invalid {
background:url('../images/invalid.png') no-repeat 0 50%;
padding-left:22px;
line-height:24px;
color:#ec3f41;
}
.valid {
background:url('../images/valid.png') no-repeat 0 50%;
padding-left:22px;
line-height:24px;
color:#3a7d34;
}
.search-edit{
float: right;
margin-right: 4px;
}
.width-20px{
width: 20px;
}
.search-screen-pagination ul.pagination{
margin-top:0px;
} | 0.300746 | 0.105856 |
html {
--background: #eef4f7;
--text-color-normal: #0a244d;
}
html { background: var(--background); color: var(--text-color-normal); margin: 0; padding: 0; box-sizing: border-box; width: 100%; height: 100%; overflow: hidden; }
body { font: 13px Helvetica, Arial; width: 100%; height: 100%; margin: 0; padding: 0; overflow: hidden; }
div { background: #000; padding: 3px; position: fixed; bottom: 0; width: 100%; height: 30px; display: flex; }
div input { border: 0; padding: 10px; width: 80%; margin-right: .5%; }
div button { width: 19.50%; background: rgb(130, 224, 255); border: none; margin-right: 0.7%; }
#messages-container { height: calc(100% - 36px); width: 80%; overflow: hidden; position: absolute;}
#messages { list-style-type: none; margin: 0; padding: 0; height: 100%; }
#messages li { padding: 5px 10px; min-height: 16px; }
#messages li:nth-child(odd) { background: #eee; }
#users-container { height: calc(100% - 36px); width: 20%; overflow: hidden; border-left: 1px solid rgba(0,0,0,0.5); right: 0px; position: absolute; }
#users-container h3 { display: flex; justify-content: center; align-items: center; font-size: 19px; }
#users-container hr { margin: 0; }
#users { list-style-type: none; margin: 0; padding: 0; }
#users li { padding: 5px 10px; min-height: 18px; font-weight: bold; font-size: 15px; }
#users li:nth-child(odd) { background: #eee; }
#connection { height: 12px; width: 12px; border-radius: 50%; background: red; display: inline-block; margin-right: 10px; animation: pulse 2s infinite; }
#connection.online { background: green; }
/* PULSE ANIMATION */
@-webkit-keyframes pulse {
0% {
-webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
}
70% {
-webkit-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
}
100% {
-webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
}
}
@keyframes pulse {
0% {
-moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
}
70% {
-moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
box-shadow: 0 0 0 10px rgba(204,169,44, 0);
}
100% {
-moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
box-shadow: 0 0 0 0 rgba(204,169,44, 0);
}
} | public/css/index.css | html {
--background: #eef4f7;
--text-color-normal: #0a244d;
}
html { background: var(--background); color: var(--text-color-normal); margin: 0; padding: 0; box-sizing: border-box; width: 100%; height: 100%; overflow: hidden; }
body { font: 13px Helvetica, Arial; width: 100%; height: 100%; margin: 0; padding: 0; overflow: hidden; }
div { background: #000; padding: 3px; position: fixed; bottom: 0; width: 100%; height: 30px; display: flex; }
div input { border: 0; padding: 10px; width: 80%; margin-right: .5%; }
div button { width: 19.50%; background: rgb(130, 224, 255); border: none; margin-right: 0.7%; }
#messages-container { height: calc(100% - 36px); width: 80%; overflow: hidden; position: absolute;}
#messages { list-style-type: none; margin: 0; padding: 0; height: 100%; }
#messages li { padding: 5px 10px; min-height: 16px; }
#messages li:nth-child(odd) { background: #eee; }
#users-container { height: calc(100% - 36px); width: 20%; overflow: hidden; border-left: 1px solid rgba(0,0,0,0.5); right: 0px; position: absolute; }
#users-container h3 { display: flex; justify-content: center; align-items: center; font-size: 19px; }
#users-container hr { margin: 0; }
#users { list-style-type: none; margin: 0; padding: 0; }
#users li { padding: 5px 10px; min-height: 18px; font-weight: bold; font-size: 15px; }
#users li:nth-child(odd) { background: #eee; }
#connection { height: 12px; width: 12px; border-radius: 50%; background: red; display: inline-block; margin-right: 10px; animation: pulse 2s infinite; }
#connection.online { background: green; }
/* PULSE ANIMATION */
@-webkit-keyframes pulse {
0% {
-webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
}
70% {
-webkit-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
}
100% {
-webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
}
}
@keyframes pulse {
0% {
-moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
}
70% {
-moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
box-shadow: 0 0 0 10px rgba(204,169,44, 0);
}
100% {
-moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
box-shadow: 0 0 0 0 rgba(204,169,44, 0);
}
} | 0.462959 | 0.191725 |
body {
background-color: #fefefe;
color: #6a6d7c;
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: 300;
font-size: 12px;
background: url(../images/background.jpg) no-repeat #fff center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
html, body, #wrapper {
height: 100%
}
#wrapper {
position: relative;
margin: auto;
width: 1024px;
}
/* Colors */
.grey-dark, h4, .popover h3 {
color: #333333;
font-weight: normal;
}
.grey {
color: #8c8c8c;
}
.grey-light {
color: #b5b5b5
}
.red {
color: #e74c3c;
}
/* Various Classes */
.left {
float: left;
}
.right {
float: right !important;
}
.right.mar-right {
margin-right: 3px;
}
.relative {
position: relative;
}
.bold {
font-weight: bold;
}
.clear {
clear: both;
}
.block {
display: block;
}
.no-border {
border: none !important;
}
/* Basic Shared Styles */
h1, h2 {
padding-top:0;
margin-top: 0;
font-weight: normal;
}
a {
color: #6a6d7c;
}
a:hover, a.link, a.active, .blue, .blog #main-content a {
color: #5dade2;
text-decoration: none;
}
.blog #main-content a.btn {
color: white !important;
}
ul {
list-style: none;
}
.menu li {
font-size: 14px;
}
.menu li .search {
width: 298px !important;
position: relative;
}
.search:hover #txt-search {
display: inline-block;
top: 0px;
}
.control-group {
margin-bottom: 0;
}
h2 {
font-size: 24px;
border-bottom: 1px dotted #bcbcbc;
font-weight: normal;
margin-bottom: 10px;
}
h4 {
font-size: 18px;
margin-bottom: 0px;
line-height: 14px;
height: 18px;
}
h4 {
width: 186px;
}
.btn-mini {
font-size: 11px;
}
.animated {
display: none;
}
textarea {
resize: none;
}
.dropdown-menu {
top: 40px;
}
/* End Various class */
/* Bootstrap Buttons */
.btn.btn-orange {
background-color: #fe8f01;
}
.btn.btn-orange:hover, .btn.btn-orange:focus {
background-color: #ffb14b;
}
.btn-grey {
background-color: #bdc3c7;
}
/* Header */
#header {
height: 67px;
width: 100%;
background-color: #0073c6;
position: fixed;
z-index: 9;
}
#header #home-link {
display: block;
height: 100%;
width: 266px;
float: left;
}
#header .content {
width: 1024px;
background-image: url(../images/logo.png?v=2);
height: 100%;
margin: auto;
background-repeat: no-repeat;
background-position: 0px 6px;
}
#header .menu {
height: 100%;
vertical-align: middle;
margin: 0;
float: left;
}
#header .menu li {
width: 105px;
height: 100%;
color: white;
display: inline-block;
}
#header .menu li a {
width: 57px;
display: block;
height: 100%;
line-height: 66px;
color: white;
font-weight: normal;
}
#header .dropdown-menu a {
padding: 3px 10px;
}
#header .menu li a, #header #search {
background-repeat: no-repeat;
background-position: 12px 20px;
padding-left: 50px;
}
#header .menu li a:hover {
background-color: #318bd8;
color: white;
}
#header .menu li a.active, #header .menu li a:active {
background-color: #0457ad;
}
#header a.home {
background-image: url(../images/icon-1.png);
}
#header a.event {
background-image: url(../images/icon-2.png);
}
#header a.profile {
background-image: url(../images/icon-3.png);
}
#header a.venue {
background-image: url(../images/icon-4.png);
}
#header a.search {
background-image: url(../images/icon-5.png);
}
#header .btn-group {
margin-top: 14px;
width: 38px;
margin-right: -3px;
}
#header .caret {
vertical-align: bottom;
vertical-align: middle;
margin-left: 5px;
border-top-color: white;
}
#header .open-modal {
background-color: #2c88ca !important;
font-size: 0px !important;
position: relative;
cursor: pointer;
}
#header .box.count {
display: none;
top: -31px;
position: relative;
left: 17px;
border-radius: 8px;
width: 16px;
height: 16px;
font-size: 9px;
line-height: 15px !important;
}
#header .box.count.event-count {
top: -6px !important;
left: -24px !important;
display: none;
}
.open-notification {
right: -34px;
top: 35px;
}
.show-message-box-btn {
top: 5px;
}
.open-modal i {
position: relative;
top: -5px;
left: 6px;
}
.span-info .box, .open-modal {
width: 26px;
height: 26px;
border-radius: 4px;
display: block;
float: left;
margin-right: 8px;
}
.box.count {
background-color: #fe8f01;
color: white;
font-size: 16px;
text-align: center;
line-height: 26px;
}
/* End Header */
/* Main */
#main {
width: 1024px;
margin: auto;
padding-top: 67px;
}
#main .menu.left, #main > .content {
min-height: 600px;
}
#main .menu.left {
width: 266px;
}
#main > .content, #main .menu.left .list {
background-color: #f4f4f4;
}
#main > .content {
width: 657px;
border: 1px solid #e3e3e3;
padding: 35px;
float: left;
}
#main-content {
position: relative;
clear: both;
}
.full #main > .content {
width: 970px;
margin: auto;
float: none;
}
#main .menu.left .list {
width: 246px;
margin-top: 20px;
margin-bottom: 0;
}
.icon-fb {
background-image: url(../img/fb.png);
width: 16px;
height: 16px;
background-position: 0 0;
}
.icon-phone {
background-image: url(../images/icon-phone.png);
background-position: 0;
}
.menu.left .list i {
margin-right: 10px;
}
#main .menu.left .right, #main .menu.left li:last-child a {
-webkit-border-bottom-left-radius: 5px;
-moz-border-bottom-left-radius: 5px;
-ms-border-bottom-left-radius: 5px;
-o-border-bottom-left-radius: 5px;
border-bottom-left-radius: 5px;
}
#main .menu.left .right, #main .menu.left li:first-child a {
-webkit-border-top-left-radius: 5px;
-moz-border-top-left-radius: 5px;
-ms-border-top-left-radius: 5px;
-o-border-top-left-radius: 5px;
border-top-left-radius: 5px;
}
#main .menu.left .list a {
height: 48px;
display: block;
color: #6a6d7c;
font-weight: bold;
padding-left: 20px;
vertical-align: middle;
line-height: 48px;
background-color: #c9c5c5;
}
#main .menu.left .list a:hover {
background-color: #fefefe;
}
#main .menu.left .list a.active, #main .menu.left .list a:active {
background-color: #f4f4f4;
position: relative;
right: -1px;
}
.content #main-content.animated {
-webkit-animation-delay: .5s;
-moz-animation-delay: .5s;
-o-animation-delay: .5s;
animation-delay: .5s;
}
#main .shortcut {
margin: 20px;
margin-top: 18px;
clear: both;
}
#main .shortcut h4 {
margin: 0;
}
#main .sub {
margin-top: 20px;
background: rgba(255, 255, 255, 0.7);
margin-left: 20px;
}
#main .sub .sport-bar {
margin: 10px;
width: 225px;
}
.menu.left .sub.right .sport-list {
margin: 18px;
margin-right: 0;
}
.menu.left .sub.right .sport-list img {
width: 28px;
}
/* End Main */
/* Footer */
#footer {
clear: both;
height: 20px;
padding: 20px;
padding-left: 0px;
}
#footer .menu {
padding-left: 256px;
margin: 0;
font-family: Tahoma,Geneva,Kalimati,sans-serif;
clear: both;
}
.full #footer .menu {
padding-left: 21px;
}
#footer .menu li {
display: inline;
font-size: 12px;
}
#footer .menu li a {
padding: 0 10px;
border-right: 1px solid white;
color: white;
}
#footer .menu li:last-child a {
border-right: none;
}
/* Forms */
.help-inline {
display: none;
text-align: left;
width: 100%;
}
.help-inline ul {
margin-left: 0;
}
.control-group.error .help-inline, .control-group.success .help-inline {
display: inline-block;
}
.control-group.success .help-inline {
color: white !important;
}
/* Profile Images */
.profile-mask {
background-image: url(../images/profile-mask.png);
position: absolute;
top: 0;
width: 38px;
height: 38px;
background-size: 38px;
filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/profile-mask.png',sizingMethod='scale')";
-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/profile-mask.png',sizingMethod='scale')";
}
.profile-img.small {
width: 38px;
height: 38px;
}
.profile-mask.large, .profile-img.large {
width: 100px;
height: 100px;
background-size: 100px;
}
.profile-mask.medium, .profile-img.medium {
width: 50px;
height: 50px;
background-size: 50px;
}
.profile-mask.blue {
background-image: url(../images/profile-mask-blue.png);
}
/* Loading Animation */
.loading {
width:24px;
position: relative;
left: -5px;
margin-right: 40px;
top: -2px;
}
.btn .loading {
width: 25px;
left: 0px;
top: 0px;
margin: auto;
}
.btn .loading div {
background-color: white;
border: 1px solid white;
}
.loading div {
background-color:#6A6D7C;
border:1px solid #6A6D7C;
float:left;
height:17px;
margin-left:1px;
width:5px;
opacity:0.1;
-moz-animation-name:bounceG;
-moz-animation-duration:1.3s;
-moz-animation-iteration-count:infinite;
-moz-animation-direction:linear;
-moz-transform:scale(0.7);
-webkit-animation-name:bounceG;
-webkit-animation-duration:1.3s;
-webkit-animation-iteration-count:infinite;
-webkit-animation-direction:linear;
-webkit-transform:scale(0.7);
-ms-animation-name:bounceG;
-ms-animation-duration:1.3s;
-ms-animation-iteration-count:infinite;
-ms-animation-direction:linear;
-ms-transform:scale(0.7);
-o-animation-name:bounceG;
-o-animation-duration:1.3s;
-o-animation-iteration-count:infinite;
-o-animation-direction:linear;
-o-transform:scale(0.7);
animation-name:bounceG;
animation-duration:1.3s;
animation-iteration-count:infinite;
animation-direction:linear;
transform:scale(0.7);
}
.block-1 {
-moz-animation-delay:0.39s;
-webkit-animation-delay:0.39s;
-ms-animation-delay:0.39s;
-o-animation-delay:0.39s;
animation-delay:0.39s;
}
.block-2 {
-moz-animation-delay:0.52s;
-webkit-animation-delay:0.52s;
-ms-animation-delay:0.52s;
-o-animation-delay:0.52s;
animation-delay:0.52s;
}
.block-3 {
-moz-animation-delay:0.65s;
-webkit-animation-delay:0.65s;
-ms-animation-delay:0.65s;
-o-animation-delay:0.65s;
animation-delay:0.65s;
}
@-moz-keyframes bounceG{
0%{
-moz-transform:scale(1.2);
opacity:1}
100%{
-moz-transform:scale(0.7);
opacity:0.1}
}
@-webkit-keyframes bounceG{
0%{
-webkit-transform:scale(1.2);
opacity:1}
100%{
-webkit-transform:scale(0.7);
opacity:0.1}
}
@-ms-keyframes bounceG{
0%{
-ms-transform:scale(1.2);
opacity:1}
100%{
-ms-transform:scale(0.7);
opacity:0.1}
}
@-o-keyframes bounceG{
0%{
-o-transform:scale(1.2);
opacity:1}
100%{
-o-transform:scale(0.7);
opacity:0.1}
}
@keyframes bounceG{
0%{
transform:scale(1.2);
opacity:1}
100%{
transform:scale(0.7);
opacity:0.1}
}
/* End Loading Animation */
.btn-small [class^="icon-"] {
position: relative;
left: -5px;
top: 2px;
}
/* Autocomplete search */
#txt-search {
margin-top: 13px;
margin-bottom: 14px;
top: -100px;
position: absolute;
right: 12px;
-webkit-transition: top .3s ease-in-out;
-moz-transition: top .3s ease-in-out;
-ms-transition: top .3s ease-in-out;
-o-transition: top .3s ease-in-out;
transition: top .3s ease-in-out;
}
#txt-search.displayed {
display: block;
top: 0;
}
.ui-autocomplete {
width: 306px !important;
}
.ui-autocomplete-loading {
background: white url('../images/ui-anim_basic_16x16.gif') right center no-repeat;
}
.ui-autocomplete-category {
padding: 5px;
font-size: 16px;
line-height: 1.5;
border-bottom: 1px dotted #dbdbdb;
}
.ui-autocomplete-category i {
margin-right: 7px;
}
.ui-autocomplete img {
width: 40px;
height: 40px;
margin-right: 10px;
}
.ui-autocomplete .ui-state-focus {
border: none;
margin: 0 !important;
background-color: #f4f4f4;
}
.ui-autocomplete .ui-state-focus .profile-mask.white {
background-image: url(../images/profile-mask.png);
}
.ui-autocomplete li a {
padding: 5px !important;
position: relative;
height: 40px;
}
.ui-autocomplete .profile-mask {
top: 5px;
}
/* Map */
#address-find {
width: 310px;
margin-right: 10px;
}
#address-find.small{
width: 218px !important;
}
.search-gmap select {
width: 85px;
margin-right: 5px;
}
#my-location {
width: 120px;
}
#map_canvas {
width: 100%;
margin: 0 auto;
border: 2px solid #dce4ec;
min-height: 300px;
}
#map_canvas img {
border-radius: 21px;
}
#map_canvas .tooltip-sport-icon {
width: 32px;
height: 32px;
}
#edit-location-modal #map_canvas {
height: 400px;
}
#edit-location-modal {
width: 1000px;
height: 550px;
margin-left: -500px;
}
.navbar-form {
margin-bottom: 20px;
}
#find-gmap {
width: 80px;
}
.list-map .loading {
margin: auto;
margin-top: 20px;
}
/* --------tooltip ----------*/
.popover {
width: 250px;
}
.popover .cancel-popover {
cursor: pointer;
display: inline-block;
}
.popover-title .cancel-popover {
top: 10px;
right: 7px;
}
.popover h1 {
display: none;
}
.popover .popover .arrow {
display: none;
}
.popover h3 {
font-size: 14px;
}
.popover .sport_list {
display: block;
float: right;
padding-left: 110px;
padding-top: 4px;
height: 110px;
}
.popover .sport_list .small {
margin-top: 0 !important;
margin-bottom: 5px;
}
.popover ul {
margin-left: 2px;
}
.profile-mask.white, #message-modal .profile-mask {
background-image: url(../images/profile-mask-white.png);
}
.profile-mask.tooltip-user:hover {
background-color: rgba(0, 0, 0, 0.2);
}
.popover .span-profile {
margin-left: 0;
}
/* List Sports */
.sport-panel {
height: 105px;
width: 80px;
float: left;
}
.sport_list {
text-align: center;
max-height: 440px;
}
.sport_list .btn-sport {
width: 72px;
float: left;
margin: 10px;
font-size: 12px;
background-color: white;
color: #4e4e4e;
}
.sport_list .small, .panel-info {
background-color: white;
border: 2px solid rgba(0, 115, 198, 0.15);
}
.sport_list .small {
color: #0073c6;
width: 50px;
float: left;
margin: 5px 5px 10px 0;
height: 50px;
font-size: 11px;
line-height: 15px;
cursor: default;
}
.sport_list .small img {
width: 100%
}
.btn-sport.active {
background-color: #4e4e4e;
color: white;
}
/* teams dropdown */
#tooltip-teams{
position: inherit;
visibility: visible !important;
}
.span-profile {
position: relative;
width: 127px;
}
#dashboard-profile .span-profile {
top: 42px;
}
.popover .profile-img {
position: absolute;
}
.tooltip-sport-icon {
width: 50px;
height: 50px;
}
/* Listing (events - venues) */
.ws-list {
width: 728px;
position: relative;
left: -35px;
border-bottom: #ddd 1px solid;
}
.ws-list .no-result {
padding-left: 35px;
}
.result-image img {
background-color: white;
float: left;
margin-bottom: 10px;
}
.ws-list .result-image img {
margin-top: 12px;
}
.one-row .result-image {
padding-left: 35px;
}
.ws-list .result-image img {
width: 60px;
border-radius: 30px;
}
.ws-list .result-name {
width: 350px;
font-size: 21px;
padding-bottom: 10px;
}
.result-profile .result-name {
font-size: 21px;
}
.result-profile .result-name > span {
width: 224px;
display: inline-block;
}
.result-name {
margin-bottom: 6px;
margin-top: 2px;
display: block;
}
.result-profile {
margin-bottom: 15px;
}
.result-profile ul {
margin-left: 0;
}
.result-profile .row-view-right {
width: 540px;
}
.result-profile .result-image img {
width: 90px;
border-radius: 45px;
}
.result-profile .border-info {
padding-bottom: 10px !important;
margin-bottom: 10px !important;
}
.border-info {
border-bottom: 1px solid #e7e7e7;
}
.result-profile .left.main {
width:220px
}
.result-profile .icon-user {
margin-top: -1px;
}
.row-view-right.main {
width: 420px;
}
.row-view-right.info {
margin-top: 22px;
width: 110px;
}
.row-view-right .block {
padding-bottom: 5px;
}
.cost {
width: 16px;
display: inline-block;
font-weight: bold;
padding-left: 3px;
}
.row-view-right i {
/* margin-right: 5px; */
}
.ws-list .row-view-right {
margin-top: 10px;
}
.row-view-right {
margin-left: 20px;
float: left;
}
.row-view-right ul {
margin: 0;
padding: 0;
}
.one-row {
border-top: #ddd 1px solid;
padding-bottom: 10px;
padding-top: 5px;
transition: background .5s ease-in-out;
-webkit-transition: background .5s ease-in-out;
-moz-transition: background .5s ease-in-out;
-ms-transition: background .5s ease-in-out;
}
.ws-list .one-row:hover {
background-color: white;
}
.ws-list .btn-danger {
margin-right: 20px;
margin-top: 13px;
}
#alert-modal, #confirm-modal {
width: 400px;
margin-left: -200px;
top: 35%;
}
#profile-img {
cursor: pointer;
}
.profile-filter-sport {
width: 60% !important;
margin: 5px !important;
}
.prevent-click-event {
pointer-events: none;
cursor: default;
}
/* Flip hover box effect */
.view {
width: 300px;
height: 200px;
margin: 10px;
float: left;
border: 2px solid #fff;
overflow: hidden;
position: relative;
text-align: center;
-webkit-box-shadow: 1px 1px 2px #e6e6e6;
-moz-box-shadow: 1px 1px 2px #e6e6e6;
box-shadow: 1px 1px 2px #e6e6e6;
cursor: default;
}
.view .mask,.view .content {
width: 300px;
height: 200px;
position: absolute;
overflow: hidden;
top: 0;
left: 0;
}
.view img {
display: block;
position: relative;
}
.view h2 {
text-transform: uppercase;
color: #fff;
text-align: center;
position: relative;
font-size: 17px;
padding: 10px;
background: rgba(0, 0, 0, 0.8);
margin: 20px 0 0 0;
}
.view p {
font-family: Georgia, serif;
font-style: italic;
font-size: 12px;
position: relative;
color: #fff;
padding: 10px 20px 20px;
text-align: center;
}
.view a.info {
display: inline-block;
text-decoration: none;
padding: 7px 14px;
background: #000;
color: #fff;
text-transform: uppercase;
-webkit-box-shadow: 0 0 1px #000;
-moz-box-shadow: 0 0 1px #000;
box-shadow: 0 0 1px #000;
}
.view a.info:hover {
-webkit-box-shadow: 0 0 5px #000;
-moz-box-shadow: 0 0 5px #000;
box-shadow: 0 0 5px #000;
}
.view-tenth img {
-webkit-transform: scaleY(1);
-moz-transform: scaleY(1);
-o-transform: scaleY(1);
-ms-transform: scaleY(1);
transform: scaleY(1);
-webkit-transition: all 0.7s ease-in-out;
-moz-transition: all 0.7s ease-in-out;
-o-transition: all 0.7s ease-in-out;
-ms-transition: all 0.7s ease-in-out;
transition: all 0.7s ease-in-out;
}
.view-tenth .mask {
background-color: #f4f4f4;
-webkit-transition: all 0.5s linear;
-moz-transition: all 0.5s linear;
-o-transition: all 0.5s linear;
-ms-transition: all 0.5s linear;
transition: all 0.5s linear;
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
}
.view-tenth h2 {
border-bottom: 1px solid rgba(0, 0, 0, 0.3);
background: transparent;
margin: 20px 40px 0px 40px;
-webkit-transform: scale(0);
-moz-transform: scale(0);
-o-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
color: #333;
-webkit-transition: all 0.5s linear;
-moz-transition: all 0.5s linear;
-o-transition: all 0.5s linear;
-ms-transition: all 0.5s linear;
transition: all 0.5s linear;
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
}
.view-tenth p {
color: #333;
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
-webkit-transform: scale(0);
-moz-transform: scale(0);
-o-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
-webkit-transition: all 0.5s linear;
-moz-transition: all 0.5s linear;
-o-transition: all 0.5s linear;
-ms-transition: all 0.5s linear;
transition: all 0.5s linear;
}
.view-tenth a.info {
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
-webkit-transform: scale(0);
-moz-transform: scale(0);
-o-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
-webkit-transition: all 0.5s linear;
-moz-transition: all 0.5s linear;
-o-transition: all 0.5s linear;
-ms-transition: all 0.5s linear;
transition: all 0.5s linear;
}
.view-tenth:hover img.main {
-webkit-transform: scale(10);
-webkit-transition: all 0.5s linear;
-moz-transform: scale(10);
-o-transform: scale(10);
-ms-transform: scale(10);
transform: scale(10);
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
}
.view-tenth:hover .mask, .view-tenth.active .mask {
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
}
.view-tenth:hover h2,.view-tenth:hover p,.view-tenth:hover a.info {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-o-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
}
/* End Flip hover box effect */
#invite-email-modal .modal-body .controls span {
float: left;
margin: -8px 0 9px 6px;
width: 100%;
}
#invite-email-modal .modal-body .controls span.error {
color: #b94a48;
}
#invite-email-modal .first-name, #invite-email-modal .last-name{
width: 145px;
}
#invite-email-modal .control-group {
display: inline;
}
#contact-us-modal-body form textarea {
height: 118px !important;
width: 97%;
}
#filter-sport {
padding-top: 0;
}
.search-sport {
padding-bottom: 0;
}
#btn-upload {
display: none;
}
#edit-image-modal {
max-height: none;
width: 400px;
}
#edit-image {
max-height: none;
}
#edit-image-modal .thumbnail img {
max-height: 280px;
max-width: 360px;
}
.search-item .profile-img {
float: left;
}
.search-item .span {
display: inline-block;
}
.search-item i {
color: grey;
font-size: 12px;
}
#captcha-con {
width: 367px;
}
#captcha-con .captcha {
margin-top: 10px;
}
#captcha-con button {
float: right;
margin-top: 35px;
margin-left: 20px;
}
#captcha-con img {
float: right;
}
.btn .icon-plus-sign {
margin-right: 5px;
}
.slogan {
background-color: white;
border: 1px solid #e7e7e7;
border-left: none;
border-right: none;
padding: 10px;
margin-top: 10px;
}
.modal label {
display: block;
}
/* Static Pages */
.menu .sub .links {
margin-left: 15px;
margin-top: 10px;
}
.menu .sub .links li {
font-size: 12px;
font-weight: bold;
}
.menu .sub .links li i {
margin-right: 6px;
}
#faq h2 {
padding-top: 20px;
font-size: 28px;
}
#faq h3 {
font-size: 20px;
}
/* End Static Pages */
/* Notification */
#notification-modal {
width: 688px;
left: 45%;
}
#notification-modal .msg {
}
#notification-modal .msg .content {
width: 570px;
}
#notification-modal .modal-footer, #update-player-score-modal .modal-footer {
background-color: inherit;
}
#notification-body {
overflow: auto;
max-height: 450px;
}
#notification-modal .arrow-user {
display: none;
}
#see-more-notification {
float: right;
position: relative;
}
#notification-body .loading {
margin: auto;
margin-top: 13px;
}
.new-message {
background: #f4f8fc !important;
border: 1px solid #cfe4f4 !important;
}
.body-grey {
background-color: #f4f4f4;
}
#message-modal-body > div {
background-color: white;
}
/* End Notification */
.msg {
width: 100%;
margin-top: 10px;
clear: both;
}
.msg .top .btn {
margin-bottom: 3px;
}
.msg .bottom {
display: none;
width: 545px;
}
.msg .content-panel {
position: relative;
}
.msg .content {
background-color: white;
border: 1px solid #dbdbdb;
width: 575px;
float: left;
padding: 12px;
margin-left: 57px;
}
.msg .content.pop-active {
}
.msg .content.pop-hidden {
}
.msg .date {
font-style: italic;
font-size: 11px;
}
.msg.pop-active .content, .msg.message-type-1 .content:hover, .msg.message-type-2 .content:hover {
border: 1px solid #bcd9ed;
cursor: pointer;
background-color: #ecf0f3;
}
.msg.pop-active .content {
background-color: rgba(99, 99, 99, 0.2) !important;
}
.msg .profile-img {
float: left;
position: absolute;
left: 0;
}
.hide-btn-danger .btn-danger {
display: none;
}
.msg .btn-delete, .btn-delete-local-forum {
position: absolute;
right: 0px;
z-index: 10;
}
.msg .top.right {
position: relative;
}
.msg.message-type-None .request-info {
display: none;
}
.msg .request-info {
position: absolute;
top: 60px;
left: 57px;
font-size: 11px;
font-style: italic;
opacity: 0;
-webkit-transition: all .3s ease-in-out;
}
.msg .content:hover .request-info {
opacity: 1;
top: 42px;
}
/* Message Box */
#message-modal {
width: 1000px;
left: initial;
}
#message-modal .msg .content {
width: 635px;
background-color: #fcfcfc;
}
.message-left-panel {
height: 480px;
width: 200px;
float: left;
border: 1px solid #e3e3e3;
overflow-y: scroll;
}
.message-left-panel h3 {
padding-left: 10px;
}
.message-left-panel .sender-item {
padding: 10px;
position: relative;
height: 38px;
}
.message-left-panel .sender-item, .message-left-panel .message-box-new {
border-bottom: 1px solid #e3e3e3;
cursor: pointer;
}
.message-left-panel .sender-item.active {
background-color: #f4f4f4;
}
.message-left-panel .sender-item > .profile-mask {
top: 10px;
}
.message-right-panel {
height: 460px;
width: 730px;
float: right;
border: 1px solid #e3e3e3;
overflow-y: auto;
overflow-x: hidden;
padding: 10px;
}
.message-box-messages {
padding: 5px;
}
.message-left-panel .message-box-new {
border-top: 1px solid #e3e3e3;
padding: 10px;
}
.message-left-panel .message-box-new i {
margin: 0 13px;
}
.sender-item.active .profile-mask {
background-image: url(../images/profile-mask.png) !important;
}
.btn.btn-danger.btn-delete:hover {
background-color: #e74c3c;
color: white;
}
/* End Message Box */
/* Notifications */
#messages.notification {
padding-bottom: 10px;
}
.notification .msg {
margin-top: 0;
float: left;
width: 50px;
height: 50px;
clear: none;
}
.notification .profile-mask {
cursor: pointer;
}
.notification .profile-mask.with-border:hover, .notification .pop-active .profile-mask.with-border, .profile-mask.active-notification, .profile-mask.men-of-the-match {
background-image: url(../images/profile-mask-border.png);
}
.notification .msg .content {
border-color: #ffd9a8;
height: 12px;
font-size: 0;
width: 10px;
}
.notification .box.count {
position: relative;
width: 15px;
height: 15px;
font-size: 12px;
font-weight: normal;
left: 28px;
top: 20px;
line-height: 15px;
border-radius: 8px;
}
.content-panel .box.count {
position: absolute;
width: 15px;
height: 15px;
font-size: 12px;
font-weight: normal;
left: 28px;
top: 20px;
line-height: 15px;
border-radius: 8px;
}
.menu .box.count {
display: inline-block;
width: 20px;
font-weight: normal;
height: 21px;
line-height: 20px;
font-size: 11px;
margin-left: 10px;
border-radius: 10px;
}
.notification h2 {
font-size: 16px;
}
.none-display {
display: none !important;
}
#event-form .control-group, #profile-form .control-group {
width: 48%;
float: left;
}
#profile-form .control-group {
height: 95px;
}
.cancel-filter-sport {
width: 100%;
float: left;
font-size: 12px;
cursor: pointer;
}
.cancel-filter-sport button {
margin-right: 5px;
}
/* End notification */
.margin-top {
margin-top: 10px;
}
/* dashboard long name */
.top-profile h4 {
width: 420px !important;
}
#btn-more-message {
margin-left: 50%;
background-color: #cccccc;
left: -24px;
position: relative;
display: none;
}
.fb_iframe_widget.fb-like-box {
background: white;
margin: 15px;
margin-right: 0;
}
/* if not IE8 -> hide */
.onlyIE8 {
display: none;
}
/* -- Start Fix Ipad -- */
#header .btn-group{margin-right: 13px;}
.content .top.row {position: relative;z-index: 1;}
.close{width: 35px;height: 35px;margin-top: -2px!important;margin-right: -8px;}
@media only screen and (max-width: 1023px)
{
*{max-width:100%}
#header,#main{min-width:768px;}
#main{overflow:hidden}
#header .content{background-size: 200px;background-position-y: center;}
#header .menu li {width: 77px;}
#header .menu li a{background-size: 20px;background-position: 8px center;padding-left: 35px;font-size: 11px;width: auto;}
.menu li .search {width: 207px !important;max-width: 207px;}
#txt-search{width: 120px!important}
#header .content,#main{width:768px}
#main .menu.left,#header #home-link{width: 200px;}
#main > .content {width: 526px;padding-left:15px;padding-right:15px}
#main .menu.left .list,#main .menu.left .sub{width: 190px;}
#message-modal,#edit-location-modal{max-width:750px;right: 8px;margin-left: auto;}
.message-right-panel {height: 460px;width: 496px;}
#my-stats{width: 160px!important;font-size: 13px!important;}
.my-stats span {font-size: 18px!important;padding-left: 0!important;}
.profile-next-event{width: 117px!important;}
#address-find.small {width: 120px!important;}
.search-gmap select {width: 55px!important}
#find-gmap {width: 75px;}
#address-find {width: 185px;margin-right: 5px;}
.loading{max-width:100px!important}
#intro{width: 508px!important;}
.span4{width: 220px;}
.card .face{padding-left:10px;padding-right:10px}
.ws-list {left: -15px;max-width: 556px;}
.one-row .result-image {padding-left: 15px;}
.row-view-right.main {width: 331px}
.result-profile .row-view-right {width: 416px!important}
.creator-panel {width: 169px!important;}
.result-profile .left.main {width: 110px!important;margin-right: 45px!important;}
body .result-profile .left.event-time {width: 150px !important;margin-right: 50px!important;}
.csstransforms3d .face.back {width: 240px;max-width: 240px;right: 0;}
#id_last_name,#id_first_name{max-width: 206px;}
.msg .content{width: 443px!important;}
.msg .reply-list .content{width: 386px!important;}
.profile-next-event label {font-size: 17px!important;}
.profile-next-event{font-size: 11px!important}
.row-view-right .sub-info {width: 200px!important;}
.result-profile .result-name > span {width: 170px;float: left;}
#venue-map {width: 214px!important;height: 214px!important;}
#main .menu.left .list a{padding-left: 10px;}
.menu.left .list i {margin-right: 5px;}
.result-name .text {width: 212px!important;}
.popover {max-width: 768px;}
#message-modal .form-send-message .txt-private-reply {width: 482px!important}
#message-modal .msg .content {width: 403px!important;}
#message-modal .txt-private-reply {width: 472px!important}
.txt-reply{max-width: 512px;}
#map_canvas *{max-width:10000px!important}
.result-profile .result-name {overflow: hidden;}
#btn-edit-location-venue,#btn-remove-favourite{margin-bottom:10px}
#intro .panel-3{width:220px!important}
#intro .panel-4{font-size:26px!important}
.flipper .face{float: left!important;width: 200px!important;}
#home-slider {width: 758px!important}
}
/* -- Start Fix Firefox -- */
@-moz-document url-prefix() {
:focus {outline:none!important;}
::-moz-focus-inner {border:0!important;}
.msg .btn-delete{bottom: -23px}
.modal .msg .btn-delete {right: 2px}
#contact-us-form{margin-bottom:0}
#contact-us-modal-body form textarea {height: 50px !important;}
.modal-body {overflow-x: hidden;}
#event-form{margin-bottom: 0;}
body #event-form .sport_list {height: 100px !important}
#create-event {height: 362px!important}
#create-event-modal {max-height: 500px;}
.sport_list .btn-sport img{margin:0 12px;width:48px}
}
.text-ref {
padding-bottom: 20px;
}
.text-ref p {
margin: 0;
}
.new-event-count-0 {
display: none;
line-height: 16px;
}
.content .text-ref {
color: white;
margin-left: 266px;
margin-top: 10px;
font-size: 11px;
}
.row-view-right.main-info .sub-info div {
padding-bottom: 5px;
}
.row-view-right.main-info .sub-info .slogan {
margin-bottom: 10px;
}
.top.left .location {
padding-left: 57px;
font-style: italic;
font-size: 11px;
}
.btn-show-reply {
margin-top: 10px;
}
.location .icon-globe {
margin-left: 5px;
margin-top: -1px;
}
.btn-cancel-msg {
background: #c9c5c5;
margin-right: 10px;
}
.profile-img.small.public {
width: 22px;
height: 14px;
padding-top: 11px;
padding-left: 5px;
} | static/css/style.css | body {
background-color: #fefefe;
color: #6a6d7c;
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: 300;
font-size: 12px;
background: url(../images/background.jpg) no-repeat #fff center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
html, body, #wrapper {
height: 100%
}
#wrapper {
position: relative;
margin: auto;
width: 1024px;
}
/* Colors */
.grey-dark, h4, .popover h3 {
color: #333333;
font-weight: normal;
}
.grey {
color: #8c8c8c;
}
.grey-light {
color: #b5b5b5
}
.red {
color: #e74c3c;
}
/* Various Classes */
.left {
float: left;
}
.right {
float: right !important;
}
.right.mar-right {
margin-right: 3px;
}
.relative {
position: relative;
}
.bold {
font-weight: bold;
}
.clear {
clear: both;
}
.block {
display: block;
}
.no-border {
border: none !important;
}
/* Basic Shared Styles */
h1, h2 {
padding-top:0;
margin-top: 0;
font-weight: normal;
}
a {
color: #6a6d7c;
}
a:hover, a.link, a.active, .blue, .blog #main-content a {
color: #5dade2;
text-decoration: none;
}
.blog #main-content a.btn {
color: white !important;
}
ul {
list-style: none;
}
.menu li {
font-size: 14px;
}
.menu li .search {
width: 298px !important;
position: relative;
}
.search:hover #txt-search {
display: inline-block;
top: 0px;
}
.control-group {
margin-bottom: 0;
}
h2 {
font-size: 24px;
border-bottom: 1px dotted #bcbcbc;
font-weight: normal;
margin-bottom: 10px;
}
h4 {
font-size: 18px;
margin-bottom: 0px;
line-height: 14px;
height: 18px;
}
h4 {
width: 186px;
}
.btn-mini {
font-size: 11px;
}
.animated {
display: none;
}
textarea {
resize: none;
}
.dropdown-menu {
top: 40px;
}
/* End Various class */
/* Bootstrap Buttons */
.btn.btn-orange {
background-color: #fe8f01;
}
.btn.btn-orange:hover, .btn.btn-orange:focus {
background-color: #ffb14b;
}
.btn-grey {
background-color: #bdc3c7;
}
/* Header */
#header {
height: 67px;
width: 100%;
background-color: #0073c6;
position: fixed;
z-index: 9;
}
#header #home-link {
display: block;
height: 100%;
width: 266px;
float: left;
}
#header .content {
width: 1024px;
background-image: url(../images/logo.png?v=2);
height: 100%;
margin: auto;
background-repeat: no-repeat;
background-position: 0px 6px;
}
#header .menu {
height: 100%;
vertical-align: middle;
margin: 0;
float: left;
}
#header .menu li {
width: 105px;
height: 100%;
color: white;
display: inline-block;
}
#header .menu li a {
width: 57px;
display: block;
height: 100%;
line-height: 66px;
color: white;
font-weight: normal;
}
#header .dropdown-menu a {
padding: 3px 10px;
}
#header .menu li a, #header #search {
background-repeat: no-repeat;
background-position: 12px 20px;
padding-left: 50px;
}
#header .menu li a:hover {
background-color: #318bd8;
color: white;
}
#header .menu li a.active, #header .menu li a:active {
background-color: #0457ad;
}
#header a.home {
background-image: url(../images/icon-1.png);
}
#header a.event {
background-image: url(../images/icon-2.png);
}
#header a.profile {
background-image: url(../images/icon-3.png);
}
#header a.venue {
background-image: url(../images/icon-4.png);
}
#header a.search {
background-image: url(../images/icon-5.png);
}
#header .btn-group {
margin-top: 14px;
width: 38px;
margin-right: -3px;
}
#header .caret {
vertical-align: bottom;
vertical-align: middle;
margin-left: 5px;
border-top-color: white;
}
#header .open-modal {
background-color: #2c88ca !important;
font-size: 0px !important;
position: relative;
cursor: pointer;
}
#header .box.count {
display: none;
top: -31px;
position: relative;
left: 17px;
border-radius: 8px;
width: 16px;
height: 16px;
font-size: 9px;
line-height: 15px !important;
}
#header .box.count.event-count {
top: -6px !important;
left: -24px !important;
display: none;
}
.open-notification {
right: -34px;
top: 35px;
}
.show-message-box-btn {
top: 5px;
}
.open-modal i {
position: relative;
top: -5px;
left: 6px;
}
.span-info .box, .open-modal {
width: 26px;
height: 26px;
border-radius: 4px;
display: block;
float: left;
margin-right: 8px;
}
.box.count {
background-color: #fe8f01;
color: white;
font-size: 16px;
text-align: center;
line-height: 26px;
}
/* End Header */
/* Main */
#main {
width: 1024px;
margin: auto;
padding-top: 67px;
}
#main .menu.left, #main > .content {
min-height: 600px;
}
#main .menu.left {
width: 266px;
}
#main > .content, #main .menu.left .list {
background-color: #f4f4f4;
}
#main > .content {
width: 657px;
border: 1px solid #e3e3e3;
padding: 35px;
float: left;
}
#main-content {
position: relative;
clear: both;
}
.full #main > .content {
width: 970px;
margin: auto;
float: none;
}
#main .menu.left .list {
width: 246px;
margin-top: 20px;
margin-bottom: 0;
}
.icon-fb {
background-image: url(../img/fb.png);
width: 16px;
height: 16px;
background-position: 0 0;
}
.icon-phone {
background-image: url(../images/icon-phone.png);
background-position: 0;
}
.menu.left .list i {
margin-right: 10px;
}
#main .menu.left .right, #main .menu.left li:last-child a {
-webkit-border-bottom-left-radius: 5px;
-moz-border-bottom-left-radius: 5px;
-ms-border-bottom-left-radius: 5px;
-o-border-bottom-left-radius: 5px;
border-bottom-left-radius: 5px;
}
#main .menu.left .right, #main .menu.left li:first-child a {
-webkit-border-top-left-radius: 5px;
-moz-border-top-left-radius: 5px;
-ms-border-top-left-radius: 5px;
-o-border-top-left-radius: 5px;
border-top-left-radius: 5px;
}
#main .menu.left .list a {
height: 48px;
display: block;
color: #6a6d7c;
font-weight: bold;
padding-left: 20px;
vertical-align: middle;
line-height: 48px;
background-color: #c9c5c5;
}
#main .menu.left .list a:hover {
background-color: #fefefe;
}
#main .menu.left .list a.active, #main .menu.left .list a:active {
background-color: #f4f4f4;
position: relative;
right: -1px;
}
.content #main-content.animated {
-webkit-animation-delay: .5s;
-moz-animation-delay: .5s;
-o-animation-delay: .5s;
animation-delay: .5s;
}
#main .shortcut {
margin: 20px;
margin-top: 18px;
clear: both;
}
#main .shortcut h4 {
margin: 0;
}
#main .sub {
margin-top: 20px;
background: rgba(255, 255, 255, 0.7);
margin-left: 20px;
}
#main .sub .sport-bar {
margin: 10px;
width: 225px;
}
.menu.left .sub.right .sport-list {
margin: 18px;
margin-right: 0;
}
.menu.left .sub.right .sport-list img {
width: 28px;
}
/* End Main */
/* Footer */
#footer {
clear: both;
height: 20px;
padding: 20px;
padding-left: 0px;
}
#footer .menu {
padding-left: 256px;
margin: 0;
font-family: Tahoma,Geneva,Kalimati,sans-serif;
clear: both;
}
.full #footer .menu {
padding-left: 21px;
}
#footer .menu li {
display: inline;
font-size: 12px;
}
#footer .menu li a {
padding: 0 10px;
border-right: 1px solid white;
color: white;
}
#footer .menu li:last-child a {
border-right: none;
}
/* Forms */
.help-inline {
display: none;
text-align: left;
width: 100%;
}
.help-inline ul {
margin-left: 0;
}
.control-group.error .help-inline, .control-group.success .help-inline {
display: inline-block;
}
.control-group.success .help-inline {
color: white !important;
}
/* Profile Images */
.profile-mask {
background-image: url(../images/profile-mask.png);
position: absolute;
top: 0;
width: 38px;
height: 38px;
background-size: 38px;
filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/profile-mask.png',sizingMethod='scale')";
-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/profile-mask.png',sizingMethod='scale')";
}
.profile-img.small {
width: 38px;
height: 38px;
}
.profile-mask.large, .profile-img.large {
width: 100px;
height: 100px;
background-size: 100px;
}
.profile-mask.medium, .profile-img.medium {
width: 50px;
height: 50px;
background-size: 50px;
}
.profile-mask.blue {
background-image: url(../images/profile-mask-blue.png);
}
/* Loading Animation */
.loading {
width:24px;
position: relative;
left: -5px;
margin-right: 40px;
top: -2px;
}
.btn .loading {
width: 25px;
left: 0px;
top: 0px;
margin: auto;
}
.btn .loading div {
background-color: white;
border: 1px solid white;
}
.loading div {
background-color:#6A6D7C;
border:1px solid #6A6D7C;
float:left;
height:17px;
margin-left:1px;
width:5px;
opacity:0.1;
-moz-animation-name:bounceG;
-moz-animation-duration:1.3s;
-moz-animation-iteration-count:infinite;
-moz-animation-direction:linear;
-moz-transform:scale(0.7);
-webkit-animation-name:bounceG;
-webkit-animation-duration:1.3s;
-webkit-animation-iteration-count:infinite;
-webkit-animation-direction:linear;
-webkit-transform:scale(0.7);
-ms-animation-name:bounceG;
-ms-animation-duration:1.3s;
-ms-animation-iteration-count:infinite;
-ms-animation-direction:linear;
-ms-transform:scale(0.7);
-o-animation-name:bounceG;
-o-animation-duration:1.3s;
-o-animation-iteration-count:infinite;
-o-animation-direction:linear;
-o-transform:scale(0.7);
animation-name:bounceG;
animation-duration:1.3s;
animation-iteration-count:infinite;
animation-direction:linear;
transform:scale(0.7);
}
.block-1 {
-moz-animation-delay:0.39s;
-webkit-animation-delay:0.39s;
-ms-animation-delay:0.39s;
-o-animation-delay:0.39s;
animation-delay:0.39s;
}
.block-2 {
-moz-animation-delay:0.52s;
-webkit-animation-delay:0.52s;
-ms-animation-delay:0.52s;
-o-animation-delay:0.52s;
animation-delay:0.52s;
}
.block-3 {
-moz-animation-delay:0.65s;
-webkit-animation-delay:0.65s;
-ms-animation-delay:0.65s;
-o-animation-delay:0.65s;
animation-delay:0.65s;
}
@-moz-keyframes bounceG{
0%{
-moz-transform:scale(1.2);
opacity:1}
100%{
-moz-transform:scale(0.7);
opacity:0.1}
}
@-webkit-keyframes bounceG{
0%{
-webkit-transform:scale(1.2);
opacity:1}
100%{
-webkit-transform:scale(0.7);
opacity:0.1}
}
@-ms-keyframes bounceG{
0%{
-ms-transform:scale(1.2);
opacity:1}
100%{
-ms-transform:scale(0.7);
opacity:0.1}
}
@-o-keyframes bounceG{
0%{
-o-transform:scale(1.2);
opacity:1}
100%{
-o-transform:scale(0.7);
opacity:0.1}
}
@keyframes bounceG{
0%{
transform:scale(1.2);
opacity:1}
100%{
transform:scale(0.7);
opacity:0.1}
}
/* End Loading Animation */
.btn-small [class^="icon-"] {
position: relative;
left: -5px;
top: 2px;
}
/* Autocomplete search */
#txt-search {
margin-top: 13px;
margin-bottom: 14px;
top: -100px;
position: absolute;
right: 12px;
-webkit-transition: top .3s ease-in-out;
-moz-transition: top .3s ease-in-out;
-ms-transition: top .3s ease-in-out;
-o-transition: top .3s ease-in-out;
transition: top .3s ease-in-out;
}
#txt-search.displayed {
display: block;
top: 0;
}
.ui-autocomplete {
width: 306px !important;
}
.ui-autocomplete-loading {
background: white url('../images/ui-anim_basic_16x16.gif') right center no-repeat;
}
.ui-autocomplete-category {
padding: 5px;
font-size: 16px;
line-height: 1.5;
border-bottom: 1px dotted #dbdbdb;
}
.ui-autocomplete-category i {
margin-right: 7px;
}
.ui-autocomplete img {
width: 40px;
height: 40px;
margin-right: 10px;
}
.ui-autocomplete .ui-state-focus {
border: none;
margin: 0 !important;
background-color: #f4f4f4;
}
.ui-autocomplete .ui-state-focus .profile-mask.white {
background-image: url(../images/profile-mask.png);
}
.ui-autocomplete li a {
padding: 5px !important;
position: relative;
height: 40px;
}
.ui-autocomplete .profile-mask {
top: 5px;
}
/* Map */
#address-find {
width: 310px;
margin-right: 10px;
}
#address-find.small{
width: 218px !important;
}
.search-gmap select {
width: 85px;
margin-right: 5px;
}
#my-location {
width: 120px;
}
#map_canvas {
width: 100%;
margin: 0 auto;
border: 2px solid #dce4ec;
min-height: 300px;
}
#map_canvas img {
border-radius: 21px;
}
#map_canvas .tooltip-sport-icon {
width: 32px;
height: 32px;
}
#edit-location-modal #map_canvas {
height: 400px;
}
#edit-location-modal {
width: 1000px;
height: 550px;
margin-left: -500px;
}
.navbar-form {
margin-bottom: 20px;
}
#find-gmap {
width: 80px;
}
.list-map .loading {
margin: auto;
margin-top: 20px;
}
/* --------tooltip ----------*/
.popover {
width: 250px;
}
.popover .cancel-popover {
cursor: pointer;
display: inline-block;
}
.popover-title .cancel-popover {
top: 10px;
right: 7px;
}
.popover h1 {
display: none;
}
.popover .popover .arrow {
display: none;
}
.popover h3 {
font-size: 14px;
}
.popover .sport_list {
display: block;
float: right;
padding-left: 110px;
padding-top: 4px;
height: 110px;
}
.popover .sport_list .small {
margin-top: 0 !important;
margin-bottom: 5px;
}
.popover ul {
margin-left: 2px;
}
.profile-mask.white, #message-modal .profile-mask {
background-image: url(../images/profile-mask-white.png);
}
.profile-mask.tooltip-user:hover {
background-color: rgba(0, 0, 0, 0.2);
}
.popover .span-profile {
margin-left: 0;
}
/* List Sports */
.sport-panel {
height: 105px;
width: 80px;
float: left;
}
.sport_list {
text-align: center;
max-height: 440px;
}
.sport_list .btn-sport {
width: 72px;
float: left;
margin: 10px;
font-size: 12px;
background-color: white;
color: #4e4e4e;
}
.sport_list .small, .panel-info {
background-color: white;
border: 2px solid rgba(0, 115, 198, 0.15);
}
.sport_list .small {
color: #0073c6;
width: 50px;
float: left;
margin: 5px 5px 10px 0;
height: 50px;
font-size: 11px;
line-height: 15px;
cursor: default;
}
.sport_list .small img {
width: 100%
}
.btn-sport.active {
background-color: #4e4e4e;
color: white;
}
/* teams dropdown */
#tooltip-teams{
position: inherit;
visibility: visible !important;
}
.span-profile {
position: relative;
width: 127px;
}
#dashboard-profile .span-profile {
top: 42px;
}
.popover .profile-img {
position: absolute;
}
.tooltip-sport-icon {
width: 50px;
height: 50px;
}
/* Listing (events - venues) */
.ws-list {
width: 728px;
position: relative;
left: -35px;
border-bottom: #ddd 1px solid;
}
.ws-list .no-result {
padding-left: 35px;
}
.result-image img {
background-color: white;
float: left;
margin-bottom: 10px;
}
.ws-list .result-image img {
margin-top: 12px;
}
.one-row .result-image {
padding-left: 35px;
}
.ws-list .result-image img {
width: 60px;
border-radius: 30px;
}
.ws-list .result-name {
width: 350px;
font-size: 21px;
padding-bottom: 10px;
}
.result-profile .result-name {
font-size: 21px;
}
.result-profile .result-name > span {
width: 224px;
display: inline-block;
}
.result-name {
margin-bottom: 6px;
margin-top: 2px;
display: block;
}
.result-profile {
margin-bottom: 15px;
}
.result-profile ul {
margin-left: 0;
}
.result-profile .row-view-right {
width: 540px;
}
.result-profile .result-image img {
width: 90px;
border-radius: 45px;
}
.result-profile .border-info {
padding-bottom: 10px !important;
margin-bottom: 10px !important;
}
.border-info {
border-bottom: 1px solid #e7e7e7;
}
.result-profile .left.main {
width:220px
}
.result-profile .icon-user {
margin-top: -1px;
}
.row-view-right.main {
width: 420px;
}
.row-view-right.info {
margin-top: 22px;
width: 110px;
}
.row-view-right .block {
padding-bottom: 5px;
}
.cost {
width: 16px;
display: inline-block;
font-weight: bold;
padding-left: 3px;
}
.row-view-right i {
/* margin-right: 5px; */
}
.ws-list .row-view-right {
margin-top: 10px;
}
.row-view-right {
margin-left: 20px;
float: left;
}
.row-view-right ul {
margin: 0;
padding: 0;
}
.one-row {
border-top: #ddd 1px solid;
padding-bottom: 10px;
padding-top: 5px;
transition: background .5s ease-in-out;
-webkit-transition: background .5s ease-in-out;
-moz-transition: background .5s ease-in-out;
-ms-transition: background .5s ease-in-out;
}
.ws-list .one-row:hover {
background-color: white;
}
.ws-list .btn-danger {
margin-right: 20px;
margin-top: 13px;
}
#alert-modal, #confirm-modal {
width: 400px;
margin-left: -200px;
top: 35%;
}
#profile-img {
cursor: pointer;
}
.profile-filter-sport {
width: 60% !important;
margin: 5px !important;
}
.prevent-click-event {
pointer-events: none;
cursor: default;
}
/* Flip hover box effect */
.view {
width: 300px;
height: 200px;
margin: 10px;
float: left;
border: 2px solid #fff;
overflow: hidden;
position: relative;
text-align: center;
-webkit-box-shadow: 1px 1px 2px #e6e6e6;
-moz-box-shadow: 1px 1px 2px #e6e6e6;
box-shadow: 1px 1px 2px #e6e6e6;
cursor: default;
}
.view .mask,.view .content {
width: 300px;
height: 200px;
position: absolute;
overflow: hidden;
top: 0;
left: 0;
}
.view img {
display: block;
position: relative;
}
.view h2 {
text-transform: uppercase;
color: #fff;
text-align: center;
position: relative;
font-size: 17px;
padding: 10px;
background: rgba(0, 0, 0, 0.8);
margin: 20px 0 0 0;
}
.view p {
font-family: Georgia, serif;
font-style: italic;
font-size: 12px;
position: relative;
color: #fff;
padding: 10px 20px 20px;
text-align: center;
}
.view a.info {
display: inline-block;
text-decoration: none;
padding: 7px 14px;
background: #000;
color: #fff;
text-transform: uppercase;
-webkit-box-shadow: 0 0 1px #000;
-moz-box-shadow: 0 0 1px #000;
box-shadow: 0 0 1px #000;
}
.view a.info:hover {
-webkit-box-shadow: 0 0 5px #000;
-moz-box-shadow: 0 0 5px #000;
box-shadow: 0 0 5px #000;
}
.view-tenth img {
-webkit-transform: scaleY(1);
-moz-transform: scaleY(1);
-o-transform: scaleY(1);
-ms-transform: scaleY(1);
transform: scaleY(1);
-webkit-transition: all 0.7s ease-in-out;
-moz-transition: all 0.7s ease-in-out;
-o-transition: all 0.7s ease-in-out;
-ms-transition: all 0.7s ease-in-out;
transition: all 0.7s ease-in-out;
}
.view-tenth .mask {
background-color: #f4f4f4;
-webkit-transition: all 0.5s linear;
-moz-transition: all 0.5s linear;
-o-transition: all 0.5s linear;
-ms-transition: all 0.5s linear;
transition: all 0.5s linear;
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
}
.view-tenth h2 {
border-bottom: 1px solid rgba(0, 0, 0, 0.3);
background: transparent;
margin: 20px 40px 0px 40px;
-webkit-transform: scale(0);
-moz-transform: scale(0);
-o-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
color: #333;
-webkit-transition: all 0.5s linear;
-moz-transition: all 0.5s linear;
-o-transition: all 0.5s linear;
-ms-transition: all 0.5s linear;
transition: all 0.5s linear;
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
}
.view-tenth p {
color: #333;
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
-webkit-transform: scale(0);
-moz-transform: scale(0);
-o-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
-webkit-transition: all 0.5s linear;
-moz-transition: all 0.5s linear;
-o-transition: all 0.5s linear;
-ms-transition: all 0.5s linear;
transition: all 0.5s linear;
}
.view-tenth a.info {
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
-webkit-transform: scale(0);
-moz-transform: scale(0);
-o-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
-webkit-transition: all 0.5s linear;
-moz-transition: all 0.5s linear;
-o-transition: all 0.5s linear;
-ms-transition: all 0.5s linear;
transition: all 0.5s linear;
}
.view-tenth:hover img.main {
-webkit-transform: scale(10);
-webkit-transition: all 0.5s linear;
-moz-transform: scale(10);
-o-transform: scale(10);
-ms-transform: scale(10);
transform: scale(10);
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
}
.view-tenth:hover .mask, .view-tenth.active .mask {
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
}
.view-tenth:hover h2,.view-tenth:hover p,.view-tenth:hover a.info {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-o-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
}
/* End Flip hover box effect */
#invite-email-modal .modal-body .controls span {
float: left;
margin: -8px 0 9px 6px;
width: 100%;
}
#invite-email-modal .modal-body .controls span.error {
color: #b94a48;
}
#invite-email-modal .first-name, #invite-email-modal .last-name{
width: 145px;
}
#invite-email-modal .control-group {
display: inline;
}
#contact-us-modal-body form textarea {
height: 118px !important;
width: 97%;
}
#filter-sport {
padding-top: 0;
}
.search-sport {
padding-bottom: 0;
}
#btn-upload {
display: none;
}
#edit-image-modal {
max-height: none;
width: 400px;
}
#edit-image {
max-height: none;
}
#edit-image-modal .thumbnail img {
max-height: 280px;
max-width: 360px;
}
.search-item .profile-img {
float: left;
}
.search-item .span {
display: inline-block;
}
.search-item i {
color: grey;
font-size: 12px;
}
#captcha-con {
width: 367px;
}
#captcha-con .captcha {
margin-top: 10px;
}
#captcha-con button {
float: right;
margin-top: 35px;
margin-left: 20px;
}
#captcha-con img {
float: right;
}
.btn .icon-plus-sign {
margin-right: 5px;
}
.slogan {
background-color: white;
border: 1px solid #e7e7e7;
border-left: none;
border-right: none;
padding: 10px;
margin-top: 10px;
}
.modal label {
display: block;
}
/* Static Pages */
.menu .sub .links {
margin-left: 15px;
margin-top: 10px;
}
.menu .sub .links li {
font-size: 12px;
font-weight: bold;
}
.menu .sub .links li i {
margin-right: 6px;
}
#faq h2 {
padding-top: 20px;
font-size: 28px;
}
#faq h3 {
font-size: 20px;
}
/* End Static Pages */
/* Notification */
#notification-modal {
width: 688px;
left: 45%;
}
#notification-modal .msg {
}
#notification-modal .msg .content {
width: 570px;
}
#notification-modal .modal-footer, #update-player-score-modal .modal-footer {
background-color: inherit;
}
#notification-body {
overflow: auto;
max-height: 450px;
}
#notification-modal .arrow-user {
display: none;
}
#see-more-notification {
float: right;
position: relative;
}
#notification-body .loading {
margin: auto;
margin-top: 13px;
}
.new-message {
background: #f4f8fc !important;
border: 1px solid #cfe4f4 !important;
}
.body-grey {
background-color: #f4f4f4;
}
#message-modal-body > div {
background-color: white;
}
/* End Notification */
.msg {
width: 100%;
margin-top: 10px;
clear: both;
}
.msg .top .btn {
margin-bottom: 3px;
}
.msg .bottom {
display: none;
width: 545px;
}
.msg .content-panel {
position: relative;
}
.msg .content {
background-color: white;
border: 1px solid #dbdbdb;
width: 575px;
float: left;
padding: 12px;
margin-left: 57px;
}
.msg .content.pop-active {
}
.msg .content.pop-hidden {
}
.msg .date {
font-style: italic;
font-size: 11px;
}
.msg.pop-active .content, .msg.message-type-1 .content:hover, .msg.message-type-2 .content:hover {
border: 1px solid #bcd9ed;
cursor: pointer;
background-color: #ecf0f3;
}
.msg.pop-active .content {
background-color: rgba(99, 99, 99, 0.2) !important;
}
.msg .profile-img {
float: left;
position: absolute;
left: 0;
}
.hide-btn-danger .btn-danger {
display: none;
}
.msg .btn-delete, .btn-delete-local-forum {
position: absolute;
right: 0px;
z-index: 10;
}
.msg .top.right {
position: relative;
}
.msg.message-type-None .request-info {
display: none;
}
.msg .request-info {
position: absolute;
top: 60px;
left: 57px;
font-size: 11px;
font-style: italic;
opacity: 0;
-webkit-transition: all .3s ease-in-out;
}
.msg .content:hover .request-info {
opacity: 1;
top: 42px;
}
/* Message Box */
#message-modal {
width: 1000px;
left: initial;
}
#message-modal .msg .content {
width: 635px;
background-color: #fcfcfc;
}
.message-left-panel {
height: 480px;
width: 200px;
float: left;
border: 1px solid #e3e3e3;
overflow-y: scroll;
}
.message-left-panel h3 {
padding-left: 10px;
}
.message-left-panel .sender-item {
padding: 10px;
position: relative;
height: 38px;
}
.message-left-panel .sender-item, .message-left-panel .message-box-new {
border-bottom: 1px solid #e3e3e3;
cursor: pointer;
}
.message-left-panel .sender-item.active {
background-color: #f4f4f4;
}
.message-left-panel .sender-item > .profile-mask {
top: 10px;
}
.message-right-panel {
height: 460px;
width: 730px;
float: right;
border: 1px solid #e3e3e3;
overflow-y: auto;
overflow-x: hidden;
padding: 10px;
}
.message-box-messages {
padding: 5px;
}
.message-left-panel .message-box-new {
border-top: 1px solid #e3e3e3;
padding: 10px;
}
.message-left-panel .message-box-new i {
margin: 0 13px;
}
.sender-item.active .profile-mask {
background-image: url(../images/profile-mask.png) !important;
}
.btn.btn-danger.btn-delete:hover {
background-color: #e74c3c;
color: white;
}
/* End Message Box */
/* Notifications */
#messages.notification {
padding-bottom: 10px;
}
.notification .msg {
margin-top: 0;
float: left;
width: 50px;
height: 50px;
clear: none;
}
.notification .profile-mask {
cursor: pointer;
}
.notification .profile-mask.with-border:hover, .notification .pop-active .profile-mask.with-border, .profile-mask.active-notification, .profile-mask.men-of-the-match {
background-image: url(../images/profile-mask-border.png);
}
.notification .msg .content {
border-color: #ffd9a8;
height: 12px;
font-size: 0;
width: 10px;
}
.notification .box.count {
position: relative;
width: 15px;
height: 15px;
font-size: 12px;
font-weight: normal;
left: 28px;
top: 20px;
line-height: 15px;
border-radius: 8px;
}
.content-panel .box.count {
position: absolute;
width: 15px;
height: 15px;
font-size: 12px;
font-weight: normal;
left: 28px;
top: 20px;
line-height: 15px;
border-radius: 8px;
}
.menu .box.count {
display: inline-block;
width: 20px;
font-weight: normal;
height: 21px;
line-height: 20px;
font-size: 11px;
margin-left: 10px;
border-radius: 10px;
}
.notification h2 {
font-size: 16px;
}
.none-display {
display: none !important;
}
#event-form .control-group, #profile-form .control-group {
width: 48%;
float: left;
}
#profile-form .control-group {
height: 95px;
}
.cancel-filter-sport {
width: 100%;
float: left;
font-size: 12px;
cursor: pointer;
}
.cancel-filter-sport button {
margin-right: 5px;
}
/* End notification */
.margin-top {
margin-top: 10px;
}
/* dashboard long name */
.top-profile h4 {
width: 420px !important;
}
#btn-more-message {
margin-left: 50%;
background-color: #cccccc;
left: -24px;
position: relative;
display: none;
}
.fb_iframe_widget.fb-like-box {
background: white;
margin: 15px;
margin-right: 0;
}
/* if not IE8 -> hide */
.onlyIE8 {
display: none;
}
/* -- Start Fix Ipad -- */
#header .btn-group{margin-right: 13px;}
.content .top.row {position: relative;z-index: 1;}
.close{width: 35px;height: 35px;margin-top: -2px!important;margin-right: -8px;}
@media only screen and (max-width: 1023px)
{
*{max-width:100%}
#header,#main{min-width:768px;}
#main{overflow:hidden}
#header .content{background-size: 200px;background-position-y: center;}
#header .menu li {width: 77px;}
#header .menu li a{background-size: 20px;background-position: 8px center;padding-left: 35px;font-size: 11px;width: auto;}
.menu li .search {width: 207px !important;max-width: 207px;}
#txt-search{width: 120px!important}
#header .content,#main{width:768px}
#main .menu.left,#header #home-link{width: 200px;}
#main > .content {width: 526px;padding-left:15px;padding-right:15px}
#main .menu.left .list,#main .menu.left .sub{width: 190px;}
#message-modal,#edit-location-modal{max-width:750px;right: 8px;margin-left: auto;}
.message-right-panel {height: 460px;width: 496px;}
#my-stats{width: 160px!important;font-size: 13px!important;}
.my-stats span {font-size: 18px!important;padding-left: 0!important;}
.profile-next-event{width: 117px!important;}
#address-find.small {width: 120px!important;}
.search-gmap select {width: 55px!important}
#find-gmap {width: 75px;}
#address-find {width: 185px;margin-right: 5px;}
.loading{max-width:100px!important}
#intro{width: 508px!important;}
.span4{width: 220px;}
.card .face{padding-left:10px;padding-right:10px}
.ws-list {left: -15px;max-width: 556px;}
.one-row .result-image {padding-left: 15px;}
.row-view-right.main {width: 331px}
.result-profile .row-view-right {width: 416px!important}
.creator-panel {width: 169px!important;}
.result-profile .left.main {width: 110px!important;margin-right: 45px!important;}
body .result-profile .left.event-time {width: 150px !important;margin-right: 50px!important;}
.csstransforms3d .face.back {width: 240px;max-width: 240px;right: 0;}
#id_last_name,#id_first_name{max-width: 206px;}
.msg .content{width: 443px!important;}
.msg .reply-list .content{width: 386px!important;}
.profile-next-event label {font-size: 17px!important;}
.profile-next-event{font-size: 11px!important}
.row-view-right .sub-info {width: 200px!important;}
.result-profile .result-name > span {width: 170px;float: left;}
#venue-map {width: 214px!important;height: 214px!important;}
#main .menu.left .list a{padding-left: 10px;}
.menu.left .list i {margin-right: 5px;}
.result-name .text {width: 212px!important;}
.popover {max-width: 768px;}
#message-modal .form-send-message .txt-private-reply {width: 482px!important}
#message-modal .msg .content {width: 403px!important;}
#message-modal .txt-private-reply {width: 472px!important}
.txt-reply{max-width: 512px;}
#map_canvas *{max-width:10000px!important}
.result-profile .result-name {overflow: hidden;}
#btn-edit-location-venue,#btn-remove-favourite{margin-bottom:10px}
#intro .panel-3{width:220px!important}
#intro .panel-4{font-size:26px!important}
.flipper .face{float: left!important;width: 200px!important;}
#home-slider {width: 758px!important}
}
/* -- Start Fix Firefox -- */
@-moz-document url-prefix() {
:focus {outline:none!important;}
::-moz-focus-inner {border:0!important;}
.msg .btn-delete{bottom: -23px}
.modal .msg .btn-delete {right: 2px}
#contact-us-form{margin-bottom:0}
#contact-us-modal-body form textarea {height: 50px !important;}
.modal-body {overflow-x: hidden;}
#event-form{margin-bottom: 0;}
body #event-form .sport_list {height: 100px !important}
#create-event {height: 362px!important}
#create-event-modal {max-height: 500px;}
.sport_list .btn-sport img{margin:0 12px;width:48px}
}
.text-ref {
padding-bottom: 20px;
}
.text-ref p {
margin: 0;
}
.new-event-count-0 {
display: none;
line-height: 16px;
}
.content .text-ref {
color: white;
margin-left: 266px;
margin-top: 10px;
font-size: 11px;
}
.row-view-right.main-info .sub-info div {
padding-bottom: 5px;
}
.row-view-right.main-info .sub-info .slogan {
margin-bottom: 10px;
}
.top.left .location {
padding-left: 57px;
font-style: italic;
font-size: 11px;
}
.btn-show-reply {
margin-top: 10px;
}
.location .icon-globe {
margin-left: 5px;
margin-top: -1px;
}
.btn-cancel-msg {
background: #c9c5c5;
margin-right: 10px;
}
.profile-img.small.public {
width: 22px;
height: 14px;
padding-top: 11px;
padding-left: 5px;
} | 0.340924 | 0.099733 |
*{margin:0px; padding:0px;}
li{list-style:none;}
body{color:#FFF; background-image:url(../images/hongbao/bg.jpg); background-repeat:no-repeat; background-position:center top; background-size:100%; background-color:#FBC405;}
#msg{position:fixed; width:100%; height:100%; z-index:9991; left:0px; top:0px; background-image:url(../images/hongbao/hongbaomsgbg.png); background-repeat:repeat; display:none; cursor:pointer;}
#msg dl{width:75px; height:107px; position:fixed; z-index:9992; left:50%; top:50%; margin-left:-37px; margin-top:-100px;}
#msg dl dt img{box-shadow:0px 0px 20px #FFFF00;-moz-box-shadow:0px 0px 20px #FFFF00;-webkit-box-shadow:0px 0px 20px #FFFF00;-moz-border-radius: 15px; -webkit-border-radius: 15px; border-radius:15px;}
#msg dl dd{width:24px; height:24px; text-align:center; line-height:24px; background-color:#FFF; color:#FF0000; position:absolute; right:-12px; top:-12px;-moz-border-radius: 100px; -webkit-border-radius: 100px; border-radius:100px; font-weight:bold; font-size:18px; font-family:Arial Black,Arial; border:solid 2px #FF0000;}
#msg span{display:block; position:fixed; left:0px; top:50%; width:100%; font-size:16px; text-align:center; color:#FFFF00; margin-top:30px;}
#msg span strong{color:#FF0000; font-family:Arial Black,Arial; font-size:32px;}
.hidebox{display:none;}
.hongbao img{position:fixed; z-index:9990; cursor:pointer;}
.cenbox{padding-left:20px; padding-right:20px;}
.cenbox .zjbox{margin-top:90%;-moz-border-radius: 10px; -webkit-border-radius: 10px; border-radius:10px; background-image:url(../images/hongbao/msgbg.png); background-repeat:repeat;border:solid 1px #FFFF00; padding:20px;}
.cenbox .zjbox ul{height:100px; overflow:hidden;}
.cenbox .zjbox ul li{padding-top:5px; padding-bottom:5px; font-size:0.9em;}
.cenbox .zjbox ul li small{font-size:0.6em; margin-right:1em;}
.cenbox .zjbox ul li span{color:#00FF00; margin-right:1em;}
.cenbox .zjbox ul li strong{color:#FFFF00;}
.cenbox .xxx{margin-top:30px;}
.cenbox .xxx table{text-align:center; background-color:#990000;}
.cenbox .xxx table td{padding:10px;}
.cenbox .xxx table tr:first-child td{font-weight:bold; background-color:#FFFF00; color:#FF0000; font-size:0.8em;}
.cenbox .xxx table tr td{background-color:#FF0000; font-size:0.6em;}
.cenbox .gz{margin-top:30px; padding-bottom:20px;}
.cenbox .gz h1{text-align:center; font-size:1.5em; color:#FF0000; border-bottom:solid 1px #FFFF00; padding-bottom:10px;}
.cenbox .gz p{padding-top:15px; color:#FF0000; font-size:0.6em;} | app.lanye.com/wap/css/bao.css | *{margin:0px; padding:0px;}
li{list-style:none;}
body{color:#FFF; background-image:url(../images/hongbao/bg.jpg); background-repeat:no-repeat; background-position:center top; background-size:100%; background-color:#FBC405;}
#msg{position:fixed; width:100%; height:100%; z-index:9991; left:0px; top:0px; background-image:url(../images/hongbao/hongbaomsgbg.png); background-repeat:repeat; display:none; cursor:pointer;}
#msg dl{width:75px; height:107px; position:fixed; z-index:9992; left:50%; top:50%; margin-left:-37px; margin-top:-100px;}
#msg dl dt img{box-shadow:0px 0px 20px #FFFF00;-moz-box-shadow:0px 0px 20px #FFFF00;-webkit-box-shadow:0px 0px 20px #FFFF00;-moz-border-radius: 15px; -webkit-border-radius: 15px; border-radius:15px;}
#msg dl dd{width:24px; height:24px; text-align:center; line-height:24px; background-color:#FFF; color:#FF0000; position:absolute; right:-12px; top:-12px;-moz-border-radius: 100px; -webkit-border-radius: 100px; border-radius:100px; font-weight:bold; font-size:18px; font-family:Arial Black,Arial; border:solid 2px #FF0000;}
#msg span{display:block; position:fixed; left:0px; top:50%; width:100%; font-size:16px; text-align:center; color:#FFFF00; margin-top:30px;}
#msg span strong{color:#FF0000; font-family:Arial Black,Arial; font-size:32px;}
.hidebox{display:none;}
.hongbao img{position:fixed; z-index:9990; cursor:pointer;}
.cenbox{padding-left:20px; padding-right:20px;}
.cenbox .zjbox{margin-top:90%;-moz-border-radius: 10px; -webkit-border-radius: 10px; border-radius:10px; background-image:url(../images/hongbao/msgbg.png); background-repeat:repeat;border:solid 1px #FFFF00; padding:20px;}
.cenbox .zjbox ul{height:100px; overflow:hidden;}
.cenbox .zjbox ul li{padding-top:5px; padding-bottom:5px; font-size:0.9em;}
.cenbox .zjbox ul li small{font-size:0.6em; margin-right:1em;}
.cenbox .zjbox ul li span{color:#00FF00; margin-right:1em;}
.cenbox .zjbox ul li strong{color:#FFFF00;}
.cenbox .xxx{margin-top:30px;}
.cenbox .xxx table{text-align:center; background-color:#990000;}
.cenbox .xxx table td{padding:10px;}
.cenbox .xxx table tr:first-child td{font-weight:bold; background-color:#FFFF00; color:#FF0000; font-size:0.8em;}
.cenbox .xxx table tr td{background-color:#FF0000; font-size:0.6em;}
.cenbox .gz{margin-top:30px; padding-bottom:20px;}
.cenbox .gz h1{text-align:center; font-size:1.5em; color:#FF0000; border-bottom:solid 1px #FFFF00; padding-bottom:10px;}
.cenbox .gz p{padding-top:15px; color:#FF0000; font-size:0.6em;} | 0.179279 | 0.080394 |
@import url("https://fonts.googleapis.com/css?family=Abril+Fatface|Raleway|Satisfy");
h1, h2, h3, h4, p {
margin: 0; }
h1 {
font-family: 'A<NAME>', cursive;
letter-spacing: 10px; }
h2 {
line-height: 1;
margin-bottom: 1rem;
font-family: 'Satisfy', cursive;
font-size: 2.6rem;
letter-spacing: 3px;
color: rgba(35, 35, 35, 0.9); }
h3 {
margin-top: 2rem;
font-family: 'Satisfy', sans-serif;
font-style: italic;
letter-spacing: 10px; }
h4 {
margin-bottom: 2rem;
font-family: 'Raleway', sans-serif;
font-style: italic;
letter-spacing: 2px;
color: rgba(170, 130, 115, 0.9); }
p {
line-height: 1.4;
margin-bottom: 1rem;
font-family: 'Raleway', sans-serif;
text-align: justify; }
* {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
body {
top: 0;
margin: 0;
background-color: #f8f8f8; }
nav {
z-index: 10;
position: fixed;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
min-height: 60px;
width: 100%;
background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
overflow: hidden;
padding: 1em;
font-family: "<NAME>", cursive;
font-size: 1.25rem;
letter-spacing: 2px;
border-bottom: 1px solid rgba(35, 35, 35, 0.9); }
nav a {
color: #FFF; }
nav a:visited {
color: #FFF; }
nav .menu__desktop {
display: none;
margin: 0 auto; }
nav .menu__desktop .desktop__links {
text-align: center; }
nav .menu__desktop .desktop__links a {
text-decoration: none;
display: inline-block;
padding: 0 2em; }
nav .menu__mobile {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
width: 100%; }
nav .menu__mobile .menu__toggle {
z-index: 20;
width: 40px;
cursor: pointer; }
nav .menu__mobile .menu__toggle .one, nav .menu__mobile .menu__toggle .two, nav .menu__mobile .menu__toggle .three {
width: 70%;
height: 2px;
background: #f8f8f8;
margin: 6px auto;
margin-left: 0; }
nav .menu__mobile .menu__toggle .two {
width: 50%; }
nav .menu__mobile .mobile__links {
display: none;
margin-left: 8rem;
width: 100%;
-ms-flex-line-pack: center;
align-content: center; }
nav .menu__mobile .mobile__links a {
text-decoration: none;
display: block;
float: left;
clear: left;
padding: 0.5em 0; }
@media only screen and (min-width: 850px) {
nav .menu__desktop {
display: block; }
nav .menu__mobile {
display: none; } }
.section__welcome {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
height: 100vh; }
.section__welcome .welcome__backdrop {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: -1;
height: 100%;
width: 100%;
background: url("../assets/images/hero_cafe.jpg");
background-attachment: fixed;
background-position: center center;
background-size: cover; }
@media only screen and (max-width: 413px) {
.section__welcome .welcome__backdrop {
background: url("../assets/images/hero_mobile.jpg");
background-attachment: fixed;
background-position: center center;
background-attachment: scroll; } }
.section__welcome .welcome__header {
-webkit-box-flex: 1;
-ms-flex: 1 1 32rem;
flex: 1 1 32rem;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin: 0 1rem;
text-align: center;
color: white; }
.section__welcome .welcome__header h1 {
font-size: 2.2rem; }
.section__welcome .welcome__header h3 {
font-size: 1.2rem; }
.section__welcome .welcome__header p {
margin-top: 2rem;
-ms-flex-item-align: baseline;
align-self: baseline; }
@media only screen and (min-width: 850px) {
.section__welcome .welcome__header h1 {
font-size: 5rem; }
.section__welcome .welcome__header h3 {
font-size: 2rem; } }
@media only screen and (min-width: 1200px) {
.section__welcome .welcome__header h1 {
font-size: 5rem; }
.section__welcome .welcome__header h3 {
font-size: 2rem; } }
.section__welcome .wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
position: absolute;
bottom: -66px;
width: 100%; }
.section__info {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-flow: row wrap;
flex-flow: row wrap;
margin: 8rem 0; }
@media only screen and (min-width: 1024px) {
.section__info {
margin: 8rem 0 0 0; } }
.section__info .info__text {
-webkit-box-flex: 1;
-ms-flex: 1 3 24rem;
flex: 1 3 24rem; }
.section__info .info__text h4, .section__info .info__text p {
margin-bottom: 2em; }
.section__info .info__image {
-webkit-box-flex: 1;
-ms-flex: 1 1 24rem;
flex: 1 1 24rem; }
.section__info .info__image img {
width: 100%;
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
.section__info .info__quote {
-webkit-box-flex: 1;
-ms-flex: 1 1 100%;
flex: 1 1 100%; }
.section__info .info__quote blockquote {
font-family: "Abril Fatface", serif;
font-size: 18px;
font-style: italic;
text-align: justify;
margin: 3em 0.5em 0em 0.5em;
padding: 0.35em 40px;
line-height: 1.45;
position: relative;
color: #383838; }
.section__info .info__quote blockquote:before {
display: block;
padding-left: 10px;
content: "\201C";
font-size: 80px;
position: absolute;
left: -20px;
top: -20px;
color: rgba(170, 130, 115, 0.9); }
.section__info .info__quote blockquote cite {
color: #999999;
font-size: 0.8rem;
display: block;
margin-top: 0.35rem; }
.section__info .info__quote blockquote cite:before {
content: "\2014 \2009"; }
@media only screen and (min-width: 850px) {
.section__info .info__quote blockquote {
margin: 4rem 6rem 0rem 6rem; } }
@media only screen and (min-width: 1024px) {
.section__info .info__text {
margin: 0 2% 0 7%; }
.section__info .info__image {
margin: 0 7% 0 2%; }
.section__info .info__quote blockquote {
margin: 2rem 6rem 2rem 6rem; } }
@media only screen and (min-width: 1200px) {
.section__info .info__quote blockquote {
top: -10rem;
margin: 4rem 0 0 6rem;
width: 40%; } }
@media only screen and (min-width: 1280px) {
.section__info .info__quote blockquote {
top: -12rem;
margin: 4rem 0 0 9rem;
width: 40%; } }
@media only screen and (max-width: 1279px) {
.section__info .info__text {
margin: 0 7%; } }
.section__feature {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-ms-flex-line-pack: center;
align-content: center;
background: url("../assets/images/images_feature.jpg") fixed;
background-size: cover; }
.section__feature .feature {
margin: 1rem;
background-color: #f8f8f8; }
.section__feature .feature__card {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); }
.section__feature .feature__card .card {
-webkit-box-flex: 1;
-ms-flex: 1 1 20rem;
flex: 1 1 20rem; }
.section__feature .feature__card .card__header {
width: 100%;
padding: 2rem; }
.section__feature .feature__card .card__image {
width: 100%;
overflow: hidden; }
.section__feature .feature__card .card__image img {
-o-object-fit: cover;
object-fit: cover;
height: 100%;
width: 100%; }
.section__feature .feature__card .card__text {
margin: 2rem; }
@media only screen and (min-width: 850px) {
.section__feature .feature__card {
margin: 4rem; } }
@media only screen and (min-width: 1024px) {
.section__feature .feature__card {
margin: 7rem; } }
@media only screen and (min-width: 1200px) {
.section__feature .feature__card {
margin: 10rem; } }
@media only screen and (min-width: 1280px) {
.section__feature .feature__card {
margin: 13rem; } }
@media only screen and (min-width: 1440px) {
.section__feature .feature__card {
margin: 16rem; } }
.section__gallery {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin: 8rem 2rem; }
.section__gallery .gallery {
-webkit-box-flex: 1;
-ms-flex: 1 1 16rem;
flex: 1 1 16rem;
margin: 0.5rem 1rem; }
.section__gallery .gallery__image {
overflow: hidden;
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
.section__gallery .gallery__image img {
display: block;
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover; }
.footer__banner {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-flow: column wrap;
flex-flow: column wrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 100%;
padding: 8rem 1rem;
background-image: linear-gradient(60deg, #29323c 0%, #485563 100%); }
.footer__banner h2 {
text-align: center;
color: #f8f8f8; }
.footer__banner .footer__email:hover {
background-color: rgba(170, 130, 115, 0.9); }
.footer__banner .footer__copy, .footer__banner a {
line-height: 1.6;
margin-top: 4rem;
font-family: "Raleway", sans-serif;
font-size: 1rem;
color: #f8f8f8;
text-decoration: none;
letter-spacing: 1px; }
.footer__banner .footer__copy a:hover, .footer__banner a a:hover {
background-color: rgba(170, 130, 115, 0.9); }
/*# sourceMappingURL=styles.css.map */ | src/styles/styles.css | @import url("https://fonts.googleapis.com/css?family=Abril+Fatface|Raleway|Satisfy");
h1, h2, h3, h4, p {
margin: 0; }
h1 {
font-family: 'A<NAME>', cursive;
letter-spacing: 10px; }
h2 {
line-height: 1;
margin-bottom: 1rem;
font-family: 'Satisfy', cursive;
font-size: 2.6rem;
letter-spacing: 3px;
color: rgba(35, 35, 35, 0.9); }
h3 {
margin-top: 2rem;
font-family: 'Satisfy', sans-serif;
font-style: italic;
letter-spacing: 10px; }
h4 {
margin-bottom: 2rem;
font-family: 'Raleway', sans-serif;
font-style: italic;
letter-spacing: 2px;
color: rgba(170, 130, 115, 0.9); }
p {
line-height: 1.4;
margin-bottom: 1rem;
font-family: 'Raleway', sans-serif;
text-align: justify; }
* {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
body {
top: 0;
margin: 0;
background-color: #f8f8f8; }
nav {
z-index: 10;
position: fixed;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
min-height: 60px;
width: 100%;
background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
overflow: hidden;
padding: 1em;
font-family: "<NAME>", cursive;
font-size: 1.25rem;
letter-spacing: 2px;
border-bottom: 1px solid rgba(35, 35, 35, 0.9); }
nav a {
color: #FFF; }
nav a:visited {
color: #FFF; }
nav .menu__desktop {
display: none;
margin: 0 auto; }
nav .menu__desktop .desktop__links {
text-align: center; }
nav .menu__desktop .desktop__links a {
text-decoration: none;
display: inline-block;
padding: 0 2em; }
nav .menu__mobile {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
width: 100%; }
nav .menu__mobile .menu__toggle {
z-index: 20;
width: 40px;
cursor: pointer; }
nav .menu__mobile .menu__toggle .one, nav .menu__mobile .menu__toggle .two, nav .menu__mobile .menu__toggle .three {
width: 70%;
height: 2px;
background: #f8f8f8;
margin: 6px auto;
margin-left: 0; }
nav .menu__mobile .menu__toggle .two {
width: 50%; }
nav .menu__mobile .mobile__links {
display: none;
margin-left: 8rem;
width: 100%;
-ms-flex-line-pack: center;
align-content: center; }
nav .menu__mobile .mobile__links a {
text-decoration: none;
display: block;
float: left;
clear: left;
padding: 0.5em 0; }
@media only screen and (min-width: 850px) {
nav .menu__desktop {
display: block; }
nav .menu__mobile {
display: none; } }
.section__welcome {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
height: 100vh; }
.section__welcome .welcome__backdrop {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: -1;
height: 100%;
width: 100%;
background: url("../assets/images/hero_cafe.jpg");
background-attachment: fixed;
background-position: center center;
background-size: cover; }
@media only screen and (max-width: 413px) {
.section__welcome .welcome__backdrop {
background: url("../assets/images/hero_mobile.jpg");
background-attachment: fixed;
background-position: center center;
background-attachment: scroll; } }
.section__welcome .welcome__header {
-webkit-box-flex: 1;
-ms-flex: 1 1 32rem;
flex: 1 1 32rem;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin: 0 1rem;
text-align: center;
color: white; }
.section__welcome .welcome__header h1 {
font-size: 2.2rem; }
.section__welcome .welcome__header h3 {
font-size: 1.2rem; }
.section__welcome .welcome__header p {
margin-top: 2rem;
-ms-flex-item-align: baseline;
align-self: baseline; }
@media only screen and (min-width: 850px) {
.section__welcome .welcome__header h1 {
font-size: 5rem; }
.section__welcome .welcome__header h3 {
font-size: 2rem; } }
@media only screen and (min-width: 1200px) {
.section__welcome .welcome__header h1 {
font-size: 5rem; }
.section__welcome .welcome__header h3 {
font-size: 2rem; } }
.section__welcome .wrapper {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
position: absolute;
bottom: -66px;
width: 100%; }
.section__info {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-flow: row wrap;
flex-flow: row wrap;
margin: 8rem 0; }
@media only screen and (min-width: 1024px) {
.section__info {
margin: 8rem 0 0 0; } }
.section__info .info__text {
-webkit-box-flex: 1;
-ms-flex: 1 3 24rem;
flex: 1 3 24rem; }
.section__info .info__text h4, .section__info .info__text p {
margin-bottom: 2em; }
.section__info .info__image {
-webkit-box-flex: 1;
-ms-flex: 1 1 24rem;
flex: 1 1 24rem; }
.section__info .info__image img {
width: 100%;
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
.section__info .info__quote {
-webkit-box-flex: 1;
-ms-flex: 1 1 100%;
flex: 1 1 100%; }
.section__info .info__quote blockquote {
font-family: "Abril Fatface", serif;
font-size: 18px;
font-style: italic;
text-align: justify;
margin: 3em 0.5em 0em 0.5em;
padding: 0.35em 40px;
line-height: 1.45;
position: relative;
color: #383838; }
.section__info .info__quote blockquote:before {
display: block;
padding-left: 10px;
content: "\201C";
font-size: 80px;
position: absolute;
left: -20px;
top: -20px;
color: rgba(170, 130, 115, 0.9); }
.section__info .info__quote blockquote cite {
color: #999999;
font-size: 0.8rem;
display: block;
margin-top: 0.35rem; }
.section__info .info__quote blockquote cite:before {
content: "\2014 \2009"; }
@media only screen and (min-width: 850px) {
.section__info .info__quote blockquote {
margin: 4rem 6rem 0rem 6rem; } }
@media only screen and (min-width: 1024px) {
.section__info .info__text {
margin: 0 2% 0 7%; }
.section__info .info__image {
margin: 0 7% 0 2%; }
.section__info .info__quote blockquote {
margin: 2rem 6rem 2rem 6rem; } }
@media only screen and (min-width: 1200px) {
.section__info .info__quote blockquote {
top: -10rem;
margin: 4rem 0 0 6rem;
width: 40%; } }
@media only screen and (min-width: 1280px) {
.section__info .info__quote blockquote {
top: -12rem;
margin: 4rem 0 0 9rem;
width: 40%; } }
@media only screen and (max-width: 1279px) {
.section__info .info__text {
margin: 0 7%; } }
.section__feature {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-ms-flex-line-pack: center;
align-content: center;
background: url("../assets/images/images_feature.jpg") fixed;
background-size: cover; }
.section__feature .feature {
margin: 1rem;
background-color: #f8f8f8; }
.section__feature .feature__card {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); }
.section__feature .feature__card .card {
-webkit-box-flex: 1;
-ms-flex: 1 1 20rem;
flex: 1 1 20rem; }
.section__feature .feature__card .card__header {
width: 100%;
padding: 2rem; }
.section__feature .feature__card .card__image {
width: 100%;
overflow: hidden; }
.section__feature .feature__card .card__image img {
-o-object-fit: cover;
object-fit: cover;
height: 100%;
width: 100%; }
.section__feature .feature__card .card__text {
margin: 2rem; }
@media only screen and (min-width: 850px) {
.section__feature .feature__card {
margin: 4rem; } }
@media only screen and (min-width: 1024px) {
.section__feature .feature__card {
margin: 7rem; } }
@media only screen and (min-width: 1200px) {
.section__feature .feature__card {
margin: 10rem; } }
@media only screen and (min-width: 1280px) {
.section__feature .feature__card {
margin: 13rem; } }
@media only screen and (min-width: 1440px) {
.section__feature .feature__card {
margin: 16rem; } }
.section__gallery {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin: 8rem 2rem; }
.section__gallery .gallery {
-webkit-box-flex: 1;
-ms-flex: 1 1 16rem;
flex: 1 1 16rem;
margin: 0.5rem 1rem; }
.section__gallery .gallery__image {
overflow: hidden;
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
.section__gallery .gallery__image img {
display: block;
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover; }
.footer__banner {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-flow: column wrap;
flex-flow: column wrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 100%;
padding: 8rem 1rem;
background-image: linear-gradient(60deg, #29323c 0%, #485563 100%); }
.footer__banner h2 {
text-align: center;
color: #f8f8f8; }
.footer__banner .footer__email:hover {
background-color: rgba(170, 130, 115, 0.9); }
.footer__banner .footer__copy, .footer__banner a {
line-height: 1.6;
margin-top: 4rem;
font-family: "Raleway", sans-serif;
font-size: 1rem;
color: #f8f8f8;
text-decoration: none;
letter-spacing: 1px; }
.footer__banner .footer__copy a:hover, .footer__banner a a:hover {
background-color: rgba(170, 130, 115, 0.9); }
/*# sourceMappingURL=styles.css.map */ | 0.347316 | 0.063106 |
*{
margin: 0;
padding:0;
}
img{
display: block;
}
a{
text-decoration:none;
color:#333;
}
li{
list-style:none;
}
body{
background: #fff;
background-size: 100%;
color:#333;
font-family: MicrosoftYaHei;
font-size: 14px;
}
.log_header{
width:100%;
height: 90px;
background: #4fc2b9;
/* box-shadow: 2px 2px 6px rgb(40,172,188);*/
}
#log_regis{
box-shadow: 2px 2px 6px #ededed;
}
.log_contents{
width: 1024px;
max-width: 1024px;
overflow: hidden;
margin: 0 auto;
text-align: center;
}
.log_contents>.user_name{
float: left;
line-height: 90px;
display: block;
font-size: 14px;
margin-left: 30px;
}
.log_header>.log_contents>.log_ico{
display: block;
width:55px;
height: 60px;
float: left;
margin: 14px 0px 14px 30px;
background: url('../img/indexicon.png') -46px -27px no-repeat;
}
.log_header>.log_contents>.log_res{
float: right;
overflow: hidden;
}
.log_header>.log_contents>.log_res>a{
font-weight: bold;
}
.log_header>.log_contents>.log_res>.ind-login,.ind-logreg{
font-size: 16px;
height: 100%;
color: #fff;
line-height: 90px;
float: left;
display: inline-block;
}
.log_header>.log_contents>.log_res>.ind-login{
margin-right: 15px;
}
.log_header>.log_contents>.log_res>.ind-logreg{
margin-left: 15px;
}
.log_header>.log_contents>.log_res>span{
display: block;
width: 2px;
height: 20px;
background: #fff;
float: left;
margin-top: 35px;
}
.reg_cont{
width: 100%;
height: auto;
overflow: hidden;
}
.reg_zoncon{
width: 1024px;
margin:0 auto;
overflow: hidden;
}
.reg_zoncon>.reg_jidu{
width: 732px;
height: 28px;
margin: 0 auto;
margin-top:60px;
background: url('../img/update.png') -18px -67px no-repeat;
}
.reg_zoncon>.regsuccess_ioc{
width: 64px;
height: 64px;
border-radius: 50%;
margin:0 auto;
margin-top: 59px;
background: url('../img/indexicon.png') -235px -411px no-repeat;
}
.reg_zoncon>p{
margin:0 auto;
margin-top: 30px;
font-size: 19px;
font-weight: bold;
margin-left: 411px;
}
.reg_zoncon>.regsuu_ti{
width: 380px;
height: 16px;
margin-left: 390px;
margin-top: 30px;
}
.reg_zoncon>.regsuu_ti>.regsucc_ioc{
width: 15px;
height: 15px;
float: left;
display: block;
background: url('../img/indexicon.png') -582px -51px no-repeat;
margin-right: 9px;
} | public/static/index/index/css/steps.css | *{
margin: 0;
padding:0;
}
img{
display: block;
}
a{
text-decoration:none;
color:#333;
}
li{
list-style:none;
}
body{
background: #fff;
background-size: 100%;
color:#333;
font-family: MicrosoftYaHei;
font-size: 14px;
}
.log_header{
width:100%;
height: 90px;
background: #4fc2b9;
/* box-shadow: 2px 2px 6px rgb(40,172,188);*/
}
#log_regis{
box-shadow: 2px 2px 6px #ededed;
}
.log_contents{
width: 1024px;
max-width: 1024px;
overflow: hidden;
margin: 0 auto;
text-align: center;
}
.log_contents>.user_name{
float: left;
line-height: 90px;
display: block;
font-size: 14px;
margin-left: 30px;
}
.log_header>.log_contents>.log_ico{
display: block;
width:55px;
height: 60px;
float: left;
margin: 14px 0px 14px 30px;
background: url('../img/indexicon.png') -46px -27px no-repeat;
}
.log_header>.log_contents>.log_res{
float: right;
overflow: hidden;
}
.log_header>.log_contents>.log_res>a{
font-weight: bold;
}
.log_header>.log_contents>.log_res>.ind-login,.ind-logreg{
font-size: 16px;
height: 100%;
color: #fff;
line-height: 90px;
float: left;
display: inline-block;
}
.log_header>.log_contents>.log_res>.ind-login{
margin-right: 15px;
}
.log_header>.log_contents>.log_res>.ind-logreg{
margin-left: 15px;
}
.log_header>.log_contents>.log_res>span{
display: block;
width: 2px;
height: 20px;
background: #fff;
float: left;
margin-top: 35px;
}
.reg_cont{
width: 100%;
height: auto;
overflow: hidden;
}
.reg_zoncon{
width: 1024px;
margin:0 auto;
overflow: hidden;
}
.reg_zoncon>.reg_jidu{
width: 732px;
height: 28px;
margin: 0 auto;
margin-top:60px;
background: url('../img/update.png') -18px -67px no-repeat;
}
.reg_zoncon>.regsuccess_ioc{
width: 64px;
height: 64px;
border-radius: 50%;
margin:0 auto;
margin-top: 59px;
background: url('../img/indexicon.png') -235px -411px no-repeat;
}
.reg_zoncon>p{
margin:0 auto;
margin-top: 30px;
font-size: 19px;
font-weight: bold;
margin-left: 411px;
}
.reg_zoncon>.regsuu_ti{
width: 380px;
height: 16px;
margin-left: 390px;
margin-top: 30px;
}
.reg_zoncon>.regsuu_ti>.regsucc_ioc{
width: 15px;
height: 15px;
float: left;
display: block;
background: url('../img/indexicon.png') -582px -51px no-repeat;
margin-right: 9px;
} | 0.229967 | 0.054702 |
body {
background-color: #222831;
height: 100%;
overflow-x: hidden;
}
h3 {
color: #c43a31;
}
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px grey;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: #07080a;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #1c1f27;
}
a {
color: rgb(0, 0, 0);
}
a:visited {
color: rgb(0, 0, 0);
}
a:hover {
color: #c43a31;
}
a:active {
color: #0000ff;
}
@media screen and (max-width: 813px) {
.main-container {
padding: 0 !important;
}
.second-container {
height: 60vh !important;
}
div#containerElement.element {
height: 19vh !important;
}
.first-container {
height: 37vh;
}
.dateslider-date-container .dateslider-date {
font-size: 22.6px !important;
}
.dateslider-button {
width: 25px !important;
height: 15px !important;
}
.covid-title {
font-size: 25px !important;
font-weight: bold !important;
padding: 0 !important;
}
.keyevents-text {
font-size: 15px !important;
}
.cardmedia-image {
display: none !important;
}
.cardmedia-content {
font-size: 11px !important;
}
.cardmedia-credit {
display: none !important;
}
.cardmedia-article-text {
font-size: 10px !important;
margin-bottom: 0 !important;
padding-left: 8px;
}
.cardmedia-container {
padding-bottom: 5px !important;
}
.infoheader-confirmed-num-text {
font-size: 20px !important;
text-align: center;
}
.infoheader-confirmed-text {
font-size: 10px !important;
}
.infoheader-confirmed-yes-num-text {
font-size: 15px !important;
text-align: center;
margin-right: 4px !important;
}
.infoheader-confirmed-yes-text {
display: none;
}
.infoheader-country-text {
font-size: 25px !important;
}
.infoheader-country-update-text {
font-size: 10px !important;
}
.infoheader-recovered-num-text {
font-size: 20px !important;
text-align: center;
margin-left: 17px !important;
}
.infoheader-recovered-text {
font-size: 10px !important;
padding-left: 2px;
margin-left: 17px !important;
}
.infoheader-recovered-yes-num-text {
font-size: 15px !important;
text-align: center;
margin-left: 10px !important;
}
.infoheader-recovered-yes-text {
display: none;
}
.mainmap {
height: 35vh !important;
}
.footer {
height: 0;
}
.footer-text {
font-size: 18px !important;
}
} | public/styles.css | body {
background-color: #222831;
height: 100%;
overflow-x: hidden;
}
h3 {
color: #c43a31;
}
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px grey;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: #07080a;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #1c1f27;
}
a {
color: rgb(0, 0, 0);
}
a:visited {
color: rgb(0, 0, 0);
}
a:hover {
color: #c43a31;
}
a:active {
color: #0000ff;
}
@media screen and (max-width: 813px) {
.main-container {
padding: 0 !important;
}
.second-container {
height: 60vh !important;
}
div#containerElement.element {
height: 19vh !important;
}
.first-container {
height: 37vh;
}
.dateslider-date-container .dateslider-date {
font-size: 22.6px !important;
}
.dateslider-button {
width: 25px !important;
height: 15px !important;
}
.covid-title {
font-size: 25px !important;
font-weight: bold !important;
padding: 0 !important;
}
.keyevents-text {
font-size: 15px !important;
}
.cardmedia-image {
display: none !important;
}
.cardmedia-content {
font-size: 11px !important;
}
.cardmedia-credit {
display: none !important;
}
.cardmedia-article-text {
font-size: 10px !important;
margin-bottom: 0 !important;
padding-left: 8px;
}
.cardmedia-container {
padding-bottom: 5px !important;
}
.infoheader-confirmed-num-text {
font-size: 20px !important;
text-align: center;
}
.infoheader-confirmed-text {
font-size: 10px !important;
}
.infoheader-confirmed-yes-num-text {
font-size: 15px !important;
text-align: center;
margin-right: 4px !important;
}
.infoheader-confirmed-yes-text {
display: none;
}
.infoheader-country-text {
font-size: 25px !important;
}
.infoheader-country-update-text {
font-size: 10px !important;
}
.infoheader-recovered-num-text {
font-size: 20px !important;
text-align: center;
margin-left: 17px !important;
}
.infoheader-recovered-text {
font-size: 10px !important;
padding-left: 2px;
margin-left: 17px !important;
}
.infoheader-recovered-yes-num-text {
font-size: 15px !important;
text-align: center;
margin-left: 10px !important;
}
.infoheader-recovered-yes-text {
display: none;
}
.mainmap {
height: 35vh !important;
}
.footer {
height: 0;
}
.footer-text {
font-size: 18px !important;
}
} | 0.356447 | 0.071461 |
@import url(https://fonts.googleapis.com/css2?family=Nunito:wght@100;
200;300;400;500;600;700;800;900&display=swap);body {
background-color: #F9F9F9 !important;
font-family: "Nunito", sans-serif;
color: #545454;
}
* {
box-sizing: border-box;
margin: 0px;
color: #545454;
}
hr {
margin-top: 30px;
margin-bottom: 50px;
border: 1px solid rgba(238, 238, 238, 0.466);
}
.invalid-feedback i {
color: #DE2727;
margin-right: 10px;
}
.invalid-feedback strong {
color: #DE2727 !important;
font-size: 14px !important;
padding-left: 10px;
font-weight: 400;
}
a {
text-decoration: none;
color: #545454;
}
.btn {
padding: 10px 20px;
border-radius: 10px;
}
.btn-default {
background-color: #E0F0E8;
color: #028144;
transition: all 0.3s;
}
.btn-default:hover {
background-color: #028144;
color: white;
}
.btn-default:hover i {
color: white;
}
.btn-default i {
color: #028144;
}
.btn-primary {
background-color: #028144;
color: white;
transition: all 0.3s;
border: none;
}
.btn-primary:hover {
opacity: 0.9;
}
.btn-edit {
background-color: #0073EF;
color: white;
transition: all 0.3s;
border: none;
}
.btn-edit:hover {
opacity: 0.9;
color: white;
}
.btn-trash {
background-color: #DC3545;
color: white;
transition: all 0.3s;
border: none;
}
.btn-trash i {
color: white;
}
.btn-trash:hover {
opacity: 0.9;
color: white;
}
.btn-underline {
text-decoration: underline;
color: #028144;
display: block;
text-align: center;
}
.center-container {
padding-left: 10px;
padding-right: 10px;
width: 100%;
max-width: 1200px;
margin-right: auto;
margin-left: auto;
}
.admin-dashboard {
position: fixed;
background-color: #DE2727;
bottom: 20px;
left: -210px;
width: 250px;
display: flex;
padding: 10px;
justify-content: space-between;
z-index: 4;
background-color: #DDDDDD;
color: #028144;
transition: left 0.3s;
}
.admin-dashboard i {
color: #028144;
}
.admin-dashboard:hover {
left: 0px;
}
#hidden {
position: fixed;
display: none;
right: 0;
bottom: 20px;
padding: 10px 50px 10px 10px;
background-color: #DDDDDD;
color: #028144;
box-shadow: 0 4px 10px -4px #aaa;
border-bottom-left-radius: 5px;
border-top-left-radius: 5px;
font-size: 20px;
z-index: 2;
cursor: pointer;
}
.back-svg-button {
padding: 10px;
position: absolute;
left: 5px;
top: 5px;
font-size: 20px;
color: #028144;
}
.back-svg-button:hover {
background-color: #E0F0E8;
}
.paggination {
display: flex;
justify-content: center;
padding: 10px;
}
.paggination ul {
padding: 0px;
list-style: none;
}
.paggination ul li {
float: left;
padding: 5px 10px;
margin: 5px;
background-color: #E0F0E8;
}
.paggination ul .paggination-active {
background-color: #028144;
color: white;
}
.flex-row {
margin: 100px 0px 20px 0px;
display: flex;
justify-content: space-between;
align-items: center;
}
.form {
width: 400px;
display: grid;
grid-template-columns: 1fr 50px;
}
.form input {
padding: 15px;
border: none;
}
.form input:focus {
outline: none;
}
.form button {
border: none;
background-color: white;
}
.form button svg {
font-size: 20px;
}
.search-div {
margin-top: 80px;
height: 200px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.search-div form {
margin-top: 20px;
width: 500px;
height: 50px;
background-color: white;
}
.li-active {
background-color: #028144;
color: white;
}
header {
z-index: 2;
width: 100%;
height: 80px;
position: fixed;
top: 0;
background-color: white;
border-bottom: 1px solid #f0f0f0;
}
header nav {
display: flex;
justify-content: space-between;
align-items: center;
}
header nav .nav-left-logo {
padding-top: 15px;
height: 80px;
}
header nav .nav-left-logo img {
height: 50px;
}
header nav .fa-bars {
font-size: 20px;
display: none;
height: 50px;
width: 50px;
text-align: center;
line-height: 50px;
cursor: pointer;
}
header nav .nav-right-menu ul {
margin: 0;
padding: 0;
list-style: none;
}
header nav .nav-right-menu ul li {
cursor: pointer;
float: left;
font-weight: 600;
padding: 10px 15px;
border-radius: 10px;
margin-left: 5px;
transition: all 0.3s;
}
header nav .nav-right-menu ul li:hover {
background-color: #E0F0E8;
color: #028144;
}
header nav .nav-right-menu ul .dropdown {
position: relative;
}
header nav .nav-right-menu ul .dropdown .current-language {
display: flex;
}
header nav .nav-right-menu ul .dropdown .current-language img {
height: 20px;
padding-right: 10px;
}
header nav .nav-right-menu ul .dropdown-content {
display: none;
position: absolute;
width: 150px;
left: -14px;
top: 33px;
padding: 10px 0px;
}
header nav .nav-right-menu ul .dropdown-content .dropdown-list {
font-size: 15px;
background-color: white;
padding: 10px 0px;
box-shadow: 0px 0px 3px #e7e7e7;
border-radius: 10px;
}
header nav .nav-right-menu ul .dropdown-content .dropdown-list a {
font-weight: 400;
padding: 5px 10px;
}
header nav .nav-right-menu ul .dropdown-content .dropdown-list a:hover {
background-color: #E0F0E8;
color: #028144;
}
header nav .nav-right-menu ul .dropdown-content .dropdown-language {
width: 100px;
}
header nav .nav-right-menu ul .dropdown-content .dropdown-language .dropdown-language-item {
display: flex;
justify-content: space-evenly;
}
header nav .nav-right-menu ul .dropdown-content .dropdown-language .dropdown-language-item img {
height: 20px;
}
header nav .nav-right-menu ul .li-dropdown a {
display: block;
}
header nav .nav-right-menu ul .li-dropdown:hover .dropdown-content {
display: block;
}
.calltoaction-container {
margin-top: 80px;
height: calc(100vh - 80px);
max-height: 800px;
width: 100%;
display: grid;
grid-template-columns: 1fr 500px;
grid-column-gap: 50px;
}
.calltoaction-container .cta-left {
padding-top: 100px;
}
.calltoaction-container .cta-left h1 {
font-size: 45px;
}
.calltoaction-container .cta-left .btn {
padding: 20px 40px;
font-weight: 900;
text-transform: uppercase;
display: block;
width: 350px;
text-align: center;
margin-top: 30px;
}
.calltoaction-container .cta-right {
min-height: 200px;
background-image: url(/images/ilustration.png?238ae9f76888647b3a1c96daf4923854);
background-position: center;
background-repeat: no-repeat;
background-size: contain;
}
.card-list {
max-width: 1000px;
display: grid;
}
.card-list .card {
margin-bottom: 20px;
background-color: white;
box-shadow: 3px 3px 20px rgba(226, 226, 226, 0.808);
display: grid;
grid-template-columns: 200px 1fr;
transition: all 0.3s;
}
.card-list .card:hover {
box-shadow: 0px 0px 20px #b6b6b6;
}
.card-list .card .card-thumbnail {
width: 200px;
height: 150px;
-o-object-fit: cover;
object-fit: cover;
}
.card-list .card .card-description {
display: flex;
flex-direction: column;
padding: 20px;
}
.card-list .card .card-description h3 {
margin: 0px;
}
.card-list .card .card-description .card-description-footer {
display: flex;
align-items: flex-end;
justify-content: flex-end;
margin-top: auto;
}
.card-list .card .card-description .card-description-footer a {
position: relative;
}
.slideshow-container {
margin-top: 80px;
}
.slideshow-container .swiper-container {
margin-top: 30px;
max-height: 600px;
height: auto;
}
.slideshow-container .swiper-container .swiper-wrapper img {
width: 100%;
-o-object-fit: contain;
object-fit: contain;
-o-object-position: center;
object-position: center;
}
.card-grid {
display: grid;
}
.card-grid .card-grid-group {
margin-bottom: 20px;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 20px;
}
.card-grid .card-grid-group .card {
background-color: white;
position: relative;
border: 1px solid #F0F0F0;
display: grid;
grid-template-rows: 200px 1fr;
}
.card-grid .card-grid-group .card .card-status {
position: absolute;
right: 5px;
top: 5px;
color: white;
padding: 10px;
border: 2px solid #dddddd;
border-radius: 50%;
font-weight: bold;
text-transform: uppercase;
}
.card-grid .card-grid-group .card .card-status-open {
background-color: #028144;
}
.card-grid .card-grid-group .card .card-status-close {
background-color: #da1f1f;
}
.card-grid .card-grid-group .card .card-thumbnail {
width: 100%;
height: 200px;
-o-object-fit: cover;
object-fit: cover;
-o-object-position: center;
object-position: center;
}
.card-grid .card-grid-group .card .card-description {
background-color: white;
display: flex;
flex-direction: column;
padding: 20px;
}
.card-grid .card-grid-group .card .card-description h3 {
margin: 0;
}
.card-grid .card-grid-group .card .card-description p {
font-size: 14px;
margin-top: 10px;
}
.card-grid .card-grid-group .card .card-description .card-description-footer {
display: flex;
flex-direction: column;
margin-top: auto;
}
.card-grid .card-grid-group .card .card-description .card-description-footer .btn {
margin-top: 20px;
text-align: center;
}
.services-container {
margin: 100px 0px 50px 0px;
min-height: 200px;
height: auto;
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-gap: 50px;
}
.services-container .service-item {
height: 100%;
position: relative;
background-color: white;
border-radius: 10px;
box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.164);
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}
.services-container .service-item p {
background-color: #028144;
width: 100%;
height: 100%;
position: absolute;
margin-bottom: -500px;
background-color: #028144;
color: white;
font-weight: bold;
display: flex;
justify-content: center;
align-items: center;
transition: margin-bottom 0.5s ease-in-out;
}
.services-container .service-item:hover p {
margin-bottom: 0px;
}
.vision-container {
padding: 40px 0px;
margin: 50px auto;
max-width: 1000px;
}
.vision-container h1 {
text-align: center;
}
.partners-container {
border-bottom: 1px solid #DCDCDC;
background-color: #F6F6F6;
padding: 50px 0px;
}
.partners-container h3 {
margin-bottom: 40px;
text-align: center;
}
.partners-container .partners {
display: flex;
justify-content: space-between;
}
.partners-container .partners img {
height: 100px;
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
opacity: 0.8;
cursor: pointer;
transition: transform 0.3s, opacity 0.3s, -webkit-filter 0.3s;
transition: transform 0.3s, filter 0.3s, opacity 0.3s;
transition: transform 0.3s, filter 0.3s, opacity 0.3s, -webkit-filter 0.3s;
}
.partners-container .partners img:hover {
transform: scale(1.1);
-webkit-filter: grayscale(0%);
filter: grayscale(0%);
opacity: 1;
}
.partners-container .partners :nth-child(4) {
transform: scale(1.1);
}
.partners-container .partners :nth-child(4):hover {
transform: scale(1.2);
}
footer {
background-color: #F6F6F6;
color: #545454;
}
footer .center-container {
padding: 40px 0px 40px 0px;
border-bottom: 1px solid #DCDCDC;
display: grid;
grid-template-columns: 150px 1fr 1fr 2fr;
grid-column-gap: 20px;
}
footer .center-container img {
width: 100%;
}
footer .center-container h3 {
padding-bottom: 10px;
}
footer .center-container ul {
font-size: 14px;
list-style: none;
}
footer .center-container ul li:hover {
text-decoration: underline;
}
footer .center-container ul form {
background-color: #E0F0E8;
display: grid;
grid-template-columns: 1fr 40px;
}
footer .center-container ul form .form-input {
border: 0px;
padding: 15px 0px 15px 15px;
outline: none;
}
footer .center-container ul form .form-button {
background-color: white;
border: 0px;
font-size: 20px;
display: flex;
align-items: center;
cursor: pointer;
outline: none;
}
footer .center-container ul form i {
color: #028144;
}
footer .center-container ul .social-platform {
margin-top: 20px;
display: flex;
justify-content: space-evenly;
}
footer .center-container ul .social-platform a {
font-size: 20px;
background-color: #E0F0E8;
height: 50px;
width: 50px;
line-height: 50px;
text-align: center;
border-radius: 50%;
transition: all 0.3s;
cursor: pointer;
}
footer .center-container ul .social-platform a:nth-child(1) {
color: #4267B2;
}
footer .center-container ul .social-platform a:nth-child(2) {
color: #1DA1F2;
}
footer .center-container ul .social-platform a:nth-child(3) {
color: #D9003F;
}
footer .center-container ul .social-platform a:hover {
box-shadow: 5px 5px 10px lightgrey;
}
footer .footer-bottom {
text-align: center;
padding: 20px;
font-size: 13px;
}
.mobile-menu {
transition: width 0.2s;
position: fixed;
top: 0;
overflow: hidden;
width: 0px;
max-height: calc100vh;
background-color: white;
z-index: 200;
}
.mobile-menu .header {
background-color: white;
height: 80px;
display: flex;
justify-content: flex-end;
align-items: center;
}
.mobile-menu .header .fa-times {
font-size: 20px;
height: 50px;
width: 50px;
text-align: center;
line-height: 50px;
cursor: pointer;
}
.mobile-menu .menu {
height: calc(100vh - 80px);
display: flex;
flex-direction: column;
}
.mobile-menu .menu ul {
padding: 0px 20px;
margin: 0px;
list-style: none;
}
.mobile-menu .menu ul .btn {
padding: 5px 20px;
}
.mobile-menu .menu .lang {
padding: 40px;
display: flex;
justify-content: space-evenly;
}
.mobile-menu .menu .lang img {
width: 30px;
}
.iframe-contact {
display: block;
width: 100%;
height: calc(100vh - 80px);
margin-top: 80px;
}
.contact-description {
background-color: #F6F6F6;
padding: 100px;
}
.contact-description .center-container {
width: 100%;
max-width: 1000px;
display: grid;
grid-template-columns: 1fr 300px;
grid-gap: 50px;
}
.contact-description .center-container .form-comment {
max-width: 900px;
width: 100%;
}
.contact-description .center-container .form-comment .input-group {
display: grid;
margin-top: 20px;
}
.contact-description .center-container .form-comment .input-group-two {
display: grid;
grid-template-columns: 1fr 1fr;
grid-column-gap: 20px;
}
.contact-description .center-container .form-comment .input-text {
border: 1px solid #E9E9E9;
padding: 15px;
}
.contact-description .center-container .form-comment .input-text:focus {
outline: 1px solid #028144;
background-color: #E0F0E8;
}
.contact-description .center-container .form-comment .input-textarea {
border: none;
padding: 15px;
border: 1px solid #E9E9E9;
}
.contact-description .center-container .form-comment .input-textarea:focus {
outline: 1px solid #028144;
background-color: #E0F0E8;
}
.contact-description .center-container .form-comment button {
border: none;
border-radius: 0px;
max-width: 200px;
cursor: pointer;
}
.contact-description .center-container ul {
margin: 0px;
padding: 0px;
list-style: none;
}
.contact-description .center-container ul li {
margin-bottom: 10px;
font-size: 15px;
text-align: right;
}
.news-div {
margin-top: 55px;
margin-bottom: 50px;
min-height: 200px;
height: auto;
}
.news-div .img-cover {
height: 400px;
background-color: #da1f1f;
}
.news-div .img-cover img {
width: 100%;
height: 400px;
-o-object-fit: cover;
object-fit: cover;
z-index: -1;
}
.news-div .news-content {
position: relative;
max-width: 900px;
width: 100%;
height: auto;
padding: 40px;
background-color: white;
margin: -50px auto 0px auto;
z-index: 1;
position: relative;
border: 1px solid #E9E9E9;
}
.news-div .news-content small {
font-size: 13px;
}
.news-div .news-content p {
font-size: 15px;
}
.news-div .form-comment {
max-width: 900px;
width: 100%;
margin: 50px auto 0px auto;
}
.news-div .form-comment .input-group {
display: grid;
margin-top: 20px;
}
.news-div .form-comment .input-group-two {
display: grid;
grid-template-columns: 1fr 1fr;
grid-column-gap: 20px;
}
.news-div .form-comment .input-text {
border: 1px solid #E9E9E9;
padding: 15px;
}
.news-div .form-comment .input-text:focus {
outline: 1px solid #028144;
background-color: #E0F0E8;
}
.news-div .form-comment .input-textarea {
border: none;
padding: 15px;
border: 1px solid #E9E9E9;
}
.news-div .form-comment .input-textarea:focus {
outline: 1px solid #028144;
background-color: #E0F0E8;
}
.news-div .form-comment button {
border: none;
border-radius: 0px;
max-width: 200px;
cursor: pointer;
}
.news-div .news-comment {
margin: 50px auto 20px auto;
max-width: 900px;
width: 100%;
display: grid;
grid-row-gap: 20px;
}
.news-div .news-comment .comment {
background-color: white;
padding: 20px;
box-shadow: 2px 2px 10px rgba(211, 211, 211, 0.473);
}
.news-div .news-comment .comment small {
font-size: 12px;
}
.news-div .news-comment .comment p {
font-size: 15px;
}
.auction-div .auction-content {
background-color: white;
margin: 100px auto 20px auto;
max-width: 900px;
width: 100%;
padding: 40px;
position: relative;
border: 1px solid #E9E9E9;
}
.auction-div .auction-content small {
font-size: 13px;
}
.auction-div .auction-content p {
font-size: 15px;
}
.auction-div .auction-content .auction-footer {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 100px;
}
.auction-div .auction-content .auction-footer a i {
margin-right: 10px;
}
.cover-background {
background-image: url(/images/coverbg.jpg?7517c8206968917b43d426863922d59c);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
background-position-y: top;
height: 200px;
width: 100%;
margin-top: 80px;
display: flex;
justify-content: center;
align-items: center;
}
.cover-background h2 {
font-size: 25px;
text-transform: uppercase;
margin-top: -50px;
color: #f1f1f1;
}
.cover-background-noimage {
height: 200px;
width: 100%;
margin-top: 80px;
display: flex;
justify-content: center;
align-items: center;
}
.cover-background-noimage h2 {
font-size: 25px;
text-transform: uppercase;
margin-top: -50px;
color: #545454;
}
main {
min-height: 100px;
margin-top: -50px;
margin-bottom: 20px;
display: grid;
align-items: start;
grid-template-columns: 1fr 350px;
grid-column-gap: 20px;
}
main .bg-white {
background-color: white;
padding: 40px;
box-shadow: 1px 3px 6px #3f3f3f18;
border-radius: 10px;
grid-template-columns: 1fr !important;
}
main .bg-white .p-flex-center {
display: flex;
justify-content: center;
padding: 20px;
}
main .bg-white .frame {
width: 100%;
height: 400px;
margin-bottom: 50px;
}
main .bg-white .frame:last-child {
margin-bottom: 0px;
}
main .main-left-full {
grid-column-start: 1;
grid-column-end: 3;
padding: 10px !important;
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-gap: 20px;
}
main .main-left-full .gallery-image-item {
overflow: hidden;
cursor: url("/images/plus_cursor.png") 25 25, pointer;
box-shadow: 1px 3px 6px #3f3f3f18;
}
main .main-left-full .gallery-image-item img {
display: block;
width: 100%;
height: 200px;
-o-object-position: center;
object-position: center;
-o-object-fit: cover;
object-fit: cover;
background-color: white;
transition: transform 0.4s;
}
main .main-left-full .gallery-image-item img:hover {
transform: scale(1.05);
}
main .main-left-full .schedule-button {
width: 100%;
padding: 20px;
font-size: 15px;
border: none;
border-radius: 5px;
font-weight: bold;
outline: none;
cursor: url("/images/plus_cursor.png") 25 25, pointer;
}
main .main-left .h1-style {
position: relative;
margin-bottom: 30px;
}
main .main-left .h1-style:after {
content: "";
position: absolute;
height: 2px;
width: 70px;
background-color: #028144;
bottom: 0;
left: 0;
}
main .main-left p {
margin-bottom: 10px;
text-align: justify;
}
main .main-left ul {
padding: 0px 0px 20px 20px;
list-style: none;
}
main .main-left a:hover {
color: #028144;
text-decoration: underline;
}
main .main-left .top-service {
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 30px;
}
main .main-left .top-service .service-item {
padding: 30px;
background-color: #E0F0E8;
box-shadow: 1px 3px 6px #3f3f3f18;
border-radius: 10px;
min-height: 100px;
height: auto;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
main .main-left .top-service .service-item i {
padding: 30px;
font-size: 25px;
border-radius: 50%;
margin-bottom: 20px;
}
main .main-left .top-service .service-item:hover {
cursor: pointer;
transition: all 0.3s;
}
main .main-left .service {
padding-top: 80px;
display: flex;
flex-direction: column;
}
main .main-left .service img {
width: 100%;
height: 400px;
-o-object-fit: cover;
object-fit: cover;
}
main .main-left .service .service-content {
background-color: white;
box-shadow: 1px 3px 6px #3f3f3f18;
padding: 20px 30px 30px 30px;
}
main .main-left .service .service-content h2 {
text-align: center;
margin-bottom: 30px;
}
main .main-left .service .service-content p {
font-size: 15px;
text-align: justify;
}
main .main-right {
display: grid;
grid-row-gap: 20px;
}
main .main-right .btn-no-style {
margin-top: 0px;
background-color: transparent;
text-align: center;
color: #028144;
}
main .main-right .btn-no-style:hover {
background-color: #E0F0E8;
}
main .main-right .component {
background-color: white;
padding: 20px 20px 10px 20px;
display: flex;
flex-direction: column;
border-radius: 10px;
box-shadow: 1px 3px 6px #3f3f3f18;
}
main .main-right .component h4 {
text-align: center;
padding-bottom: 20px;
text-transform: uppercase;
font-size: 20px;
}
main .main-right .component .component-item {
display: grid;
grid-template-columns: 70px 1fr;
grid-column-gap: 10px;
border-bottom: 1px solid rgba(211, 211, 211, 0.342);
margin-bottom: 10px;
padding-bottom: 10px;
}
main .main-right .component .component-item img {
width: 70px;
height: 70px;
-o-object-fit: cover;
object-fit: cover;
-o-object-position: center;
object-position: center;
}
main .main-right .component .component-item .component-item-description a {
font-size: 15px;
}
main .main-right .component .component-item .component-item-description a:hover {
text-decoration: underline;
}
main .main-right .component .component-item .component-item-description small {
font-size: 13px;
font-weight: bold;
color: #028144;
}
main .main-right .component .component-item:nth-child(5) {
border-bottom: none;
}
main .main-right .component-auction {
display: grid;
grid-row-gap: 10px;
}
main .main-right .component-auction .auction-item {
padding: 15px;
background-color: white;
box-shadow: 1px 3px 6px #3f3f3f18;
border-radius: 10px;
display: grid;
grid-template-columns: 15px 1fr;
grid-column-gap: 10px;
align-items: center;
}
main .main-right .component-auction .auction-item span {
width: 15px;
height: 15px;
background-color: #028144;
border-radius: 50%;
}
main .main-right .component-auction .auction-item p {
font-size: 15px;
}
main .main-right .component-gallery {
display: grid;
}
main .main-right .component-gallery div {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 10px;
border-radius: 10px;
margin: 20px 0px 10px 0px;
}
main .main-right .component-gallery .gallery-image {
width: 100%;
height: 100px;
-o-object-fit: cover;
object-fit: cover;
}
@media (max-width: 768px) {
.calltoaction-container {
grid-template-columns: 1fr !important;
}
.calltoaction-container .cta-left {
grid-row-start: 2;
}
.calltoaction-container .cta-left h1 {
font-size: 25px !important;
width: 70%;
text-align: center;
margin-right: auto;
margin-left: auto;
}
.calltoaction-container .cta-left .btn {
padding: 15px 30px;
width: 70%;
margin-right: auto;
margin-left: auto;
}
.calltoaction-container .cta-right {
margin-top: 20px;
}
.card-grid .card-grid-group {
grid-template-columns: 1fr 1fr;
}
.card-grid .card-grid-group {
grid-template-columns: 1fr 1fr;
}
.news-div .img-cover {
margin-left: -10px !important;
margin-right: -10px !important;
height: 300px;
}
.news-div .img-cover img {
height: 300px;
}
.news-div .news-content h2 {
font-size: 22px;
}
.news-div .form-comment {
width: 100%;
}
.news-div .form-comment .input-group-two {
grid-template-columns: 1fr;
grid-row-gap: 20px;
}
.news-div .form-comment button {
max-width: 100%;
}
.news-div .news-comment {
width: 100%;
}
main .bg-white .frame {
width: 100%;
height: 300px;
margin-bottom: 30px;
}
main .bg-white .frame:last-child {
margin-bottom: 0px;
}
main .main-left-full {
grid-template-columns: repeat(2, 1fr);
}
.services-container {
grid-template-columns: repeat(2, 1fr);
justify-items: center;
}
.services-container .service-item {
height: 100%;
width: 200px;
min-height: 200px;
}
.partners-container .partners {
display: grid;
grid-template-columns: 1fr 1fr;
grid-row-gap: 20px;
justify-items: center;
}
.partners-container .partners img {
height: 120px;
}
footer .center-container {
padding: 40px 40px;
grid-template-columns: 1fr 1fr !important;
grid-row-gap: 50px;
}
footer .center-container ul {
padding: 0px;
}
footer .center-container ul h3 {
text-transform: uppercase;
}
footer .newsletter {
grid-column-start: 1;
grid-column-end: 3;
}
}
@media (max-width: 576px) {
.search-div {
height: 250px;
}
.search-div h1 {
font-size: 25px;
}
.search-div form {
width: 100%;
}
.calltoaction-container {
grid-template-columns: 1fr !important;
}
.calltoaction-container .cta-left {
grid-row-start: 2;
}
.calltoaction-container .cta-left h1 {
font-size: 25px !important;
width: 80%;
}
.calltoaction-container .cta-left .btn {
width: 100%;
}
.calltoaction-container .cta-right {
margin-top: 20px;
height: 200px;
}
.flex-row {
margin: 50px 0px 20px 0px;
display: flex;
flex-direction: column;
align-items: flex-start;
}
.flex-row h2 {
font-size: 20px;
margin-bottom: 5px;
}
.flex-row form {
width: 100%;
}
.flex-row div {
font-size: 15px;
}
.card-list .card {
margin-left: auto;
margin-right: auto;
max-width: 350px;
display: grid;
grid-template-columns: 1fr;
border-radius: 10px;
}
.card-list .card .card-thumbnail {
width: 100%;
height: 150px;
-o-object-fit: cover;
object-fit: cover;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
.card-list .card .card-description {
display: grid;
grid-template-columns: 1fr;
}
.card-list .card .card-description h3 {
font-size: 17px;
}
.card-list .card .card-description small {
grid-row-start: 1;
font-size: 12px;
}
.card-list .card .card-description .card-description-footer {
display: flex;
flex-direction: column;
}
.card-list .card .card-description .card-description-footer a {
margin-top: 30px;
width: 100%;
text-align: center;
}
.card-grid .card-grid-group {
grid-template-columns: 1fr;
}
.card-grid .card-grid-group .card {
box-shadow: 3px 3px 20px rgba(226, 226, 226, 0.808);
position: relative;
display: flex;
padding: 0px 0px;
border-radius: 10px;
}
.card-grid .card-grid-group .card .card-thumbnail {
display: none;
}
.card-grid .card-grid-group .card .card-description {
border-radius: 10px;
}
.card-grid .card-grid-group .card .card-description h3 {
margin: 0;
font-size: 16px;
font-weight: 500;
}
.card-grid .card-grid-group .card .card-description small {
display: none;
}
.card-grid .card-grid-group .card .card-description p {
display: none;
}
.card-grid .card-grid-group .card .card-description .card-description-footer {
display: none;
}
.news-div .news-content {
padding: 40px 20px 20px 20px;
}
.auction-div .auction-content {
padding: 40px 20px 20px 20px;
}
.auction-div .auction-content .auction-footer {
flex-direction: column;
margin-top: 70px;
}
.auction-div .auction-content .auction-footer a {
width: 100%;
text-align: center;
}
main .bg-white .frame {
width: 100%;
height: 200px;
margin-bottom: 30px;
}
main .bg-white .frame:last-child {
margin-bottom: 0px;
}
main .main-left-full {
grid-template-columns: 1fr;
}
main .main-left .top-service {
grid-template-columns: 1fr;
}
main .main-left .top-service .service-item {
max-width: 300px;
width: 100%;
margin-left: auto;
margin-right: auto;
}
main .main-left .service img {
height: 250px;
}
.contact-description {
padding: 30px 10px;
}
.contact-description .center-container .form-comment .input-group-two {
grid-template-columns: 1fr;
grid-gap: 20px;
}
.contact-description .center-container .form-comment button {
max-width: 100%;
}
.contact-description .center-container ul {
border-bottom: 1px solid #ebebeb;
padding-bottom: 50px;
}
.contact-description .center-container ul li {
text-align: center;
}
.services-container {
grid-template-columns: 1fr;
justify-items: center;
}
.services-container .service-item {
height: 100%;
width: 200px;
min-height: 200px;
}
.vision-container {
padding: 40px 0px;
margin: 50px auto;
max-width: 1000px;
}
.vision-container h1 {
text-align: center;
font-size: 20px;
}
.vision-container ul {
padding: 10px 20px;
list-style: none;
font-size: 15px;
text-align: justify;
}
.partners-container .partners {
display: grid;
grid-template-columns: 1fr;
grid-row-gap: 30px;
justify-items: center;
}
.partners-container .partners img {
height: 120px;
}
footer .center-container {
padding: 40px 40px;
display: flex;
flex-direction: column;
grid-row-gap: 50px;
}
footer .center-container ul {
padding: 0px;
}
footer .center-container ul h3 {
text-transform: uppercase;
}
}
@media (max-width: 900px) {
header nav .fa-bars {
display: block;
}
header nav .nav-right-menu {
display: none;
}
header nav .nav-left-logo img {
height: 40px;
margin-top: 5px;
}
.calltoaction-container {
grid-template-columns: 1fr 300px;
}
.calltoaction-container .cta-left {
padding-top: 100px;
}
.calltoaction-container .cta-left h1 {
font-size: 35px;
}
main {
min-height: 100px;
margin-top: -50px;
margin-bottom: 20px;
display: grid;
align-items: start;
grid-template-columns: 1fr;
grid-column-gap: 20px;
}
main .main-right {
margin: 50px auto;
width: 100%;
max-width: 500px;
}
.contact-description {
padding: 30px 10px;
}
.contact-description .center-container {
grid-template-columns: 1fr;
grid-gap: 50px;
}
.contact-description .center-container ul {
border-bottom: 1px solid #ebebeb;
padding-bottom: 50px;
}
.contact-description .center-container ul li {
text-align: center;
}
footer .center-container {
grid-template-columns: 1fr 1fr 2fr;
}
footer .center-container img {
display: none;
}
}
.login_background {
background-image: url("/images/login_back.png");
width: 100%;
height: 100vh;
background-repeat: no-repeat;
background-attachment: fixed;
display: flex;
flex-direction: column;
align-items: center;
}
.login_background .flex-row {
margin-top: 0px;
padding-top: 20px;
max-width: 1000px;
width: 100%;
}
.login_background .flex-row img {
height: 40px;
}
.login_background .flex-row a {
font-size: 15px;
}
.login_background .flex-row a i {
padding-right: 10px;
}
.login_background form {
display: flex;
justify-content: center;
flex-direction: column;
width: 400px;
margin-top: 50px;
}
.login_background form h1 {
margin-bottom: 50px;
text-align: center;
font-weight: 400;
color: #028144;
}
.login_background form input {
padding: 10px;
width: 100%;
background-color: transparent;
border: none;
border-bottom: 1px solid #C9C8C7;
margin-bottom: 20px;
outline: none;
}
.login_background form input:focus {
border-bottom: 1px solid #028144;
}
.login_background form button {
border-radius: 30px;
height: 40px;
width: 150px;
margin-left: auto;
margin-right: auto;
margin-top: 40px;
}
.dashboard .dashboard_navigation {
float: left;
width: 300px;
display: flex;
flex-direction: column;
height: 100vh;
position: fixed;
}
.dashboard .dashboard_navigation ul {
list-style: none;
padding: 0px;
margin: 20px;
}
.dashboard .dashboard_navigation ul li {
margin-top: 5px;
height: 50px;
padding-left: 20px;
padding-right: 20px;
font-size: 15px;
font-weight: 500;
transition: all 0.2s;
border-radius: 40px;
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
}
.dashboard .dashboard_navigation ul li:hover {
background-color: #E0F0E8;
color: #028144;
}
.dashboard .dashboard_navigation ul li:hover i {
color: #028144;
}
.dashboard .dashboard_navigation .li-active {
background-color: #E0F0E8;
color: #028144;
}
.dashboard .dashboard_navigation .li-active i {
color: #028144;
}
.dashboard .dashboard_navigation .li-logout:hover {
background-color: #DE2727;
color: white;
}
.dashboard .dashboard_navigation .li-logout:hover i {
color: white;
}
.dashboard .dashboard_content {
background-color: #F9F9F9;
margin-left: 300px;
width: calc(100% - 300px);
display: flex;
justify-content: center;
}
.dashboard .dashboard_content .content {
width: 100%;
margin: 20px 40px 20px 20px;
}
.dashboard .dashboard_content .content .content_stats {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 30px;
}
.dashboard .dashboard_content .content .content_stats h1,
.dashboard .dashboard_content .content .content_stats h4 {
margin: 0px !important;
}
.dashboard .dashboard_content .content .content_stats h1 {
font-size: 40px;
}
.dashboard .dashboard_content .content .content_stats .column_2 {
display: grid;
height: auto;
min-height: 200px;
grid-template-rows: 1fr 1fr;
grid-row-gap: 20px;
}
.dashboard .dashboard_content .content .content_stats .column_2 .column_top {
height: 100%;
border-radius: 10px;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0px 20px;
}
.dashboard .dashboard_content .content .content_stats .column_2 .column_bottom {
height: 100%;
border-radius: 10px;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0px 20px;
}
.dashboard .dashboard_content .content .content_stats .column {
height: auto;
min-height: 200px;
border-radius: 10px;
display: grid;
grid-template-rows: 50px 1fr 50px;
}
.dashboard .dashboard_content .content .content_stats .column .column-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0px 20px;
font-size: 15px;
}
.dashboard .dashboard_content .content .content_stats .column .column-body {
display: flex;
justify-content: center;
align-items: center;
font-size: 24px;
}
.dashboard .dashboard_content .content .content_stats .column .column-body small {
font-size: 12px;
border-radius: 20px;
padding: 5px;
background-color: #028144;
color: white;
margin-left: 5px;
}
.dashboard .dashboard_content .content .content_stats .column .column-footer {
display: flex;
justify-content: center;
align-items: center;
font-weight: bold;
}
.dashboard .dashboard_content .content .post-image {
height: 400px;
width: 100%;
-o-object-position: center;
object-position: center;
-o-object-fit: cover;
object-fit: cover;
}
.dashboard .dashboard_content .content .post-content {
width: 900px;
padding: 50px;
margin-right: auto;
margin-left: auto;
margin-top: -50px;
background-color: white;
box-shadow: 0 4px 10px -4px #c2c0c0;
border-radius: 10px;
position: relative;
}
.dashboard .dashboard_content .content .post-content .post-body {
margin: 40px 0px;
}
.dashboard .dashboard_content .content .post-content .post-footer {
display: flex;
justify-content: space-between;
align-items: center;
}
.dashboard .dashboard_content .content .gallery_form {
margin: 30px auto;
width: 500px;
display: grid;
grid-gap: 10px;
}
.dashboard .dashboard_content .content .gallery_form div {
display: grid;
grid-template-columns: 1fr 150px;
}
.dashboard .dashboard_content .content .gallery_form input[type=file] {
display: none;
}
.dashboard .dashboard_content .content .gallery_form .custom-file-upload {
background-color: #ffffff;
padding-left: 30px;
border-top-left-radius: 30px;
border-bottom-left-radius: 30px;
height: 50px;
display: flex;
align-items: center;
cursor: pointer;
border: 1px solid #F4F4F4;
}
.dashboard .dashboard_content .content .gallery_form .custom-file-upload i {
padding-right: 10px;
}
.dashboard .dashboard_content .content .gallery_form input[type=submit] {
border: none;
outline: none;
font-weight: bold;
background-color: #E0F0E8;
color: #028144;
border-top-right-radius: 30px;
border-bottom-right-radius: 30px;
cursor: pointer;
}
.dashboard .dashboard_content .content .gallery_form {
margin: 30px auto;
width: 500px;
display: grid;
grid-gap: 10px;
}
.dashboard .dashboard_content .content .gallery_form div {
display: grid;
grid-template-columns: 1fr 150px;
}
.dashboard .dashboard_content .content .gallery_form input[type=file] {
display: none;
}
.dashboard .dashboard_content .content .gallery_form .custom-file-upload {
background-color: #ffffff;
padding-left: 30px;
border-top-left-radius: 30px;
border-bottom-left-radius: 30px;
height: 50px;
display: flex;
align-items: center;
cursor: pointer;
border: 1px solid #F4F4F4;
}
.dashboard .dashboard_content .content .gallery_form .custom-file-upload i {
padding-right: 10px;
}
.dashboard .dashboard_content .content .gallery_form input[type=submit] {
border: none;
outline: none;
font-weight: bold;
background-color: #E0F0E8;
color: #028144;
border-top-right-radius: 30px;
border-bottom-right-radius: 30px;
cursor: pointer;
}
.dashboard .dashboard_content .content .content_gallery {
display: grid;
grid-gap: 20px;
grid-template-columns: repeat(4, 1fr);
}
.dashboard .dashboard_content .content .content_gallery .a-link {
display: block;
}
.dashboard .dashboard_content .content .content_gallery .gallery_item {
position: relative;
cursor: url("/images/plus_cursor.png") 25 25, pointer;
position: relative;
background-color: rebeccapurple;
height: 150px;
flex-direction: column;
justify-content: center;
align-items: center;
overflow: hidden;
}
.dashboard .dashboard_content .content .content_gallery .gallery_item:hover .btn-delete {
bottom: 5px;
}
.dashboard .dashboard_content .content .content_gallery .gallery_item .btn-delete {
position: absolute;
right: 5px;
bottom: -100px;
border-radius: 50%;
height: 40px;
width: 40px;
padding: 0px;
display: flex;
justify-content: center;
align-items: center;
background-color: #E0F0E8;
}
.dashboard .dashboard_content .content .content_gallery .gallery_item .btn-delete i {
color: #DE2727;
}
.dashboard .dashboard_content .content .content_gallery .gallery_item .btn-delete:hover {
background-color: #DE2727;
}
.dashboard .dashboard_content .content .content_gallery .gallery_item .btn-delete:hover i {
color: white;
}
.dashboard .dashboard_content .content .content_gallery .gallery_item img {
width: 100%;
height: 150px;
-o-object-fit: cover;
object-fit: cover;
}
.dashboard .dashboard_content .content .message {
position: relative;
width: 700px;
margin: 50px auto 0px auto;
padding: 50px;
background-color: white;
border-radius: 10px;
box-shadow: 0 4px 10px -4px #e6e6e6;
}
.dashboard .dashboard_content .content .message h3 {
margin-bottom: 0px;
}
.dashboard .dashboard_content .content .message .message-header {
padding-bottom: 30px;
}
.dashboard .dashboard_content .content .message .message-body {
margin-bottom: 50px;
}
.dashboard .dashboard_content .content .message .message-body p {
text-align: justify;
}
.dashboard .dashboard_content .content .message .message-footer {
display: flex;
justify-content: space-between;
}
.dashboard .dashboard_content .content .comment-section {
max-width: 900px;
margin: 40px auto;
display: grid;
grid-template-columns: 1fr;
grid-row-gap: 10px;
}
.dashboard .dashboard_content .content .comment-section .comment {
background-color: white;
padding: 20px;
box-shadow: 0 4px 10px -4px #c2c0c0;
border-radius: 10px;
}
.dashboard .dashboard_content .content .comment-section .comment .top {
display: flex;
justify-content: space-between;
margin-bottom: 10px;
}
.dashboard .dashboard_content .content .comment-section .comment .top div a {
font-size: 18px;
margin-left: 20px;
}
.column_background_color {
background-color: #F1F1F1;
transition: box-shadow 0.2s;
}
.column_background_color:hover {
box-shadow: 0 4px 10px -4px #c2c0c0;
}
.m-none {
margin-top: 0px !important;
margin-bottom: 50px !important;
}
.form-style {
position: relative;
background-color: white;
padding: 50px;
max-width: 900px;
margin-left: auto;
margin-right: auto;
margin-top: 20px;
border-radius: 10px;
box-shadow: 0 4px 10px -4px #d6d6d6;
display: grid;
grid-gap: 30px;
}
.form-style .form-header {
position: absolute;
display: flex;
flex-direction: row;
align-items: center;
margin-top: -25px;
margin-left: 50px;
}
.form-style .form-header .btn-back {
background-color: #E0F0E8;
border-radius: 50%;
height: 50px;
width: 50px;
display: flex;
justify-content: center;
align-items: center;
margin-right: 20px;
}
.form-style .form-header h1 {
padding: 0px;
margin: 0px;
color: #028144;
}
.form-style .form-group {
display: grid;
grid-row-gap: 5px;
}
.form-style .form-group .label {
font-size: 15px;
font-weight: bold;
}
.form-style .form-group .input-text {
padding: 15px;
border-radius: 5px;
background-color: #F4F4F4;
border: none;
outline-color: #028144;
}
.form-style .form-group .file-hide {
display: none;
}
.form-style .form-group .custom-file-upload {
display: flex;
align-items: center;
border-radius: 5px;
background-color: #F4F4F4;
padding: 15px;
cursor: pointer;
}
.form-style .form-group .custom-file-upload i {
padding-right: 15px;
}
.form-style .form-group .input-textarea {
background-color: #F4F4F4;
border: none;
border-radius: 5px;
outline-color: #028144;
padding: 5px;
}
.form-style .form-group-button .form-submit-button {
float: right;
padding: 15px;
min-width: 150px;
text-transform: uppercase;
font-weight: bold;
cursor: pointer;
}
#example .img-cover {
height: 70px;
width: 100px;
-o-object-fit: cover;
object-fit: cover;
}
#example .span-new-message {
background-color: blue;
color: #028144;
padding: 5px;
color: white;
}
.btn-show-back {
position: absolute;
background-color: #E0F0E8;
top: -25px;
border-radius: 50%;
height: 50px;
width: 50px;
display: flex;
justify-content: center;
align-items: center;
} | public/css/app.css | @import url(https://fonts.googleapis.com/css2?family=Nunito:wght@100;
200;300;400;500;600;700;800;900&display=swap);body {
background-color: #F9F9F9 !important;
font-family: "Nunito", sans-serif;
color: #545454;
}
* {
box-sizing: border-box;
margin: 0px;
color: #545454;
}
hr {
margin-top: 30px;
margin-bottom: 50px;
border: 1px solid rgba(238, 238, 238, 0.466);
}
.invalid-feedback i {
color: #DE2727;
margin-right: 10px;
}
.invalid-feedback strong {
color: #DE2727 !important;
font-size: 14px !important;
padding-left: 10px;
font-weight: 400;
}
a {
text-decoration: none;
color: #545454;
}
.btn {
padding: 10px 20px;
border-radius: 10px;
}
.btn-default {
background-color: #E0F0E8;
color: #028144;
transition: all 0.3s;
}
.btn-default:hover {
background-color: #028144;
color: white;
}
.btn-default:hover i {
color: white;
}
.btn-default i {
color: #028144;
}
.btn-primary {
background-color: #028144;
color: white;
transition: all 0.3s;
border: none;
}
.btn-primary:hover {
opacity: 0.9;
}
.btn-edit {
background-color: #0073EF;
color: white;
transition: all 0.3s;
border: none;
}
.btn-edit:hover {
opacity: 0.9;
color: white;
}
.btn-trash {
background-color: #DC3545;
color: white;
transition: all 0.3s;
border: none;
}
.btn-trash i {
color: white;
}
.btn-trash:hover {
opacity: 0.9;
color: white;
}
.btn-underline {
text-decoration: underline;
color: #028144;
display: block;
text-align: center;
}
.center-container {
padding-left: 10px;
padding-right: 10px;
width: 100%;
max-width: 1200px;
margin-right: auto;
margin-left: auto;
}
.admin-dashboard {
position: fixed;
background-color: #DE2727;
bottom: 20px;
left: -210px;
width: 250px;
display: flex;
padding: 10px;
justify-content: space-between;
z-index: 4;
background-color: #DDDDDD;
color: #028144;
transition: left 0.3s;
}
.admin-dashboard i {
color: #028144;
}
.admin-dashboard:hover {
left: 0px;
}
#hidden {
position: fixed;
display: none;
right: 0;
bottom: 20px;
padding: 10px 50px 10px 10px;
background-color: #DDDDDD;
color: #028144;
box-shadow: 0 4px 10px -4px #aaa;
border-bottom-left-radius: 5px;
border-top-left-radius: 5px;
font-size: 20px;
z-index: 2;
cursor: pointer;
}
.back-svg-button {
padding: 10px;
position: absolute;
left: 5px;
top: 5px;
font-size: 20px;
color: #028144;
}
.back-svg-button:hover {
background-color: #E0F0E8;
}
.paggination {
display: flex;
justify-content: center;
padding: 10px;
}
.paggination ul {
padding: 0px;
list-style: none;
}
.paggination ul li {
float: left;
padding: 5px 10px;
margin: 5px;
background-color: #E0F0E8;
}
.paggination ul .paggination-active {
background-color: #028144;
color: white;
}
.flex-row {
margin: 100px 0px 20px 0px;
display: flex;
justify-content: space-between;
align-items: center;
}
.form {
width: 400px;
display: grid;
grid-template-columns: 1fr 50px;
}
.form input {
padding: 15px;
border: none;
}
.form input:focus {
outline: none;
}
.form button {
border: none;
background-color: white;
}
.form button svg {
font-size: 20px;
}
.search-div {
margin-top: 80px;
height: 200px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.search-div form {
margin-top: 20px;
width: 500px;
height: 50px;
background-color: white;
}
.li-active {
background-color: #028144;
color: white;
}
header {
z-index: 2;
width: 100%;
height: 80px;
position: fixed;
top: 0;
background-color: white;
border-bottom: 1px solid #f0f0f0;
}
header nav {
display: flex;
justify-content: space-between;
align-items: center;
}
header nav .nav-left-logo {
padding-top: 15px;
height: 80px;
}
header nav .nav-left-logo img {
height: 50px;
}
header nav .fa-bars {
font-size: 20px;
display: none;
height: 50px;
width: 50px;
text-align: center;
line-height: 50px;
cursor: pointer;
}
header nav .nav-right-menu ul {
margin: 0;
padding: 0;
list-style: none;
}
header nav .nav-right-menu ul li {
cursor: pointer;
float: left;
font-weight: 600;
padding: 10px 15px;
border-radius: 10px;
margin-left: 5px;
transition: all 0.3s;
}
header nav .nav-right-menu ul li:hover {
background-color: #E0F0E8;
color: #028144;
}
header nav .nav-right-menu ul .dropdown {
position: relative;
}
header nav .nav-right-menu ul .dropdown .current-language {
display: flex;
}
header nav .nav-right-menu ul .dropdown .current-language img {
height: 20px;
padding-right: 10px;
}
header nav .nav-right-menu ul .dropdown-content {
display: none;
position: absolute;
width: 150px;
left: -14px;
top: 33px;
padding: 10px 0px;
}
header nav .nav-right-menu ul .dropdown-content .dropdown-list {
font-size: 15px;
background-color: white;
padding: 10px 0px;
box-shadow: 0px 0px 3px #e7e7e7;
border-radius: 10px;
}
header nav .nav-right-menu ul .dropdown-content .dropdown-list a {
font-weight: 400;
padding: 5px 10px;
}
header nav .nav-right-menu ul .dropdown-content .dropdown-list a:hover {
background-color: #E0F0E8;
color: #028144;
}
header nav .nav-right-menu ul .dropdown-content .dropdown-language {
width: 100px;
}
header nav .nav-right-menu ul .dropdown-content .dropdown-language .dropdown-language-item {
display: flex;
justify-content: space-evenly;
}
header nav .nav-right-menu ul .dropdown-content .dropdown-language .dropdown-language-item img {
height: 20px;
}
header nav .nav-right-menu ul .li-dropdown a {
display: block;
}
header nav .nav-right-menu ul .li-dropdown:hover .dropdown-content {
display: block;
}
.calltoaction-container {
margin-top: 80px;
height: calc(100vh - 80px);
max-height: 800px;
width: 100%;
display: grid;
grid-template-columns: 1fr 500px;
grid-column-gap: 50px;
}
.calltoaction-container .cta-left {
padding-top: 100px;
}
.calltoaction-container .cta-left h1 {
font-size: 45px;
}
.calltoaction-container .cta-left .btn {
padding: 20px 40px;
font-weight: 900;
text-transform: uppercase;
display: block;
width: 350px;
text-align: center;
margin-top: 30px;
}
.calltoaction-container .cta-right {
min-height: 200px;
background-image: url(/images/ilustration.png?238ae9f76888647b3a1c96daf4923854);
background-position: center;
background-repeat: no-repeat;
background-size: contain;
}
.card-list {
max-width: 1000px;
display: grid;
}
.card-list .card {
margin-bottom: 20px;
background-color: white;
box-shadow: 3px 3px 20px rgba(226, 226, 226, 0.808);
display: grid;
grid-template-columns: 200px 1fr;
transition: all 0.3s;
}
.card-list .card:hover {
box-shadow: 0px 0px 20px #b6b6b6;
}
.card-list .card .card-thumbnail {
width: 200px;
height: 150px;
-o-object-fit: cover;
object-fit: cover;
}
.card-list .card .card-description {
display: flex;
flex-direction: column;
padding: 20px;
}
.card-list .card .card-description h3 {
margin: 0px;
}
.card-list .card .card-description .card-description-footer {
display: flex;
align-items: flex-end;
justify-content: flex-end;
margin-top: auto;
}
.card-list .card .card-description .card-description-footer a {
position: relative;
}
.slideshow-container {
margin-top: 80px;
}
.slideshow-container .swiper-container {
margin-top: 30px;
max-height: 600px;
height: auto;
}
.slideshow-container .swiper-container .swiper-wrapper img {
width: 100%;
-o-object-fit: contain;
object-fit: contain;
-o-object-position: center;
object-position: center;
}
.card-grid {
display: grid;
}
.card-grid .card-grid-group {
margin-bottom: 20px;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 20px;
}
.card-grid .card-grid-group .card {
background-color: white;
position: relative;
border: 1px solid #F0F0F0;
display: grid;
grid-template-rows: 200px 1fr;
}
.card-grid .card-grid-group .card .card-status {
position: absolute;
right: 5px;
top: 5px;
color: white;
padding: 10px;
border: 2px solid #dddddd;
border-radius: 50%;
font-weight: bold;
text-transform: uppercase;
}
.card-grid .card-grid-group .card .card-status-open {
background-color: #028144;
}
.card-grid .card-grid-group .card .card-status-close {
background-color: #da1f1f;
}
.card-grid .card-grid-group .card .card-thumbnail {
width: 100%;
height: 200px;
-o-object-fit: cover;
object-fit: cover;
-o-object-position: center;
object-position: center;
}
.card-grid .card-grid-group .card .card-description {
background-color: white;
display: flex;
flex-direction: column;
padding: 20px;
}
.card-grid .card-grid-group .card .card-description h3 {
margin: 0;
}
.card-grid .card-grid-group .card .card-description p {
font-size: 14px;
margin-top: 10px;
}
.card-grid .card-grid-group .card .card-description .card-description-footer {
display: flex;
flex-direction: column;
margin-top: auto;
}
.card-grid .card-grid-group .card .card-description .card-description-footer .btn {
margin-top: 20px;
text-align: center;
}
.services-container {
margin: 100px 0px 50px 0px;
min-height: 200px;
height: auto;
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-gap: 50px;
}
.services-container .service-item {
height: 100%;
position: relative;
background-color: white;
border-radius: 10px;
box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.164);
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}
.services-container .service-item p {
background-color: #028144;
width: 100%;
height: 100%;
position: absolute;
margin-bottom: -500px;
background-color: #028144;
color: white;
font-weight: bold;
display: flex;
justify-content: center;
align-items: center;
transition: margin-bottom 0.5s ease-in-out;
}
.services-container .service-item:hover p {
margin-bottom: 0px;
}
.vision-container {
padding: 40px 0px;
margin: 50px auto;
max-width: 1000px;
}
.vision-container h1 {
text-align: center;
}
.partners-container {
border-bottom: 1px solid #DCDCDC;
background-color: #F6F6F6;
padding: 50px 0px;
}
.partners-container h3 {
margin-bottom: 40px;
text-align: center;
}
.partners-container .partners {
display: flex;
justify-content: space-between;
}
.partners-container .partners img {
height: 100px;
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
opacity: 0.8;
cursor: pointer;
transition: transform 0.3s, opacity 0.3s, -webkit-filter 0.3s;
transition: transform 0.3s, filter 0.3s, opacity 0.3s;
transition: transform 0.3s, filter 0.3s, opacity 0.3s, -webkit-filter 0.3s;
}
.partners-container .partners img:hover {
transform: scale(1.1);
-webkit-filter: grayscale(0%);
filter: grayscale(0%);
opacity: 1;
}
.partners-container .partners :nth-child(4) {
transform: scale(1.1);
}
.partners-container .partners :nth-child(4):hover {
transform: scale(1.2);
}
footer {
background-color: #F6F6F6;
color: #545454;
}
footer .center-container {
padding: 40px 0px 40px 0px;
border-bottom: 1px solid #DCDCDC;
display: grid;
grid-template-columns: 150px 1fr 1fr 2fr;
grid-column-gap: 20px;
}
footer .center-container img {
width: 100%;
}
footer .center-container h3 {
padding-bottom: 10px;
}
footer .center-container ul {
font-size: 14px;
list-style: none;
}
footer .center-container ul li:hover {
text-decoration: underline;
}
footer .center-container ul form {
background-color: #E0F0E8;
display: grid;
grid-template-columns: 1fr 40px;
}
footer .center-container ul form .form-input {
border: 0px;
padding: 15px 0px 15px 15px;
outline: none;
}
footer .center-container ul form .form-button {
background-color: white;
border: 0px;
font-size: 20px;
display: flex;
align-items: center;
cursor: pointer;
outline: none;
}
footer .center-container ul form i {
color: #028144;
}
footer .center-container ul .social-platform {
margin-top: 20px;
display: flex;
justify-content: space-evenly;
}
footer .center-container ul .social-platform a {
font-size: 20px;
background-color: #E0F0E8;
height: 50px;
width: 50px;
line-height: 50px;
text-align: center;
border-radius: 50%;
transition: all 0.3s;
cursor: pointer;
}
footer .center-container ul .social-platform a:nth-child(1) {
color: #4267B2;
}
footer .center-container ul .social-platform a:nth-child(2) {
color: #1DA1F2;
}
footer .center-container ul .social-platform a:nth-child(3) {
color: #D9003F;
}
footer .center-container ul .social-platform a:hover {
box-shadow: 5px 5px 10px lightgrey;
}
footer .footer-bottom {
text-align: center;
padding: 20px;
font-size: 13px;
}
.mobile-menu {
transition: width 0.2s;
position: fixed;
top: 0;
overflow: hidden;
width: 0px;
max-height: calc100vh;
background-color: white;
z-index: 200;
}
.mobile-menu .header {
background-color: white;
height: 80px;
display: flex;
justify-content: flex-end;
align-items: center;
}
.mobile-menu .header .fa-times {
font-size: 20px;
height: 50px;
width: 50px;
text-align: center;
line-height: 50px;
cursor: pointer;
}
.mobile-menu .menu {
height: calc(100vh - 80px);
display: flex;
flex-direction: column;
}
.mobile-menu .menu ul {
padding: 0px 20px;
margin: 0px;
list-style: none;
}
.mobile-menu .menu ul .btn {
padding: 5px 20px;
}
.mobile-menu .menu .lang {
padding: 40px;
display: flex;
justify-content: space-evenly;
}
.mobile-menu .menu .lang img {
width: 30px;
}
.iframe-contact {
display: block;
width: 100%;
height: calc(100vh - 80px);
margin-top: 80px;
}
.contact-description {
background-color: #F6F6F6;
padding: 100px;
}
.contact-description .center-container {
width: 100%;
max-width: 1000px;
display: grid;
grid-template-columns: 1fr 300px;
grid-gap: 50px;
}
.contact-description .center-container .form-comment {
max-width: 900px;
width: 100%;
}
.contact-description .center-container .form-comment .input-group {
display: grid;
margin-top: 20px;
}
.contact-description .center-container .form-comment .input-group-two {
display: grid;
grid-template-columns: 1fr 1fr;
grid-column-gap: 20px;
}
.contact-description .center-container .form-comment .input-text {
border: 1px solid #E9E9E9;
padding: 15px;
}
.contact-description .center-container .form-comment .input-text:focus {
outline: 1px solid #028144;
background-color: #E0F0E8;
}
.contact-description .center-container .form-comment .input-textarea {
border: none;
padding: 15px;
border: 1px solid #E9E9E9;
}
.contact-description .center-container .form-comment .input-textarea:focus {
outline: 1px solid #028144;
background-color: #E0F0E8;
}
.contact-description .center-container .form-comment button {
border: none;
border-radius: 0px;
max-width: 200px;
cursor: pointer;
}
.contact-description .center-container ul {
margin: 0px;
padding: 0px;
list-style: none;
}
.contact-description .center-container ul li {
margin-bottom: 10px;
font-size: 15px;
text-align: right;
}
.news-div {
margin-top: 55px;
margin-bottom: 50px;
min-height: 200px;
height: auto;
}
.news-div .img-cover {
height: 400px;
background-color: #da1f1f;
}
.news-div .img-cover img {
width: 100%;
height: 400px;
-o-object-fit: cover;
object-fit: cover;
z-index: -1;
}
.news-div .news-content {
position: relative;
max-width: 900px;
width: 100%;
height: auto;
padding: 40px;
background-color: white;
margin: -50px auto 0px auto;
z-index: 1;
position: relative;
border: 1px solid #E9E9E9;
}
.news-div .news-content small {
font-size: 13px;
}
.news-div .news-content p {
font-size: 15px;
}
.news-div .form-comment {
max-width: 900px;
width: 100%;
margin: 50px auto 0px auto;
}
.news-div .form-comment .input-group {
display: grid;
margin-top: 20px;
}
.news-div .form-comment .input-group-two {
display: grid;
grid-template-columns: 1fr 1fr;
grid-column-gap: 20px;
}
.news-div .form-comment .input-text {
border: 1px solid #E9E9E9;
padding: 15px;
}
.news-div .form-comment .input-text:focus {
outline: 1px solid #028144;
background-color: #E0F0E8;
}
.news-div .form-comment .input-textarea {
border: none;
padding: 15px;
border: 1px solid #E9E9E9;
}
.news-div .form-comment .input-textarea:focus {
outline: 1px solid #028144;
background-color: #E0F0E8;
}
.news-div .form-comment button {
border: none;
border-radius: 0px;
max-width: 200px;
cursor: pointer;
}
.news-div .news-comment {
margin: 50px auto 20px auto;
max-width: 900px;
width: 100%;
display: grid;
grid-row-gap: 20px;
}
.news-div .news-comment .comment {
background-color: white;
padding: 20px;
box-shadow: 2px 2px 10px rgba(211, 211, 211, 0.473);
}
.news-div .news-comment .comment small {
font-size: 12px;
}
.news-div .news-comment .comment p {
font-size: 15px;
}
.auction-div .auction-content {
background-color: white;
margin: 100px auto 20px auto;
max-width: 900px;
width: 100%;
padding: 40px;
position: relative;
border: 1px solid #E9E9E9;
}
.auction-div .auction-content small {
font-size: 13px;
}
.auction-div .auction-content p {
font-size: 15px;
}
.auction-div .auction-content .auction-footer {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 100px;
}
.auction-div .auction-content .auction-footer a i {
margin-right: 10px;
}
.cover-background {
background-image: url(/images/coverbg.jpg?7517c8206968917b43d426863922d59c);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
background-position-y: top;
height: 200px;
width: 100%;
margin-top: 80px;
display: flex;
justify-content: center;
align-items: center;
}
.cover-background h2 {
font-size: 25px;
text-transform: uppercase;
margin-top: -50px;
color: #f1f1f1;
}
.cover-background-noimage {
height: 200px;
width: 100%;
margin-top: 80px;
display: flex;
justify-content: center;
align-items: center;
}
.cover-background-noimage h2 {
font-size: 25px;
text-transform: uppercase;
margin-top: -50px;
color: #545454;
}
main {
min-height: 100px;
margin-top: -50px;
margin-bottom: 20px;
display: grid;
align-items: start;
grid-template-columns: 1fr 350px;
grid-column-gap: 20px;
}
main .bg-white {
background-color: white;
padding: 40px;
box-shadow: 1px 3px 6px #3f3f3f18;
border-radius: 10px;
grid-template-columns: 1fr !important;
}
main .bg-white .p-flex-center {
display: flex;
justify-content: center;
padding: 20px;
}
main .bg-white .frame {
width: 100%;
height: 400px;
margin-bottom: 50px;
}
main .bg-white .frame:last-child {
margin-bottom: 0px;
}
main .main-left-full {
grid-column-start: 1;
grid-column-end: 3;
padding: 10px !important;
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-gap: 20px;
}
main .main-left-full .gallery-image-item {
overflow: hidden;
cursor: url("/images/plus_cursor.png") 25 25, pointer;
box-shadow: 1px 3px 6px #3f3f3f18;
}
main .main-left-full .gallery-image-item img {
display: block;
width: 100%;
height: 200px;
-o-object-position: center;
object-position: center;
-o-object-fit: cover;
object-fit: cover;
background-color: white;
transition: transform 0.4s;
}
main .main-left-full .gallery-image-item img:hover {
transform: scale(1.05);
}
main .main-left-full .schedule-button {
width: 100%;
padding: 20px;
font-size: 15px;
border: none;
border-radius: 5px;
font-weight: bold;
outline: none;
cursor: url("/images/plus_cursor.png") 25 25, pointer;
}
main .main-left .h1-style {
position: relative;
margin-bottom: 30px;
}
main .main-left .h1-style:after {
content: "";
position: absolute;
height: 2px;
width: 70px;
background-color: #028144;
bottom: 0;
left: 0;
}
main .main-left p {
margin-bottom: 10px;
text-align: justify;
}
main .main-left ul {
padding: 0px 0px 20px 20px;
list-style: none;
}
main .main-left a:hover {
color: #028144;
text-decoration: underline;
}
main .main-left .top-service {
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 30px;
}
main .main-left .top-service .service-item {
padding: 30px;
background-color: #E0F0E8;
box-shadow: 1px 3px 6px #3f3f3f18;
border-radius: 10px;
min-height: 100px;
height: auto;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
main .main-left .top-service .service-item i {
padding: 30px;
font-size: 25px;
border-radius: 50%;
margin-bottom: 20px;
}
main .main-left .top-service .service-item:hover {
cursor: pointer;
transition: all 0.3s;
}
main .main-left .service {
padding-top: 80px;
display: flex;
flex-direction: column;
}
main .main-left .service img {
width: 100%;
height: 400px;
-o-object-fit: cover;
object-fit: cover;
}
main .main-left .service .service-content {
background-color: white;
box-shadow: 1px 3px 6px #3f3f3f18;
padding: 20px 30px 30px 30px;
}
main .main-left .service .service-content h2 {
text-align: center;
margin-bottom: 30px;
}
main .main-left .service .service-content p {
font-size: 15px;
text-align: justify;
}
main .main-right {
display: grid;
grid-row-gap: 20px;
}
main .main-right .btn-no-style {
margin-top: 0px;
background-color: transparent;
text-align: center;
color: #028144;
}
main .main-right .btn-no-style:hover {
background-color: #E0F0E8;
}
main .main-right .component {
background-color: white;
padding: 20px 20px 10px 20px;
display: flex;
flex-direction: column;
border-radius: 10px;
box-shadow: 1px 3px 6px #3f3f3f18;
}
main .main-right .component h4 {
text-align: center;
padding-bottom: 20px;
text-transform: uppercase;
font-size: 20px;
}
main .main-right .component .component-item {
display: grid;
grid-template-columns: 70px 1fr;
grid-column-gap: 10px;
border-bottom: 1px solid rgba(211, 211, 211, 0.342);
margin-bottom: 10px;
padding-bottom: 10px;
}
main .main-right .component .component-item img {
width: 70px;
height: 70px;
-o-object-fit: cover;
object-fit: cover;
-o-object-position: center;
object-position: center;
}
main .main-right .component .component-item .component-item-description a {
font-size: 15px;
}
main .main-right .component .component-item .component-item-description a:hover {
text-decoration: underline;
}
main .main-right .component .component-item .component-item-description small {
font-size: 13px;
font-weight: bold;
color: #028144;
}
main .main-right .component .component-item:nth-child(5) {
border-bottom: none;
}
main .main-right .component-auction {
display: grid;
grid-row-gap: 10px;
}
main .main-right .component-auction .auction-item {
padding: 15px;
background-color: white;
box-shadow: 1px 3px 6px #3f3f3f18;
border-radius: 10px;
display: grid;
grid-template-columns: 15px 1fr;
grid-column-gap: 10px;
align-items: center;
}
main .main-right .component-auction .auction-item span {
width: 15px;
height: 15px;
background-color: #028144;
border-radius: 50%;
}
main .main-right .component-auction .auction-item p {
font-size: 15px;
}
main .main-right .component-gallery {
display: grid;
}
main .main-right .component-gallery div {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 10px;
border-radius: 10px;
margin: 20px 0px 10px 0px;
}
main .main-right .component-gallery .gallery-image {
width: 100%;
height: 100px;
-o-object-fit: cover;
object-fit: cover;
}
@media (max-width: 768px) {
.calltoaction-container {
grid-template-columns: 1fr !important;
}
.calltoaction-container .cta-left {
grid-row-start: 2;
}
.calltoaction-container .cta-left h1 {
font-size: 25px !important;
width: 70%;
text-align: center;
margin-right: auto;
margin-left: auto;
}
.calltoaction-container .cta-left .btn {
padding: 15px 30px;
width: 70%;
margin-right: auto;
margin-left: auto;
}
.calltoaction-container .cta-right {
margin-top: 20px;
}
.card-grid .card-grid-group {
grid-template-columns: 1fr 1fr;
}
.card-grid .card-grid-group {
grid-template-columns: 1fr 1fr;
}
.news-div .img-cover {
margin-left: -10px !important;
margin-right: -10px !important;
height: 300px;
}
.news-div .img-cover img {
height: 300px;
}
.news-div .news-content h2 {
font-size: 22px;
}
.news-div .form-comment {
width: 100%;
}
.news-div .form-comment .input-group-two {
grid-template-columns: 1fr;
grid-row-gap: 20px;
}
.news-div .form-comment button {
max-width: 100%;
}
.news-div .news-comment {
width: 100%;
}
main .bg-white .frame {
width: 100%;
height: 300px;
margin-bottom: 30px;
}
main .bg-white .frame:last-child {
margin-bottom: 0px;
}
main .main-left-full {
grid-template-columns: repeat(2, 1fr);
}
.services-container {
grid-template-columns: repeat(2, 1fr);
justify-items: center;
}
.services-container .service-item {
height: 100%;
width: 200px;
min-height: 200px;
}
.partners-container .partners {
display: grid;
grid-template-columns: 1fr 1fr;
grid-row-gap: 20px;
justify-items: center;
}
.partners-container .partners img {
height: 120px;
}
footer .center-container {
padding: 40px 40px;
grid-template-columns: 1fr 1fr !important;
grid-row-gap: 50px;
}
footer .center-container ul {
padding: 0px;
}
footer .center-container ul h3 {
text-transform: uppercase;
}
footer .newsletter {
grid-column-start: 1;
grid-column-end: 3;
}
}
@media (max-width: 576px) {
.search-div {
height: 250px;
}
.search-div h1 {
font-size: 25px;
}
.search-div form {
width: 100%;
}
.calltoaction-container {
grid-template-columns: 1fr !important;
}
.calltoaction-container .cta-left {
grid-row-start: 2;
}
.calltoaction-container .cta-left h1 {
font-size: 25px !important;
width: 80%;
}
.calltoaction-container .cta-left .btn {
width: 100%;
}
.calltoaction-container .cta-right {
margin-top: 20px;
height: 200px;
}
.flex-row {
margin: 50px 0px 20px 0px;
display: flex;
flex-direction: column;
align-items: flex-start;
}
.flex-row h2 {
font-size: 20px;
margin-bottom: 5px;
}
.flex-row form {
width: 100%;
}
.flex-row div {
font-size: 15px;
}
.card-list .card {
margin-left: auto;
margin-right: auto;
max-width: 350px;
display: grid;
grid-template-columns: 1fr;
border-radius: 10px;
}
.card-list .card .card-thumbnail {
width: 100%;
height: 150px;
-o-object-fit: cover;
object-fit: cover;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
.card-list .card .card-description {
display: grid;
grid-template-columns: 1fr;
}
.card-list .card .card-description h3 {
font-size: 17px;
}
.card-list .card .card-description small {
grid-row-start: 1;
font-size: 12px;
}
.card-list .card .card-description .card-description-footer {
display: flex;
flex-direction: column;
}
.card-list .card .card-description .card-description-footer a {
margin-top: 30px;
width: 100%;
text-align: center;
}
.card-grid .card-grid-group {
grid-template-columns: 1fr;
}
.card-grid .card-grid-group .card {
box-shadow: 3px 3px 20px rgba(226, 226, 226, 0.808);
position: relative;
display: flex;
padding: 0px 0px;
border-radius: 10px;
}
.card-grid .card-grid-group .card .card-thumbnail {
display: none;
}
.card-grid .card-grid-group .card .card-description {
border-radius: 10px;
}
.card-grid .card-grid-group .card .card-description h3 {
margin: 0;
font-size: 16px;
font-weight: 500;
}
.card-grid .card-grid-group .card .card-description small {
display: none;
}
.card-grid .card-grid-group .card .card-description p {
display: none;
}
.card-grid .card-grid-group .card .card-description .card-description-footer {
display: none;
}
.news-div .news-content {
padding: 40px 20px 20px 20px;
}
.auction-div .auction-content {
padding: 40px 20px 20px 20px;
}
.auction-div .auction-content .auction-footer {
flex-direction: column;
margin-top: 70px;
}
.auction-div .auction-content .auction-footer a {
width: 100%;
text-align: center;
}
main .bg-white .frame {
width: 100%;
height: 200px;
margin-bottom: 30px;
}
main .bg-white .frame:last-child {
margin-bottom: 0px;
}
main .main-left-full {
grid-template-columns: 1fr;
}
main .main-left .top-service {
grid-template-columns: 1fr;
}
main .main-left .top-service .service-item {
max-width: 300px;
width: 100%;
margin-left: auto;
margin-right: auto;
}
main .main-left .service img {
height: 250px;
}
.contact-description {
padding: 30px 10px;
}
.contact-description .center-container .form-comment .input-group-two {
grid-template-columns: 1fr;
grid-gap: 20px;
}
.contact-description .center-container .form-comment button {
max-width: 100%;
}
.contact-description .center-container ul {
border-bottom: 1px solid #ebebeb;
padding-bottom: 50px;
}
.contact-description .center-container ul li {
text-align: center;
}
.services-container {
grid-template-columns: 1fr;
justify-items: center;
}
.services-container .service-item {
height: 100%;
width: 200px;
min-height: 200px;
}
.vision-container {
padding: 40px 0px;
margin: 50px auto;
max-width: 1000px;
}
.vision-container h1 {
text-align: center;
font-size: 20px;
}
.vision-container ul {
padding: 10px 20px;
list-style: none;
font-size: 15px;
text-align: justify;
}
.partners-container .partners {
display: grid;
grid-template-columns: 1fr;
grid-row-gap: 30px;
justify-items: center;
}
.partners-container .partners img {
height: 120px;
}
footer .center-container {
padding: 40px 40px;
display: flex;
flex-direction: column;
grid-row-gap: 50px;
}
footer .center-container ul {
padding: 0px;
}
footer .center-container ul h3 {
text-transform: uppercase;
}
}
@media (max-width: 900px) {
header nav .fa-bars {
display: block;
}
header nav .nav-right-menu {
display: none;
}
header nav .nav-left-logo img {
height: 40px;
margin-top: 5px;
}
.calltoaction-container {
grid-template-columns: 1fr 300px;
}
.calltoaction-container .cta-left {
padding-top: 100px;
}
.calltoaction-container .cta-left h1 {
font-size: 35px;
}
main {
min-height: 100px;
margin-top: -50px;
margin-bottom: 20px;
display: grid;
align-items: start;
grid-template-columns: 1fr;
grid-column-gap: 20px;
}
main .main-right {
margin: 50px auto;
width: 100%;
max-width: 500px;
}
.contact-description {
padding: 30px 10px;
}
.contact-description .center-container {
grid-template-columns: 1fr;
grid-gap: 50px;
}
.contact-description .center-container ul {
border-bottom: 1px solid #ebebeb;
padding-bottom: 50px;
}
.contact-description .center-container ul li {
text-align: center;
}
footer .center-container {
grid-template-columns: 1fr 1fr 2fr;
}
footer .center-container img {
display: none;
}
}
.login_background {
background-image: url("/images/login_back.png");
width: 100%;
height: 100vh;
background-repeat: no-repeat;
background-attachment: fixed;
display: flex;
flex-direction: column;
align-items: center;
}
.login_background .flex-row {
margin-top: 0px;
padding-top: 20px;
max-width: 1000px;
width: 100%;
}
.login_background .flex-row img {
height: 40px;
}
.login_background .flex-row a {
font-size: 15px;
}
.login_background .flex-row a i {
padding-right: 10px;
}
.login_background form {
display: flex;
justify-content: center;
flex-direction: column;
width: 400px;
margin-top: 50px;
}
.login_background form h1 {
margin-bottom: 50px;
text-align: center;
font-weight: 400;
color: #028144;
}
.login_background form input {
padding: 10px;
width: 100%;
background-color: transparent;
border: none;
border-bottom: 1px solid #C9C8C7;
margin-bottom: 20px;
outline: none;
}
.login_background form input:focus {
border-bottom: 1px solid #028144;
}
.login_background form button {
border-radius: 30px;
height: 40px;
width: 150px;
margin-left: auto;
margin-right: auto;
margin-top: 40px;
}
.dashboard .dashboard_navigation {
float: left;
width: 300px;
display: flex;
flex-direction: column;
height: 100vh;
position: fixed;
}
.dashboard .dashboard_navigation ul {
list-style: none;
padding: 0px;
margin: 20px;
}
.dashboard .dashboard_navigation ul li {
margin-top: 5px;
height: 50px;
padding-left: 20px;
padding-right: 20px;
font-size: 15px;
font-weight: 500;
transition: all 0.2s;
border-radius: 40px;
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
}
.dashboard .dashboard_navigation ul li:hover {
background-color: #E0F0E8;
color: #028144;
}
.dashboard .dashboard_navigation ul li:hover i {
color: #028144;
}
.dashboard .dashboard_navigation .li-active {
background-color: #E0F0E8;
color: #028144;
}
.dashboard .dashboard_navigation .li-active i {
color: #028144;
}
.dashboard .dashboard_navigation .li-logout:hover {
background-color: #DE2727;
color: white;
}
.dashboard .dashboard_navigation .li-logout:hover i {
color: white;
}
.dashboard .dashboard_content {
background-color: #F9F9F9;
margin-left: 300px;
width: calc(100% - 300px);
display: flex;
justify-content: center;
}
.dashboard .dashboard_content .content {
width: 100%;
margin: 20px 40px 20px 20px;
}
.dashboard .dashboard_content .content .content_stats {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 30px;
}
.dashboard .dashboard_content .content .content_stats h1,
.dashboard .dashboard_content .content .content_stats h4 {
margin: 0px !important;
}
.dashboard .dashboard_content .content .content_stats h1 {
font-size: 40px;
}
.dashboard .dashboard_content .content .content_stats .column_2 {
display: grid;
height: auto;
min-height: 200px;
grid-template-rows: 1fr 1fr;
grid-row-gap: 20px;
}
.dashboard .dashboard_content .content .content_stats .column_2 .column_top {
height: 100%;
border-radius: 10px;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0px 20px;
}
.dashboard .dashboard_content .content .content_stats .column_2 .column_bottom {
height: 100%;
border-radius: 10px;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0px 20px;
}
.dashboard .dashboard_content .content .content_stats .column {
height: auto;
min-height: 200px;
border-radius: 10px;
display: grid;
grid-template-rows: 50px 1fr 50px;
}
.dashboard .dashboard_content .content .content_stats .column .column-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0px 20px;
font-size: 15px;
}
.dashboard .dashboard_content .content .content_stats .column .column-body {
display: flex;
justify-content: center;
align-items: center;
font-size: 24px;
}
.dashboard .dashboard_content .content .content_stats .column .column-body small {
font-size: 12px;
border-radius: 20px;
padding: 5px;
background-color: #028144;
color: white;
margin-left: 5px;
}
.dashboard .dashboard_content .content .content_stats .column .column-footer {
display: flex;
justify-content: center;
align-items: center;
font-weight: bold;
}
.dashboard .dashboard_content .content .post-image {
height: 400px;
width: 100%;
-o-object-position: center;
object-position: center;
-o-object-fit: cover;
object-fit: cover;
}
.dashboard .dashboard_content .content .post-content {
width: 900px;
padding: 50px;
margin-right: auto;
margin-left: auto;
margin-top: -50px;
background-color: white;
box-shadow: 0 4px 10px -4px #c2c0c0;
border-radius: 10px;
position: relative;
}
.dashboard .dashboard_content .content .post-content .post-body {
margin: 40px 0px;
}
.dashboard .dashboard_content .content .post-content .post-footer {
display: flex;
justify-content: space-between;
align-items: center;
}
.dashboard .dashboard_content .content .gallery_form {
margin: 30px auto;
width: 500px;
display: grid;
grid-gap: 10px;
}
.dashboard .dashboard_content .content .gallery_form div {
display: grid;
grid-template-columns: 1fr 150px;
}
.dashboard .dashboard_content .content .gallery_form input[type=file] {
display: none;
}
.dashboard .dashboard_content .content .gallery_form .custom-file-upload {
background-color: #ffffff;
padding-left: 30px;
border-top-left-radius: 30px;
border-bottom-left-radius: 30px;
height: 50px;
display: flex;
align-items: center;
cursor: pointer;
border: 1px solid #F4F4F4;
}
.dashboard .dashboard_content .content .gallery_form .custom-file-upload i {
padding-right: 10px;
}
.dashboard .dashboard_content .content .gallery_form input[type=submit] {
border: none;
outline: none;
font-weight: bold;
background-color: #E0F0E8;
color: #028144;
border-top-right-radius: 30px;
border-bottom-right-radius: 30px;
cursor: pointer;
}
.dashboard .dashboard_content .content .gallery_form {
margin: 30px auto;
width: 500px;
display: grid;
grid-gap: 10px;
}
.dashboard .dashboard_content .content .gallery_form div {
display: grid;
grid-template-columns: 1fr 150px;
}
.dashboard .dashboard_content .content .gallery_form input[type=file] {
display: none;
}
.dashboard .dashboard_content .content .gallery_form .custom-file-upload {
background-color: #ffffff;
padding-left: 30px;
border-top-left-radius: 30px;
border-bottom-left-radius: 30px;
height: 50px;
display: flex;
align-items: center;
cursor: pointer;
border: 1px solid #F4F4F4;
}
.dashboard .dashboard_content .content .gallery_form .custom-file-upload i {
padding-right: 10px;
}
.dashboard .dashboard_content .content .gallery_form input[type=submit] {
border: none;
outline: none;
font-weight: bold;
background-color: #E0F0E8;
color: #028144;
border-top-right-radius: 30px;
border-bottom-right-radius: 30px;
cursor: pointer;
}
.dashboard .dashboard_content .content .content_gallery {
display: grid;
grid-gap: 20px;
grid-template-columns: repeat(4, 1fr);
}
.dashboard .dashboard_content .content .content_gallery .a-link {
display: block;
}
.dashboard .dashboard_content .content .content_gallery .gallery_item {
position: relative;
cursor: url("/images/plus_cursor.png") 25 25, pointer;
position: relative;
background-color: rebeccapurple;
height: 150px;
flex-direction: column;
justify-content: center;
align-items: center;
overflow: hidden;
}
.dashboard .dashboard_content .content .content_gallery .gallery_item:hover .btn-delete {
bottom: 5px;
}
.dashboard .dashboard_content .content .content_gallery .gallery_item .btn-delete {
position: absolute;
right: 5px;
bottom: -100px;
border-radius: 50%;
height: 40px;
width: 40px;
padding: 0px;
display: flex;
justify-content: center;
align-items: center;
background-color: #E0F0E8;
}
.dashboard .dashboard_content .content .content_gallery .gallery_item .btn-delete i {
color: #DE2727;
}
.dashboard .dashboard_content .content .content_gallery .gallery_item .btn-delete:hover {
background-color: #DE2727;
}
.dashboard .dashboard_content .content .content_gallery .gallery_item .btn-delete:hover i {
color: white;
}
.dashboard .dashboard_content .content .content_gallery .gallery_item img {
width: 100%;
height: 150px;
-o-object-fit: cover;
object-fit: cover;
}
.dashboard .dashboard_content .content .message {
position: relative;
width: 700px;
margin: 50px auto 0px auto;
padding: 50px;
background-color: white;
border-radius: 10px;
box-shadow: 0 4px 10px -4px #e6e6e6;
}
.dashboard .dashboard_content .content .message h3 {
margin-bottom: 0px;
}
.dashboard .dashboard_content .content .message .message-header {
padding-bottom: 30px;
}
.dashboard .dashboard_content .content .message .message-body {
margin-bottom: 50px;
}
.dashboard .dashboard_content .content .message .message-body p {
text-align: justify;
}
.dashboard .dashboard_content .content .message .message-footer {
display: flex;
justify-content: space-between;
}
.dashboard .dashboard_content .content .comment-section {
max-width: 900px;
margin: 40px auto;
display: grid;
grid-template-columns: 1fr;
grid-row-gap: 10px;
}
.dashboard .dashboard_content .content .comment-section .comment {
background-color: white;
padding: 20px;
box-shadow: 0 4px 10px -4px #c2c0c0;
border-radius: 10px;
}
.dashboard .dashboard_content .content .comment-section .comment .top {
display: flex;
justify-content: space-between;
margin-bottom: 10px;
}
.dashboard .dashboard_content .content .comment-section .comment .top div a {
font-size: 18px;
margin-left: 20px;
}
.column_background_color {
background-color: #F1F1F1;
transition: box-shadow 0.2s;
}
.column_background_color:hover {
box-shadow: 0 4px 10px -4px #c2c0c0;
}
.m-none {
margin-top: 0px !important;
margin-bottom: 50px !important;
}
.form-style {
position: relative;
background-color: white;
padding: 50px;
max-width: 900px;
margin-left: auto;
margin-right: auto;
margin-top: 20px;
border-radius: 10px;
box-shadow: 0 4px 10px -4px #d6d6d6;
display: grid;
grid-gap: 30px;
}
.form-style .form-header {
position: absolute;
display: flex;
flex-direction: row;
align-items: center;
margin-top: -25px;
margin-left: 50px;
}
.form-style .form-header .btn-back {
background-color: #E0F0E8;
border-radius: 50%;
height: 50px;
width: 50px;
display: flex;
justify-content: center;
align-items: center;
margin-right: 20px;
}
.form-style .form-header h1 {
padding: 0px;
margin: 0px;
color: #028144;
}
.form-style .form-group {
display: grid;
grid-row-gap: 5px;
}
.form-style .form-group .label {
font-size: 15px;
font-weight: bold;
}
.form-style .form-group .input-text {
padding: 15px;
border-radius: 5px;
background-color: #F4F4F4;
border: none;
outline-color: #028144;
}
.form-style .form-group .file-hide {
display: none;
}
.form-style .form-group .custom-file-upload {
display: flex;
align-items: center;
border-radius: 5px;
background-color: #F4F4F4;
padding: 15px;
cursor: pointer;
}
.form-style .form-group .custom-file-upload i {
padding-right: 15px;
}
.form-style .form-group .input-textarea {
background-color: #F4F4F4;
border: none;
border-radius: 5px;
outline-color: #028144;
padding: 5px;
}
.form-style .form-group-button .form-submit-button {
float: right;
padding: 15px;
min-width: 150px;
text-transform: uppercase;
font-weight: bold;
cursor: pointer;
}
#example .img-cover {
height: 70px;
width: 100px;
-o-object-fit: cover;
object-fit: cover;
}
#example .span-new-message {
background-color: blue;
color: #028144;
padding: 5px;
color: white;
}
.btn-show-back {
position: absolute;
background-color: #E0F0E8;
top: -25px;
border-radius: 50%;
height: 50px;
width: 50px;
display: flex;
justify-content: center;
align-items: center;
} | 0.368178 | 0.069922 |
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Lexend+Deca&display=swap');
:root{
--Verydarkblue : hsl(233, 47%, 7%);
--Darkdesaturatedblue: hsl(244, 38%, 16%);
--Softviolet: hsl(277, 64%, 61%);
--White : hsl(0, 0%, 100%);
--Slightlytransparentwhitemain : hsla(0, 0%, 100%, 0.75);
--Slightlytransparentwhitestat : hsla(0, 0%, 100%, 0.6);
}
body{
font-family: 'Inter', sans-serif;
font-family: 'Lexend Deca', sans-serif;
color: white;
overflow-x: hidden;
}
*, *::before, *::after{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.background{
display: flex;
background-color: var(--Verydarkblue);
justify-content: center;
align-items: center;
width: 100vw;
min-height: 100vh;
flex-wrap: wrap;
}
.main-box{
display: flex;
justify-content: center;
justify-content: space-between;
width: 60vw;
background-color: var(--Darkdesaturatedblue);
height: 50vh;
border-radius: 12px;
}
.left{
display: flex;
justify-content: center;
flex-direction: column;
justify-content:space-evenly;
width: 50vw;
padding: 50px;
}
.insights{
color: var(--Softviolet);
}
.stats{
display: flex;
margin-top: 50px;
}
.temp{
margin: 0 50px;
}
p{
padding-top: 5px;
font-size: 1em;
color: var(--Slightlytransparentwhitemain);
color: var(--Slightlytransparentwhitestat);
}
.para{
padding-top: 20px;
font-size: 15px;
line-height: 1.5;
color: var(--Slightlytransparentwhitemain);
}
.right{
width: 50vw;
position: relative;
}
.img-desk{
width:100% ;
height: 100%;
object-fit: cover;
border-radius: 0 12px 12px 0;
}
.right::before{
content: "";
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-color: rgba(143, 55, 197, 0.7);
border-radius: 0 12px 12px 0;
}
.attribution{
position: absolute;
color: white;
bottom: 15px;
left: 50%;
transform: translateX(-50%);
}
@media(max-width:700px){
.main-box{
width: 80%;
height: 90vh;
flex-direction: column-reverse;
}
.left,.right{
width: 100%;
}
.left{
padding:unset;
height: 70%;
align-items: center;
}
.para{
line-height: 1.5;
}
.right{
height: 30%;
}
.text{
text-align: center;
width: 80%;
font-size: 13px;
}
.stats{
flex-direction: column;
align-items: center;
text-align: center;
margin-top: 0px;
font-size: 13px;
}
.temp{
margin: 10px 0;
}
.img-desk{
object-position: top;
border-radius: 12px 12px 0 0;
}
.right::before{
border-radius: 12px 12px 0 0;
}
} | style.css | @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Lexend+Deca&display=swap');
:root{
--Verydarkblue : hsl(233, 47%, 7%);
--Darkdesaturatedblue: hsl(244, 38%, 16%);
--Softviolet: hsl(277, 64%, 61%);
--White : hsl(0, 0%, 100%);
--Slightlytransparentwhitemain : hsla(0, 0%, 100%, 0.75);
--Slightlytransparentwhitestat : hsla(0, 0%, 100%, 0.6);
}
body{
font-family: 'Inter', sans-serif;
font-family: 'Lexend Deca', sans-serif;
color: white;
overflow-x: hidden;
}
*, *::before, *::after{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.background{
display: flex;
background-color: var(--Verydarkblue);
justify-content: center;
align-items: center;
width: 100vw;
min-height: 100vh;
flex-wrap: wrap;
}
.main-box{
display: flex;
justify-content: center;
justify-content: space-between;
width: 60vw;
background-color: var(--Darkdesaturatedblue);
height: 50vh;
border-radius: 12px;
}
.left{
display: flex;
justify-content: center;
flex-direction: column;
justify-content:space-evenly;
width: 50vw;
padding: 50px;
}
.insights{
color: var(--Softviolet);
}
.stats{
display: flex;
margin-top: 50px;
}
.temp{
margin: 0 50px;
}
p{
padding-top: 5px;
font-size: 1em;
color: var(--Slightlytransparentwhitemain);
color: var(--Slightlytransparentwhitestat);
}
.para{
padding-top: 20px;
font-size: 15px;
line-height: 1.5;
color: var(--Slightlytransparentwhitemain);
}
.right{
width: 50vw;
position: relative;
}
.img-desk{
width:100% ;
height: 100%;
object-fit: cover;
border-radius: 0 12px 12px 0;
}
.right::before{
content: "";
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-color: rgba(143, 55, 197, 0.7);
border-radius: 0 12px 12px 0;
}
.attribution{
position: absolute;
color: white;
bottom: 15px;
left: 50%;
transform: translateX(-50%);
}
@media(max-width:700px){
.main-box{
width: 80%;
height: 90vh;
flex-direction: column-reverse;
}
.left,.right{
width: 100%;
}
.left{
padding:unset;
height: 70%;
align-items: center;
}
.para{
line-height: 1.5;
}
.right{
height: 30%;
}
.text{
text-align: center;
width: 80%;
font-size: 13px;
}
.stats{
flex-direction: column;
align-items: center;
text-align: center;
margin-top: 0px;
font-size: 13px;
}
.temp{
margin: 10px 0;
}
.img-desk{
object-position: top;
border-radius: 12px 12px 0 0;
}
.right::before{
border-radius: 12px 12px 0 0;
}
} | 0.389082 | 0.092237 |
.item {
padding-top:100px;
min-height:150px;
position:relative
}
.item:before,.last-item:after {
background:#fec11e;
border:4px solid #d9d2d2;
border-radius:99%;
width:30px;
height:30px;
display:inline-block;
content:"";
margin-left:1rem;
position:relative;
z-index:1;
left:calc(3% - 36px)
}
/* Adding vertical line to timeline */
.vertical-line {
width:4px;
background-color: #d9d2d2;
position:absolute;
left:calc(4% - 5px);
top:0;
bottom:0
}
.item .card-panel {
margin:0;
margin:1rem 0 0 3rem
}
.item-date {
margin-top:-60px;
margin-left:4rem
}
.cv-title {
margin-bottom:0;
margin-left:calc(2% - 5px);
line-height:100%
}
.cv-title span {
padding:1rem
}
.last-item{
padding-top:80px;
height:70px;
position:relative
}
/* Map style */
#hk-map {
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.wrapper {
font-size: 0;
}
img {
display: inline-block;
max-width: 100%;
}
.pcontainer {
max-width: 25%;
}
/* Style the video: 100% width and height to cover the entire window */
.playVideo {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.playVideo video{
width: 100%;
height: 100%;
object-fit: fill;
}
.fullcontent {
position: relative;
display: block;
top: 0rem;
right: 0rem;
left: 0rem;
bottom: 0rem;
min-height: 21rem;
color: #f1f1f1;
}
@media (min-width: 48em) {
.fullcontent {
position: absolute;
left: 18rem;
}
}
.photocontent {
position: relative;
top: 0rem;
right: 0rem;
display: block;
height:100%;
min-height: 21rem;
color: #f1f1f1;
background-color: #5F5F5F;
}
@media (min-width: 48em) {
.photocontent {
position: absolute;
left: 18rem;
}
}
#realbodycontent {
width: 100%;
height: 100%;
}
#textcontent {
position: absolute;
width: 100%;
height: 100%;
color: #f1f1f1;
background: rgba(0, 0, 0, 0.5);
object-fit: cover;
}
#textcontent h1{
font-weight: bold;
line-height: 1.25;
color: #d9d2d2;
text-rendering: optimizeLegibility;
}
.vertical-center {
font-size: 100%;
margin: 0;
position: absolute;
top: 50%;
right: 10%;
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
/* Live map section */
#livemap {
width: 100%;
height: 100%;
}
/* basic positioning */
.legend {margin-left:0px;}
.legend longspan { border: 0px solid #ccc; float: left; width: 440px; height: 24px; margin: 0px; }
.legend span { border: 1px solid #ccc; float: left; width: 36px; height: 24px; margin: 0px; }
/* your colors */
.legend .no{ background-color: #ffffff; }
.legend .low { background-color: #ff9999; }
.legend .middle { background-color: #ff6666; }
.legend .high { background-color: #ff3300; }
.crossfade > figure {
animation: imageAnimation 30s linear infinite 0s;
backface-visibility: hidden;
background-size: cover;
background-position: center center;
color: transparent;
height: 100%;
left: 0px;
opacity: 0;
position: absolute;
top: 0px;
width: 100%;
z-index: 0;
display: block;
margin-block-start: 0em;
margin-block-end: 0em;
margin-inline-start: 0px;
margin-inline-end: 0px;
}
.crossfade > figure:nth-child(1) {
background-image: url(../img/background_201908054.jpeg);
}
.crossfade > figure:nth-child(2) {
background-image: url(../img/background_201907151.jpeg);
animation-delay: 6s;
}
.crossfade > figure:nth-child(3) {
background-image: url(../img/background_201908053.jpeg);
animation-delay: 12s;
}
.crossfade > figure:nth-child(4) {
background-image: url(../img/background_201908051.jpeg);
animation-delay: 18s;
}
.crossfade > figure:nth-child(5) {
background-image: url(../img/background_201908052.jpeg);
animation-delay: 24s;
}
@keyframes imageAnimation {
0% { opacity: 0; animation-timing-function: ease-in; }
8% { opacity: 0.8; animation-timing-function: ease-out; }
17% { opacity: 0.8 }
25% { opacity: 0 }
100% { opacity: 0 }
}
.no-cssanimations .crossfade li span{
opacity: 1;
}
#p1num, #p2num, #p3num, #p4num, #p5num {
color: #F05A39;
font-size: 12px;
}
#pnuma {
color: #F05A39;
font-size: 12px;
}
#m1num, #m2num, #m3num, #m4num {
color: #FACC2E;
font-size: 14px;
}
@media (min-width: 40em) {
#p1num, #p2num, #p3num, #p4num, #p5num {
color: #F05A39;
font-size: 24px;
}
#pnuma {
color: #F05A39;
font-size: 20px;
}
#m1num, #m2num, #m3num, #m4num {
color: #FACC2E;
font-size: 24px;
}
}
@media (min-width: 48em) {
#p1num, #p2num, #p3num, #p4num, #p5num {
color: #F05A39;
font-size: 50px;
}
#pnuma {
color: #F05A39;
font-size: 30px;
}
#m1num, #m2num, #m3num, #m4num {
color: #FACC2E;
font-size: 50px;
}
}
@media (min-width: 86em) {
#p1num, #p2num, #p3num, #p4num, #p5num {
color: #F05A39;
font-size: 60px;
}
#pnuma {
color: #F05A39;
font-size: 40px;
}
#m1num, #m2num, #m3num, #m4num {
color: #FACC2E;
font-size: 60px;
}
} | public/css/anonymoushk.css | .item {
padding-top:100px;
min-height:150px;
position:relative
}
.item:before,.last-item:after {
background:#fec11e;
border:4px solid #d9d2d2;
border-radius:99%;
width:30px;
height:30px;
display:inline-block;
content:"";
margin-left:1rem;
position:relative;
z-index:1;
left:calc(3% - 36px)
}
/* Adding vertical line to timeline */
.vertical-line {
width:4px;
background-color: #d9d2d2;
position:absolute;
left:calc(4% - 5px);
top:0;
bottom:0
}
.item .card-panel {
margin:0;
margin:1rem 0 0 3rem
}
.item-date {
margin-top:-60px;
margin-left:4rem
}
.cv-title {
margin-bottom:0;
margin-left:calc(2% - 5px);
line-height:100%
}
.cv-title span {
padding:1rem
}
.last-item{
padding-top:80px;
height:70px;
position:relative
}
/* Map style */
#hk-map {
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.wrapper {
font-size: 0;
}
img {
display: inline-block;
max-width: 100%;
}
.pcontainer {
max-width: 25%;
}
/* Style the video: 100% width and height to cover the entire window */
.playVideo {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.playVideo video{
width: 100%;
height: 100%;
object-fit: fill;
}
.fullcontent {
position: relative;
display: block;
top: 0rem;
right: 0rem;
left: 0rem;
bottom: 0rem;
min-height: 21rem;
color: #f1f1f1;
}
@media (min-width: 48em) {
.fullcontent {
position: absolute;
left: 18rem;
}
}
.photocontent {
position: relative;
top: 0rem;
right: 0rem;
display: block;
height:100%;
min-height: 21rem;
color: #f1f1f1;
background-color: #5F5F5F;
}
@media (min-width: 48em) {
.photocontent {
position: absolute;
left: 18rem;
}
}
#realbodycontent {
width: 100%;
height: 100%;
}
#textcontent {
position: absolute;
width: 100%;
height: 100%;
color: #f1f1f1;
background: rgba(0, 0, 0, 0.5);
object-fit: cover;
}
#textcontent h1{
font-weight: bold;
line-height: 1.25;
color: #d9d2d2;
text-rendering: optimizeLegibility;
}
.vertical-center {
font-size: 100%;
margin: 0;
position: absolute;
top: 50%;
right: 10%;
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
/* Live map section */
#livemap {
width: 100%;
height: 100%;
}
/* basic positioning */
.legend {margin-left:0px;}
.legend longspan { border: 0px solid #ccc; float: left; width: 440px; height: 24px; margin: 0px; }
.legend span { border: 1px solid #ccc; float: left; width: 36px; height: 24px; margin: 0px; }
/* your colors */
.legend .no{ background-color: #ffffff; }
.legend .low { background-color: #ff9999; }
.legend .middle { background-color: #ff6666; }
.legend .high { background-color: #ff3300; }
.crossfade > figure {
animation: imageAnimation 30s linear infinite 0s;
backface-visibility: hidden;
background-size: cover;
background-position: center center;
color: transparent;
height: 100%;
left: 0px;
opacity: 0;
position: absolute;
top: 0px;
width: 100%;
z-index: 0;
display: block;
margin-block-start: 0em;
margin-block-end: 0em;
margin-inline-start: 0px;
margin-inline-end: 0px;
}
.crossfade > figure:nth-child(1) {
background-image: url(../img/background_201908054.jpeg);
}
.crossfade > figure:nth-child(2) {
background-image: url(../img/background_201907151.jpeg);
animation-delay: 6s;
}
.crossfade > figure:nth-child(3) {
background-image: url(../img/background_201908053.jpeg);
animation-delay: 12s;
}
.crossfade > figure:nth-child(4) {
background-image: url(../img/background_201908051.jpeg);
animation-delay: 18s;
}
.crossfade > figure:nth-child(5) {
background-image: url(../img/background_201908052.jpeg);
animation-delay: 24s;
}
@keyframes imageAnimation {
0% { opacity: 0; animation-timing-function: ease-in; }
8% { opacity: 0.8; animation-timing-function: ease-out; }
17% { opacity: 0.8 }
25% { opacity: 0 }
100% { opacity: 0 }
}
.no-cssanimations .crossfade li span{
opacity: 1;
}
#p1num, #p2num, #p3num, #p4num, #p5num {
color: #F05A39;
font-size: 12px;
}
#pnuma {
color: #F05A39;
font-size: 12px;
}
#m1num, #m2num, #m3num, #m4num {
color: #FACC2E;
font-size: 14px;
}
@media (min-width: 40em) {
#p1num, #p2num, #p3num, #p4num, #p5num {
color: #F05A39;
font-size: 24px;
}
#pnuma {
color: #F05A39;
font-size: 20px;
}
#m1num, #m2num, #m3num, #m4num {
color: #FACC2E;
font-size: 24px;
}
}
@media (min-width: 48em) {
#p1num, #p2num, #p3num, #p4num, #p5num {
color: #F05A39;
font-size: 50px;
}
#pnuma {
color: #F05A39;
font-size: 30px;
}
#m1num, #m2num, #m3num, #m4num {
color: #FACC2E;
font-size: 50px;
}
}
@media (min-width: 86em) {
#p1num, #p2num, #p3num, #p4num, #p5num {
color: #F05A39;
font-size: 60px;
}
#pnuma {
color: #F05A39;
font-size: 40px;
}
#m1num, #m2num, #m3num, #m4num {
color: #FACC2E;
font-size: 60px;
}
} | 0.644449 | 0.079282 |
html {
font-family: Palatino,Georgia,Times;
font-size: 15px;
}
body {
color: #c60;
background-color: #333;
padding: 2rem 0;
}
.content {
width: 800px;
margin: 1rem auto;
position: relative;
}
h1 {
font-family: Helvetica, Arial, Sans;
color:#fff;
font-size: 2.7rem;
text-shadow: 0 0 8px #0f0;
}
p {
line-height: 1.5;
}
.disclaimer {
font-style: italic;
line-height: 1.3;
color: #ddd;
margin: 2rem 0;
}
super {
color: #fff;
}
.desc {
font-size: 1.1em;
width: 75%;
}
.prompt {
font-size: 1.1em;
margin-bottom: 2rem;
color: #ddd;
}
.prompt, .desc {
margin-top: 2rem;
text-shadow: 0 0 5px #000;
}
button {
color: #5f5;
font-size: 1.5rem;
font-family: Palatino,Georgia,Times;
font-style: italic;
background-color: #000;
border-radius: 20px;
border: 0;
padding: 8px 24px;
box-shadow: 0 0 30px #fff;
position: relative;
top: 10px;
left: -60px;
}
button:hover,
button:focus {
color: #fff;
background-color: #a40;
outline: 0;
}
button:active {
box-shadow: 0 0 0 transparent;
}
#idea {
font-size: 2rem;
font-weight: normal;
line-height: 1.2;
color: #fff;
background-color: #000;
width: 75%;
padding: 1.5rem;
box-shadow: 0 0 30px #000;
border-radius: 30px;
}
#idea-text {
display: inline-block;
opacity: 1.0;
text-shadow: 0 0 20px #4f4;
-webkit-transition: opacity 0.7s;
transition: opacity 0.7s;
}
.ghost {
position: absolute;
top: 140px;
right: -50px;
z-index: 1;
}
#idea-text.faded {
opacity: 0;
}
/* Ghost animation */
/* horizontal movement: */
@-webkit-keyframes floatHorizontal {
0% { right: -50px; }
50% { right: -20px; }
100% { right: -50px; }
}
@-moz-keyframes floatHorizontal {
0% { right: -50px; }
50% { right: -20px; }
100% { right: -50px; }
}
@-o-keyframes floatHorizontal {
0% { right: -50px; }
50% { right: -20px; }
100% { right: -50px; }
}
@keyframes floatHorizontal {
0% { right: -50px; }
50% { right: -20px; }
100% { right: -50px; }
}
/* vertical movement: */
@-webkit-keyframes floatVertical {
0% { top: 130px; opacity: 0;}
50% { top: 150px; opacity: 1;}
100% { top: 130px; opacity: 0;}
}
@-moz-keyframes floatVertical {
0% { top: 130px; opacity: 0;}
50% { top: 150px; opacity: 1;}
100% { top: 130px; opacity: 0;}
}
@-o-keyframes floatVertical {
0% { top: 130px; opacity: 0;}
50% { top: 150px; opacity: 1;}
100% { top: 130px; opacity: 0;}
}
@keyframes floatVertical {
0% { top: 130px; opacity: 0;}
50% { top: 150px; opacity: 1;}
100% { top: 130px; opacity: 0;}
}
.ghost {
-webkit-animation: floatHorizontal 9s infinite, floatVertical 7s infinite; /* Safari 4+ */
-moz-animation: floatHorizontal 9s infinite, floatVertical 7s infinite; /* Fx 5+ */
-o-animation: floatHorizontal 9s infinite, floatVertical 7s infinite; /* Opera 12+ */
animation: floatHorizontal 9s infinite, floatVertical 7s infinite; /* IE 10+ */
} | styles.css | html {
font-family: Palatino,Georgia,Times;
font-size: 15px;
}
body {
color: #c60;
background-color: #333;
padding: 2rem 0;
}
.content {
width: 800px;
margin: 1rem auto;
position: relative;
}
h1 {
font-family: Helvetica, Arial, Sans;
color:#fff;
font-size: 2.7rem;
text-shadow: 0 0 8px #0f0;
}
p {
line-height: 1.5;
}
.disclaimer {
font-style: italic;
line-height: 1.3;
color: #ddd;
margin: 2rem 0;
}
super {
color: #fff;
}
.desc {
font-size: 1.1em;
width: 75%;
}
.prompt {
font-size: 1.1em;
margin-bottom: 2rem;
color: #ddd;
}
.prompt, .desc {
margin-top: 2rem;
text-shadow: 0 0 5px #000;
}
button {
color: #5f5;
font-size: 1.5rem;
font-family: Palatino,Georgia,Times;
font-style: italic;
background-color: #000;
border-radius: 20px;
border: 0;
padding: 8px 24px;
box-shadow: 0 0 30px #fff;
position: relative;
top: 10px;
left: -60px;
}
button:hover,
button:focus {
color: #fff;
background-color: #a40;
outline: 0;
}
button:active {
box-shadow: 0 0 0 transparent;
}
#idea {
font-size: 2rem;
font-weight: normal;
line-height: 1.2;
color: #fff;
background-color: #000;
width: 75%;
padding: 1.5rem;
box-shadow: 0 0 30px #000;
border-radius: 30px;
}
#idea-text {
display: inline-block;
opacity: 1.0;
text-shadow: 0 0 20px #4f4;
-webkit-transition: opacity 0.7s;
transition: opacity 0.7s;
}
.ghost {
position: absolute;
top: 140px;
right: -50px;
z-index: 1;
}
#idea-text.faded {
opacity: 0;
}
/* Ghost animation */
/* horizontal movement: */
@-webkit-keyframes floatHorizontal {
0% { right: -50px; }
50% { right: -20px; }
100% { right: -50px; }
}
@-moz-keyframes floatHorizontal {
0% { right: -50px; }
50% { right: -20px; }
100% { right: -50px; }
}
@-o-keyframes floatHorizontal {
0% { right: -50px; }
50% { right: -20px; }
100% { right: -50px; }
}
@keyframes floatHorizontal {
0% { right: -50px; }
50% { right: -20px; }
100% { right: -50px; }
}
/* vertical movement: */
@-webkit-keyframes floatVertical {
0% { top: 130px; opacity: 0;}
50% { top: 150px; opacity: 1;}
100% { top: 130px; opacity: 0;}
}
@-moz-keyframes floatVertical {
0% { top: 130px; opacity: 0;}
50% { top: 150px; opacity: 1;}
100% { top: 130px; opacity: 0;}
}
@-o-keyframes floatVertical {
0% { top: 130px; opacity: 0;}
50% { top: 150px; opacity: 1;}
100% { top: 130px; opacity: 0;}
}
@keyframes floatVertical {
0% { top: 130px; opacity: 0;}
50% { top: 150px; opacity: 1;}
100% { top: 130px; opacity: 0;}
}
.ghost {
-webkit-animation: floatHorizontal 9s infinite, floatVertical 7s infinite; /* Safari 4+ */
-moz-animation: floatHorizontal 9s infinite, floatVertical 7s infinite; /* Fx 5+ */
-o-animation: floatHorizontal 9s infinite, floatVertical 7s infinite; /* Opera 12+ */
animation: floatHorizontal 9s infinite, floatVertical 7s infinite; /* IE 10+ */
} | 0.346873 | 0.091992 |
.header-banner-container {
background-image: url(/images/background/assignment.jpg);
background-repeat: repeat;
}
.title_two,
.portfolio_slider_wrap .anchor_title_wrap a:hover,
#section_achieve .bg_achieve .wrap_counter .counter_count,
#section_faq_testimonial .faq_wrap .faq_title,
#section_faq_testimonial .test_wrap .title_test,
#section_cta .button_cta a:hover,
.entry-footer a:hover,
.entry-footer a:focus,
.entry-footer a:active,
ul#follow_us_contacts li a:hover i,
.rn_title a:hover,
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
color: #2d7fc7;
}
.widget ul li:hover:after,
.widget ul li a:hover,
#secondary .footer_RN_wrap .tn_title a:hover,
#primary .entry-title a:hover,
.contact-info-wrap ul li a:hover {
color: rgba(45, 127, 199, 0.8);
}
.main-navigation,
.main-navigation.top ul ul,
#section_service .service_slider.owl-carousel,
.wrap_video .video_wrap .play-pause-video,
#section_cta,
.recent_news .rn_title_content .ln_date,
#section_news_twitter_message .twitter_wrap,
.faq_dot:before,
.main-navigation ul ul.sub-menu > li > a,
.search-form:before,
#secondary h2.widget-title:before,
.nav-links a,
.contact-form-wrap form input[type="submit"],
.woocommerce span.onsale,
.woocommerce #respond input#submit,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce-account .woocommerce-MyAccount-navigation ul {
background: #2d7fc7;
}
.service_slider .content_wrap .title_content_service {
color: #d5e5f4;
}
.service_slider.owl-carousel .owl-controls .owl-nav div {
color: #d5e5f4;
}
.service_slider .content_wrap:after {
background: #abcce9;
}
.service_slider.owl-carousel:before,
#section_cta .title_section_cta,
.twitter_wrap .aptf-single-tweet-wrapper {
border-color: #abcce9;
}
#section_news_twitter_message .recent_news .rn_content_loop .rn_image,
.contact-form-wrap form input[type="submit"]:hover,
#section_news_twitter_message
.recent_news
.rn_content_loop
.rn_image:hover
span,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
background: rgba(45, 127, 199, 0.65);
}
.main-navigation ul ul li,
.main-navigation ul ul ul li {
background: rgba(45, 127, 199, 0.8);
}
.portfolio_slider_wrap.owl-carousel .owl-controls .owl-dot.active span,
.portfolio_slider_wrap.owl-carousel .owl-controls .owl-dot span:hover,
#section_faq_testimonial
.faq_cat_wrap
.bx-wrapper
.bx-pager.bx-default-pager
a:hover,
#section_faq_testimonial
.faq_cat_wrap
.bx-wrapper
.bx-pager.bx-default-pager
a.active,
#secondary .search-form .search-submit,
#primary .error-404.not-found .search-form .search-submit,
.not-found .search-form .search-submit,
.site-footer .widget_search .search-submit,
ul#follow_us_contacts li a:hover i {
border-color: #2d7fc7;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
border-color: #abcce9;
}
#section_news_slide,
#section_faq_testimonial .test_faq_wrap .faq_question.expanded .plus_minus_wrap,
#section_faq_testimonial
.test_faq_wrap
.faq_question.expanded
.plus_minus_wrap:before,
#section_news_twitter_message .recent_news .rn_title,
#section_news_twitter_message .messag_wrap .rn_title {
background: #2d7fc7;
}
body,
body p {
font-family: Lato;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Titillium Web;
}
.main-navigation a {
font-family: Open Sans;
}
.page-title-wrap {
padding: 0px !important;
padding-top: 10px !important;
}
.course-introduction {
display: flex;
flex-direction: column;
width: 60%;
padding-top: 5vh !important;
padding-bottom: 5vh !important;
}
.course-introduction .course-title {
text-transform: capitalize;
text-decoration: underline;
word-spacing: 8px;
margin: 10px 0 5px 0;
font-size: 2em;
font-weight: bold;
}
.course-introduction .course-rating {
text-transform: capitalize;
}
.course-introduction .course-rating span + span {
padding-left: 30px;
}
.course-introduction .course-rating::before {
content: "\f005 \f005 \f005 \f005 \f123 ";
font-family: FontAwesome;
color: #f5b237;
}
.course-introduction .course-description {
padding-top: 4vh;
text-align: justify;
text-indent: 30px;
text-transform: lowercase;
font-size: 15px;
font-family: Arial, Helvetica, sans-serif;
}
.course-introduction .course-description::first-letter {
text-transform: uppercase;
font-size: 20px;
}
.course-main-section {
display: flex;
flex-direction: column;
padding: 30px 0px !important;
color: #2b2b2b;
}
.course-main-section .course-info {
padding: 5px 0px;
}
.course-main-section .course-info .title {
font-size: 2em;
}
.course-main-section .course-info .title::before {
content: open-quote;
font-size: 1.5em;
margin: 0px 5px;
}
.course-main-section .course-info .title::after {
content: close-quote;
font-size: 1.5em;
margin: 0px 5px;
}
.course-main-section .course-info .disputation {
width: 75%;
font-size: 15px;
}
.course-main-section .course-feature-and-skills {
display: flex;
}
.course-main-section .course-feature-and-skills .course-feature {
flex-basis: 70%;
}
.course-main-section .course-feature-and-skills .course-feature .title {
font-size: 1.3em;
font-weight: bold;
color: green;
padding-top: 15px;
padding-bottom: 10px;
margin: 0px !important;
}
.course-main-section .course-feature-and-skills .course-feature .feature {
display: flex;
flex-wrap: wrap;
list-style: none;
justify-content: flex-start;
}
.course-main-section .course-feature-and-skills .course-feature .feature li {
flex-basis: 45%;
padding: 5px 10px;
border: 2px solid #9292fa;
margin: 5px;
border-radius: 20px;
font-size: 15px;
}
.course-main-section .course-feature-and-skills .course-feature .feature li::before {
content: "\f058";
font-family: FontAwesome;
margin-right: 5px;
font-size: 18px;
color: green;
}
.course-main-section .course-feature-and-skills .skills-details {
flex-basis: 30%;
}
.course-main-section .course-feature-and-skills .skills-details .title {
font-size: 1.3em;
font-weight: bold;
color: #353553;
padding-top: 15px;
padding-bottom: 10px;
margin: 0px !important;
}
.course-main-section .course-feature-and-skills .skills-details .skills {
display: flex;
flex-wrap: wrap;
list-style: none;
justify-content: flex-start;
}
.course-main-section .course-feature-and-skills .skills-details .skills li {
flex-basis: 100%;
padding: 5px 0px;
margin: 5px;
font-size: 15px;
}
.course-main-section .course-feature-and-skills .skills-details .skills li::before {
content: "\f111";
font-family: FontAwesome;
margin-right: 20px;
font-size: 15px;
color: #9292fa;
}
.course-main-section .course-benefits .title {
font-size: 1.3em;
font-weight: bold;
color: #535353;
padding-top: 15px;
padding-bottom: 10px;
margin: 0px !important;
}
.course-main-section .course-benefits .details {
font-size: 1.1em;
margin-left: 5px;
}
.course-curriculum-section {
padding: 30px 0px;
display: flex;
flex-wrap: wrap;
}
.course-curriculum-section .course-curriculum-main {
flex-basis: 70%;
}
.course-curriculum-section .course-curriculum-main .title {
font-size: 2em;
color: #202020;
font-weight: bold;
}
.course-curriculum-section .course-curriculum-main .course-curriculum-content {
padding-top: 25px;
}
.course-curriculum-section .course-curriculum-main .course-curriculum-content .title {
font-size: 1.5em;
color: #202020;
font-weight: normal;
}
.course-curriculum-section .course-curriculum-main .course-curriculum-content .details {
font-size: 1.1em;
color: #425b70;
width: 97%;
}
.course-curriculum-section .course-curriculum-main .course-curriculum-content .course-syllabus {
font-size: 1.1em;
}
.course-curriculum-section .course-curriculum-main .course-curriculum-content .course-syllabus ul {
display: flex;
flex-direction: column;
padding-left: 30px;
width: 80%;
}
.course-curriculum-section .course-curriculum-main .course-curriculum-content .course-syllabus ul li {
padding: 10px 0px;
display: flex;
justify-content: space-between;
border-bottom: 1px solid #dfdddd;
}
.course-curriculum-section .course-curriculum-main .course-curriculum-content .course-syllabus ul li span {
color: blueviolet;
font-weight: bold;
}
.course-curriculum-section .course-curriculum-main .course-curriculum-content .course-syllabus ul li span i::before {
margin-right: 10px;
content: "\f124";
font-family: FontAwesome;
}
.course-curriculum-section .course-curriculum-form {
flex-basis: 30%;
}
.course-curriculum-section .course-curriculum-form .contact-us {
border: 1px solid #b6d9f8;
padding: 10px 15px;
vertical-align: middle;
position: relative;
}
.course-curriculum-section .course-curriculum-form .contact-us p {
font-size: 1em;
margin: 0px;
margin: 5px 0px;
color: #7c527c;
}
.course-curriculum-section .course-curriculum-form .contact-us .number {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 2em;
}
.course-curriculum-section .course-curriculum-form .contact-us .number::after {
content: "\f232";
color: forestgreen;
font-family: FontAwesome;
font-size: 1.5em;
position: relative;
right: 10px;
}
.course-curriculum-section .course-curriculum-form .contact-us::after {
content: "";
width: 1px;
height: 70%;
position: absolute;
top: 20px;
right: 30%;
background-color: #b6d9f8;
}
.course-curriculum-section .course-curriculum-form .contact-form {
position: fixed;
z-index: 101;
top: 0px;
width: 300px;
padding: 10px;
border: 1px solid #424242;
top: 25%;
right: 0px;
background-color: white;
}
.course-curriculum-section .course-curriculum-form .contact-form .title {
text-align: center;
padding: 10px 0px;
font-size: 18px;
text-transform: capitalize;
font-weight: bold;
}
.course-curriculum-section .course-curriculum-form .contact-form .flex {
display: flex;
flex-direction: column;
}
.course-curriculum-section .course-curriculum-form .contact-form .flex .input-group {
flex-basis: 100%;
padding: 10px 10px;
}
.course-curriculum-section .course-curriculum-form .contact-form .flex .input-group .form-control {
width: 100%;
border: 0px;
border-bottom: 1px solid #947394;
}
.course-curriculum-section .course-curriculum-form .contact-form .flex .input-group .form-control:focus {
outline: 0px;
border-bottom: 1px dotted #947394;
}
.course-curriculum-section .course-curriculum-form .contact-form .flex .input-group .submit {
margin: auto;
padding: 8px 30px;
background-color: transparent;
border: 1px blue solid;
color: blue;
font-size: 1.2em;
position: relative;
transition-property: box-shadow;
transition-duration: 2s;
}
.course-curriculum-section .course-curriculum-form .contact-form .flex .input-group .submit:hover {
box-shadow: 0px 0px 5px rgba(0, 0, 255, 0.452);
}
.course-curriculum-section .course-curriculum-form .contact-form .flex .input-group .cancel {
margin: auto;
margin-left: 20px;
padding: 8px 30px;
background-color: transparent;
border: 1px red solid;
color: red;
font-size: 1.2em;
position: relative;
transition-property: box-shadow;
transition-duration: 2s;
}
.course-curriculum-section .course-curriculum-form .contact-form .flex .input-group .cancel:hover {
box-shadow: 0px 0px 5px red;
}
.form-reset {
transform: translateX(300px);
}
.form-set {
animation: setEnrollForm 1s forwards;
}
.form-cancel {
animation: setEnrollFormOut 1s forwards;
}
.floating-enroll {
position: fixed;
top: 50%;
right: 0;
z-index: 100;
}
.floating-enroll button {
display: block;
margin: auto;
padding: 8px 10px;
background-color: #f1d012;
border: 1px #639c07 solid;
color: black;
font-weight: bold;
font-size: 1em;
position: relative;
transition-property: box-shadow;
transition-duration: 2s;
}
.floating-enroll button:hover {
box-shadow: 0px 0px 5px #639c07;
animation: moveBlock 0.5s;
}
.floating-enroll button::after {
content: "\f0a4";
font-family: FontAwesome;
margin-left: 10px;
font-size: 1.2em;
}
.flex {
display: flex;
}
.course-mentor {
flex-basis: 40%;
display: flex;
justify-content: center;
align-items: center;
}
.course-mentor .mentor {
flex-basis: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.course-mentor .mentor img {
height: 180px;
border-radius: 10%;
box-shadow: 10px 0px #ff00c8, -10px 0px #ff2c2c;
}
.course-mentor .mentor .mentor-name {
margin: 0px;
text-transform: uppercase;
font-size: 1em;
color: #fdaee3;
margin-top: 5px;
}
.course-mentor .mentor .mentor-designation {
margin: 0px;
text-transform: uppercase;
}
.course-mentor .mentor .start {
margin: 0px;
}
.course-mentor .mentor .start i {
margin: 0px 2px;
color: #ffa32b;
}
@keyframes moveBlock {
0% {
transform: translateX(0px);
}
25% {
transform: translateX(-10px);
}
50% {
transform: translateX(0px);
}
75% {
transform: translateX(-10px);
}
100% {
transform: translateX(0px);
}
}
@keyframes setEnrollForm {
0% {
transform: translateX(100%);
}
100% {
transform: translateX(0%);
}
}
@keyframes setEnrollFormOut {
0% {
transform: translateX(0%);
}
10% {
transform: translateX(-10%);
}
100% {
transform: translateX(100%);
}
}
/*# sourceMappingURL=main.css.map */ | public/css/dist/main.css | .header-banner-container {
background-image: url(/images/background/assignment.jpg);
background-repeat: repeat;
}
.title_two,
.portfolio_slider_wrap .anchor_title_wrap a:hover,
#section_achieve .bg_achieve .wrap_counter .counter_count,
#section_faq_testimonial .faq_wrap .faq_title,
#section_faq_testimonial .test_wrap .title_test,
#section_cta .button_cta a:hover,
.entry-footer a:hover,
.entry-footer a:focus,
.entry-footer a:active,
ul#follow_us_contacts li a:hover i,
.rn_title a:hover,
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
color: #2d7fc7;
}
.widget ul li:hover:after,
.widget ul li a:hover,
#secondary .footer_RN_wrap .tn_title a:hover,
#primary .entry-title a:hover,
.contact-info-wrap ul li a:hover {
color: rgba(45, 127, 199, 0.8);
}
.main-navigation,
.main-navigation.top ul ul,
#section_service .service_slider.owl-carousel,
.wrap_video .video_wrap .play-pause-video,
#section_cta,
.recent_news .rn_title_content .ln_date,
#section_news_twitter_message .twitter_wrap,
.faq_dot:before,
.main-navigation ul ul.sub-menu > li > a,
.search-form:before,
#secondary h2.widget-title:before,
.nav-links a,
.contact-form-wrap form input[type="submit"],
.woocommerce span.onsale,
.woocommerce #respond input#submit,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce-account .woocommerce-MyAccount-navigation ul {
background: #2d7fc7;
}
.service_slider .content_wrap .title_content_service {
color: #d5e5f4;
}
.service_slider.owl-carousel .owl-controls .owl-nav div {
color: #d5e5f4;
}
.service_slider .content_wrap:after {
background: #abcce9;
}
.service_slider.owl-carousel:before,
#section_cta .title_section_cta,
.twitter_wrap .aptf-single-tweet-wrapper {
border-color: #abcce9;
}
#section_news_twitter_message .recent_news .rn_content_loop .rn_image,
.contact-form-wrap form input[type="submit"]:hover,
#section_news_twitter_message
.recent_news
.rn_content_loop
.rn_image:hover
span,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
background: rgba(45, 127, 199, 0.65);
}
.main-navigation ul ul li,
.main-navigation ul ul ul li {
background: rgba(45, 127, 199, 0.8);
}
.portfolio_slider_wrap.owl-carousel .owl-controls .owl-dot.active span,
.portfolio_slider_wrap.owl-carousel .owl-controls .owl-dot span:hover,
#section_faq_testimonial
.faq_cat_wrap
.bx-wrapper
.bx-pager.bx-default-pager
a:hover,
#section_faq_testimonial
.faq_cat_wrap
.bx-wrapper
.bx-pager.bx-default-pager
a.active,
#secondary .search-form .search-submit,
#primary .error-404.not-found .search-form .search-submit,
.not-found .search-form .search-submit,
.site-footer .widget_search .search-submit,
ul#follow_us_contacts li a:hover i {
border-color: #2d7fc7;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
border-color: #abcce9;
}
#section_news_slide,
#section_faq_testimonial .test_faq_wrap .faq_question.expanded .plus_minus_wrap,
#section_faq_testimonial
.test_faq_wrap
.faq_question.expanded
.plus_minus_wrap:before,
#section_news_twitter_message .recent_news .rn_title,
#section_news_twitter_message .messag_wrap .rn_title {
background: #2d7fc7;
}
body,
body p {
font-family: Lato;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Titillium Web;
}
.main-navigation a {
font-family: Open Sans;
}
.page-title-wrap {
padding: 0px !important;
padding-top: 10px !important;
}
.course-introduction {
display: flex;
flex-direction: column;
width: 60%;
padding-top: 5vh !important;
padding-bottom: 5vh !important;
}
.course-introduction .course-title {
text-transform: capitalize;
text-decoration: underline;
word-spacing: 8px;
margin: 10px 0 5px 0;
font-size: 2em;
font-weight: bold;
}
.course-introduction .course-rating {
text-transform: capitalize;
}
.course-introduction .course-rating span + span {
padding-left: 30px;
}
.course-introduction .course-rating::before {
content: "\f005 \f005 \f005 \f005 \f123 ";
font-family: FontAwesome;
color: #f5b237;
}
.course-introduction .course-description {
padding-top: 4vh;
text-align: justify;
text-indent: 30px;
text-transform: lowercase;
font-size: 15px;
font-family: Arial, Helvetica, sans-serif;
}
.course-introduction .course-description::first-letter {
text-transform: uppercase;
font-size: 20px;
}
.course-main-section {
display: flex;
flex-direction: column;
padding: 30px 0px !important;
color: #2b2b2b;
}
.course-main-section .course-info {
padding: 5px 0px;
}
.course-main-section .course-info .title {
font-size: 2em;
}
.course-main-section .course-info .title::before {
content: open-quote;
font-size: 1.5em;
margin: 0px 5px;
}
.course-main-section .course-info .title::after {
content: close-quote;
font-size: 1.5em;
margin: 0px 5px;
}
.course-main-section .course-info .disputation {
width: 75%;
font-size: 15px;
}
.course-main-section .course-feature-and-skills {
display: flex;
}
.course-main-section .course-feature-and-skills .course-feature {
flex-basis: 70%;
}
.course-main-section .course-feature-and-skills .course-feature .title {
font-size: 1.3em;
font-weight: bold;
color: green;
padding-top: 15px;
padding-bottom: 10px;
margin: 0px !important;
}
.course-main-section .course-feature-and-skills .course-feature .feature {
display: flex;
flex-wrap: wrap;
list-style: none;
justify-content: flex-start;
}
.course-main-section .course-feature-and-skills .course-feature .feature li {
flex-basis: 45%;
padding: 5px 10px;
border: 2px solid #9292fa;
margin: 5px;
border-radius: 20px;
font-size: 15px;
}
.course-main-section .course-feature-and-skills .course-feature .feature li::before {
content: "\f058";
font-family: FontAwesome;
margin-right: 5px;
font-size: 18px;
color: green;
}
.course-main-section .course-feature-and-skills .skills-details {
flex-basis: 30%;
}
.course-main-section .course-feature-and-skills .skills-details .title {
font-size: 1.3em;
font-weight: bold;
color: #353553;
padding-top: 15px;
padding-bottom: 10px;
margin: 0px !important;
}
.course-main-section .course-feature-and-skills .skills-details .skills {
display: flex;
flex-wrap: wrap;
list-style: none;
justify-content: flex-start;
}
.course-main-section .course-feature-and-skills .skills-details .skills li {
flex-basis: 100%;
padding: 5px 0px;
margin: 5px;
font-size: 15px;
}
.course-main-section .course-feature-and-skills .skills-details .skills li::before {
content: "\f111";
font-family: FontAwesome;
margin-right: 20px;
font-size: 15px;
color: #9292fa;
}
.course-main-section .course-benefits .title {
font-size: 1.3em;
font-weight: bold;
color: #535353;
padding-top: 15px;
padding-bottom: 10px;
margin: 0px !important;
}
.course-main-section .course-benefits .details {
font-size: 1.1em;
margin-left: 5px;
}
.course-curriculum-section {
padding: 30px 0px;
display: flex;
flex-wrap: wrap;
}
.course-curriculum-section .course-curriculum-main {
flex-basis: 70%;
}
.course-curriculum-section .course-curriculum-main .title {
font-size: 2em;
color: #202020;
font-weight: bold;
}
.course-curriculum-section .course-curriculum-main .course-curriculum-content {
padding-top: 25px;
}
.course-curriculum-section .course-curriculum-main .course-curriculum-content .title {
font-size: 1.5em;
color: #202020;
font-weight: normal;
}
.course-curriculum-section .course-curriculum-main .course-curriculum-content .details {
font-size: 1.1em;
color: #425b70;
width: 97%;
}
.course-curriculum-section .course-curriculum-main .course-curriculum-content .course-syllabus {
font-size: 1.1em;
}
.course-curriculum-section .course-curriculum-main .course-curriculum-content .course-syllabus ul {
display: flex;
flex-direction: column;
padding-left: 30px;
width: 80%;
}
.course-curriculum-section .course-curriculum-main .course-curriculum-content .course-syllabus ul li {
padding: 10px 0px;
display: flex;
justify-content: space-between;
border-bottom: 1px solid #dfdddd;
}
.course-curriculum-section .course-curriculum-main .course-curriculum-content .course-syllabus ul li span {
color: blueviolet;
font-weight: bold;
}
.course-curriculum-section .course-curriculum-main .course-curriculum-content .course-syllabus ul li span i::before {
margin-right: 10px;
content: "\f124";
font-family: FontAwesome;
}
.course-curriculum-section .course-curriculum-form {
flex-basis: 30%;
}
.course-curriculum-section .course-curriculum-form .contact-us {
border: 1px solid #b6d9f8;
padding: 10px 15px;
vertical-align: middle;
position: relative;
}
.course-curriculum-section .course-curriculum-form .contact-us p {
font-size: 1em;
margin: 0px;
margin: 5px 0px;
color: #7c527c;
}
.course-curriculum-section .course-curriculum-form .contact-us .number {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 2em;
}
.course-curriculum-section .course-curriculum-form .contact-us .number::after {
content: "\f232";
color: forestgreen;
font-family: FontAwesome;
font-size: 1.5em;
position: relative;
right: 10px;
}
.course-curriculum-section .course-curriculum-form .contact-us::after {
content: "";
width: 1px;
height: 70%;
position: absolute;
top: 20px;
right: 30%;
background-color: #b6d9f8;
}
.course-curriculum-section .course-curriculum-form .contact-form {
position: fixed;
z-index: 101;
top: 0px;
width: 300px;
padding: 10px;
border: 1px solid #424242;
top: 25%;
right: 0px;
background-color: white;
}
.course-curriculum-section .course-curriculum-form .contact-form .title {
text-align: center;
padding: 10px 0px;
font-size: 18px;
text-transform: capitalize;
font-weight: bold;
}
.course-curriculum-section .course-curriculum-form .contact-form .flex {
display: flex;
flex-direction: column;
}
.course-curriculum-section .course-curriculum-form .contact-form .flex .input-group {
flex-basis: 100%;
padding: 10px 10px;
}
.course-curriculum-section .course-curriculum-form .contact-form .flex .input-group .form-control {
width: 100%;
border: 0px;
border-bottom: 1px solid #947394;
}
.course-curriculum-section .course-curriculum-form .contact-form .flex .input-group .form-control:focus {
outline: 0px;
border-bottom: 1px dotted #947394;
}
.course-curriculum-section .course-curriculum-form .contact-form .flex .input-group .submit {
margin: auto;
padding: 8px 30px;
background-color: transparent;
border: 1px blue solid;
color: blue;
font-size: 1.2em;
position: relative;
transition-property: box-shadow;
transition-duration: 2s;
}
.course-curriculum-section .course-curriculum-form .contact-form .flex .input-group .submit:hover {
box-shadow: 0px 0px 5px rgba(0, 0, 255, 0.452);
}
.course-curriculum-section .course-curriculum-form .contact-form .flex .input-group .cancel {
margin: auto;
margin-left: 20px;
padding: 8px 30px;
background-color: transparent;
border: 1px red solid;
color: red;
font-size: 1.2em;
position: relative;
transition-property: box-shadow;
transition-duration: 2s;
}
.course-curriculum-section .course-curriculum-form .contact-form .flex .input-group .cancel:hover {
box-shadow: 0px 0px 5px red;
}
.form-reset {
transform: translateX(300px);
}
.form-set {
animation: setEnrollForm 1s forwards;
}
.form-cancel {
animation: setEnrollFormOut 1s forwards;
}
.floating-enroll {
position: fixed;
top: 50%;
right: 0;
z-index: 100;
}
.floating-enroll button {
display: block;
margin: auto;
padding: 8px 10px;
background-color: #f1d012;
border: 1px #639c07 solid;
color: black;
font-weight: bold;
font-size: 1em;
position: relative;
transition-property: box-shadow;
transition-duration: 2s;
}
.floating-enroll button:hover {
box-shadow: 0px 0px 5px #639c07;
animation: moveBlock 0.5s;
}
.floating-enroll button::after {
content: "\f0a4";
font-family: FontAwesome;
margin-left: 10px;
font-size: 1.2em;
}
.flex {
display: flex;
}
.course-mentor {
flex-basis: 40%;
display: flex;
justify-content: center;
align-items: center;
}
.course-mentor .mentor {
flex-basis: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.course-mentor .mentor img {
height: 180px;
border-radius: 10%;
box-shadow: 10px 0px #ff00c8, -10px 0px #ff2c2c;
}
.course-mentor .mentor .mentor-name {
margin: 0px;
text-transform: uppercase;
font-size: 1em;
color: #fdaee3;
margin-top: 5px;
}
.course-mentor .mentor .mentor-designation {
margin: 0px;
text-transform: uppercase;
}
.course-mentor .mentor .start {
margin: 0px;
}
.course-mentor .mentor .start i {
margin: 0px 2px;
color: #ffa32b;
}
@keyframes moveBlock {
0% {
transform: translateX(0px);
}
25% {
transform: translateX(-10px);
}
50% {
transform: translateX(0px);
}
75% {
transform: translateX(-10px);
}
100% {
transform: translateX(0px);
}
}
@keyframes setEnrollForm {
0% {
transform: translateX(100%);
}
100% {
transform: translateX(0%);
}
}
@keyframes setEnrollFormOut {
0% {
transform: translateX(0%);
}
10% {
transform: translateX(-10%);
}
100% {
transform: translateX(100%);
}
}
/*# sourceMappingURL=main.css.map */ | 0.323273 | 0.075142 |
html {
--light-background: #e6edf1;
--dark-background: #0e1a2d;
--subtle-background: #6381b3;
--error-background: #ffeff0;
--text: #37465f;
--subtle-text: #38578a;
--dark-text: #23477d;
--error-text: #ff3e36;
--blue: #3498db;
--green: #2ecc71;
--yellow: #fee05a;
--light-purple: #c5d4f1;
--purple: #638ee1;
--dark-purple: #316de0;
--dark-blue: #0050e8;
}
body {
margin: 0;
padding: 0;
background: #e6edf1;
}
* {
box-sizing: border-box;
}
body,
input,
button {
font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI,
Roboto, Ubuntu, Droid Sans, Helvetica Neue, sans-serif;
}
.header {
height: 5px;
margin-bottom: 50px;
background: #638ee1;
text-align: center;
}
.avatar {
height: 100px;
width: 100px;
background: #e6edf1;
border: 3px solid #316de0;
border-radius: 50%;
}
a {
color: #316de0;
text-decoration: none;
}
.user-info,
.repositories {
background: #fff;
border: 1px solid #638ee1;
border-radius: 4px;
text-align: center;
box-sizing: border-box;
margin: 10px auto;
padding: 30px 20px;
width: 500px;
min-height: 100px;
}
.user-info .avatar {
display: block;
margin: 30px auto;
}
input {
background: #fff;
border: 2px solid #c5d4f1;
border-radius: 4px;
padding: 10px;
width: 100%;
outline: none;
font-size: 16px;
}
input:hover,
input:focus {
border-color: #316de0;
}
input:disabled {
background: #d7ddea;
cursor: not-allowed;
opacity: 0.3;
}
input:disabled:hover {
border-color: #c5d4f1;
}
button,
.button {
background: #316de0;
border-color: #316de0;
color: #fff;
border-radius: 4px;
width: 100%;
padding: 10px;
outline: none;
font-size: 16px;
cursor: pointer;
}
button:hover,
button:focus,
.button:focus,
.button:hover {
background: #0050e8;
}
button:disabled,
.button:disabled {
cursor: not-allowed;
opacity: 0.3;
color: #e6edf1;
}
button:disabled:hover,
.button:disabled:hover {
background: #316de0;
}
.user-info .name {
display: block;
text-decoration: none;
margin: 10px;
color: #2cc1ed;
font-size: 18px;
}
.description {
color: #777;
font-size: 12px;
}
.repo {
text-align: left;
padding: 10px 0;
}
.repo .name {
text-decoration: none;
color: #2cc1ed;
}
.repo .stars {
float: right;
}
.repo .stars::after {
content: ' \2605';
color: gold;
}
.login-form,
.profile,
.home {
background: #fff;
border: 1px solid #c5d4f1;
border-radius: 4px;
text-align: center;
box-sizing: border-box;
margin: 30px auto 0;
padding: 30px 0;
width: 500px;
min-height: 100px;
}
.home {
background: transparent;
border: none;
}
.home div {
margin: 60px 0;
}
.home .avatar {
margin-bottom: 0;
}
.avatar {
margin: 30px auto;
}
.avatar + div {
margin-bottom: 30px;
}
.clear {
clear: both;
}
.spinner {
position: absolute;
top: 96px;
left: calc(50% - 50px);
margin: 20px auto;
width: 100px;
height: 100px;
border: 3px solid #c5d4f1;
border-top-color: #316de0;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
to {
-webkit-transform: rotate(360deg);
}
}
@-webkit-keyframes spin {
to {
-webkit-transform: rotate(360deg);
}
}
.switch-container {
display: flex;
align-items: center;
cursor: pointer;
}
.switch {
position: relative;
display: inline-block;
width: 40px;
height: 24px;
margin-right: 5px;
}
.switch input {
opacity: 0;
margin-left: -20px;
}
label.switch-container {
margin-top: 5px;
}
label {
color: #37465f;
font-size: 0.9em;
display: block;
margin: 20px 0 5px;
text-align: left;
}
label input {
width: auto;
margin-right: 5px;
}
.slider {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #b4c7ea;
border: 2px solid #b4c7ea;
-webkit-transition: 0.4s;
transition: 0.4s;
border-radius: 24px;
}
.slider:before {
position: absolute;
content: '';
height: 16px;
width: 16px;
left: 2px;
bottom: 2px;
background-color: white;
transition: 0.4s;
border-radius: 50%;
}
input:focus + .slider {
border-color: #316de0;
}
input:checked + .slider {
background-color: #316de0;
border-color: #316de0;
}
input:checked:focus + .slider {
border-color: #0050e8;
}
input:checked + .slider:before {
transform: translateX(16px);
}
input:disabled + .slider {
background: #d7ddea;
border-color: #d7ddea;
cursor: not-allowed;
opacity: 0.3;
}
.form {
padding: 0 50px;
}
.form input,
.form button {
margin: 5px 0;
}
.form label {
width: 200px;
}
.profile {
padding-top: 0;
overflow: hidden;
}
.profile form button {
margin-top: 20px;
}
.profile .slider {
border-color: #316de0;
}
.alert {
padding: 15px 0;
background: #fff6ca;
border-bottom: 2px solid #ecc74e;
color: #88771e;
}
.icon {
font-style: normal;
margin-right: 5px;
}
.icon.warning::before {
content: '⚠️';
}
.alert .icon {
font-size: 1.2em;
position: relative;
top: 2px;
}
.red {
background: #ff7070;
}
a.start {
display: block;
margin: 20px 0;
}
h2,
h3 {
font-weight: normal;
}
h2 {
color: #316de0;
}
.home small::before {
content: '•';
color: #638ee1;
margin: 0 10px;
}
.invisible {
margin: 20px 0;
text-align: center;
font-size: 24px;
color: #e3e9ec;
font-style: italic;
}
.invisible::selection {
color: #316de0;
}
ol {
font-size: 18px;
text-align: left;
}
ol li {
padding: 10px 0;
} | src/App.css | html {
--light-background: #e6edf1;
--dark-background: #0e1a2d;
--subtle-background: #6381b3;
--error-background: #ffeff0;
--text: #37465f;
--subtle-text: #38578a;
--dark-text: #23477d;
--error-text: #ff3e36;
--blue: #3498db;
--green: #2ecc71;
--yellow: #fee05a;
--light-purple: #c5d4f1;
--purple: #638ee1;
--dark-purple: #316de0;
--dark-blue: #0050e8;
}
body {
margin: 0;
padding: 0;
background: #e6edf1;
}
* {
box-sizing: border-box;
}
body,
input,
button {
font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI,
Roboto, Ubuntu, Droid Sans, Helvetica Neue, sans-serif;
}
.header {
height: 5px;
margin-bottom: 50px;
background: #638ee1;
text-align: center;
}
.avatar {
height: 100px;
width: 100px;
background: #e6edf1;
border: 3px solid #316de0;
border-radius: 50%;
}
a {
color: #316de0;
text-decoration: none;
}
.user-info,
.repositories {
background: #fff;
border: 1px solid #638ee1;
border-radius: 4px;
text-align: center;
box-sizing: border-box;
margin: 10px auto;
padding: 30px 20px;
width: 500px;
min-height: 100px;
}
.user-info .avatar {
display: block;
margin: 30px auto;
}
input {
background: #fff;
border: 2px solid #c5d4f1;
border-radius: 4px;
padding: 10px;
width: 100%;
outline: none;
font-size: 16px;
}
input:hover,
input:focus {
border-color: #316de0;
}
input:disabled {
background: #d7ddea;
cursor: not-allowed;
opacity: 0.3;
}
input:disabled:hover {
border-color: #c5d4f1;
}
button,
.button {
background: #316de0;
border-color: #316de0;
color: #fff;
border-radius: 4px;
width: 100%;
padding: 10px;
outline: none;
font-size: 16px;
cursor: pointer;
}
button:hover,
button:focus,
.button:focus,
.button:hover {
background: #0050e8;
}
button:disabled,
.button:disabled {
cursor: not-allowed;
opacity: 0.3;
color: #e6edf1;
}
button:disabled:hover,
.button:disabled:hover {
background: #316de0;
}
.user-info .name {
display: block;
text-decoration: none;
margin: 10px;
color: #2cc1ed;
font-size: 18px;
}
.description {
color: #777;
font-size: 12px;
}
.repo {
text-align: left;
padding: 10px 0;
}
.repo .name {
text-decoration: none;
color: #2cc1ed;
}
.repo .stars {
float: right;
}
.repo .stars::after {
content: ' \2605';
color: gold;
}
.login-form,
.profile,
.home {
background: #fff;
border: 1px solid #c5d4f1;
border-radius: 4px;
text-align: center;
box-sizing: border-box;
margin: 30px auto 0;
padding: 30px 0;
width: 500px;
min-height: 100px;
}
.home {
background: transparent;
border: none;
}
.home div {
margin: 60px 0;
}
.home .avatar {
margin-bottom: 0;
}
.avatar {
margin: 30px auto;
}
.avatar + div {
margin-bottom: 30px;
}
.clear {
clear: both;
}
.spinner {
position: absolute;
top: 96px;
left: calc(50% - 50px);
margin: 20px auto;
width: 100px;
height: 100px;
border: 3px solid #c5d4f1;
border-top-color: #316de0;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
to {
-webkit-transform: rotate(360deg);
}
}
@-webkit-keyframes spin {
to {
-webkit-transform: rotate(360deg);
}
}
.switch-container {
display: flex;
align-items: center;
cursor: pointer;
}
.switch {
position: relative;
display: inline-block;
width: 40px;
height: 24px;
margin-right: 5px;
}
.switch input {
opacity: 0;
margin-left: -20px;
}
label.switch-container {
margin-top: 5px;
}
label {
color: #37465f;
font-size: 0.9em;
display: block;
margin: 20px 0 5px;
text-align: left;
}
label input {
width: auto;
margin-right: 5px;
}
.slider {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #b4c7ea;
border: 2px solid #b4c7ea;
-webkit-transition: 0.4s;
transition: 0.4s;
border-radius: 24px;
}
.slider:before {
position: absolute;
content: '';
height: 16px;
width: 16px;
left: 2px;
bottom: 2px;
background-color: white;
transition: 0.4s;
border-radius: 50%;
}
input:focus + .slider {
border-color: #316de0;
}
input:checked + .slider {
background-color: #316de0;
border-color: #316de0;
}
input:checked:focus + .slider {
border-color: #0050e8;
}
input:checked + .slider:before {
transform: translateX(16px);
}
input:disabled + .slider {
background: #d7ddea;
border-color: #d7ddea;
cursor: not-allowed;
opacity: 0.3;
}
.form {
padding: 0 50px;
}
.form input,
.form button {
margin: 5px 0;
}
.form label {
width: 200px;
}
.profile {
padding-top: 0;
overflow: hidden;
}
.profile form button {
margin-top: 20px;
}
.profile .slider {
border-color: #316de0;
}
.alert {
padding: 15px 0;
background: #fff6ca;
border-bottom: 2px solid #ecc74e;
color: #88771e;
}
.icon {
font-style: normal;
margin-right: 5px;
}
.icon.warning::before {
content: '⚠️';
}
.alert .icon {
font-size: 1.2em;
position: relative;
top: 2px;
}
.red {
background: #ff7070;
}
a.start {
display: block;
margin: 20px 0;
}
h2,
h3 {
font-weight: normal;
}
h2 {
color: #316de0;
}
.home small::before {
content: '•';
color: #638ee1;
margin: 0 10px;
}
.invisible {
margin: 20px 0;
text-align: center;
font-size: 24px;
color: #e3e9ec;
font-style: italic;
}
.invisible::selection {
color: #316de0;
}
ol {
font-size: 18px;
text-align: left;
}
ol li {
padding: 10px 0;
} | 0.446253 | 0.081813 |
/* Global Reset */
* {
margin: 0;
padding: 0;
}
html, body { height: 100%; }
body {
background-color: #f0efe7;
font-family: Oxygen, "Lucida Grande", Helvetica, Arial, sans-serif;
font-size: small;
/*text-align: center;*/
}
h1 {
font-size: 150%;
margin-bottom: 1em;
}
h2 {
font-size: 135%;
margin-bottom: 1.1em;
margin-top: 1.1em;
font-variant: small-caps;
font-family: Raleway, sans-serif;
}
h3 {
font-size: 110%;
margin-bottom: 0.75em;
font-variant: small-caps;
font-family: Raleway, sans-serif;
}
h4, h5, h6 {
font-size: 100%; }
p { margin: 1em 0; }
/*
a { color: #00a; }
a:hover { color: #000; }
a:visited { color: #a0a; }*/
table {
font-size: inherit;
font: 100%;
}
/*****************************************************************************/
/*
/* Home
/*
/*****************************************************************************/
ul.posts {
list-style-type: none;
margin: 0em;
}
ul.posts li {
line-height: 1.25em;
}
ul.posts span {
color: #aaa;
font-family: Monaco, "Courier New", monospace;
font-size: 85%;
}
ul.posts a.posttitle {
font-size: 125%;
}
ul.posts a.category {
color: #aaa;
text-decoration: none;
}
ul.posts a.category:hover {
text-decoration: underline;
}
ul.posts p {
margin: 0 0 2em 0;
}
/*****************************************************************************/
/*
/* Publications
/*
/*****************************************************************************/
.work h3 {
font-size: 100%;
line-height: 1.5em;
position: absolute;
width: 8em;
max-width: 8em;
margin-left: 0em;
margin-top: 0;
}
.work p.paper {
margin-left: 8em;
}
.work span.papertitle {
font-size: 112%;
font-family: "Roboto", "Times Roman", serif;
}
/*****************************************************************************/
/*
/* CV
/*
/*****************************************************************************/
.cv h2 {
position: absolute;
width: 8em;
max-width: 8em;
margin-left: 0;
margin-top: 0;
text-align: left;
}
.cv p {
margin-left: 9em;
}
.cv .footer p {
margin-left: 0em;
}
.cv ul.duties {
margin-left: 10em;
margin-bottom: 1em;
}
.cv p.award {
margin-left: 11em;
text-indent: -2em;
}
/*****************************************************************************/
/*
/* Site
/*
/*****************************************************************************/
#site {
max-width: 56em;
margin: 1.5em auto 0 auto;
line-height:1.5em;
text-align: justify;
border: 1px solid #ccc;
box-shadow: 3px 3px 5px rgba(0,0,0,0.5);
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
#page {
background: white;
/* background-image: url(grid.png); */
padding: 1.5em 3em 1.5em 3em;
}
.extra {
font-family: 'Raleway', sans-serif;
font-variant: small-caps;
font-size: 135%;
}
.navbar-brand {
/*display: inline;*/
font-family: "Marcellus SC", serif;
font-variant: small-caps;
font-size: 150%;
/*text-align: left;*/
}
.section {
page-break-inside: avoid;
}
/*#site .meta {
color: #aaa;
}*/
.footer {
max-width:46em;
margin: 0 auto 0 auto;
text-align: left;
font-size: 80%;
color: #666;
overflow: hidden;
}
.footer .contact {
float: left;
}
.footer .social {
float: right;
}
.footer .contact a {
color: #8085C1;
}
/*****************************************************************************/
/*
/* Posts
/*
/*****************************************************************************/
/* standard */
.post pre {
border: 1px solid #ddd;
background-color: #eef;
padding: 0.4em;
overflow: auto;
}
.post ul, .post ol {
margin-left: 1.35em;
}
.post code {
border: 1px solid #ddd;
background-color: #eef;
padding: 0 .2em;
}
.post pre code {
border: none;
}
/* terminal */
.post pre.terminal {
border: 1px solid #000;
background-color: #333;
color: #FFF;
}
.post pre.terminal code {
background-color: #333;
}
kbd {
padding: 0.1em 0.6em;
border: 1px solid #ccc;
font-size: 11px;
font-family: Arial,Helvetica,sans-serif;
background-color: #f7f7f7;
color: #333;
-moz-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2),0 0 0 2px #ffffff inset;
-webkit-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2),0 0 0 2px #ffffff inset;
box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2),0 0 0 2px #ffffff inset;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
display: inline-block;
margin: 0 0.1em;
text-shadow: 0 1px 0 #fff;
line-height: 1.4;
white-space: nowrap;
}
.centerimg {
text-align: center;
width: 100%;
max-width: 100%;
}
.navbar-default {
background-color: #626262;
border-color: #0a304e;
}
.navbar-default .navbar-brand {
color: #e1e1e1;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
color: #c9c9c9;
}
.navbar-default .navbar-text {
color: #e1e1e1;
}
.navbar-default .navbar-nav > li > a {
color: #e1e1e1;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
color: #c9c9c9;
}
.navbar-default .navbar-nav > li > .dropdown-menu {
background-color: #626262;
}
.navbar-default .navbar-nav > li > .dropdown-menu > li > a {
color: #e1e1e1;
}
.navbar-default .navbar-nav > li > .dropdown-menu > li > a:hover,
.navbar-default .navbar-nav > li > .dropdown-menu > li > a:focus {
color: #c9c9c9;
background-color: #0a304e;
}
.navbar-default .navbar-nav > li > .dropdown-menu > li > .divider {
background-color: #0a304e;
}
.navbar-default .navbar-nav .open .dropdown-menu > .active > a,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #c9c9c9;
background-color: #0a304e;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
color: #c9c9c9;
background-color: #0a304e;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
color: #c9c9c9;
background-color: #0a304e;
}
.navbar-default .navbar-toggle {
border-color: #0a304e;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
background-color: #0a304e;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #e1e1e1;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
border-color: #e1e1e1;
}
.navbar-default .navbar-link {
color: #e1e1e1;
}
.navbar-default .navbar-link:hover {
color: #c9c9c9;
}
@media (max-width: 767px) {
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
color: #e1e1e1;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
color: #c9c9c9;
}
.navbar-default .navbar-nav .open .dropdown-menu > .active > a,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #c9c9c9;
background-color: #0a304e;
}
} | Website_files/main.css |
/* Global Reset */
* {
margin: 0;
padding: 0;
}
html, body { height: 100%; }
body {
background-color: #f0efe7;
font-family: Oxygen, "Lucida Grande", Helvetica, Arial, sans-serif;
font-size: small;
/*text-align: center;*/
}
h1 {
font-size: 150%;
margin-bottom: 1em;
}
h2 {
font-size: 135%;
margin-bottom: 1.1em;
margin-top: 1.1em;
font-variant: small-caps;
font-family: Raleway, sans-serif;
}
h3 {
font-size: 110%;
margin-bottom: 0.75em;
font-variant: small-caps;
font-family: Raleway, sans-serif;
}
h4, h5, h6 {
font-size: 100%; }
p { margin: 1em 0; }
/*
a { color: #00a; }
a:hover { color: #000; }
a:visited { color: #a0a; }*/
table {
font-size: inherit;
font: 100%;
}
/*****************************************************************************/
/*
/* Home
/*
/*****************************************************************************/
ul.posts {
list-style-type: none;
margin: 0em;
}
ul.posts li {
line-height: 1.25em;
}
ul.posts span {
color: #aaa;
font-family: Monaco, "Courier New", monospace;
font-size: 85%;
}
ul.posts a.posttitle {
font-size: 125%;
}
ul.posts a.category {
color: #aaa;
text-decoration: none;
}
ul.posts a.category:hover {
text-decoration: underline;
}
ul.posts p {
margin: 0 0 2em 0;
}
/*****************************************************************************/
/*
/* Publications
/*
/*****************************************************************************/
.work h3 {
font-size: 100%;
line-height: 1.5em;
position: absolute;
width: 8em;
max-width: 8em;
margin-left: 0em;
margin-top: 0;
}
.work p.paper {
margin-left: 8em;
}
.work span.papertitle {
font-size: 112%;
font-family: "Roboto", "Times Roman", serif;
}
/*****************************************************************************/
/*
/* CV
/*
/*****************************************************************************/
.cv h2 {
position: absolute;
width: 8em;
max-width: 8em;
margin-left: 0;
margin-top: 0;
text-align: left;
}
.cv p {
margin-left: 9em;
}
.cv .footer p {
margin-left: 0em;
}
.cv ul.duties {
margin-left: 10em;
margin-bottom: 1em;
}
.cv p.award {
margin-left: 11em;
text-indent: -2em;
}
/*****************************************************************************/
/*
/* Site
/*
/*****************************************************************************/
#site {
max-width: 56em;
margin: 1.5em auto 0 auto;
line-height:1.5em;
text-align: justify;
border: 1px solid #ccc;
box-shadow: 3px 3px 5px rgba(0,0,0,0.5);
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
#page {
background: white;
/* background-image: url(grid.png); */
padding: 1.5em 3em 1.5em 3em;
}
.extra {
font-family: 'Raleway', sans-serif;
font-variant: small-caps;
font-size: 135%;
}
.navbar-brand {
/*display: inline;*/
font-family: "Marcellus SC", serif;
font-variant: small-caps;
font-size: 150%;
/*text-align: left;*/
}
.section {
page-break-inside: avoid;
}
/*#site .meta {
color: #aaa;
}*/
.footer {
max-width:46em;
margin: 0 auto 0 auto;
text-align: left;
font-size: 80%;
color: #666;
overflow: hidden;
}
.footer .contact {
float: left;
}
.footer .social {
float: right;
}
.footer .contact a {
color: #8085C1;
}
/*****************************************************************************/
/*
/* Posts
/*
/*****************************************************************************/
/* standard */
.post pre {
border: 1px solid #ddd;
background-color: #eef;
padding: 0.4em;
overflow: auto;
}
.post ul, .post ol {
margin-left: 1.35em;
}
.post code {
border: 1px solid #ddd;
background-color: #eef;
padding: 0 .2em;
}
.post pre code {
border: none;
}
/* terminal */
.post pre.terminal {
border: 1px solid #000;
background-color: #333;
color: #FFF;
}
.post pre.terminal code {
background-color: #333;
}
kbd {
padding: 0.1em 0.6em;
border: 1px solid #ccc;
font-size: 11px;
font-family: Arial,Helvetica,sans-serif;
background-color: #f7f7f7;
color: #333;
-moz-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2),0 0 0 2px #ffffff inset;
-webkit-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2),0 0 0 2px #ffffff inset;
box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2),0 0 0 2px #ffffff inset;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
display: inline-block;
margin: 0 0.1em;
text-shadow: 0 1px 0 #fff;
line-height: 1.4;
white-space: nowrap;
}
.centerimg {
text-align: center;
width: 100%;
max-width: 100%;
}
.navbar-default {
background-color: #626262;
border-color: #0a304e;
}
.navbar-default .navbar-brand {
color: #e1e1e1;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
color: #c9c9c9;
}
.navbar-default .navbar-text {
color: #e1e1e1;
}
.navbar-default .navbar-nav > li > a {
color: #e1e1e1;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
color: #c9c9c9;
}
.navbar-default .navbar-nav > li > .dropdown-menu {
background-color: #626262;
}
.navbar-default .navbar-nav > li > .dropdown-menu > li > a {
color: #e1e1e1;
}
.navbar-default .navbar-nav > li > .dropdown-menu > li > a:hover,
.navbar-default .navbar-nav > li > .dropdown-menu > li > a:focus {
color: #c9c9c9;
background-color: #0a304e;
}
.navbar-default .navbar-nav > li > .dropdown-menu > li > .divider {
background-color: #0a304e;
}
.navbar-default .navbar-nav .open .dropdown-menu > .active > a,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #c9c9c9;
background-color: #0a304e;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
color: #c9c9c9;
background-color: #0a304e;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
color: #c9c9c9;
background-color: #0a304e;
}
.navbar-default .navbar-toggle {
border-color: #0a304e;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
background-color: #0a304e;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #e1e1e1;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
border-color: #e1e1e1;
}
.navbar-default .navbar-link {
color: #e1e1e1;
}
.navbar-default .navbar-link:hover {
color: #c9c9c9;
}
@media (max-width: 767px) {
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
color: #e1e1e1;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
color: #c9c9c9;
}
.navbar-default .navbar-nav .open .dropdown-menu > .active > a,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #c9c9c9;
background-color: #0a304e;
}
} | 0.365683 | 0.067362 |
.mt-purple-50 {
color: #f3e5f5;
}
.bg-mt-purple-50 {
background-color: #f3e5f5;
}
.hover-bg-mt-purple-50:hover {
background-color: #f3e5f5;
}
.hover-mt-purple-50:hover {
color: #f3e5f5;
}
.mt-purple-100 {
color: #e1bee7;
}
.bg-mt-purple-100 {
background-color: #e1bee7;
}
.hover-bg-mt-purple-100:hover {
background-color: #e1bee7;
}
.hover-mt-purple-100:hover {
color: #e1bee7;
}
.mt-purple-200 {
color: #ce93d8;
}
.bg-mt-purple-200 {
background-color: #ce93d8;
}
.hover-bg-mt-purple-200:hover {
background-color: #ce93d8;
}
.hover-mt-purple-200:hover {
color: #ce93d8;
}
.mt-purple-300 {
color: #ba68c8;
}
.bg-mt-purple-300 {
background-color: #ba68c8;
}
.hover-bg-mt-purple-300:hover {
background-color: #ba68c8;
}
.hover-mt-purple-300:hover {
color: #ba68c8;
}
.mt-purple-400 {
color: #ab47bc;
}
.bg-mt-purple-400 {
background-color: #ab47bc;
}
.hover-bg-mt-purple-400:hover {
background-color: #ab47bc;
}
.hover-mt-purple-400:hover {
color: #ab47bc;
}
.mt-purple-500 {
color: #9c27b0;
}
.bg-mt-purple-500 {
background-color: #9c27b0;
}
.hover-bg-mt-purple-500:hover {
background-color: #9c27b0;
}
.hover-mt-purple-500:hover {
color: #9c27b0;
}
.mt-purple-600 {
color: #8e24aa;
}
.bg-mt-purple-600 {
background-color: #8e24aa;
}
.hover-bg-mt-purple-600:hover {
background-color: #8e24aa;
}
.hover-mt-purple-600:hover {
color: #8e24aa;
}
.mt-purple-700 {
color: #7b1fa2;
}
.bg-mt-purple-700 {
background-color: #7b1fa2;
}
.hover-bg-mt-purple-700:hover {
background-color: #7b1fa2;
}
.hover-mt-purple-700:hover {
color: #7b1fa2;
}
.mt-purple-800 {
color: #6a1b9a;
}
.bg-mt-purple-800 {
background-color: #6a1b9a;
}
.hover-bg-mt-purple-800:hover {
background-color: #6a1b9a;
}
.hover-mt-purple-800:hover {
color: #6a1b9a;
}
.mt-purple-900 {
color: #4a148c;
}
.bg-mt-purple-900 {
background-color: #4a148c;
}
.hover-bg-mt-purple-900:hover {
background-color: #4a148c;
}
.hover-mt-purple-900:hover {
color: #4a148c;
}
.mt-purple-a100 {
color: #ea80fc;
}
.bg-mt-purple-a100 {
background-color: #ea80fc;
}
.hover-bg-mt-purple-a100:hover {
background-color: #ea80fc;
}
.hover-mt-purple-a100:hover {
color: #ea80fc;
}
.mt-purple-a200 {
color: #e040fb;
}
.bg-mt-purple-a200 {
background-color: #e040fb;
}
.hover-bg-mt-purple-a200:hover {
background-color: #e040fb;
}
.hover-mt-purple-a200:hover {
color: #e040fb;
}
.mt-purple-a400 {
color: #d500f9;
}
.bg-mt-purple-a400 {
background-color: #d500f9;
}
.hover-bg-mt-purple-a400:hover {
background-color: #d500f9;
}
.hover-mt-purple-a400:hover {
color: #d500f9;
}
.mt-purple-a700 {
color: #aa00ff;
}
.bg-mt-purple-a700 {
background-color: #aa00ff;
}
.hover-bg-mt-purple-a700:hover {
background-color: #aa00ff;
}
.hover-mt-purple-a700:hover {
color: #aa00ff;
}
.mt-deep-purple-50 {
color: #ede7f6;
}
.bg-mt-deep-purple-50 {
background-color: #ede7f6;
}
.hover-bg-mt-deep-purple-50:hover {
background-color: #ede7f6;
}
.hover-mt-deep-purple-50:hover {
color: #ede7f6;
}
.mt-deep-purple-100 {
color: #d1c4e9;
}
.bg-mt-deep-purple-100 {
background-color: #d1c4e9;
}
.hover-bg-mt-deep-purple-100:hover {
background-color: #d1c4e9;
}
.hover-mt-deep-purple-100:hover {
color: #d1c4e9;
}
.mt-deep-purple-200 {
color: #b39ddb;
}
.bg-mt-deep-purple-200 {
background-color: #b39ddb;
}
.hover-bg-mt-deep-purple-200:hover {
background-color: #b39ddb;
}
.hover-mt-deep-purple-200:hover {
color: #b39ddb;
}
.mt-deep-purple-300 {
color: #9575cd;
}
.bg-mt-deep-purple-300 {
background-color: #9575cd;
}
.hover-bg-mt-deep-purple-300:hover {
background-color: #9575cd;
}
.hover-mt-deep-purple-300:hover {
color: #9575cd;
}
.mt-deep-purple-400 {
color: #7e57c2;
}
.bg-mt-deep-purple-400 {
background-color: #7e57c2;
}
.hover-bg-mt-deep-purple-400:hover {
background-color: #7e57c2;
}
.hover-mt-deep-purple-400:hover {
color: #7e57c2;
}
.mt-deep-purple-500 {
color: #673ab7;
}
.bg-mt-deep-purple-500 {
background-color: #673ab7;
}
.hover-bg-mt-deep-purple-500:hover {
background-color: #673ab7;
}
.hover-mt-deep-purple-500:hover {
color: #673ab7;
}
.mt-deep-purple-600 {
color: #5e35b1;
}
.bg-mt-deep-purple-600 {
background-color: #5e35b1;
}
.hover-bg-mt-deep-purple-600:hover {
background-color: #5e35b1;
}
.hover-mt-deep-purple-600:hover {
color: #5e35b1;
}
.mt-deep-purple-700 {
color: #512da8;
}
.bg-mt-deep-purple-700 {
background-color: #512da8;
}
.hover-bg-mt-deep-purple-700:hover {
background-color: #512da8;
}
.hover-mt-deep-purple-700:hover {
color: #512da8;
}
.mt-deep-purple-800 {
color: #4527a0;
}
.bg-mt-deep-purple-800 {
background-color: #4527a0;
}
.hover-bg-mt-deep-purple-800:hover {
background-color: #4527a0;
}
.hover-mt-deep-purple-800:hover {
color: #4527a0;
}
.mt-deep-purple-900 {
color: #311b92;
}
.bg-mt-deep-purple-900 {
background-color: #311b92;
}
.hover-bg-mt-deep-purple-900:hover {
background-color: #311b92;
}
.hover-mt-deep-purple-900:hover {
color: #311b92;
}
.mt-deep-purple-a100 {
color: #b388ff;
}
.bg-mt-deep-purple-a100 {
background-color: #b388ff;
}
.hover-bg-mt-deep-purple-a100:hover {
background-color: #b388ff;
}
.hover-mt-deep-purple-a100:hover {
color: #b388ff;
}
.mt-deep-purple-a200 {
color: #7c4dff;
}
.bg-mt-deep-purple-a200 {
background-color: #7c4dff;
}
.hover-bg-mt-deep-purple-a200:hover {
background-color: #7c4dff;
}
.hover-mt-deep-purple-a200:hover {
color: #7c4dff;
}
.mt-deep-purple-a400 {
color: #651fff;
}
.bg-mt-deep-purple-a400 {
background-color: #651fff;
}
.hover-bg-mt-deep-purple-a400:hover {
background-color: #651fff;
}
.hover-mt-deep-purple-a400:hover {
color: #651fff;
}
.mt-deep-purple-a700 {
color: #6200ea;
}
.bg-mt-deep-purple-a700 {
background-color: #6200ea;
}
.hover-bg-mt-deep-purple-a700:hover {
background-color: #6200ea;
}
.hover-mt-deep-purple-a700:hover {
color: #6200ea;
} | material-color-purple.css | .mt-purple-50 {
color: #f3e5f5;
}
.bg-mt-purple-50 {
background-color: #f3e5f5;
}
.hover-bg-mt-purple-50:hover {
background-color: #f3e5f5;
}
.hover-mt-purple-50:hover {
color: #f3e5f5;
}
.mt-purple-100 {
color: #e1bee7;
}
.bg-mt-purple-100 {
background-color: #e1bee7;
}
.hover-bg-mt-purple-100:hover {
background-color: #e1bee7;
}
.hover-mt-purple-100:hover {
color: #e1bee7;
}
.mt-purple-200 {
color: #ce93d8;
}
.bg-mt-purple-200 {
background-color: #ce93d8;
}
.hover-bg-mt-purple-200:hover {
background-color: #ce93d8;
}
.hover-mt-purple-200:hover {
color: #ce93d8;
}
.mt-purple-300 {
color: #ba68c8;
}
.bg-mt-purple-300 {
background-color: #ba68c8;
}
.hover-bg-mt-purple-300:hover {
background-color: #ba68c8;
}
.hover-mt-purple-300:hover {
color: #ba68c8;
}
.mt-purple-400 {
color: #ab47bc;
}
.bg-mt-purple-400 {
background-color: #ab47bc;
}
.hover-bg-mt-purple-400:hover {
background-color: #ab47bc;
}
.hover-mt-purple-400:hover {
color: #ab47bc;
}
.mt-purple-500 {
color: #9c27b0;
}
.bg-mt-purple-500 {
background-color: #9c27b0;
}
.hover-bg-mt-purple-500:hover {
background-color: #9c27b0;
}
.hover-mt-purple-500:hover {
color: #9c27b0;
}
.mt-purple-600 {
color: #8e24aa;
}
.bg-mt-purple-600 {
background-color: #8e24aa;
}
.hover-bg-mt-purple-600:hover {
background-color: #8e24aa;
}
.hover-mt-purple-600:hover {
color: #8e24aa;
}
.mt-purple-700 {
color: #7b1fa2;
}
.bg-mt-purple-700 {
background-color: #7b1fa2;
}
.hover-bg-mt-purple-700:hover {
background-color: #7b1fa2;
}
.hover-mt-purple-700:hover {
color: #7b1fa2;
}
.mt-purple-800 {
color: #6a1b9a;
}
.bg-mt-purple-800 {
background-color: #6a1b9a;
}
.hover-bg-mt-purple-800:hover {
background-color: #6a1b9a;
}
.hover-mt-purple-800:hover {
color: #6a1b9a;
}
.mt-purple-900 {
color: #4a148c;
}
.bg-mt-purple-900 {
background-color: #4a148c;
}
.hover-bg-mt-purple-900:hover {
background-color: #4a148c;
}
.hover-mt-purple-900:hover {
color: #4a148c;
}
.mt-purple-a100 {
color: #ea80fc;
}
.bg-mt-purple-a100 {
background-color: #ea80fc;
}
.hover-bg-mt-purple-a100:hover {
background-color: #ea80fc;
}
.hover-mt-purple-a100:hover {
color: #ea80fc;
}
.mt-purple-a200 {
color: #e040fb;
}
.bg-mt-purple-a200 {
background-color: #e040fb;
}
.hover-bg-mt-purple-a200:hover {
background-color: #e040fb;
}
.hover-mt-purple-a200:hover {
color: #e040fb;
}
.mt-purple-a400 {
color: #d500f9;
}
.bg-mt-purple-a400 {
background-color: #d500f9;
}
.hover-bg-mt-purple-a400:hover {
background-color: #d500f9;
}
.hover-mt-purple-a400:hover {
color: #d500f9;
}
.mt-purple-a700 {
color: #aa00ff;
}
.bg-mt-purple-a700 {
background-color: #aa00ff;
}
.hover-bg-mt-purple-a700:hover {
background-color: #aa00ff;
}
.hover-mt-purple-a700:hover {
color: #aa00ff;
}
.mt-deep-purple-50 {
color: #ede7f6;
}
.bg-mt-deep-purple-50 {
background-color: #ede7f6;
}
.hover-bg-mt-deep-purple-50:hover {
background-color: #ede7f6;
}
.hover-mt-deep-purple-50:hover {
color: #ede7f6;
}
.mt-deep-purple-100 {
color: #d1c4e9;
}
.bg-mt-deep-purple-100 {
background-color: #d1c4e9;
}
.hover-bg-mt-deep-purple-100:hover {
background-color: #d1c4e9;
}
.hover-mt-deep-purple-100:hover {
color: #d1c4e9;
}
.mt-deep-purple-200 {
color: #b39ddb;
}
.bg-mt-deep-purple-200 {
background-color: #b39ddb;
}
.hover-bg-mt-deep-purple-200:hover {
background-color: #b39ddb;
}
.hover-mt-deep-purple-200:hover {
color: #b39ddb;
}
.mt-deep-purple-300 {
color: #9575cd;
}
.bg-mt-deep-purple-300 {
background-color: #9575cd;
}
.hover-bg-mt-deep-purple-300:hover {
background-color: #9575cd;
}
.hover-mt-deep-purple-300:hover {
color: #9575cd;
}
.mt-deep-purple-400 {
color: #7e57c2;
}
.bg-mt-deep-purple-400 {
background-color: #7e57c2;
}
.hover-bg-mt-deep-purple-400:hover {
background-color: #7e57c2;
}
.hover-mt-deep-purple-400:hover {
color: #7e57c2;
}
.mt-deep-purple-500 {
color: #673ab7;
}
.bg-mt-deep-purple-500 {
background-color: #673ab7;
}
.hover-bg-mt-deep-purple-500:hover {
background-color: #673ab7;
}
.hover-mt-deep-purple-500:hover {
color: #673ab7;
}
.mt-deep-purple-600 {
color: #5e35b1;
}
.bg-mt-deep-purple-600 {
background-color: #5e35b1;
}
.hover-bg-mt-deep-purple-600:hover {
background-color: #5e35b1;
}
.hover-mt-deep-purple-600:hover {
color: #5e35b1;
}
.mt-deep-purple-700 {
color: #512da8;
}
.bg-mt-deep-purple-700 {
background-color: #512da8;
}
.hover-bg-mt-deep-purple-700:hover {
background-color: #512da8;
}
.hover-mt-deep-purple-700:hover {
color: #512da8;
}
.mt-deep-purple-800 {
color: #4527a0;
}
.bg-mt-deep-purple-800 {
background-color: #4527a0;
}
.hover-bg-mt-deep-purple-800:hover {
background-color: #4527a0;
}
.hover-mt-deep-purple-800:hover {
color: #4527a0;
}
.mt-deep-purple-900 {
color: #311b92;
}
.bg-mt-deep-purple-900 {
background-color: #311b92;
}
.hover-bg-mt-deep-purple-900:hover {
background-color: #311b92;
}
.hover-mt-deep-purple-900:hover {
color: #311b92;
}
.mt-deep-purple-a100 {
color: #b388ff;
}
.bg-mt-deep-purple-a100 {
background-color: #b388ff;
}
.hover-bg-mt-deep-purple-a100:hover {
background-color: #b388ff;
}
.hover-mt-deep-purple-a100:hover {
color: #b388ff;
}
.mt-deep-purple-a200 {
color: #7c4dff;
}
.bg-mt-deep-purple-a200 {
background-color: #7c4dff;
}
.hover-bg-mt-deep-purple-a200:hover {
background-color: #7c4dff;
}
.hover-mt-deep-purple-a200:hover {
color: #7c4dff;
}
.mt-deep-purple-a400 {
color: #651fff;
}
.bg-mt-deep-purple-a400 {
background-color: #651fff;
}
.hover-bg-mt-deep-purple-a400:hover {
background-color: #651fff;
}
.hover-mt-deep-purple-a400:hover {
color: #651fff;
}
.mt-deep-purple-a700 {
color: #6200ea;
}
.bg-mt-deep-purple-a700 {
background-color: #6200ea;
}
.hover-bg-mt-deep-purple-a700:hover {
background-color: #6200ea;
}
.hover-mt-deep-purple-a700:hover {
color: #6200ea;
} | 0.549399 | 0.116462 |
@charset "UTF-8";
/*!
* Bootstrap v3.3.7 (http://getbootstrap.com)
* Copyright 2011-2016 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
html {
font-family: sans-serif;
font-size: 10px;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
margin: 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 1.428571429;
color: #333333;
background-color: #fff;
padding-top: 60px;
}
footer,
header,
nav,
section,
summary {
display: block;
}
a {
background-color: transparent;
}
a:active,
a:hover {
outline: 0;
}
b,
strong {
font-weight: bold;
}
dfn {
font-style: italic;
}
h1 {
font-size: 2em;
margin: 0.67em 0;
}
small {
font-size: 80%;
}
hr {
box-sizing: content-box;
height: 0;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
td,
th {
padding: 0;
}
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
a {
color: #337ab7;
text-decoration: none;
}
a:hover, a:focus {
color: #23527c;
text-decoration: underline;
}
a:focus {
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
img {
border: 0;
vertical-align: middle;
}
.img-responsive {
display: block;
max-width: 100%;
height: auto;
border-radius: 6px
}
.img-rounded {
border-radius: 6px;
}
.img-thumbnail {
padding: 2px;
line-height: 1.428571429;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 6px;
-webkit-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
display: inline-block;
max-width: 40%;
height: auto;
}
.img-circle {
border-radius: 50%;
}
hr {
margin-top: 20px;
margin-bottom: 20px;
border: 0;
border-top: 1px solid #eeeeee;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
font-family: inherit;
font-weight: 500;
line-height: 1.1;
color: inherit;
}
h1 small,
h1 .small, h2 small,
h2 .small, h3 small,
h3 .small, h4 small,
h4 .small, h5 small,
h5 .small, h6 small,
h6 .small,
.h1 small,
.h1 .small, .h2 small,
.h2 .small, .h3 small,
.h3 .small, .h4 small,
.h4 .small, .h5 small,
.h5 .small, .h6 small,
.h6 .small {
font-weight: normal;
line-height: 1;
color: #777777;
}
h1, .h1,
h2, .h2,
h3, .h3 {
margin-top: 20px;
margin-bottom: 10px;
}
h1 small,
h1 .small, .h1 small,
.h1 .small,
h2 small,
h2 .small, .h2 small,
.h2 .small,
h3 small,
h3 .small, .h3 small,
.h3 .small {
font-size: 65%;
}
h4, .h4,
h5, .h5,
h6, .h6 {
margin-top: 10px;
margin-bottom: 10px;
}
h4 small,
h4 .small, .h4 small,
.h4 .small,
h5 small,
h5 .small, .h5 small,
.h5 .small,
h6 small,
h6 .small, .h6 small,
.h6 .small {
font-size: 75%;
}
h1, .h1 {
font-size: 36px;
}
h2, .h2 {
font-size: 30px;
}
h3, .h3 {
font-size: 24px;
}
h4, .h4 {
font-size: 18px;
}
h5, .h5 {
font-size: 14px;
}
h6, .h6 {
font-size: 12px;
}
p {
margin: 0 0 10px;
}
small,
.small {
font-size: 85%;
}
.page-header {
padding-bottom: 9px;
margin: 40px 0 20px;
border-bottom: 1px solid #eeeeee;
}
ul,
ol {
margin-top: 0;
margin-bottom: 10px;
}
ul ul,
ul ol,
ol ul,
ol ol {
margin-bottom: 0;
}
.container {
margin-right: auto;
margin-left: auto;
padding-left: 15px;
padding-right: 15px;
}
.container:before, .container:after {
content: " ";
display: table;
}
.container:after {
clear: both;
}
@media (min-width: 768px) {
.container {
width: 750px;
}
}
@media (min-width: 992px) {
.container {
width: 970px;
}
}
@media (min-width: 1200px) {
.container {
width: 1170px;
}
}
.row {
margin-left: -15px;
margin-right: -15px;
}
.col-sm-1, .col-md-1, .col-lg-1, .col-sm-2, .col-md-2, .col-lg-2, .col-sm-3, .col-md-3, .col-lg-3, .col-sm-4, .col-md-4, .col-lg-4, .col-sm-5, .col-md-5, .col-lg-5, .col-sm-6, .col-md-6, .col-lg-6, .col-sm-7, .col-md-7, .col-lg-7, .col-sm-8, .col-md-8, .col-lg-8 .col-sm-9, .col-md-9, .col-lg-9, .col-sm-10, .col-md-10, .col-lg-10, .col-sm-11, .col-md-11, .col-lg-11, .col-sm-12, .col-md-12, .col-lg-12 {
position: relative;
min-height: 1px;
padding-left: 15px;
padding-right: 15px;
}
@media (min-width: 768px) {
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
float: left;
}
.col-sm-1 {
width: 8.3333333333%;
}
.col-sm-2 {
width: 16.6666666667%;
}
.col-sm-3 {
width: 25%;
}
.col-sm-4 {
width: 33.3333333333%;
}
.col-sm-5 {
width: 41.6666666667%;
}
.col-sm-6 {
width: 50%;
}
.col-sm-7 {
width: 58.3333333333%;
}
.col-sm-8 {
width: 66.6666666667%;
}
.col-sm-9 {
width: 75%;
}
.col-sm-10 {
width: 83.3333333333%;
}
.col-sm-11 {
width: 91.6666666667%;
}
.col-sm-12 {
width: 100%;
}
.col-sm-pull-0 {
right: auto;
}
.col-sm-pull-1 {
right: 8.3333333333%;
}
.col-sm-pull-2 {
right: 16.6666666667%;
}
.col-sm-pull-3 {
right: 25%;
}
.col-sm-pull-4 {
right: 33.3333333333%;
}
.col-sm-pull-5 {
right: 41.6666666667%;
}
.col-sm-pull-6 {
right: 50%;
}
.col-sm-pull-7 {
right: 58.3333333333%;
}
.col-sm-pull-8 {
right: 66.6666666667%;
}
.col-sm-pull-9 {
right: 75%;
}
.col-sm-pull-10 {
right: 83.3333333333%;
}
.col-sm-pull-11 {
right: 91.6666666667%;
}
.col-sm-pull-12 {
right: 100%;
}
.col-sm-push-0 {
left: auto;
}
.col-sm-push-1 {
left: 8.3333333333%;
}
.col-sm-push-2 {
left: 16.6666666667%;
}
.col-sm-push-3 {
left: 25%;
}
.col-sm-push-4 {
left: 33.3333333333%;
}
.col-sm-push-5 {
left: 41.6666666667%;
}
.col-sm-push-6 {
left: 50%;
}
.col-sm-push-7 {
left: 58.3333333333%;
}
.col-sm-push-8 {
left: 66.6666666667%;
}
.col-sm-push-9 {
left: 75%;
}
.col-sm-push-10 {
left: 83.3333333333%;
}
.col-sm-push-11 {
left: 91.6666666667%;
}
.col-sm-push-12 {
left: 100%;
}
.col-sm-offset-0 {
margin-left: 0%;
}
.col-sm-offset-1 {
margin-left: 8.3333333333%;
}
.col-sm-offset-2 {
margin-left: 16.6666666667%;
}
.col-sm-offset-3 {
margin-left: 25%;
}
.col-sm-offset-4 {
margin-left: 33.3333333333%;
}
.col-sm-offset-5 {
margin-left: 41.6666666667%;
}
.col-sm-offset-6 {
margin-left: 50%;
}
.col-sm-offset-7 {
margin-left: 58.3333333333%;
}
.col-sm-offset-8 {
margin-left: 66.6666666667%;
}
.col-sm-offset-9 {
margin-left: 75%;
}
.col-sm-offset-10 {
margin-left: 83.3333333333%;
}
.col-sm-offset-11 {
margin-left: 91.6666666667%;
}
.col-sm-offset-12 {
margin-left: 100%;
}
}
@media (min-width: 992px) {
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
float: left;
}
.col-md-1 {
width: 8.3333333333%;
}
.col-md-2 {
width: 16.6666666667%;
}
.col-md-3 {
width: 25%;
}
.col-md-4 {
/* width: 33.3333333333%; */
width: 75%;
}
.col-md-5 {
width: 41.6666666667%;
}
.col-md-6 {
width: 50%;
}
.col-md-7 {
width: 58.3333333333%;
}
.col-md-8 {
/* width: 66.6666666667%; */
width: 25%;
}
.col-md-9 {
width: 75%;
}
.col-md-10 {
width: 83.3333333333%;
}
.col-md-11 {
width: 91.6666666667%;
}
.col-md-12 {
width: 100%;
}
.col-md-pull-0 {
right: auto;
}
.col-md-pull-1 {
right: 8.3333333333%;
}
.col-md-pull-2 {
right: 16.6666666667%;
}
.col-md-pull-3 {
right: 25%;
}
.col-md-pull-4 {
right: 33.3333333333%;
}
.col-md-pull-5 {
right: 41.6666666667%;
}
.col-md-pull-6 {
right: 50%;
}
.col-md-pull-7 {
right: 58.3333333333%;
}
.col-md-pull-8 {
right: 66.6666666667%;
}
.col-md-pull-9 {
right: 75%;
}
.col-md-pull-10 {
right: 83.3333333333%;
}
.col-md-pull-11 {
right: 91.6666666667%;
}
.col-md-pull-12 {
right: 100%;
}
.col-md-push-0 {
left: auto;
}
.col-md-push-1 {
left: 8.3333333333%;
}
.col-md-push-2 {
left: 16.6666666667%;
}
.col-md-push-3 {
left: 25%;
}
.col-md-push-4 {
left: 33.3333333333%;
}
.col-md-push-5 {
left: 41.6666666667%;
}
.col-md-push-6 {
left: 50%;
}
.col-md-push-7 {
left: 58.3333333333%;
}
.col-md-push-8 {
left: 66.6666666667%;
}
.col-md-push-9 {
left: 75%;
}
.col-md-push-10 {
left: 83.3333333333%;
}
.col-md-push-11 {
left: 91.6666666667%;
}
.col-md-push-12 {
left: 100%;
}
.col-md-offset-0 {
margin-left: 0%;
}
.col-md-offset-1 {
margin-left: 8.3333333333%;
}
.col-md-offset-2 {
margin-left: 16.6666666667%;
}
.col-md-offset-3 {
margin-left: 25%;
}
.col-md-offset-4 {
margin-left: 33.3333333333%;
}
.col-md-offset-5 {
margin-left: 41.6666666667%;
}
.col-md-offset-6 {
margin-left: 50%;
}
.col-md-offset-7 {
margin-left: 58.3333333333%;
}
.col-md-offset-8 {
margin-left: 66.6666666667%;
}
.col-md-offset-9 {
margin-left: 75%;
}
.col-md-offset-10 {
margin-left: 83.3333333333%;
}
.col-md-offset-11 {
margin-left: 91.6666666667%;
}
.col-md-offset-12 {
margin-left: 100%;
}
}
@media (min-width: 1200px) {
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
float: left;
}
.col-lg-1 {
width: 8.3333333333%;
}
.col-lg-2 {
width: 16.6666666667%;
}
.col-lg-3 {
width: 25%;
}
.col-lg-4 {
width: 33.3333333333%;
}
.col-lg-5 {
width: 41.6666666667%;
}
.col-lg-6 {
width: 50%;
}
.col-lg-7 {
width: 58.3333333333%;
}
.col-lg-8 {
width: 66.6666666667%;
}
.col-lg-9 {
width: 75%;
}
.col-lg-10 {
width: 83.3333333333%;
}
.col-lg-11 {
width: 91.6666666667%;
}
.col-lg-12 {
width: 100%;
}
.col-lg-pull-0 {
right: auto;
}
.col-lg-pull-1 {
right: 8.3333333333%;
}
.col-lg-pull-2 {
right: 16.6666666667%;
}
.col-lg-pull-3 {
right: 25%;
}
.col-lg-pull-4 {
right: 33.3333333333%;
}
.col-lg-pull-5 {
right: 41.6666666667%;
}
.col-lg-pull-6 {
right: 50%;
}
.col-lg-pull-7 {
right: 58.3333333333%;
}
.col-lg-pull-8 {
right: 66.6666666667%;
}
.col-lg-pull-9 {
right: 75%;
}
.col-lg-pull-10 {
right: 83.3333333333%;
}
.col-lg-pull-11 {
right: 91.6666666667%;
}
.col-lg-pull-12 {
right: 100%;
}
.col-lg-push-0 {
left: auto;
}
.col-lg-push-1 {
left: 8.3333333333%;
}
.col-lg-push-2 {
left: 16.6666666667%;
}
.col-lg-push-3 {
left: 25%;
}
.col-lg-push-4 {
left: 33.3333333333%;
}
.col-lg-push-5 {
left: 41.6666666667%;
}
.col-lg-push-6 {
left: 50%;
}
.col-lg-push-7 {
left: 58.3333333333%;
}
.col-lg-push-8 {
left: 66.6666666667%;
}
.col-lg-push-9 {
left: 75%;
}
.col-lg-push-10 {
left: 83.3333333333%;
}
.col-lg-push-11 {
left: 91.6666666667%;
}
.col-lg-push-12 {
left: 100%;
}
.col-lg-offset-0 {
margin-left: 0%;
}
.col-lg-offset-1 {
margin-left: 8.3333333333%;
}
.col-lg-offset-2 {
margin-left: 16.6666666667%;
}
.col-lg-offset-3 {
margin-left: 25%;
}
.col-lg-offset-4 {
margin-left: 33.3333333333%;
}
.col-lg-offset-5 {
margin-left: 41.6666666667%;
}
.col-lg-offset-6 {
margin-left: 50%;
}
.col-lg-offset-7 {
margin-left: 58.3333333333%;
}
.col-lg-offset-8 {
margin-left: 66.6666666667%;
}
.col-lg-offset-9 {
margin-left: 75%;
}
.col-lg-offset-10 {
margin-left: 83.3333333333%;
}
.col-lg-offset-11 {
margin-left: 91.6666666667%;
}
.col-lg-offset-12 {
margin-left: 100%;
}
}
.nav {
margin-bottom: 0;
padding-left: 0;
list-style: none;
}
.nav:before, .nav:after {
content: " ";
display: table;
}
.nav:after {
clear: both;
}
.nav > li {
position: relative;
display: block;
}
.nav > li > a {
position: relative;
display: block;
padding: 10px 15px;
}
.nav > li > a:hover, .nav > li > a:focus {
text-decoration: none;
background-color: #eeeeee;
}
.nav > li.disabled > a {
color: #777777;
}
.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
color: #777777;
text-decoration: none;
background-color: transparent;
cursor: not-allowed;
}
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
background-color: #eeeeee;
border-color: #337ab7;
}
.nav .nav-divider {
height: 1px;
margin: 9px 0;
overflow: hidden;
background-color: #e5e5e5;
}
.nav > li > a > img {
max-width: none;
}
.nav-justified, .nav-tabs.nav-justified {
width: 100%;
}
.nav-justified > li, .nav-tabs.nav-justified > li {
float: none;
}
.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
text-align: center;
margin-bottom: 5px;
}
.nav-justified > .dropdown .dropdown-menu {
top: auto;
left: auto;
}
@media (min-width: 768px) {
.nav-justified > li, .nav-tabs.nav-justified > li {
display: table-cell;
width: 1%;
}
.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
margin-bottom: 0;
}
}
.nav-tabs-justified, .nav-tabs.nav-justified {
border-bottom: 0;
}
.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
margin-right: 0;
border-radius: 4px;
}
.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus,
.nav-tabs.nav-justified > .active > a:focus {
border: 1px solid #ddd;
}
@media (min-width: 768px) {
.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
border-bottom: 1px solid #ddd;
border-radius: 4px 4px 0 0;
}
.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus,
.nav-tabs.nav-justified > .active > a:focus {
border-bottom-color: #fff;
}
}
.tab-content > .tab-pane {
display: none;
}
.tab-content > .active {
display: block;
}
.nav-tabs .dropdown-menu {
margin-top: -1px;
border-top-right-radius: 0;
border-top-left-radius: 0;
}
.navbar {
position: relative;
min-height: 50px;
margin-bottom: 20px;
border: 1px solid transparent;
}
.navbar:before, .navbar:after {
content: " ";
display: table;
}
.navbar:after {
clear: both;
}
@media (min-width: 768px) {
.navbar {
border-radius: 4px;
}
}
.navbar-header:before, .navbar-header:after {
content: " ";
display: table;
}
.navbar-header:after {
clear: both;
}
@media (min-width: 768px) {
.navbar-header {
float: left;
}
}
.navbar-collapse {
overflow-x: visible;
padding-right: 15px;
padding-left: 15px;
border-top: 1px solid transparent;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
-webkit-overflow-scrolling: touch;
}
.navbar-collapse:before, .navbar-collapse:after {
content: " ";
display: table;
}
.navbar-collapse:after {
clear: both;
}
.navbar-collapse.in {
overflow-y: auto;
}
@media (min-width: 768px) {
.navbar-collapse {
width: auto;
border-top: 0;
box-shadow: none;
}
.navbar-collapse.collapse {
display: block !important;
height: auto !important;
padding-bottom: 0;
overflow: visible !important;
}
.navbar-collapse.in {
overflow-y: visible;
}
.navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
padding-left: 0;
padding-right: 0;
}
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
max-height: 200px;
}
}
.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
margin-right: -15px;
margin-left: -15px;
}
@media (min-width: 768px) {
.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
margin-right: 0;
margin-left: 0;
}
}
.navbar-static-top {
z-index: 1000;
border-width: 0 0 1px;
}
@media (min-width: 768px) {
.navbar-static-top {
border-radius: 0;
}
}
.navbar-fixed-top,
.navbar-fixed-bottom {
position: fixed;
right: 0;
left: 0;
z-index: 1030;
}
@media (min-width: 768px) {
.navbar-fixed-top,
.navbar-fixed-bottom {
border-radius: 0;
}
}
.navbar-fixed-top {
top: 0;
border-width: 0 0 1px;
}
.navbar-fixed-bottom {
bottom: 0;
margin-bottom: 0;
border-width: 1px 0 0;
}
.navbar-brand {
float: left;
padding: 15px 15px;
font-size: 18px;
line-height: 20px;
height: 50px;
}
.navbar-brand:hover, .navbar-brand:focus {
text-decoration: none;
}
.navbar-brand > img {
display: block;
}
@media (min-width: 768px) {
.navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
margin-left: -15px;
}
}
.navbar-toggle {
position: relative;
float: right;
margin-right: 15px;
padding: 9px 10px;
margin-top: 8px;
margin-bottom: 8px;
background-color: transparent;
background-image: none;
border: 1px solid transparent;
border-radius: 4px;
}
.navbar-toggle:focus {
outline: 0;
}
.navbar-toggle .icon-bar {
display: block;
width: 22px;
height: 2px;
border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
margin-top: 4px;
}
@media (min-width: 768px) {
.navbar-toggle {
display: none;
}
}
.navbar-nav {
margin: 7.5px -15px;
}
.navbar-nav > li > a {
padding-top: 10px;
padding-bottom: 10px;
line-height: 20px;
}
@media (max-width: 767px) {
.navbar-nav .open .dropdown-menu {
position: static;
float: none;
width: auto;
margin-top: 0;
background-color: transparent;
border: 0;
box-shadow: none;
}
.navbar-nav .open .dropdown-menu > li > a,
.navbar-nav .open .dropdown-menu .dropdown-header {
padding: 5px 15px 5px 25px;
}
.navbar-nav .open .dropdown-menu > li > a {
line-height: 20px;
}
.navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
background-image: none;
}
}
@media (min-width: 768px) {
.navbar-nav {
float: left;
margin: 0;
}
.navbar-nav > li {
float: left;
}
.navbar-nav > li > a {
padding-top: 15px;
padding-bottom: 15px;
}
}
.navbar-form {
margin-left: -15px;
margin-right: -15px;
padding: 10px 15px;
border-top: 1px solid transparent;
border-bottom: 1px solid transparent;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
margin-top: 8px;
margin-bottom: 8px;
}
@media (min-width: 768px) {
.navbar-form .form-group {
display: inline-block;
margin-bottom: 0;
vertical-align: middle;
}
.navbar-form .form-control {
display: inline-block;
width: auto;
vertical-align: middle;
}
.navbar-form .form-control-static {
display: inline-block;
}
.navbar-form .input-group {
display: inline-table;
vertical-align: middle;
}
.navbar-form .input-group .input-group-addon,
.navbar-form .input-group .input-group-btn,
.navbar-form .input-group .form-control {
width: auto;
}
.navbar-form .input-group > .form-control {
width: 100%;
}
.navbar-form .control-label {
margin-bottom: 0;
vertical-align: middle;
}
.navbar-form .radio,
.navbar-form .checkbox {
display: inline-block;
margin-top: 0;
margin-bottom: 0;
vertical-align: middle;
}
.navbar-form .radio label,
.navbar-form .checkbox label {
padding-left: 0;
}
.navbar-form .radio input[type="radio"],
.navbar-form .checkbox input[type="checkbox"] {
position: relative;
margin-left: 0;
}
.navbar-form .has-feedback .form-control-feedback {
top: 0;
}
}
@media (max-width: 767px) {
.navbar-form .form-group {
margin-bottom: 5px;
}
.navbar-form .form-group:last-child {
margin-bottom: 0;
}
}
@media (min-width: 768px) {
.navbar-form {
width: auto;
border: 0;
margin-left: 0;
margin-right: 0;
padding-top: 0;
padding-bottom: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
}
.navbar-nav > li > .dropdown-menu {
margin-top: 0;
border-top-right-radius: 0;
border-top-left-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
margin-bottom: 0;
border-top-right-radius: 4px;
border-top-left-radius: 4px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.navbar-btn {
margin-top: 8px;
margin-bottom: 8px;
}
.navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
margin-top: 10px;
margin-bottom: 10px;
}
.navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
margin-top: 14px;
margin-bottom: 14px;
}
.navbar-text {
margin-top: 15px;
margin-bottom: 15px;
}
@media (min-width: 768px) {
.navbar-text {
float: left;
margin-left: 15px;
margin-right: 15px;
}
.navbar-left {
float: left !important;
}
.navbar-right {
float: right !important;
margin-right: -15px;
}
.navbar-right ~ .navbar-right {
margin-right: 0;
}
}
.navbar-default {
background-color: #f8f8f8;
border-color: #e7e7e7;
}
.navbar-default .navbar-brand {
color: #777;
}
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
color: #5e5e5e;
background-color: transparent;
}
.navbar-default .navbar-text {
color: #777;
}
.navbar-default .navbar-nav > li > a {
color: #777;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
color: #333;
background-color: transparent;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
color: #555;
background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
color: #ccc;
background-color: transparent;
}
.navbar-default .navbar-toggle {
border-color: #ddd;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
background-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
border-color: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
background-color: #e7e7e7;
color: #555;
}
@media (max-width: 767px) {
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
color: #777;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
color: #333;
background-color: transparent;
}
.navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #555;
background-color: #e7e7e7;
}
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #ccc;
background-color: transparent;
}
}
.navbar-default .navbar-link {
color: #777;
}
.navbar-default .navbar-link:hover {
color: #333;
}
.navbar-default .btn-link {
color: #777;
}
.navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
color: #333;
}
.navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:hover, fieldset[disabled] .navbar-default .btn-link:focus {
color: #ccc;
}
.navbar-inverse {
background-color: #222;
border-color: #090909;
}
.navbar-inverse .navbar-brand {
color: #9d9d9d;
}
.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
color: #fff;
background-color: transparent;
}
.navbar-inverse .navbar-text {
color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a {
color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
color: #fff;
background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
color: #fff;
background-color: #090909;
}
.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
color: #444;
background-color: transparent;
}
.navbar-inverse .navbar-toggle {
border-color: #333;
}
.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
background-color: #333;
}
.navbar-inverse .navbar-toggle .icon-bar {
background-color: #fff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
border-color: #101010;
}
.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
background-color: #090909;
color: #fff;
}
@media (max-width: 767px) {
.navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
border-color: #090909;
}
.navbar-inverse .navbar-nav .open .dropdown-menu .divider {
background-color: #090909;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
color: #9d9d9d;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
color: #fff;
background-color: transparent;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #fff;
background-color: #090909;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #444;
background-color: transparent;
}
}
.pagination {
display: inline-block;
padding-left: 0;
margin: 20px 0;
border-radius: 4px;
}
.pagination > li {
display: inline;
}
.pagination > li > a,
.pagination > li > span {
position: relative;
float: left;
padding: 6px 12px;
line-height: 1.428571429;
text-decoration: none;
color: #337ab7;
background-color: #fff;
border: 1px solid #ddd;
margin-left: -1px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
margin-left: 0;
border-bottom-left-radius: 4px;
border-top-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
border-bottom-right-radius: 4px;
border-top-right-radius: 4px;
}
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
z-index: 2;
color: #23527c;
background-color: #eeeeee;
border-color: #ddd;
}
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
z-index: 3;
color: #fff;
background-color: #337ab7;
border-color: #337ab7;
cursor: default;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
color: #777777;
background-color: #fff;
border-color: #ddd;
cursor: not-allowed;
}
/************************/
/* mixins, variables, etc. */
/* universal */
section {
overflow: auto;
}
textarea {
resize: vertical;
}
.center {
text-align: center;
}
.center h1 {
margin-bottom: 10px;
}
/* typography */
h1, h2, h3, h4, h5, h6 {
line-height: 1;
}
h1 {
font-size: 3em;
letter-spacing: -2px;
margin-bottom: 30px;
text-align: center;
}
h2 {
font-size: 1.2em;
letter-spacing: -1px;
margin-bottom: 30px;
text-align: center;
font-weight: normal;
color: #777;
}
p {
font-size: 1.1em;
line-height: 1.7em;
}
/* header */
#logo {
float: left;
margin-right: 10px;
font-size: 1.7em;
color: #fff;
text-transform: uppercase;
letter-spacing: -1px;
padding-top: 9px;
font-weight: bold;
}
/* footer */
footer {
margin-top: 10px;
padding-top: 5px;
border-top: 1px solid #eaeaea;
color: #777;
margin-right: 25px;
}
footer a {
color: #555;
}
footer a:hover {
color: #222;
}
footer small {
float: left;
}
footer ul {
float: right;
list-style: none;
}
footer ul li {
float: left;
margin-left: 15px;
}
.stats {
overflow: auto;
margin-top: 0;
padding: 0;
}
.stats a {
float: left;
padding: 0 10px;
border-left: 1px solid #eeeeee;
color: gray;
}
.stats a:hover {
text-decoration: none;
color: red;
}
.img_index li {
padding: 1px 0;
border-top: 1px solid #e8e8e8;
}
.img_index .content {
display: block;
}
.img_index .content img {
display: block;
padding: 1px 0;
} | public/style.css |
@charset "UTF-8";
/*!
* Bootstrap v3.3.7 (http://getbootstrap.com)
* Copyright 2011-2016 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
html {
font-family: sans-serif;
font-size: 10px;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
margin: 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 1.428571429;
color: #333333;
background-color: #fff;
padding-top: 60px;
}
footer,
header,
nav,
section,
summary {
display: block;
}
a {
background-color: transparent;
}
a:active,
a:hover {
outline: 0;
}
b,
strong {
font-weight: bold;
}
dfn {
font-style: italic;
}
h1 {
font-size: 2em;
margin: 0.67em 0;
}
small {
font-size: 80%;
}
hr {
box-sizing: content-box;
height: 0;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
td,
th {
padding: 0;
}
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
a {
color: #337ab7;
text-decoration: none;
}
a:hover, a:focus {
color: #23527c;
text-decoration: underline;
}
a:focus {
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
img {
border: 0;
vertical-align: middle;
}
.img-responsive {
display: block;
max-width: 100%;
height: auto;
border-radius: 6px
}
.img-rounded {
border-radius: 6px;
}
.img-thumbnail {
padding: 2px;
line-height: 1.428571429;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 6px;
-webkit-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
display: inline-block;
max-width: 40%;
height: auto;
}
.img-circle {
border-radius: 50%;
}
hr {
margin-top: 20px;
margin-bottom: 20px;
border: 0;
border-top: 1px solid #eeeeee;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
font-family: inherit;
font-weight: 500;
line-height: 1.1;
color: inherit;
}
h1 small,
h1 .small, h2 small,
h2 .small, h3 small,
h3 .small, h4 small,
h4 .small, h5 small,
h5 .small, h6 small,
h6 .small,
.h1 small,
.h1 .small, .h2 small,
.h2 .small, .h3 small,
.h3 .small, .h4 small,
.h4 .small, .h5 small,
.h5 .small, .h6 small,
.h6 .small {
font-weight: normal;
line-height: 1;
color: #777777;
}
h1, .h1,
h2, .h2,
h3, .h3 {
margin-top: 20px;
margin-bottom: 10px;
}
h1 small,
h1 .small, .h1 small,
.h1 .small,
h2 small,
h2 .small, .h2 small,
.h2 .small,
h3 small,
h3 .small, .h3 small,
.h3 .small {
font-size: 65%;
}
h4, .h4,
h5, .h5,
h6, .h6 {
margin-top: 10px;
margin-bottom: 10px;
}
h4 small,
h4 .small, .h4 small,
.h4 .small,
h5 small,
h5 .small, .h5 small,
.h5 .small,
h6 small,
h6 .small, .h6 small,
.h6 .small {
font-size: 75%;
}
h1, .h1 {
font-size: 36px;
}
h2, .h2 {
font-size: 30px;
}
h3, .h3 {
font-size: 24px;
}
h4, .h4 {
font-size: 18px;
}
h5, .h5 {
font-size: 14px;
}
h6, .h6 {
font-size: 12px;
}
p {
margin: 0 0 10px;
}
small,
.small {
font-size: 85%;
}
.page-header {
padding-bottom: 9px;
margin: 40px 0 20px;
border-bottom: 1px solid #eeeeee;
}
ul,
ol {
margin-top: 0;
margin-bottom: 10px;
}
ul ul,
ul ol,
ol ul,
ol ol {
margin-bottom: 0;
}
.container {
margin-right: auto;
margin-left: auto;
padding-left: 15px;
padding-right: 15px;
}
.container:before, .container:after {
content: " ";
display: table;
}
.container:after {
clear: both;
}
@media (min-width: 768px) {
.container {
width: 750px;
}
}
@media (min-width: 992px) {
.container {
width: 970px;
}
}
@media (min-width: 1200px) {
.container {
width: 1170px;
}
}
.row {
margin-left: -15px;
margin-right: -15px;
}
.col-sm-1, .col-md-1, .col-lg-1, .col-sm-2, .col-md-2, .col-lg-2, .col-sm-3, .col-md-3, .col-lg-3, .col-sm-4, .col-md-4, .col-lg-4, .col-sm-5, .col-md-5, .col-lg-5, .col-sm-6, .col-md-6, .col-lg-6, .col-sm-7, .col-md-7, .col-lg-7, .col-sm-8, .col-md-8, .col-lg-8 .col-sm-9, .col-md-9, .col-lg-9, .col-sm-10, .col-md-10, .col-lg-10, .col-sm-11, .col-md-11, .col-lg-11, .col-sm-12, .col-md-12, .col-lg-12 {
position: relative;
min-height: 1px;
padding-left: 15px;
padding-right: 15px;
}
@media (min-width: 768px) {
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
float: left;
}
.col-sm-1 {
width: 8.3333333333%;
}
.col-sm-2 {
width: 16.6666666667%;
}
.col-sm-3 {
width: 25%;
}
.col-sm-4 {
width: 33.3333333333%;
}
.col-sm-5 {
width: 41.6666666667%;
}
.col-sm-6 {
width: 50%;
}
.col-sm-7 {
width: 58.3333333333%;
}
.col-sm-8 {
width: 66.6666666667%;
}
.col-sm-9 {
width: 75%;
}
.col-sm-10 {
width: 83.3333333333%;
}
.col-sm-11 {
width: 91.6666666667%;
}
.col-sm-12 {
width: 100%;
}
.col-sm-pull-0 {
right: auto;
}
.col-sm-pull-1 {
right: 8.3333333333%;
}
.col-sm-pull-2 {
right: 16.6666666667%;
}
.col-sm-pull-3 {
right: 25%;
}
.col-sm-pull-4 {
right: 33.3333333333%;
}
.col-sm-pull-5 {
right: 41.6666666667%;
}
.col-sm-pull-6 {
right: 50%;
}
.col-sm-pull-7 {
right: 58.3333333333%;
}
.col-sm-pull-8 {
right: 66.6666666667%;
}
.col-sm-pull-9 {
right: 75%;
}
.col-sm-pull-10 {
right: 83.3333333333%;
}
.col-sm-pull-11 {
right: 91.6666666667%;
}
.col-sm-pull-12 {
right: 100%;
}
.col-sm-push-0 {
left: auto;
}
.col-sm-push-1 {
left: 8.3333333333%;
}
.col-sm-push-2 {
left: 16.6666666667%;
}
.col-sm-push-3 {
left: 25%;
}
.col-sm-push-4 {
left: 33.3333333333%;
}
.col-sm-push-5 {
left: 41.6666666667%;
}
.col-sm-push-6 {
left: 50%;
}
.col-sm-push-7 {
left: 58.3333333333%;
}
.col-sm-push-8 {
left: 66.6666666667%;
}
.col-sm-push-9 {
left: 75%;
}
.col-sm-push-10 {
left: 83.3333333333%;
}
.col-sm-push-11 {
left: 91.6666666667%;
}
.col-sm-push-12 {
left: 100%;
}
.col-sm-offset-0 {
margin-left: 0%;
}
.col-sm-offset-1 {
margin-left: 8.3333333333%;
}
.col-sm-offset-2 {
margin-left: 16.6666666667%;
}
.col-sm-offset-3 {
margin-left: 25%;
}
.col-sm-offset-4 {
margin-left: 33.3333333333%;
}
.col-sm-offset-5 {
margin-left: 41.6666666667%;
}
.col-sm-offset-6 {
margin-left: 50%;
}
.col-sm-offset-7 {
margin-left: 58.3333333333%;
}
.col-sm-offset-8 {
margin-left: 66.6666666667%;
}
.col-sm-offset-9 {
margin-left: 75%;
}
.col-sm-offset-10 {
margin-left: 83.3333333333%;
}
.col-sm-offset-11 {
margin-left: 91.6666666667%;
}
.col-sm-offset-12 {
margin-left: 100%;
}
}
@media (min-width: 992px) {
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
float: left;
}
.col-md-1 {
width: 8.3333333333%;
}
.col-md-2 {
width: 16.6666666667%;
}
.col-md-3 {
width: 25%;
}
.col-md-4 {
/* width: 33.3333333333%; */
width: 75%;
}
.col-md-5 {
width: 41.6666666667%;
}
.col-md-6 {
width: 50%;
}
.col-md-7 {
width: 58.3333333333%;
}
.col-md-8 {
/* width: 66.6666666667%; */
width: 25%;
}
.col-md-9 {
width: 75%;
}
.col-md-10 {
width: 83.3333333333%;
}
.col-md-11 {
width: 91.6666666667%;
}
.col-md-12 {
width: 100%;
}
.col-md-pull-0 {
right: auto;
}
.col-md-pull-1 {
right: 8.3333333333%;
}
.col-md-pull-2 {
right: 16.6666666667%;
}
.col-md-pull-3 {
right: 25%;
}
.col-md-pull-4 {
right: 33.3333333333%;
}
.col-md-pull-5 {
right: 41.6666666667%;
}
.col-md-pull-6 {
right: 50%;
}
.col-md-pull-7 {
right: 58.3333333333%;
}
.col-md-pull-8 {
right: 66.6666666667%;
}
.col-md-pull-9 {
right: 75%;
}
.col-md-pull-10 {
right: 83.3333333333%;
}
.col-md-pull-11 {
right: 91.6666666667%;
}
.col-md-pull-12 {
right: 100%;
}
.col-md-push-0 {
left: auto;
}
.col-md-push-1 {
left: 8.3333333333%;
}
.col-md-push-2 {
left: 16.6666666667%;
}
.col-md-push-3 {
left: 25%;
}
.col-md-push-4 {
left: 33.3333333333%;
}
.col-md-push-5 {
left: 41.6666666667%;
}
.col-md-push-6 {
left: 50%;
}
.col-md-push-7 {
left: 58.3333333333%;
}
.col-md-push-8 {
left: 66.6666666667%;
}
.col-md-push-9 {
left: 75%;
}
.col-md-push-10 {
left: 83.3333333333%;
}
.col-md-push-11 {
left: 91.6666666667%;
}
.col-md-push-12 {
left: 100%;
}
.col-md-offset-0 {
margin-left: 0%;
}
.col-md-offset-1 {
margin-left: 8.3333333333%;
}
.col-md-offset-2 {
margin-left: 16.6666666667%;
}
.col-md-offset-3 {
margin-left: 25%;
}
.col-md-offset-4 {
margin-left: 33.3333333333%;
}
.col-md-offset-5 {
margin-left: 41.6666666667%;
}
.col-md-offset-6 {
margin-left: 50%;
}
.col-md-offset-7 {
margin-left: 58.3333333333%;
}
.col-md-offset-8 {
margin-left: 66.6666666667%;
}
.col-md-offset-9 {
margin-left: 75%;
}
.col-md-offset-10 {
margin-left: 83.3333333333%;
}
.col-md-offset-11 {
margin-left: 91.6666666667%;
}
.col-md-offset-12 {
margin-left: 100%;
}
}
@media (min-width: 1200px) {
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
float: left;
}
.col-lg-1 {
width: 8.3333333333%;
}
.col-lg-2 {
width: 16.6666666667%;
}
.col-lg-3 {
width: 25%;
}
.col-lg-4 {
width: 33.3333333333%;
}
.col-lg-5 {
width: 41.6666666667%;
}
.col-lg-6 {
width: 50%;
}
.col-lg-7 {
width: 58.3333333333%;
}
.col-lg-8 {
width: 66.6666666667%;
}
.col-lg-9 {
width: 75%;
}
.col-lg-10 {
width: 83.3333333333%;
}
.col-lg-11 {
width: 91.6666666667%;
}
.col-lg-12 {
width: 100%;
}
.col-lg-pull-0 {
right: auto;
}
.col-lg-pull-1 {
right: 8.3333333333%;
}
.col-lg-pull-2 {
right: 16.6666666667%;
}
.col-lg-pull-3 {
right: 25%;
}
.col-lg-pull-4 {
right: 33.3333333333%;
}
.col-lg-pull-5 {
right: 41.6666666667%;
}
.col-lg-pull-6 {
right: 50%;
}
.col-lg-pull-7 {
right: 58.3333333333%;
}
.col-lg-pull-8 {
right: 66.6666666667%;
}
.col-lg-pull-9 {
right: 75%;
}
.col-lg-pull-10 {
right: 83.3333333333%;
}
.col-lg-pull-11 {
right: 91.6666666667%;
}
.col-lg-pull-12 {
right: 100%;
}
.col-lg-push-0 {
left: auto;
}
.col-lg-push-1 {
left: 8.3333333333%;
}
.col-lg-push-2 {
left: 16.6666666667%;
}
.col-lg-push-3 {
left: 25%;
}
.col-lg-push-4 {
left: 33.3333333333%;
}
.col-lg-push-5 {
left: 41.6666666667%;
}
.col-lg-push-6 {
left: 50%;
}
.col-lg-push-7 {
left: 58.3333333333%;
}
.col-lg-push-8 {
left: 66.6666666667%;
}
.col-lg-push-9 {
left: 75%;
}
.col-lg-push-10 {
left: 83.3333333333%;
}
.col-lg-push-11 {
left: 91.6666666667%;
}
.col-lg-push-12 {
left: 100%;
}
.col-lg-offset-0 {
margin-left: 0%;
}
.col-lg-offset-1 {
margin-left: 8.3333333333%;
}
.col-lg-offset-2 {
margin-left: 16.6666666667%;
}
.col-lg-offset-3 {
margin-left: 25%;
}
.col-lg-offset-4 {
margin-left: 33.3333333333%;
}
.col-lg-offset-5 {
margin-left: 41.6666666667%;
}
.col-lg-offset-6 {
margin-left: 50%;
}
.col-lg-offset-7 {
margin-left: 58.3333333333%;
}
.col-lg-offset-8 {
margin-left: 66.6666666667%;
}
.col-lg-offset-9 {
margin-left: 75%;
}
.col-lg-offset-10 {
margin-left: 83.3333333333%;
}
.col-lg-offset-11 {
margin-left: 91.6666666667%;
}
.col-lg-offset-12 {
margin-left: 100%;
}
}
.nav {
margin-bottom: 0;
padding-left: 0;
list-style: none;
}
.nav:before, .nav:after {
content: " ";
display: table;
}
.nav:after {
clear: both;
}
.nav > li {
position: relative;
display: block;
}
.nav > li > a {
position: relative;
display: block;
padding: 10px 15px;
}
.nav > li > a:hover, .nav > li > a:focus {
text-decoration: none;
background-color: #eeeeee;
}
.nav > li.disabled > a {
color: #777777;
}
.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
color: #777777;
text-decoration: none;
background-color: transparent;
cursor: not-allowed;
}
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
background-color: #eeeeee;
border-color: #337ab7;
}
.nav .nav-divider {
height: 1px;
margin: 9px 0;
overflow: hidden;
background-color: #e5e5e5;
}
.nav > li > a > img {
max-width: none;
}
.nav-justified, .nav-tabs.nav-justified {
width: 100%;
}
.nav-justified > li, .nav-tabs.nav-justified > li {
float: none;
}
.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
text-align: center;
margin-bottom: 5px;
}
.nav-justified > .dropdown .dropdown-menu {
top: auto;
left: auto;
}
@media (min-width: 768px) {
.nav-justified > li, .nav-tabs.nav-justified > li {
display: table-cell;
width: 1%;
}
.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
margin-bottom: 0;
}
}
.nav-tabs-justified, .nav-tabs.nav-justified {
border-bottom: 0;
}
.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
margin-right: 0;
border-radius: 4px;
}
.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus,
.nav-tabs.nav-justified > .active > a:focus {
border: 1px solid #ddd;
}
@media (min-width: 768px) {
.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
border-bottom: 1px solid #ddd;
border-radius: 4px 4px 0 0;
}
.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus,
.nav-tabs.nav-justified > .active > a:focus {
border-bottom-color: #fff;
}
}
.tab-content > .tab-pane {
display: none;
}
.tab-content > .active {
display: block;
}
.nav-tabs .dropdown-menu {
margin-top: -1px;
border-top-right-radius: 0;
border-top-left-radius: 0;
}
.navbar {
position: relative;
min-height: 50px;
margin-bottom: 20px;
border: 1px solid transparent;
}
.navbar:before, .navbar:after {
content: " ";
display: table;
}
.navbar:after {
clear: both;
}
@media (min-width: 768px) {
.navbar {
border-radius: 4px;
}
}
.navbar-header:before, .navbar-header:after {
content: " ";
display: table;
}
.navbar-header:after {
clear: both;
}
@media (min-width: 768px) {
.navbar-header {
float: left;
}
}
.navbar-collapse {
overflow-x: visible;
padding-right: 15px;
padding-left: 15px;
border-top: 1px solid transparent;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
-webkit-overflow-scrolling: touch;
}
.navbar-collapse:before, .navbar-collapse:after {
content: " ";
display: table;
}
.navbar-collapse:after {
clear: both;
}
.navbar-collapse.in {
overflow-y: auto;
}
@media (min-width: 768px) {
.navbar-collapse {
width: auto;
border-top: 0;
box-shadow: none;
}
.navbar-collapse.collapse {
display: block !important;
height: auto !important;
padding-bottom: 0;
overflow: visible !important;
}
.navbar-collapse.in {
overflow-y: visible;
}
.navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
padding-left: 0;
padding-right: 0;
}
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
max-height: 200px;
}
}
.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
margin-right: -15px;
margin-left: -15px;
}
@media (min-width: 768px) {
.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
margin-right: 0;
margin-left: 0;
}
}
.navbar-static-top {
z-index: 1000;
border-width: 0 0 1px;
}
@media (min-width: 768px) {
.navbar-static-top {
border-radius: 0;
}
}
.navbar-fixed-top,
.navbar-fixed-bottom {
position: fixed;
right: 0;
left: 0;
z-index: 1030;
}
@media (min-width: 768px) {
.navbar-fixed-top,
.navbar-fixed-bottom {
border-radius: 0;
}
}
.navbar-fixed-top {
top: 0;
border-width: 0 0 1px;
}
.navbar-fixed-bottom {
bottom: 0;
margin-bottom: 0;
border-width: 1px 0 0;
}
.navbar-brand {
float: left;
padding: 15px 15px;
font-size: 18px;
line-height: 20px;
height: 50px;
}
.navbar-brand:hover, .navbar-brand:focus {
text-decoration: none;
}
.navbar-brand > img {
display: block;
}
@media (min-width: 768px) {
.navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
margin-left: -15px;
}
}
.navbar-toggle {
position: relative;
float: right;
margin-right: 15px;
padding: 9px 10px;
margin-top: 8px;
margin-bottom: 8px;
background-color: transparent;
background-image: none;
border: 1px solid transparent;
border-radius: 4px;
}
.navbar-toggle:focus {
outline: 0;
}
.navbar-toggle .icon-bar {
display: block;
width: 22px;
height: 2px;
border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
margin-top: 4px;
}
@media (min-width: 768px) {
.navbar-toggle {
display: none;
}
}
.navbar-nav {
margin: 7.5px -15px;
}
.navbar-nav > li > a {
padding-top: 10px;
padding-bottom: 10px;
line-height: 20px;
}
@media (max-width: 767px) {
.navbar-nav .open .dropdown-menu {
position: static;
float: none;
width: auto;
margin-top: 0;
background-color: transparent;
border: 0;
box-shadow: none;
}
.navbar-nav .open .dropdown-menu > li > a,
.navbar-nav .open .dropdown-menu .dropdown-header {
padding: 5px 15px 5px 25px;
}
.navbar-nav .open .dropdown-menu > li > a {
line-height: 20px;
}
.navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
background-image: none;
}
}
@media (min-width: 768px) {
.navbar-nav {
float: left;
margin: 0;
}
.navbar-nav > li {
float: left;
}
.navbar-nav > li > a {
padding-top: 15px;
padding-bottom: 15px;
}
}
.navbar-form {
margin-left: -15px;
margin-right: -15px;
padding: 10px 15px;
border-top: 1px solid transparent;
border-bottom: 1px solid transparent;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
margin-top: 8px;
margin-bottom: 8px;
}
@media (min-width: 768px) {
.navbar-form .form-group {
display: inline-block;
margin-bottom: 0;
vertical-align: middle;
}
.navbar-form .form-control {
display: inline-block;
width: auto;
vertical-align: middle;
}
.navbar-form .form-control-static {
display: inline-block;
}
.navbar-form .input-group {
display: inline-table;
vertical-align: middle;
}
.navbar-form .input-group .input-group-addon,
.navbar-form .input-group .input-group-btn,
.navbar-form .input-group .form-control {
width: auto;
}
.navbar-form .input-group > .form-control {
width: 100%;
}
.navbar-form .control-label {
margin-bottom: 0;
vertical-align: middle;
}
.navbar-form .radio,
.navbar-form .checkbox {
display: inline-block;
margin-top: 0;
margin-bottom: 0;
vertical-align: middle;
}
.navbar-form .radio label,
.navbar-form .checkbox label {
padding-left: 0;
}
.navbar-form .radio input[type="radio"],
.navbar-form .checkbox input[type="checkbox"] {
position: relative;
margin-left: 0;
}
.navbar-form .has-feedback .form-control-feedback {
top: 0;
}
}
@media (max-width: 767px) {
.navbar-form .form-group {
margin-bottom: 5px;
}
.navbar-form .form-group:last-child {
margin-bottom: 0;
}
}
@media (min-width: 768px) {
.navbar-form {
width: auto;
border: 0;
margin-left: 0;
margin-right: 0;
padding-top: 0;
padding-bottom: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
}
.navbar-nav > li > .dropdown-menu {
margin-top: 0;
border-top-right-radius: 0;
border-top-left-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
margin-bottom: 0;
border-top-right-radius: 4px;
border-top-left-radius: 4px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.navbar-btn {
margin-top: 8px;
margin-bottom: 8px;
}
.navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
margin-top: 10px;
margin-bottom: 10px;
}
.navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
margin-top: 14px;
margin-bottom: 14px;
}
.navbar-text {
margin-top: 15px;
margin-bottom: 15px;
}
@media (min-width: 768px) {
.navbar-text {
float: left;
margin-left: 15px;
margin-right: 15px;
}
.navbar-left {
float: left !important;
}
.navbar-right {
float: right !important;
margin-right: -15px;
}
.navbar-right ~ .navbar-right {
margin-right: 0;
}
}
.navbar-default {
background-color: #f8f8f8;
border-color: #e7e7e7;
}
.navbar-default .navbar-brand {
color: #777;
}
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
color: #5e5e5e;
background-color: transparent;
}
.navbar-default .navbar-text {
color: #777;
}
.navbar-default .navbar-nav > li > a {
color: #777;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
color: #333;
background-color: transparent;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
color: #555;
background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
color: #ccc;
background-color: transparent;
}
.navbar-default .navbar-toggle {
border-color: #ddd;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
background-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
border-color: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
background-color: #e7e7e7;
color: #555;
}
@media (max-width: 767px) {
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
color: #777;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
color: #333;
background-color: transparent;
}
.navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #555;
background-color: #e7e7e7;
}
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #ccc;
background-color: transparent;
}
}
.navbar-default .navbar-link {
color: #777;
}
.navbar-default .navbar-link:hover {
color: #333;
}
.navbar-default .btn-link {
color: #777;
}
.navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
color: #333;
}
.navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:hover, fieldset[disabled] .navbar-default .btn-link:focus {
color: #ccc;
}
.navbar-inverse {
background-color: #222;
border-color: #090909;
}
.navbar-inverse .navbar-brand {
color: #9d9d9d;
}
.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
color: #fff;
background-color: transparent;
}
.navbar-inverse .navbar-text {
color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a {
color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
color: #fff;
background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
color: #fff;
background-color: #090909;
}
.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
color: #444;
background-color: transparent;
}
.navbar-inverse .navbar-toggle {
border-color: #333;
}
.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
background-color: #333;
}
.navbar-inverse .navbar-toggle .icon-bar {
background-color: #fff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
border-color: #101010;
}
.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
background-color: #090909;
color: #fff;
}
@media (max-width: 767px) {
.navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
border-color: #090909;
}
.navbar-inverse .navbar-nav .open .dropdown-menu .divider {
background-color: #090909;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
color: #9d9d9d;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
color: #fff;
background-color: transparent;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #fff;
background-color: #090909;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #444;
background-color: transparent;
}
}
.pagination {
display: inline-block;
padding-left: 0;
margin: 20px 0;
border-radius: 4px;
}
.pagination > li {
display: inline;
}
.pagination > li > a,
.pagination > li > span {
position: relative;
float: left;
padding: 6px 12px;
line-height: 1.428571429;
text-decoration: none;
color: #337ab7;
background-color: #fff;
border: 1px solid #ddd;
margin-left: -1px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
margin-left: 0;
border-bottom-left-radius: 4px;
border-top-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
border-bottom-right-radius: 4px;
border-top-right-radius: 4px;
}
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
z-index: 2;
color: #23527c;
background-color: #eeeeee;
border-color: #ddd;
}
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
z-index: 3;
color: #fff;
background-color: #337ab7;
border-color: #337ab7;
cursor: default;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
color: #777777;
background-color: #fff;
border-color: #ddd;
cursor: not-allowed;
}
/************************/
/* mixins, variables, etc. */
/* universal */
section {
overflow: auto;
}
textarea {
resize: vertical;
}
.center {
text-align: center;
}
.center h1 {
margin-bottom: 10px;
}
/* typography */
h1, h2, h3, h4, h5, h6 {
line-height: 1;
}
h1 {
font-size: 3em;
letter-spacing: -2px;
margin-bottom: 30px;
text-align: center;
}
h2 {
font-size: 1.2em;
letter-spacing: -1px;
margin-bottom: 30px;
text-align: center;
font-weight: normal;
color: #777;
}
p {
font-size: 1.1em;
line-height: 1.7em;
}
/* header */
#logo {
float: left;
margin-right: 10px;
font-size: 1.7em;
color: #fff;
text-transform: uppercase;
letter-spacing: -1px;
padding-top: 9px;
font-weight: bold;
}
/* footer */
footer {
margin-top: 10px;
padding-top: 5px;
border-top: 1px solid #eaeaea;
color: #777;
margin-right: 25px;
}
footer a {
color: #555;
}
footer a:hover {
color: #222;
}
footer small {
float: left;
}
footer ul {
float: right;
list-style: none;
}
footer ul li {
float: left;
margin-left: 15px;
}
.stats {
overflow: auto;
margin-top: 0;
padding: 0;
}
.stats a {
float: left;
padding: 0 10px;
border-left: 1px solid #eeeeee;
color: gray;
}
.stats a:hover {
text-decoration: none;
color: red;
}
.img_index li {
padding: 1px 0;
border-top: 1px solid #e8e8e8;
}
.img_index .content {
display: block;
}
.img_index .content img {
display: block;
padding: 1px 0;
} | 0.658527 | 0.066085 |
.themed-background.btn--primary {
background: #ab1a2d;
background-color: #ab1a2d;
display: block;
border-radius: 0;
}
.widget-extra.themed-background {
background: #ab1a2d;
background-color: #ab1a2d;
display: block;
display: block;
border-radius: 0;
}
.widget-extra-full i.fa.fa-plus {
color: #303132;
}
.btn-group a {
margin: 0px 5px !important;
display: inline-block;
}
.btn-danger,
.delete-contact-btn,
.delete-page-btn {
background: #ab1a2d;
color: #fff;
margin: 0;
display: inline-block;
border-radius: 3px !important;
-moz-border-radius: 3px !important;
border: 1px solid transparent;
transition: all 0.5s ease;
}
.btn-danger:hover,
.delete-contact-btn:hover,
.delete-page-btn:hover {
background: #303132;
border: 1px solid transparent;
}
.btn.btn-default {
margin: 0;
border-radius: 3px !important;
-moz-border-radius: 3px !important;
color: #303132;
border: 1px solid #77777a;
transition: all 0.5s ease;
}
.btn.btn-default i {
color: #303132;
}
.btn.btn-sm.btn-warning {
background: #303132;
border: 0;
}
.btn-primary,
.btn.btn-sm.btn-primary {
background: #ab1a2d;
border: 0;
}
.text-primary,
.text-primary:hover,
a,
a:hover,
a:focus,
.nav-pills > .active > a > .badge,
.pagination > li > a,
.pagination > li > span,
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link.btn-icon:hover,
.btn-link.btn-icon:focus,
.themed-color {
color: #ab1a2d;
}
.pagination > .active > a {
background-color: #ab1a2d;
}
.flex-display {
display: flex;
flex-wrap: wrap;
align-items: center;
flex-wrap: inherit !important;
}
.flex-display .title-block {
font-weight: 600;
width: 95px;
margin-left: 20px;
}
.preloader.themed-background {
background: #303132;
background-color: #303132;
}
ul.sidebar-section.sidebar-themes {
display: none;
}
.timeline-list .active .timeline-icon,
.form-control:focus,
.wizard-steps span,
.switch-primary span,
a.list-group-item.active,
a.list-group-item.active:hover,
a.list-group-item.active:focus,
.pager > li > a:hover,
.pagination > li > a:hover,
.chosen-container .chosen-drop,
.chosen-container-multi .chosen-choices li.search-choice,
.chosen-container-active .chosen-single,
.chosen-container-active.chosen-with-drop .chosen-single,
.chosen-container-active .chosen-choices,
div.tagsinput span.tag,
.themed-border,
.select2-container.select2-container--open .select2-dropdown,
.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--multiple,
.select2-container--default.select2-container--focus.select2-container--open .select2-selection--multiple,
.select2-container--default.select2-container--focus .select2-selection--single {
border-color: #ab1a2d;
}
.sidebar-nav a.active {
border-left: 5px solid #ab1a2d;
}
.nav.navbar-nav-custom > li.open > a,
.nav.navbar-nav-custom > li > a:hover,
.nav.navbar-nav-custom > li > a:focus,
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus,
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus,
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus,
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus,
a.sidebar-brand:hover,
a.sidebar-brand:focus,
a.sidebar-title:hover,
a.sidebar-title:focus,
#to-top:hover,
.timeline-list .active .timeline-icon,
.table-pricing.table-featured th,
.table-pricing th.table-featured,
.wizard-steps div.done span,
.wizard-steps div.active span,
.switch-primary input:checked + span,
a.list-group-item.active,
a.list-group-item.active:hover,
a.list-group-item.active:focus,
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus,
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus,
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus,
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus,
.pager > li > a:hover,
.pagination > li > a:hover,
.label-primary,
.chosen-container .chosen-results li.highlighted,
.chosen-container-multi .chosen-choices li.search-choice,
.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active[disabled],
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active.disabled:hover[disabled],
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active:hover.disabled,
.datepicker table tr td span.active.disabled.disabled,
.datepicker table tr td span.active.disabled:hover.disabled,
.datepicker table tr td span.active[disabled],
.datepicker table tr td span.active:hover[disabled],
.datepicker table tr td span.active.disabled[disabled],
.datepicker table tr td span.active.disabled:hover[disabled],
.bootstrap-timepicker-widget table td a:hover,
div.tagsinput span.tag,
.slider-selection,
.themed-background,
.select2-container--default .select2-selection--multiple .select2-selection__choice,
.select2-container--default .select2-results__option--highlighted[aria-selected],
.nav-horizontal a:hover,
.nav-horizontal li.active a {
background-color: #ab1a2d;
}
div#login-container {
/* background: #f99; */
max-width: 352px;
width: 100%;
margin: auto;
left: 0;
right: 0;
background: transparent;
position: inherit;
background: rgba(0, 0, 0, 0.7);
padding: 10px;
}
div#login-container span.input-group-addon {
background: transparent;
color: #fff;
}
div#login-container .form-horizontal.form-bordered .form-group {
border: 0;
padding: 15px 0;
}
div#login-container .form-group div iframe {
width: 100% !important;
/* background: #fff; */
text-align: center;
}
div#login-container .form-group div iframe div#rc-anchor-container {
border: 0 !important;
width: 100%;
}
div#login-container span.input-group-addon {
position: absolute;
right: 0;
top: 8px;
}
div#login-container label.switch.switch-primary {
/* background: #f99; */
margin: 12px auto;
width: 65px;
text-align: center;
margin: 15px auto;
/* float: none; */
display: block;
}
div#login-container .g-recaptcha {
text-align: center;
background: #fff !important;
}
div#login-container .g-recaptcha > div {
margin: 0 !important;
width: 100% !important;
}
.login-wrapper {
position: absolute;
height: 100% !important;
width: 100% !important;
display: block;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
background-size: cover !important;
background-position: center !important;
}
.login-wrapper .form-group .input-group {
display: block;
}
.login-wrapper .form-group .input-group .form-control {
background: transparent;
border-bottom: 3px solid #303132 !important;
color: #fff !important;
border-radius: 0;
}
.login-wrapper button.btn.btn-sm.btn-primary {
background: #303132;
border: 0;
display: block;
width: 100%;
padding: 12px;
font-weight: bold;
font-size: 1.2em;
transition: all 0.3s ease;
}
.login-wrapper button.btn.btn-sm.btn-primary:hover {
background: #841523;
}
.login-wrapper .block {
background: transparent !important;
}
.login-wrapper .block div {
background: transparent !important;
}
.login-wrapper #login-container .login-title {
background: transparent;
padding: 0;
}
.login-wrapper #login-container .login-title small {
font-size: 12px;
}
.login-wrapper:after {
content: "";
width: 100%;
position: absolute;
height: 100%;
background: rgba(0, 0, 0, 0.6);
}
.login-wrapper .copyright a {
color: #fff;
font-size: 0.9em;
display: block;
padding: 10px;
text-align: center;
text-decoration: none;
}
.login-wrapper .switch-primary span {
background: #868686;
border: 0;
}
.login-wrapper .switch-primary input:checked + span {
background: #303132;
}
.login-wrapper .has-error .help-block {
color: #fff;
display: block;
text-align: center;
font-size: 0.9em;
}
.login-wrapper .rc-anchor-normal {
width: 100% !important;
}
.login-wrapper .rc-anchor-light.rc-anchor-normal {
width: 100% !important;
border-radius: 0 !important;
} | public/css/admin-control.css | .themed-background.btn--primary {
background: #ab1a2d;
background-color: #ab1a2d;
display: block;
border-radius: 0;
}
.widget-extra.themed-background {
background: #ab1a2d;
background-color: #ab1a2d;
display: block;
display: block;
border-radius: 0;
}
.widget-extra-full i.fa.fa-plus {
color: #303132;
}
.btn-group a {
margin: 0px 5px !important;
display: inline-block;
}
.btn-danger,
.delete-contact-btn,
.delete-page-btn {
background: #ab1a2d;
color: #fff;
margin: 0;
display: inline-block;
border-radius: 3px !important;
-moz-border-radius: 3px !important;
border: 1px solid transparent;
transition: all 0.5s ease;
}
.btn-danger:hover,
.delete-contact-btn:hover,
.delete-page-btn:hover {
background: #303132;
border: 1px solid transparent;
}
.btn.btn-default {
margin: 0;
border-radius: 3px !important;
-moz-border-radius: 3px !important;
color: #303132;
border: 1px solid #77777a;
transition: all 0.5s ease;
}
.btn.btn-default i {
color: #303132;
}
.btn.btn-sm.btn-warning {
background: #303132;
border: 0;
}
.btn-primary,
.btn.btn-sm.btn-primary {
background: #ab1a2d;
border: 0;
}
.text-primary,
.text-primary:hover,
a,
a:hover,
a:focus,
.nav-pills > .active > a > .badge,
.pagination > li > a,
.pagination > li > span,
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link.btn-icon:hover,
.btn-link.btn-icon:focus,
.themed-color {
color: #ab1a2d;
}
.pagination > .active > a {
background-color: #ab1a2d;
}
.flex-display {
display: flex;
flex-wrap: wrap;
align-items: center;
flex-wrap: inherit !important;
}
.flex-display .title-block {
font-weight: 600;
width: 95px;
margin-left: 20px;
}
.preloader.themed-background {
background: #303132;
background-color: #303132;
}
ul.sidebar-section.sidebar-themes {
display: none;
}
.timeline-list .active .timeline-icon,
.form-control:focus,
.wizard-steps span,
.switch-primary span,
a.list-group-item.active,
a.list-group-item.active:hover,
a.list-group-item.active:focus,
.pager > li > a:hover,
.pagination > li > a:hover,
.chosen-container .chosen-drop,
.chosen-container-multi .chosen-choices li.search-choice,
.chosen-container-active .chosen-single,
.chosen-container-active.chosen-with-drop .chosen-single,
.chosen-container-active .chosen-choices,
div.tagsinput span.tag,
.themed-border,
.select2-container.select2-container--open .select2-dropdown,
.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--multiple,
.select2-container--default.select2-container--focus.select2-container--open .select2-selection--multiple,
.select2-container--default.select2-container--focus .select2-selection--single {
border-color: #ab1a2d;
}
.sidebar-nav a.active {
border-left: 5px solid #ab1a2d;
}
.nav.navbar-nav-custom > li.open > a,
.nav.navbar-nav-custom > li > a:hover,
.nav.navbar-nav-custom > li > a:focus,
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus,
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus,
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus,
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus,
a.sidebar-brand:hover,
a.sidebar-brand:focus,
a.sidebar-title:hover,
a.sidebar-title:focus,
#to-top:hover,
.timeline-list .active .timeline-icon,
.table-pricing.table-featured th,
.table-pricing th.table-featured,
.wizard-steps div.done span,
.wizard-steps div.active span,
.switch-primary input:checked + span,
a.list-group-item.active,
a.list-group-item.active:hover,
a.list-group-item.active:focus,
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus,
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus,
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus,
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus,
.pager > li > a:hover,
.pagination > li > a:hover,
.label-primary,
.chosen-container .chosen-results li.highlighted,
.chosen-container-multi .chosen-choices li.search-choice,
.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active[disabled],
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active.disabled:hover[disabled],
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active:hover.disabled,
.datepicker table tr td span.active.disabled.disabled,
.datepicker table tr td span.active.disabled:hover.disabled,
.datepicker table tr td span.active[disabled],
.datepicker table tr td span.active:hover[disabled],
.datepicker table tr td span.active.disabled[disabled],
.datepicker table tr td span.active.disabled:hover[disabled],
.bootstrap-timepicker-widget table td a:hover,
div.tagsinput span.tag,
.slider-selection,
.themed-background,
.select2-container--default .select2-selection--multiple .select2-selection__choice,
.select2-container--default .select2-results__option--highlighted[aria-selected],
.nav-horizontal a:hover,
.nav-horizontal li.active a {
background-color: #ab1a2d;
}
div#login-container {
/* background: #f99; */
max-width: 352px;
width: 100%;
margin: auto;
left: 0;
right: 0;
background: transparent;
position: inherit;
background: rgba(0, 0, 0, 0.7);
padding: 10px;
}
div#login-container span.input-group-addon {
background: transparent;
color: #fff;
}
div#login-container .form-horizontal.form-bordered .form-group {
border: 0;
padding: 15px 0;
}
div#login-container .form-group div iframe {
width: 100% !important;
/* background: #fff; */
text-align: center;
}
div#login-container .form-group div iframe div#rc-anchor-container {
border: 0 !important;
width: 100%;
}
div#login-container span.input-group-addon {
position: absolute;
right: 0;
top: 8px;
}
div#login-container label.switch.switch-primary {
/* background: #f99; */
margin: 12px auto;
width: 65px;
text-align: center;
margin: 15px auto;
/* float: none; */
display: block;
}
div#login-container .g-recaptcha {
text-align: center;
background: #fff !important;
}
div#login-container .g-recaptcha > div {
margin: 0 !important;
width: 100% !important;
}
.login-wrapper {
position: absolute;
height: 100% !important;
width: 100% !important;
display: block;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
background-size: cover !important;
background-position: center !important;
}
.login-wrapper .form-group .input-group {
display: block;
}
.login-wrapper .form-group .input-group .form-control {
background: transparent;
border-bottom: 3px solid #303132 !important;
color: #fff !important;
border-radius: 0;
}
.login-wrapper button.btn.btn-sm.btn-primary {
background: #303132;
border: 0;
display: block;
width: 100%;
padding: 12px;
font-weight: bold;
font-size: 1.2em;
transition: all 0.3s ease;
}
.login-wrapper button.btn.btn-sm.btn-primary:hover {
background: #841523;
}
.login-wrapper .block {
background: transparent !important;
}
.login-wrapper .block div {
background: transparent !important;
}
.login-wrapper #login-container .login-title {
background: transparent;
padding: 0;
}
.login-wrapper #login-container .login-title small {
font-size: 12px;
}
.login-wrapper:after {
content: "";
width: 100%;
position: absolute;
height: 100%;
background: rgba(0, 0, 0, 0.6);
}
.login-wrapper .copyright a {
color: #fff;
font-size: 0.9em;
display: block;
padding: 10px;
text-align: center;
text-decoration: none;
}
.login-wrapper .switch-primary span {
background: #868686;
border: 0;
}
.login-wrapper .switch-primary input:checked + span {
background: #303132;
}
.login-wrapper .has-error .help-block {
color: #fff;
display: block;
text-align: center;
font-size: 0.9em;
}
.login-wrapper .rc-anchor-normal {
width: 100% !important;
}
.login-wrapper .rc-anchor-light.rc-anchor-normal {
width: 100% !important;
border-radius: 0 !important;
} | 0.274351 | 0.055541 |
@import "https://fonts.googleapis.com/css?family=Droid+Serif|Open+Sans:400,700";
*,
*::after,
*::before {
box-sizing: inherit
}
* {
font: inherit
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
hr {
padding: 0;
margin: 0;
border: 0
}
html {
box-sizing: border-box
}
body {
background-color: #fff;
background-color: var(--color-bg, white)
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main,
form legend {
display: block
}
ol,
ul {
list-style: none
}
blockquote,
q {
quotes: none
}
button,
input,
textarea,
select {
margin: 0
}
.btn,
.form-control,
.link,
.reset {
padding: 0;
line-height: inherit;
color: inherit;
background-color: transparent;
border: 0;
border-radius: 0;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none
}
select.form-control::-ms-expand {
display: none
}
textarea {
overflow: auto;
vertical-align: top;
resize: vertical
}
input::-ms-clear {
display: none
}
table {
border-spacing: 0;
border-collapse: collapse
}
img,
video,
svg {
max-width: 100%
}
[data-theme] {
color: #313135;
color: var(--color-contrast-high, #313135);
background-color: #fff;
background-color: var(--color-bg, #fff)
}
:root {
--space-unit: 1em;
--space-xxxxs: calc(0.125*var(--space-unit));
--space-xxxs: calc(0.25*var(--space-unit));
--space-xxs: calc(0.375*var(--space-unit));
--space-xs: calc(0.5*var(--space-unit));
--space-sm: calc(0.75*var(--space-unit));
--space-md: calc(1.25*var(--space-unit));
--space-lg: calc(2*var(--space-unit));
--space-xl: calc(3.25*var(--space-unit));
--space-xxl: calc(5.25*var(--space-unit));
--space-xxxl: calc(8.5*var(--space-unit));
--space-xxxxl: calc(13.75*var(--space-unit));
--component-padding: var(--space-md)
}
:root {
--max-width-xxs: 32rem;
--max-width-xs: 38rem;
--max-width-sm: 48rem;
--max-width-md: 64rem;
--max-width-lg: 80rem;
--max-width-xl: 90rem;
--max-width-xxl: 120rem
}
.container {
width: calc(100% - 1.25em);
width: calc(100% - 2*var(--component-padding));
margin-right: auto;
margin-left: auto
}
.max-width-xxs {
max-width: 32rem;
max-width: var(--max-width-xxs)
}
.max-width-xs {
max-width: 38rem;
max-width: var(--max-width-xs)
}
.max-width-sm {
max-width: 48rem;
max-width: var(--max-width-sm)
}
.max-width-md {
max-width: 64rem;
max-width: var(--max-width-md)
}
.max-width-lg {
max-width: 80rem;
max-width: var(--max-width-lg)
}
.max-width-xl {
max-width: 90rem;
max-width: var(--max-width-xl)
}
.max-width-xxl {
max-width: 120rem;
max-width: var(--max-width-xxl)
}
.max-width-adaptive-sm {
max-width: 38rem;
max-width: var(--max-width-xs)
}
@media (min-width: 64rem) {
.max-width-adaptive-sm {
max-width: 48rem;
max-width: var(--max-width-sm)
}
}
.max-width-adaptive-md {
max-width: 38rem;
max-width: var(--max-width-xs)
}
@media (min-width: 64rem) {
.max-width-adaptive-md {
max-width: 64rem;
max-width: var(--max-width-md)
}
}
.max-width-adaptive,
.max-width-adaptive-lg {
max-width: 38rem;
max-width: var(--max-width-xs)
}
@media (min-width: 64rem) {
.max-width-adaptive,
.max-width-adaptive-lg {
max-width: 64rem;
max-width: var(--max-width-md)
}
}
@media (min-width: 90rem) {
.max-width-adaptive,
.max-width-adaptive-lg {
max-width: 80rem;
max-width: var(--max-width-lg)
}
}
.max-width-adaptive-xl {
max-width: 38rem;
max-width: var(--max-width-xs)
}
@media (min-width: 64rem) {
.max-width-adaptive-xl {
max-width: 64rem;
max-width: var(--max-width-md)
}
}
@media (min-width: 90rem) {
.max-width-adaptive-xl {
max-width: 90rem;
max-width: var(--max-width-xl)
}
}
.grid {
--grid-gap: 0px;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.grid >* {
-ms-flex-preferred-size: 100%;
flex-basis: 100%
}
[class*=grid-gap] {
margin-right: 1em * -1;
margin-right: calc(var(--grid-gap, 1em) *-1);
margin-bottom: 1em * -1;
margin-bottom: calc(var(--grid-gap, 1em) *-1)
}
[class*=grid-gap] >* {
margin-right: 1em;
margin-right: var(--grid-gap, 1em);
margin-bottom: 1em;
margin-bottom: var(--grid-gap, 1em)
}
.grid-gap-xxxxs {
--grid-gap: var(--space-xxxxs)
}
.grid-gap-xxxs {
--grid-gap: var(--space-xxxs)
}
.grid-gap-xxs {
--grid-gap: var(--space-xxs)
}
.grid-gap-xs {
--grid-gap: var(--space-xs)
}
.grid-gap-sm {
--grid-gap: var(--space-sm)
}
.grid-gap-md {
--grid-gap: var(--space-md)
}
.grid-gap-lg {
--grid-gap: var(--space-lg)
}
.grid-gap-xl {
--grid-gap: var(--space-xl)
}
.grid-gap-xxl {
--grid-gap: var(--space-xxl)
}
.grid-gap-xxxl {
--grid-gap: var(--space-xxxl)
}
.grid-gap-xxxxl {
--grid-gap: var(--space-xxxxl)
}
.col {
flex-basis: 0;
flex-grow: 1;
max-width: 100%;
-ms-flex-positive: 1;
-ms-flex-preferred-size: 0
}
.col-1 {
-ms-flex-preferred-size: calc(8.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(8.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(8.33% - 0.01px - 1em);
flex-basis: calc(8.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(8.33% - 0.01px - 1em);
max-width: calc(8.33% - 0.01px - var(--grid-gap, 1em))
}
.col-2 {
-ms-flex-preferred-size: calc(16.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(16.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(16.66% - 0.01px - 1em);
flex-basis: calc(16.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(16.66% - 0.01px - 1em);
max-width: calc(16.66% - 0.01px - var(--grid-gap, 1em))
}
.col-3 {
-ms-flex-preferred-size: calc(25% - 0.01px - 1em);
-ms-flex-preferred-size: calc(25% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(25% - 0.01px - 1em);
flex-basis: calc(25% - 0.01px - var(--grid-gap, 1em));
max-width: calc(25% - 0.01px - 1em);
max-width: calc(25% - 0.01px - var(--grid-gap, 1em))
}
.col-4 {
-ms-flex-preferred-size: calc(33.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(33.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(33.33% - 0.01px - 1em);
flex-basis: calc(33.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(33.33% - 0.01px - 1em);
max-width: calc(33.33% - 0.01px - var(--grid-gap, 1em))
}
.col-5 {
-ms-flex-preferred-size: calc(41.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(41.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(41.66% - 0.01px - 1em);
flex-basis: calc(41.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(41.66% - 0.01px - 1em);
max-width: calc(41.66% - 0.01px - var(--grid-gap, 1em))
}
.col-6 {
-ms-flex-preferred-size: calc(50% - 0.01px - 1em);
-ms-flex-preferred-size: calc(50% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(50% - 0.01px - 1em);
flex-basis: calc(50% - 0.01px - var(--grid-gap, 1em));
max-width: calc(50% - 0.01px - 1em);
max-width: calc(50% - 0.01px - var(--grid-gap, 1em))
}
.col-7 {
-ms-flex-preferred-size: calc(58.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(58.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(58.33% - 0.01px - 1em);
flex-basis: calc(58.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(58.33% - 0.01px - 1em);
max-width: calc(58.33% - 0.01px - var(--grid-gap, 1em))
}
.col-8 {
-ms-flex-preferred-size: calc(66.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(66.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(66.66% - 0.01px - 1em);
flex-basis: calc(66.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(66.66% - 0.01px - 1em);
max-width: calc(66.66% - 0.01px - var(--grid-gap, 1em))
}
.col-9 {
-ms-flex-preferred-size: calc(75% - 0.01px - 1em);
-ms-flex-preferred-size: calc(75% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(75% - 0.01px - 1em);
flex-basis: calc(75% - 0.01px - var(--grid-gap, 1em));
max-width: calc(75% - 0.01px - 1em);
max-width: calc(75% - 0.01px - var(--grid-gap, 1em))
}
.col-10 {
-ms-flex-preferred-size: calc(83.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(83.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(83.33% - 0.01px - 1em);
flex-basis: calc(83.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(83.33% - 0.01px - 1em);
max-width: calc(83.33% - 0.01px - var(--grid-gap, 1em))
}
.col-11 {
-ms-flex-preferred-size: calc(91.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(91.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(91.66% - 0.01px - 1em);
flex-basis: calc(91.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(91.66% - 0.01px - 1em);
max-width: calc(91.66% - 0.01px - var(--grid-gap, 1em))
}
.col-12 {
-ms-flex-preferred-size: calc(100% - 0.01px - 1em);
-ms-flex-preferred-size: calc(100% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(100% - 0.01px - 1em);
flex-basis: calc(100% - 0.01px - var(--grid-gap, 1em));
max-width: calc(100% - 0.01px - 1em);
max-width: calc(100% - 0.01px - var(--grid-gap, 1em))
}
@media (min-width: 32rem) {
.col\@xs {
flex-basis: 0;
flex-grow: 1;
max-width: 100%;
-ms-flex-positive: 1;
-ms-flex-preferred-size: 0
}
.col-1\@xs {
-ms-flex-preferred-size: calc(8.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(8.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(8.33% - 0.01px - 1em);
flex-basis: calc(8.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(8.33% - 0.01px - 1em);
max-width: calc(8.33% - 0.01px - var(--grid-gap, 1em))
}
.col-2\@xs {
-ms-flex-preferred-size: calc(16.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(16.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(16.66% - 0.01px - 1em);
flex-basis: calc(16.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(16.66% - 0.01px - 1em);
max-width: calc(16.66% - 0.01px - var(--grid-gap, 1em))
}
.col-3\@xs {
-ms-flex-preferred-size: calc(25% - 0.01px - 1em);
-ms-flex-preferred-size: calc(25% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(25% - 0.01px - 1em);
flex-basis: calc(25% - 0.01px - var(--grid-gap, 1em));
max-width: calc(25% - 0.01px - 1em);
max-width: calc(25% - 0.01px - var(--grid-gap, 1em))
}
.col-4\@xs {
-ms-flex-preferred-size: calc(33.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(33.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(33.33% - 0.01px - 1em);
flex-basis: calc(33.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(33.33% - 0.01px - 1em);
max-width: calc(33.33% - 0.01px - var(--grid-gap, 1em))
}
.col-5\@xs {
-ms-flex-preferred-size: calc(41.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(41.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(41.66% - 0.01px - 1em);
flex-basis: calc(41.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(41.66% - 0.01px - 1em);
max-width: calc(41.66% - 0.01px - var(--grid-gap, 1em))
}
.col-6\@xs {
-ms-flex-preferred-size: calc(50% - 0.01px - 1em);
-ms-flex-preferred-size: calc(50% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(50% - 0.01px - 1em);
flex-basis: calc(50% - 0.01px - var(--grid-gap, 1em));
max-width: calc(50% - 0.01px - 1em);
max-width: calc(50% - 0.01px - var(--grid-gap, 1em))
}
.col-7\@xs {
-ms-flex-preferred-size: calc(58.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(58.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(58.33% - 0.01px - 1em);
flex-basis: calc(58.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(58.33% - 0.01px - 1em);
max-width: calc(58.33% - 0.01px - var(--grid-gap, 1em))
}
.col-8\@xs {
-ms-flex-preferred-size: calc(66.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(66.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(66.66% - 0.01px - 1em);
flex-basis: calc(66.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(66.66% - 0.01px - 1em);
max-width: calc(66.66% - 0.01px - var(--grid-gap, 1em))
}
.col-9\@xs {
-ms-flex-preferred-size: calc(75% - 0.01px - 1em);
-ms-flex-preferred-size: calc(75% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(75% - 0.01px - 1em);
flex-basis: calc(75% - 0.01px - var(--grid-gap, 1em));
max-width: calc(75% - 0.01px - 1em);
max-width: calc(75% - 0.01px - var(--grid-gap, 1em))
}
.col-10\@xs {
-ms-flex-preferred-size: calc(83.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(83.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(83.33% - 0.01px - 1em);
flex-basis: calc(83.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(83.33% - 0.01px - 1em);
max-width: calc(83.33% - 0.01px - var(--grid-gap, 1em))
}
.col-11\@xs {
-ms-flex-preferred-size: calc(91.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(91.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(91.66% - 0.01px - 1em);
flex-basis: calc(91.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(91.66% - 0.01px - 1em);
max-width: calc(91.66% - 0.01px - var(--grid-gap, 1em))
}
.col-12\@xs {
-ms-flex-preferred-size: calc(100% - 0.01px - 1em);
-ms-flex-preferred-size: calc(100% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(100% - 0.01px - 1em);
flex-basis: calc(100% - 0.01px - var(--grid-gap, 1em));
max-width: calc(100% - 0.01px - 1em);
max-width: calc(100% - 0.01px - var(--grid-gap, 1em))
}
}
@media (min-width: 48rem) {
.col\@sm {
flex-basis: 0;
flex-grow: 1;
max-width: 100%;
-ms-flex-positive: 1;
-ms-flex-preferred-size: 0
}
.col-1\@sm {
-ms-flex-preferred-size: calc(8.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(8.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(8.33% - 0.01px - 1em);
flex-basis: calc(8.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(8.33% - 0.01px - 1em);
max-width: calc(8.33% - 0.01px - var(--grid-gap, 1em))
}
.col-2\@sm {
-ms-flex-preferred-size: calc(16.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(16.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(16.66% - 0.01px - 1em);
flex-basis: calc(16.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(16.66% - 0.01px - 1em);
max-width: calc(16.66% - 0.01px - var(--grid-gap, 1em))
}
.col-3\@sm {
-ms-flex-preferred-size: calc(25% - 0.01px - 1em);
-ms-flex-preferred-size: calc(25% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(25% - 0.01px - 1em);
flex-basis: calc(25% - 0.01px - var(--grid-gap, 1em));
max-width: calc(25% - 0.01px - 1em);
max-width: calc(25% - 0.01px - var(--grid-gap, 1em))
}
.col-4\@sm {
-ms-flex-preferred-size: calc(33.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(33.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(33.33% - 0.01px - 1em);
flex-basis: calc(33.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(33.33% - 0.01px - 1em);
max-width: calc(33.33% - 0.01px - var(--grid-gap, 1em))
}
.col-5\@sm {
-ms-flex-preferred-size: calc(41.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(41.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(41.66% - 0.01px - 1em);
flex-basis: calc(41.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(41.66% - 0.01px - 1em);
max-width: calc(41.66% - 0.01px - var(--grid-gap, 1em))
}
.col-6\@sm {
-ms-flex-preferred-size: calc(50% - 0.01px - 1em);
-ms-flex-preferred-size: calc(50% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(50% - 0.01px - 1em);
flex-basis: calc(50% - 0.01px - var(--grid-gap, 1em));
max-width: calc(50% - 0.01px - 1em);
max-width: calc(50% - 0.01px - var(--grid-gap, 1em))
}
.col-7\@sm {
-ms-flex-preferred-size: calc(58.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(58.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(58.33% - 0.01px - 1em);
flex-basis: calc(58.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(58.33% - 0.01px - 1em);
max-width: calc(58.33% - 0.01px - var(--grid-gap, 1em))
}
.col-8\@sm {
-ms-flex-preferred-size: calc(66.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(66.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(66.66% - 0.01px - 1em);
flex-basis: calc(66.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(66.66% - 0.01px - 1em);
max-width: calc(66.66% - 0.01px - var(--grid-gap, 1em))
}
.col-9\@sm {
-ms-flex-preferred-size: calc(75% - 0.01px - 1em);
-ms-flex-preferred-size: calc(75% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(75% - 0.01px - 1em);
flex-basis: calc(75% - 0.01px - var(--grid-gap, 1em));
max-width: calc(75% - 0.01px - 1em);
max-width: calc(75% - 0.01px - var(--grid-gap, 1em))
}
.col-10\@sm {
-ms-flex-preferred-size: calc(83.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(83.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(83.33% - 0.01px - 1em);
flex-basis: calc(83.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(83.33% - 0.01px - 1em);
max-width: calc(83.33% - 0.01px - var(--grid-gap, 1em))
}
.col-11\@sm {
-ms-flex-preferred-size: calc(91.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(91.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(91.66% - 0.01px - 1em);
flex-basis: calc(91.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(91.66% - 0.01px - 1em);
max-width: calc(91.66% - 0.01px - var(--grid-gap, 1em))
}
.col-12\@sm {
-ms-flex-preferred-size: calc(100% - 0.01px - 1em);
-ms-flex-preferred-size: calc(100% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(100% - 0.01px - 1em);
flex-basis: calc(100% - 0.01px - var(--grid-gap, 1em));
max-width: calc(100% - 0.01px - 1em);
max-width: calc(100% - 0.01px - var(--grid-gap, 1em))
}
}
@media (min-width: 64rem) {
.col\@md {
flex-basis: 0;
flex-grow: 1;
max-width: 100%;
-ms-flex-positive: 1;
-ms-flex-preferred-size: 0
}
.col-1\@md {
-ms-flex-preferred-size: calc(8.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(8.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(8.33% - 0.01px - 1em);
flex-basis: calc(8.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(8.33% - 0.01px - 1em);
max-width: calc(8.33% - 0.01px - var(--grid-gap, 1em))
}
.col-2\@md {
-ms-flex-preferred-size: calc(16.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(16.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(16.66% - 0.01px - 1em);
flex-basis: calc(16.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(16.66% - 0.01px - 1em);
max-width: calc(16.66% - 0.01px - var(--grid-gap, 1em))
}
.col-3\@md {
-ms-flex-preferred-size: calc(25% - 0.01px - 1em);
-ms-flex-preferred-size: calc(25% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(25% - 0.01px - 1em);
flex-basis: calc(25% - 0.01px - var(--grid-gap, 1em));
max-width: calc(25% - 0.01px - 1em);
max-width: calc(25% - 0.01px - var(--grid-gap, 1em))
}
.col-4\@md {
-ms-flex-preferred-size: calc(33.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(33.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(33.33% - 0.01px - 1em);
flex-basis: calc(33.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(33.33% - 0.01px - 1em);
max-width: calc(33.33% - 0.01px - var(--grid-gap, 1em))
}
.col-5\@md {
-ms-flex-preferred-size: calc(41.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(41.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(41.66% - 0.01px - 1em);
flex-basis: calc(41.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(41.66% - 0.01px - 1em);
max-width: calc(41.66% - 0.01px - var(--grid-gap, 1em))
}
.col-6\@md {
-ms-flex-preferred-size: calc(50% - 0.01px - 1em);
-ms-flex-preferred-size: calc(50% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(50% - 0.01px - 1em);
flex-basis: calc(50% - 0.01px - var(--grid-gap, 1em));
max-width: calc(50% - 0.01px - 1em);
max-width: calc(50% - 0.01px - var(--grid-gap, 1em))
}
.col-7\@md {
-ms-flex-preferred-size: calc(58.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(58.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(58.33% - 0.01px - 1em);
flex-basis: calc(58.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(58.33% - 0.01px - 1em);
max-width: calc(58.33% - 0.01px - var(--grid-gap, 1em))
}
.col-8\@md {
-ms-flex-preferred-size: calc(66.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(66.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(66.66% - 0.01px - 1em);
flex-basis: calc(66.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(66.66% - 0.01px - 1em);
max-width: calc(66.66% - 0.01px - var(--grid-gap, 1em))
}
.col-9\@md {
-ms-flex-preferred-size: calc(75% - 0.01px - 1em);
-ms-flex-preferred-size: calc(75% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(75% - 0.01px - 1em);
flex-basis: calc(75% - 0.01px - var(--grid-gap, 1em));
max-width: calc(75% - 0.01px - 1em);
max-width: calc(75% - 0.01px - var(--grid-gap, 1em))
}
.col-10\@md {
-ms-flex-preferred-size: calc(83.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(83.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(83.33% - 0.01px - 1em);
flex-basis: calc(83.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(83.33% - 0.01px - 1em);
max-width: calc(83.33% - 0.01px - var(--grid-gap, 1em))
}
.col-11\@md {
-ms-flex-preferred-size: calc(91.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(91.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(91.66% - 0.01px - 1em);
flex-basis: calc(91.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(91.66% - 0.01px - 1em);
max-width: calc(91.66% - 0.01px - var(--grid-gap, 1em))
}
.col-12\@md {
-ms-flex-preferred-size: calc(100% - 0.01px - 1em);
-ms-flex-preferred-size: calc(100% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(100% - 0.01px - 1em);
flex-basis: calc(100% - 0.01px - var(--grid-gap, 1em));
max-width: calc(100% - 0.01px - 1em);
max-width: calc(100% - 0.01px - var(--grid-gap, 1em))
}
}
@media (min-width: 80rem) {
.col\@lg {
flex-basis: 0;
flex-grow: 1;
max-width: 100%;
-ms-flex-positive: 1;
-ms-flex-preferred-size: 0
}
.col-1\@lg {
-ms-flex-preferred-size: calc(8.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(8.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(8.33% - 0.01px - 1em);
flex-basis: calc(8.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(8.33% - 0.01px - 1em);
max-width: calc(8.33% - 0.01px - var(--grid-gap, 1em))
}
.col-2\@lg {
-ms-flex-preferred-size: calc(16.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(16.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(16.66% - 0.01px - 1em);
flex-basis: calc(16.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(16.66% - 0.01px - 1em);
max-width: calc(16.66% - 0.01px - var(--grid-gap, 1em))
}
.col-3\@lg {
-ms-flex-preferred-size: calc(25% - 0.01px - 1em);
-ms-flex-preferred-size: calc(25% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(25% - 0.01px - 1em);
flex-basis: calc(25% - 0.01px - var(--grid-gap, 1em));
max-width: calc(25% - 0.01px - 1em);
max-width: calc(25% - 0.01px - var(--grid-gap, 1em))
}
.col-4\@lg {
-ms-flex-preferred-size: calc(33.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(33.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(33.33% - 0.01px - 1em);
flex-basis: calc(33.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(33.33% - 0.01px - 1em);
max-width: calc(33.33% - 0.01px - var(--grid-gap, 1em))
}
.col-5\@lg {
-ms-flex-preferred-size: calc(41.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(41.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(41.66% - 0.01px - 1em);
flex-basis: calc(41.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(41.66% - 0.01px - 1em);
max-width: calc(41.66% - 0.01px - var(--grid-gap, 1em))
}
.col-6\@lg {
-ms-flex-preferred-size: calc(50% - 0.01px - 1em);
-ms-flex-preferred-size: calc(50% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(50% - 0.01px - 1em);
flex-basis: calc(50% - 0.01px - var(--grid-gap, 1em));
max-width: calc(50% - 0.01px - 1em);
max-width: calc(50% - 0.01px - var(--grid-gap, 1em))
}
.col-7\@lg {
-ms-flex-preferred-size: calc(58.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(58.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(58.33% - 0.01px - 1em);
flex-basis: calc(58.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(58.33% - 0.01px - 1em);
max-width: calc(58.33% - 0.01px - var(--grid-gap, 1em))
}
.col-8\@lg {
-ms-flex-preferred-size: calc(66.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(66.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(66.66% - 0.01px - 1em);
flex-basis: calc(66.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(66.66% - 0.01px - 1em);
max-width: calc(66.66% - 0.01px - var(--grid-gap, 1em))
}
.col-9\@lg {
-ms-flex-preferred-size: calc(75% - 0.01px - 1em);
-ms-flex-preferred-size: calc(75% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(75% - 0.01px - 1em);
flex-basis: calc(75% - 0.01px - var(--grid-gap, 1em));
max-width: calc(75% - 0.01px - 1em);
max-width: calc(75% - 0.01px - var(--grid-gap, 1em))
}
.col-10\@lg {
-ms-flex-preferred-size: calc(83.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(83.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(83.33% - 0.01px - 1em);
flex-basis: calc(83.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(83.33% - 0.01px - 1em);
max-width: calc(83.33% - 0.01px - var(--grid-gap, 1em))
}
.col-11\@lg {
-ms-flex-preferred-size: calc(91.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(91.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(91.66% - 0.01px - 1em);
flex-basis: calc(91.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(91.66% - 0.01px - 1em);
max-width: calc(91.66% - 0.01px - var(--grid-gap, 1em))
}
.col-12\@lg {
-ms-flex-preferred-size: calc(100% - 0.01px - 1em);
-ms-flex-preferred-size: calc(100% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(100% - 0.01px - 1em);
flex-basis: calc(100% - 0.01px - var(--grid-gap, 1em));
max-width: calc(100% - 0.01px - 1em);
max-width: calc(100% - 0.01px - var(--grid-gap, 1em))
}
}
@media (min-width: 90rem) {
.col\@xl {
flex-basis: 0;
flex-grow: 1;
max-width: 100%;
-ms-flex-positive: 1;
-ms-flex-preferred-size: 0
}
.col-1\@xl {
-ms-flex-preferred-size: calc(8.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(8.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(8.33% - 0.01px - 1em);
flex-basis: calc(8.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(8.33% - 0.01px - 1em);
max-width: calc(8.33% - 0.01px - var(--grid-gap, 1em))
}
.col-2\@xl {
-ms-flex-preferred-size: calc(16.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(16.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(16.66% - 0.01px - 1em);
flex-basis: calc(16.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(16.66% - 0.01px - 1em);
max-width: calc(16.66% - 0.01px - var(--grid-gap, 1em))
}
.col-3\@xl {
-ms-flex-preferred-size: calc(25% - 0.01px - 1em);
-ms-flex-preferred-size: calc(25% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(25% - 0.01px - 1em);
flex-basis: calc(25% - 0.01px - var(--grid-gap, 1em));
max-width: calc(25% - 0.01px - 1em);
max-width: calc(25% - 0.01px - var(--grid-gap, 1em))
}
.col-4\@xl {
-ms-flex-preferred-size: calc(33.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(33.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(33.33% - 0.01px - 1em);
flex-basis: calc(33.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(33.33% - 0.01px - 1em);
max-width: calc(33.33% - 0.01px - var(--grid-gap, 1em))
}
.col-5\@xl {
-ms-flex-preferred-size: calc(41.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(41.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(41.66% - 0.01px - 1em);
flex-basis: calc(41.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(41.66% - 0.01px - 1em);
max-width: calc(41.66% - 0.01px - var(--grid-gap, 1em))
}
.col-6\@xl {
-ms-flex-preferred-size: calc(50% - 0.01px - 1em);
-ms-flex-preferred-size: calc(50% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(50% - 0.01px - 1em);
flex-basis: calc(50% - 0.01px - var(--grid-gap, 1em));
max-width: calc(50% - 0.01px - 1em);
max-width: calc(50% - 0.01px - var(--grid-gap, 1em))
}
.col-7\@xl {
-ms-flex-preferred-size: calc(58.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(58.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(58.33% - 0.01px - 1em);
flex-basis: calc(58.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(58.33% - 0.01px - 1em);
max-width: calc(58.33% - 0.01px - var(--grid-gap, 1em))
}
.col-8\@xl {
-ms-flex-preferred-size: calc(66.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(66.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(66.66% - 0.01px - 1em);
flex-basis: calc(66.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(66.66% - 0.01px - 1em);
max-width: calc(66.66% - 0.01px - var(--grid-gap, 1em))
}
.col-9\@xl {
-ms-flex-preferred-size: calc(75% - 0.01px - 1em);
-ms-flex-preferred-size: calc(75% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(75% - 0.01px - 1em);
flex-basis: calc(75% - 0.01px - var(--grid-gap, 1em));
max-width: calc(75% - 0.01px - 1em);
max-width: calc(75% - 0.01px - var(--grid-gap, 1em))
}
.col-10\@xl {
-ms-flex-preferred-size: calc(83.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(83.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(83.33% - 0.01px - 1em);
flex-basis: calc(83.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(83.33% - 0.01px - 1em);
max-width: calc(83.33% - 0.01px - var(--grid-gap, 1em))
}
.col-11\@xl {
-ms-flex-preferred-size: calc(91.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(91.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(91.66% - 0.01px - 1em);
flex-basis: calc(91.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(91.66% - 0.01px - 1em);
max-width: calc(91.66% - 0.01px - var(--grid-gap, 1em))
}
.col-12\@xl {
-ms-flex-preferred-size: calc(100% - 0.01px - 1em);
-ms-flex-preferred-size: calc(100% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(100% - 0.01px - 1em);
flex-basis: calc(100% - 0.01px - var(--grid-gap, 1em));
max-width: calc(100% - 0.01px - 1em);
max-width: calc(100% - 0.01px - var(--grid-gap, 1em))
}
}
:root {
--radius-sm: calc(var(--radius, 0.25em)/2);
--radius-md: var(--radius, 0.25em);
--radius-lg: calc(var(--radius, 0.25em) *2);
--shadow-sm: 0 1px 2px rgba(0, 0, 0, .085), 0 1px 8px rgba(0, 0, 0, .1);
--shadow-md: 0 1px 8px rgba(0, 0, 0, .1), 0 8px 24px rgba(0, 0, 0, .15);
--shadow-lg: 0 1px 8px rgba(0, 0, 0, .1), 0 16px 48px rgba(0, 0, 0, .1), 0 24px 60px rgba(0, 0, 0, .1);
--bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
--ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
--ease-in: cubic-bezier(0.55, 0.055, 0.675, 0.19);
--ease-out: cubic-bezier(0.215, 0.61, 0.355, 1)
}
:root {
--body-line-height: 1.4;
--heading-line-height: 1.2
}
body {
font-family: 'droid serif', serif;
font-family: var(--font-primary, sans-serif);
font-size: 1em;
font-size: var(--text-base-size, 1em);
color: #313135;
color: var(--color-contrast-high, #313135)
}
h1,
h2,
h3,
h4 {
line-height: 1.2;
line-height: var(--heading-line-height, 1.2);
color: #1c1c21;
color: var(--color-contrast-higher, #1c1c21)
}
.text-xxxl {
font-size: 2.48832em;
font-size: var(--text-xxxl, 2.488em)
}
h1,
.text-xxl {
font-size: 2.0736em;
font-size: var(--text-xxl, 2.074em)
}
h2,
.text-xl {
font-size: 1.728em;
font-size: var(--text-xl, 1.728em)
}
h3,
.text-lg {
font-size: 1.44em;
font-size: var(--text-lg, 1.44em)
}
h4,
.text-md {
font-size: 1.2em;
font-size: var(--text-md, 1.2em)
}
small,
.text-sm {
font-size: .83333em;
font-size: var(--text-sm, 0.833em)
}
.text-xs {
font-size: .69444em;
font-size: var(--text-xs, 0.694em)
}
a,
.link {
color: #2a6df4;
color: var(--color-primary, #2a6df4);
text-decoration: underline
}
strong,
.text-bold {
font-weight: 700
}
s {
text-decoration: line-through
}
u,
.text-underline {
text-decoration: underline
}
.text-component {
--component-body-line-height: calc(var(--body-line-height) *var(--line-height-multiplier, 1));
--component-heading-line-height: calc(var(--heading-line-height) *var(--line-height-multiplier, 1))
}
.text-component h1,
.text-component h2,
.text-component h3,
.text-component h4 {
margin-bottom: .25em;
margin-bottom: calc(var(--space-xxxs) *var(--text-vspace-multiplier, 1));
line-height: 1.2;
line-height: var(--component-heading-line-height, 1.2)
}
.text-component h2,
.text-component h3,
.text-component h4 {
margin-top: .75em;
margin-top: calc(var(--space-sm) *var(--text-vspace-multiplier, 1))
}
.text-component p,
.text-component blockquote,
.text-component ul li,
.text-component ol li {
line-height: 1.4;
line-height: var(--component-body-line-height)
}
.text-component ul,
.text-component ol,
.text-component p,
.text-component blockquote,
.text-component .text-component__block {
margin-bottom: .75em;
margin-bottom: calc(var(--space-sm) *var(--text-vspace-multiplier, 1))
}
.text-component ul,
.text-component ol {
padding-left: 1em
}
.text-component ul {
list-style-type: disc
}
.text-component ol {
list-style-type: decimal
}
.text-component img {
display: block;
margin: 0 auto
}
.text-component figcaption {
margin-top: .5em;
margin-top: var(--space-xs);
text-align: center
}
.text-component em {
font-style: italic
}
.text-component hr {
margin-top: 2em;
margin-top: calc(var(--space-lg) *var(--text-vspace-multiplier, 1));
margin-right: auto;
margin-bottom: 2em;
margin-bottom: calc(var(--space-lg) *var(--text-vspace-multiplier, 1));
margin-left: auto
}
.text-component >*:first-child {
margin-top: 0
}
.text-component >*:last-child {
margin-bottom: 0
}
.text-component__block--full-width {
width: 100vw;
margin-left: calc(50% - 50vw)
}
@media (min-width: 48rem) {
.text-component__block--left,
.text-component__block--right {
width: 45%
}
.text-component__block--left img,
.text-component__block--right img {
width: 100%
}
.text-component__block--left {
float: left;
margin-right: .75em;
margin-right: calc(var(--space-sm) *var(--text-vspace-multiplier, 1))
}
.text-component__block--right {
float: right;
margin-left: .75em;
margin-left: calc(var(--space-sm) *var(--text-vspace-multiplier, 1))
}
}
@media (min-width: 90rem) {
.text-component__block--outset {
width: calc(100% + 10.5em);
width: calc(100% + 2*var(--space-xxl))
}
.text-component__block--outset img {
width: 100%
}
.text-component__block--outset:not(.text-component__block--right) {
margin-left: -5.25em;
margin-left: calc(-1*var(--space-xxl))
}
.text-component__block--left,
.text-component__block--right {
width: 50%
}
.text-component__block--right.text-component__block--outset {
margin-right: -5.25em;
margin-right: calc(-1*var(--space-xxl))
}
}
:root {
--icon-xxs: 12px;
--icon-xs: 16px;
--icon-sm: 24px;
--icon-md: 32px;
--icon-lg: 48px;
--icon-xl: 64px;
--icon-xxl: 128px
}
.icon {
display: inline-block;
width: 1em;
height: 1em;
line-height: 1;
color: inherit;
fill: currentColor;
-ms-flex-negative: 0;
flex-shrink: 0
}
.icon--xxs {
font-size: 12px;
font-size: var(--icon-xxs)
}
.icon--xs {
font-size: 16px;
font-size: var(--icon-xs)
}
.icon--sm {
font-size: 24px;
font-size: var(--icon-sm)
}
.icon--md {
font-size: 32px;
font-size: var(--icon-md)
}
.icon--lg {
font-size: 48px;
font-size: var(--icon-lg)
}
.icon--xl {
font-size: 64px;
font-size: var(--icon-xl)
}
.icon--xxl {
font-size: 128px;
font-size: var(--icon-xxl)
}
.icon--is-spinning {
-webkit-animation: icon-spin 1s infinite linear;
animation: icon-spin 1s infinite linear
}
@-webkit-keyframes icon-spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg)
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg)
}
}
@keyframes icon-spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg)
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg)
}
}
.icon use {
color: inherit;
fill: currentColor
}
.btn {
position: relative;
display: -ms-inline-flexbox;
display: inline-flex;
-ms-flex-align: center;
-ms-flex-pack: center;
align-items: center;
justify-content: center;
padding-top: .5em;
padding-top: var(--btn-padding-y, 0.5em);
padding-right: .75em;
padding-right: var(--btn-padding-x, 0.75em);
padding-bottom: .5em;
padding-bottom: var(--btn-padding-y, 0.5em);
padding-left: .75em;
padding-left: var(--btn-padding-x, 0.75em);
font-size: 1em;
font-size: var(--btn-font-size, 1em);
line-height: 1;
text-decoration: none;
white-space: nowrap;
border-radius: .25em;
border-radius: var(--btn-radius, 0.25em)
}
.btn--primary {
color: #fff;
color: var(--color-white, #fff);
background-color: #2a6df4;
background-color: var(--color-primary, #2a6df4)
}
.btn--subtle {
color: #1c1c21;
color: var(--color-contrast-higher, #1c1c21);
background-color: #d3d3d4;
background-color: var(--color-contrast-low, #d3d3d4)
}
.btn--accent {
color: #fff;
color: var(--color-white, #fff);
background-color: #f54251;
background-color: var(--color-accent, #f54251)
}
.btn--disabled {
cursor: not-allowed
}
.btn--sm {
font-size: .8em;
font-size: var(--btn-font-size-sm, 0.8em)
}
.btn--md {
font-size: 1.2em;
font-size: var(--btn-font-size-md, 1.2em)
}
.btn--lg {
font-size: 1.4em;
font-size: var(--btn-font-size-lg, 1.4em)
}
.btn--icon {
padding: .5em;
padding: var(--btn-padding-y, 0.5em)
}
.form-control {
padding-top: .5em;
padding-top: var(--form-control-padding-y, 0.5em);
padding-right: .75em;
padding-right: var(--form-control-padding-x, 0.75em);
padding-bottom: .5em;
padding-bottom: var(--form-control-padding-y, 0.5em);
padding-left: .75em;
padding-left: var(--form-control-padding-x, 0.75em);
background-color: #fff;
background-color: var(--color-bg, #f2f2f2);
border-radius: .25em;
border-radius: var(--form-control-radius, 0.25em)
}
.form-control::-webkit-input-placeholder {
color: #79797c;
color: var(--color-contrast-medium, #79797c)
}
.form-control::-moz-placeholder {
color: #79797c;
color: var(--color-contrast-medium, #79797c);
opacity: 1
}
.form-control:-ms-input-placeholder {
color: #79797c;
color: var(--color-contrast-medium, #79797c)
}
.form-control:-moz-placeholder {
color: #79797c;
color: var(--color-contrast-medium, #79797c)
}
.form-control[disabled],
.form-control[readonly] {
cursor: not-allowed
}
.form-legend {
margin-bottom: .375em;
margin-bottom: var(--space-xxs);
font-size: 1.2em;
font-size: var(--text-md, 1.2em);
line-height: 1.2;
color: #1c1c21;
color: var(--color-contrast-higher, #1c1c21)
}
.form-label {
display: inline-block
}
.form__msg-error {
position: absolute;
padding: .5em;
padding: var(--space-xs);
margin-top: .75em;
margin-top: var(--space-sm);
clip: rect(1px, 1px, 1px, 1px);
font-size: .83333em;
font-size: var(--text-sm, 0.833em);
color: #fff;
color: var(--color-white, #fff);
background-color: #f54251;
background-color: var(--color-error, #f54251);
border-radius: .25em;
border-radius: var(--radius-md, 0.25em);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale
}
.form__msg-error::before {
position: absolute;
top: 0;
left: .75em;
left: var(--space-sm);
width: 0;
height: 0;
content: '';
border: 8px solid transparent;
border-bottom-color: #f54251;
border-bottom-color: var(--color-error);
-webkit-transform: translateY(-100%);
-ms-transform: translateY(-100%);
transform: translateY(-100%)
}
.form__msg-error--is-visible {
position: relative;
clip: auto
}
.radio-list >*,
.checkbox-list >* {
position: relative;
display: -ms-flexbox;
display: flex;
-ms-flex-align: baseline;
align-items: baseline;
margin-bottom: .375em;
margin-bottom: var(--space-xxs)
}
.radio-list >*:last-of-type,
.checkbox-list >*:last-of-type {
margin-bottom: 0
}
.radio-list label,
.checkbox-list label {
line-height: 1.4;
line-height: var(--body-line-height);
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none
}
.radio-list input,
.checkbox-list input {
margin-right: .25em;
margin-right: var(--space-xxxs);
vertical-align: top;
-ms-flex-negative: 0;
flex-shrink: 0
}
:root {
--zindex-header: 2;
--zindex-popover: 5;
--zindex-fixed-element: 10;
--zindex-overlay: 15
}
@media not all and (min-width: 32rem) {
.display\@xs {
display: none !important
}
}
@media (min-width: 32rem) {
.hide\@xs {
display: none !important
}
}
@media not all and (min-width: 48rem) {
.display\@sm {
display: none !important
}
}
@media (min-width: 48rem) {
.hide\@sm {
display: none !important
}
}
@media not all and (min-width: 64rem) {
.display\@md {
display: none !important
}
}
@media (min-width: 64rem) {
.hide\@md {
display: none !important
}
}
@media not all and (min-width: 80rem) {
.display\@lg {
display: none !important
}
}
@media (min-width: 80rem) {
.hide\@lg {
display: none !important
}
}
@media not all and (min-width: 90rem) {
.display\@xl {
display: none !important
}
}
@media (min-width: 90rem) {
.hide\@xl {
display: none !important
}
}
:root {
--display: block
}
.is-visible {
display: block !important;
display: var(--display) !important
}
.is-hidden {
display: none !important
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
overflow: hidden;
clip: rect(1px, 1px, 1px, 1px);
white-space: nowrap;
border: 0;
-webkit-clip-path: inset(50%);
clip-path: inset(50%)
}
.flex {
display: -ms-flexbox;
display: flex
}
.inline-flex {
display: -ms-inline-flexbox;
display: inline-flex
}
.flex-wrap {
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.flex-column {
-ms-flex-direction: column;
flex-direction: column
}
.flex-row {
-ms-flex-direction: row;
flex-direction: row
}
.flex-center {
-ms-flex-align: center;
-ms-flex-pack: center;
align-items: center;
justify-content: center
}
.justify-start {
-ms-flex-pack: start;
justify-content: flex-start
}
.justify-end {
-ms-flex-pack: end;
justify-content: flex-end
}
.justify-center {
-ms-flex-pack: center;
justify-content: center
}
.justify-between {
-ms-flex-pack: justify;
justify-content: space-between
}
.items-center {
-ms-flex-align: center;
align-items: center
}
.items-start {
-ms-flex-align: start;
align-items: flex-start
}
.items-end {
-ms-flex-align: end;
align-items: flex-end
}
@media (min-width: 32rem) {
.flex-wrap\@xs {
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.flex-column\@xs {
-ms-flex-direction: column;
flex-direction: column
}
.flex-row\@xs {
-ms-flex-direction: row;
flex-direction: row
}
.flex-center\@xs {
-ms-flex-align: center;
-ms-flex-pack: center;
align-items: center;
justify-content: center
}
.justify-start\@xs {
-ms-flex-pack: start;
justify-content: flex-start
}
.justify-end\@xs {
-ms-flex-pack: end;
justify-content: flex-end
}
.justify-center\@xs {
-ms-flex-pack: center;
justify-content: center
}
.justify-between\@xs {
-ms-flex-pack: justify;
justify-content: space-between
}
.items-center\@xs {
-ms-flex-align: center;
align-items: center
}
.items-start\@xs {
-ms-flex-align: start;
align-items: flex-start
}
.items-end\@xs {
-ms-flex-align: end;
align-items: flex-end
}
}
@media (min-width: 48rem) {
.flex-wrap\@sm {
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.flex-column\@sm {
-ms-flex-direction: column;
flex-direction: column
}
.flex-row\@sm {
-ms-flex-direction: row;
flex-direction: row
}
.flex-center\@sm {
-ms-flex-align: center;
-ms-flex-pack: center;
align-items: center;
justify-content: center
}
.justify-start\@sm {
-ms-flex-pack: start;
justify-content: flex-start
}
.justify-end\@sm {
-ms-flex-pack: end;
justify-content: flex-end
}
.justify-center\@sm {
-ms-flex-pack: center;
justify-content: center
}
.justify-between\@sm {
-ms-flex-pack: justify;
justify-content: space-between
}
.items-center\@sm {
-ms-flex-align: center;
align-items: center
}
.items-start\@sm {
-ms-flex-align: start;
align-items: flex-start
}
.items-end\@sm {
-ms-flex-align: end;
align-items: flex-end
}
}
@media (min-width: 64rem) {
.flex-wrap\@md {
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.flex-column\@md {
-ms-flex-direction: column;
flex-direction: column
}
.flex-row\@md {
-ms-flex-direction: row;
flex-direction: row
}
.flex-center\@md {
-ms-flex-align: center;
-ms-flex-pack: center;
align-items: center;
justify-content: center
}
.justify-start\@md {
-ms-flex-pack: start;
justify-content: flex-start
}
.justify-end\@md {
-ms-flex-pack: end;
justify-content: flex-end
}
.justify-center\@md {
-ms-flex-pack: center;
justify-content: center
}
.justify-between\@md {
-ms-flex-pack: justify;
justify-content: space-between
}
.items-center\@md {
-ms-flex-align: center;
align-items: center
}
.items-start\@md {
-ms-flex-align: start;
align-items: flex-start
}
.items-end\@md {
-ms-flex-align: end;
align-items: flex-end
}
}
@media (min-width: 80rem) {
.flex-wrap\@lg {
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.flex-column\@lg {
-ms-flex-direction: column;
flex-direction: column
}
.flex-row\@lg {
-ms-flex-direction: row;
flex-direction: row
}
.flex-center\@lg {
-ms-flex-align: center;
-ms-flex-pack: center;
align-items: center;
justify-content: center
}
.justify-start\@lg {
-ms-flex-pack: start;
justify-content: flex-start
}
.justify-end\@lg {
-ms-flex-pack: end;
justify-content: flex-end
}
.justify-center\@lg {
-ms-flex-pack: center;
justify-content: center
}
.justify-between\@lg {
-ms-flex-pack: justify;
justify-content: space-between
}
.items-center\@lg {
-ms-flex-align: center;
align-items: center
}
.items-start\@lg {
-ms-flex-align: start;
align-items: flex-start
}
.items-end\@lg {
-ms-flex-align: end;
align-items: flex-end
}
}
@media (min-width: 90rem) {
.flex-wrap\@xl {
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.flex-column\@xl {
-ms-flex-direction: column;
flex-direction: column
}
.flex-row\@xl {
-ms-flex-direction: row;
flex-direction: row
}
.flex-center\@xl {
-ms-flex-align: center;
-ms-flex-pack: center;
align-items: center;
justify-content: center
}
.justify-start\@xl {
-ms-flex-pack: start;
justify-content: flex-start
}
.justify-end\@xl {
-ms-flex-pack: end;
justify-content: flex-end
}
.justify-center\@xl {
-ms-flex-pack: center;
justify-content: center
}
.justify-between\@xl {
-ms-flex-pack: justify;
justify-content: space-between
}
.items-center\@xl {
-ms-flex-align: center;
align-items: center
}
.items-start\@xl {
-ms-flex-align: start;
align-items: flex-start
}
.items-end\@xl {
-ms-flex-align: end;
align-items: flex-end
}
}
.flex-grow {
-ms-flex-positive: 1;
flex-grow: 1
}
.flex-shrink-0 {
-ms-flex-negative: 0;
flex-shrink: 0
}
.flex-gap-xxxs {
margin-right: -.25em;
margin-right: calc(-1*var(--space-xxxs));
margin-bottom: -.25em;
margin-bottom: calc(-1*var(--space-xxxs))
}
.flex-gap-xxxs >* {
margin-right: .25em;
margin-right: var(--space-xxxs);
margin-bottom: .25em;
margin-bottom: var(--space-xxxs)
}
.flex-gap-xxs {
margin-right: -.375em;
margin-right: calc(-1*var(--space-xxs));
margin-bottom: -.375em;
margin-bottom: calc(-1*var(--space-xxs))
}
.flex-gap-xxs >* {
margin-right: .375em;
margin-right: var(--space-xxs);
margin-bottom: .375em;
margin-bottom: var(--space-xxs)
}
.flex-gap-xs {
margin-right: -.5em;
margin-right: calc(-1*var(--space-xs));
margin-bottom: -.5em;
margin-bottom: calc(-1*var(--space-xs))
}
.flex-gap-xs >* {
margin-right: .5em;
margin-right: var(--space-xs);
margin-bottom: .5em;
margin-bottom: var(--space-xs)
}
.flex-gap-sm {
margin-right: -.75em;
margin-right: calc(-1*var(--space-sm));
margin-bottom: -.75em;
margin-bottom: calc(-1*var(--space-sm))
}
.flex-gap-sm >* {
margin-right: .75em;
margin-right: var(--space-sm);
margin-bottom: .75em;
margin-bottom: var(--space-sm)
}
.flex-gap-md {
margin-right: -1.25em;
margin-right: calc(-1*var(--space-md));
margin-bottom: -1.25em;
margin-bottom: calc(-1*var(--space-md))
}
.flex-gap-md >* {
margin-right: 1.25em;
margin-right: var(--space-md);
margin-bottom: 1.25em;
margin-bottom: var(--space-md)
}
.flex-gap-lg {
margin-right: -2em;
margin-right: calc(-1*var(--space-lg));
margin-bottom: -2em;
margin-bottom: calc(-1*var(--space-lg))
}
.flex-gap-lg >* {
margin-right: 2em;
margin-right: var(--space-lg);
margin-bottom: 2em;
margin-bottom: var(--space-lg)
}
.flex-gap-xl {
margin-right: -3.25em;
margin-right: calc(-1*var(--space-xl));
margin-bottom: -3.25em;
margin-bottom: calc(-1*var(--space-xl))
}
.flex-gap-xl >* {
margin-right: 3.25em;
margin-right: var(--space-xl);
margin-bottom: 3.25em;
margin-bottom: var(--space-xl)
}
.flex-gap-xxl {
margin-right: -5.25em;
margin-right: calc(-1*var(--space-xxl));
margin-bottom: -5.25em;
margin-bottom: calc(-1*var(--space-xxl))
}
.flex-gap-xxl >* {
margin-right: 5.25em;
margin-right: var(--space-xxl);
margin-bottom: 5.25em;
margin-bottom: var(--space-xxl)
}
.margin-xxxxs {
margin: .125em;
margin: var(--space-xxxxs)
}
.margin-xxxs {
margin: .25em;
margin: var(--space-xxxs)
}
.margin-xxs {
margin: .375em;
margin: var(--space-xxs)
}
.margin-xs {
margin: .5em;
margin: var(--space-xs)
}
.margin-sm {
margin: .75em;
margin: var(--space-sm)
}
.margin-md {
margin: 1.25em;
margin: var(--space-md)
}
.margin-lg {
margin: 2em;
margin: var(--space-lg)
}
.margin-xl {
margin: 3.25em;
margin: var(--space-xl)
}
.margin-xxl {
margin: 5.25em;
margin: var(--space-xxl)
}
.margin-xxxl {
margin: 8.5em;
margin: var(--space-xxxl)
}
.margin-xxxxl {
margin: 13.75em;
margin: var(--space-xxxxl)
}
.margin-auto {
margin: auto
}
.margin-top-xxxxs {
margin-top: .125em;
margin-top: var(--space-xxxxs)
}
.margin-top-xxxs {
margin-top: .25em;
margin-top: var(--space-xxxs)
}
.margin-top-xxs {
margin-top: .375em;
margin-top: var(--space-xxs)
}
.margin-top-xs {
margin-top: .5em;
margin-top: var(--space-xs)
}
.margin-top-sm {
margin-top: .75em;
margin-top: var(--space-sm)
}
.margin-top-md {
margin-top: 1.25em;
margin-top: var(--space-md)
}
.margin-top-lg {
margin-top: 2em;
margin-top: var(--space-lg)
}
.margin-top-xl {
margin-top: 3.25em;
margin-top: var(--space-xl)
}
.margin-top-xxl {
margin-top: 5.25em;
margin-top: var(--space-xxl)
}
.margin-top-xxxl {
margin-top: 8.5em;
margin-top: var(--space-xxxl)
}
.margin-top-xxxxl {
margin-top: 13.75em;
margin-top: var(--space-xxxxl)
}
.margin-top-auto {
margin-top: auto
}
.margin-bottom-xxxxs {
margin-bottom: .125em;
margin-bottom: var(--space-xxxxs)
}
.margin-bottom-xxxs {
margin-bottom: .25em;
margin-bottom: var(--space-xxxs)
}
.margin-bottom-xxs {
margin-bottom: .375em;
margin-bottom: var(--space-xxs)
}
.margin-bottom-xs {
margin-bottom: .5em;
margin-bottom: var(--space-xs)
}
.margin-bottom-sm {
margin-bottom: .75em;
margin-bottom: var(--space-sm)
}
.margin-bottom-md {
margin-bottom: 1.25em;
margin-bottom: var(--space-md)
}
.margin-bottom-lg {
margin-bottom: 2em;
margin-bottom: var(--space-lg)
}
.margin-bottom-xl {
margin-bottom: 3.25em;
margin-bottom: var(--space-xl)
}
.margin-bottom-xxl {
margin-bottom: 5.25em;
margin-bottom: var(--space-xxl)
}
.margin-bottom-xxxl {
margin-bottom: 8.5em;
margin-bottom: var(--space-xxxl)
}
.margin-bottom-xxxxl {
margin-bottom: 13.75em;
margin-bottom: var(--space-xxxxl)
}
.margin-bottom-auto {
margin-bottom: auto
}
.margin-right-xxxxs {
margin-right: .125em;
margin-right: var(--space-xxxxs)
}
.margin-right-xxxs {
margin-right: .25em;
margin-right: var(--space-xxxs)
}
.margin-right-xxs {
margin-right: .375em;
margin-right: var(--space-xxs)
}
.margin-right-xs {
margin-right: .5em;
margin-right: var(--space-xs)
}
.margin-right-sm {
margin-right: .75em;
margin-right: var(--space-sm)
}
.margin-right-md {
margin-right: 1.25em;
margin-right: var(--space-md)
}
.margin-right-lg {
margin-right: 2em;
margin-right: var(--space-lg)
}
.margin-right-xl {
margin-right: 3.25em;
margin-right: var(--space-xl)
}
.margin-right-xxl {
margin-right: 5.25em;
margin-right: var(--space-xxl)
}
.margin-right-xxxl {
margin-right: 8.5em;
margin-right: var(--space-xxxl)
}
.margin-right-xxxxl {
margin-right: 13.75em;
margin-right: var(--space-xxxxl)
}
.margin-right-auto {
margin-right: auto
}
.margin-left-xxxxs {
margin-left: .125em;
margin-left: var(--space-xxxxs)
}
.margin-left-xxxs {
margin-left: .25em;
margin-left: var(--space-xxxs)
}
.margin-left-xxs {
margin-left: .375em;
margin-left: var(--space-xxs)
}
.margin-left-xs {
margin-left: .5em;
margin-left: var(--space-xs)
}
.margin-left-sm {
margin-left: .75em;
margin-left: var(--space-sm)
}
.margin-left-md {
margin-left: 1.25em;
margin-left: var(--space-md)
}
.margin-left-lg {
margin-left: 2em;
margin-left: var(--space-lg)
}
.margin-left-xl {
margin-left: 3.25em;
margin-left: var(--space-xl)
}
.margin-left-xxl {
margin-left: 5.25em;
margin-left: var(--space-xxl)
}
.margin-left-xxxl {
margin-left: 8.5em;
margin-left: var(--space-xxxl)
}
.margin-left-xxxxl {
margin-left: 13.75em;
margin-left: var(--space-xxxxl)
}
.margin-left-auto {
margin-left: auto
}
.margin-x-xxxxs {
margin-right: .125em;
margin-right: var(--space-xxxxs);
margin-left: .125em;
margin-left: var(--space-xxxxs)
}
.margin-x-xxxs {
margin-right: .25em;
margin-right: var(--space-xxxs);
margin-left: .25em;
margin-left: var(--space-xxxs)
}
.margin-x-xxs {
margin-right: .375em;
margin-right: var(--space-xxs);
margin-left: .375em;
margin-left: var(--space-xxs)
}
.margin-x-xs {
margin-right: .5em;
margin-right: var(--space-xs);
margin-left: .5em;
margin-left: var(--space-xs)
}
.margin-x-sm {
margin-right: .75em;
margin-right: var(--space-sm);
margin-left: .75em;
margin-left: var(--space-sm)
}
.margin-x-md {
margin-right: 1.25em;
margin-right: var(--space-md);
margin-left: 1.25em;
margin-left: var(--space-md)
}
.margin-x-lg {
margin-right: 2em;
margin-right: var(--space-lg);
margin-left: 2em;
margin-left: var(--space-lg)
}
.margin-x-xl {
margin-right: 3.25em;
margin-right: var(--space-xl);
margin-left: 3.25em;
margin-left: var(--space-xl)
}
.margin-x-xxl {
margin-right: 5.25em;
margin-right: var(--space-xxl);
margin-left: 5.25em;
margin-left: var(--space-xxl)
}
.margin-x-xxxl {
margin-right: 8.5em;
margin-right: var(--space-xxxl);
margin-left: 8.5em;
margin-left: var(--space-xxxl)
}
.margin-x-xxxxl {
margin-right: 13.75em;
margin-right: var(--space-xxxxl);
margin-left: 13.75em;
margin-left: var(--space-xxxxl)
}
.margin-x-auto {
margin-right: auto;
margin-left: auto
}
.margin-y-xxxxs {
margin-top: .125em;
margin-top: var(--space-xxxxs);
margin-bottom: .125em;
margin-bottom: var(--space-xxxxs)
}
.margin-y-xxxs {
margin-top: .25em;
margin-top: var(--space-xxxs);
margin-bottom: .25em;
margin-bottom: var(--space-xxxs)
}
.margin-y-xxs {
margin-top: .375em;
margin-top: var(--space-xxs);
margin-bottom: .375em;
margin-bottom: var(--space-xxs)
}
.margin-y-xs {
margin-top: .5em;
margin-top: var(--space-xs);
margin-bottom: .5em;
margin-bottom: var(--space-xs)
}
.margin-y-sm {
margin-top: .75em;
margin-top: var(--space-sm);
margin-bottom: .75em;
margin-bottom: var(--space-sm)
}
.margin-y-md {
margin-top: 1.25em;
margin-top: var(--space-md);
margin-bottom: 1.25em;
margin-bottom: var(--space-md)
}
.margin-y-lg {
margin-top: 2em;
margin-top: var(--space-lg);
margin-bottom: 2em;
margin-bottom: var(--space-lg)
}
.margin-y-xl {
margin-top: 3.25em;
margin-top: var(--space-xl);
margin-bottom: 3.25em;
margin-bottom: var(--space-xl)
}
.margin-y-xxl {
margin-top: 5.25em;
margin-top: var(--space-xxl);
margin-bottom: 5.25em;
margin-bottom: var(--space-xxl)
}
.margin-y-xxxl {
margin-top: 8.5em;
margin-top: var(--space-xxxl);
margin-bottom: 8.5em;
margin-bottom: var(--space-xxxl)
}
.margin-y-xxxxl {
margin-top: 13.75em;
margin-top: var(--space-xxxxl);
margin-bottom: 13.75em;
margin-bottom: var(--space-xxxxl)
}
.margin-y-auto {
margin-top: auto;
margin-bottom: auto
}
@media not all and (min-width: 32rem) {
.has-margin\@xs {
margin: 0 !important
}
}
@media not all and (min-width: 48rem) {
.has-margin\@sm {
margin: 0 !important
}
}
@media not all and (min-width: 64rem) {
.has-margin\@md {
margin: 0 !important
}
}
@media not all and (min-width: 80rem) {
.has-margin\@lg {
margin: 0 !important
}
}
@media not all and (min-width: 90rem) {
.has-margin\@xl {
margin: 0 !important
}
}
.padding-md {
padding: 1.25em;
padding: var(--space-md)
}
.padding-xxxxs {
padding: .125em;
padding: var(--space-xxxxs)
}
.padding-xxxs {
padding: .25em;
padding: var(--space-xxxs)
}
.padding-xxs {
padding: .375em;
padding: var(--space-xxs)
}
.padding-xs {
padding: .5em;
padding: var(--space-xs)
}
.padding-sm {
padding: .75em;
padding: var(--space-sm)
}
.padding-lg {
padding: 2em;
padding: var(--space-lg)
}
.padding-xl {
padding: 3.25em;
padding: var(--space-xl)
}
.padding-xxl {
padding: 5.25em;
padding: var(--space-xxl)
}
.padding-xxxl {
padding: 8.5em;
padding: var(--space-xxxl)
}
.padding-xxxxl {
padding: 13.75em;
padding: var(--space-xxxxl)
}
.padding-component {
padding: 1.25em;
padding: var(--component-padding)
}
.padding-top-md {
padding-top: 1.25em;
padding-top: var(--space-md)
}
.padding-top-xxxxs {
padding-top: .125em;
padding-top: var(--space-xxxxs)
}
.padding-top-xxxs {
padding-top: .25em;
padding-top: var(--space-xxxs)
}
.padding-top-xxs {
padding-top: .375em;
padding-top: var(--space-xxs)
}
.padding-top-xs {
padding-top: .5em;
padding-top: var(--space-xs)
}
.padding-top-sm {
padding-top: .75em;
padding-top: var(--space-sm)
}
.padding-top-lg {
padding-top: 2em;
padding-top: var(--space-lg)
}
.padding-top-xl {
padding-top: 3.25em;
padding-top: var(--space-xl)
}
.padding-top-xxl {
padding-top: 5.25em;
padding-top: var(--space-xxl)
}
.padding-top-xxxl {
padding-top: 8.5em;
padding-top: var(--space-xxxl)
}
.padding-top-xxxxl {
padding-top: 13.75em;
padding-top: var(--space-xxxxl)
}
.padding-top-component {
padding-top: 1.25em;
padding-top: var(--component-padding)
}
.padding-bottom-md {
padding-bottom: 1.25em;
padding-bottom: var(--space-md)
}
.padding-bottom-xxxxs {
padding-bottom: .125em;
padding-bottom: var(--space-xxxxs)
}
.padding-bottom-xxxs {
padding-bottom: .25em;
padding-bottom: var(--space-xxxs)
}
.padding-bottom-xxs {
padding-bottom: .375em;
padding-bottom: var(--space-xxs)
}
.padding-bottom-xs {
padding-bottom: .5em;
padding-bottom: var(--space-xs)
}
.padding-bottom-sm {
padding-bottom: .75em;
padding-bottom: var(--space-sm)
}
.padding-bottom-lg {
padding-bottom: 2em;
padding-bottom: var(--space-lg)
}
.padding-bottom-xl {
padding-bottom: 3.25em;
padding-bottom: var(--space-xl)
}
.padding-bottom-xxl {
padding-bottom: 5.25em;
padding-bottom: var(--space-xxl)
}
.padding-bottom-xxxl {
padding-bottom: 8.5em;
padding-bottom: var(--space-xxxl)
}
.padding-bottom-xxxxl {
padding-bottom: 13.75em;
padding-bottom: var(--space-xxxxl)
}
.padding-bottom-component {
padding-bottom: 1.25em;
padding-bottom: var(--component-padding)
}
.padding-right-md {
padding-right: 1.25em;
padding-right: var(--space-md)
}
.padding-right-xxxxs {
padding-right: .125em;
padding-right: var(--space-xxxxs)
}
.padding-right-xxxs {
padding-right: .25em;
padding-right: var(--space-xxxs)
}
.padding-right-xxs {
padding-right: .375em;
padding-right: var(--space-xxs)
}
.padding-right-xs {
padding-right: .5em;
padding-right: var(--space-xs)
}
.padding-right-sm {
padding-right: .75em;
padding-right: var(--space-sm)
}
.padding-right-lg {
padding-right: 2em;
padding-right: var(--space-lg)
}
.padding-right-xl {
padding-right: 3.25em;
padding-right: var(--space-xl)
}
.padding-right-xxl {
padding-right: 5.25em;
padding-right: var(--space-xxl)
}
.padding-right-xxxl {
padding-right: 8.5em;
padding-right: var(--space-xxxl)
}
.padding-right-xxxxl {
padding-right: 13.75em;
padding-right: var(--space-xxxxl)
}
.padding-right-component {
padding-right: 1.25em;
padding-right: var(--component-padding)
}
.padding-left-md {
padding-left: 1.25em;
padding-left: var(--space-md)
}
.padding-left-xxxxs {
padding-left: .125em;
padding-left: var(--space-xxxxs)
}
.padding-left-xxxs {
padding-left: .25em;
padding-left: var(--space-xxxs)
}
.padding-left-xxs {
padding-left: .375em;
padding-left: var(--space-xxs)
}
.padding-left-xs {
padding-left: .5em;
padding-left: var(--space-xs)
}
.padding-left-sm {
padding-left: .75em;
padding-left: var(--space-sm)
}
.padding-left-lg {
padding-left: 2em;
padding-left: var(--space-lg)
}
.padding-left-xl {
padding-left: 3.25em;
padding-left: var(--space-xl)
}
.padding-left-xxl {
padding-left: 5.25em;
padding-left: var(--space-xxl)
}
.padding-left-xxxl {
padding-left: 8.5em;
padding-left: var(--space-xxxl)
}
.padding-left-xxxxl {
padding-left: 13.75em;
padding-left: var(--space-xxxxl)
}
.padding-left-component {
padding-left: 1.25em;
padding-left: var(--component-padding)
}
.padding-x-md {
padding-right: 1.25em;
padding-right: var(--space-md);
padding-left: 1.25em;
padding-left: var(--space-md)
}
.padding-x-xxxxs {
padding-right: .125em;
padding-right: var(--space-xxxxs);
padding-left: .125em;
padding-left: var(--space-xxxxs)
}
.padding-x-xxxs {
padding-right: .25em;
padding-right: var(--space-xxxs);
padding-left: .25em;
padding-left: var(--space-xxxs)
}
.padding-x-xxs {
padding-right: .375em;
padding-right: var(--space-xxs);
padding-left: .375em;
padding-left: var(--space-xxs)
}
.padding-x-xs {
padding-right: .5em;
padding-right: var(--space-xs);
padding-left: .5em;
padding-left: var(--space-xs)
}
.padding-x-sm {
padding-right: .75em;
padding-right: var(--space-sm);
padding-left: .75em;
padding-left: var(--space-sm)
}
.padding-x-lg {
padding-right: 2em;
padding-right: var(--space-lg);
padding-left: 2em;
padding-left: var(--space-lg)
}
.padding-x-xl {
padding-right: 3.25em;
padding-right: var(--space-xl);
padding-left: 3.25em;
padding-left: var(--space-xl)
}
.padding-x-xxl {
padding-right: 5.25em;
padding-right: var(--space-xxl);
padding-left: 5.25em;
padding-left: var(--space-xxl)
}
.padding-x-xxxl {
padding-right: 8.5em;
padding-right: var(--space-xxxl);
padding-left: 8.5em;
padding-left: var(--space-xxxl)
}
.padding-x-xxxxl {
padding-right: 13.75em;
padding-right: var(--space-xxxxl);
padding-left: 13.75em;
padding-left: var(--space-xxxxl)
}
.padding-x-component {
padding-right: 1.25em;
padding-right: var(--component-padding);
padding-left: 1.25em;
padding-left: var(--component-padding)
}
.padding-y-md {
padding-top: 1.25em;
padding-top: var(--space-md);
padding-bottom: 1.25em;
padding-bottom: var(--space-md)
}
.padding-y-xxxxs {
padding-top: .125em;
padding-top: var(--space-xxxxs);
padding-bottom: .125em;
padding-bottom: var(--space-xxxxs)
}
.padding-y-xxxs {
padding-top: .25em;
padding-top: var(--space-xxxs);
padding-bottom: .25em;
padding-bottom: var(--space-xxxs)
}
.padding-y-xxs {
padding-top: .375em;
padding-top: var(--space-xxs);
padding-bottom: .375em;
padding-bottom: var(--space-xxs)
}
.padding-y-xs {
padding-top: .5em;
padding-top: var(--space-xs);
padding-bottom: .5em;
padding-bottom: var(--space-xs)
}
.padding-y-sm {
padding-top: .75em;
padding-top: var(--space-sm);
padding-bottom: .75em;
padding-bottom: var(--space-sm)
}
.padding-y-lg {
padding-top: 2em;
padding-top: var(--space-lg);
padding-bottom: 2em;
padding-bottom: var(--space-lg)
}
.padding-y-xl {
padding-top: 3.25em;
padding-top: var(--space-xl);
padding-bottom: 3.25em;
padding-bottom: var(--space-xl)
}
.padding-y-xxl {
padding-top: 5.25em;
padding-top: var(--space-xxl);
padding-bottom: 5.25em;
padding-bottom: var(--space-xxl)
}
.padding-y-xxxl {
padding-top: 8.5em;
padding-top: var(--space-xxxl);
padding-bottom: 8.5em;
padding-bottom: var(--space-xxxl)
}
.padding-y-xxxxl {
padding-top: 13.75em;
padding-top: var(--space-xxxxl);
padding-bottom: 13.75em;
padding-bottom: var(--space-xxxxl)
}
.padding-y-component {
padding-top: 1.25em;
padding-top: var(--component-padding);
padding-bottom: 1.25em;
padding-bottom: var(--component-padding)
}
@media not all and (min-width: 32rem) {
.has-padding\@xs {
padding: 0 !important
}
}
@media not all and (min-width: 48rem) {
.has-padding\@sm {
padding: 0 !important
}
}
@media not all and (min-width: 64rem) {
.has-padding\@md {
padding: 0 !important
}
}
@media not all and (min-width: 80rem) {
.has-padding\@lg {
padding: 0 !important
}
}
@media not all and (min-width: 90rem) {
.has-padding\@xl {
padding: 0 !important
}
}
.truncate {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap
}
.text-replace {
overflow: hidden;
color: transparent;
text-indent: 100%;
white-space: nowrap
}
.text-center {
text-align: center
}
.text-left {
text-align: left
}
.text-right {
text-align: right
}
@media (min-width: 32rem) {
.text-center\@xs {
text-align: center
}
.text-left\@xs {
text-align: left
}
.text-right\@xs {
text-align: right
}
}
@media (min-width: 48rem) {
.text-center\@sm {
text-align: center
}
.text-left\@sm {
text-align: left
}
.text-right\@sm {
text-align: right
}
}
@media (min-width: 64rem) {
.text-center\@md {
text-align: center
}
.text-left\@md {
text-align: left
}
.text-right\@md {
text-align: right
}
}
@media (min-width: 80rem) {
.text-center\@lg {
text-align: center
}
.text-left\@lg {
text-align: left
}
.text-right\@lg {
text-align: right
}
}
@media (min-width: 90rem) {
.text-center\@xl {
text-align: center
}
.text-left\@xl {
text-align: left
}
.text-right\@xl {
text-align: right
}
}
.color-inherit {
color: inherit
}
.color-contrast-medium {
color: #79797c;
color: var(--color-contrast-medium, #79797c)
}
.color-contrast-high {
color: #313135;
color: var(--color-contrast-high, #313135)
}
.color-contrast-higher {
color: #1c1c21;
color: var(--color-contrast-higher, #1c1c21)
}
.color-primary {
color: #2a6df4;
color: var(--color-primary, #2a6df4)
}
.color-accent {
color: #f54251;
color: var(--color-accent, #f54251)
}
.color-success {
color: #88c559;
color: var(--color-success, #88c559)
}
.color-warning {
color: #ffd138;
color: var(--color-warning, #ffd138)
}
.color-error {
color: #f54251;
color: var(--color-error, #f54251)
}
.width-100\% {
width: 100%
}
.height-100\% {
height: 100%
}
.media-wrapper {
position: relative;
height: 0;
padding-bottom: 56.25%
}
.media-wrapper iframe,
.media-wrapper video,
.media-wrapper img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%
}
.media-wrapper video,
.media-wrapper img {
-o-object-fit: cover;
object-fit: cover
}
.media-wrapper--4\:3 {
padding-bottom: 75%
}
:root,
[data-theme=default] {
--color-primary-darker: hsl(220, 90%, 36%);
--color-primary-darker-h: 220;
--color-primary-darker-s: 90%;
--color-primary-darker-l: 36%;
--color-primary-dark: hsl(220, 90%, 46%);
--color-primary-dark-h: 220;
--color-primary-dark-s: 90%;
--color-primary-dark-l: 46%;
--color-primary: hsl(220, 90%, 56%);
--color-primary-h: 220;
--color-primary-s: 90%;
--color-primary-l: 56%;
--color-primary-light: hsl(220, 90%, 66%);
--color-primary-light-h: 220;
--color-primary-light-s: 90%;
--color-primary-light-l: 66%;
--color-primary-lighter: hsl(220, 90%, 76%);
--color-primary-lighter-h: 220;
--color-primary-lighter-s: 90%;
--color-primary-lighter-l: 76%;
--color-accent-darker: hsl(355, 90%, 41%);
--color-accent-darker-h: 355;
--color-accent-darker-s: 90%;
--color-accent-darker-l: 41%;
--color-accent-dark: hsl(355, 90%, 51%);
--color-accent-dark-h: 355;
--color-accent-dark-s: 90%;
--color-accent-dark-l: 51%;
--color-accent: hsl(355, 90%, 61%);
--color-accent-h: 355;
--color-accent-s: 90%;
--color-accent-l: 61%;
--color-accent-light: hsl(355, 90%, 71%);
--color-accent-light-h: 355;
--color-accent-light-s: 90%;
--color-accent-light-l: 71%;
--color-accent-lighter: hsl(355, 90%, 81%);
--color-accent-lighter-h: 355;
--color-accent-lighter-s: 90%;
--color-accent-lighter-l: 81%;
--color-black: hsl(240, 8%, 12%);
--color-black-h: 240;
--color-black-s: 8%;
--color-black-l: 12%;
--color-white: hsl(0, 0%, 100%);
--color-white-h: 0;
--color-white-s: 0%;
--color-white-l: 100%;
--color-success-darker: hsl(94, 48%, 36%);
--color-success-darker-h: 94;
--color-success-darker-s: 48%;
--color-success-darker-l: 36%;
--color-success-dark: hsl(94, 48%, 46%);
--color-success-dark-h: 94;
--color-success-dark-s: 48%;
--color-success-dark-l: 46%;
--color-success: hsl(94, 48%, 56%);
--color-success-h: 94;
--color-success-s: 48%;
--color-success-l: 56%;
--color-success-light: hsl(94, 48%, 66%);
--color-success-light-h: 94;
--color-success-light-s: 48%;
--color-success-light-l: 66%;
--color-success-lighter: hsl(94, 48%, 76%);
--color-success-lighter-h: 94;
--color-success-lighter-s: 48%;
--color-success-lighter-l: 76%;
--color-error-darker: hsl(355, 90%, 41%);
--color-error-darker-h: 355;
--color-error-darker-s: 90%;
--color-error-darker-l: 41%;
--color-error-dark: hsl(355, 90%, 51%);
--color-error-dark-h: 355;
--color-error-dark-s: 90%;
--color-error-dark-l: 51%;
--color-error: hsl(355, 90%, 61%);
--color-error-h: 355;
--color-error-s: 90%;
--color-error-l: 61%;
--color-error-light: hsl(355, 90%, 71%);
--color-error-light-h: 355;
--color-error-light-s: 90%;
--color-error-light-l: 71%;
--color-error-lighter: hsl(355, 90%, 81%);
--color-error-lighter-h: 355;
--color-error-lighter-s: 90%;
--color-error-lighter-l: 81%;
--color-warning-darker: hsl(46, 100%, 41%);
--color-warning-darker-h: 46;
--color-warning-darker-s: 100%;
--color-warning-darker-l: 41%;
--color-warning-dark: hsl(46, 100%, 51%);
--color-warning-dark-h: 46;
--color-warning-dark-s: 100%;
--color-warning-dark-l: 51%;
--color-warning: hsl(46, 100%, 61%);
--color-warning-h: 46;
--color-warning-s: 100%;
--color-warning-l: 61%;
--color-warning-light: hsl(46, 100%, 71%);
--color-warning-light-h: 46;
--color-warning-light-s: 100%;
--color-warning-light-l: 71%;
--color-warning-lighter: hsl(46, 100%, 81%);
--color-warning-lighter-h: 46;
--color-warning-lighter-s: 100%;
--color-warning-lighter-l: 81%;
--color-bg: hsl(0, 0%, 100%);
--color-bg-h: 0;
--color-bg-s: 0%;
--color-bg-l: 100%;
--color-contrast-lower: hsl(0, 0%, 95%);
--color-contrast-lower-h: 0;
--color-contrast-lower-s: 0%;
--color-contrast-lower-l: 95%;
--color-contrast-low: hsl(240, 1%, 83%);
--color-contrast-low-h: 240;
--color-contrast-low-s: 1%;
--color-contrast-low-l: 83%;
--color-contrast-medium: hsl(240, 1%, 48%);
--color-contrast-medium-h: 240;
--color-contrast-medium-s: 1%;
--color-contrast-medium-l: 48%;
--color-contrast-high: hsl(240, 4%, 20%);
--color-contrast-high-h: 240;
--color-contrast-high-s: 4%;
--color-contrast-high-l: 20%;
--color-contrast-higher: hsl(240, 8%, 12%);
--color-contrast-higher-h: 240;
--color-contrast-higher-s: 8%;
--color-contrast-higher-l: 12%
}
@supports (--css:variables) {
@media (min-width: 64rem) {
:root {
--space-unit: 1.25em
}
}
}
:root {
--radius: 0.25em
}
:root {
--font-primary: sans-serif;
--text-base-size: 1em;
--text-scale-ratio: 1.2;
--text-xs: calc(1em/var(--text-scale-ratio)/var(--text-scale-ratio));
--text-sm: calc(var(--text-xs) *var(--text-scale-ratio));
--text-md: calc(var(--text-sm) *var(--text-scale-ratio) *var(--text-scale-ratio));
--text-lg: calc(var(--text-md) *var(--text-scale-ratio));
--text-xl: calc(var(--text-lg) *var(--text-scale-ratio));
--text-xxl: calc(var(--text-xl) *var(--text-scale-ratio));
--text-xxxl: calc(var(--text-xxl) *var(--text-scale-ratio));
--body-line-height: 1.4;
--heading-line-height: 1.2;
--font-primary-capital-letter: 1
}
@supports (--css:variables) {
@media (min-width: 64rem) {
:root {
--text-base-size: 1.25em;
--text-scale-ratio: 1.25
}
}
}
mark {
color: inherit;
background-color: hsla(355, 90%, 61%, .2);
background-color: hsla(var(--color-accent-h), var(--color-accent-s), var(--color-accent-l), 0.2)
}
.text-component {
--line-height-multiplier: 1;
--text-vspace-multiplier: 1
}
.text-component blockquote {
padding-left: 1em;
border-left: 4px solid #d3d3d4;
border-left: 4px solid var(--color-contrast-low)
}
.text-component hr {
height: 1px;
background: #d3d3d4;
background: var(--color-contrast-low)
}
.text-component figcaption {
font-size: .83333em;
font-size: var(--text-sm);
color: #79797c;
color: var(--color-contrast-medium)
}
.article.text-component {
--line-height-multiplier: 1.13;
--text-vspace-multiplier: 1.2
}
:root {
--btn-font-size: 1em;
--btn-font-size-sm: calc(var(--btn-font-size) - 0.2em);
--btn-font-size-md: calc(var(--btn-font-size) + 0.2em);
--btn-font-size-lg: calc(var(--btn-font-size) + 0.4em);
--btn-radius: 0.25em;
--btn-padding-x: var(--space-sm);
--btn-padding-y: var(--space-xs)
}
.btn {
--color-shadow: hsla(240, 8%, 12%, 0.15);
--color-shadow: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.15);
cursor: pointer;
box-shadow: 0 4px 16px hsla(240, 8%, 12%, .15);
box-shadow: 0 4px 16px hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.15)
}
.btn--primary {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale
}
.btn--accent {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale
}
.btn--disabled {
opacity: .6
}
:root {
--form-control-padding-x: var(--space-sm);
--form-control-padding-y: var(--space-xs);
--form-control-radius: 0.25em
}
.form-control {
border: 2px solid #d3d3d4;
border: 2px solid var(--color-contrast-low)
}
.form-control:focus {
--color-shadow: hsla(220, 90%, 56%, 0.2);
--color-shadow: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
border-color: #2a6df4;
border-color: var(--color-primary);
outline: none;
box-shadow: undefined;
box-shadow: 0 0 0 3px var(--color-shadow);
}
.form-control:focus:focus {
box-shadow: 0 0 0 3px hsla(220, 90%, 56%, .2);
box-shadow: 0 0 0 3px var(--color-shadow)
}
.form-control[aria-invalid=true] {
border-color: #f54251;
border-color: var(--color-error)
}
.form-control[aria-invalid=true]:focus {
--color-shadow: hsla(355, 90%, 61%, 0.2);
--color-shadow: hsla(var(--color-error-h), var(--color-error-s), var(--color-error-l), 0.2);
box-shadow: undefined;
box-shadow: 0 0 0 3px var(--color-shadow)
}
.form-control[aria-invalid=true]:focus:focus {
box-shadow: 0 0 0 3px hsla(355, 90%, 61%, .2);
box-shadow: 0 0 0 3px var(--color-shadow)
}
.form-label {
font-size: .83333em;
font-size: var(--text-sm)
}
:root {
--hs-color-1: hsl(206, 21%, 24%);
--hs-color-1-h: 206;
--hs-color-1-s: 21%;
--hs-color-1-l: 24%;
--hs-color-2: hsl(205, 38%, 89%);
--hs-color-2-h: 205;
--hs-color-2-s: 38%;
--hs-color-2-l: 89%;
--hs-color-3: hsl(207, 10%, 55%);
--hs-color-3-h: 207;
--hs-color-3-s: 10%;
--hs-color-3-l: 55%;
--hs-color-4: hsl(111, 51%, 60%);
--hs-color-4-h: 111;
--hs-color-4-s: 51%;
--hs-color-4-l: 60%;
--hs-color-5: hsl(356, 53%, 49%);
--hs-color-5-h: 356;
--hs-color-5-s: 53%;
--hs-color-5-l: 49%;
--hs-color-6: hsl(47, 85%, 61%);
--hs-color-6-h: 47;
--hs-color-6-s: 85%;
--hs-color-6-l: 61%;
--hs-header-height: 200px;
--font-primary: 'Droid Serif', serif;
--font-secondary: 'Open Sans', sans-serif
}
@supports (--css:variables) {
@media (min-width: 64rem) {
:root {
--hs-header-height: 300px
}
}
}
.cd-main-header {
height: 200px;
height: var(--hs-header-height);
color: #fff;
color: var(--color-white);
background: #303f4a;
background: var(--hs-color-1);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale
}
.cd-main-header h1 {
font-family: open sans, sans-serif;
font-family: var(--font-secondary);
color: inherit
}
.cd-timeline {
padding: 2em 0;
padding: var(--space-lg) 0;
overflow: hidden;
font-family: 'droid serif', serif;
font-family: var(--font-primary);
color: #818d98;
color: var(--hs-color-3);
background-color: #e8eff5;
background-color: hsl(var(--hs-color-2-h), var(--hs-color-2-s), calc(var(--hs-color-2-l) *1.05))
}
.cd-timeline h2 {
font-family: open sans, sans-serif;
font-family: var(--font-secondary);
font-weight: 700
}
.cd-timeline__container {
position: relative;
padding: 1.25em 0;
padding: var(--space-md) 0
}
.cd-timeline__container::before {
position: absolute;
top: 0;
left: 18px;
width: 4px;
height: 100%;
content: '';
background: #d8e5ee;
background: var(--hs-color-2)
}
@media (min-width: 64rem) {
.cd-timeline__container::before {
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%)
}
}
.cd-timeline__block {
position: relative;
z-index: 1;
display: -ms-flexbox;
display: flex;
margin-bottom: 2em;
margin-bottom: var(--space-lg)
}
.cd-timeline__block:last-child {
margin-bottom: 0
}
@media (min-width: 64rem) {
.cd-timeline__block:nth-child(even) {
-ms-flex-direction: row-reverse;
flex-direction: row-reverse
}
}
.cd-timeline__img {
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
-ms-flex-pack: center;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
box-shadow: 0 0 0 4px #fff, inset 0 2px 0 rgba(0, 0, 0, .08), 0 3px 0 4px rgba(0, 0, 0, .05);
box-shadow: 0 0 0 4px var(--color-white), inset 0 2px 0 rgba(0, 0, 0, .08), 0 3px 0 4px rgba(0, 0, 0, .05);
-ms-flex-negative: 0;
flex-shrink: 0
}
.cd-timeline__img img {
width: 24px;
height: 24px
}
@media (min-width: 64rem) {
.cd-timeline__img {
-ms-flex-order: 1;
order: 1;
width: 60px;
height: 60px;
margin-left: calc(5% - 30px);
will-change: transform
}
.cd-timeline__block:nth-child(even) .cd-timeline__img {
margin-right: calc(5% - 30px)
}
}
.cd-timeline__img--picture {
background-color: #75cd65;
background-color: var(--hs-color-4)
}
.cd-timeline__img--movie {
background-color: #bf3b44;
background-color: var(--hs-color-5)
}
.cd-timeline__img--location {
background-color: #f0cb47;
background-color: var(--hs-color-6)
}
.cd-timeline__content {
position: relative;
flex-grow: 1;
padding: 1.25em;
padding: var(--space-md);
margin-left: 1.25em;
margin-left: var(--space-md);
background: #fff;
background: var(--color-white);
border-radius: .25em;
border-radius: var(--radius-md);
box-shadow: 0 3px 0 #d8e5ee;
box-shadow: 0 3px 0 var(--hs-color-2);
-ms-flex-positive: 1
}
.cd-timeline__content::before {
position: absolute;
top: 16px;
right: 100%;
width: 0;
height: 0;
content: '';
border: 7px solid transparent;
border-right-color: #fff;
border-right-color: var(--color-white)
}
.cd-timeline__content h2 {
color: #303f4a;
color: var(--hs-color-1)
}
@media (min-width: 64rem) {
.cd-timeline__content {
--line-height-multiplier: 1.2;
flex-grow: 0;
width: 45%;
margin: 0;
font-size: .8em;
-ms-flex-positive: 0;
will-change: transform;
}
.cd-timeline__content::before {
top: 24px
}
.cd-timeline__block:nth-child(odd) .cd-timeline__content::before {
right: auto;
left: 100%;
width: 0;
height: 0;
border: 7px solid transparent;
border-left-color: #fff;
border-left-color: var(--color-white)
}
}
.cd-timeline__date {
color: hsla(207, 10%, 55%, .7);
color: hsla(var(--hs-color-3-h), var(--hs-color-3-s), var(--hs-color-3-l), 0.7)
}
@media (min-width: 64rem) {
.cd-timeline__date {
position: absolute;
top: 20px;
left: 120%;
width: 100%
}
.cd-timeline__block:nth-child(even) .cd-timeline__date {
right: 120%;
left: auto;
text-align: right
}
}
@media (min-width: 64rem) {
.cd-timeline__img--hidden,
.cd-timeline__content--hidden {
visibility: hidden
}
.cd-timeline__img--bounce-in {
-webkit-animation: cd-bounce-1 .6s;
animation: cd-bounce-1 .6s
}
.cd-timeline__content--bounce-in {
-webkit-animation: cd-bounce-2 .6s;
animation: cd-bounce-2 .6s
}
.cd-timeline__block:nth-child(even) .cd-timeline__content--bounce-in {
-webkit-animation-name: cd-bounce-2-inverse;
animation-name: cd-bounce-2-inverse
}
}
@-webkit-keyframes cd-bounce-1 {
0% {
opacity: 0;
-webkit-transform: scale(.5);
transform: scale(.5)
}
60% {
opacity: 1;
-webkit-transform: scale(1.2);
transform: scale(1.2)
}
100% {
-webkit-transform: scale(1);
transform: scale(1)
}
}
@keyframes cd-bounce-1 {
0% {
opacity: 0;
-webkit-transform: scale(.5);
transform: scale(.5)
}
60% {
opacity: 1;
-webkit-transform: scale(1.2);
transform: scale(1.2)
}
100% {
-webkit-transform: scale(1);
transform: scale(1)
}
}
@-webkit-keyframes cd-bounce-2 {
0% {
opacity: 0;
-webkit-transform: translateX(-100px);
transform: translateX(-100px)
}
60% {
opacity: 1;
-webkit-transform: translateX(20px);
transform: translateX(20px)
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
}
@keyframes cd-bounce-2 {
0% {
opacity: 0;
-webkit-transform: translateX(-100px);
transform: translateX(-100px)
}
60% {
opacity: 1;
-webkit-transform: translateX(20px);
transform: translateX(20px)
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
}
@-webkit-keyframes cd-bounce-2-inverse {
0% {
opacity: 0;
-webkit-transform: translateX(100px);
transform: translateX(100px)
}
60% {
opacity: 1;
-webkit-transform: translateX(-20px);
transform: translateX(-20px)
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
}
@keyframes hs-bounce-2-inverse {
0% {
opacity: 0;
-webkit-transform: translateX(100px);
transform: translateX(100px)
}
60% {
opacity: 1;
-webkit-transform: translateX(-20px);
transform: translateX(-20px)
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
}
/* */
@keyframes hs-bounce-1 {
0% {
opacity: 0;
-webkit-transform: scale(0.5);
transform: scale(0.5)
}
60% {
opacity: 1;
-webkit-transform: scale(1.2);
transform: scale(1.2)
}
100% {
-webkit-transform: scale(1);
transform: scale(1)
}
}
@keyframes hs-bounce-2 {
0% {
opacity: 0;
-webkit-transform: translateX(-100px);
transform: translateX(-100px)
}
60% {
opacity: 1;
-webkit-transform: translateX(20px);
transform: translateX(20px)
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
}
@keyframes hs-bounce-2-inverse {
0% {
opacity: 0;
-webkit-transform: translateX(100px);
transform: translateX(100px)
}
60% {
opacity: 1;
-webkit-transform: translateX(-20px);
transform: translateX(-20px)
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
}
:root {
--yellow: #fed136;
--primary: var(--yellow);
--yiq-contrasted-threshold: 205;
--hs-color_red: #e2001a;
--hs-color_red-orange: #f63a0f;
--hs-color_orange: #f27011;
--hs-color_dark-yellow: #f2b01e;
--hs-color_yellow: #f2d31b;
--hs-color_yellow--light: #ffe659;
--hs-color_yellow--dark: #e2b900;
--hs-color_lime: #86e01e;
--hs-color_light-lime: #e7ffcb;
--hs-color_green: #4cd964;
--hs-color_green--light: #93ff7e;
--hs-color_green--dark: #468c1f;
--hs-color_silver: #aaa;
--hs-color_purple: #9a39d3;
--hs-color_turquoise: #5ac8fa;
--hs-color_blue-semimuted: #4997cd;
--hs-theme-primary: #fed136;
--hs-theme-primary--trans50: rgba(254, 211, 54, 0.5);
--hs-theme-danger: #e74c3c;
--hs-theme-background-primary: #f8f8f8;
--hs-theme-background-secondary: #ebebeb;
--hs-black: #000;
--hs-black_15: rgba(0, 0, 0, 0.15);
--hs-black_25: rgba(0, 0, 0, 0.25);
--hs-black_45: rgba(0, 0, 0, 0.45);
--hs-black_50: rgba(0, 0, 0, 0.5);
--hs-black_75: rgba(0, 0, 0, 0.75);
--hs-gray-base: #111;
--hs-gray-medium: #2f2f31;
--hs-gray-darker: #333;
--hs-gray-dark: #333;
--hs-gray: #555;
--hs-gray-light: #777;
--hs-gray-lighter: #dedede;
--hs-gray-lighter-05: #e9e9ed;
--hs-gray-lightest: #eee;
--hs-white: #fff;
--hs-white_2: #f2f2f2;
--hs-white_5: #f8f8f8;
--hs-white_8: rgba(255, 255, 255, 0.08);
--hs-white_10: rgba(255, 255, 255, 0.1);
--hs-white_30: rgba(255, 255, 255, 0.3);
--hs-white_60: rgba(255, 255, 255, 0.6);
--hs-white_100: rgba(255, 255, 255, 1);
--hs-blueGray-medium: #507386;
--hs-blueGray-medium-muted: #476e82;
--hs-blueGray-medium-saturated: #136591;
--hs-blueGray-dark: #0f161d;
--hs-blueGray-very-dark: #181a1b;
--hs-blueGray-darker: #0c0f11;
--hs-blueGray-darker--alpha75: rgba(12, 15, 17, 0.75);
--hs-blueGray-light: #2d373c;
--hs-text-onDark: #fff;
--hs-green-light: #80cc94;
--hs-blue-light: #0291ca;
--hs-blue-lighter: #78bad8;
--hs-blue-lightest: #a8dfff;
--hs-blue-light-muted: #80b6cc;
--hs-blue-lighter-muted: #8ec1d9;
--hs-blue-lightest-muted: #9bcbe6;
--hs-blue-dark: #1e364e;
--hs-link-primary: var(--hs-theme-primary);
--hs-baige-light: #cac1ac;
--hs-baige-medium: #a79e8b;
--hs-theme-color-text: var(--hs-gray-dark);
--hs-theme-color-text-onDark: var(--hs-white);
--hs-font-cursive-Caveat: "Caveat", cursive;
--hs-font-cursive-NYCD: "Nothing You Could Do", cursive;
--hs-font-cursive-Sedgwick: "Sedgwick Ave Display", cursive;
--hs-text-shadow-light: 0px 0px 4px rgba(0, 0, 0, .95);
--hs-text-shadow-light-spread: 0px 4px 13px rgba(0, 0, 0, .75);
--hs-text-shadow-medium: 0px 0px 10px rgba(0, 0, 0, .85);
--hs-canvas: var(--hs-white_5);
--hs-surface: var(--hs-white);
--hs-grid-columns: 12;
--hs-grid-gutter-width: 30px;
--hs-grid-row-columns: 6;
--hs-spacing--sm: .5rem;
--hs-spacing--md: 1rem;
--hs-spacing--lg: 1.5 rem;
--hs-border-width: 1px;
--hs-border-color: --hs-gray-lighter;
--enable-rounded: true;
--hs-border-radius: .25rem;
--hs-border-radius-sm: .125rem;
--hs-border-radius-lg: .5rem;
--hs-border-radius-md: .25%;
--hs-box-shadow-glow: 0px 4px 16px 2px rgba(255, 255, 255, 0.5);
--hs-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
--hs-shadow-heavy: 2px 0.5rem 0.5rem rgba(0, 0, 0, 0.5);
--hs-shadow-xs: 2px 0.2rem 0.2rem rgba(0, 0, 0, 0.15);
--hs-shadow-xs-reverse: 0 0.2rem 0.2rem rgba(0, 0, 0, 0.15);
--hs-shadow-xs-center: 0 0.2rem 0.2rem rgba(0, 0, 0, 0.15);
--hs-shadow-xs-center-xtra: 0 0.2rem 0.2rem rgba(0, 0, 0, 0.15), 0 0.2rem 0.2rem rgba(0, 0, 0, 0.15);
--hs-shadow-xs-center-reverse: -2px 0.1rem 0.2rem rgba(0, 0, 0, 0.15);
--hs-shadow-sm: 0px 2px 4px 0px rgba(0, 0, 0, .5);
--hs-shadow-lg: 0px 4px 8px 3px rgba(0, 0, 0, .4) rgba(0, 0, 0, 0.4);
--hs-shadow-inset-blue: inset 0 0 0 2px #5173ff;
--hs-shadow-none: none;
--hs-card-shadow: rgba(0, 0, 0, 0.2) 0px 2px 1px -1px, rgba(0, 0, 0, 0.14) 0px 1px 1px 0px, rgba(0, 0, 0, 0.12) 0px 1px 3px 0px;
--hs-bg-black-to-transparent: linear-gradient(0deg, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 1) 100%);
--hs-card-width: 100%;
--hs-card-height: 100%;
--hs-card-title: 2rem;
--hs-card-subtitle: calc(var(--hs-card-title) - 10%);
--hs-card-img-width: var(--hs-card-width);
--hs-card-img-height: 100%;
--hs-card-width--sm: 265px;
--hs-card-title--sm: 1.3rem;
--hs-card-subtitle--sm: calc(var(--hs-card-title--sm) - 10%);
--hs-card-img-width--sm: var(--hs-card-width--sm);
--hs-card-img-height--sm: 100%;
--hs-card-width--lg: 400px;
--hs-card-title--lg: 2.3rem;
--hs-card-subtitle--lg: calc(var(--hs-card-title--lg) - 10%);
--hs-card-img-width--lg: var(--hs-card-width--lg);
--hs-card-img-height--lg: 287px;
--hs-card-width--fluid: 100%;
--hs-card-title--fluid: 2.4rem;
--hs-card-subtitle--fluid: calc(var(--hs-card-title--fluid) - 10%);
--hs-card-img-width--fluid: var(--hs-card-width--fluid);
--hs-card-img-height--fluid: 100%;
--hs-card-margin: .5rem;
--hs-card-spacer-y: .75rem;
--hs-card-spacer-x: 1.25rem;
--hs-card-border-width: $(--hs-border-width);
--hs-card-border-radius: $(--hs-border-radius);
--hs-card-border-color: rgba(--hs-black, .125);
--hs-card-inner-border-radius: $(--hs-border-radius-sm);
--hs-card-cap-bg: rgba(--hs-black, .03);
--hs-card-cap-color: null;
--hs-card-color: null;
--hs-card-bg: $(--hs-white);
--hs-card-img-overlay-padding: 1.25rem;
--hs-card-group-margin: calc(var(--hs-grid-gutter-width) / 2);
--hs-card-deck-margin: var(--hs-card-group-margin);
--hs-card-columns-count: 3;
--hs-card-columns-gap: 1.25rem;
--hs-card-columns-margin: var(--hs-card-spacer-y);
--hs-zindex-dropdown: 1000;
--hs-zindex-sticky: 1020;
--hs-zindex-fixed: 1030;
--hs-zindex-modal-backdrop: 1040;
--hs-zindex-modal: 1050;
--hs-zindex-popover: 1060;
--hs-zindex-tooltip: 1070;
--hs-circle: 50%;
--hs-pill: 500%
}
.hs-card {
position: relative;
display: flex;
flex-direction: column;
min-width: 0;
height: 100%;
margin: 0.3125rem auto;
word-wrap: break-word;
background-color: #dedede;
background-clip: border-box;
border: 1px;
border-radius: 0.25rem
}
.hs-card .hs-display-block {
display: block
}
.hs-card .hs-display-none {
display: none
}
.hs-card >.hs-card_header {
display: flex;
width: 100%;
height: auto;
padding: 0;
margin-bottom: 0;
background-color: rgba(0, 0, 0, 0.03);
border-bottom: 1px solid rgba(0, 0, 0, 0.125)
}
.hs-card >.hs-card_header:first-child {
border-radius: 0.125rem 0.125rem 0 0
}
.hs-card >.hs-card_header +.list-group .list-group_item:first-child {
border-top: 0
}
.hs-card >.hs-card_header >.hs-overlay {
position: relative;
width: 100%
}
.hs-card >.hs-card_header >.hs-overlay::before {
position: absolute;
z-index: -1;
width: 100%;
height: 0;
content: "";
background-color: rgba(254, 209, 54, 0.1);
transition: all ease 0.3s
}
.hs-card >.hs-card_header >.hs-overlay:hover::before {
top: 0px;
left: 0px;
z-index: 1000;
width: 100%;
height: 100%;
font-size: 1rem;
color: #fff;
content: "";
background-color: rgba(254, 209, 54, 0.75);
transition: all ease 0.3s
}
.hs-card >.hs-card_header >.hs-overlay::after {
position: absolute;
top: 0%;
left: 50%;
z-index: 1001;
width: 100%;
height: 80px;
font-size: 3rem;
line-height: normal;
color: #fff;
text-align: center;
white-space: nowrap;
content: "";
background-image: url("data:image/svg+xml;charset=UTF-8, %3csvg version='1.1' id='Layer_1' focusable='false' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='400px' height='262px' viewBox='0 0 400 262' enable-background='new 0 0 400 262' xml:space='preserve'%3e%3cpath fill='%23FFFFFF' stroke='%23FFFFFF' stroke-miterlimit='10' d='M298.25,106.438h-73.688V32.75c0-9.042-7.333-16.375-16.375-16.375 h-16.375c-9.042,0-16.375,7.333-16.375,16.375v73.688H101.75c-9.042,0-16.375,7.333-16.375,16.375v16.375 c0,9.042,7.333,16.375,16.375,16.375h73.688v73.688c0,9.042,7.333,16.375,16.375,16.375h16.375c9.042,0,16.375-7.333,16.375-16.375 v-73.688h73.688c9.042,0,16.375-7.333,16.375-16.375v-16.375C314.625,113.771,307.292,106.438,298.25,106.438z'/%3e%3c/svg%3e");
background-repeat: no-repeat;
background-position-x: center;
background-position-y: top 40px;
background-size: 16px;
opacity: 0;
transition: all ease 0.3s;
transform: translate(-50%)
}
.hs-card >.hs-card_header >.hs-overlay:hover::after {
top: 50%;
left: 0%;
z-index: 1001;
content: "";
background-position-x: center;
background-position-y: bottom 40px;
background-size: 48px;
opacity: 1;
transition: all ease 0.3s;
transform: translate(0%)
}
.hs-card >.list-group {
border-top: inherit;
border-bottom: inherit
}
.hs-card >.list-group:first-child {
border-top-width: 0;
border-top-left-radius: 0.125rem;
border-top-right-radius: 0.125rem
}
.hs-card >.list-group:last-child {
border-bottom-width: 0;
border-bottom-right-radius: 0.125rem;
border-bottom-left-radius: 0.125rem
}
.hs-card >hr {
margin-right: 0;
margin-left: 0
}
.hs-card .hs-card_footer {
background-color: rgba(0, 0, 0, 0.03);
border-top: 1px solid rgba(0, 0, 0, 0.125)
}
.hs-card .hs-card_footer:last-child {
border-radius: 0 0 0.125rem 0.125rem
}
.hs-card .hs-card_footer.dark {
background-color: #0f161d
}
.hs-card .hs-card_footer .hs-logo-row--footer ul.flex-container.space-between {
display: flex;
align-items: center;
max-width: 90%;
padding: 0;
margin: 0;
list-style: none
}
.hs-card .hs-card_footer .hs-logo-row--footer ul.flex-container.space-between li.flex-item {
display: inline-block;
flex: 1 1 auto;
width: auto
}
.hs-card_img-header_img {
width: 100%;
width: 100%;
height: auto
}
.hs-card_img-header_img--sm {
width: 100%;
height: auto
}
.hs-card_img-header_img--sm .hs-card_img-header_img {
width: 100%;
height: auto
}
.hs-card_img-header_img--lg {
width: 400px;
height: auto
}
.hs-card_img-header_img--lg .hs-card_img-header_img {
width: 400px;
height: auto
}
.hs-card_img-header_img--fluid {
width: 100%;
height: auto
}
.hs-card_body {
flex: 1 1 auto;
width: 100%;
width: 100%;
overflow: hidden;
background-color: #f8f8f8
}
.hs-card_content {
width: 100%;
padding: 12px 1rem;
line-height: 1;
text-align: left;
background-color: #fff
}
.hs-card_title {
margin-bottom: 0.75rem
}
.hs-card_subtitle {
margin-top: -0.375rem;
margin-bottom: 0
}
.hs-card_linkhover {
text-decoration: none
}
.hs-card_header {
display: flex;
width: 100%;
padding: 0.5rem;
margin-bottom: 0;
background-color: rgba(0, 0, 0, 0.03);
border-bottom: 1px solid rgba(0, 0, 0, 0.125)
}
.hs-card_header:first-child {
border-radius: 0
}
.hs-card_header +.list-group .list-group_item:first-child {
border-top: 0
}
.hs-card_header-tabs {
margin-right: -0.625rem;
margin-bottom: -0.75rem;
margin-left: -0.625rem;
border-bottom: 0
}
.hs-card_header-pills {
margin-right: -0.625rem;
margin-left: -0.625rem
}
.hs-card_img-header_overlay,
[class^=hs-card_img-headerr_overlay--] {
position: relative
}
.hs-card_img-header_overlay::before,
[class^=hs-card_img-headerr_overlay--]::before {
position: absolute;
z-index: 99;
width: 100%;
height: 100%;
content: "";
background-color: rgba(254, 209, 54, 0.1);
opacity: 1;
transition: all ease 0.3s;
transform: translate(0%, 0%)
}
.hs-card_img-header_overlay:hover::before,
[class^=hs-card_img-headerr_overlay--]:hover::before {
top: 0px;
left: 0px;
z-index: 99;
width: 100%;
height: 100%;
color: #fff;
content: "";
background-color: rgba(254, 209, 54, 0.75);
background-image: url("data:image/svg+xml;charset=utf-8, %3c?xml version='1.0'encoding='utf-8'?%3e%3c !-- generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version:6.00 Build 0) --%3e%3c !DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN''http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg version='1.1'id='Layer_1'xmlns='http://www.w3.org/2000/svg'xmlns:xlink='http://www.w3.org/1999/xlink'x='0px'y='0px'width='48px'height='48px'viewBox='0 0 48 48'enable-background='new 0 0 48 48'xml:space='preserve'%3e%3cpath fill='%23FFFFFF'd='M47,18.25H29.75V1h-11.5v17.25H1v11.5h17.25V47h11.5V29.75H47V18.25z'/%3e%3c/svg%3e");
background-repeat: no-repeat;
background-position: center center;
background-size: 48px;
opacity: 1;
transform: translate(0%, 0%)
}
@media (min-width: 48rem) {
.hs-card {
margin: inherit
}
.hs-card--sm {
display: inline-block;
width: 265px
}
.hs-card--lg {
display: inline-block;
width: 400px
}
.hs-card--fluid {
display: inline-block;
width: 100%
}
}
@media (min-width: 64rem) {
.hs-card {
margin: inherit
}
.hs-card--sm {
display: inline-block;
width: 265px
}
.hs-card--md {
display: inline-block;
width: 400px;
max-width: 100%
}
.hs-card--lg {
display: inline-block;
width: 600px
}
.hs-card--fluid {
display: inline-block;
width: 100%
}
}
@media (min-width: 80rem) {
.hs-card {
margin: inherit
}
.hs-card--sm {
display: inline-block;
width: 265px
}
.hs-card--md {
display: inline-block;
width: 500px
}
.hs-card--lg {
display: inline-block;
width: 80%
}
.hs-card--fluid {
display: inline-block;
width: 100%
}
}
.hs-card_img,
.hs-card_img--top,
.hs-card_img--bottom {
flex-shrink: 0;
width: 100%
}
.hs-card_img,
.hs-card_img--top {
border-top-left-radius: 0.125rem;
border-top-right-radius: 0.125rem
}
.hs-card_img,
.hs-card_img--bottom {
border-bottom-right-radius: 0.125rem;
border-bottom-left-radius: 0.125rem
}
.hs-card-deck .hs-card {
margin-bottom: 15px
}
@media (min-width: 576px) {
.hs-card-deck {
display: -ms-flexbox;
display: flex;
-ms-flex-flow: row wrap;
flex-flow: row wrap;
margin-right: -15px;
margin-left: -15px
}
.hs-card-deck .hs-card {
-ms-flex: 1 0 0%;
flex: 1 0 0%;
margin-right: 15px;
margin-bottom: 15px;
margin-left: 15px
}
}
@media (min-width: 576px) {
.hs-card-group {
display: -ms-flexbox;
display: flex;
-ms-flex-flow: row wrap;
flex-flow: row wrap
}
.hs-card-group >.hs-card {
-ms-flex: 1 0 0%;
flex: 1 0 0%;
margin-bottom: 15px
}
.hs-card-group >.hs-card +.hs-card {
margin-left: 0;
border-left: 0
}
.hs-card-group >.hs-card:not(:last-child) {
border-top-right-radius: 0;
border-bottom-right-radius: 0
}
.hs-card-group >.hs-card:not(:last-child) .hs-card_img--top,
.hs-card-group >.hs-card:not(:last-child) .hs-card_header {
border-top-right-radius: 0
}
.hs-card-group >.hs-card:not(:last-child) .hs-card_img--bottom,
.hs-card-group >.hs-card:not(:last-child) .hs-card_footer {
border-bottom-right-radius: 0
}
.hs-card-group >.hs-card:not(:first-child) {
border-top-left-radius: 0;
border-bottom-left-radius: 0
}
.hs-card-group >.hs-card:not(:first-child) .hs-card_img--top,
.hs-card-group >.hs-card:not(:first-child) .hs-card_header {
border-top-left-radius: 0
}
.hs-card-group >.hs-card:not(:first-child) .hs-card_img--bottom,
.hs-card-group >.hs-card:not(:first-child) .hs-card_footer {
border-bottom-left-radius: 0
}
}
@media (min-width: 576px) {
.hs-card-columns {
-webkit-column-count: 3;
-moz-column-count: 3;
column-count: 3;
-webkit-column-gap: 1.25rem;
-moz-column-gap: 1.25rem;
column-gap: 1.25rem;
orphans: 1;
widows: 1
}
.hs-card-columns .hs-card {
display: inline-block;
width: 100%
}
}
.hs-dev-logo {
vertical-align: middle;
filter: grayscale(60%);
opacity: 0.5
}
.hs-logo-row--footer {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
max-height: 96px;
padding: 0.5rem
}
.hs-logo-row--footer .hs-dev-logo {
width: 24px;
vertical-align: middle
}
.hs-skills-logo {
vertical-align: middle
}
.hs-divider {
display: flex;
height: 30px
}
.hs-card_text:last-child {
margin-bottom: 0
}
.hs-card_link +.hs-card_link {
margin-left: 1.25rem
}
.hs-card-deck .hs-card {
margin-bottom: 15px
}
.hs-card-group >.hs-card {
margin-bottom: 15px
}
.hs-card_columns .hs-card {
margin-bottom: 0.75rem
}
.accordion >.hs-card {
overflow: hidden
}
.accordion >.hs-card:not(:last-of-type) {
border-bottom: 0;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0
}
.accordion >.hs-card:not(:first-of-type) {
border-top-left-radius: 0;
border-top-right-radius: 0
}
.accordion >.hs-card >.hs-card_header {
padding: 0.5rem;
margin-bottom: -1px;
border-radius: 0
}
.footer-logos {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
width: 100%;
padding: 10px;
margin: 0px 10px;
margin-block-start: 0px;
margin-block-end: 0px;
padding-inline-start: 0px;
padding-inline-end: 0px;
list-style: none
}
.footer-logos .flex-item {
flex: none
} | src/scss/temp.css | @import "https://fonts.googleapis.com/css?family=Droid+Serif|Open+Sans:400,700";
*,
*::after,
*::before {
box-sizing: inherit
}
* {
font: inherit
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
hr {
padding: 0;
margin: 0;
border: 0
}
html {
box-sizing: border-box
}
body {
background-color: #fff;
background-color: var(--color-bg, white)
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main,
form legend {
display: block
}
ol,
ul {
list-style: none
}
blockquote,
q {
quotes: none
}
button,
input,
textarea,
select {
margin: 0
}
.btn,
.form-control,
.link,
.reset {
padding: 0;
line-height: inherit;
color: inherit;
background-color: transparent;
border: 0;
border-radius: 0;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none
}
select.form-control::-ms-expand {
display: none
}
textarea {
overflow: auto;
vertical-align: top;
resize: vertical
}
input::-ms-clear {
display: none
}
table {
border-spacing: 0;
border-collapse: collapse
}
img,
video,
svg {
max-width: 100%
}
[data-theme] {
color: #313135;
color: var(--color-contrast-high, #313135);
background-color: #fff;
background-color: var(--color-bg, #fff)
}
:root {
--space-unit: 1em;
--space-xxxxs: calc(0.125*var(--space-unit));
--space-xxxs: calc(0.25*var(--space-unit));
--space-xxs: calc(0.375*var(--space-unit));
--space-xs: calc(0.5*var(--space-unit));
--space-sm: calc(0.75*var(--space-unit));
--space-md: calc(1.25*var(--space-unit));
--space-lg: calc(2*var(--space-unit));
--space-xl: calc(3.25*var(--space-unit));
--space-xxl: calc(5.25*var(--space-unit));
--space-xxxl: calc(8.5*var(--space-unit));
--space-xxxxl: calc(13.75*var(--space-unit));
--component-padding: var(--space-md)
}
:root {
--max-width-xxs: 32rem;
--max-width-xs: 38rem;
--max-width-sm: 48rem;
--max-width-md: 64rem;
--max-width-lg: 80rem;
--max-width-xl: 90rem;
--max-width-xxl: 120rem
}
.container {
width: calc(100% - 1.25em);
width: calc(100% - 2*var(--component-padding));
margin-right: auto;
margin-left: auto
}
.max-width-xxs {
max-width: 32rem;
max-width: var(--max-width-xxs)
}
.max-width-xs {
max-width: 38rem;
max-width: var(--max-width-xs)
}
.max-width-sm {
max-width: 48rem;
max-width: var(--max-width-sm)
}
.max-width-md {
max-width: 64rem;
max-width: var(--max-width-md)
}
.max-width-lg {
max-width: 80rem;
max-width: var(--max-width-lg)
}
.max-width-xl {
max-width: 90rem;
max-width: var(--max-width-xl)
}
.max-width-xxl {
max-width: 120rem;
max-width: var(--max-width-xxl)
}
.max-width-adaptive-sm {
max-width: 38rem;
max-width: var(--max-width-xs)
}
@media (min-width: 64rem) {
.max-width-adaptive-sm {
max-width: 48rem;
max-width: var(--max-width-sm)
}
}
.max-width-adaptive-md {
max-width: 38rem;
max-width: var(--max-width-xs)
}
@media (min-width: 64rem) {
.max-width-adaptive-md {
max-width: 64rem;
max-width: var(--max-width-md)
}
}
.max-width-adaptive,
.max-width-adaptive-lg {
max-width: 38rem;
max-width: var(--max-width-xs)
}
@media (min-width: 64rem) {
.max-width-adaptive,
.max-width-adaptive-lg {
max-width: 64rem;
max-width: var(--max-width-md)
}
}
@media (min-width: 90rem) {
.max-width-adaptive,
.max-width-adaptive-lg {
max-width: 80rem;
max-width: var(--max-width-lg)
}
}
.max-width-adaptive-xl {
max-width: 38rem;
max-width: var(--max-width-xs)
}
@media (min-width: 64rem) {
.max-width-adaptive-xl {
max-width: 64rem;
max-width: var(--max-width-md)
}
}
@media (min-width: 90rem) {
.max-width-adaptive-xl {
max-width: 90rem;
max-width: var(--max-width-xl)
}
}
.grid {
--grid-gap: 0px;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.grid >* {
-ms-flex-preferred-size: 100%;
flex-basis: 100%
}
[class*=grid-gap] {
margin-right: 1em * -1;
margin-right: calc(var(--grid-gap, 1em) *-1);
margin-bottom: 1em * -1;
margin-bottom: calc(var(--grid-gap, 1em) *-1)
}
[class*=grid-gap] >* {
margin-right: 1em;
margin-right: var(--grid-gap, 1em);
margin-bottom: 1em;
margin-bottom: var(--grid-gap, 1em)
}
.grid-gap-xxxxs {
--grid-gap: var(--space-xxxxs)
}
.grid-gap-xxxs {
--grid-gap: var(--space-xxxs)
}
.grid-gap-xxs {
--grid-gap: var(--space-xxs)
}
.grid-gap-xs {
--grid-gap: var(--space-xs)
}
.grid-gap-sm {
--grid-gap: var(--space-sm)
}
.grid-gap-md {
--grid-gap: var(--space-md)
}
.grid-gap-lg {
--grid-gap: var(--space-lg)
}
.grid-gap-xl {
--grid-gap: var(--space-xl)
}
.grid-gap-xxl {
--grid-gap: var(--space-xxl)
}
.grid-gap-xxxl {
--grid-gap: var(--space-xxxl)
}
.grid-gap-xxxxl {
--grid-gap: var(--space-xxxxl)
}
.col {
flex-basis: 0;
flex-grow: 1;
max-width: 100%;
-ms-flex-positive: 1;
-ms-flex-preferred-size: 0
}
.col-1 {
-ms-flex-preferred-size: calc(8.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(8.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(8.33% - 0.01px - 1em);
flex-basis: calc(8.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(8.33% - 0.01px - 1em);
max-width: calc(8.33% - 0.01px - var(--grid-gap, 1em))
}
.col-2 {
-ms-flex-preferred-size: calc(16.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(16.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(16.66% - 0.01px - 1em);
flex-basis: calc(16.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(16.66% - 0.01px - 1em);
max-width: calc(16.66% - 0.01px - var(--grid-gap, 1em))
}
.col-3 {
-ms-flex-preferred-size: calc(25% - 0.01px - 1em);
-ms-flex-preferred-size: calc(25% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(25% - 0.01px - 1em);
flex-basis: calc(25% - 0.01px - var(--grid-gap, 1em));
max-width: calc(25% - 0.01px - 1em);
max-width: calc(25% - 0.01px - var(--grid-gap, 1em))
}
.col-4 {
-ms-flex-preferred-size: calc(33.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(33.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(33.33% - 0.01px - 1em);
flex-basis: calc(33.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(33.33% - 0.01px - 1em);
max-width: calc(33.33% - 0.01px - var(--grid-gap, 1em))
}
.col-5 {
-ms-flex-preferred-size: calc(41.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(41.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(41.66% - 0.01px - 1em);
flex-basis: calc(41.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(41.66% - 0.01px - 1em);
max-width: calc(41.66% - 0.01px - var(--grid-gap, 1em))
}
.col-6 {
-ms-flex-preferred-size: calc(50% - 0.01px - 1em);
-ms-flex-preferred-size: calc(50% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(50% - 0.01px - 1em);
flex-basis: calc(50% - 0.01px - var(--grid-gap, 1em));
max-width: calc(50% - 0.01px - 1em);
max-width: calc(50% - 0.01px - var(--grid-gap, 1em))
}
.col-7 {
-ms-flex-preferred-size: calc(58.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(58.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(58.33% - 0.01px - 1em);
flex-basis: calc(58.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(58.33% - 0.01px - 1em);
max-width: calc(58.33% - 0.01px - var(--grid-gap, 1em))
}
.col-8 {
-ms-flex-preferred-size: calc(66.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(66.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(66.66% - 0.01px - 1em);
flex-basis: calc(66.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(66.66% - 0.01px - 1em);
max-width: calc(66.66% - 0.01px - var(--grid-gap, 1em))
}
.col-9 {
-ms-flex-preferred-size: calc(75% - 0.01px - 1em);
-ms-flex-preferred-size: calc(75% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(75% - 0.01px - 1em);
flex-basis: calc(75% - 0.01px - var(--grid-gap, 1em));
max-width: calc(75% - 0.01px - 1em);
max-width: calc(75% - 0.01px - var(--grid-gap, 1em))
}
.col-10 {
-ms-flex-preferred-size: calc(83.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(83.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(83.33% - 0.01px - 1em);
flex-basis: calc(83.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(83.33% - 0.01px - 1em);
max-width: calc(83.33% - 0.01px - var(--grid-gap, 1em))
}
.col-11 {
-ms-flex-preferred-size: calc(91.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(91.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(91.66% - 0.01px - 1em);
flex-basis: calc(91.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(91.66% - 0.01px - 1em);
max-width: calc(91.66% - 0.01px - var(--grid-gap, 1em))
}
.col-12 {
-ms-flex-preferred-size: calc(100% - 0.01px - 1em);
-ms-flex-preferred-size: calc(100% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(100% - 0.01px - 1em);
flex-basis: calc(100% - 0.01px - var(--grid-gap, 1em));
max-width: calc(100% - 0.01px - 1em);
max-width: calc(100% - 0.01px - var(--grid-gap, 1em))
}
@media (min-width: 32rem) {
.col\@xs {
flex-basis: 0;
flex-grow: 1;
max-width: 100%;
-ms-flex-positive: 1;
-ms-flex-preferred-size: 0
}
.col-1\@xs {
-ms-flex-preferred-size: calc(8.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(8.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(8.33% - 0.01px - 1em);
flex-basis: calc(8.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(8.33% - 0.01px - 1em);
max-width: calc(8.33% - 0.01px - var(--grid-gap, 1em))
}
.col-2\@xs {
-ms-flex-preferred-size: calc(16.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(16.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(16.66% - 0.01px - 1em);
flex-basis: calc(16.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(16.66% - 0.01px - 1em);
max-width: calc(16.66% - 0.01px - var(--grid-gap, 1em))
}
.col-3\@xs {
-ms-flex-preferred-size: calc(25% - 0.01px - 1em);
-ms-flex-preferred-size: calc(25% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(25% - 0.01px - 1em);
flex-basis: calc(25% - 0.01px - var(--grid-gap, 1em));
max-width: calc(25% - 0.01px - 1em);
max-width: calc(25% - 0.01px - var(--grid-gap, 1em))
}
.col-4\@xs {
-ms-flex-preferred-size: calc(33.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(33.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(33.33% - 0.01px - 1em);
flex-basis: calc(33.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(33.33% - 0.01px - 1em);
max-width: calc(33.33% - 0.01px - var(--grid-gap, 1em))
}
.col-5\@xs {
-ms-flex-preferred-size: calc(41.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(41.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(41.66% - 0.01px - 1em);
flex-basis: calc(41.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(41.66% - 0.01px - 1em);
max-width: calc(41.66% - 0.01px - var(--grid-gap, 1em))
}
.col-6\@xs {
-ms-flex-preferred-size: calc(50% - 0.01px - 1em);
-ms-flex-preferred-size: calc(50% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(50% - 0.01px - 1em);
flex-basis: calc(50% - 0.01px - var(--grid-gap, 1em));
max-width: calc(50% - 0.01px - 1em);
max-width: calc(50% - 0.01px - var(--grid-gap, 1em))
}
.col-7\@xs {
-ms-flex-preferred-size: calc(58.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(58.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(58.33% - 0.01px - 1em);
flex-basis: calc(58.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(58.33% - 0.01px - 1em);
max-width: calc(58.33% - 0.01px - var(--grid-gap, 1em))
}
.col-8\@xs {
-ms-flex-preferred-size: calc(66.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(66.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(66.66% - 0.01px - 1em);
flex-basis: calc(66.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(66.66% - 0.01px - 1em);
max-width: calc(66.66% - 0.01px - var(--grid-gap, 1em))
}
.col-9\@xs {
-ms-flex-preferred-size: calc(75% - 0.01px - 1em);
-ms-flex-preferred-size: calc(75% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(75% - 0.01px - 1em);
flex-basis: calc(75% - 0.01px - var(--grid-gap, 1em));
max-width: calc(75% - 0.01px - 1em);
max-width: calc(75% - 0.01px - var(--grid-gap, 1em))
}
.col-10\@xs {
-ms-flex-preferred-size: calc(83.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(83.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(83.33% - 0.01px - 1em);
flex-basis: calc(83.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(83.33% - 0.01px - 1em);
max-width: calc(83.33% - 0.01px - var(--grid-gap, 1em))
}
.col-11\@xs {
-ms-flex-preferred-size: calc(91.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(91.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(91.66% - 0.01px - 1em);
flex-basis: calc(91.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(91.66% - 0.01px - 1em);
max-width: calc(91.66% - 0.01px - var(--grid-gap, 1em))
}
.col-12\@xs {
-ms-flex-preferred-size: calc(100% - 0.01px - 1em);
-ms-flex-preferred-size: calc(100% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(100% - 0.01px - 1em);
flex-basis: calc(100% - 0.01px - var(--grid-gap, 1em));
max-width: calc(100% - 0.01px - 1em);
max-width: calc(100% - 0.01px - var(--grid-gap, 1em))
}
}
@media (min-width: 48rem) {
.col\@sm {
flex-basis: 0;
flex-grow: 1;
max-width: 100%;
-ms-flex-positive: 1;
-ms-flex-preferred-size: 0
}
.col-1\@sm {
-ms-flex-preferred-size: calc(8.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(8.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(8.33% - 0.01px - 1em);
flex-basis: calc(8.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(8.33% - 0.01px - 1em);
max-width: calc(8.33% - 0.01px - var(--grid-gap, 1em))
}
.col-2\@sm {
-ms-flex-preferred-size: calc(16.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(16.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(16.66% - 0.01px - 1em);
flex-basis: calc(16.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(16.66% - 0.01px - 1em);
max-width: calc(16.66% - 0.01px - var(--grid-gap, 1em))
}
.col-3\@sm {
-ms-flex-preferred-size: calc(25% - 0.01px - 1em);
-ms-flex-preferred-size: calc(25% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(25% - 0.01px - 1em);
flex-basis: calc(25% - 0.01px - var(--grid-gap, 1em));
max-width: calc(25% - 0.01px - 1em);
max-width: calc(25% - 0.01px - var(--grid-gap, 1em))
}
.col-4\@sm {
-ms-flex-preferred-size: calc(33.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(33.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(33.33% - 0.01px - 1em);
flex-basis: calc(33.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(33.33% - 0.01px - 1em);
max-width: calc(33.33% - 0.01px - var(--grid-gap, 1em))
}
.col-5\@sm {
-ms-flex-preferred-size: calc(41.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(41.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(41.66% - 0.01px - 1em);
flex-basis: calc(41.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(41.66% - 0.01px - 1em);
max-width: calc(41.66% - 0.01px - var(--grid-gap, 1em))
}
.col-6\@sm {
-ms-flex-preferred-size: calc(50% - 0.01px - 1em);
-ms-flex-preferred-size: calc(50% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(50% - 0.01px - 1em);
flex-basis: calc(50% - 0.01px - var(--grid-gap, 1em));
max-width: calc(50% - 0.01px - 1em);
max-width: calc(50% - 0.01px - var(--grid-gap, 1em))
}
.col-7\@sm {
-ms-flex-preferred-size: calc(58.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(58.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(58.33% - 0.01px - 1em);
flex-basis: calc(58.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(58.33% - 0.01px - 1em);
max-width: calc(58.33% - 0.01px - var(--grid-gap, 1em))
}
.col-8\@sm {
-ms-flex-preferred-size: calc(66.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(66.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(66.66% - 0.01px - 1em);
flex-basis: calc(66.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(66.66% - 0.01px - 1em);
max-width: calc(66.66% - 0.01px - var(--grid-gap, 1em))
}
.col-9\@sm {
-ms-flex-preferred-size: calc(75% - 0.01px - 1em);
-ms-flex-preferred-size: calc(75% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(75% - 0.01px - 1em);
flex-basis: calc(75% - 0.01px - var(--grid-gap, 1em));
max-width: calc(75% - 0.01px - 1em);
max-width: calc(75% - 0.01px - var(--grid-gap, 1em))
}
.col-10\@sm {
-ms-flex-preferred-size: calc(83.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(83.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(83.33% - 0.01px - 1em);
flex-basis: calc(83.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(83.33% - 0.01px - 1em);
max-width: calc(83.33% - 0.01px - var(--grid-gap, 1em))
}
.col-11\@sm {
-ms-flex-preferred-size: calc(91.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(91.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(91.66% - 0.01px - 1em);
flex-basis: calc(91.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(91.66% - 0.01px - 1em);
max-width: calc(91.66% - 0.01px - var(--grid-gap, 1em))
}
.col-12\@sm {
-ms-flex-preferred-size: calc(100% - 0.01px - 1em);
-ms-flex-preferred-size: calc(100% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(100% - 0.01px - 1em);
flex-basis: calc(100% - 0.01px - var(--grid-gap, 1em));
max-width: calc(100% - 0.01px - 1em);
max-width: calc(100% - 0.01px - var(--grid-gap, 1em))
}
}
@media (min-width: 64rem) {
.col\@md {
flex-basis: 0;
flex-grow: 1;
max-width: 100%;
-ms-flex-positive: 1;
-ms-flex-preferred-size: 0
}
.col-1\@md {
-ms-flex-preferred-size: calc(8.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(8.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(8.33% - 0.01px - 1em);
flex-basis: calc(8.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(8.33% - 0.01px - 1em);
max-width: calc(8.33% - 0.01px - var(--grid-gap, 1em))
}
.col-2\@md {
-ms-flex-preferred-size: calc(16.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(16.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(16.66% - 0.01px - 1em);
flex-basis: calc(16.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(16.66% - 0.01px - 1em);
max-width: calc(16.66% - 0.01px - var(--grid-gap, 1em))
}
.col-3\@md {
-ms-flex-preferred-size: calc(25% - 0.01px - 1em);
-ms-flex-preferred-size: calc(25% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(25% - 0.01px - 1em);
flex-basis: calc(25% - 0.01px - var(--grid-gap, 1em));
max-width: calc(25% - 0.01px - 1em);
max-width: calc(25% - 0.01px - var(--grid-gap, 1em))
}
.col-4\@md {
-ms-flex-preferred-size: calc(33.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(33.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(33.33% - 0.01px - 1em);
flex-basis: calc(33.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(33.33% - 0.01px - 1em);
max-width: calc(33.33% - 0.01px - var(--grid-gap, 1em))
}
.col-5\@md {
-ms-flex-preferred-size: calc(41.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(41.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(41.66% - 0.01px - 1em);
flex-basis: calc(41.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(41.66% - 0.01px - 1em);
max-width: calc(41.66% - 0.01px - var(--grid-gap, 1em))
}
.col-6\@md {
-ms-flex-preferred-size: calc(50% - 0.01px - 1em);
-ms-flex-preferred-size: calc(50% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(50% - 0.01px - 1em);
flex-basis: calc(50% - 0.01px - var(--grid-gap, 1em));
max-width: calc(50% - 0.01px - 1em);
max-width: calc(50% - 0.01px - var(--grid-gap, 1em))
}
.col-7\@md {
-ms-flex-preferred-size: calc(58.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(58.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(58.33% - 0.01px - 1em);
flex-basis: calc(58.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(58.33% - 0.01px - 1em);
max-width: calc(58.33% - 0.01px - var(--grid-gap, 1em))
}
.col-8\@md {
-ms-flex-preferred-size: calc(66.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(66.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(66.66% - 0.01px - 1em);
flex-basis: calc(66.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(66.66% - 0.01px - 1em);
max-width: calc(66.66% - 0.01px - var(--grid-gap, 1em))
}
.col-9\@md {
-ms-flex-preferred-size: calc(75% - 0.01px - 1em);
-ms-flex-preferred-size: calc(75% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(75% - 0.01px - 1em);
flex-basis: calc(75% - 0.01px - var(--grid-gap, 1em));
max-width: calc(75% - 0.01px - 1em);
max-width: calc(75% - 0.01px - var(--grid-gap, 1em))
}
.col-10\@md {
-ms-flex-preferred-size: calc(83.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(83.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(83.33% - 0.01px - 1em);
flex-basis: calc(83.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(83.33% - 0.01px - 1em);
max-width: calc(83.33% - 0.01px - var(--grid-gap, 1em))
}
.col-11\@md {
-ms-flex-preferred-size: calc(91.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(91.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(91.66% - 0.01px - 1em);
flex-basis: calc(91.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(91.66% - 0.01px - 1em);
max-width: calc(91.66% - 0.01px - var(--grid-gap, 1em))
}
.col-12\@md {
-ms-flex-preferred-size: calc(100% - 0.01px - 1em);
-ms-flex-preferred-size: calc(100% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(100% - 0.01px - 1em);
flex-basis: calc(100% - 0.01px - var(--grid-gap, 1em));
max-width: calc(100% - 0.01px - 1em);
max-width: calc(100% - 0.01px - var(--grid-gap, 1em))
}
}
@media (min-width: 80rem) {
.col\@lg {
flex-basis: 0;
flex-grow: 1;
max-width: 100%;
-ms-flex-positive: 1;
-ms-flex-preferred-size: 0
}
.col-1\@lg {
-ms-flex-preferred-size: calc(8.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(8.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(8.33% - 0.01px - 1em);
flex-basis: calc(8.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(8.33% - 0.01px - 1em);
max-width: calc(8.33% - 0.01px - var(--grid-gap, 1em))
}
.col-2\@lg {
-ms-flex-preferred-size: calc(16.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(16.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(16.66% - 0.01px - 1em);
flex-basis: calc(16.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(16.66% - 0.01px - 1em);
max-width: calc(16.66% - 0.01px - var(--grid-gap, 1em))
}
.col-3\@lg {
-ms-flex-preferred-size: calc(25% - 0.01px - 1em);
-ms-flex-preferred-size: calc(25% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(25% - 0.01px - 1em);
flex-basis: calc(25% - 0.01px - var(--grid-gap, 1em));
max-width: calc(25% - 0.01px - 1em);
max-width: calc(25% - 0.01px - var(--grid-gap, 1em))
}
.col-4\@lg {
-ms-flex-preferred-size: calc(33.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(33.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(33.33% - 0.01px - 1em);
flex-basis: calc(33.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(33.33% - 0.01px - 1em);
max-width: calc(33.33% - 0.01px - var(--grid-gap, 1em))
}
.col-5\@lg {
-ms-flex-preferred-size: calc(41.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(41.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(41.66% - 0.01px - 1em);
flex-basis: calc(41.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(41.66% - 0.01px - 1em);
max-width: calc(41.66% - 0.01px - var(--grid-gap, 1em))
}
.col-6\@lg {
-ms-flex-preferred-size: calc(50% - 0.01px - 1em);
-ms-flex-preferred-size: calc(50% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(50% - 0.01px - 1em);
flex-basis: calc(50% - 0.01px - var(--grid-gap, 1em));
max-width: calc(50% - 0.01px - 1em);
max-width: calc(50% - 0.01px - var(--grid-gap, 1em))
}
.col-7\@lg {
-ms-flex-preferred-size: calc(58.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(58.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(58.33% - 0.01px - 1em);
flex-basis: calc(58.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(58.33% - 0.01px - 1em);
max-width: calc(58.33% - 0.01px - var(--grid-gap, 1em))
}
.col-8\@lg {
-ms-flex-preferred-size: calc(66.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(66.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(66.66% - 0.01px - 1em);
flex-basis: calc(66.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(66.66% - 0.01px - 1em);
max-width: calc(66.66% - 0.01px - var(--grid-gap, 1em))
}
.col-9\@lg {
-ms-flex-preferred-size: calc(75% - 0.01px - 1em);
-ms-flex-preferred-size: calc(75% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(75% - 0.01px - 1em);
flex-basis: calc(75% - 0.01px - var(--grid-gap, 1em));
max-width: calc(75% - 0.01px - 1em);
max-width: calc(75% - 0.01px - var(--grid-gap, 1em))
}
.col-10\@lg {
-ms-flex-preferred-size: calc(83.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(83.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(83.33% - 0.01px - 1em);
flex-basis: calc(83.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(83.33% - 0.01px - 1em);
max-width: calc(83.33% - 0.01px - var(--grid-gap, 1em))
}
.col-11\@lg {
-ms-flex-preferred-size: calc(91.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(91.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(91.66% - 0.01px - 1em);
flex-basis: calc(91.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(91.66% - 0.01px - 1em);
max-width: calc(91.66% - 0.01px - var(--grid-gap, 1em))
}
.col-12\@lg {
-ms-flex-preferred-size: calc(100% - 0.01px - 1em);
-ms-flex-preferred-size: calc(100% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(100% - 0.01px - 1em);
flex-basis: calc(100% - 0.01px - var(--grid-gap, 1em));
max-width: calc(100% - 0.01px - 1em);
max-width: calc(100% - 0.01px - var(--grid-gap, 1em))
}
}
@media (min-width: 90rem) {
.col\@xl {
flex-basis: 0;
flex-grow: 1;
max-width: 100%;
-ms-flex-positive: 1;
-ms-flex-preferred-size: 0
}
.col-1\@xl {
-ms-flex-preferred-size: calc(8.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(8.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(8.33% - 0.01px - 1em);
flex-basis: calc(8.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(8.33% - 0.01px - 1em);
max-width: calc(8.33% - 0.01px - var(--grid-gap, 1em))
}
.col-2\@xl {
-ms-flex-preferred-size: calc(16.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(16.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(16.66% - 0.01px - 1em);
flex-basis: calc(16.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(16.66% - 0.01px - 1em);
max-width: calc(16.66% - 0.01px - var(--grid-gap, 1em))
}
.col-3\@xl {
-ms-flex-preferred-size: calc(25% - 0.01px - 1em);
-ms-flex-preferred-size: calc(25% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(25% - 0.01px - 1em);
flex-basis: calc(25% - 0.01px - var(--grid-gap, 1em));
max-width: calc(25% - 0.01px - 1em);
max-width: calc(25% - 0.01px - var(--grid-gap, 1em))
}
.col-4\@xl {
-ms-flex-preferred-size: calc(33.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(33.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(33.33% - 0.01px - 1em);
flex-basis: calc(33.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(33.33% - 0.01px - 1em);
max-width: calc(33.33% - 0.01px - var(--grid-gap, 1em))
}
.col-5\@xl {
-ms-flex-preferred-size: calc(41.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(41.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(41.66% - 0.01px - 1em);
flex-basis: calc(41.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(41.66% - 0.01px - 1em);
max-width: calc(41.66% - 0.01px - var(--grid-gap, 1em))
}
.col-6\@xl {
-ms-flex-preferred-size: calc(50% - 0.01px - 1em);
-ms-flex-preferred-size: calc(50% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(50% - 0.01px - 1em);
flex-basis: calc(50% - 0.01px - var(--grid-gap, 1em));
max-width: calc(50% - 0.01px - 1em);
max-width: calc(50% - 0.01px - var(--grid-gap, 1em))
}
.col-7\@xl {
-ms-flex-preferred-size: calc(58.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(58.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(58.33% - 0.01px - 1em);
flex-basis: calc(58.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(58.33% - 0.01px - 1em);
max-width: calc(58.33% - 0.01px - var(--grid-gap, 1em))
}
.col-8\@xl {
-ms-flex-preferred-size: calc(66.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(66.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(66.66% - 0.01px - 1em);
flex-basis: calc(66.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(66.66% - 0.01px - 1em);
max-width: calc(66.66% - 0.01px - var(--grid-gap, 1em))
}
.col-9\@xl {
-ms-flex-preferred-size: calc(75% - 0.01px - 1em);
-ms-flex-preferred-size: calc(75% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(75% - 0.01px - 1em);
flex-basis: calc(75% - 0.01px - var(--grid-gap, 1em));
max-width: calc(75% - 0.01px - 1em);
max-width: calc(75% - 0.01px - var(--grid-gap, 1em))
}
.col-10\@xl {
-ms-flex-preferred-size: calc(83.33% - 0.01px - 1em);
-ms-flex-preferred-size: calc(83.33% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(83.33% - 0.01px - 1em);
flex-basis: calc(83.33% - 0.01px - var(--grid-gap, 1em));
max-width: calc(83.33% - 0.01px - 1em);
max-width: calc(83.33% - 0.01px - var(--grid-gap, 1em))
}
.col-11\@xl {
-ms-flex-preferred-size: calc(91.66% - 0.01px - 1em);
-ms-flex-preferred-size: calc(91.66% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(91.66% - 0.01px - 1em);
flex-basis: calc(91.66% - 0.01px - var(--grid-gap, 1em));
max-width: calc(91.66% - 0.01px - 1em);
max-width: calc(91.66% - 0.01px - var(--grid-gap, 1em))
}
.col-12\@xl {
-ms-flex-preferred-size: calc(100% - 0.01px - 1em);
-ms-flex-preferred-size: calc(100% - 0.01px - var(--grid-gap, 1em));
flex-basis: calc(100% - 0.01px - 1em);
flex-basis: calc(100% - 0.01px - var(--grid-gap, 1em));
max-width: calc(100% - 0.01px - 1em);
max-width: calc(100% - 0.01px - var(--grid-gap, 1em))
}
}
:root {
--radius-sm: calc(var(--radius, 0.25em)/2);
--radius-md: var(--radius, 0.25em);
--radius-lg: calc(var(--radius, 0.25em) *2);
--shadow-sm: 0 1px 2px rgba(0, 0, 0, .085), 0 1px 8px rgba(0, 0, 0, .1);
--shadow-md: 0 1px 8px rgba(0, 0, 0, .1), 0 8px 24px rgba(0, 0, 0, .15);
--shadow-lg: 0 1px 8px rgba(0, 0, 0, .1), 0 16px 48px rgba(0, 0, 0, .1), 0 24px 60px rgba(0, 0, 0, .1);
--bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
--ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
--ease-in: cubic-bezier(0.55, 0.055, 0.675, 0.19);
--ease-out: cubic-bezier(0.215, 0.61, 0.355, 1)
}
:root {
--body-line-height: 1.4;
--heading-line-height: 1.2
}
body {
font-family: 'droid serif', serif;
font-family: var(--font-primary, sans-serif);
font-size: 1em;
font-size: var(--text-base-size, 1em);
color: #313135;
color: var(--color-contrast-high, #313135)
}
h1,
h2,
h3,
h4 {
line-height: 1.2;
line-height: var(--heading-line-height, 1.2);
color: #1c1c21;
color: var(--color-contrast-higher, #1c1c21)
}
.text-xxxl {
font-size: 2.48832em;
font-size: var(--text-xxxl, 2.488em)
}
h1,
.text-xxl {
font-size: 2.0736em;
font-size: var(--text-xxl, 2.074em)
}
h2,
.text-xl {
font-size: 1.728em;
font-size: var(--text-xl, 1.728em)
}
h3,
.text-lg {
font-size: 1.44em;
font-size: var(--text-lg, 1.44em)
}
h4,
.text-md {
font-size: 1.2em;
font-size: var(--text-md, 1.2em)
}
small,
.text-sm {
font-size: .83333em;
font-size: var(--text-sm, 0.833em)
}
.text-xs {
font-size: .69444em;
font-size: var(--text-xs, 0.694em)
}
a,
.link {
color: #2a6df4;
color: var(--color-primary, #2a6df4);
text-decoration: underline
}
strong,
.text-bold {
font-weight: 700
}
s {
text-decoration: line-through
}
u,
.text-underline {
text-decoration: underline
}
.text-component {
--component-body-line-height: calc(var(--body-line-height) *var(--line-height-multiplier, 1));
--component-heading-line-height: calc(var(--heading-line-height) *var(--line-height-multiplier, 1))
}
.text-component h1,
.text-component h2,
.text-component h3,
.text-component h4 {
margin-bottom: .25em;
margin-bottom: calc(var(--space-xxxs) *var(--text-vspace-multiplier, 1));
line-height: 1.2;
line-height: var(--component-heading-line-height, 1.2)
}
.text-component h2,
.text-component h3,
.text-component h4 {
margin-top: .75em;
margin-top: calc(var(--space-sm) *var(--text-vspace-multiplier, 1))
}
.text-component p,
.text-component blockquote,
.text-component ul li,
.text-component ol li {
line-height: 1.4;
line-height: var(--component-body-line-height)
}
.text-component ul,
.text-component ol,
.text-component p,
.text-component blockquote,
.text-component .text-component__block {
margin-bottom: .75em;
margin-bottom: calc(var(--space-sm) *var(--text-vspace-multiplier, 1))
}
.text-component ul,
.text-component ol {
padding-left: 1em
}
.text-component ul {
list-style-type: disc
}
.text-component ol {
list-style-type: decimal
}
.text-component img {
display: block;
margin: 0 auto
}
.text-component figcaption {
margin-top: .5em;
margin-top: var(--space-xs);
text-align: center
}
.text-component em {
font-style: italic
}
.text-component hr {
margin-top: 2em;
margin-top: calc(var(--space-lg) *var(--text-vspace-multiplier, 1));
margin-right: auto;
margin-bottom: 2em;
margin-bottom: calc(var(--space-lg) *var(--text-vspace-multiplier, 1));
margin-left: auto
}
.text-component >*:first-child {
margin-top: 0
}
.text-component >*:last-child {
margin-bottom: 0
}
.text-component__block--full-width {
width: 100vw;
margin-left: calc(50% - 50vw)
}
@media (min-width: 48rem) {
.text-component__block--left,
.text-component__block--right {
width: 45%
}
.text-component__block--left img,
.text-component__block--right img {
width: 100%
}
.text-component__block--left {
float: left;
margin-right: .75em;
margin-right: calc(var(--space-sm) *var(--text-vspace-multiplier, 1))
}
.text-component__block--right {
float: right;
margin-left: .75em;
margin-left: calc(var(--space-sm) *var(--text-vspace-multiplier, 1))
}
}
@media (min-width: 90rem) {
.text-component__block--outset {
width: calc(100% + 10.5em);
width: calc(100% + 2*var(--space-xxl))
}
.text-component__block--outset img {
width: 100%
}
.text-component__block--outset:not(.text-component__block--right) {
margin-left: -5.25em;
margin-left: calc(-1*var(--space-xxl))
}
.text-component__block--left,
.text-component__block--right {
width: 50%
}
.text-component__block--right.text-component__block--outset {
margin-right: -5.25em;
margin-right: calc(-1*var(--space-xxl))
}
}
:root {
--icon-xxs: 12px;
--icon-xs: 16px;
--icon-sm: 24px;
--icon-md: 32px;
--icon-lg: 48px;
--icon-xl: 64px;
--icon-xxl: 128px
}
.icon {
display: inline-block;
width: 1em;
height: 1em;
line-height: 1;
color: inherit;
fill: currentColor;
-ms-flex-negative: 0;
flex-shrink: 0
}
.icon--xxs {
font-size: 12px;
font-size: var(--icon-xxs)
}
.icon--xs {
font-size: 16px;
font-size: var(--icon-xs)
}
.icon--sm {
font-size: 24px;
font-size: var(--icon-sm)
}
.icon--md {
font-size: 32px;
font-size: var(--icon-md)
}
.icon--lg {
font-size: 48px;
font-size: var(--icon-lg)
}
.icon--xl {
font-size: 64px;
font-size: var(--icon-xl)
}
.icon--xxl {
font-size: 128px;
font-size: var(--icon-xxl)
}
.icon--is-spinning {
-webkit-animation: icon-spin 1s infinite linear;
animation: icon-spin 1s infinite linear
}
@-webkit-keyframes icon-spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg)
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg)
}
}
@keyframes icon-spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg)
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg)
}
}
.icon use {
color: inherit;
fill: currentColor
}
.btn {
position: relative;
display: -ms-inline-flexbox;
display: inline-flex;
-ms-flex-align: center;
-ms-flex-pack: center;
align-items: center;
justify-content: center;
padding-top: .5em;
padding-top: var(--btn-padding-y, 0.5em);
padding-right: .75em;
padding-right: var(--btn-padding-x, 0.75em);
padding-bottom: .5em;
padding-bottom: var(--btn-padding-y, 0.5em);
padding-left: .75em;
padding-left: var(--btn-padding-x, 0.75em);
font-size: 1em;
font-size: var(--btn-font-size, 1em);
line-height: 1;
text-decoration: none;
white-space: nowrap;
border-radius: .25em;
border-radius: var(--btn-radius, 0.25em)
}
.btn--primary {
color: #fff;
color: var(--color-white, #fff);
background-color: #2a6df4;
background-color: var(--color-primary, #2a6df4)
}
.btn--subtle {
color: #1c1c21;
color: var(--color-contrast-higher, #1c1c21);
background-color: #d3d3d4;
background-color: var(--color-contrast-low, #d3d3d4)
}
.btn--accent {
color: #fff;
color: var(--color-white, #fff);
background-color: #f54251;
background-color: var(--color-accent, #f54251)
}
.btn--disabled {
cursor: not-allowed
}
.btn--sm {
font-size: .8em;
font-size: var(--btn-font-size-sm, 0.8em)
}
.btn--md {
font-size: 1.2em;
font-size: var(--btn-font-size-md, 1.2em)
}
.btn--lg {
font-size: 1.4em;
font-size: var(--btn-font-size-lg, 1.4em)
}
.btn--icon {
padding: .5em;
padding: var(--btn-padding-y, 0.5em)
}
.form-control {
padding-top: .5em;
padding-top: var(--form-control-padding-y, 0.5em);
padding-right: .75em;
padding-right: var(--form-control-padding-x, 0.75em);
padding-bottom: .5em;
padding-bottom: var(--form-control-padding-y, 0.5em);
padding-left: .75em;
padding-left: var(--form-control-padding-x, 0.75em);
background-color: #fff;
background-color: var(--color-bg, #f2f2f2);
border-radius: .25em;
border-radius: var(--form-control-radius, 0.25em)
}
.form-control::-webkit-input-placeholder {
color: #79797c;
color: var(--color-contrast-medium, #79797c)
}
.form-control::-moz-placeholder {
color: #79797c;
color: var(--color-contrast-medium, #79797c);
opacity: 1
}
.form-control:-ms-input-placeholder {
color: #79797c;
color: var(--color-contrast-medium, #79797c)
}
.form-control:-moz-placeholder {
color: #79797c;
color: var(--color-contrast-medium, #79797c)
}
.form-control[disabled],
.form-control[readonly] {
cursor: not-allowed
}
.form-legend {
margin-bottom: .375em;
margin-bottom: var(--space-xxs);
font-size: 1.2em;
font-size: var(--text-md, 1.2em);
line-height: 1.2;
color: #1c1c21;
color: var(--color-contrast-higher, #1c1c21)
}
.form-label {
display: inline-block
}
.form__msg-error {
position: absolute;
padding: .5em;
padding: var(--space-xs);
margin-top: .75em;
margin-top: var(--space-sm);
clip: rect(1px, 1px, 1px, 1px);
font-size: .83333em;
font-size: var(--text-sm, 0.833em);
color: #fff;
color: var(--color-white, #fff);
background-color: #f54251;
background-color: var(--color-error, #f54251);
border-radius: .25em;
border-radius: var(--radius-md, 0.25em);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale
}
.form__msg-error::before {
position: absolute;
top: 0;
left: .75em;
left: var(--space-sm);
width: 0;
height: 0;
content: '';
border: 8px solid transparent;
border-bottom-color: #f54251;
border-bottom-color: var(--color-error);
-webkit-transform: translateY(-100%);
-ms-transform: translateY(-100%);
transform: translateY(-100%)
}
.form__msg-error--is-visible {
position: relative;
clip: auto
}
.radio-list >*,
.checkbox-list >* {
position: relative;
display: -ms-flexbox;
display: flex;
-ms-flex-align: baseline;
align-items: baseline;
margin-bottom: .375em;
margin-bottom: var(--space-xxs)
}
.radio-list >*:last-of-type,
.checkbox-list >*:last-of-type {
margin-bottom: 0
}
.radio-list label,
.checkbox-list label {
line-height: 1.4;
line-height: var(--body-line-height);
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none
}
.radio-list input,
.checkbox-list input {
margin-right: .25em;
margin-right: var(--space-xxxs);
vertical-align: top;
-ms-flex-negative: 0;
flex-shrink: 0
}
:root {
--zindex-header: 2;
--zindex-popover: 5;
--zindex-fixed-element: 10;
--zindex-overlay: 15
}
@media not all and (min-width: 32rem) {
.display\@xs {
display: none !important
}
}
@media (min-width: 32rem) {
.hide\@xs {
display: none !important
}
}
@media not all and (min-width: 48rem) {
.display\@sm {
display: none !important
}
}
@media (min-width: 48rem) {
.hide\@sm {
display: none !important
}
}
@media not all and (min-width: 64rem) {
.display\@md {
display: none !important
}
}
@media (min-width: 64rem) {
.hide\@md {
display: none !important
}
}
@media not all and (min-width: 80rem) {
.display\@lg {
display: none !important
}
}
@media (min-width: 80rem) {
.hide\@lg {
display: none !important
}
}
@media not all and (min-width: 90rem) {
.display\@xl {
display: none !important
}
}
@media (min-width: 90rem) {
.hide\@xl {
display: none !important
}
}
:root {
--display: block
}
.is-visible {
display: block !important;
display: var(--display) !important
}
.is-hidden {
display: none !important
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
overflow: hidden;
clip: rect(1px, 1px, 1px, 1px);
white-space: nowrap;
border: 0;
-webkit-clip-path: inset(50%);
clip-path: inset(50%)
}
.flex {
display: -ms-flexbox;
display: flex
}
.inline-flex {
display: -ms-inline-flexbox;
display: inline-flex
}
.flex-wrap {
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.flex-column {
-ms-flex-direction: column;
flex-direction: column
}
.flex-row {
-ms-flex-direction: row;
flex-direction: row
}
.flex-center {
-ms-flex-align: center;
-ms-flex-pack: center;
align-items: center;
justify-content: center
}
.justify-start {
-ms-flex-pack: start;
justify-content: flex-start
}
.justify-end {
-ms-flex-pack: end;
justify-content: flex-end
}
.justify-center {
-ms-flex-pack: center;
justify-content: center
}
.justify-between {
-ms-flex-pack: justify;
justify-content: space-between
}
.items-center {
-ms-flex-align: center;
align-items: center
}
.items-start {
-ms-flex-align: start;
align-items: flex-start
}
.items-end {
-ms-flex-align: end;
align-items: flex-end
}
@media (min-width: 32rem) {
.flex-wrap\@xs {
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.flex-column\@xs {
-ms-flex-direction: column;
flex-direction: column
}
.flex-row\@xs {
-ms-flex-direction: row;
flex-direction: row
}
.flex-center\@xs {
-ms-flex-align: center;
-ms-flex-pack: center;
align-items: center;
justify-content: center
}
.justify-start\@xs {
-ms-flex-pack: start;
justify-content: flex-start
}
.justify-end\@xs {
-ms-flex-pack: end;
justify-content: flex-end
}
.justify-center\@xs {
-ms-flex-pack: center;
justify-content: center
}
.justify-between\@xs {
-ms-flex-pack: justify;
justify-content: space-between
}
.items-center\@xs {
-ms-flex-align: center;
align-items: center
}
.items-start\@xs {
-ms-flex-align: start;
align-items: flex-start
}
.items-end\@xs {
-ms-flex-align: end;
align-items: flex-end
}
}
@media (min-width: 48rem) {
.flex-wrap\@sm {
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.flex-column\@sm {
-ms-flex-direction: column;
flex-direction: column
}
.flex-row\@sm {
-ms-flex-direction: row;
flex-direction: row
}
.flex-center\@sm {
-ms-flex-align: center;
-ms-flex-pack: center;
align-items: center;
justify-content: center
}
.justify-start\@sm {
-ms-flex-pack: start;
justify-content: flex-start
}
.justify-end\@sm {
-ms-flex-pack: end;
justify-content: flex-end
}
.justify-center\@sm {
-ms-flex-pack: center;
justify-content: center
}
.justify-between\@sm {
-ms-flex-pack: justify;
justify-content: space-between
}
.items-center\@sm {
-ms-flex-align: center;
align-items: center
}
.items-start\@sm {
-ms-flex-align: start;
align-items: flex-start
}
.items-end\@sm {
-ms-flex-align: end;
align-items: flex-end
}
}
@media (min-width: 64rem) {
.flex-wrap\@md {
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.flex-column\@md {
-ms-flex-direction: column;
flex-direction: column
}
.flex-row\@md {
-ms-flex-direction: row;
flex-direction: row
}
.flex-center\@md {
-ms-flex-align: center;
-ms-flex-pack: center;
align-items: center;
justify-content: center
}
.justify-start\@md {
-ms-flex-pack: start;
justify-content: flex-start
}
.justify-end\@md {
-ms-flex-pack: end;
justify-content: flex-end
}
.justify-center\@md {
-ms-flex-pack: center;
justify-content: center
}
.justify-between\@md {
-ms-flex-pack: justify;
justify-content: space-between
}
.items-center\@md {
-ms-flex-align: center;
align-items: center
}
.items-start\@md {
-ms-flex-align: start;
align-items: flex-start
}
.items-end\@md {
-ms-flex-align: end;
align-items: flex-end
}
}
@media (min-width: 80rem) {
.flex-wrap\@lg {
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.flex-column\@lg {
-ms-flex-direction: column;
flex-direction: column
}
.flex-row\@lg {
-ms-flex-direction: row;
flex-direction: row
}
.flex-center\@lg {
-ms-flex-align: center;
-ms-flex-pack: center;
align-items: center;
justify-content: center
}
.justify-start\@lg {
-ms-flex-pack: start;
justify-content: flex-start
}
.justify-end\@lg {
-ms-flex-pack: end;
justify-content: flex-end
}
.justify-center\@lg {
-ms-flex-pack: center;
justify-content: center
}
.justify-between\@lg {
-ms-flex-pack: justify;
justify-content: space-between
}
.items-center\@lg {
-ms-flex-align: center;
align-items: center
}
.items-start\@lg {
-ms-flex-align: start;
align-items: flex-start
}
.items-end\@lg {
-ms-flex-align: end;
align-items: flex-end
}
}
@media (min-width: 90rem) {
.flex-wrap\@xl {
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.flex-column\@xl {
-ms-flex-direction: column;
flex-direction: column
}
.flex-row\@xl {
-ms-flex-direction: row;
flex-direction: row
}
.flex-center\@xl {
-ms-flex-align: center;
-ms-flex-pack: center;
align-items: center;
justify-content: center
}
.justify-start\@xl {
-ms-flex-pack: start;
justify-content: flex-start
}
.justify-end\@xl {
-ms-flex-pack: end;
justify-content: flex-end
}
.justify-center\@xl {
-ms-flex-pack: center;
justify-content: center
}
.justify-between\@xl {
-ms-flex-pack: justify;
justify-content: space-between
}
.items-center\@xl {
-ms-flex-align: center;
align-items: center
}
.items-start\@xl {
-ms-flex-align: start;
align-items: flex-start
}
.items-end\@xl {
-ms-flex-align: end;
align-items: flex-end
}
}
.flex-grow {
-ms-flex-positive: 1;
flex-grow: 1
}
.flex-shrink-0 {
-ms-flex-negative: 0;
flex-shrink: 0
}
.flex-gap-xxxs {
margin-right: -.25em;
margin-right: calc(-1*var(--space-xxxs));
margin-bottom: -.25em;
margin-bottom: calc(-1*var(--space-xxxs))
}
.flex-gap-xxxs >* {
margin-right: .25em;
margin-right: var(--space-xxxs);
margin-bottom: .25em;
margin-bottom: var(--space-xxxs)
}
.flex-gap-xxs {
margin-right: -.375em;
margin-right: calc(-1*var(--space-xxs));
margin-bottom: -.375em;
margin-bottom: calc(-1*var(--space-xxs))
}
.flex-gap-xxs >* {
margin-right: .375em;
margin-right: var(--space-xxs);
margin-bottom: .375em;
margin-bottom: var(--space-xxs)
}
.flex-gap-xs {
margin-right: -.5em;
margin-right: calc(-1*var(--space-xs));
margin-bottom: -.5em;
margin-bottom: calc(-1*var(--space-xs))
}
.flex-gap-xs >* {
margin-right: .5em;
margin-right: var(--space-xs);
margin-bottom: .5em;
margin-bottom: var(--space-xs)
}
.flex-gap-sm {
margin-right: -.75em;
margin-right: calc(-1*var(--space-sm));
margin-bottom: -.75em;
margin-bottom: calc(-1*var(--space-sm))
}
.flex-gap-sm >* {
margin-right: .75em;
margin-right: var(--space-sm);
margin-bottom: .75em;
margin-bottom: var(--space-sm)
}
.flex-gap-md {
margin-right: -1.25em;
margin-right: calc(-1*var(--space-md));
margin-bottom: -1.25em;
margin-bottom: calc(-1*var(--space-md))
}
.flex-gap-md >* {
margin-right: 1.25em;
margin-right: var(--space-md);
margin-bottom: 1.25em;
margin-bottom: var(--space-md)
}
.flex-gap-lg {
margin-right: -2em;
margin-right: calc(-1*var(--space-lg));
margin-bottom: -2em;
margin-bottom: calc(-1*var(--space-lg))
}
.flex-gap-lg >* {
margin-right: 2em;
margin-right: var(--space-lg);
margin-bottom: 2em;
margin-bottom: var(--space-lg)
}
.flex-gap-xl {
margin-right: -3.25em;
margin-right: calc(-1*var(--space-xl));
margin-bottom: -3.25em;
margin-bottom: calc(-1*var(--space-xl))
}
.flex-gap-xl >* {
margin-right: 3.25em;
margin-right: var(--space-xl);
margin-bottom: 3.25em;
margin-bottom: var(--space-xl)
}
.flex-gap-xxl {
margin-right: -5.25em;
margin-right: calc(-1*var(--space-xxl));
margin-bottom: -5.25em;
margin-bottom: calc(-1*var(--space-xxl))
}
.flex-gap-xxl >* {
margin-right: 5.25em;
margin-right: var(--space-xxl);
margin-bottom: 5.25em;
margin-bottom: var(--space-xxl)
}
.margin-xxxxs {
margin: .125em;
margin: var(--space-xxxxs)
}
.margin-xxxs {
margin: .25em;
margin: var(--space-xxxs)
}
.margin-xxs {
margin: .375em;
margin: var(--space-xxs)
}
.margin-xs {
margin: .5em;
margin: var(--space-xs)
}
.margin-sm {
margin: .75em;
margin: var(--space-sm)
}
.margin-md {
margin: 1.25em;
margin: var(--space-md)
}
.margin-lg {
margin: 2em;
margin: var(--space-lg)
}
.margin-xl {
margin: 3.25em;
margin: var(--space-xl)
}
.margin-xxl {
margin: 5.25em;
margin: var(--space-xxl)
}
.margin-xxxl {
margin: 8.5em;
margin: var(--space-xxxl)
}
.margin-xxxxl {
margin: 13.75em;
margin: var(--space-xxxxl)
}
.margin-auto {
margin: auto
}
.margin-top-xxxxs {
margin-top: .125em;
margin-top: var(--space-xxxxs)
}
.margin-top-xxxs {
margin-top: .25em;
margin-top: var(--space-xxxs)
}
.margin-top-xxs {
margin-top: .375em;
margin-top: var(--space-xxs)
}
.margin-top-xs {
margin-top: .5em;
margin-top: var(--space-xs)
}
.margin-top-sm {
margin-top: .75em;
margin-top: var(--space-sm)
}
.margin-top-md {
margin-top: 1.25em;
margin-top: var(--space-md)
}
.margin-top-lg {
margin-top: 2em;
margin-top: var(--space-lg)
}
.margin-top-xl {
margin-top: 3.25em;
margin-top: var(--space-xl)
}
.margin-top-xxl {
margin-top: 5.25em;
margin-top: var(--space-xxl)
}
.margin-top-xxxl {
margin-top: 8.5em;
margin-top: var(--space-xxxl)
}
.margin-top-xxxxl {
margin-top: 13.75em;
margin-top: var(--space-xxxxl)
}
.margin-top-auto {
margin-top: auto
}
.margin-bottom-xxxxs {
margin-bottom: .125em;
margin-bottom: var(--space-xxxxs)
}
.margin-bottom-xxxs {
margin-bottom: .25em;
margin-bottom: var(--space-xxxs)
}
.margin-bottom-xxs {
margin-bottom: .375em;
margin-bottom: var(--space-xxs)
}
.margin-bottom-xs {
margin-bottom: .5em;
margin-bottom: var(--space-xs)
}
.margin-bottom-sm {
margin-bottom: .75em;
margin-bottom: var(--space-sm)
}
.margin-bottom-md {
margin-bottom: 1.25em;
margin-bottom: var(--space-md)
}
.margin-bottom-lg {
margin-bottom: 2em;
margin-bottom: var(--space-lg)
}
.margin-bottom-xl {
margin-bottom: 3.25em;
margin-bottom: var(--space-xl)
}
.margin-bottom-xxl {
margin-bottom: 5.25em;
margin-bottom: var(--space-xxl)
}
.margin-bottom-xxxl {
margin-bottom: 8.5em;
margin-bottom: var(--space-xxxl)
}
.margin-bottom-xxxxl {
margin-bottom: 13.75em;
margin-bottom: var(--space-xxxxl)
}
.margin-bottom-auto {
margin-bottom: auto
}
.margin-right-xxxxs {
margin-right: .125em;
margin-right: var(--space-xxxxs)
}
.margin-right-xxxs {
margin-right: .25em;
margin-right: var(--space-xxxs)
}
.margin-right-xxs {
margin-right: .375em;
margin-right: var(--space-xxs)
}
.margin-right-xs {
margin-right: .5em;
margin-right: var(--space-xs)
}
.margin-right-sm {
margin-right: .75em;
margin-right: var(--space-sm)
}
.margin-right-md {
margin-right: 1.25em;
margin-right: var(--space-md)
}
.margin-right-lg {
margin-right: 2em;
margin-right: var(--space-lg)
}
.margin-right-xl {
margin-right: 3.25em;
margin-right: var(--space-xl)
}
.margin-right-xxl {
margin-right: 5.25em;
margin-right: var(--space-xxl)
}
.margin-right-xxxl {
margin-right: 8.5em;
margin-right: var(--space-xxxl)
}
.margin-right-xxxxl {
margin-right: 13.75em;
margin-right: var(--space-xxxxl)
}
.margin-right-auto {
margin-right: auto
}
.margin-left-xxxxs {
margin-left: .125em;
margin-left: var(--space-xxxxs)
}
.margin-left-xxxs {
margin-left: .25em;
margin-left: var(--space-xxxs)
}
.margin-left-xxs {
margin-left: .375em;
margin-left: var(--space-xxs)
}
.margin-left-xs {
margin-left: .5em;
margin-left: var(--space-xs)
}
.margin-left-sm {
margin-left: .75em;
margin-left: var(--space-sm)
}
.margin-left-md {
margin-left: 1.25em;
margin-left: var(--space-md)
}
.margin-left-lg {
margin-left: 2em;
margin-left: var(--space-lg)
}
.margin-left-xl {
margin-left: 3.25em;
margin-left: var(--space-xl)
}
.margin-left-xxl {
margin-left: 5.25em;
margin-left: var(--space-xxl)
}
.margin-left-xxxl {
margin-left: 8.5em;
margin-left: var(--space-xxxl)
}
.margin-left-xxxxl {
margin-left: 13.75em;
margin-left: var(--space-xxxxl)
}
.margin-left-auto {
margin-left: auto
}
.margin-x-xxxxs {
margin-right: .125em;
margin-right: var(--space-xxxxs);
margin-left: .125em;
margin-left: var(--space-xxxxs)
}
.margin-x-xxxs {
margin-right: .25em;
margin-right: var(--space-xxxs);
margin-left: .25em;
margin-left: var(--space-xxxs)
}
.margin-x-xxs {
margin-right: .375em;
margin-right: var(--space-xxs);
margin-left: .375em;
margin-left: var(--space-xxs)
}
.margin-x-xs {
margin-right: .5em;
margin-right: var(--space-xs);
margin-left: .5em;
margin-left: var(--space-xs)
}
.margin-x-sm {
margin-right: .75em;
margin-right: var(--space-sm);
margin-left: .75em;
margin-left: var(--space-sm)
}
.margin-x-md {
margin-right: 1.25em;
margin-right: var(--space-md);
margin-left: 1.25em;
margin-left: var(--space-md)
}
.margin-x-lg {
margin-right: 2em;
margin-right: var(--space-lg);
margin-left: 2em;
margin-left: var(--space-lg)
}
.margin-x-xl {
margin-right: 3.25em;
margin-right: var(--space-xl);
margin-left: 3.25em;
margin-left: var(--space-xl)
}
.margin-x-xxl {
margin-right: 5.25em;
margin-right: var(--space-xxl);
margin-left: 5.25em;
margin-left: var(--space-xxl)
}
.margin-x-xxxl {
margin-right: 8.5em;
margin-right: var(--space-xxxl);
margin-left: 8.5em;
margin-left: var(--space-xxxl)
}
.margin-x-xxxxl {
margin-right: 13.75em;
margin-right: var(--space-xxxxl);
margin-left: 13.75em;
margin-left: var(--space-xxxxl)
}
.margin-x-auto {
margin-right: auto;
margin-left: auto
}
.margin-y-xxxxs {
margin-top: .125em;
margin-top: var(--space-xxxxs);
margin-bottom: .125em;
margin-bottom: var(--space-xxxxs)
}
.margin-y-xxxs {
margin-top: .25em;
margin-top: var(--space-xxxs);
margin-bottom: .25em;
margin-bottom: var(--space-xxxs)
}
.margin-y-xxs {
margin-top: .375em;
margin-top: var(--space-xxs);
margin-bottom: .375em;
margin-bottom: var(--space-xxs)
}
.margin-y-xs {
margin-top: .5em;
margin-top: var(--space-xs);
margin-bottom: .5em;
margin-bottom: var(--space-xs)
}
.margin-y-sm {
margin-top: .75em;
margin-top: var(--space-sm);
margin-bottom: .75em;
margin-bottom: var(--space-sm)
}
.margin-y-md {
margin-top: 1.25em;
margin-top: var(--space-md);
margin-bottom: 1.25em;
margin-bottom: var(--space-md)
}
.margin-y-lg {
margin-top: 2em;
margin-top: var(--space-lg);
margin-bottom: 2em;
margin-bottom: var(--space-lg)
}
.margin-y-xl {
margin-top: 3.25em;
margin-top: var(--space-xl);
margin-bottom: 3.25em;
margin-bottom: var(--space-xl)
}
.margin-y-xxl {
margin-top: 5.25em;
margin-top: var(--space-xxl);
margin-bottom: 5.25em;
margin-bottom: var(--space-xxl)
}
.margin-y-xxxl {
margin-top: 8.5em;
margin-top: var(--space-xxxl);
margin-bottom: 8.5em;
margin-bottom: var(--space-xxxl)
}
.margin-y-xxxxl {
margin-top: 13.75em;
margin-top: var(--space-xxxxl);
margin-bottom: 13.75em;
margin-bottom: var(--space-xxxxl)
}
.margin-y-auto {
margin-top: auto;
margin-bottom: auto
}
@media not all and (min-width: 32rem) {
.has-margin\@xs {
margin: 0 !important
}
}
@media not all and (min-width: 48rem) {
.has-margin\@sm {
margin: 0 !important
}
}
@media not all and (min-width: 64rem) {
.has-margin\@md {
margin: 0 !important
}
}
@media not all and (min-width: 80rem) {
.has-margin\@lg {
margin: 0 !important
}
}
@media not all and (min-width: 90rem) {
.has-margin\@xl {
margin: 0 !important
}
}
.padding-md {
padding: 1.25em;
padding: var(--space-md)
}
.padding-xxxxs {
padding: .125em;
padding: var(--space-xxxxs)
}
.padding-xxxs {
padding: .25em;
padding: var(--space-xxxs)
}
.padding-xxs {
padding: .375em;
padding: var(--space-xxs)
}
.padding-xs {
padding: .5em;
padding: var(--space-xs)
}
.padding-sm {
padding: .75em;
padding: var(--space-sm)
}
.padding-lg {
padding: 2em;
padding: var(--space-lg)
}
.padding-xl {
padding: 3.25em;
padding: var(--space-xl)
}
.padding-xxl {
padding: 5.25em;
padding: var(--space-xxl)
}
.padding-xxxl {
padding: 8.5em;
padding: var(--space-xxxl)
}
.padding-xxxxl {
padding: 13.75em;
padding: var(--space-xxxxl)
}
.padding-component {
padding: 1.25em;
padding: var(--component-padding)
}
.padding-top-md {
padding-top: 1.25em;
padding-top: var(--space-md)
}
.padding-top-xxxxs {
padding-top: .125em;
padding-top: var(--space-xxxxs)
}
.padding-top-xxxs {
padding-top: .25em;
padding-top: var(--space-xxxs)
}
.padding-top-xxs {
padding-top: .375em;
padding-top: var(--space-xxs)
}
.padding-top-xs {
padding-top: .5em;
padding-top: var(--space-xs)
}
.padding-top-sm {
padding-top: .75em;
padding-top: var(--space-sm)
}
.padding-top-lg {
padding-top: 2em;
padding-top: var(--space-lg)
}
.padding-top-xl {
padding-top: 3.25em;
padding-top: var(--space-xl)
}
.padding-top-xxl {
padding-top: 5.25em;
padding-top: var(--space-xxl)
}
.padding-top-xxxl {
padding-top: 8.5em;
padding-top: var(--space-xxxl)
}
.padding-top-xxxxl {
padding-top: 13.75em;
padding-top: var(--space-xxxxl)
}
.padding-top-component {
padding-top: 1.25em;
padding-top: var(--component-padding)
}
.padding-bottom-md {
padding-bottom: 1.25em;
padding-bottom: var(--space-md)
}
.padding-bottom-xxxxs {
padding-bottom: .125em;
padding-bottom: var(--space-xxxxs)
}
.padding-bottom-xxxs {
padding-bottom: .25em;
padding-bottom: var(--space-xxxs)
}
.padding-bottom-xxs {
padding-bottom: .375em;
padding-bottom: var(--space-xxs)
}
.padding-bottom-xs {
padding-bottom: .5em;
padding-bottom: var(--space-xs)
}
.padding-bottom-sm {
padding-bottom: .75em;
padding-bottom: var(--space-sm)
}
.padding-bottom-lg {
padding-bottom: 2em;
padding-bottom: var(--space-lg)
}
.padding-bottom-xl {
padding-bottom: 3.25em;
padding-bottom: var(--space-xl)
}
.padding-bottom-xxl {
padding-bottom: 5.25em;
padding-bottom: var(--space-xxl)
}
.padding-bottom-xxxl {
padding-bottom: 8.5em;
padding-bottom: var(--space-xxxl)
}
.padding-bottom-xxxxl {
padding-bottom: 13.75em;
padding-bottom: var(--space-xxxxl)
}
.padding-bottom-component {
padding-bottom: 1.25em;
padding-bottom: var(--component-padding)
}
.padding-right-md {
padding-right: 1.25em;
padding-right: var(--space-md)
}
.padding-right-xxxxs {
padding-right: .125em;
padding-right: var(--space-xxxxs)
}
.padding-right-xxxs {
padding-right: .25em;
padding-right: var(--space-xxxs)
}
.padding-right-xxs {
padding-right: .375em;
padding-right: var(--space-xxs)
}
.padding-right-xs {
padding-right: .5em;
padding-right: var(--space-xs)
}
.padding-right-sm {
padding-right: .75em;
padding-right: var(--space-sm)
}
.padding-right-lg {
padding-right: 2em;
padding-right: var(--space-lg)
}
.padding-right-xl {
padding-right: 3.25em;
padding-right: var(--space-xl)
}
.padding-right-xxl {
padding-right: 5.25em;
padding-right: var(--space-xxl)
}
.padding-right-xxxl {
padding-right: 8.5em;
padding-right: var(--space-xxxl)
}
.padding-right-xxxxl {
padding-right: 13.75em;
padding-right: var(--space-xxxxl)
}
.padding-right-component {
padding-right: 1.25em;
padding-right: var(--component-padding)
}
.padding-left-md {
padding-left: 1.25em;
padding-left: var(--space-md)
}
.padding-left-xxxxs {
padding-left: .125em;
padding-left: var(--space-xxxxs)
}
.padding-left-xxxs {
padding-left: .25em;
padding-left: var(--space-xxxs)
}
.padding-left-xxs {
padding-left: .375em;
padding-left: var(--space-xxs)
}
.padding-left-xs {
padding-left: .5em;
padding-left: var(--space-xs)
}
.padding-left-sm {
padding-left: .75em;
padding-left: var(--space-sm)
}
.padding-left-lg {
padding-left: 2em;
padding-left: var(--space-lg)
}
.padding-left-xl {
padding-left: 3.25em;
padding-left: var(--space-xl)
}
.padding-left-xxl {
padding-left: 5.25em;
padding-left: var(--space-xxl)
}
.padding-left-xxxl {
padding-left: 8.5em;
padding-left: var(--space-xxxl)
}
.padding-left-xxxxl {
padding-left: 13.75em;
padding-left: var(--space-xxxxl)
}
.padding-left-component {
padding-left: 1.25em;
padding-left: var(--component-padding)
}
.padding-x-md {
padding-right: 1.25em;
padding-right: var(--space-md);
padding-left: 1.25em;
padding-left: var(--space-md)
}
.padding-x-xxxxs {
padding-right: .125em;
padding-right: var(--space-xxxxs);
padding-left: .125em;
padding-left: var(--space-xxxxs)
}
.padding-x-xxxs {
padding-right: .25em;
padding-right: var(--space-xxxs);
padding-left: .25em;
padding-left: var(--space-xxxs)
}
.padding-x-xxs {
padding-right: .375em;
padding-right: var(--space-xxs);
padding-left: .375em;
padding-left: var(--space-xxs)
}
.padding-x-xs {
padding-right: .5em;
padding-right: var(--space-xs);
padding-left: .5em;
padding-left: var(--space-xs)
}
.padding-x-sm {
padding-right: .75em;
padding-right: var(--space-sm);
padding-left: .75em;
padding-left: var(--space-sm)
}
.padding-x-lg {
padding-right: 2em;
padding-right: var(--space-lg);
padding-left: 2em;
padding-left: var(--space-lg)
}
.padding-x-xl {
padding-right: 3.25em;
padding-right: var(--space-xl);
padding-left: 3.25em;
padding-left: var(--space-xl)
}
.padding-x-xxl {
padding-right: 5.25em;
padding-right: var(--space-xxl);
padding-left: 5.25em;
padding-left: var(--space-xxl)
}
.padding-x-xxxl {
padding-right: 8.5em;
padding-right: var(--space-xxxl);
padding-left: 8.5em;
padding-left: var(--space-xxxl)
}
.padding-x-xxxxl {
padding-right: 13.75em;
padding-right: var(--space-xxxxl);
padding-left: 13.75em;
padding-left: var(--space-xxxxl)
}
.padding-x-component {
padding-right: 1.25em;
padding-right: var(--component-padding);
padding-left: 1.25em;
padding-left: var(--component-padding)
}
.padding-y-md {
padding-top: 1.25em;
padding-top: var(--space-md);
padding-bottom: 1.25em;
padding-bottom: var(--space-md)
}
.padding-y-xxxxs {
padding-top: .125em;
padding-top: var(--space-xxxxs);
padding-bottom: .125em;
padding-bottom: var(--space-xxxxs)
}
.padding-y-xxxs {
padding-top: .25em;
padding-top: var(--space-xxxs);
padding-bottom: .25em;
padding-bottom: var(--space-xxxs)
}
.padding-y-xxs {
padding-top: .375em;
padding-top: var(--space-xxs);
padding-bottom: .375em;
padding-bottom: var(--space-xxs)
}
.padding-y-xs {
padding-top: .5em;
padding-top: var(--space-xs);
padding-bottom: .5em;
padding-bottom: var(--space-xs)
}
.padding-y-sm {
padding-top: .75em;
padding-top: var(--space-sm);
padding-bottom: .75em;
padding-bottom: var(--space-sm)
}
.padding-y-lg {
padding-top: 2em;
padding-top: var(--space-lg);
padding-bottom: 2em;
padding-bottom: var(--space-lg)
}
.padding-y-xl {
padding-top: 3.25em;
padding-top: var(--space-xl);
padding-bottom: 3.25em;
padding-bottom: var(--space-xl)
}
.padding-y-xxl {
padding-top: 5.25em;
padding-top: var(--space-xxl);
padding-bottom: 5.25em;
padding-bottom: var(--space-xxl)
}
.padding-y-xxxl {
padding-top: 8.5em;
padding-top: var(--space-xxxl);
padding-bottom: 8.5em;
padding-bottom: var(--space-xxxl)
}
.padding-y-xxxxl {
padding-top: 13.75em;
padding-top: var(--space-xxxxl);
padding-bottom: 13.75em;
padding-bottom: var(--space-xxxxl)
}
.padding-y-component {
padding-top: 1.25em;
padding-top: var(--component-padding);
padding-bottom: 1.25em;
padding-bottom: var(--component-padding)
}
@media not all and (min-width: 32rem) {
.has-padding\@xs {
padding: 0 !important
}
}
@media not all and (min-width: 48rem) {
.has-padding\@sm {
padding: 0 !important
}
}
@media not all and (min-width: 64rem) {
.has-padding\@md {
padding: 0 !important
}
}
@media not all and (min-width: 80rem) {
.has-padding\@lg {
padding: 0 !important
}
}
@media not all and (min-width: 90rem) {
.has-padding\@xl {
padding: 0 !important
}
}
.truncate {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap
}
.text-replace {
overflow: hidden;
color: transparent;
text-indent: 100%;
white-space: nowrap
}
.text-center {
text-align: center
}
.text-left {
text-align: left
}
.text-right {
text-align: right
}
@media (min-width: 32rem) {
.text-center\@xs {
text-align: center
}
.text-left\@xs {
text-align: left
}
.text-right\@xs {
text-align: right
}
}
@media (min-width: 48rem) {
.text-center\@sm {
text-align: center
}
.text-left\@sm {
text-align: left
}
.text-right\@sm {
text-align: right
}
}
@media (min-width: 64rem) {
.text-center\@md {
text-align: center
}
.text-left\@md {
text-align: left
}
.text-right\@md {
text-align: right
}
}
@media (min-width: 80rem) {
.text-center\@lg {
text-align: center
}
.text-left\@lg {
text-align: left
}
.text-right\@lg {
text-align: right
}
}
@media (min-width: 90rem) {
.text-center\@xl {
text-align: center
}
.text-left\@xl {
text-align: left
}
.text-right\@xl {
text-align: right
}
}
.color-inherit {
color: inherit
}
.color-contrast-medium {
color: #79797c;
color: var(--color-contrast-medium, #79797c)
}
.color-contrast-high {
color: #313135;
color: var(--color-contrast-high, #313135)
}
.color-contrast-higher {
color: #1c1c21;
color: var(--color-contrast-higher, #1c1c21)
}
.color-primary {
color: #2a6df4;
color: var(--color-primary, #2a6df4)
}
.color-accent {
color: #f54251;
color: var(--color-accent, #f54251)
}
.color-success {
color: #88c559;
color: var(--color-success, #88c559)
}
.color-warning {
color: #ffd138;
color: var(--color-warning, #ffd138)
}
.color-error {
color: #f54251;
color: var(--color-error, #f54251)
}
.width-100\% {
width: 100%
}
.height-100\% {
height: 100%
}
.media-wrapper {
position: relative;
height: 0;
padding-bottom: 56.25%
}
.media-wrapper iframe,
.media-wrapper video,
.media-wrapper img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%
}
.media-wrapper video,
.media-wrapper img {
-o-object-fit: cover;
object-fit: cover
}
.media-wrapper--4\:3 {
padding-bottom: 75%
}
:root,
[data-theme=default] {
--color-primary-darker: hsl(220, 90%, 36%);
--color-primary-darker-h: 220;
--color-primary-darker-s: 90%;
--color-primary-darker-l: 36%;
--color-primary-dark: hsl(220, 90%, 46%);
--color-primary-dark-h: 220;
--color-primary-dark-s: 90%;
--color-primary-dark-l: 46%;
--color-primary: hsl(220, 90%, 56%);
--color-primary-h: 220;
--color-primary-s: 90%;
--color-primary-l: 56%;
--color-primary-light: hsl(220, 90%, 66%);
--color-primary-light-h: 220;
--color-primary-light-s: 90%;
--color-primary-light-l: 66%;
--color-primary-lighter: hsl(220, 90%, 76%);
--color-primary-lighter-h: 220;
--color-primary-lighter-s: 90%;
--color-primary-lighter-l: 76%;
--color-accent-darker: hsl(355, 90%, 41%);
--color-accent-darker-h: 355;
--color-accent-darker-s: 90%;
--color-accent-darker-l: 41%;
--color-accent-dark: hsl(355, 90%, 51%);
--color-accent-dark-h: 355;
--color-accent-dark-s: 90%;
--color-accent-dark-l: 51%;
--color-accent: hsl(355, 90%, 61%);
--color-accent-h: 355;
--color-accent-s: 90%;
--color-accent-l: 61%;
--color-accent-light: hsl(355, 90%, 71%);
--color-accent-light-h: 355;
--color-accent-light-s: 90%;
--color-accent-light-l: 71%;
--color-accent-lighter: hsl(355, 90%, 81%);
--color-accent-lighter-h: 355;
--color-accent-lighter-s: 90%;
--color-accent-lighter-l: 81%;
--color-black: hsl(240, 8%, 12%);
--color-black-h: 240;
--color-black-s: 8%;
--color-black-l: 12%;
--color-white: hsl(0, 0%, 100%);
--color-white-h: 0;
--color-white-s: 0%;
--color-white-l: 100%;
--color-success-darker: hsl(94, 48%, 36%);
--color-success-darker-h: 94;
--color-success-darker-s: 48%;
--color-success-darker-l: 36%;
--color-success-dark: hsl(94, 48%, 46%);
--color-success-dark-h: 94;
--color-success-dark-s: 48%;
--color-success-dark-l: 46%;
--color-success: hsl(94, 48%, 56%);
--color-success-h: 94;
--color-success-s: 48%;
--color-success-l: 56%;
--color-success-light: hsl(94, 48%, 66%);
--color-success-light-h: 94;
--color-success-light-s: 48%;
--color-success-light-l: 66%;
--color-success-lighter: hsl(94, 48%, 76%);
--color-success-lighter-h: 94;
--color-success-lighter-s: 48%;
--color-success-lighter-l: 76%;
--color-error-darker: hsl(355, 90%, 41%);
--color-error-darker-h: 355;
--color-error-darker-s: 90%;
--color-error-darker-l: 41%;
--color-error-dark: hsl(355, 90%, 51%);
--color-error-dark-h: 355;
--color-error-dark-s: 90%;
--color-error-dark-l: 51%;
--color-error: hsl(355, 90%, 61%);
--color-error-h: 355;
--color-error-s: 90%;
--color-error-l: 61%;
--color-error-light: hsl(355, 90%, 71%);
--color-error-light-h: 355;
--color-error-light-s: 90%;
--color-error-light-l: 71%;
--color-error-lighter: hsl(355, 90%, 81%);
--color-error-lighter-h: 355;
--color-error-lighter-s: 90%;
--color-error-lighter-l: 81%;
--color-warning-darker: hsl(46, 100%, 41%);
--color-warning-darker-h: 46;
--color-warning-darker-s: 100%;
--color-warning-darker-l: 41%;
--color-warning-dark: hsl(46, 100%, 51%);
--color-warning-dark-h: 46;
--color-warning-dark-s: 100%;
--color-warning-dark-l: 51%;
--color-warning: hsl(46, 100%, 61%);
--color-warning-h: 46;
--color-warning-s: 100%;
--color-warning-l: 61%;
--color-warning-light: hsl(46, 100%, 71%);
--color-warning-light-h: 46;
--color-warning-light-s: 100%;
--color-warning-light-l: 71%;
--color-warning-lighter: hsl(46, 100%, 81%);
--color-warning-lighter-h: 46;
--color-warning-lighter-s: 100%;
--color-warning-lighter-l: 81%;
--color-bg: hsl(0, 0%, 100%);
--color-bg-h: 0;
--color-bg-s: 0%;
--color-bg-l: 100%;
--color-contrast-lower: hsl(0, 0%, 95%);
--color-contrast-lower-h: 0;
--color-contrast-lower-s: 0%;
--color-contrast-lower-l: 95%;
--color-contrast-low: hsl(240, 1%, 83%);
--color-contrast-low-h: 240;
--color-contrast-low-s: 1%;
--color-contrast-low-l: 83%;
--color-contrast-medium: hsl(240, 1%, 48%);
--color-contrast-medium-h: 240;
--color-contrast-medium-s: 1%;
--color-contrast-medium-l: 48%;
--color-contrast-high: hsl(240, 4%, 20%);
--color-contrast-high-h: 240;
--color-contrast-high-s: 4%;
--color-contrast-high-l: 20%;
--color-contrast-higher: hsl(240, 8%, 12%);
--color-contrast-higher-h: 240;
--color-contrast-higher-s: 8%;
--color-contrast-higher-l: 12%
}
@supports (--css:variables) {
@media (min-width: 64rem) {
:root {
--space-unit: 1.25em
}
}
}
:root {
--radius: 0.25em
}
:root {
--font-primary: sans-serif;
--text-base-size: 1em;
--text-scale-ratio: 1.2;
--text-xs: calc(1em/var(--text-scale-ratio)/var(--text-scale-ratio));
--text-sm: calc(var(--text-xs) *var(--text-scale-ratio));
--text-md: calc(var(--text-sm) *var(--text-scale-ratio) *var(--text-scale-ratio));
--text-lg: calc(var(--text-md) *var(--text-scale-ratio));
--text-xl: calc(var(--text-lg) *var(--text-scale-ratio));
--text-xxl: calc(var(--text-xl) *var(--text-scale-ratio));
--text-xxxl: calc(var(--text-xxl) *var(--text-scale-ratio));
--body-line-height: 1.4;
--heading-line-height: 1.2;
--font-primary-capital-letter: 1
}
@supports (--css:variables) {
@media (min-width: 64rem) {
:root {
--text-base-size: 1.25em;
--text-scale-ratio: 1.25
}
}
}
mark {
color: inherit;
background-color: hsla(355, 90%, 61%, .2);
background-color: hsla(var(--color-accent-h), var(--color-accent-s), var(--color-accent-l), 0.2)
}
.text-component {
--line-height-multiplier: 1;
--text-vspace-multiplier: 1
}
.text-component blockquote {
padding-left: 1em;
border-left: 4px solid #d3d3d4;
border-left: 4px solid var(--color-contrast-low)
}
.text-component hr {
height: 1px;
background: #d3d3d4;
background: var(--color-contrast-low)
}
.text-component figcaption {
font-size: .83333em;
font-size: var(--text-sm);
color: #79797c;
color: var(--color-contrast-medium)
}
.article.text-component {
--line-height-multiplier: 1.13;
--text-vspace-multiplier: 1.2
}
:root {
--btn-font-size: 1em;
--btn-font-size-sm: calc(var(--btn-font-size) - 0.2em);
--btn-font-size-md: calc(var(--btn-font-size) + 0.2em);
--btn-font-size-lg: calc(var(--btn-font-size) + 0.4em);
--btn-radius: 0.25em;
--btn-padding-x: var(--space-sm);
--btn-padding-y: var(--space-xs)
}
.btn {
--color-shadow: hsla(240, 8%, 12%, 0.15);
--color-shadow: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.15);
cursor: pointer;
box-shadow: 0 4px 16px hsla(240, 8%, 12%, .15);
box-shadow: 0 4px 16px hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.15)
}
.btn--primary {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale
}
.btn--accent {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale
}
.btn--disabled {
opacity: .6
}
:root {
--form-control-padding-x: var(--space-sm);
--form-control-padding-y: var(--space-xs);
--form-control-radius: 0.25em
}
.form-control {
border: 2px solid #d3d3d4;
border: 2px solid var(--color-contrast-low)
}
.form-control:focus {
--color-shadow: hsla(220, 90%, 56%, 0.2);
--color-shadow: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
border-color: #2a6df4;
border-color: var(--color-primary);
outline: none;
box-shadow: undefined;
box-shadow: 0 0 0 3px var(--color-shadow);
}
.form-control:focus:focus {
box-shadow: 0 0 0 3px hsla(220, 90%, 56%, .2);
box-shadow: 0 0 0 3px var(--color-shadow)
}
.form-control[aria-invalid=true] {
border-color: #f54251;
border-color: var(--color-error)
}
.form-control[aria-invalid=true]:focus {
--color-shadow: hsla(355, 90%, 61%, 0.2);
--color-shadow: hsla(var(--color-error-h), var(--color-error-s), var(--color-error-l), 0.2);
box-shadow: undefined;
box-shadow: 0 0 0 3px var(--color-shadow)
}
.form-control[aria-invalid=true]:focus:focus {
box-shadow: 0 0 0 3px hsla(355, 90%, 61%, .2);
box-shadow: 0 0 0 3px var(--color-shadow)
}
.form-label {
font-size: .83333em;
font-size: var(--text-sm)
}
:root {
--hs-color-1: hsl(206, 21%, 24%);
--hs-color-1-h: 206;
--hs-color-1-s: 21%;
--hs-color-1-l: 24%;
--hs-color-2: hsl(205, 38%, 89%);
--hs-color-2-h: 205;
--hs-color-2-s: 38%;
--hs-color-2-l: 89%;
--hs-color-3: hsl(207, 10%, 55%);
--hs-color-3-h: 207;
--hs-color-3-s: 10%;
--hs-color-3-l: 55%;
--hs-color-4: hsl(111, 51%, 60%);
--hs-color-4-h: 111;
--hs-color-4-s: 51%;
--hs-color-4-l: 60%;
--hs-color-5: hsl(356, 53%, 49%);
--hs-color-5-h: 356;
--hs-color-5-s: 53%;
--hs-color-5-l: 49%;
--hs-color-6: hsl(47, 85%, 61%);
--hs-color-6-h: 47;
--hs-color-6-s: 85%;
--hs-color-6-l: 61%;
--hs-header-height: 200px;
--font-primary: 'Droid Serif', serif;
--font-secondary: 'Open Sans', sans-serif
}
@supports (--css:variables) {
@media (min-width: 64rem) {
:root {
--hs-header-height: 300px
}
}
}
.cd-main-header {
height: 200px;
height: var(--hs-header-height);
color: #fff;
color: var(--color-white);
background: #303f4a;
background: var(--hs-color-1);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale
}
.cd-main-header h1 {
font-family: open sans, sans-serif;
font-family: var(--font-secondary);
color: inherit
}
.cd-timeline {
padding: 2em 0;
padding: var(--space-lg) 0;
overflow: hidden;
font-family: 'droid serif', serif;
font-family: var(--font-primary);
color: #818d98;
color: var(--hs-color-3);
background-color: #e8eff5;
background-color: hsl(var(--hs-color-2-h), var(--hs-color-2-s), calc(var(--hs-color-2-l) *1.05))
}
.cd-timeline h2 {
font-family: open sans, sans-serif;
font-family: var(--font-secondary);
font-weight: 700
}
.cd-timeline__container {
position: relative;
padding: 1.25em 0;
padding: var(--space-md) 0
}
.cd-timeline__container::before {
position: absolute;
top: 0;
left: 18px;
width: 4px;
height: 100%;
content: '';
background: #d8e5ee;
background: var(--hs-color-2)
}
@media (min-width: 64rem) {
.cd-timeline__container::before {
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%)
}
}
.cd-timeline__block {
position: relative;
z-index: 1;
display: -ms-flexbox;
display: flex;
margin-bottom: 2em;
margin-bottom: var(--space-lg)
}
.cd-timeline__block:last-child {
margin-bottom: 0
}
@media (min-width: 64rem) {
.cd-timeline__block:nth-child(even) {
-ms-flex-direction: row-reverse;
flex-direction: row-reverse
}
}
.cd-timeline__img {
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
-ms-flex-pack: center;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
box-shadow: 0 0 0 4px #fff, inset 0 2px 0 rgba(0, 0, 0, .08), 0 3px 0 4px rgba(0, 0, 0, .05);
box-shadow: 0 0 0 4px var(--color-white), inset 0 2px 0 rgba(0, 0, 0, .08), 0 3px 0 4px rgba(0, 0, 0, .05);
-ms-flex-negative: 0;
flex-shrink: 0
}
.cd-timeline__img img {
width: 24px;
height: 24px
}
@media (min-width: 64rem) {
.cd-timeline__img {
-ms-flex-order: 1;
order: 1;
width: 60px;
height: 60px;
margin-left: calc(5% - 30px);
will-change: transform
}
.cd-timeline__block:nth-child(even) .cd-timeline__img {
margin-right: calc(5% - 30px)
}
}
.cd-timeline__img--picture {
background-color: #75cd65;
background-color: var(--hs-color-4)
}
.cd-timeline__img--movie {
background-color: #bf3b44;
background-color: var(--hs-color-5)
}
.cd-timeline__img--location {
background-color: #f0cb47;
background-color: var(--hs-color-6)
}
.cd-timeline__content {
position: relative;
flex-grow: 1;
padding: 1.25em;
padding: var(--space-md);
margin-left: 1.25em;
margin-left: var(--space-md);
background: #fff;
background: var(--color-white);
border-radius: .25em;
border-radius: var(--radius-md);
box-shadow: 0 3px 0 #d8e5ee;
box-shadow: 0 3px 0 var(--hs-color-2);
-ms-flex-positive: 1
}
.cd-timeline__content::before {
position: absolute;
top: 16px;
right: 100%;
width: 0;
height: 0;
content: '';
border: 7px solid transparent;
border-right-color: #fff;
border-right-color: var(--color-white)
}
.cd-timeline__content h2 {
color: #303f4a;
color: var(--hs-color-1)
}
@media (min-width: 64rem) {
.cd-timeline__content {
--line-height-multiplier: 1.2;
flex-grow: 0;
width: 45%;
margin: 0;
font-size: .8em;
-ms-flex-positive: 0;
will-change: transform;
}
.cd-timeline__content::before {
top: 24px
}
.cd-timeline__block:nth-child(odd) .cd-timeline__content::before {
right: auto;
left: 100%;
width: 0;
height: 0;
border: 7px solid transparent;
border-left-color: #fff;
border-left-color: var(--color-white)
}
}
.cd-timeline__date {
color: hsla(207, 10%, 55%, .7);
color: hsla(var(--hs-color-3-h), var(--hs-color-3-s), var(--hs-color-3-l), 0.7)
}
@media (min-width: 64rem) {
.cd-timeline__date {
position: absolute;
top: 20px;
left: 120%;
width: 100%
}
.cd-timeline__block:nth-child(even) .cd-timeline__date {
right: 120%;
left: auto;
text-align: right
}
}
@media (min-width: 64rem) {
.cd-timeline__img--hidden,
.cd-timeline__content--hidden {
visibility: hidden
}
.cd-timeline__img--bounce-in {
-webkit-animation: cd-bounce-1 .6s;
animation: cd-bounce-1 .6s
}
.cd-timeline__content--bounce-in {
-webkit-animation: cd-bounce-2 .6s;
animation: cd-bounce-2 .6s
}
.cd-timeline__block:nth-child(even) .cd-timeline__content--bounce-in {
-webkit-animation-name: cd-bounce-2-inverse;
animation-name: cd-bounce-2-inverse
}
}
@-webkit-keyframes cd-bounce-1 {
0% {
opacity: 0;
-webkit-transform: scale(.5);
transform: scale(.5)
}
60% {
opacity: 1;
-webkit-transform: scale(1.2);
transform: scale(1.2)
}
100% {
-webkit-transform: scale(1);
transform: scale(1)
}
}
@keyframes cd-bounce-1 {
0% {
opacity: 0;
-webkit-transform: scale(.5);
transform: scale(.5)
}
60% {
opacity: 1;
-webkit-transform: scale(1.2);
transform: scale(1.2)
}
100% {
-webkit-transform: scale(1);
transform: scale(1)
}
}
@-webkit-keyframes cd-bounce-2 {
0% {
opacity: 0;
-webkit-transform: translateX(-100px);
transform: translateX(-100px)
}
60% {
opacity: 1;
-webkit-transform: translateX(20px);
transform: translateX(20px)
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
}
@keyframes cd-bounce-2 {
0% {
opacity: 0;
-webkit-transform: translateX(-100px);
transform: translateX(-100px)
}
60% {
opacity: 1;
-webkit-transform: translateX(20px);
transform: translateX(20px)
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
}
@-webkit-keyframes cd-bounce-2-inverse {
0% {
opacity: 0;
-webkit-transform: translateX(100px);
transform: translateX(100px)
}
60% {
opacity: 1;
-webkit-transform: translateX(-20px);
transform: translateX(-20px)
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
}
@keyframes hs-bounce-2-inverse {
0% {
opacity: 0;
-webkit-transform: translateX(100px);
transform: translateX(100px)
}
60% {
opacity: 1;
-webkit-transform: translateX(-20px);
transform: translateX(-20px)
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
}
/* */
@keyframes hs-bounce-1 {
0% {
opacity: 0;
-webkit-transform: scale(0.5);
transform: scale(0.5)
}
60% {
opacity: 1;
-webkit-transform: scale(1.2);
transform: scale(1.2)
}
100% {
-webkit-transform: scale(1);
transform: scale(1)
}
}
@keyframes hs-bounce-2 {
0% {
opacity: 0;
-webkit-transform: translateX(-100px);
transform: translateX(-100px)
}
60% {
opacity: 1;
-webkit-transform: translateX(20px);
transform: translateX(20px)
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
}
@keyframes hs-bounce-2-inverse {
0% {
opacity: 0;
-webkit-transform: translateX(100px);
transform: translateX(100px)
}
60% {
opacity: 1;
-webkit-transform: translateX(-20px);
transform: translateX(-20px)
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
}
:root {
--yellow: #fed136;
--primary: var(--yellow);
--yiq-contrasted-threshold: 205;
--hs-color_red: #e2001a;
--hs-color_red-orange: #f63a0f;
--hs-color_orange: #f27011;
--hs-color_dark-yellow: #f2b01e;
--hs-color_yellow: #f2d31b;
--hs-color_yellow--light: #ffe659;
--hs-color_yellow--dark: #e2b900;
--hs-color_lime: #86e01e;
--hs-color_light-lime: #e7ffcb;
--hs-color_green: #4cd964;
--hs-color_green--light: #93ff7e;
--hs-color_green--dark: #468c1f;
--hs-color_silver: #aaa;
--hs-color_purple: #9a39d3;
--hs-color_turquoise: #5ac8fa;
--hs-color_blue-semimuted: #4997cd;
--hs-theme-primary: #fed136;
--hs-theme-primary--trans50: rgba(254, 211, 54, 0.5);
--hs-theme-danger: #e74c3c;
--hs-theme-background-primary: #f8f8f8;
--hs-theme-background-secondary: #ebebeb;
--hs-black: #000;
--hs-black_15: rgba(0, 0, 0, 0.15);
--hs-black_25: rgba(0, 0, 0, 0.25);
--hs-black_45: rgba(0, 0, 0, 0.45);
--hs-black_50: rgba(0, 0, 0, 0.5);
--hs-black_75: rgba(0, 0, 0, 0.75);
--hs-gray-base: #111;
--hs-gray-medium: #2f2f31;
--hs-gray-darker: #333;
--hs-gray-dark: #333;
--hs-gray: #555;
--hs-gray-light: #777;
--hs-gray-lighter: #dedede;
--hs-gray-lighter-05: #e9e9ed;
--hs-gray-lightest: #eee;
--hs-white: #fff;
--hs-white_2: #f2f2f2;
--hs-white_5: #f8f8f8;
--hs-white_8: rgba(255, 255, 255, 0.08);
--hs-white_10: rgba(255, 255, 255, 0.1);
--hs-white_30: rgba(255, 255, 255, 0.3);
--hs-white_60: rgba(255, 255, 255, 0.6);
--hs-white_100: rgba(255, 255, 255, 1);
--hs-blueGray-medium: #507386;
--hs-blueGray-medium-muted: #476e82;
--hs-blueGray-medium-saturated: #136591;
--hs-blueGray-dark: #0f161d;
--hs-blueGray-very-dark: #181a1b;
--hs-blueGray-darker: #0c0f11;
--hs-blueGray-darker--alpha75: rgba(12, 15, 17, 0.75);
--hs-blueGray-light: #2d373c;
--hs-text-onDark: #fff;
--hs-green-light: #80cc94;
--hs-blue-light: #0291ca;
--hs-blue-lighter: #78bad8;
--hs-blue-lightest: #a8dfff;
--hs-blue-light-muted: #80b6cc;
--hs-blue-lighter-muted: #8ec1d9;
--hs-blue-lightest-muted: #9bcbe6;
--hs-blue-dark: #1e364e;
--hs-link-primary: var(--hs-theme-primary);
--hs-baige-light: #cac1ac;
--hs-baige-medium: #a79e8b;
--hs-theme-color-text: var(--hs-gray-dark);
--hs-theme-color-text-onDark: var(--hs-white);
--hs-font-cursive-Caveat: "Caveat", cursive;
--hs-font-cursive-NYCD: "Nothing You Could Do", cursive;
--hs-font-cursive-Sedgwick: "Sedgwick Ave Display", cursive;
--hs-text-shadow-light: 0px 0px 4px rgba(0, 0, 0, .95);
--hs-text-shadow-light-spread: 0px 4px 13px rgba(0, 0, 0, .75);
--hs-text-shadow-medium: 0px 0px 10px rgba(0, 0, 0, .85);
--hs-canvas: var(--hs-white_5);
--hs-surface: var(--hs-white);
--hs-grid-columns: 12;
--hs-grid-gutter-width: 30px;
--hs-grid-row-columns: 6;
--hs-spacing--sm: .5rem;
--hs-spacing--md: 1rem;
--hs-spacing--lg: 1.5 rem;
--hs-border-width: 1px;
--hs-border-color: --hs-gray-lighter;
--enable-rounded: true;
--hs-border-radius: .25rem;
--hs-border-radius-sm: .125rem;
--hs-border-radius-lg: .5rem;
--hs-border-radius-md: .25%;
--hs-box-shadow-glow: 0px 4px 16px 2px rgba(255, 255, 255, 0.5);
--hs-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
--hs-shadow-heavy: 2px 0.5rem 0.5rem rgba(0, 0, 0, 0.5);
--hs-shadow-xs: 2px 0.2rem 0.2rem rgba(0, 0, 0, 0.15);
--hs-shadow-xs-reverse: 0 0.2rem 0.2rem rgba(0, 0, 0, 0.15);
--hs-shadow-xs-center: 0 0.2rem 0.2rem rgba(0, 0, 0, 0.15);
--hs-shadow-xs-center-xtra: 0 0.2rem 0.2rem rgba(0, 0, 0, 0.15), 0 0.2rem 0.2rem rgba(0, 0, 0, 0.15);
--hs-shadow-xs-center-reverse: -2px 0.1rem 0.2rem rgba(0, 0, 0, 0.15);
--hs-shadow-sm: 0px 2px 4px 0px rgba(0, 0, 0, .5);
--hs-shadow-lg: 0px 4px 8px 3px rgba(0, 0, 0, .4) rgba(0, 0, 0, 0.4);
--hs-shadow-inset-blue: inset 0 0 0 2px #5173ff;
--hs-shadow-none: none;
--hs-card-shadow: rgba(0, 0, 0, 0.2) 0px 2px 1px -1px, rgba(0, 0, 0, 0.14) 0px 1px 1px 0px, rgba(0, 0, 0, 0.12) 0px 1px 3px 0px;
--hs-bg-black-to-transparent: linear-gradient(0deg, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 1) 100%);
--hs-card-width: 100%;
--hs-card-height: 100%;
--hs-card-title: 2rem;
--hs-card-subtitle: calc(var(--hs-card-title) - 10%);
--hs-card-img-width: var(--hs-card-width);
--hs-card-img-height: 100%;
--hs-card-width--sm: 265px;
--hs-card-title--sm: 1.3rem;
--hs-card-subtitle--sm: calc(var(--hs-card-title--sm) - 10%);
--hs-card-img-width--sm: var(--hs-card-width--sm);
--hs-card-img-height--sm: 100%;
--hs-card-width--lg: 400px;
--hs-card-title--lg: 2.3rem;
--hs-card-subtitle--lg: calc(var(--hs-card-title--lg) - 10%);
--hs-card-img-width--lg: var(--hs-card-width--lg);
--hs-card-img-height--lg: 287px;
--hs-card-width--fluid: 100%;
--hs-card-title--fluid: 2.4rem;
--hs-card-subtitle--fluid: calc(var(--hs-card-title--fluid) - 10%);
--hs-card-img-width--fluid: var(--hs-card-width--fluid);
--hs-card-img-height--fluid: 100%;
--hs-card-margin: .5rem;
--hs-card-spacer-y: .75rem;
--hs-card-spacer-x: 1.25rem;
--hs-card-border-width: $(--hs-border-width);
--hs-card-border-radius: $(--hs-border-radius);
--hs-card-border-color: rgba(--hs-black, .125);
--hs-card-inner-border-radius: $(--hs-border-radius-sm);
--hs-card-cap-bg: rgba(--hs-black, .03);
--hs-card-cap-color: null;
--hs-card-color: null;
--hs-card-bg: $(--hs-white);
--hs-card-img-overlay-padding: 1.25rem;
--hs-card-group-margin: calc(var(--hs-grid-gutter-width) / 2);
--hs-card-deck-margin: var(--hs-card-group-margin);
--hs-card-columns-count: 3;
--hs-card-columns-gap: 1.25rem;
--hs-card-columns-margin: var(--hs-card-spacer-y);
--hs-zindex-dropdown: 1000;
--hs-zindex-sticky: 1020;
--hs-zindex-fixed: 1030;
--hs-zindex-modal-backdrop: 1040;
--hs-zindex-modal: 1050;
--hs-zindex-popover: 1060;
--hs-zindex-tooltip: 1070;
--hs-circle: 50%;
--hs-pill: 500%
}
.hs-card {
position: relative;
display: flex;
flex-direction: column;
min-width: 0;
height: 100%;
margin: 0.3125rem auto;
word-wrap: break-word;
background-color: #dedede;
background-clip: border-box;
border: 1px;
border-radius: 0.25rem
}
.hs-card .hs-display-block {
display: block
}
.hs-card .hs-display-none {
display: none
}
.hs-card >.hs-card_header {
display: flex;
width: 100%;
height: auto;
padding: 0;
margin-bottom: 0;
background-color: rgba(0, 0, 0, 0.03);
border-bottom: 1px solid rgba(0, 0, 0, 0.125)
}
.hs-card >.hs-card_header:first-child {
border-radius: 0.125rem 0.125rem 0 0
}
.hs-card >.hs-card_header +.list-group .list-group_item:first-child {
border-top: 0
}
.hs-card >.hs-card_header >.hs-overlay {
position: relative;
width: 100%
}
.hs-card >.hs-card_header >.hs-overlay::before {
position: absolute;
z-index: -1;
width: 100%;
height: 0;
content: "";
background-color: rgba(254, 209, 54, 0.1);
transition: all ease 0.3s
}
.hs-card >.hs-card_header >.hs-overlay:hover::before {
top: 0px;
left: 0px;
z-index: 1000;
width: 100%;
height: 100%;
font-size: 1rem;
color: #fff;
content: "";
background-color: rgba(254, 209, 54, 0.75);
transition: all ease 0.3s
}
.hs-card >.hs-card_header >.hs-overlay::after {
position: absolute;
top: 0%;
left: 50%;
z-index: 1001;
width: 100%;
height: 80px;
font-size: 3rem;
line-height: normal;
color: #fff;
text-align: center;
white-space: nowrap;
content: "";
background-image: url("data:image/svg+xml;charset=UTF-8, %3csvg version='1.1' id='Layer_1' focusable='false' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='400px' height='262px' viewBox='0 0 400 262' enable-background='new 0 0 400 262' xml:space='preserve'%3e%3cpath fill='%23FFFFFF' stroke='%23FFFFFF' stroke-miterlimit='10' d='M298.25,106.438h-73.688V32.75c0-9.042-7.333-16.375-16.375-16.375 h-16.375c-9.042,0-16.375,7.333-16.375,16.375v73.688H101.75c-9.042,0-16.375,7.333-16.375,16.375v16.375 c0,9.042,7.333,16.375,16.375,16.375h73.688v73.688c0,9.042,7.333,16.375,16.375,16.375h16.375c9.042,0,16.375-7.333,16.375-16.375 v-73.688h73.688c9.042,0,16.375-7.333,16.375-16.375v-16.375C314.625,113.771,307.292,106.438,298.25,106.438z'/%3e%3c/svg%3e");
background-repeat: no-repeat;
background-position-x: center;
background-position-y: top 40px;
background-size: 16px;
opacity: 0;
transition: all ease 0.3s;
transform: translate(-50%)
}
.hs-card >.hs-card_header >.hs-overlay:hover::after {
top: 50%;
left: 0%;
z-index: 1001;
content: "";
background-position-x: center;
background-position-y: bottom 40px;
background-size: 48px;
opacity: 1;
transition: all ease 0.3s;
transform: translate(0%)
}
.hs-card >.list-group {
border-top: inherit;
border-bottom: inherit
}
.hs-card >.list-group:first-child {
border-top-width: 0;
border-top-left-radius: 0.125rem;
border-top-right-radius: 0.125rem
}
.hs-card >.list-group:last-child {
border-bottom-width: 0;
border-bottom-right-radius: 0.125rem;
border-bottom-left-radius: 0.125rem
}
.hs-card >hr {
margin-right: 0;
margin-left: 0
}
.hs-card .hs-card_footer {
background-color: rgba(0, 0, 0, 0.03);
border-top: 1px solid rgba(0, 0, 0, 0.125)
}
.hs-card .hs-card_footer:last-child {
border-radius: 0 0 0.125rem 0.125rem
}
.hs-card .hs-card_footer.dark {
background-color: #0f161d
}
.hs-card .hs-card_footer .hs-logo-row--footer ul.flex-container.space-between {
display: flex;
align-items: center;
max-width: 90%;
padding: 0;
margin: 0;
list-style: none
}
.hs-card .hs-card_footer .hs-logo-row--footer ul.flex-container.space-between li.flex-item {
display: inline-block;
flex: 1 1 auto;
width: auto
}
.hs-card_img-header_img {
width: 100%;
width: 100%;
height: auto
}
.hs-card_img-header_img--sm {
width: 100%;
height: auto
}
.hs-card_img-header_img--sm .hs-card_img-header_img {
width: 100%;
height: auto
}
.hs-card_img-header_img--lg {
width: 400px;
height: auto
}
.hs-card_img-header_img--lg .hs-card_img-header_img {
width: 400px;
height: auto
}
.hs-card_img-header_img--fluid {
width: 100%;
height: auto
}
.hs-card_body {
flex: 1 1 auto;
width: 100%;
width: 100%;
overflow: hidden;
background-color: #f8f8f8
}
.hs-card_content {
width: 100%;
padding: 12px 1rem;
line-height: 1;
text-align: left;
background-color: #fff
}
.hs-card_title {
margin-bottom: 0.75rem
}
.hs-card_subtitle {
margin-top: -0.375rem;
margin-bottom: 0
}
.hs-card_linkhover {
text-decoration: none
}
.hs-card_header {
display: flex;
width: 100%;
padding: 0.5rem;
margin-bottom: 0;
background-color: rgba(0, 0, 0, 0.03);
border-bottom: 1px solid rgba(0, 0, 0, 0.125)
}
.hs-card_header:first-child {
border-radius: 0
}
.hs-card_header +.list-group .list-group_item:first-child {
border-top: 0
}
.hs-card_header-tabs {
margin-right: -0.625rem;
margin-bottom: -0.75rem;
margin-left: -0.625rem;
border-bottom: 0
}
.hs-card_header-pills {
margin-right: -0.625rem;
margin-left: -0.625rem
}
.hs-card_img-header_overlay,
[class^=hs-card_img-headerr_overlay--] {
position: relative
}
.hs-card_img-header_overlay::before,
[class^=hs-card_img-headerr_overlay--]::before {
position: absolute;
z-index: 99;
width: 100%;
height: 100%;
content: "";
background-color: rgba(254, 209, 54, 0.1);
opacity: 1;
transition: all ease 0.3s;
transform: translate(0%, 0%)
}
.hs-card_img-header_overlay:hover::before,
[class^=hs-card_img-headerr_overlay--]:hover::before {
top: 0px;
left: 0px;
z-index: 99;
width: 100%;
height: 100%;
color: #fff;
content: "";
background-color: rgba(254, 209, 54, 0.75);
background-image: url("data:image/svg+xml;charset=utf-8, %3c?xml version='1.0'encoding='utf-8'?%3e%3c !-- generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version:6.00 Build 0) --%3e%3c !DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN''http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg version='1.1'id='Layer_1'xmlns='http://www.w3.org/2000/svg'xmlns:xlink='http://www.w3.org/1999/xlink'x='0px'y='0px'width='48px'height='48px'viewBox='0 0 48 48'enable-background='new 0 0 48 48'xml:space='preserve'%3e%3cpath fill='%23FFFFFF'd='M47,18.25H29.75V1h-11.5v17.25H1v11.5h17.25V47h11.5V29.75H47V18.25z'/%3e%3c/svg%3e");
background-repeat: no-repeat;
background-position: center center;
background-size: 48px;
opacity: 1;
transform: translate(0%, 0%)
}
@media (min-width: 48rem) {
.hs-card {
margin: inherit
}
.hs-card--sm {
display: inline-block;
width: 265px
}
.hs-card--lg {
display: inline-block;
width: 400px
}
.hs-card--fluid {
display: inline-block;
width: 100%
}
}
@media (min-width: 64rem) {
.hs-card {
margin: inherit
}
.hs-card--sm {
display: inline-block;
width: 265px
}
.hs-card--md {
display: inline-block;
width: 400px;
max-width: 100%
}
.hs-card--lg {
display: inline-block;
width: 600px
}
.hs-card--fluid {
display: inline-block;
width: 100%
}
}
@media (min-width: 80rem) {
.hs-card {
margin: inherit
}
.hs-card--sm {
display: inline-block;
width: 265px
}
.hs-card--md {
display: inline-block;
width: 500px
}
.hs-card--lg {
display: inline-block;
width: 80%
}
.hs-card--fluid {
display: inline-block;
width: 100%
}
}
.hs-card_img,
.hs-card_img--top,
.hs-card_img--bottom {
flex-shrink: 0;
width: 100%
}
.hs-card_img,
.hs-card_img--top {
border-top-left-radius: 0.125rem;
border-top-right-radius: 0.125rem
}
.hs-card_img,
.hs-card_img--bottom {
border-bottom-right-radius: 0.125rem;
border-bottom-left-radius: 0.125rem
}
.hs-card-deck .hs-card {
margin-bottom: 15px
}
@media (min-width: 576px) {
.hs-card-deck {
display: -ms-flexbox;
display: flex;
-ms-flex-flow: row wrap;
flex-flow: row wrap;
margin-right: -15px;
margin-left: -15px
}
.hs-card-deck .hs-card {
-ms-flex: 1 0 0%;
flex: 1 0 0%;
margin-right: 15px;
margin-bottom: 15px;
margin-left: 15px
}
}
@media (min-width: 576px) {
.hs-card-group {
display: -ms-flexbox;
display: flex;
-ms-flex-flow: row wrap;
flex-flow: row wrap
}
.hs-card-group >.hs-card {
-ms-flex: 1 0 0%;
flex: 1 0 0%;
margin-bottom: 15px
}
.hs-card-group >.hs-card +.hs-card {
margin-left: 0;
border-left: 0
}
.hs-card-group >.hs-card:not(:last-child) {
border-top-right-radius: 0;
border-bottom-right-radius: 0
}
.hs-card-group >.hs-card:not(:last-child) .hs-card_img--top,
.hs-card-group >.hs-card:not(:last-child) .hs-card_header {
border-top-right-radius: 0
}
.hs-card-group >.hs-card:not(:last-child) .hs-card_img--bottom,
.hs-card-group >.hs-card:not(:last-child) .hs-card_footer {
border-bottom-right-radius: 0
}
.hs-card-group >.hs-card:not(:first-child) {
border-top-left-radius: 0;
border-bottom-left-radius: 0
}
.hs-card-group >.hs-card:not(:first-child) .hs-card_img--top,
.hs-card-group >.hs-card:not(:first-child) .hs-card_header {
border-top-left-radius: 0
}
.hs-card-group >.hs-card:not(:first-child) .hs-card_img--bottom,
.hs-card-group >.hs-card:not(:first-child) .hs-card_footer {
border-bottom-left-radius: 0
}
}
@media (min-width: 576px) {
.hs-card-columns {
-webkit-column-count: 3;
-moz-column-count: 3;
column-count: 3;
-webkit-column-gap: 1.25rem;
-moz-column-gap: 1.25rem;
column-gap: 1.25rem;
orphans: 1;
widows: 1
}
.hs-card-columns .hs-card {
display: inline-block;
width: 100%
}
}
.hs-dev-logo {
vertical-align: middle;
filter: grayscale(60%);
opacity: 0.5
}
.hs-logo-row--footer {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
max-height: 96px;
padding: 0.5rem
}
.hs-logo-row--footer .hs-dev-logo {
width: 24px;
vertical-align: middle
}
.hs-skills-logo {
vertical-align: middle
}
.hs-divider {
display: flex;
height: 30px
}
.hs-card_text:last-child {
margin-bottom: 0
}
.hs-card_link +.hs-card_link {
margin-left: 1.25rem
}
.hs-card-deck .hs-card {
margin-bottom: 15px
}
.hs-card-group >.hs-card {
margin-bottom: 15px
}
.hs-card_columns .hs-card {
margin-bottom: 0.75rem
}
.accordion >.hs-card {
overflow: hidden
}
.accordion >.hs-card:not(:last-of-type) {
border-bottom: 0;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0
}
.accordion >.hs-card:not(:first-of-type) {
border-top-left-radius: 0;
border-top-right-radius: 0
}
.accordion >.hs-card >.hs-card_header {
padding: 0.5rem;
margin-bottom: -1px;
border-radius: 0
}
.footer-logos {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
width: 100%;
padding: 10px;
margin: 0px 10px;
margin-block-start: 0px;
margin-block-end: 0px;
padding-inline-start: 0px;
padding-inline-end: 0px;
list-style: none
}
.footer-logos .flex-item {
flex: none
} | 0.475362 | 0.11422 |
#guitar-svg svg {
max-height: 100vh;
}
.fixed {
position: fixed;
display: flex;
align-self: center;
/* flex-direction: column; */
align-items: center;
right: 25px;
top: 0;
bottom: 0;
width: calc((80vw - 600px) - 50px);
}
@media (max-width: 1600px) {
.fixed {
width: calc((85vw - 500px));
}
}
.idyll-header {
font-family: 'Quattrocento', serif;
text-align: center;
margin-top: 15vh;
margin-bottom: 0;
}
.idyll-header h1 {
font-weight: bold;
font-size: 5em;
/* color: #4A90E2; */
}
h1, h2, h3, h4, h5 {
border-bottom: none;
font-family: 'Quattrocento', serif;
font-weight: bold;
}
h1 {
font-size: 1.2em;
}
h2 {
font-size: 1.0em;
margin-top: 2em;
}
.how-to {
color: #4A90E2;
}
section, .notification {
margin-top: 50vh;
margin-bottom: 50vh;
/* border: solid 2px black;
border-radius: 0;
box-shadow: 2px 2px 5px #ddd; */
/* padding: 50px 25px 50px 25px; */
font-family: 'Fanwood Text', serif;
font-size: 1.8em;
}
.notification {
background: #50E3C2;
padding: 25px 25px 25px 25px;
border-radius: 50px;
font-family: 'Quattrocento', serif;
font-weight: bold;
/* text-transform: uppercase; */
}
svg text {
font-family: 'Courier New', Courier, monospace;
font-size: 14px;
}
#current-string {
font-family: 'Quattrocento', serif;
/* color: black; */
fill: black;
}
.tuner {
cursor: ns-resize;
}
button {
background: white;
color: black;
border-radius: 20px;
border: solid 3px black;
padding: 5px 10px;
cursor: pointer;
margin: 10px;
}
button:focus {outline:0;}
button:hover {
background: black;
color: white;
}
.centered {
margin: 30px auto;
text-align: center;
}
.centered button {
display: inline-block;
}
.string {
cursor: se-resize;
}
.loader {
text-align: center;
}
.idyll-dynamic {
cursor: ew-resize;
}
a {
text-decoration: underline;
text-decoration-color: #4A90E2;
color: black;
}
a:hover {
text-decoration: underline;
text-decoration-color: #4A90E2;
color: #4A90E2;
}
.end-bits {
font-family: 'Fanwood Text', serif;
font-size: 0.9em;
}
.mobile-warning {
position: fixed;
/* top: 50vh; */
bottom: 0;
right: 0;
left: 0;
background: #ddd;
padding: 20px 20px 20px 20px;
font-size: 0.8em;
}
.mobile-load-confirm {
background: #4A90E2;
color: white;
width: 150px;
text-align: center;
padding: 10px 5px;
margin: 30px auto 0 auto;
}
@media(max-width: 800px) {
body {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome and Opera */
}
.fixed {
bottom: 0;
height: 200px;
top: auto;
right: 0;
left: 0;
width: 100%;
background: rgba(255, 255, 255, 0.8);
border-top: solid 1px #333;
/* background: white; */
color: black;
/* z-index: -1; */
}
.idyll-header {
margin-top: 15px;
}
section {
/* background: white; */
padding: 30px 10px;
font-family: 'Fanwood Text', serif;
font-size: 1.2em;
pointer-events: none;
/* border: solid 1px black; */
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome and Opera */
}
.idyll-header h1 {
font-size: 3em;
}
#guitar-svg .guitar-svg-el {
transform: rotate(90deg) translateY(100px);
transition: transform 1s;
}
#guitar-svg.default .guitar-svg-el {
transform: rotate(90deg) translateY(100px);
}
#guitar-svg.headstock .guitar-svg-el {
transform: translateY(-50px) translateX(0px);
}
section button, section .button {
pointer-events: all;
}
} | styles.css |
#guitar-svg svg {
max-height: 100vh;
}
.fixed {
position: fixed;
display: flex;
align-self: center;
/* flex-direction: column; */
align-items: center;
right: 25px;
top: 0;
bottom: 0;
width: calc((80vw - 600px) - 50px);
}
@media (max-width: 1600px) {
.fixed {
width: calc((85vw - 500px));
}
}
.idyll-header {
font-family: 'Quattrocento', serif;
text-align: center;
margin-top: 15vh;
margin-bottom: 0;
}
.idyll-header h1 {
font-weight: bold;
font-size: 5em;
/* color: #4A90E2; */
}
h1, h2, h3, h4, h5 {
border-bottom: none;
font-family: 'Quattrocento', serif;
font-weight: bold;
}
h1 {
font-size: 1.2em;
}
h2 {
font-size: 1.0em;
margin-top: 2em;
}
.how-to {
color: #4A90E2;
}
section, .notification {
margin-top: 50vh;
margin-bottom: 50vh;
/* border: solid 2px black;
border-radius: 0;
box-shadow: 2px 2px 5px #ddd; */
/* padding: 50px 25px 50px 25px; */
font-family: 'Fanwood Text', serif;
font-size: 1.8em;
}
.notification {
background: #50E3C2;
padding: 25px 25px 25px 25px;
border-radius: 50px;
font-family: 'Quattrocento', serif;
font-weight: bold;
/* text-transform: uppercase; */
}
svg text {
font-family: 'Courier New', Courier, monospace;
font-size: 14px;
}
#current-string {
font-family: 'Quattrocento', serif;
/* color: black; */
fill: black;
}
.tuner {
cursor: ns-resize;
}
button {
background: white;
color: black;
border-radius: 20px;
border: solid 3px black;
padding: 5px 10px;
cursor: pointer;
margin: 10px;
}
button:focus {outline:0;}
button:hover {
background: black;
color: white;
}
.centered {
margin: 30px auto;
text-align: center;
}
.centered button {
display: inline-block;
}
.string {
cursor: se-resize;
}
.loader {
text-align: center;
}
.idyll-dynamic {
cursor: ew-resize;
}
a {
text-decoration: underline;
text-decoration-color: #4A90E2;
color: black;
}
a:hover {
text-decoration: underline;
text-decoration-color: #4A90E2;
color: #4A90E2;
}
.end-bits {
font-family: 'Fanwood Text', serif;
font-size: 0.9em;
}
.mobile-warning {
position: fixed;
/* top: 50vh; */
bottom: 0;
right: 0;
left: 0;
background: #ddd;
padding: 20px 20px 20px 20px;
font-size: 0.8em;
}
.mobile-load-confirm {
background: #4A90E2;
color: white;
width: 150px;
text-align: center;
padding: 10px 5px;
margin: 30px auto 0 auto;
}
@media(max-width: 800px) {
body {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome and Opera */
}
.fixed {
bottom: 0;
height: 200px;
top: auto;
right: 0;
left: 0;
width: 100%;
background: rgba(255, 255, 255, 0.8);
border-top: solid 1px #333;
/* background: white; */
color: black;
/* z-index: -1; */
}
.idyll-header {
margin-top: 15px;
}
section {
/* background: white; */
padding: 30px 10px;
font-family: 'Fanwood Text', serif;
font-size: 1.2em;
pointer-events: none;
/* border: solid 1px black; */
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome and Opera */
}
.idyll-header h1 {
font-size: 3em;
}
#guitar-svg .guitar-svg-el {
transform: rotate(90deg) translateY(100px);
transition: transform 1s;
}
#guitar-svg.default .guitar-svg-el {
transform: rotate(90deg) translateY(100px);
}
#guitar-svg.headstock .guitar-svg-el {
transform: translateY(-50px) translateX(0px);
}
section button, section .button {
pointer-events: all;
}
} | 0.250546 | 0.091748 |
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait){
#wrapper{
width:auto !important;
}
#main{
padding-bottom:50px;
}
.columns .col{
float:none;
width:100% !important;
padding:0 0 20px;
}
.avada-container .columns {
float:none;
width:100%;
margin-bottom:20px;
}
.avada-container .columns .col {float:left;}
.avada-container .col img{
display:block;
margin:0 auto;
}
.review {
float:none;
width:100%;
}
.footer-area .columns .col{
float:left;
width:98% !important;
padding:0 2% 20px 0;
}
.social-networks,
.copyright{
float:none;
padding:0 0 15px;
text-align:center;
}
.copyright:after,
.social-networks:after{
content:"";
display:block;
clear:both;
}
.social-networks li,
.copyright li{
float:none;
display:inline-block;
}
.continue {display:none;}
.mobile-button{
display:block !important;
float:none;
}
.page-title{
width:auto;
padding-top:18px;
padding-left:10px; padding-right:10px;
}
.page-title-wrapper{
width:auto;
}
.page-title h1{
float:none;
}
.page-title ul{
float:none;
text-align:left;
padding-top:0 !important;
line-height:11px !important;
}
#header{
padding:20px;
}
#header-sticky .logo,#header .logo{
float:none;
text-align:center;
margin:0 !important;
margin-bottom:20px !important;
}
#header-sticky .nav-holder,#header .nav-holder{
float:none;
}
.nav-holder ul,.top-menu .menu{display:none;}
.nav-holder .dd-container,.top-menu .dd-container{display:block !important;width:100%;}
.one_half, .one_third, .two_third, .three_fourth, .one_fourth{
width:100%;
margin-bottom:20px;
}
.one_half > div, .one_third > div, .two_third > div, .three_fourth > div, .one_fourth > div{
margin-bottom:0;
}
.title{
margin-top:0px !important;
margin-bottom:20px !important;
}
#content{
width:100% !important;
float:none !important;
margin-bottom:50px;
}
#sidebar{
width:100% !important;
float:none !important;
}
#sidebar .social_links .social li{
width:auto;
margin-right:5px;
}
#comment-input{
margin-bottom:0;
}
#comment-input input{
width:90%;
float:none;
margin-bottom:10px;
}
#comment-textarea textarea{
width:90%;
}
.pagination{
margin-top:40px;
}
.portfolio-one .portfolio-item .image{
float:none;
width:auto;
height:auto;
margin-bottom:20px;
}
h5.toggle span.toggle-title{
width:80%;
}
.full-boxed-pricing{
width:97%;
}
.full-boxed-pricing .column{
width:100%;
border:1px solid #E5E4E3 !important;
margin-bottom:10px;
}
.full-boxed-pricing ul{
width:100%;
}
.sep-boxed-pricing .column{
width:97%;
}
.sep-boxed-pricing ul{
width:100%;
}
.sep-boxed-pricing ul li{
width:100%;
}
.page-title h1{
margin-bottom:5px;
}
.page-title h1,.page-title ul{
float:none;
line-height:normal;
}
.share-box{
height:auto;
}
#wrapper .share-box h4{
float:none;
line-height:20px !important;
padding-top:25px;
padding-bottom:25px;
}
.share-box ul{
float:none;
overflow:hidden;
padding:0 25px;
padding-bottom:25px;
margin-top:0px;
}
.project-content .project-description{
margin-bottom:50px;
}
.project-content .project-description,.project-content .project-info{
width:100%;
}
.portfolio-half .flexslider{
width:100%;
}
.portfolio-half .project-content{
width:100%;
}
#style_selector{
display:none;
}
.portfolio-tabs{
height:auto;
border-bottom:0;
}
.portfolio-tabs li{
float:none;
margin-right:0;
border-bottom:1px solid #E7E6E6;
}
.post-content .rev_slider_wrapper{margin-left:-5px !important;}
.rev_slider_wrapper .tparrows,.rev_slider_wrapper:hover .tparrows{display:none !important;}
.ls-avada .ls-nav-prev,.ls-avada .ls-nav-next{display:none !important;}
nav#nav,nav#sticky-nav{margin-right:0;}
#footer .social-networks{width:100%;margin:0 auto;position:relative;left:-11px;}
.rev_slider .button,.ls-layer .button{
padding-left:20px; padding-right:20px;
height:30px;
line-height:30px;
}
.shortcode-tabs .tab-holder .tabs,.tab-holder .tabs{
height:auto !important;
}
.shortcode-tabs .tab-hold .tabs li{
width:100% !important;
}
#wrapper .page-title-container{height:auto !important;max-height:87px;padding-bottom:20px;}
.error_page .useful_links{width:100%;padding-left:0;}
#gmap{width:100% !important;margin-bottom:20px !important;}
.social_links_shortcode .social li{width:10% !important;}
.header-social{padding-top:10px;}
.header-v2 .header-social .alignleft,.header-v3 .header-social .alignleft{margin-left:20px !important;}
.header-v2 .header-social .alignright,.header-v3 .header-social .alignright{margin-right:20px !important;}
.header-v4 .header-social .alignleft{width:100%; margin:0; text-align:center;}
.header-v4 .header-social .alignright{width:100%; margin:0; text-align:center;}
.header-v4 .header-social .social-networks{width:100%; margin-top:0; padding-bottom:0; height:26px;}
.header-v4 .header-social .social-networks li{float:none; margin-left:10px; margin-right:10px;}
.header-v4 .header-social .social-networks li a{margin-bottom:0;}
.header-v4 .header-social{padding-bottom:0;}
.header-v4 #header{padding-left:20px; padding-right:20px;}
.header-v4 #header .logo{float:left;}
.header-v4 #small-nav{padding:6px 20px;}
.header-v4 #small-nav .navigation{width:100%;}
.header-v5 .header-social .alignleft{width:100%; margin:0; text-align:center;}
.header-v5 .header-social .alignright{width:100%; margin:0; text-align:center;}
.header-v5 .header-social .social-networks{width:100%; padding-bottom:0; height:26px;}
.header-v5 .header-social .social-networks li{float:none; margin-left:10px; margin-right:10px;}
.header-v5 .header-social .social-networks li a{margin-bottom:0;}
.header-v5 .header-social{padding-bottom:0;}
.header-v5 #small-nav{padding:6px 20px;}
.header-v5 #small-nav .navigation{width:100%;}
#wrapper .ei-slider{width:100% !important;}
.tfs-slider .slides{width:auto !important;}
#wrapper .ei-slider{height:200px !important;}
.progress-bar{margin-bottom:10px !important;}
.large-alternate .post-content{width:100%;margin-top:10px;}
.medium-alternate .date-and-formats{float:none;margin-bottom:20px;}
.medium-alternate .flexslider{float:none !important;}
.medium-alternate .post-content{float:none;width:100%;margin-top:20px;}
.content-boxes-icon-boxed .col{height:auto !important;padding-bottom:20px;}
.content-boxes-icon-on-top .col,.content-boxes-icon-boxed .col{margin-bottom:55px;}
.counter-circle-wrapper{margin-bottom:20px;}
.counters-circle .counter-circle-wrapper:last-child{margin-bottom:0;}
.counters-box .counter-box-wrapper{margin-bottom:20px;width:95.3%;}
.counters-box .counter-box-wrapper:last-child{margin-bottom:0;}
.tagline-shadow{display:none;}
.popup{display:none !important;}
.share-box .social-networks{text-align:left;}
} | docs/static/avada-stub/css/ipad.css | @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait){
#wrapper{
width:auto !important;
}
#main{
padding-bottom:50px;
}
.columns .col{
float:none;
width:100% !important;
padding:0 0 20px;
}
.avada-container .columns {
float:none;
width:100%;
margin-bottom:20px;
}
.avada-container .columns .col {float:left;}
.avada-container .col img{
display:block;
margin:0 auto;
}
.review {
float:none;
width:100%;
}
.footer-area .columns .col{
float:left;
width:98% !important;
padding:0 2% 20px 0;
}
.social-networks,
.copyright{
float:none;
padding:0 0 15px;
text-align:center;
}
.copyright:after,
.social-networks:after{
content:"";
display:block;
clear:both;
}
.social-networks li,
.copyright li{
float:none;
display:inline-block;
}
.continue {display:none;}
.mobile-button{
display:block !important;
float:none;
}
.page-title{
width:auto;
padding-top:18px;
padding-left:10px; padding-right:10px;
}
.page-title-wrapper{
width:auto;
}
.page-title h1{
float:none;
}
.page-title ul{
float:none;
text-align:left;
padding-top:0 !important;
line-height:11px !important;
}
#header{
padding:20px;
}
#header-sticky .logo,#header .logo{
float:none;
text-align:center;
margin:0 !important;
margin-bottom:20px !important;
}
#header-sticky .nav-holder,#header .nav-holder{
float:none;
}
.nav-holder ul,.top-menu .menu{display:none;}
.nav-holder .dd-container,.top-menu .dd-container{display:block !important;width:100%;}
.one_half, .one_third, .two_third, .three_fourth, .one_fourth{
width:100%;
margin-bottom:20px;
}
.one_half > div, .one_third > div, .two_third > div, .three_fourth > div, .one_fourth > div{
margin-bottom:0;
}
.title{
margin-top:0px !important;
margin-bottom:20px !important;
}
#content{
width:100% !important;
float:none !important;
margin-bottom:50px;
}
#sidebar{
width:100% !important;
float:none !important;
}
#sidebar .social_links .social li{
width:auto;
margin-right:5px;
}
#comment-input{
margin-bottom:0;
}
#comment-input input{
width:90%;
float:none;
margin-bottom:10px;
}
#comment-textarea textarea{
width:90%;
}
.pagination{
margin-top:40px;
}
.portfolio-one .portfolio-item .image{
float:none;
width:auto;
height:auto;
margin-bottom:20px;
}
h5.toggle span.toggle-title{
width:80%;
}
.full-boxed-pricing{
width:97%;
}
.full-boxed-pricing .column{
width:100%;
border:1px solid #E5E4E3 !important;
margin-bottom:10px;
}
.full-boxed-pricing ul{
width:100%;
}
.sep-boxed-pricing .column{
width:97%;
}
.sep-boxed-pricing ul{
width:100%;
}
.sep-boxed-pricing ul li{
width:100%;
}
.page-title h1{
margin-bottom:5px;
}
.page-title h1,.page-title ul{
float:none;
line-height:normal;
}
.share-box{
height:auto;
}
#wrapper .share-box h4{
float:none;
line-height:20px !important;
padding-top:25px;
padding-bottom:25px;
}
.share-box ul{
float:none;
overflow:hidden;
padding:0 25px;
padding-bottom:25px;
margin-top:0px;
}
.project-content .project-description{
margin-bottom:50px;
}
.project-content .project-description,.project-content .project-info{
width:100%;
}
.portfolio-half .flexslider{
width:100%;
}
.portfolio-half .project-content{
width:100%;
}
#style_selector{
display:none;
}
.portfolio-tabs{
height:auto;
border-bottom:0;
}
.portfolio-tabs li{
float:none;
margin-right:0;
border-bottom:1px solid #E7E6E6;
}
.post-content .rev_slider_wrapper{margin-left:-5px !important;}
.rev_slider_wrapper .tparrows,.rev_slider_wrapper:hover .tparrows{display:none !important;}
.ls-avada .ls-nav-prev,.ls-avada .ls-nav-next{display:none !important;}
nav#nav,nav#sticky-nav{margin-right:0;}
#footer .social-networks{width:100%;margin:0 auto;position:relative;left:-11px;}
.rev_slider .button,.ls-layer .button{
padding-left:20px; padding-right:20px;
height:30px;
line-height:30px;
}
.shortcode-tabs .tab-holder .tabs,.tab-holder .tabs{
height:auto !important;
}
.shortcode-tabs .tab-hold .tabs li{
width:100% !important;
}
#wrapper .page-title-container{height:auto !important;max-height:87px;padding-bottom:20px;}
.error_page .useful_links{width:100%;padding-left:0;}
#gmap{width:100% !important;margin-bottom:20px !important;}
.social_links_shortcode .social li{width:10% !important;}
.header-social{padding-top:10px;}
.header-v2 .header-social .alignleft,.header-v3 .header-social .alignleft{margin-left:20px !important;}
.header-v2 .header-social .alignright,.header-v3 .header-social .alignright{margin-right:20px !important;}
.header-v4 .header-social .alignleft{width:100%; margin:0; text-align:center;}
.header-v4 .header-social .alignright{width:100%; margin:0; text-align:center;}
.header-v4 .header-social .social-networks{width:100%; margin-top:0; padding-bottom:0; height:26px;}
.header-v4 .header-social .social-networks li{float:none; margin-left:10px; margin-right:10px;}
.header-v4 .header-social .social-networks li a{margin-bottom:0;}
.header-v4 .header-social{padding-bottom:0;}
.header-v4 #header{padding-left:20px; padding-right:20px;}
.header-v4 #header .logo{float:left;}
.header-v4 #small-nav{padding:6px 20px;}
.header-v4 #small-nav .navigation{width:100%;}
.header-v5 .header-social .alignleft{width:100%; margin:0; text-align:center;}
.header-v5 .header-social .alignright{width:100%; margin:0; text-align:center;}
.header-v5 .header-social .social-networks{width:100%; padding-bottom:0; height:26px;}
.header-v5 .header-social .social-networks li{float:none; margin-left:10px; margin-right:10px;}
.header-v5 .header-social .social-networks li a{margin-bottom:0;}
.header-v5 .header-social{padding-bottom:0;}
.header-v5 #small-nav{padding:6px 20px;}
.header-v5 #small-nav .navigation{width:100%;}
#wrapper .ei-slider{width:100% !important;}
.tfs-slider .slides{width:auto !important;}
#wrapper .ei-slider{height:200px !important;}
.progress-bar{margin-bottom:10px !important;}
.large-alternate .post-content{width:100%;margin-top:10px;}
.medium-alternate .date-and-formats{float:none;margin-bottom:20px;}
.medium-alternate .flexslider{float:none !important;}
.medium-alternate .post-content{float:none;width:100%;margin-top:20px;}
.content-boxes-icon-boxed .col{height:auto !important;padding-bottom:20px;}
.content-boxes-icon-on-top .col,.content-boxes-icon-boxed .col{margin-bottom:55px;}
.counter-circle-wrapper{margin-bottom:20px;}
.counters-circle .counter-circle-wrapper:last-child{margin-bottom:0;}
.counters-box .counter-box-wrapper{margin-bottom:20px;width:95.3%;}
.counters-box .counter-box-wrapper:last-child{margin-bottom:0;}
.tagline-shadow{display:none;}
.popup{display:none !important;}
.share-box .social-networks{text-align:left;}
} | 0.228501 | 0.060169 |
.box-shadow {
-webkit-box-shadow: 0px 8px 35px 0px rgba(73, 80, 87, 0.05);
box-shadow: 0px 8px 35px 0px rgba(73, 80, 87, 0.05);
}
.btn-round {
border-radius: 50px;
}
.fw-100 {
font-weight: 100;
}
.fw-500 {
font-weight: 500;
}
.fw-300 {
font-weight: 300;
}
.fw-700 {
font-weight: 700;
}
.fw-bold {
font-weight: bold !important;
}
.fs-6 {
font-size: 6px;
}
.fs-8 {
font-size: 8px;
}
.fs-9 {
font-size: 10px;
}
.fs-10 {
font-size: 10px;
}
.fs-11 {
font-size: 10px;
}
.fs-12 {
font-size: 12px;
}
.fs-13 {
font-size: 12px;
}
.fs-14 {
font-size: 14px;
}
.fs-16 {
font-size: 16px;
}
.fs-18 {
font-size: 18px;
}
.fs-24 {
font-size: 24px;
}
.fs-26 {
font-size: 26px;
}
.fs-28 {
font-size: 28px;
}
.fs-30 {
font-size: 30px;
}
.fs-32 {
font-size: 32px;
}
.fs-34 {
font-size: 34px;
}
.fs-36 {
font-size: 36px;
}
.fs-38 {
font-size: 38px;
}
.fs-40 {
font-size: 40px;
}
.fs-45 {
font-size: 45px;
}
.fs-50 {
font-size: 50px;
}
.fs-55 {
font-size: 55px;
}
.fs-60 {
font-size: 60px;
}
.spaced {
display: flex;
justify-content: space-between;
}
/*.ff-100 {*/
/* font-family: $museosansregular100;*/
/*}*/
/*.ff-500 {*/
/* font-family: $museosansregular500;*/
/*}*/
/*.ff-300 {*/
/* font-family: $museosansregular300;*/
/*}*/
/*.ff-700 {*/
/* font-family: $museosansregular700;*/
/*}*/
/*.ff-900 {*/
/* font-family: $museosansregular900;*/
/*}*/
.aligned {
display: flex;
align-items: center;
}
.justified {
display: flex;
justify-content: center;
}
.central {
display: flex;
justify-content: center;
align-items: center;
}
.flex-start {
display: flex;
align-items: flex-start;
}
.radius-100 {
border-radius: 100%;
}
.radius-50 {
border-radius: 50%;
}
.radius-4 {
border-radius: 4px;
}
.radius-8 {
border-radius: 8px;
}
.radius-12 {
border-radius: 12px;
}
.radius-14 {
border-radius: 14px;
}
.radius-16 {
border-radius: 16px;
}
.radius-18 {
border-radius: 18px;
}
.radius-24 {
border-radius: 24px;
}
.radius-28 {
border-radius: 28px;
}
.extra-menu {
padding: 4px 8px;
text-transform: uppercase;
color: #000;
}
.btn-empty {
background: transparent;
border: none;
padding: 0;
margin: 0;
}
.btn-empty:hover {
background: transparent;
border: none;
padding: 0;
margin: 0;
}
.btn-empty:focus {
background: transparent;
border: none;
padding: 0;
margin: 0;
}
.footer-title-style1{
color: white;
} | public/css/extra.css | .box-shadow {
-webkit-box-shadow: 0px 8px 35px 0px rgba(73, 80, 87, 0.05);
box-shadow: 0px 8px 35px 0px rgba(73, 80, 87, 0.05);
}
.btn-round {
border-radius: 50px;
}
.fw-100 {
font-weight: 100;
}
.fw-500 {
font-weight: 500;
}
.fw-300 {
font-weight: 300;
}
.fw-700 {
font-weight: 700;
}
.fw-bold {
font-weight: bold !important;
}
.fs-6 {
font-size: 6px;
}
.fs-8 {
font-size: 8px;
}
.fs-9 {
font-size: 10px;
}
.fs-10 {
font-size: 10px;
}
.fs-11 {
font-size: 10px;
}
.fs-12 {
font-size: 12px;
}
.fs-13 {
font-size: 12px;
}
.fs-14 {
font-size: 14px;
}
.fs-16 {
font-size: 16px;
}
.fs-18 {
font-size: 18px;
}
.fs-24 {
font-size: 24px;
}
.fs-26 {
font-size: 26px;
}
.fs-28 {
font-size: 28px;
}
.fs-30 {
font-size: 30px;
}
.fs-32 {
font-size: 32px;
}
.fs-34 {
font-size: 34px;
}
.fs-36 {
font-size: 36px;
}
.fs-38 {
font-size: 38px;
}
.fs-40 {
font-size: 40px;
}
.fs-45 {
font-size: 45px;
}
.fs-50 {
font-size: 50px;
}
.fs-55 {
font-size: 55px;
}
.fs-60 {
font-size: 60px;
}
.spaced {
display: flex;
justify-content: space-between;
}
/*.ff-100 {*/
/* font-family: $museosansregular100;*/
/*}*/
/*.ff-500 {*/
/* font-family: $museosansregular500;*/
/*}*/
/*.ff-300 {*/
/* font-family: $museosansregular300;*/
/*}*/
/*.ff-700 {*/
/* font-family: $museosansregular700;*/
/*}*/
/*.ff-900 {*/
/* font-family: $museosansregular900;*/
/*}*/
.aligned {
display: flex;
align-items: center;
}
.justified {
display: flex;
justify-content: center;
}
.central {
display: flex;
justify-content: center;
align-items: center;
}
.flex-start {
display: flex;
align-items: flex-start;
}
.radius-100 {
border-radius: 100%;
}
.radius-50 {
border-radius: 50%;
}
.radius-4 {
border-radius: 4px;
}
.radius-8 {
border-radius: 8px;
}
.radius-12 {
border-radius: 12px;
}
.radius-14 {
border-radius: 14px;
}
.radius-16 {
border-radius: 16px;
}
.radius-18 {
border-radius: 18px;
}
.radius-24 {
border-radius: 24px;
}
.radius-28 {
border-radius: 28px;
}
.extra-menu {
padding: 4px 8px;
text-transform: uppercase;
color: #000;
}
.btn-empty {
background: transparent;
border: none;
padding: 0;
margin: 0;
}
.btn-empty:hover {
background: transparent;
border: none;
padding: 0;
margin: 0;
}
.btn-empty:focus {
background: transparent;
border: none;
padding: 0;
margin: 0;
}
.footer-title-style1{
color: white;
} | 0.416441 | 0.14256 |
.rowTop {
margin-top: 60px;
}
.container-charts{
text-align: center;
}
.container-tools-left button, .container-tools-left input{
border-radius: 0px !important;
}
.chart{
margin-top: 30px;
}
.ct-horizontal,.ct-vertical{
font-size: 12px !important;
color: #000000 !important;
}
.containerReportButtons{
margin-top: 10px;
}
select {
height: 30px;
border-radius: 5px;
margin-bottom: 10px;
}
#titleChart{
text-align: center;
background-color: #2d5f8b;
color: white;
padding: 10px;
border: 2px solid black;
display: none;
}
.selectedMonth{
margin-top: 2px;
}
#tableDataScores{
display: none;
}
#tableDataScores_wrapper, #tableDataStats_wrapper, #tableData_wrapper ,.ct-chart{
margin-top: 20px;
}
.bkBisque{
background-color: bisque;
}
.bkCornsilk{
background-color: cornsilk;
}
.label-1{
color:#d70206;
}
.label-2{
color:#f05b4f;
}
.label-3{
color:#f4c63d;
}
.label-4{
color:#d17905;
}
.label-5{
color:#453d3f;
}
.label-6{
color:#59922b;
}
.label-7{
color:#0544d3;
}
.label-8{
color:#6b0392;
}
.label-9{
color:#f05b4f;
}
.label-10{
color:#dda458;
}
.label-11{
color:#eacf7d;
}
.label-12{
color:#86797d;
}
.label-13{
color:#b2c326;
}
.label-14{
color:#6188e2;
}
.label-15{
color:#a748ca;
}
.label-16{
color:#d70206;
}
.label-17{
color:#d70206;
}
.label-18{
color:#d70206;
}
.label-19{
color:#d70206;
}
.label-20{
color:#d70206;
}
.label-21{
color:#d70206;
}
.label-22{
color:#d70206;
}
.label-23{
color:#d70206;
}
.label-24{
color:#d70206;
}
.label-25{
color:#d70206;
}
.label-26{
color:#d70206;
}
.label-27{
color:#d70206;
}
.infoChart, .callChart{
display: inline-flex;
text-align: left;
border: 1px solid black;
padding: 6px;
background-color: #2d5f8b;
color: white;
display: none;
overflow-y: scroll;
max-height: 500px;
}
.ct-label{
min-width: 40px !important;
}
@media screen and (max-width: 800px){
.row{
margin-top: 38px;
}
.containerReportButtons{
margin-top: 0px !important;
}
.container-charts{
margin-top: 200px;
}
} | public/css/report.css | .rowTop {
margin-top: 60px;
}
.container-charts{
text-align: center;
}
.container-tools-left button, .container-tools-left input{
border-radius: 0px !important;
}
.chart{
margin-top: 30px;
}
.ct-horizontal,.ct-vertical{
font-size: 12px !important;
color: #000000 !important;
}
.containerReportButtons{
margin-top: 10px;
}
select {
height: 30px;
border-radius: 5px;
margin-bottom: 10px;
}
#titleChart{
text-align: center;
background-color: #2d5f8b;
color: white;
padding: 10px;
border: 2px solid black;
display: none;
}
.selectedMonth{
margin-top: 2px;
}
#tableDataScores{
display: none;
}
#tableDataScores_wrapper, #tableDataStats_wrapper, #tableData_wrapper ,.ct-chart{
margin-top: 20px;
}
.bkBisque{
background-color: bisque;
}
.bkCornsilk{
background-color: cornsilk;
}
.label-1{
color:#d70206;
}
.label-2{
color:#f05b4f;
}
.label-3{
color:#f4c63d;
}
.label-4{
color:#d17905;
}
.label-5{
color:#453d3f;
}
.label-6{
color:#59922b;
}
.label-7{
color:#0544d3;
}
.label-8{
color:#6b0392;
}
.label-9{
color:#f05b4f;
}
.label-10{
color:#dda458;
}
.label-11{
color:#eacf7d;
}
.label-12{
color:#86797d;
}
.label-13{
color:#b2c326;
}
.label-14{
color:#6188e2;
}
.label-15{
color:#a748ca;
}
.label-16{
color:#d70206;
}
.label-17{
color:#d70206;
}
.label-18{
color:#d70206;
}
.label-19{
color:#d70206;
}
.label-20{
color:#d70206;
}
.label-21{
color:#d70206;
}
.label-22{
color:#d70206;
}
.label-23{
color:#d70206;
}
.label-24{
color:#d70206;
}
.label-25{
color:#d70206;
}
.label-26{
color:#d70206;
}
.label-27{
color:#d70206;
}
.infoChart, .callChart{
display: inline-flex;
text-align: left;
border: 1px solid black;
padding: 6px;
background-color: #2d5f8b;
color: white;
display: none;
overflow-y: scroll;
max-height: 500px;
}
.ct-label{
min-width: 40px !important;
}
@media screen and (max-width: 800px){
.row{
margin-top: 38px;
}
.containerReportButtons{
margin-top: 0px !important;
}
.container-charts{
margin-top: 200px;
}
} | 0.324878 | 0.066812 |
@font-face {
font-family: Circular-Std-Book;
src: url(../fonts/circular-std-book-cufonfonts-webfont/CircularStd-Book.woff) format("woff");
/*font-weight: 400;*/
/*font-style: normal*/
}
@font-face {
font-family: Circular-Std-Bold;
src: url(../fonts/circular-std-book-cufonfonts-webfont/CircularStd-Bold.woff) format("woff");
}
html, body {
height: 100vh;
font-size: .95rem;
}
/***** Specific elements - often used only once ****/
/* Closed by default: should point left */
.sidebar-toggle-button {
background-repeat: no-repeat;
background-position: center center;
background-image: url(icons/arrow-left-thin.svg);
}
.sidebar-toggle-button-close {
background-repeat: no-repeat;
background-position: center center;
background-image: url(icons/arrow-right-thin.svg);
}
.close-button-small-screen svg {
float: bottom;
display:block;
width: 100%;
}
#profile1-small-logo-bottom {
width: 24px;
}
#profile2-small-logo-bottom {
width: 24px;
}
#profile3-small-logo-bottom {
width: 24px;
}
#profile1-logo-container svg {
width: 24px;
}
#profile2-logo-container svg {
width: 24px;
}
#profile3-logo-container svg {
width: 24px;
}
#top-overlay-input {
margin-bottom: 1vh;
}
#sidebar-right-container {
display: flex;
flex-direction: column;
position: absolute;
right: 0;
top: 0;
height: 100%;
padding: 0 0 0 0;
z-index: 103;
overflow: hidden;
}
#sidebar-right-container .btn-lg {
font-size: 1rem;
border-radius: 0px;
padding-left: 2px;
padding-right: 2px;
}
.electricity-box {
/* For one readon or another, all the element need an explicit 'display: flex' on them */
align-items: center;
margin-left: 30%;
}
.map-container {
flex-grow: 1;
position: inherit;
display: flex;
flex-direction: column;
align-items: center;
padding: 0 !important;
margin: 0 !important;
}
.map-container .row {
flex-grow: 1;
}
.mapboxgl-ctrl-group > button {
width: 30px;
height: 30px;
}
.mobile-buttons .btn-lg {
border-radius: 0px;
font-size: 1rem;
}
/** Very generic stuff **/
.nopadding {
padding: 0 !important;
margin: 0 !important;
}
.padding {
padding: 0 !important;
margin: 1vh !important;
}
/*
.smooth-transition {
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
*/
.pointer {
cursor: pointer;
}
.container-fluid {
padding-left: 15px;
padding-right: 15px;
margin-right: auto;
margin-left: auto;
}
/* Element on the upper-right of the map */
.upper-right-anchor {
position: absolute;
right: 5px;
top: 5px;
padding: 0;
margin: 0;
z-index: 102;
}
.bottom-left-anchor {
position: absolute;
bottom: 5px;
left: 5px;
padding: 0;
margin: 0;
z-index: 102;
}
.image-button:before {
content: "";
width: 20px;
height: 20px;
display: inline-block;
margin-right: 4px;
margin-left: 4px;
vertical-align: text-top;
background: transparent no-repeat center center;
}
/******* TO CLEAN UP - Probably contains lots of dead code *******/
.top-overlap-nav {
height: 4em;
}
.instructions {
background: white;
color: #2D4959;
padding-top: 0px;
margin-top: 4vh;
}
.instructions .row {
margin: 10px;
}
.instruction-icon {
padding-left: 5px;
}
.route-instructions {
overflow-y: hidden;
list-style: none;
overflow-x: hidden;
height: 100%;
overflow-y: auto;
}
.instructions-resume div {
display: inline;
flex-grow: 1;
text-align: center;
}
.instructions-resume {
display: flex;
flex-direction: row;
font-size: 1.5rem;
margin: 1rem;
}
.instructions-resume-electric div {
display: inline;
flex-grow: 1;
text-align: center;
}
.instructions-resume-electric {
display: flex;
flex-direction: row;
font-size: 1.1rem;
}
#sidebar-right-container .container-fluid {
flex: 0 0 1%;
}
#sidebar-right-content {
flex: 1 0 1%;
display: flex;
flex-direction: column;
}
#sidebar-right-container.hidden-sidebar {
width: 0;
}
.hidden {
display: none;
}
.bottom-right-floating-buttons {
position: absolute;
right: 10px;
bottom: 20px;
z-index: 102;
}
.bottom-left-floating-buttons {
position: absolute;
left: 10px;
bottom: 20px;
z-index: 102;
}
.bottom-center-floating-buttons {
position: absolute;
left: 50%;
bottom: 20px;
z-index: 102;
}
#btnAddToHomescreen {
display: none;
}
#swapOriginDestination:before {
background-image: url(icons/baseline-swap_vert-24px.svg);
}
.form-control {
border: none;
background-color: #FFFFFF;
border-radius: 0;
}
.profile-explanation-icons {
text-align: center;
}
.profile-explanation-icons div img {
width: 60%;
padding: 0;
margin: 7%;
background-color: #ffffff;
border-radius: 90%;
}
.non-active {
background-color: #ffffff !important;
opacity: 0.3 !important
}
.profile-explanation-icons div {
width: 48%;
display: inline-block;
vertical-align: top;
position: relative;
}
.profile-explanation-icons div img {
width: 110%;
}
.profile-explanation-icons div div .indicator {
border-radius: 100%;
background-color: white;
height: 30%;
position: absolute !important;
top: 0;
right: -40%;
width: auto;
padding: 8%;
}
.profile-explanation {
font-family: Circular-Std-Book, sans-serif;
padding-top: 20px;
padding-bottom: 20px;
}
.profile-explanation h4 {
font-family: Circular-Std-Bold, sans-serif;
}
.profile-explanation-overview {
margin-left: 20px;
margin-right: 20px;
}
.profile-explanation p {
min-height: 20%;
text-align: center;
}
.large-summary-icon {
width: 50%;
padding-bottom: 5%;
padding-top: 5%
}
.route:hover path, .route:hover polyline {
fill: white;
stroke: white;
}
.route:hover circle {
stroke: white;
}
.active svg path {
fill: #ffffff;
stroke: #ffffff;
}
.active svg polyline,
.active svg circle {
stroke: #ffffff;
}
.active circle {
stroke: white;
}
.right-addon {
display: flex;
align-items: center;
}
.bottom-left-floating-buttons button img {
padding: 0 0 0 0;
margin-right: 2px
}
li {
border-bottom: 1px solid white;
padding: .2rem;
}
ul {
list-style-type: none;
padding: 0;
}
.dropdown-menu {
font-size: .85rem;
}
input[type="text"], textarea {
outline: none;
}
#top-overlay-profile-buttons-mobile {
display: none;
}
.card-body {
padding-top: 0;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
color: #2D4959;
background-color: #2D4959;
border-color: #2D4959;
}
.right-addon {
position: relative;
}
.left-addon img {
left: 0;
}
.right-addon img {
right: 0;
}
.left-addon input {
padding-left: 30px;
}
.right-addon input {
padding-right: 30px;
font-size: .85em;
}
.startpoint-li {
background: url("./icons/currentLocation_white.svg") no-repeat left 9px;
}
.endpoint-li {
background: url("./icons/ic_location_on_black_24px.svg") no-repeat left 9px;
}
#clearInputFieldFromButton, #clearInputFieldToButton {
display: none;
}
.profile-summary-explanation {
width: 90%;
padding: 10px;
text-align: center;
}
.profile-summary {
height: 100%;
}
.profile-summary svg {
height: 25%;
width: 25%;
}
.profile-summary svg path {
fill: white;
stroke: white;
}
.profile-summary svg polyline,
.profile-summary svg circle {
stroke: white;
}
.profile-gpx-div {
padding: 10px;
width: 90%;
}
.profile-gpx-button {
text-align: right;
border: 0.3rem solid rgb(134, 154, 184);
border-radius: .3rem;
padding: 10px;
position: relative;
float: right;
}
.electricity path {
fill: white;
stroke: white;
}
.electricity-box svg {
height: 15%;
width: 15%;
margin-right: 5px;
}
.time-electric {
font-size: 0.6em;
}
.location-circle {
height: 30px;
width: 30px;
}
.location-circle-centered {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 0.8rem;
font-weight: 700;
}
.profile-paragraph {
font-size: 1.5em
}
table tr td {
vertical-align: middle !important;
}
.height-zero {
height: 0;
display: none;
}
.marker-text {
display: flex;
margin-left: 11px;
margin-top: 5px;
}
.top-bar {
padding-top: 10px;
padding-bottom: 10px;
}
.logo img {
height: 50px;
}
#sidebarHamburger::before {
background-image: url(icons/ic_menu_black_24px.svg);
}
.mapboxgl-ctrl-attrib p {
display: inline;
}
#edit-button-link img {
height: 14px;
}
@media only screen and (max-width: 767px) {
body {
font-size: 0.95rem;
line-height: 1.5;
}
.mapboxgl-ctrl-group > button {
width: 25px;
height: 25px;
}
#swap-origin-destination-button {
top: 50%;
position: relative;
}
.top-overlay {
padding-bottom: 0;
padding-top: 0;
}
#sidebar-right-container .btn-lg {
font-size: unset;
padding-left: 2px;
padding-right: 2px;
}
.btn-export {
font-size: 0;
padding: 2px 2px 0 2px;
}
.card {
margin-bottom: 50px;
}
.form-control {
line-height: 1;
}
.w-100-md {
width: 100% !important;
}
.margin-mobile {
margin-bottom: 5px;
padding-bottom: 2px;
}
.location-circle {
height: 25px;
width: 25px;
}
.mobile-buttons .btn-lg {
font-size: 0.85rem;
}
.logo img {
height: 40px;
}
.top-bar {
padding-top: 5px;
padding-bottom: 5px;
}
.mapboxgl-ctrl-icon.mapboxgl-ctrl-zoom-in {
display: none;
}
.mapboxgl-ctrl-icon.mapboxgl-ctrl-zoom-out {
display: none;
}
.mapboxgl-ctrl-icon.mapboxgl-ctrl-compass {
display: none;
}
}
@media only screen and (max-height: 400px) {
.mobile-buttons {
display: none;
}
}
.height-50 {
height: 50px;
}
.min-height-50 {
min-height: 50px;
}
.min-height-70 {
min-height: 70px;
}
.font-big {
font-size: 1.5rem;
} | assets/css/general_style.css |
@font-face {
font-family: Circular-Std-Book;
src: url(../fonts/circular-std-book-cufonfonts-webfont/CircularStd-Book.woff) format("woff");
/*font-weight: 400;*/
/*font-style: normal*/
}
@font-face {
font-family: Circular-Std-Bold;
src: url(../fonts/circular-std-book-cufonfonts-webfont/CircularStd-Bold.woff) format("woff");
}
html, body {
height: 100vh;
font-size: .95rem;
}
/***** Specific elements - often used only once ****/
/* Closed by default: should point left */
.sidebar-toggle-button {
background-repeat: no-repeat;
background-position: center center;
background-image: url(icons/arrow-left-thin.svg);
}
.sidebar-toggle-button-close {
background-repeat: no-repeat;
background-position: center center;
background-image: url(icons/arrow-right-thin.svg);
}
.close-button-small-screen svg {
float: bottom;
display:block;
width: 100%;
}
#profile1-small-logo-bottom {
width: 24px;
}
#profile2-small-logo-bottom {
width: 24px;
}
#profile3-small-logo-bottom {
width: 24px;
}
#profile1-logo-container svg {
width: 24px;
}
#profile2-logo-container svg {
width: 24px;
}
#profile3-logo-container svg {
width: 24px;
}
#top-overlay-input {
margin-bottom: 1vh;
}
#sidebar-right-container {
display: flex;
flex-direction: column;
position: absolute;
right: 0;
top: 0;
height: 100%;
padding: 0 0 0 0;
z-index: 103;
overflow: hidden;
}
#sidebar-right-container .btn-lg {
font-size: 1rem;
border-radius: 0px;
padding-left: 2px;
padding-right: 2px;
}
.electricity-box {
/* For one readon or another, all the element need an explicit 'display: flex' on them */
align-items: center;
margin-left: 30%;
}
.map-container {
flex-grow: 1;
position: inherit;
display: flex;
flex-direction: column;
align-items: center;
padding: 0 !important;
margin: 0 !important;
}
.map-container .row {
flex-grow: 1;
}
.mapboxgl-ctrl-group > button {
width: 30px;
height: 30px;
}
.mobile-buttons .btn-lg {
border-radius: 0px;
font-size: 1rem;
}
/** Very generic stuff **/
.nopadding {
padding: 0 !important;
margin: 0 !important;
}
.padding {
padding: 0 !important;
margin: 1vh !important;
}
/*
.smooth-transition {
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
*/
.pointer {
cursor: pointer;
}
.container-fluid {
padding-left: 15px;
padding-right: 15px;
margin-right: auto;
margin-left: auto;
}
/* Element on the upper-right of the map */
.upper-right-anchor {
position: absolute;
right: 5px;
top: 5px;
padding: 0;
margin: 0;
z-index: 102;
}
.bottom-left-anchor {
position: absolute;
bottom: 5px;
left: 5px;
padding: 0;
margin: 0;
z-index: 102;
}
.image-button:before {
content: "";
width: 20px;
height: 20px;
display: inline-block;
margin-right: 4px;
margin-left: 4px;
vertical-align: text-top;
background: transparent no-repeat center center;
}
/******* TO CLEAN UP - Probably contains lots of dead code *******/
.top-overlap-nav {
height: 4em;
}
.instructions {
background: white;
color: #2D4959;
padding-top: 0px;
margin-top: 4vh;
}
.instructions .row {
margin: 10px;
}
.instruction-icon {
padding-left: 5px;
}
.route-instructions {
overflow-y: hidden;
list-style: none;
overflow-x: hidden;
height: 100%;
overflow-y: auto;
}
.instructions-resume div {
display: inline;
flex-grow: 1;
text-align: center;
}
.instructions-resume {
display: flex;
flex-direction: row;
font-size: 1.5rem;
margin: 1rem;
}
.instructions-resume-electric div {
display: inline;
flex-grow: 1;
text-align: center;
}
.instructions-resume-electric {
display: flex;
flex-direction: row;
font-size: 1.1rem;
}
#sidebar-right-container .container-fluid {
flex: 0 0 1%;
}
#sidebar-right-content {
flex: 1 0 1%;
display: flex;
flex-direction: column;
}
#sidebar-right-container.hidden-sidebar {
width: 0;
}
.hidden {
display: none;
}
.bottom-right-floating-buttons {
position: absolute;
right: 10px;
bottom: 20px;
z-index: 102;
}
.bottom-left-floating-buttons {
position: absolute;
left: 10px;
bottom: 20px;
z-index: 102;
}
.bottom-center-floating-buttons {
position: absolute;
left: 50%;
bottom: 20px;
z-index: 102;
}
#btnAddToHomescreen {
display: none;
}
#swapOriginDestination:before {
background-image: url(icons/baseline-swap_vert-24px.svg);
}
.form-control {
border: none;
background-color: #FFFFFF;
border-radius: 0;
}
.profile-explanation-icons {
text-align: center;
}
.profile-explanation-icons div img {
width: 60%;
padding: 0;
margin: 7%;
background-color: #ffffff;
border-radius: 90%;
}
.non-active {
background-color: #ffffff !important;
opacity: 0.3 !important
}
.profile-explanation-icons div {
width: 48%;
display: inline-block;
vertical-align: top;
position: relative;
}
.profile-explanation-icons div img {
width: 110%;
}
.profile-explanation-icons div div .indicator {
border-radius: 100%;
background-color: white;
height: 30%;
position: absolute !important;
top: 0;
right: -40%;
width: auto;
padding: 8%;
}
.profile-explanation {
font-family: Circular-Std-Book, sans-serif;
padding-top: 20px;
padding-bottom: 20px;
}
.profile-explanation h4 {
font-family: Circular-Std-Bold, sans-serif;
}
.profile-explanation-overview {
margin-left: 20px;
margin-right: 20px;
}
.profile-explanation p {
min-height: 20%;
text-align: center;
}
.large-summary-icon {
width: 50%;
padding-bottom: 5%;
padding-top: 5%
}
.route:hover path, .route:hover polyline {
fill: white;
stroke: white;
}
.route:hover circle {
stroke: white;
}
.active svg path {
fill: #ffffff;
stroke: #ffffff;
}
.active svg polyline,
.active svg circle {
stroke: #ffffff;
}
.active circle {
stroke: white;
}
.right-addon {
display: flex;
align-items: center;
}
.bottom-left-floating-buttons button img {
padding: 0 0 0 0;
margin-right: 2px
}
li {
border-bottom: 1px solid white;
padding: .2rem;
}
ul {
list-style-type: none;
padding: 0;
}
.dropdown-menu {
font-size: .85rem;
}
input[type="text"], textarea {
outline: none;
}
#top-overlay-profile-buttons-mobile {
display: none;
}
.card-body {
padding-top: 0;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
color: #2D4959;
background-color: #2D4959;
border-color: #2D4959;
}
.right-addon {
position: relative;
}
.left-addon img {
left: 0;
}
.right-addon img {
right: 0;
}
.left-addon input {
padding-left: 30px;
}
.right-addon input {
padding-right: 30px;
font-size: .85em;
}
.startpoint-li {
background: url("./icons/currentLocation_white.svg") no-repeat left 9px;
}
.endpoint-li {
background: url("./icons/ic_location_on_black_24px.svg") no-repeat left 9px;
}
#clearInputFieldFromButton, #clearInputFieldToButton {
display: none;
}
.profile-summary-explanation {
width: 90%;
padding: 10px;
text-align: center;
}
.profile-summary {
height: 100%;
}
.profile-summary svg {
height: 25%;
width: 25%;
}
.profile-summary svg path {
fill: white;
stroke: white;
}
.profile-summary svg polyline,
.profile-summary svg circle {
stroke: white;
}
.profile-gpx-div {
padding: 10px;
width: 90%;
}
.profile-gpx-button {
text-align: right;
border: 0.3rem solid rgb(134, 154, 184);
border-radius: .3rem;
padding: 10px;
position: relative;
float: right;
}
.electricity path {
fill: white;
stroke: white;
}
.electricity-box svg {
height: 15%;
width: 15%;
margin-right: 5px;
}
.time-electric {
font-size: 0.6em;
}
.location-circle {
height: 30px;
width: 30px;
}
.location-circle-centered {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 0.8rem;
font-weight: 700;
}
.profile-paragraph {
font-size: 1.5em
}
table tr td {
vertical-align: middle !important;
}
.height-zero {
height: 0;
display: none;
}
.marker-text {
display: flex;
margin-left: 11px;
margin-top: 5px;
}
.top-bar {
padding-top: 10px;
padding-bottom: 10px;
}
.logo img {
height: 50px;
}
#sidebarHamburger::before {
background-image: url(icons/ic_menu_black_24px.svg);
}
.mapboxgl-ctrl-attrib p {
display: inline;
}
#edit-button-link img {
height: 14px;
}
@media only screen and (max-width: 767px) {
body {
font-size: 0.95rem;
line-height: 1.5;
}
.mapboxgl-ctrl-group > button {
width: 25px;
height: 25px;
}
#swap-origin-destination-button {
top: 50%;
position: relative;
}
.top-overlay {
padding-bottom: 0;
padding-top: 0;
}
#sidebar-right-container .btn-lg {
font-size: unset;
padding-left: 2px;
padding-right: 2px;
}
.btn-export {
font-size: 0;
padding: 2px 2px 0 2px;
}
.card {
margin-bottom: 50px;
}
.form-control {
line-height: 1;
}
.w-100-md {
width: 100% !important;
}
.margin-mobile {
margin-bottom: 5px;
padding-bottom: 2px;
}
.location-circle {
height: 25px;
width: 25px;
}
.mobile-buttons .btn-lg {
font-size: 0.85rem;
}
.logo img {
height: 40px;
}
.top-bar {
padding-top: 5px;
padding-bottom: 5px;
}
.mapboxgl-ctrl-icon.mapboxgl-ctrl-zoom-in {
display: none;
}
.mapboxgl-ctrl-icon.mapboxgl-ctrl-zoom-out {
display: none;
}
.mapboxgl-ctrl-icon.mapboxgl-ctrl-compass {
display: none;
}
}
@media only screen and (max-height: 400px) {
.mobile-buttons {
display: none;
}
}
.height-50 {
height: 50px;
}
.min-height-50 {
min-height: 50px;
}
.min-height-70 {
min-height: 70px;
}
.font-big {
font-size: 1.5rem;
} | 0.458834 | 0.094052 |
html {
box-sizing: border-box; }
*, *::after, *::before {
box-sizing: inherit; }
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
* 1. Set default font family to sans-serif.
* 2. Prevent iOS text size adjust after orientation change, without disabling
* user zoom.
*/
html {
font-family: sans-serif;
/* 1 */
-ms-text-size-adjust: 100%;
/* 2 */
-webkit-text-size-adjust: 100%;
/* 2 */ }
/**
* Remove default margin.
*/
body {
margin: 0; }
/* HTML5 display definitions
========================================================================== */
/**
* Correct `block` display not defined for any HTML5 element in IE 8/9.
* Correct `block` display not defined for `details` or `summary` in IE 10/11
* and Firefox.
* Correct `block` display not defined for `main` in IE 11.
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
display: block; }
/**
* 1. Correct `inline-block` display not defined in IE 8/9.
* 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
*/
audio,
canvas,
progress,
video {
display: inline-block;
/* 1 */
vertical-align: baseline;
/* 2 */ }
/**
* Prevent modern browsers from displaying `audio` without controls.
* Remove excess height in iOS 5 devices.
*/
audio:not([controls]) {
display: none;
height: 0; }
/**
* Address `[hidden]` styling not present in IE 8/9/10.
* Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
*/
[hidden],
template {
display: none; }
/* Links
========================================================================== */
/**
* Remove the gray background color from active links in IE 10.
*/
a {
background-color: transparent; }
/**
* Improve readability when focused and also mouse hovered in all browsers.
*/
a:active,
a:hover {
outline: 0; }
/* Text-level semantics
========================================================================== */
/**
* Address styling not present in IE 8/9/10/11, Safari, and Chrome.
*/
abbr[title] {
border-bottom: 1px dotted; }
/**
* Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
*/
b,
strong {
font-weight: bold; }
/**
* Address styling not present in Safari and Chrome.
*/
dfn {
font-style: italic; }
/**
* Address variable `h1` font-size and margin within `section` and `article`
* contexts in Firefox 4+, Safari, and Chrome.
*/
h1 {
font-size: 2em;
margin: 0.67em 0; }
/**
* Address styling not present in IE 8/9.
*/
mark {
background: #ff0;
color: #000; }
/**
* Address inconsistent and variable font size in all browsers.
*/
small {
font-size: 80%; }
/**
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
*/
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline; }
sup {
top: -0.5em; }
sub {
bottom: -0.25em; }
/* Embedded content
========================================================================== */
/**
* Remove border when inside `a` element in IE 8/9/10.
*/
img {
border: 0; }
/**
* Correct overflow not hidden in IE 9/10/11.
*/
svg:not(:root) {
overflow: hidden; }
/* Grouping content
========================================================================== */
/**
* Address margin not present in IE 8/9 and Safari.
*/
figure {
margin: 1em 40px; }
/**
* Address differences between Firefox and other browsers.
*/
hr {
-moz-box-sizing: content-box;
box-sizing: content-box;
height: 0; }
/**
* Contain overflow in all browsers.
*/
pre {
overflow: auto; }
/**
* Address odd `em`-unit font size rendering in all browsers.
*/
code,
kbd,
pre,
samp {
font-family: monospace, monospace;
font-size: 1em; }
/* Forms
========================================================================== */
/**
* Known limitation: by default, Chrome and Safari on OS X allow very limited
* styling of `select`, unless a `border` property is set.
*/
/**
* 1. Correct color not being inherited.
* Known issue: affects color of disabled elements.
* 2. Correct font properties not being inherited.
* 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
*/
button,
input,
optgroup,
select,
textarea {
color: inherit;
/* 1 */
font: inherit;
/* 2 */
margin: 0;
/* 3 */ }
/**
* Address `overflow` set to `hidden` in IE 8/9/10/11.
*/
button {
overflow: visible; }
/**
* Address inconsistent `text-transform` inheritance for `button` and `select`.
* All other form control elements do not inherit `text-transform` values.
* Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
* Correct `select` style inheritance in Firefox.
*/
button,
select {
text-transform: none; }
/**
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
* and `video` controls.
* 2. Correct inability to style clickable `input` types in iOS.
* 3. Improve usability and consistency of cursor style between image-type
* `input` and others.
*/
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button;
/* 2 */
cursor: pointer;
/* 3 */ }
/**
* Re-set default cursor for disabled elements.
*/
button[disabled],
html input[disabled] {
cursor: default; }
/**
* Remove inner padding and border in Firefox 4+.
*/
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0; }
/**
* Address Firefox 4+ setting `line-height` on `input` using `!important` in
* the UA stylesheet.
*/
input {
line-height: normal; }
/**
* It's recommended that you don't attempt to style these elements.
* Firefox's implementation doesn't respect box-sizing, padding, or width.
*
* 1. Address box sizing set to `content-box` in IE 8/9/10.
* 2. Remove excess padding in IE 8/9/10.
*/
input[type="checkbox"],
input[type="radio"] {
box-sizing: border-box;
/* 1 */
padding: 0;
/* 2 */ }
/**
* Fix the cursor style for Chrome's increment/decrement buttons. For certain
* `font-size` values of the `input`, it causes the cursor style of the
* decrement button to change from `default` to `text`.
*/
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
height: auto; }
/**
* 1. Address `appearance` set to `searchfield` in Safari and Chrome.
* 2. Address `box-sizing` set to `border-box` in Safari and Chrome
* (include `-moz` to future-proof).
*/
input[type="search"] {
-webkit-appearance: textfield;
/* 1 */
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
/* 2 */
box-sizing: content-box; }
/**
* Remove inner padding and search cancel button in Safari and Chrome on OS X.
* Safari (but not Chrome) clips the cancel button when the search input has
* padding (and `textfield` appearance).
*/
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none; }
/**
* Define consistent border, margin, and padding.
*/
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em; }
/**
* 1. Correct `color` not being inherited in IE 8/9/10/11.
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
*/
legend {
border: 0;
/* 1 */
padding: 0;
/* 2 */ }
/**
* Remove default vertical scrollbar in IE 8/9/10/11.
*/
textarea {
overflow: auto; }
/**
* Don't inherit the `font-weight` (applied by a rule above).
* NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
*/
optgroup {
font-weight: bold; }
/* Tables
========================================================================== */
/**
* Remove most spacing between table cells.
*/
table {
border-collapse: collapse;
border-spacing: 0; }
td,
th {
padding: 0; }
/* This stylesheet generated by Transfonter (https://transfonter.org) on February 25, 2017 6:21 AM */
@font-face {
font-family: 'Trenda Semibold It';
src: url("fonts/Trenda-SemiboldIt.eot");
src: url("fonts/Trenda-SemiboldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-SemiboldIt.woff") format("woff"), url("fonts/Trenda-SemiboldIt.ttf") format("truetype");
font-weight: 600;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Heavy.eot");
src: url("fonts/Trenda-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Heavy.woff") format("woff"), url("fonts/Trenda-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Semibold.eot");
src: url("fonts/Trenda-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Semibold.woff") format("woff"), url("fonts/Trenda-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Heavy It';
src: url("fonts/Trenda-HeavyIt.eot");
src: url("fonts/Trenda-HeavyIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-HeavyIt.woff") format("woff"), url("fonts/Trenda-HeavyIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Semibold.eot");
src: url("fonts/SanFranciscoText-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Semibold.woff") format("woff"), url("fonts/SanFranciscoText-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda ExtraLight It';
src: url("fonts/Trenda-ExtraLightIt.eot");
src: url("fonts/Trenda-ExtraLightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLightIt.woff") format("woff"), url("fonts/Trenda-ExtraLightIt.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Thin.eot");
src: url("fonts/Trenda-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Thin.woff") format("woff"), url("fonts/Trenda-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Heavy.eot");
src: url("fonts/SanFranciscoDisplay-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Heavy.woff") format("woff"), url("fonts/SanFranciscoDisplay-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Medium.eot");
src: url("fonts/SanFranciscoDisplay-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Medium.woff") format("woff"), url("fonts/SanFranciscoDisplay-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Gotham Condensed';
src: url("fonts/GothamCondensed-Bold.eot");
src: url("fonts/GothamCondensed-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/GothamCondensed-Bold.woff") format("woff"), url("fonts/GothamCondensed-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'Trenda Black It';
src: url("fonts/Trenda-BlackIt.eot");
src: url("fonts/Trenda-BlackIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BlackIt.woff") format("woff"), url("fonts/Trenda-BlackIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda Thin It';
src: url("fonts/Trenda-ThinIt.eot");
src: url("fonts/Trenda-ThinIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ThinIt.woff") format("woff"), url("fonts/Trenda-ThinIt.ttf") format("truetype");
font-weight: 100;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Semibold.eot");
src: url("fonts/SanFranciscoDisplay-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Semibold.woff") format("woff"), url("fonts/SanFranciscoDisplay-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Bold It';
src: url("fonts/Trenda-BoldIt.eot");
src: url("fonts/Trenda-BoldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BoldIt.woff") format("woff"), url("fonts/Trenda-BoldIt.ttf") format("truetype");
font-weight: bold;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Thin.eot");
src: url("fonts/SanFranciscoText-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Thin.woff") format("woff"), url("fonts/SanFranciscoText-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda Light It';
src: url("fonts/Trenda-LightIt.eot");
src: url("fonts/Trenda-LightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-LightIt.woff") format("woff"), url("fonts/Trenda-LightIt.ttf") format("truetype");
font-weight: 300;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Heavy.eot");
src: url("fonts/SanFranciscoText-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Heavy.woff") format("woff"), url("fonts/SanFranciscoText-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Italic.eot");
src: url("fonts/SanFranciscoText-Italic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Italic.woff") format("woff"), url("fonts/SanFranciscoText-Italic.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Light.eot");
src: url("fonts/SanFranciscoDisplay-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Light.woff") format("woff"), url("fonts/SanFranciscoDisplay-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Ultralight.eot");
src: url("fonts/SanFranciscoDisplay-Ultralight.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Ultralight.woff") format("woff"), url("fonts/SanFranciscoDisplay-Ultralight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Medium.eot");
src: url("fonts/SanFranciscoText-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Medium.woff") format("woff"), url("fonts/SanFranciscoText-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-ExtraLight.eot");
src: url("fonts/Trenda-ExtraLight.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLight.woff") format("woff"), url("fonts/Trenda-ExtraLight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Regular.eot");
src: url("fonts/SanFranciscoText-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Regular.woff") format("woff"), url("fonts/SanFranciscoText-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Thin.eot");
src: url("fonts/SanFranciscoDisplay-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Thin.woff") format("woff"), url("fonts/SanFranciscoDisplay-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Regular.eot");
src: url("fonts/Trenda-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Regular.woff") format("woff"), url("fonts/Trenda-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-HeavyItalic.eot");
src: url("fonts/SanFranciscoText-HeavyItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-HeavyItalic.woff") format("woff"), url("fonts/SanFranciscoText-HeavyItalic.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Light.eot");
src: url("fonts/Trenda-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Light.woff") format("woff"), url("fonts/Trenda-Light.ttf") format("truetype");
font-weight: 300;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Bold.eot");
src: url("fonts/Trenda-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Bold.woff") format("woff"), url("fonts/Trenda-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-LightItalic.eot");
src: url("fonts/SanFranciscoText-LightItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-LightItalic.woff") format("woff"), url("fonts/SanFranciscoText-LightItalic.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Regular.eot");
src: url("fonts/SanFranciscoDisplay-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Regular.woff") format("woff"), url("fonts/SanFranciscoDisplay-Regular.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Black.eot");
src: url("fonts/Trenda-Black.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Black.woff") format("woff"), url("fonts/Trenda-Black.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Light.eot");
src: url("fonts/SanFranciscoText-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Light.woff") format("woff"), url("fonts/SanFranciscoText-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda It';
src: url("fonts/Trenda-RegularIt.eot");
src: url("fonts/Trenda-RegularIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-RegularIt.woff") format("woff"), url("fonts/Trenda-RegularIt.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
/*---------------------------------------------------
OCC Theme
----------------------------------------------------*/
/*header and footer backgrounds*/
/*#f1f1f1;*/
/*menu*/
/*buttons*/
/*translate*/
/*headings*/
/*links*/
/*---------------------------------------------------
----------------------------------------------------*/
/* -----------------------------------------------------------------------------
HAMBURGER ICONS COMPONENT
----------------------------------------------------------------------------- */
/**
* Toggle Switch Globals
*
* All switches should take on the class `c-hamburger` as well as their
* variant that will give them unique properties. This class is an overview
* class that acts as a reset for all versions of the icon.
*/
.c-hamburger {
display: block;
position: relative;
overflow: hidden;
margin: 2px 0 2px 0;
padding: 0;
width: 40px;
height: 40px;
font-size: 0;
text-indent: -9999px;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
box-shadow: none;
border-radius: none;
border: none;
cursor: pointer;
transition: background 0.3s; }
.c-hamburger:focus {
outline: none; }
.c-hamburger span {
display: block;
position: absolute;
top: 18px;
left: 10px;
right: 10px;
height: 4px;
background: white; }
.c-hamburger span::before,
.c-hamburger span::after {
position: absolute;
display: block;
left: 0;
width: 100%;
height: 4px;
background-color: #fff;
content: ""; }
.c-hamburger span::before {
top: -7px; }
.c-hamburger span::after {
bottom: -7px; }
/**
* Style 1
*
* Rotating hamburger icon (rot), that simply rotates 90 degrees when activated.
* Nothing too fancy, simple transition.
*/
.c-hamburger--rot {
background-color: #28aadc; }
.c-hamburger--rot span {
transition: transform 0.3s; }
/* active state, i.e. menu open */
.c-hamburger--rot.is-active {
background-color: #166888; }
.c-hamburger--rot.is-active span {
transform: rotate(90deg); }
/**
* Style 2
*
* Hamburger to "x" (htx). Takes on a hamburger shape, bars slide
* down to center and transform into an "x".
*/
.c-hamburger--htx {
background-color: #1e5ca8; }
.c-hamburger--htx:hover {
background-color: #1e5ca8; }
.c-hamburger--htx span {
transition: background 0s 0.3s; }
.c-hamburger--htx span::before,
.c-hamburger--htx span::after {
transition-duration: 0.3s, 0.3s;
transition-delay: 0.3s, 0s; }
.c-hamburger--htx span::before {
transition-property: top, transform; }
.c-hamburger--htx span::after {
transition-property: bottom, transform; }
/* active state, i.e. menu open */
.c-hamburger--htx.is-active, .c-hamburger--htx:active, .c-hamburger--htx:hover {
background-color: #1a325d; }
.c-hamburger--htx.is-active span {
background: none; }
.c-hamburger--htx.is-active span::before {
top: 0;
transform: rotate(45deg); }
.c-hamburger--htx.is-active span::after {
bottom: 0;
transform: rotate(-45deg); }
.c-hamburger--htx.is-active span::before,
.c-hamburger--htx.is-active span::after {
transition-delay: 0s, 0.3s; }
/**
* Style 3
*
* Hamburger to left-arrow (htla). Hamburger menu transforms to a left-pointing
* arrow. Usually indicates an off canvas menu sliding in from left that
* will be close on re-click of the icon.
*/
.c-hamburger--htla {
background-color: #32dc64; }
.c-hamburger--htla span {
transition: transform 0.3s; }
.c-hamburger--htla span::before {
transform-origin: top right;
transition: transform 0.3s, width 0.3s, top 0.3s; }
.c-hamburger--htla span::after {
transform-origin: bottom right;
transition: transform 0.3s, width 0.3s, bottom 0.3s; }
/* active state, i.e. menu open */
.c-hamburger--htla.is-active {
background-color: #19903c; }
.c-hamburger--htla.is-active span {
transform: rotate(180deg); }
.c-hamburger--htla.is-active span::before,
.c-hamburger--htla.is-active span::after {
width: 50%; }
.c-hamburger--htla.is-active span::before {
top: 0;
transform: translateX(14px) translateY(2px) rotate(45deg); }
.c-hamburger--htla.is-active span::after {
bottom: 0;
transform: translateX(14px) translateY(-2px) rotate(-45deg); }
/**
* Style 4
*
* Hamburger to right-arrow (htra). Hamburger menu transforms to a
* right-pointing arrow. Usually indicates an off canvas menu sliding in from
* right that will be close on re-click of the icon.
*/
.c-hamburger--htra {
background-color: #ff9650; }
.c-hamburger--htra span {
transition: transform 0.3s; }
.c-hamburger--htra span::before {
transform-origin: top left;
transition: transform 0.3s, width 0.3s, top 0.3s; }
.c-hamburger--htra span::after {
transform-origin: bottom left;
transition: transform 0.3s, width 0.3s, bottom 0.3s; }
/* active state, i.e. menu open */
.c-hamburger--htra.is-active {
background-color: #e95d00; }
.c-hamburger--htra.is-active span {
transform: rotate(180deg); }
.c-hamburger--htra.is-active span::before,
.c-hamburger--htra.is-active span::after {
width: 50%; }
.c-hamburger--htra.is-active span::before {
top: 0;
transform: translateX(-4px) translateY(2px) rotate(-45deg); }
.c-hamburger--htra.is-active span::after {
bottom: 0;
transform: translateX(-4px) translateY(-2px) rotate(45deg); }
/* apply a natural box layout model to all elements, but allowing components to change */
html {
box-sizing: border-box; }
*, *:before, *:after {
box-sizing: inherit; }
body {
background-color: #ffffff; }
.lt-ie9 * {
filter: none !important; }
[aria-hidden=true] {
display: none !important; }
.usa-grid, #translate,
#header,
#layout-before-main,
#layout-content,
#layout-featured,
#next,
#footer,
.zone-navigation,
.usa-grid-full {
max-width: 68em;
margin-left: auto;
margin-right: auto;
max-width: 1000px; }
.usa-grid::after, #translate::after,
#header::after,
#layout-before-main::after,
#layout-content::after,
#layout-featured::after,
#next::after,
#footer::after,
.zone-navigation::after,
.usa-grid-full::after {
clear: both;
content: "";
display: table; }
@media screen and (min-width: 727px) {
.usa-grid .usa-width-one-whole, #translate .usa-width-one-whole,
#header .usa-width-one-whole,
#layout-before-main .usa-width-one-whole,
#layout-content .usa-width-one-whole,
#layout-featured .usa-width-one-whole,
#next .usa-width-one-whole,
#footer .usa-width-one-whole,
.zone-navigation .usa-width-one-whole, .usa-grid #before-content, #translate #before-content,
#header #before-content,
#layout-before-main #before-content,
#layout-content #before-content,
#layout-featured #before-content,
#next #before-content,
#footer #before-content,
.zone-navigation #before-content, .usa-grid
#messages, #translate
#messages,
#header
#messages,
#layout-before-main
#messages,
#layout-content
#messages,
#layout-featured
#messages,
#next
#messages,
#footer
#messages,
.zone-navigation
#messages, .usa-grid
#content, #translate
#content,
#header
#content,
#layout-before-main
#content,
#layout-content
#content,
#layout-featured
#content,
#next
#content,
#footer
#content,
.zone-navigation
#content, .usa-grid
#after-content, #translate
#after-content,
#header
#after-content,
#layout-before-main
#after-content,
#layout-content
#after-content,
#layout-featured
#after-content,
#next
#after-content,
#footer
#after-content,
.zone-navigation
#after-content, .usa-grid
#footer-sig, #translate
#footer-sig,
#header
#footer-sig,
#layout-before-main
#footer-sig,
#layout-content
#footer-sig,
#layout-featured
#footer-sig,
#next
#footer-sig,
#footer
#footer-sig,
.zone-navigation
#footer-sig, .usa-grid
.zone-content, #translate
.zone-content,
#header
.zone-content,
#layout-before-main
.zone-content,
#layout-content
.zone-content,
#layout-featured
.zone-content,
#next
.zone-content,
#footer
.zone-content,
.zone-navigation
.zone-content, .usa-grid
#threecolumn, #translate
#threecolumn,
#header
#threecolumn,
#layout-before-main
#threecolumn,
#layout-content
#threecolumn,
#layout-featured
#threecolumn,
#next
#threecolumn,
#footer
#threecolumn,
.zone-navigation
#threecolumn,
.usa-grid-full .usa-width-one-whole,
.usa-grid-full #before-content,
.usa-grid-full
#messages,
.usa-grid-full
#content,
.usa-grid-full
#after-content,
.usa-grid-full
#footer-sig,
.usa-grid-full
.zone-content,
.usa-grid-full
#threecolumn {
float: left;
display: block;
margin-right: 4.82916%;
width: 100%; }
.usa-grid .usa-width-one-whole:last-child, #translate .usa-width-one-whole:last-child,
#header .usa-width-one-whole:last-child,
#layout-before-main .usa-width-one-whole:last-child,
#layout-content .usa-width-one-whole:last-child,
#layout-featured .usa-width-one-whole:last-child,
#next .usa-width-one-whole:last-child,
#footer .usa-width-one-whole:last-child,
.zone-navigation .usa-width-one-whole:last-child, .usa-grid #before-content:last-child, #translate #before-content:last-child,
#header #before-content:last-child,
#layout-before-main #before-content:last-child,
#layout-content #before-content:last-child,
#layout-featured #before-content:last-child,
#next #before-content:last-child,
#footer #before-content:last-child,
.zone-navigation #before-content:last-child, .usa-grid
#messages:last-child, #translate
#messages:last-child,
#header
#messages:last-child,
#layout-before-main
#messages:last-child,
#layout-content
#messages:last-child,
#layout-featured
#messages:last-child,
#next
#messages:last-child,
#footer
#messages:last-child,
.zone-navigation
#messages:last-child, .usa-grid
#content:last-child, #translate
#content:last-child,
#header
#content:last-child,
#layout-before-main
#content:last-child,
#layout-content
#content:last-child,
#layout-featured
#content:last-child,
#next
#content:last-child,
#footer
#content:last-child,
.zone-navigation
#content:last-child, .usa-grid
#after-content:last-child, #translate
#after-content:last-child,
#header
#after-content:last-child,
#layout-before-main
#after-content:last-child,
#layout-content
#after-content:last-child,
#layout-featured
#after-content:last-child,
#next
#after-content:last-child,
#footer
#after-content:last-child,
.zone-navigation
#after-content:last-child, .usa-grid
#footer-sig:last-child, #translate
#footer-sig:last-child,
#header
#footer-sig:last-child,
#layout-before-main
#footer-sig:last-child,
#layout-content
#footer-sig:last-child,
#layout-featured
#footer-sig:last-child,
#next
#footer-sig:last-child,
#footer
#footer-sig:last-child,
.zone-navigation
#footer-sig:last-child, .usa-grid
.zone-content:last-child, #translate
.zone-content:last-child,
#header
.zone-content:last-child,
#layout-before-main
.zone-content:last-child,
#layout-content
.zone-content:last-child,
#layout-featured
.zone-content:last-child,
#next
.zone-content:last-child,
#footer
.zone-content:last-child,
.zone-navigation
.zone-content:last-child, .usa-grid
#threecolumn:last-child, #translate
#threecolumn:last-child,
#header
#threecolumn:last-child,
#layout-before-main
#threecolumn:last-child,
#layout-content
#threecolumn:last-child,
#layout-featured
#threecolumn:last-child,
#next
#threecolumn:last-child,
#footer
#threecolumn:last-child,
.zone-navigation
#threecolumn:last-child,
.usa-grid-full .usa-width-one-whole:last-child,
.usa-grid-full #before-content:last-child,
.usa-grid-full
#messages:last-child,
.usa-grid-full
#content:last-child,
.usa-grid-full
#after-content:last-child,
.usa-grid-full
#footer-sig:last-child,
.usa-grid-full
.zone-content:last-child,
.usa-grid-full
#threecolumn:last-child {
margin-right: 0; }
.usa-grid .usa-width-one-half, #translate .usa-width-one-half,
#header .usa-width-one-half,
#layout-before-main .usa-width-one-half,
#layout-content .usa-width-one-half,
#layout-featured .usa-width-one-half,
#next .usa-width-one-half,
#footer .usa-width-one-half,
.zone-navigation .usa-width-one-half, .usa-grid #left-half, #translate #left-half,
#header #left-half,
#layout-before-main #left-half,
#layout-content #left-half,
#layout-featured #left-half,
#next #left-half,
#footer #left-half,
.zone-navigation #left-half, .usa-grid
#right-half, #translate
#right-half,
#header
#right-half,
#layout-before-main
#right-half,
#layout-content
#right-half,
#layout-featured
#right-half,
#next
#right-half,
#footer
#right-half,
.zone-navigation
#right-half, .usa-grid
#footer-first-half, #translate
#footer-first-half,
#header
#footer-first-half,
#layout-before-main
#footer-first-half,
#layout-content
#footer-first-half,
#layout-featured
#footer-first-half,
#next
#footer-first-half,
#footer
#footer-first-half,
.zone-navigation
#footer-first-half, .usa-grid
#footer-second-half, #translate
#footer-second-half,
#header
#footer-second-half,
#layout-before-main
#footer-second-half,
#layout-content
#footer-second-half,
#layout-featured
#footer-second-half,
#next
#footer-second-half,
#footer
#footer-second-half,
.zone-navigation
#footer-second-half,
.usa-grid-full .usa-width-one-half,
.usa-grid-full #left-half,
.usa-grid-full
#right-half,
.usa-grid-full
#footer-first-half,
.usa-grid-full
#footer-second-half {
float: left;
display: block;
margin-right: 4.82916%;
width: 47.58542%; }
.usa-grid .usa-width-one-half:last-child, #translate .usa-width-one-half:last-child,
#header .usa-width-one-half:last-child,
#layout-before-main .usa-width-one-half:last-child,
#layout-content .usa-width-one-half:last-child,
#layout-featured .usa-width-one-half:last-child,
#next .usa-width-one-half:last-child,
#footer .usa-width-one-half:last-child,
.zone-navigation .usa-width-one-half:last-child, .usa-grid #left-half:last-child, #translate #left-half:last-child,
#header #left-half:last-child,
#layout-before-main #left-half:last-child,
#layout-content #left-half:last-child,
#layout-featured #left-half:last-child,
#next #left-half:last-child,
#footer #left-half:last-child,
.zone-navigation #left-half:last-child, .usa-grid
#right-half:last-child, #translate
#right-half:last-child,
#header
#right-half:last-child,
#layout-before-main
#right-half:last-child,
#layout-content
#right-half:last-child,
#layout-featured
#right-half:last-child,
#next
#right-half:last-child,
#footer
#right-half:last-child,
.zone-navigation
#right-half:last-child, .usa-grid
#footer-first-half:last-child, #translate
#footer-first-half:last-child,
#header
#footer-first-half:last-child,
#layout-before-main
#footer-first-half:last-child,
#layout-content
#footer-first-half:last-child,
#layout-featured
#footer-first-half:last-child,
#next
#footer-first-half:last-child,
#footer
#footer-first-half:last-child,
.zone-navigation
#footer-first-half:last-child, .usa-grid
#footer-second-half:last-child, #translate
#footer-second-half:last-child,
#header
#footer-second-half:last-child,
#layout-before-main
#footer-second-half:last-child,
#layout-content
#footer-second-half:last-child,
#layout-featured
#footer-second-half:last-child,
#next
#footer-second-half:last-child,
#footer
#footer-second-half:last-child,
.zone-navigation
#footer-second-half:last-child,
.usa-grid-full .usa-width-one-half:last-child,
.usa-grid-full #left-half:last-child,
.usa-grid-full
#right-half:last-child,
.usa-grid-full
#footer-first-half:last-child,
.usa-grid-full
#footer-second-half:last-child {
margin-right: 0; }
.usa-grid .usa-width-one-third, #translate .usa-width-one-third,
#header .usa-width-one-third,
#layout-before-main .usa-width-one-third,
#layout-content .usa-width-one-third,
#layout-featured .usa-width-one-third,
#next .usa-width-one-third,
#footer .usa-width-one-third,
.zone-navigation .usa-width-one-third, .usa-grid #left-one-third, #translate #left-one-third,
#header #left-one-third,
#layout-before-main #left-one-third,
#layout-content #left-one-third,
#layout-featured #left-one-third,
#next #left-one-third,
#footer #left-one-third,
.zone-navigation #left-one-third, .usa-grid
#right-one-third, #translate
#right-one-third,
#header
#right-one-third,
#layout-before-main
#right-one-third,
#layout-content
#right-one-third,
#layout-featured
#right-one-third,
#next
#right-one-third,
#footer
#right-one-third,
.zone-navigation
#right-one-third, .usa-grid
#left-one-third-tile, #translate
#left-one-third-tile,
#header
#left-one-third-tile,
#layout-before-main
#left-one-third-tile,
#layout-content
#left-one-third-tile,
#layout-featured
#left-one-third-tile,
#next
#left-one-third-tile,
#footer
#left-one-third-tile,
.zone-navigation
#left-one-third-tile, .usa-grid
#triple-first, #translate
#triple-first,
#header
#triple-first,
#layout-before-main
#triple-first,
#layout-content
#triple-first,
#layout-featured
#triple-first,
#next
#triple-first,
#footer
#triple-first,
.zone-navigation
#triple-first, .usa-grid
#triple-second, #translate
#triple-second,
#header
#triple-second,
#layout-before-main
#triple-second,
#layout-content
#triple-second,
#layout-featured
#triple-second,
#next
#triple-second,
#footer
#triple-second,
.zone-navigation
#triple-second, .usa-grid
#triple-third, #translate
#triple-third,
#header
#triple-third,
#layout-before-main
#triple-third,
#layout-content
#triple-third,
#layout-featured
#triple-third,
#next
#triple-third,
#footer
#triple-third,
.zone-navigation
#triple-third,
.usa-grid-full .usa-width-one-third,
.usa-grid-full #left-one-third,
.usa-grid-full
#right-one-third,
.usa-grid-full
#left-one-third-tile,
.usa-grid-full
#triple-first,
.usa-grid-full
#triple-second,
.usa-grid-full
#triple-third {
float: left;
display: block;
margin-right: 4.82916%;
width: 30.11389%; }
.usa-grid .usa-width-one-third:last-child, #translate .usa-width-one-third:last-child,
#header .usa-width-one-third:last-child,
#layout-before-main .usa-width-one-third:last-child,
#layout-content .usa-width-one-third:last-child,
#layout-featured .usa-width-one-third:last-child,
#next .usa-width-one-third:last-child,
#footer .usa-width-one-third:last-child,
.zone-navigation .usa-width-one-third:last-child, .usa-grid #left-one-third:last-child, #translate #left-one-third:last-child,
#header #left-one-third:last-child,
#layout-before-main #left-one-third:last-child,
#layout-content #left-one-third:last-child,
#layout-featured #left-one-third:last-child,
#next #left-one-third:last-child,
#footer #left-one-third:last-child,
.zone-navigation #left-one-third:last-child, .usa-grid
#right-one-third:last-child, #translate
#right-one-third:last-child,
#header
#right-one-third:last-child,
#layout-before-main
#right-one-third:last-child,
#layout-content
#right-one-third:last-child,
#layout-featured
#right-one-third:last-child,
#next
#right-one-third:last-child,
#footer
#right-one-third:last-child,
.zone-navigation
#right-one-third:last-child, .usa-grid
#left-one-third-tile:last-child, #translate
#left-one-third-tile:last-child,
#header
#left-one-third-tile:last-child,
#layout-before-main
#left-one-third-tile:last-child,
#layout-content
#left-one-third-tile:last-child,
#layout-featured
#left-one-third-tile:last-child,
#next
#left-one-third-tile:last-child,
#footer
#left-one-third-tile:last-child,
.zone-navigation
#left-one-third-tile:last-child, .usa-grid
#triple-first:last-child, #translate
#triple-first:last-child,
#header
#triple-first:last-child,
#layout-before-main
#triple-first:last-child,
#layout-content
#triple-first:last-child,
#layout-featured
#triple-first:last-child,
#next
#triple-first:last-child,
#footer
#triple-first:last-child,
.zone-navigation
#triple-first:last-child, .usa-grid
#triple-second:last-child, #translate
#triple-second:last-child,
#header
#triple-second:last-child,
#layout-before-main
#triple-second:last-child,
#layout-content
#triple-second:last-child,
#layout-featured
#triple-second:last-child,
#next
#triple-second:last-child,
#footer
#triple-second:last-child,
.zone-navigation
#triple-second:last-child, .usa-grid
#triple-third:last-child, #translate
#triple-third:last-child,
#header
#triple-third:last-child,
#layout-before-main
#triple-third:last-child,
#layout-content
#triple-third:last-child,
#layout-featured
#triple-third:last-child,
#next
#triple-third:last-child,
#footer
#triple-third:last-child,
.zone-navigation
#triple-third:last-child,
.usa-grid-full .usa-width-one-third:last-child,
.usa-grid-full #left-one-third:last-child,
.usa-grid-full
#right-one-third:last-child,
.usa-grid-full
#left-one-third-tile:last-child,
.usa-grid-full
#triple-first:last-child,
.usa-grid-full
#triple-second:last-child,
.usa-grid-full
#triple-third:last-child {
margin-right: 0; }
.usa-grid .usa-width-two-thirds, #translate .usa-width-two-thirds,
#header .usa-width-two-thirds,
#layout-before-main .usa-width-two-thirds,
#layout-content .usa-width-two-thirds,
#layout-featured .usa-width-two-thirds,
#next .usa-width-two-thirds,
#footer .usa-width-two-thirds,
.zone-navigation .usa-width-two-thirds, .usa-grid #right-two-thirds, #translate #right-two-thirds,
#header #right-two-thirds,
#layout-before-main #right-two-thirds,
#layout-content #right-two-thirds,
#layout-featured #right-two-thirds,
#next #right-two-thirds,
#footer #right-two-thirds,
.zone-navigation #right-two-thirds, .usa-grid
#left-two-thirds, #translate
#left-two-thirds,
#header
#left-two-thirds,
#layout-before-main
#left-two-thirds,
#layout-content
#left-two-thirds,
#layout-featured
#left-two-thirds,
#next
#left-two-thirds,
#footer
#left-two-thirds,
.zone-navigation
#left-two-thirds, .usa-grid
#right-two-thirds-tile, #translate
#right-two-thirds-tile,
#header
#right-two-thirds-tile,
#layout-before-main
#right-two-thirds-tile,
#layout-content
#right-two-thirds-tile,
#layout-featured
#right-two-thirds-tile,
#next
#right-two-thirds-tile,
#footer
#right-two-thirds-tile,
.zone-navigation
#right-two-thirds-tile, .usa-grid
.librarywrapper, #translate
.librarywrapper,
#header
.librarywrapper,
#layout-before-main
.librarywrapper,
#layout-content
.librarywrapper,
#layout-featured
.librarywrapper,
#next
.librarywrapper,
#footer
.librarywrapper,
.zone-navigation
.librarywrapper,
.usa-grid-full .usa-width-two-thirds,
.usa-grid-full #right-two-thirds,
.usa-grid-full
#left-two-thirds,
.usa-grid-full
#right-two-thirds-tile,
.usa-grid-full
.librarywrapper {
float: left;
display: block;
margin-right: 4.82916%;
width: 65.05695%; }
.usa-grid .usa-width-two-thirds:last-child, #translate .usa-width-two-thirds:last-child,
#header .usa-width-two-thirds:last-child,
#layout-before-main .usa-width-two-thirds:last-child,
#layout-content .usa-width-two-thirds:last-child,
#layout-featured .usa-width-two-thirds:last-child,
#next .usa-width-two-thirds:last-child,
#footer .usa-width-two-thirds:last-child,
.zone-navigation .usa-width-two-thirds:last-child, .usa-grid #right-two-thirds:last-child, #translate #right-two-thirds:last-child,
#header #right-two-thirds:last-child,
#layout-before-main #right-two-thirds:last-child,
#layout-content #right-two-thirds:last-child,
#layout-featured #right-two-thirds:last-child,
#next #right-two-thirds:last-child,
#footer #right-two-thirds:last-child,
.zone-navigation #right-two-thirds:last-child, .usa-grid
#left-two-thirds:last-child, #translate
#left-two-thirds:last-child,
#header
#left-two-thirds:last-child,
#layout-before-main
#left-two-thirds:last-child,
#layout-content
#left-two-thirds:last-child,
#layout-featured
#left-two-thirds:last-child,
#next
#left-two-thirds:last-child,
#footer
#left-two-thirds:last-child,
.zone-navigation
#left-two-thirds:last-child, .usa-grid
#right-two-thirds-tile:last-child, #translate
#right-two-thirds-tile:last-child,
#header
#right-two-thirds-tile:last-child,
#layout-before-main
#right-two-thirds-tile:last-child,
#layout-content
#right-two-thirds-tile:last-child,
#layout-featured
#right-two-thirds-tile:last-child,
#next
#right-two-thirds-tile:last-child,
#footer
#right-two-thirds-tile:last-child,
.zone-navigation
#right-two-thirds-tile:last-child, .usa-grid
.librarywrapper:last-child, #translate
.librarywrapper:last-child,
#header
.librarywrapper:last-child,
#layout-before-main
.librarywrapper:last-child,
#layout-content
.librarywrapper:last-child,
#layout-featured
.librarywrapper:last-child,
#next
.librarywrapper:last-child,
#footer
.librarywrapper:last-child,
.zone-navigation
.librarywrapper:last-child,
.usa-grid-full .usa-width-two-thirds:last-child,
.usa-grid-full #right-two-thirds:last-child,
.usa-grid-full
#left-two-thirds:last-child,
.usa-grid-full
#right-two-thirds-tile:last-child,
.usa-grid-full
.librarywrapper:last-child {
margin-right: 0; }
.usa-grid .usa-width-one-fourth, #translate .usa-width-one-fourth,
#header .usa-width-one-fourth,
#layout-before-main .usa-width-one-fourth,
#layout-content .usa-width-one-fourth,
#layout-featured .usa-width-one-fourth,
#next .usa-width-one-fourth,
#footer .usa-width-one-fourth,
.zone-navigation .usa-width-one-fourth, .usa-grid #quad-first, #translate #quad-first,
#header #quad-first,
#layout-before-main #quad-first,
#layout-content #quad-first,
#layout-featured #quad-first,
#next #quad-first,
#footer #quad-first,
.zone-navigation #quad-first, .usa-grid
#quad-second, #translate
#quad-second,
#header
#quad-second,
#layout-before-main
#quad-second,
#layout-content
#quad-second,
#layout-featured
#quad-second,
#next
#quad-second,
#footer
#quad-second,
.zone-navigation
#quad-second, .usa-grid
#quad-third, #translate
#quad-third,
#header
#quad-third,
#layout-before-main
#quad-third,
#layout-content
#quad-third,
#layout-featured
#quad-third,
#next
#quad-third,
#footer
#quad-third,
.zone-navigation
#quad-third, .usa-grid
#quad-fourth, #translate
#quad-fourth,
#header
#quad-fourth,
#layout-before-main
#quad-fourth,
#layout-content
#quad-fourth,
#layout-featured
#quad-fourth,
#next
#quad-fourth,
#footer
#quad-fourth,
.zone-navigation
#quad-fourth, .usa-grid
#footer-quad-first, #translate
#footer-quad-first,
#header
#footer-quad-first,
#layout-before-main
#footer-quad-first,
#layout-content
#footer-quad-first,
#layout-featured
#footer-quad-first,
#next
#footer-quad-first,
#footer
#footer-quad-first,
.zone-navigation
#footer-quad-first, .usa-grid
#footer-quad-second, #translate
#footer-quad-second,
#header
#footer-quad-second,
#layout-before-main
#footer-quad-second,
#layout-content
#footer-quad-second,
#layout-featured
#footer-quad-second,
#next
#footer-quad-second,
#footer
#footer-quad-second,
.zone-navigation
#footer-quad-second, .usa-grid
#footer-quad-third, #translate
#footer-quad-third,
#header
#footer-quad-third,
#layout-before-main
#footer-quad-third,
#layout-content
#footer-quad-third,
#layout-featured
#footer-quad-third,
#next
#footer-quad-third,
#footer
#footer-quad-third,
.zone-navigation
#footer-quad-third, .usa-grid
#footer-quad-fourth, #translate
#footer-quad-fourth,
#header
#footer-quad-fourth,
#layout-before-main
#footer-quad-fourth,
#layout-content
#footer-quad-fourth,
#layout-featured
#footer-quad-fourth,
#next
#footer-quad-fourth,
#footer
#footer-quad-fourth,
.zone-navigation
#footer-quad-fourth,
.usa-grid-full .usa-width-one-fourth,
.usa-grid-full #quad-first,
.usa-grid-full
#quad-second,
.usa-grid-full
#quad-third,
.usa-grid-full
#quad-fourth,
.usa-grid-full
#footer-quad-first,
.usa-grid-full
#footer-quad-second,
.usa-grid-full
#footer-quad-third,
.usa-grid-full
#footer-quad-fourth {
float: left;
display: block;
margin-right: 4.82916%;
width: 47.58542%; }
.usa-grid .usa-width-one-fourth:last-child, #translate .usa-width-one-fourth:last-child,
#header .usa-width-one-fourth:last-child,
#layout-before-main .usa-width-one-fourth:last-child,
#layout-content .usa-width-one-fourth:last-child,
#layout-featured .usa-width-one-fourth:last-child,
#next .usa-width-one-fourth:last-child,
#footer .usa-width-one-fourth:last-child,
.zone-navigation .usa-width-one-fourth:last-child, .usa-grid #quad-first:last-child, #translate #quad-first:last-child,
#header #quad-first:last-child,
#layout-before-main #quad-first:last-child,
#layout-content #quad-first:last-child,
#layout-featured #quad-first:last-child,
#next #quad-first:last-child,
#footer #quad-first:last-child,
.zone-navigation #quad-first:last-child, .usa-grid
#quad-second:last-child, #translate
#quad-second:last-child,
#header
#quad-second:last-child,
#layout-before-main
#quad-second:last-child,
#layout-content
#quad-second:last-child,
#layout-featured
#quad-second:last-child,
#next
#quad-second:last-child,
#footer
#quad-second:last-child,
.zone-navigation
#quad-second:last-child, .usa-grid
#quad-third:last-child, #translate
#quad-third:last-child,
#header
#quad-third:last-child,
#layout-before-main
#quad-third:last-child,
#layout-content
#quad-third:last-child,
#layout-featured
#quad-third:last-child,
#next
#quad-third:last-child,
#footer
#quad-third:last-child,
.zone-navigation
#quad-third:last-child, .usa-grid
#quad-fourth:last-child, #translate
#quad-fourth:last-child,
#header
#quad-fourth:last-child,
#layout-before-main
#quad-fourth:last-child,
#layout-content
#quad-fourth:last-child,
#layout-featured
#quad-fourth:last-child,
#next
#quad-fourth:last-child,
#footer
#quad-fourth:last-child,
.zone-navigation
#quad-fourth:last-child, .usa-grid
#footer-quad-first:last-child, #translate
#footer-quad-first:last-child,
#header
#footer-quad-first:last-child,
#layout-before-main
#footer-quad-first:last-child,
#layout-content
#footer-quad-first:last-child,
#layout-featured
#footer-quad-first:last-child,
#next
#footer-quad-first:last-child,
#footer
#footer-quad-first:last-child,
.zone-navigation
#footer-quad-first:last-child, .usa-grid
#footer-quad-second:last-child, #translate
#footer-quad-second:last-child,
#header
#footer-quad-second:last-child,
#layout-before-main
#footer-quad-second:last-child,
#layout-content
#footer-quad-second:last-child,
#layout-featured
#footer-quad-second:last-child,
#next
#footer-quad-second:last-child,
#footer
#footer-quad-second:last-child,
.zone-navigation
#footer-quad-second:last-child, .usa-grid
#footer-quad-third:last-child, #translate
#footer-quad-third:last-child,
#header
#footer-quad-third:last-child,
#layout-before-main
#footer-quad-third:last-child,
#layout-content
#footer-quad-third:last-child,
#layout-featured
#footer-quad-third:last-child,
#next
#footer-quad-third:last-child,
#footer
#footer-quad-third:last-child,
.zone-navigation
#footer-quad-third:last-child, .usa-grid
#footer-quad-fourth:last-child, #translate
#footer-quad-fourth:last-child,
#header
#footer-quad-fourth:last-child,
#layout-before-main
#footer-quad-fourth:last-child,
#layout-content
#footer-quad-fourth:last-child,
#layout-featured
#footer-quad-fourth:last-child,
#next
#footer-quad-fourth:last-child,
#footer
#footer-quad-fourth:last-child,
.zone-navigation
#footer-quad-fourth:last-child,
.usa-grid-full .usa-width-one-fourth:last-child,
.usa-grid-full #quad-first:last-child,
.usa-grid-full
#quad-second:last-child,
.usa-grid-full
#quad-third:last-child,
.usa-grid-full
#quad-fourth:last-child,
.usa-grid-full
#footer-quad-first:last-child,
.usa-grid-full
#footer-quad-second:last-child,
.usa-grid-full
#footer-quad-third:last-child,
.usa-grid-full
#footer-quad-fourth:last-child {
margin-right: 0; }
.usa-grid .usa-width-one-fourth:nth-child(2n), #translate .usa-width-one-fourth:nth-child(2n),
#header .usa-width-one-fourth:nth-child(2n),
#layout-before-main .usa-width-one-fourth:nth-child(2n),
#layout-content .usa-width-one-fourth:nth-child(2n),
#layout-featured .usa-width-one-fourth:nth-child(2n),
#next .usa-width-one-fourth:nth-child(2n),
#footer .usa-width-one-fourth:nth-child(2n),
.zone-navigation .usa-width-one-fourth:nth-child(2n), .usa-grid #quad-first:nth-child(2n), #translate #quad-first:nth-child(2n),
#header #quad-first:nth-child(2n),
#layout-before-main #quad-first:nth-child(2n),
#layout-content #quad-first:nth-child(2n),
#layout-featured #quad-first:nth-child(2n),
#next #quad-first:nth-child(2n),
#footer #quad-first:nth-child(2n),
.zone-navigation #quad-first:nth-child(2n), .usa-grid
#quad-second:nth-child(2n), #translate
#quad-second:nth-child(2n),
#header
#quad-second:nth-child(2n),
#layout-before-main
#quad-second:nth-child(2n),
#layout-content
#quad-second:nth-child(2n),
#layout-featured
#quad-second:nth-child(2n),
#next
#quad-second:nth-child(2n),
#footer
#quad-second:nth-child(2n),
.zone-navigation
#quad-second:nth-child(2n), .usa-grid
#quad-third:nth-child(2n), #translate
#quad-third:nth-child(2n),
#header
#quad-third:nth-child(2n),
#layout-before-main
#quad-third:nth-child(2n),
#layout-content
#quad-third:nth-child(2n),
#layout-featured
#quad-third:nth-child(2n),
#next
#quad-third:nth-child(2n),
#footer
#quad-third:nth-child(2n),
.zone-navigation
#quad-third:nth-child(2n), .usa-grid
#quad-fourth:nth-child(2n), #translate
#quad-fourth:nth-child(2n),
#header
#quad-fourth:nth-child(2n),
#layout-before-main
#quad-fourth:nth-child(2n),
#layout-content
#quad-fourth:nth-child(2n),
#layout-featured
#quad-fourth:nth-child(2n),
#next
#quad-fourth:nth-child(2n),
#footer
#quad-fourth:nth-child(2n),
.zone-navigation
#quad-fourth:nth-child(2n), .usa-grid
#footer-quad-first:nth-child(2n), #translate
#footer-quad-first:nth-child(2n),
#header
#footer-quad-first:nth-child(2n),
#layout-before-main
#footer-quad-first:nth-child(2n),
#layout-content
#footer-quad-first:nth-child(2n),
#layout-featured
#footer-quad-first:nth-child(2n),
#next
#footer-quad-first:nth-child(2n),
#footer
#footer-quad-first:nth-child(2n),
.zone-navigation
#footer-quad-first:nth-child(2n), .usa-grid
#footer-quad-second:nth-child(2n), #translate
#footer-quad-second:nth-child(2n),
#header
#footer-quad-second:nth-child(2n),
#layout-before-main
#footer-quad-second:nth-child(2n),
#layout-content
#footer-quad-second:nth-child(2n),
#layout-featured
#footer-quad-second:nth-child(2n),
#next
#footer-quad-second:nth-child(2n),
#footer
#footer-quad-second:nth-child(2n),
.zone-navigation
#footer-quad-second:nth-child(2n), .usa-grid
#footer-quad-third:nth-child(2n), #translate
#footer-quad-third:nth-child(2n),
#header
#footer-quad-third:nth-child(2n),
#layout-before-main
#footer-quad-third:nth-child(2n),
#layout-content
#footer-quad-third:nth-child(2n),
#layout-featured
#footer-quad-third:nth-child(2n),
#next
#footer-quad-third:nth-child(2n),
#footer
#footer-quad-third:nth-child(2n),
.zone-navigation
#footer-quad-third:nth-child(2n), .usa-grid
#footer-quad-fourth:nth-child(2n), #translate
#footer-quad-fourth:nth-child(2n),
#header
#footer-quad-fourth:nth-child(2n),
#layout-before-main
#footer-quad-fourth:nth-child(2n),
#layout-content
#footer-quad-fourth:nth-child(2n),
#layout-featured
#footer-quad-fourth:nth-child(2n),
#next
#footer-quad-fourth:nth-child(2n),
#footer
#footer-quad-fourth:nth-child(2n),
.zone-navigation
#footer-quad-fourth:nth-child(2n),
.usa-grid-full .usa-width-one-fourth:nth-child(2n),
.usa-grid-full #quad-first:nth-child(2n),
.usa-grid-full
#quad-second:nth-child(2n),
.usa-grid-full
#quad-third:nth-child(2n),
.usa-grid-full
#quad-fourth:nth-child(2n),
.usa-grid-full
#footer-quad-first:nth-child(2n),
.usa-grid-full
#footer-quad-second:nth-child(2n),
.usa-grid-full
#footer-quad-third:nth-child(2n),
.usa-grid-full
#footer-quad-fourth:nth-child(2n) {
margin-right: 0; }
.usa-grid .usa-width-three-fourths, #translate .usa-width-three-fourths,
#header .usa-width-three-fourths,
#layout-before-main .usa-width-three-fourths,
#layout-content .usa-width-three-fourths,
#layout-featured .usa-width-three-fourths,
#next .usa-width-three-fourths,
#footer .usa-width-three-fourths,
.zone-navigation .usa-width-three-fourths,
.usa-grid-full .usa-width-three-fourths {
float: left;
display: block;
margin-right: 4.82916%;
width: 100%; }
.usa-grid .usa-width-three-fourths:last-child, #translate .usa-width-three-fourths:last-child,
#header .usa-width-three-fourths:last-child,
#layout-before-main .usa-width-three-fourths:last-child,
#layout-content .usa-width-three-fourths:last-child,
#layout-featured .usa-width-three-fourths:last-child,
#next .usa-width-three-fourths:last-child,
#footer .usa-width-three-fourths:last-child,
.zone-navigation .usa-width-three-fourths:last-child,
.usa-grid-full .usa-width-three-fourths:last-child {
margin-right: 0; }
.usa-grid .usa-width-one-sixth, #translate .usa-width-one-sixth,
#header .usa-width-one-sixth,
#layout-before-main .usa-width-one-sixth,
#layout-content .usa-width-one-sixth,
#layout-featured .usa-width-one-sixth,
#next .usa-width-one-sixth,
#footer .usa-width-one-sixth,
.zone-navigation .usa-width-one-sixth,
.usa-grid-full .usa-width-one-sixth {
float: left;
display: block;
margin-right: 4.82916%;
width: 30.11389%; }
.usa-grid .usa-width-one-sixth:last-child, #translate .usa-width-one-sixth:last-child,
#header .usa-width-one-sixth:last-child,
#layout-before-main .usa-width-one-sixth:last-child,
#layout-content .usa-width-one-sixth:last-child,
#layout-featured .usa-width-one-sixth:last-child,
#next .usa-width-one-sixth:last-child,
#footer .usa-width-one-sixth:last-child,
.zone-navigation .usa-width-one-sixth:last-child,
.usa-grid-full .usa-width-one-sixth:last-child {
margin-right: 0; }
.usa-grid .usa-width-one-sixth:nth-child(3n), #translate .usa-width-one-sixth:nth-child(3n),
#header .usa-width-one-sixth:nth-child(3n),
#layout-before-main .usa-width-one-sixth:nth-child(3n),
#layout-content .usa-width-one-sixth:nth-child(3n),
#layout-featured .usa-width-one-sixth:nth-child(3n),
#next .usa-width-one-sixth:nth-child(3n),
#footer .usa-width-one-sixth:nth-child(3n),
.zone-navigation .usa-width-one-sixth:nth-child(3n),
.usa-grid-full .usa-width-one-sixth:nth-child(3n) {
margin-right: 0; }
.usa-grid .usa-width-five-sixths, #translate .usa-width-five-sixths,
#header .usa-width-five-sixths,
#layout-before-main .usa-width-five-sixths,
#layout-content .usa-width-five-sixths,
#layout-featured .usa-width-five-sixths,
#next .usa-width-five-sixths,
#footer .usa-width-five-sixths,
.zone-navigation .usa-width-five-sixths,
.usa-grid-full .usa-width-five-sixths {
float: left;
display: block;
margin-right: 4.82916%;
width: 82.52847%; }
.usa-grid .usa-width-five-sixths:last-child, #translate .usa-width-five-sixths:last-child,
#header .usa-width-five-sixths:last-child,
#layout-before-main .usa-width-five-sixths:last-child,
#layout-content .usa-width-five-sixths:last-child,
#layout-featured .usa-width-five-sixths:last-child,
#next .usa-width-five-sixths:last-child,
#footer .usa-width-five-sixths:last-child,
.zone-navigation .usa-width-five-sixths:last-child,
.usa-grid-full .usa-width-five-sixths:last-child {
margin-right: 0; }
.usa-grid .usa-width-one-twelfth, #translate .usa-width-one-twelfth,
#header .usa-width-one-twelfth,
#layout-before-main .usa-width-one-twelfth,
#layout-content .usa-width-one-twelfth,
#layout-featured .usa-width-one-twelfth,
#next .usa-width-one-twelfth,
#footer .usa-width-one-twelfth,
.zone-navigation .usa-width-one-twelfth,
.usa-grid-full .usa-width-one-twelfth {
float: left;
display: block;
margin-right: 4.82916%;
width: 30.11389%; }
.usa-grid .usa-width-one-twelfth:last-child, #translate .usa-width-one-twelfth:last-child,
#header .usa-width-one-twelfth:last-child,
#layout-before-main .usa-width-one-twelfth:last-child,
#layout-content .usa-width-one-twelfth:last-child,
#layout-featured .usa-width-one-twelfth:last-child,
#next .usa-width-one-twelfth:last-child,
#footer .usa-width-one-twelfth:last-child,
.zone-navigation .usa-width-one-twelfth:last-child,
.usa-grid-full .usa-width-one-twelfth:last-child {
margin-right: 0; }
.usa-grid .usa-width-one-twelfth:nth-child(3n), #translate .usa-width-one-twelfth:nth-child(3n),
#header .usa-width-one-twelfth:nth-child(3n),
#layout-before-main .usa-width-one-twelfth:nth-child(3n),
#layout-content .usa-width-one-twelfth:nth-child(3n),
#layout-featured .usa-width-one-twelfth:nth-child(3n),
#next .usa-width-one-twelfth:nth-child(3n),
#footer .usa-width-one-twelfth:nth-child(3n),
.zone-navigation .usa-width-one-twelfth:nth-child(3n),
.usa-grid-full .usa-width-one-twelfth:nth-child(3n) {
margin-right: 0; } }
@media screen and (min-width: 1000px) {
.usa-grid .usa-width-one-whole, #translate .usa-width-one-whole,
#header .usa-width-one-whole,
#layout-before-main .usa-width-one-whole,
#layout-content .usa-width-one-whole,
#layout-featured .usa-width-one-whole,
#next .usa-width-one-whole,
#footer .usa-width-one-whole,
.zone-navigation .usa-width-one-whole, .usa-grid #before-content, #translate #before-content,
#header #before-content,
#layout-before-main #before-content,
#layout-content #before-content,
#layout-featured #before-content,
#next #before-content,
#footer #before-content,
.zone-navigation #before-content, .usa-grid
#messages, #translate
#messages,
#header
#messages,
#layout-before-main
#messages,
#layout-content
#messages,
#layout-featured
#messages,
#next
#messages,
#footer
#messages,
.zone-navigation
#messages, .usa-grid
#content, #translate
#content,
#header
#content,
#layout-before-main
#content,
#layout-content
#content,
#layout-featured
#content,
#next
#content,
#footer
#content,
.zone-navigation
#content, .usa-grid
#after-content, #translate
#after-content,
#header
#after-content,
#layout-before-main
#after-content,
#layout-content
#after-content,
#layout-featured
#after-content,
#next
#after-content,
#footer
#after-content,
.zone-navigation
#after-content, .usa-grid
#footer-sig, #translate
#footer-sig,
#header
#footer-sig,
#layout-before-main
#footer-sig,
#layout-content
#footer-sig,
#layout-featured
#footer-sig,
#next
#footer-sig,
#footer
#footer-sig,
.zone-navigation
#footer-sig, .usa-grid
.zone-content, #translate
.zone-content,
#header
.zone-content,
#layout-before-main
.zone-content,
#layout-content
.zone-content,
#layout-featured
.zone-content,
#next
.zone-content,
#footer
.zone-content,
.zone-navigation
.zone-content, .usa-grid
#threecolumn, #translate
#threecolumn,
#header
#threecolumn,
#layout-before-main
#threecolumn,
#layout-content
#threecolumn,
#layout-featured
#threecolumn,
#next
#threecolumn,
#footer
#threecolumn,
.zone-navigation
#threecolumn,
.usa-grid-full .usa-width-one-whole,
.usa-grid-full #before-content,
.usa-grid-full
#messages,
.usa-grid-full
#content,
.usa-grid-full
#after-content,
.usa-grid-full
#footer-sig,
.usa-grid-full
.zone-content,
.usa-grid-full
#threecolumn {
float: left;
display: block;
margin-right: 2.35765%;
width: 100%; }
.usa-grid .usa-width-one-whole:last-child, #translate .usa-width-one-whole:last-child,
#header .usa-width-one-whole:last-child,
#layout-before-main .usa-width-one-whole:last-child,
#layout-content .usa-width-one-whole:last-child,
#layout-featured .usa-width-one-whole:last-child,
#next .usa-width-one-whole:last-child,
#footer .usa-width-one-whole:last-child,
.zone-navigation .usa-width-one-whole:last-child, .usa-grid #before-content:last-child, #translate #before-content:last-child,
#header #before-content:last-child,
#layout-before-main #before-content:last-child,
#layout-content #before-content:last-child,
#layout-featured #before-content:last-child,
#next #before-content:last-child,
#footer #before-content:last-child,
.zone-navigation #before-content:last-child, .usa-grid
#messages:last-child, #translate
#messages:last-child,
#header
#messages:last-child,
#layout-before-main
#messages:last-child,
#layout-content
#messages:last-child,
#layout-featured
#messages:last-child,
#next
#messages:last-child,
#footer
#messages:last-child,
.zone-navigation
#messages:last-child, .usa-grid
#content:last-child, #translate
#content:last-child,
#header
#content:last-child,
#layout-before-main
#content:last-child,
#layout-content
#content:last-child,
#layout-featured
#content:last-child,
#next
#content:last-child,
#footer
#content:last-child,
.zone-navigation
#content:last-child, .usa-grid
#after-content:last-child, #translate
#after-content:last-child,
#header
#after-content:last-child,
#layout-before-main
#after-content:last-child,
#layout-content
#after-content:last-child,
#layout-featured
#after-content:last-child,
#next
#after-content:last-child,
#footer
#after-content:last-child,
.zone-navigation
#after-content:last-child, .usa-grid
#footer-sig:last-child, #translate
#footer-sig:last-child,
#header
#footer-sig:last-child,
#layout-before-main
#footer-sig:last-child,
#layout-content
#footer-sig:last-child,
#layout-featured
#footer-sig:last-child,
#next
#footer-sig:last-child,
#footer
#footer-sig:last-child,
.zone-navigation
#footer-sig:last-child, .usa-grid
.zone-content:last-child, #translate
.zone-content:last-child,
#header
.zone-content:last-child,
#layout-before-main
.zone-content:last-child,
#layout-content
.zone-content:last-child,
#layout-featured
.zone-content:last-child,
#next
.zone-content:last-child,
#footer
.zone-content:last-child,
.zone-navigation
.zone-content:last-child, .usa-grid
#threecolumn:last-child, #translate
#threecolumn:last-child,
#header
#threecolumn:last-child,
#layout-before-main
#threecolumn:last-child,
#layout-content
#threecolumn:last-child,
#layout-featured
#threecolumn:last-child,
#next
#threecolumn:last-child,
#footer
#threecolumn:last-child,
.zone-navigation
#threecolumn:last-child,
.usa-grid-full .usa-width-one-whole:last-child,
.usa-grid-full #before-content:last-child,
.usa-grid-full
#messages:last-child,
.usa-grid-full
#content:last-child,
.usa-grid-full
#after-content:last-child,
.usa-grid-full
#footer-sig:last-child,
.usa-grid-full
.zone-content:last-child,
.usa-grid-full
#threecolumn:last-child {
margin-right: 0; }
.usa-grid .usa-width-one-half, #translate .usa-width-one-half,
#header .usa-width-one-half,
#layout-before-main .usa-width-one-half,
#layout-content .usa-width-one-half,
#layout-featured .usa-width-one-half,
#next .usa-width-one-half,
#footer .usa-width-one-half,
.zone-navigation .usa-width-one-half, .usa-grid #left-half, #translate #left-half,
#header #left-half,
#layout-before-main #left-half,
#layout-content #left-half,
#layout-featured #left-half,
#next #left-half,
#footer #left-half,
.zone-navigation #left-half, .usa-grid
#right-half, #translate
#right-half,
#header
#right-half,
#layout-before-main
#right-half,
#layout-content
#right-half,
#layout-featured
#right-half,
#next
#right-half,
#footer
#right-half,
.zone-navigation
#right-half, .usa-grid
#footer-first-half, #translate
#footer-first-half,
#header
#footer-first-half,
#layout-before-main
#footer-first-half,
#layout-content
#footer-first-half,
#layout-featured
#footer-first-half,
#next
#footer-first-half,
#footer
#footer-first-half,
.zone-navigation
#footer-first-half, .usa-grid
#footer-second-half, #translate
#footer-second-half,
#header
#footer-second-half,
#layout-before-main
#footer-second-half,
#layout-content
#footer-second-half,
#layout-featured
#footer-second-half,
#next
#footer-second-half,
#footer
#footer-second-half,
.zone-navigation
#footer-second-half,
.usa-grid-full .usa-width-one-half,
.usa-grid-full #left-half,
.usa-grid-full
#right-half,
.usa-grid-full
#footer-first-half,
.usa-grid-full
#footer-second-half {
float: left;
display: block;
margin-right: 2.35765%;
width: 48.82117%; }
.usa-grid .usa-width-one-half:last-child, #translate .usa-width-one-half:last-child,
#header .usa-width-one-half:last-child,
#layout-before-main .usa-width-one-half:last-child,
#layout-content .usa-width-one-half:last-child,
#layout-featured .usa-width-one-half:last-child,
#next .usa-width-one-half:last-child,
#footer .usa-width-one-half:last-child,
.zone-navigation .usa-width-one-half:last-child, .usa-grid #left-half:last-child, #translate #left-half:last-child,
#header #left-half:last-child,
#layout-before-main #left-half:last-child,
#layout-content #left-half:last-child,
#layout-featured #left-half:last-child,
#next #left-half:last-child,
#footer #left-half:last-child,
.zone-navigation #left-half:last-child, .usa-grid
#right-half:last-child, #translate
#right-half:last-child,
#header
#right-half:last-child,
#layout-before-main
#right-half:last-child,
#layout-content
#right-half:last-child,
#layout-featured
#right-half:last-child,
#next
#right-half:last-child,
#footer
#right-half:last-child,
.zone-navigation
#right-half:last-child, .usa-grid
#footer-first-half:last-child, #translate
#footer-first-half:last-child,
#header
#footer-first-half:last-child,
#layout-before-main
#footer-first-half:last-child,
#layout-content
#footer-first-half:last-child,
#layout-featured
#footer-first-half:last-child,
#next
#footer-first-half:last-child,
#footer
#footer-first-half:last-child,
.zone-navigation
#footer-first-half:last-child, .usa-grid
#footer-second-half:last-child, #translate
#footer-second-half:last-child,
#header
#footer-second-half:last-child,
#layout-before-main
#footer-second-half:last-child,
#layout-content
#footer-second-half:last-child,
#layout-featured
#footer-second-half:last-child,
#next
#footer-second-half:last-child,
#footer
#footer-second-half:last-child,
.zone-navigation
#footer-second-half:last-child,
.usa-grid-full .usa-width-one-half:last-child,
.usa-grid-full #left-half:last-child,
.usa-grid-full
#right-half:last-child,
.usa-grid-full
#footer-first-half:last-child,
.usa-grid-full
#footer-second-half:last-child {
margin-right: 0; }
.usa-grid .usa-width-one-third, #translate .usa-width-one-third,
#header .usa-width-one-third,
#layout-before-main .usa-width-one-third,
#layout-content .usa-width-one-third,
#layout-featured .usa-width-one-third,
#next .usa-width-one-third,
#footer .usa-width-one-third,
.zone-navigation .usa-width-one-third, .usa-grid #left-one-third, #translate #left-one-third,
#header #left-one-third,
#layout-before-main #left-one-third,
#layout-content #left-one-third,
#layout-featured #left-one-third,
#next #left-one-third,
#footer #left-one-third,
.zone-navigation #left-one-third, .usa-grid
#right-one-third, #translate
#right-one-third,
#header
#right-one-third,
#layout-before-main
#right-one-third,
#layout-content
#right-one-third,
#layout-featured
#right-one-third,
#next
#right-one-third,
#footer
#right-one-third,
.zone-navigation
#right-one-third, .usa-grid
#left-one-third-tile, #translate
#left-one-third-tile,
#header
#left-one-third-tile,
#layout-before-main
#left-one-third-tile,
#layout-content
#left-one-third-tile,
#layout-featured
#left-one-third-tile,
#next
#left-one-third-tile,
#footer
#left-one-third-tile,
.zone-navigation
#left-one-third-tile, .usa-grid
#triple-first, #translate
#triple-first,
#header
#triple-first,
#layout-before-main
#triple-first,
#layout-content
#triple-first,
#layout-featured
#triple-first,
#next
#triple-first,
#footer
#triple-first,
.zone-navigation
#triple-first, .usa-grid
#triple-second, #translate
#triple-second,
#header
#triple-second,
#layout-before-main
#triple-second,
#layout-content
#triple-second,
#layout-featured
#triple-second,
#next
#triple-second,
#footer
#triple-second,
.zone-navigation
#triple-second, .usa-grid
#triple-third, #translate
#triple-third,
#header
#triple-third,
#layout-before-main
#triple-third,
#layout-content
#triple-third,
#layout-featured
#triple-third,
#next
#triple-third,
#footer
#triple-third,
.zone-navigation
#triple-third,
.usa-grid-full .usa-width-one-third,
.usa-grid-full #left-one-third,
.usa-grid-full
#right-one-third,
.usa-grid-full
#left-one-third-tile,
.usa-grid-full
#triple-first,
.usa-grid-full
#triple-second,
.usa-grid-full
#triple-third {
float: left;
display: block;
margin-right: 2.35765%;
width: 31.76157%; }
.usa-grid .usa-width-one-third:last-child, #translate .usa-width-one-third:last-child,
#header .usa-width-one-third:last-child,
#layout-before-main .usa-width-one-third:last-child,
#layout-content .usa-width-one-third:last-child,
#layout-featured .usa-width-one-third:last-child,
#next .usa-width-one-third:last-child,
#footer .usa-width-one-third:last-child,
.zone-navigation .usa-width-one-third:last-child, .usa-grid #left-one-third:last-child, #translate #left-one-third:last-child,
#header #left-one-third:last-child,
#layout-before-main #left-one-third:last-child,
#layout-content #left-one-third:last-child,
#layout-featured #left-one-third:last-child,
#next #left-one-third:last-child,
#footer #left-one-third:last-child,
.zone-navigation #left-one-third:last-child, .usa-grid
#right-one-third:last-child, #translate
#right-one-third:last-child,
#header
#right-one-third:last-child,
#layout-before-main
#right-one-third:last-child,
#layout-content
#right-one-third:last-child,
#layout-featured
#right-one-third:last-child,
#next
#right-one-third:last-child,
#footer
#right-one-third:last-child,
.zone-navigation
#right-one-third:last-child, .usa-grid
#left-one-third-tile:last-child, #translate
#left-one-third-tile:last-child,
#header
#left-one-third-tile:last-child,
#layout-before-main
#left-one-third-tile:last-child,
#layout-content
#left-one-third-tile:last-child,
#layout-featured
#left-one-third-tile:last-child,
#next
#left-one-third-tile:last-child,
#footer
#left-one-third-tile:last-child,
.zone-navigation
#left-one-third-tile:last-child, .usa-grid
#triple-first:last-child, #translate
#triple-first:last-child,
#header
#triple-first:last-child,
#layout-before-main
#triple-first:last-child,
#layout-content
#triple-first:last-child,
#layout-featured
#triple-first:last-child,
#next
#triple-first:last-child,
#footer
#triple-first:last-child,
.zone-navigation
#triple-first:last-child, .usa-grid
#triple-second:last-child, #translate
#triple-second:last-child,
#header
#triple-second:last-child,
#layout-before-main
#triple-second:last-child,
#layout-content
#triple-second:last-child,
#layout-featured
#triple-second:last-child,
#next
#triple-second:last-child,
#footer
#triple-second:last-child,
.zone-navigation
#triple-second:last-child, .usa-grid
#triple-third:last-child, #translate
#triple-third:last-child,
#header
#triple-third:last-child,
#layout-before-main
#triple-third:last-child,
#layout-content
#triple-third:last-child,
#layout-featured
#triple-third:last-child,
#next
#triple-third:last-child,
#footer
#triple-third:last-child,
.zone-navigation
#triple-third:last-child,
.usa-grid-full .usa-width-one-third:last-child,
.usa-grid-full #left-one-third:last-child,
.usa-grid-full
#right-one-third:last-child,
.usa-grid-full
#left-one-third-tile:last-child,
.usa-grid-full
#triple-first:last-child,
.usa-grid-full
#triple-second:last-child,
.usa-grid-full
#triple-third:last-child {
margin-right: 0; }
.usa-grid .usa-width-two-thirds, #translate .usa-width-two-thirds,
#header .usa-width-two-thirds,
#layout-before-main .usa-width-two-thirds,
#layout-content .usa-width-two-thirds,
#layout-featured .usa-width-two-thirds,
#next .usa-width-two-thirds,
#footer .usa-width-two-thirds,
.zone-navigation .usa-width-two-thirds, .usa-grid #right-two-thirds, #translate #right-two-thirds,
#header #right-two-thirds,
#layout-before-main #right-two-thirds,
#layout-content #right-two-thirds,
#layout-featured #right-two-thirds,
#next #right-two-thirds,
#footer #right-two-thirds,
.zone-navigation #right-two-thirds, .usa-grid
#left-two-thirds, #translate
#left-two-thirds,
#header
#left-two-thirds,
#layout-before-main
#left-two-thirds,
#layout-content
#left-two-thirds,
#layout-featured
#left-two-thirds,
#next
#left-two-thirds,
#footer
#left-two-thirds,
.zone-navigation
#left-two-thirds, .usa-grid
#right-two-thirds-tile, #translate
#right-two-thirds-tile,
#header
#right-two-thirds-tile,
#layout-before-main
#right-two-thirds-tile,
#layout-content
#right-two-thirds-tile,
#layout-featured
#right-two-thirds-tile,
#next
#right-two-thirds-tile,
#footer
#right-two-thirds-tile,
.zone-navigation
#right-two-thirds-tile, .usa-grid
.librarywrapper, #translate
.librarywrapper,
#header
.librarywrapper,
#layout-before-main
.librarywrapper,
#layout-content
.librarywrapper,
#layout-featured
.librarywrapper,
#next
.librarywrapper,
#footer
.librarywrapper,
.zone-navigation
.librarywrapper,
.usa-grid-full .usa-width-two-thirds,
.usa-grid-full #right-two-thirds,
.usa-grid-full
#left-two-thirds,
.usa-grid-full
#right-two-thirds-tile,
.usa-grid-full
.librarywrapper {
float: left;
display: block;
margin-right: 2.35765%;
width: 65.88078%; }
.usa-grid .usa-width-two-thirds:last-child, #translate .usa-width-two-thirds:last-child,
#header .usa-width-two-thirds:last-child,
#layout-before-main .usa-width-two-thirds:last-child,
#layout-content .usa-width-two-thirds:last-child,
#layout-featured .usa-width-two-thirds:last-child,
#next .usa-width-two-thirds:last-child,
#footer .usa-width-two-thirds:last-child,
.zone-navigation .usa-width-two-thirds:last-child, .usa-grid #right-two-thirds:last-child, #translate #right-two-thirds:last-child,
#header #right-two-thirds:last-child,
#layout-before-main #right-two-thirds:last-child,
#layout-content #right-two-thirds:last-child,
#layout-featured #right-two-thirds:last-child,
#next #right-two-thirds:last-child,
#footer #right-two-thirds:last-child,
.zone-navigation #right-two-thirds:last-child, .usa-grid
#left-two-thirds:last-child, #translate
#left-two-thirds:last-child,
#header
#left-two-thirds:last-child,
#layout-before-main
#left-two-thirds:last-child,
#layout-content
#left-two-thirds:last-child,
#layout-featured
#left-two-thirds:last-child,
#next
#left-two-thirds:last-child,
#footer
#left-two-thirds:last-child,
.zone-navigation
#left-two-thirds:last-child, .usa-grid
#right-two-thirds-tile:last-child, #translate
#right-two-thirds-tile:last-child,
#header
#right-two-thirds-tile:last-child,
#layout-before-main
#right-two-thirds-tile:last-child,
#layout-content
#right-two-thirds-tile:last-child,
#layout-featured
#right-two-thirds-tile:last-child,
#next
#right-two-thirds-tile:last-child,
#footer
#right-two-thirds-tile:last-child,
.zone-navigation
#right-two-thirds-tile:last-child, .usa-grid
.librarywrapper:last-child, #translate
.librarywrapper:last-child,
#header
.librarywrapper:last-child,
#layout-before-main
.librarywrapper:last-child,
#layout-content
.librarywrapper:last-child,
#layout-featured
.librarywrapper:last-child,
#next
.librarywrapper:last-child,
#footer
.librarywrapper:last-child,
.zone-navigation
.librarywrapper:last-child,
.usa-grid-full .usa-width-two-thirds:last-child,
.usa-grid-full #right-two-thirds:last-child,
.usa-grid-full
#left-two-thirds:last-child,
.usa-grid-full
#right-two-thirds-tile:last-child,
.usa-grid-full
.librarywrapper:last-child {
margin-right: 0; }
.usa-grid .usa-width-one-fourth, #translate .usa-width-one-fourth,
#header .usa-width-one-fourth,
#layout-before-main .usa-width-one-fourth,
#layout-content .usa-width-one-fourth,
#layout-featured .usa-width-one-fourth,
#next .usa-width-one-fourth,
#footer .usa-width-one-fourth,
.zone-navigation .usa-width-one-fourth, .usa-grid #quad-first, #translate #quad-first,
#header #quad-first,
#layout-before-main #quad-first,
#layout-content #quad-first,
#layout-featured #quad-first,
#next #quad-first,
#footer #quad-first,
.zone-navigation #quad-first, .usa-grid
#quad-second, #translate
#quad-second,
#header
#quad-second,
#layout-before-main
#quad-second,
#layout-content
#quad-second,
#layout-featured
#quad-second,
#next
#quad-second,
#footer
#quad-second,
.zone-navigation
#quad-second, .usa-grid
#quad-third, #translate
#quad-third,
#header
#quad-third,
#layout-before-main
#quad-third,
#layout-content
#quad-third,
#layout-featured
#quad-third,
#next
#quad-third,
#footer
#quad-third,
.zone-navigation
#quad-third, .usa-grid
#quad-fourth, #translate
#quad-fourth,
#header
#quad-fourth,
#layout-before-main
#quad-fourth,
#layout-content
#quad-fourth,
#layout-featured
#quad-fourth,
#next
#quad-fourth,
#footer
#quad-fourth,
.zone-navigation
#quad-fourth, .usa-grid
#footer-quad-first, #translate
#footer-quad-first,
#header
#footer-quad-first,
#layout-before-main
#footer-quad-first,
#layout-content
#footer-quad-first,
#layout-featured
#footer-quad-first,
#next
#footer-quad-first,
#footer
#footer-quad-first,
.zone-navigation
#footer-quad-first, .usa-grid
#footer-quad-second, #translate
#footer-quad-second,
#header
#footer-quad-second,
#layout-before-main
#footer-quad-second,
#layout-content
#footer-quad-second,
#layout-featured
#footer-quad-second,
#next
#footer-quad-second,
#footer
#footer-quad-second,
.zone-navigation
#footer-quad-second, .usa-grid
#footer-quad-third, #translate
#footer-quad-third,
#header
#footer-quad-third,
#layout-before-main
#footer-quad-third,
#layout-content
#footer-quad-third,
#layout-featured
#footer-quad-third,
#next
#footer-quad-third,
#footer
#footer-quad-third,
.zone-navigation
#footer-quad-third, .usa-grid
#footer-quad-fourth, #translate
#footer-quad-fourth,
#header
#footer-quad-fourth,
#layout-before-main
#footer-quad-fourth,
#layout-content
#footer-quad-fourth,
#layout-featured
#footer-quad-fourth,
#next
#footer-quad-fourth,
#footer
#footer-quad-fourth,
.zone-navigation
#footer-quad-fourth,
.usa-grid-full .usa-width-one-fourth,
.usa-grid-full #quad-first,
.usa-grid-full
#quad-second,
.usa-grid-full
#quad-third,
.usa-grid-full
#quad-fourth,
.usa-grid-full
#footer-quad-first,
.usa-grid-full
#footer-quad-second,
.usa-grid-full
#footer-quad-third,
.usa-grid-full
#footer-quad-fourth {
float: left;
display: block;
margin-right: 2.35765%;
width: 23.23176%; }
.usa-grid .usa-width-one-fourth:last-child, #translate .usa-width-one-fourth:last-child,
#header .usa-width-one-fourth:last-child,
#layout-before-main .usa-width-one-fourth:last-child,
#layout-content .usa-width-one-fourth:last-child,
#layout-featured .usa-width-one-fourth:last-child,
#next .usa-width-one-fourth:last-child,
#footer .usa-width-one-fourth:last-child,
.zone-navigation .usa-width-one-fourth:last-child, .usa-grid #quad-first:last-child, #translate #quad-first:last-child,
#header #quad-first:last-child,
#layout-before-main #quad-first:last-child,
#layout-content #quad-first:last-child,
#layout-featured #quad-first:last-child,
#next #quad-first:last-child,
#footer #quad-first:last-child,
.zone-navigation #quad-first:last-child, .usa-grid
#quad-second:last-child, #translate
#quad-second:last-child,
#header
#quad-second:last-child,
#layout-before-main
#quad-second:last-child,
#layout-content
#quad-second:last-child,
#layout-featured
#quad-second:last-child,
#next
#quad-second:last-child,
#footer
#quad-second:last-child,
.zone-navigation
#quad-second:last-child, .usa-grid
#quad-third:last-child, #translate
#quad-third:last-child,
#header
#quad-third:last-child,
#layout-before-main
#quad-third:last-child,
#layout-content
#quad-third:last-child,
#layout-featured
#quad-third:last-child,
#next
#quad-third:last-child,
#footer
#quad-third:last-child,
.zone-navigation
#quad-third:last-child, .usa-grid
#quad-fourth:last-child, #translate
#quad-fourth:last-child,
#header
#quad-fourth:last-child,
#layout-before-main
#quad-fourth:last-child,
#layout-content
#quad-fourth:last-child,
#layout-featured
#quad-fourth:last-child,
#next
#quad-fourth:last-child,
#footer
#quad-fourth:last-child,
.zone-navigation
#quad-fourth:last-child, .usa-grid
#footer-quad-first:last-child, #translate
#footer-quad-first:last-child,
#header
#footer-quad-first:last-child,
#layout-before-main
#footer-quad-first:last-child,
#layout-content
#footer-quad-first:last-child,
#layout-featured
#footer-quad-first:last-child,
#next
#footer-quad-first:last-child,
#footer
#footer-quad-first:last-child,
.zone-navigation
#footer-quad-first:last-child, .usa-grid
#footer-quad-second:last-child, #translate
#footer-quad-second:last-child,
#header
#footer-quad-second:last-child,
#layout-before-main
#footer-quad-second:last-child,
#layout-content
#footer-quad-second:last-child,
#layout-featured
#footer-quad-second:last-child,
#next
#footer-quad-second:last-child,
#footer
#footer-quad-second:last-child,
.zone-navigation
#footer-quad-second:last-child, .usa-grid
#footer-quad-third:last-child, #translate
#footer-quad-third:last-child,
#header
#footer-quad-third:last-child,
#layout-before-main
#footer-quad-third:last-child,
#layout-content
#footer-quad-third:last-child,
#layout-featured
#footer-quad-third:last-child,
#next
#footer-quad-third:last-child,
#footer
#footer-quad-third:last-child,
.zone-navigation
#footer-quad-third:last-child, .usa-grid
#footer-quad-fourth:last-child, #translate
#footer-quad-fourth:last-child,
#header
#footer-quad-fourth:last-child,
#layout-before-main
#footer-quad-fourth:last-child,
#layout-content
#footer-quad-fourth:last-child,
#layout-featured
#footer-quad-fourth:last-child,
#next
#footer-quad-fourth:last-child,
#footer
#footer-quad-fourth:last-child,
.zone-navigation
#footer-quad-fourth:last-child,
.usa-grid-full .usa-width-one-fourth:last-child,
.usa-grid-full #quad-first:last-child,
.usa-grid-full
#quad-second:last-child,
.usa-grid-full
#quad-third:last-child,
.usa-grid-full
#quad-fourth:last-child,
.usa-grid-full
#footer-quad-first:last-child,
.usa-grid-full
#footer-quad-second:last-child,
.usa-grid-full
#footer-quad-third:last-child,
.usa-grid-full
#footer-quad-fourth:last-child {
margin-right: 0; }
.usa-grid .usa-width-one-fourth:nth-child(2n), #translate .usa-width-one-fourth:nth-child(2n),
#header .usa-width-one-fourth:nth-child(2n),
#layout-before-main .usa-width-one-fourth:nth-child(2n),
#layout-content .usa-width-one-fourth:nth-child(2n),
#layout-featured .usa-width-one-fourth:nth-child(2n),
#next .usa-width-one-fourth:nth-child(2n),
#footer .usa-width-one-fourth:nth-child(2n),
.zone-navigation .usa-width-one-fourth:nth-child(2n), .usa-grid #quad-first:nth-child(2n), #translate #quad-first:nth-child(2n),
#header #quad-first:nth-child(2n),
#layout-before-main #quad-first:nth-child(2n),
#layout-content #quad-first:nth-child(2n),
#layout-featured #quad-first:nth-child(2n),
#next #quad-first:nth-child(2n),
#footer #quad-first:nth-child(2n),
.zone-navigation #quad-first:nth-child(2n), .usa-grid
#quad-second:nth-child(2n), #translate
#quad-second:nth-child(2n),
#header
#quad-second:nth-child(2n),
#layout-before-main
#quad-second:nth-child(2n),
#layout-content
#quad-second:nth-child(2n),
#layout-featured
#quad-second:nth-child(2n),
#next
#quad-second:nth-child(2n),
#footer
#quad-second:nth-child(2n),
.zone-navigation
#quad-second:nth-child(2n), .usa-grid
#quad-third:nth-child(2n), #translate
#quad-third:nth-child(2n),
#header
#quad-third:nth-child(2n),
#layout-before-main
#quad-third:nth-child(2n),
#layout-content
#quad-third:nth-child(2n),
#layout-featured
#quad-third:nth-child(2n),
#next
#quad-third:nth-child(2n),
#footer
#quad-third:nth-child(2n),
.zone-navigation
#quad-third:nth-child(2n), .usa-grid
#quad-fourth:nth-child(2n), #translate
#quad-fourth:nth-child(2n),
#header
#quad-fourth:nth-child(2n),
#layout-before-main
#quad-fourth:nth-child(2n),
#layout-content
#quad-fourth:nth-child(2n),
#layout-featured
#quad-fourth:nth-child(2n),
#next
#quad-fourth:nth-child(2n),
#footer
#quad-fourth:nth-child(2n),
.zone-navigation
#quad-fourth:nth-child(2n), .usa-grid
#footer-quad-first:nth-child(2n), #translate
#footer-quad-first:nth-child(2n),
#header
#footer-quad-first:nth-child(2n),
#layout-before-main
#footer-quad-first:nth-child(2n),
#layout-content
#footer-quad-first:nth-child(2n),
#layout-featured
#footer-quad-first:nth-child(2n),
#next
#footer-quad-first:nth-child(2n),
#footer
#footer-quad-first:nth-child(2n),
.zone-navigation
#footer-quad-first:nth-child(2n), .usa-grid
#footer-quad-second:nth-child(2n), #translate
#footer-quad-second:nth-child(2n),
#header
#footer-quad-second:nth-child(2n),
#layout-before-main
#footer-quad-second:nth-child(2n),
#layout-content
#footer-quad-second:nth-child(2n),
#layout-featured
#footer-quad-second:nth-child(2n),
#next
#footer-quad-second:nth-child(2n),
#footer
#footer-quad-second:nth-child(2n),
.zone-navigation
#footer-quad-second:nth-child(2n), .usa-grid
#footer-quad-third:nth-child(2n), #translate
#footer-quad-third:nth-child(2n),
#header
#footer-quad-third:nth-child(2n),
#layout-before-main
#footer-quad-third:nth-child(2n),
#layout-content
#footer-quad-third:nth-child(2n),
#layout-featured
#footer-quad-third:nth-child(2n),
#next
#footer-quad-third:nth-child(2n),
#footer
#footer-quad-third:nth-child(2n),
.zone-navigation
#footer-quad-third:nth-child(2n), .usa-grid
#footer-quad-fourth:nth-child(2n), #translate
#footer-quad-fourth:nth-child(2n),
#header
#footer-quad-fourth:nth-child(2n),
#layout-before-main
#footer-quad-fourth:nth-child(2n),
#layout-content
#footer-quad-fourth:nth-child(2n),
#layout-featured
#footer-quad-fourth:nth-child(2n),
#next
#footer-quad-fourth:nth-child(2n),
#footer
#footer-quad-fourth:nth-child(2n),
.zone-navigation
#footer-quad-fourth:nth-child(2n),
.usa-grid-full .usa-width-one-fourth:nth-child(2n),
.usa-grid-full #quad-first:nth-child(2n),
.usa-grid-full
#quad-second:nth-child(2n),
.usa-grid-full
#quad-third:nth-child(2n),
.usa-grid-full
#quad-fourth:nth-child(2n),
.usa-grid-full
#footer-quad-first:nth-child(2n),
.usa-grid-full
#footer-quad-second:nth-child(2n),
.usa-grid-full
#footer-quad-third:nth-child(2n),
.usa-grid-full
#footer-quad-fourth:nth-child(2n) {
float: left;
display: block;
margin-right: 2.35765%;
width: 23.23176%; }
.usa-grid .usa-width-one-fourth:nth-child(2n):last-child, #translate .usa-width-one-fourth:nth-child(2n):last-child,
#header .usa-width-one-fourth:nth-child(2n):last-child,
#layout-before-main .usa-width-one-fourth:nth-child(2n):last-child,
#layout-content .usa-width-one-fourth:nth-child(2n):last-child,
#layout-featured .usa-width-one-fourth:nth-child(2n):last-child,
#next .usa-width-one-fourth:nth-child(2n):last-child,
#footer .usa-width-one-fourth:nth-child(2n):last-child,
.zone-navigation .usa-width-one-fourth:nth-child(2n):last-child, .usa-grid #quad-first:nth-child(2n):last-child, #translate #quad-first:nth-child(2n):last-child,
#header #quad-first:nth-child(2n):last-child,
#layout-before-main #quad-first:nth-child(2n):last-child,
#layout-content #quad-first:nth-child(2n):last-child,
#layout-featured #quad-first:nth-child(2n):last-child,
#next #quad-first:nth-child(2n):last-child,
#footer #quad-first:nth-child(2n):last-child,
.zone-navigation #quad-first:nth-child(2n):last-child, .usa-grid
#quad-second:nth-child(2n):last-child, #translate
#quad-second:nth-child(2n):last-child,
#header
#quad-second:nth-child(2n):last-child,
#layout-before-main
#quad-second:nth-child(2n):last-child,
#layout-content
#quad-second:nth-child(2n):last-child,
#layout-featured
#quad-second:nth-child(2n):last-child,
#next
#quad-second:nth-child(2n):last-child,
#footer
#quad-second:nth-child(2n):last-child,
.zone-navigation
#quad-second:nth-child(2n):last-child, .usa-grid
#quad-third:nth-child(2n):last-child, #translate
#quad-third:nth-child(2n):last-child,
#header
#quad-third:nth-child(2n):last-child,
#layout-before-main
#quad-third:nth-child(2n):last-child,
#layout-content
#quad-third:nth-child(2n):last-child,
#layout-featured
#quad-third:nth-child(2n):last-child,
#next
#quad-third:nth-child(2n):last-child,
#footer
#quad-third:nth-child(2n):last-child,
.zone-navigation
#quad-third:nth-child(2n):last-child, .usa-grid
#quad-fourth:nth-child(2n):last-child, #translate
#quad-fourth:nth-child(2n):last-child,
#header
#quad-fourth:nth-child(2n):last-child,
#layout-before-main
#quad-fourth:nth-child(2n):last-child,
#layout-content
#quad-fourth:nth-child(2n):last-child,
#layout-featured
#quad-fourth:nth-child(2n):last-child,
#next
#quad-fourth:nth-child(2n):last-child,
#footer
#quad-fourth:nth-child(2n):last-child,
.zone-navigation
#quad-fourth:nth-child(2n):last-child, .usa-grid
#footer-quad-first:nth-child(2n):last-child, #translate
#footer-quad-first:nth-child(2n):last-child,
#header
#footer-quad-first:nth-child(2n):last-child,
#layout-before-main
#footer-quad-first:nth-child(2n):last-child,
#layout-content
#footer-quad-first:nth-child(2n):last-child,
#layout-featured
#footer-quad-first:nth-child(2n):last-child,
#next
#footer-quad-first:nth-child(2n):last-child,
#footer
#footer-quad-first:nth-child(2n):last-child,
.zone-navigation
#footer-quad-first:nth-child(2n):last-child, .usa-grid
#footer-quad-second:nth-child(2n):last-child, #translate
#footer-quad-second:nth-child(2n):last-child,
#header
#footer-quad-second:nth-child(2n):last-child,
#layout-before-main
#footer-quad-second:nth-child(2n):last-child,
#layout-content
#footer-quad-second:nth-child(2n):last-child,
#layout-featured
#footer-quad-second:nth-child(2n):last-child,
#next
#footer-quad-second:nth-child(2n):last-child,
#footer
#footer-quad-second:nth-child(2n):last-child,
.zone-navigation
#footer-quad-second:nth-child(2n):last-child, .usa-grid
#footer-quad-third:nth-child(2n):last-child, #translate
#footer-quad-third:nth-child(2n):last-child,
#header
#footer-quad-third:nth-child(2n):last-child,
#layout-before-main
#footer-quad-third:nth-child(2n):last-child,
#layout-content
#footer-quad-third:nth-child(2n):last-child,
#layout-featured
#footer-quad-third:nth-child(2n):last-child,
#next
#footer-quad-third:nth-child(2n):last-child,
#footer
#footer-quad-third:nth-child(2n):last-child,
.zone-navigation
#footer-quad-third:nth-child(2n):last-child, .usa-grid
#footer-quad-fourth:nth-child(2n):last-child, #translate
#footer-quad-fourth:nth-child(2n):last-child,
#header
#footer-quad-fourth:nth-child(2n):last-child,
#layout-before-main
#footer-quad-fourth:nth-child(2n):last-child,
#layout-content
#footer-quad-fourth:nth-child(2n):last-child,
#layout-featured
#footer-quad-fourth:nth-child(2n):last-child,
#next
#footer-quad-fourth:nth-child(2n):last-child,
#footer
#footer-quad-fourth:nth-child(2n):last-child,
.zone-navigation
#footer-quad-fourth:nth-child(2n):last-child,
.usa-grid-full .usa-width-one-fourth:nth-child(2n):last-child,
.usa-grid-full #quad-first:nth-child(2n):last-child,
.usa-grid-full
#quad-second:nth-child(2n):last-child,
.usa-grid-full
#quad-third:nth-child(2n):last-child,
.usa-grid-full
#quad-fourth:nth-child(2n):last-child,
.usa-grid-full
#footer-quad-first:nth-child(2n):last-child,
.usa-grid-full
#footer-quad-second:nth-child(2n):last-child,
.usa-grid-full
#footer-quad-third:nth-child(2n):last-child,
.usa-grid-full
#footer-quad-fourth:nth-child(2n):last-child {
margin-right: 0; }
.usa-grid .usa-width-one-fourth:nth-child(4n), #translate .usa-width-one-fourth:nth-child(4n),
#header .usa-width-one-fourth:nth-child(4n),
#layout-before-main .usa-width-one-fourth:nth-child(4n),
#layout-content .usa-width-one-fourth:nth-child(4n),
#layout-featured .usa-width-one-fourth:nth-child(4n),
#next .usa-width-one-fourth:nth-child(4n),
#footer .usa-width-one-fourth:nth-child(4n),
.zone-navigation .usa-width-one-fourth:nth-child(4n), .usa-grid #quad-first:nth-child(4n), #translate #quad-first:nth-child(4n),
#header #quad-first:nth-child(4n),
#layout-before-main #quad-first:nth-child(4n),
#layout-content #quad-first:nth-child(4n),
#layout-featured #quad-first:nth-child(4n),
#next #quad-first:nth-child(4n),
#footer #quad-first:nth-child(4n),
.zone-navigation #quad-first:nth-child(4n), .usa-grid
#quad-second:nth-child(4n), #translate
#quad-second:nth-child(4n),
#header
#quad-second:nth-child(4n),
#layout-before-main
#quad-second:nth-child(4n),
#layout-content
#quad-second:nth-child(4n),
#layout-featured
#quad-second:nth-child(4n),
#next
#quad-second:nth-child(4n),
#footer
#quad-second:nth-child(4n),
.zone-navigation
#quad-second:nth-child(4n), .usa-grid
#quad-third:nth-child(4n), #translate
#quad-third:nth-child(4n),
#header
#quad-third:nth-child(4n),
#layout-before-main
#quad-third:nth-child(4n),
#layout-content
#quad-third:nth-child(4n),
#layout-featured
#quad-third:nth-child(4n),
#next
#quad-third:nth-child(4n),
#footer
#quad-third:nth-child(4n),
.zone-navigation
#quad-third:nth-child(4n), .usa-grid
#quad-fourth:nth-child(4n), #translate
#quad-fourth:nth-child(4n),
#header
#quad-fourth:nth-child(4n),
#layout-before-main
#quad-fourth:nth-child(4n),
#layout-content
#quad-fourth:nth-child(4n),
#layout-featured
#quad-fourth:nth-child(4n),
#next
#quad-fourth:nth-child(4n),
#footer
#quad-fourth:nth-child(4n),
.zone-navigation
#quad-fourth:nth-child(4n), .usa-grid
#footer-quad-first:nth-child(4n), #translate
#footer-quad-first:nth-child(4n),
#header
#footer-quad-first:nth-child(4n),
#layout-before-main
#footer-quad-first:nth-child(4n),
#layout-content
#footer-quad-first:nth-child(4n),
#layout-featured
#footer-quad-first:nth-child(4n),
#next
#footer-quad-first:nth-child(4n),
#footer
#footer-quad-first:nth-child(4n),
.zone-navigation
#footer-quad-first:nth-child(4n), .usa-grid
#footer-quad-second:nth-child(4n), #translate
#footer-quad-second:nth-child(4n),
#header
#footer-quad-second:nth-child(4n),
#layout-before-main
#footer-quad-second:nth-child(4n),
#layout-content
#footer-quad-second:nth-child(4n),
#layout-featured
#footer-quad-second:nth-child(4n),
#next
#footer-quad-second:nth-child(4n),
#footer
#footer-quad-second:nth-child(4n),
.zone-navigation
#footer-quad-second:nth-child(4n), .usa-grid
#footer-quad-third:nth-child(4n), #translate
#footer-quad-third:nth-child(4n),
#header
#footer-quad-third:nth-child(4n),
#layout-before-main
#footer-quad-third:nth-child(4n),
#layout-content
#footer-quad-third:nth-child(4n),
#layout-featured
#footer-quad-third:nth-child(4n),
#next
#footer-quad-third:nth-child(4n),
#footer
#footer-quad-third:nth-child(4n),
.zone-navigation
#footer-quad-third:nth-child(4n), .usa-grid
#footer-quad-fourth:nth-child(4n), #translate
#footer-quad-fourth:nth-child(4n),
#header
#footer-quad-fourth:nth-child(4n),
#layout-before-main
#footer-quad-fourth:nth-child(4n),
#layout-content
#footer-quad-fourth:nth-child(4n),
#layout-featured
#footer-quad-fourth:nth-child(4n),
#next
#footer-quad-fourth:nth-child(4n),
#footer
#footer-quad-fourth:nth-child(4n),
.zone-navigation
#footer-quad-fourth:nth-child(4n),
.usa-grid-full .usa-width-one-fourth:nth-child(4n),
.usa-grid-full #quad-first:nth-child(4n),
.usa-grid-full
#quad-second:nth-child(4n),
.usa-grid-full
#quad-third:nth-child(4n),
.usa-grid-full
#quad-fourth:nth-child(4n),
.usa-grid-full
#footer-quad-first:nth-child(4n),
.usa-grid-full
#footer-quad-second:nth-child(4n),
.usa-grid-full
#footer-quad-third:nth-child(4n),
.usa-grid-full
#footer-quad-fourth:nth-child(4n) {
margin-right: 0; }
.usa-grid .usa-width-three-fourths, #translate .usa-width-three-fourths,
#header .usa-width-three-fourths,
#layout-before-main .usa-width-three-fourths,
#layout-content .usa-width-three-fourths,
#layout-featured .usa-width-three-fourths,
#next .usa-width-three-fourths,
#footer .usa-width-three-fourths,
.zone-navigation .usa-width-three-fourths,
.usa-grid-full .usa-width-three-fourths {
float: left;
display: block;
margin-right: 2.35765%;
width: 74.41059%; }
.usa-grid .usa-width-three-fourths:last-child, #translate .usa-width-three-fourths:last-child,
#header .usa-width-three-fourths:last-child,
#layout-before-main .usa-width-three-fourths:last-child,
#layout-content .usa-width-three-fourths:last-child,
#layout-featured .usa-width-three-fourths:last-child,
#next .usa-width-three-fourths:last-child,
#footer .usa-width-three-fourths:last-child,
.zone-navigation .usa-width-three-fourths:last-child,
.usa-grid-full .usa-width-three-fourths:last-child {
margin-right: 0; }
.usa-grid .usa-width-one-sixth, #translate .usa-width-one-sixth,
#header .usa-width-one-sixth,
#layout-before-main .usa-width-one-sixth,
#layout-content .usa-width-one-sixth,
#layout-featured .usa-width-one-sixth,
#next .usa-width-one-sixth,
#footer .usa-width-one-sixth,
.zone-navigation .usa-width-one-sixth,
.usa-grid-full .usa-width-one-sixth {
float: left;
display: block;
margin-right: 2.35765%;
width: 14.70196%; }
.usa-grid .usa-width-one-sixth:last-child, #translate .usa-width-one-sixth:last-child,
#header .usa-width-one-sixth:last-child,
#layout-before-main .usa-width-one-sixth:last-child,
#layout-content .usa-width-one-sixth:last-child,
#layout-featured .usa-width-one-sixth:last-child,
#next .usa-width-one-sixth:last-child,
#footer .usa-width-one-sixth:last-child,
.zone-navigation .usa-width-one-sixth:last-child,
.usa-grid-full .usa-width-one-sixth:last-child {
margin-right: 0; }
.usa-grid .usa-width-one-sixth:nth-child(3n), #translate .usa-width-one-sixth:nth-child(3n),
#header .usa-width-one-sixth:nth-child(3n),
#layout-before-main .usa-width-one-sixth:nth-child(3n),
#layout-content .usa-width-one-sixth:nth-child(3n),
#layout-featured .usa-width-one-sixth:nth-child(3n),
#next .usa-width-one-sixth:nth-child(3n),
#footer .usa-width-one-sixth:nth-child(3n),
.zone-navigation .usa-width-one-sixth:nth-child(3n),
.usa-grid-full .usa-width-one-sixth:nth-child(3n) {
float: left;
display: block;
margin-right: 2.35765%;
width: 14.70196%; }
.usa-grid .usa-width-one-sixth:nth-child(3n):last-child, #translate .usa-width-one-sixth:nth-child(3n):last-child,
#header .usa-width-one-sixth:nth-child(3n):last-child,
#layout-before-main .usa-width-one-sixth:nth-child(3n):last-child,
#layout-content .usa-width-one-sixth:nth-child(3n):last-child,
#layout-featured .usa-width-one-sixth:nth-child(3n):last-child,
#next .usa-width-one-sixth:nth-child(3n):last-child,
#footer .usa-width-one-sixth:nth-child(3n):last-child,
.zone-navigation .usa-width-one-sixth:nth-child(3n):last-child,
.usa-grid-full .usa-width-one-sixth:nth-child(3n):last-child {
margin-right: 0; }
.usa-grid .usa-width-one-sixth:nth-child(6n), #translate .usa-width-one-sixth:nth-child(6n),
#header .usa-width-one-sixth:nth-child(6n),
#layout-before-main .usa-width-one-sixth:nth-child(6n),
#layout-content .usa-width-one-sixth:nth-child(6n),
#layout-featured .usa-width-one-sixth:nth-child(6n),
#next .usa-width-one-sixth:nth-child(6n),
#footer .usa-width-one-sixth:nth-child(6n),
.zone-navigation .usa-width-one-sixth:nth-child(6n),
.usa-grid-full .usa-width-one-sixth:nth-child(6n) {
margin-right: 0; }
.usa-grid .usa-width-five-sixths, #translate .usa-width-five-sixths,
#header .usa-width-five-sixths,
#layout-before-main .usa-width-five-sixths,
#layout-content .usa-width-five-sixths,
#layout-featured .usa-width-five-sixths,
#next .usa-width-five-sixths,
#footer .usa-width-five-sixths,
.zone-navigation .usa-width-five-sixths,
.usa-grid-full .usa-width-five-sixths {
float: left;
display: block;
margin-right: 2.35765%;
width: 82.94039%; }
.usa-grid .usa-width-five-sixths:last-child, #translate .usa-width-five-sixths:last-child,
#header .usa-width-five-sixths:last-child,
#layout-before-main .usa-width-five-sixths:last-child,
#layout-content .usa-width-five-sixths:last-child,
#layout-featured .usa-width-five-sixths:last-child,
#next .usa-width-five-sixths:last-child,
#footer .usa-width-five-sixths:last-child,
.zone-navigation .usa-width-five-sixths:last-child,
.usa-grid-full .usa-width-five-sixths:last-child {
margin-right: 0; }
.usa-grid .usa-width-one-twelfth, #translate .usa-width-one-twelfth,
#header .usa-width-one-twelfth,
#layout-before-main .usa-width-one-twelfth,
#layout-content .usa-width-one-twelfth,
#layout-featured .usa-width-one-twelfth,
#next .usa-width-one-twelfth,
#footer .usa-width-one-twelfth,
.zone-navigation .usa-width-one-twelfth,
.usa-grid-full .usa-width-one-twelfth {
float: left;
display: block;
margin-right: 2.35765%;
width: 6.17215%; }
.usa-grid .usa-width-one-twelfth:last-child, #translate .usa-width-one-twelfth:last-child,
#header .usa-width-one-twelfth:last-child,
#layout-before-main .usa-width-one-twelfth:last-child,
#layout-content .usa-width-one-twelfth:last-child,
#layout-featured .usa-width-one-twelfth:last-child,
#next .usa-width-one-twelfth:last-child,
#footer .usa-width-one-twelfth:last-child,
.zone-navigation .usa-width-one-twelfth:last-child,
.usa-grid-full .usa-width-one-twelfth:last-child {
margin-right: 0; }
.usa-grid .usa-width-one-twelfth:nth-child(3n), #translate .usa-width-one-twelfth:nth-child(3n),
#header .usa-width-one-twelfth:nth-child(3n),
#layout-before-main .usa-width-one-twelfth:nth-child(3n),
#layout-content .usa-width-one-twelfth:nth-child(3n),
#layout-featured .usa-width-one-twelfth:nth-child(3n),
#next .usa-width-one-twelfth:nth-child(3n),
#footer .usa-width-one-twelfth:nth-child(3n),
.zone-navigation .usa-width-one-twelfth:nth-child(3n),
.usa-grid-full .usa-width-one-twelfth:nth-child(3n) {
float: left;
display: block;
margin-right: 2.35765%;
width: 6.17215%; }
.usa-grid .usa-width-one-twelfth:nth-child(3n):last-child, #translate .usa-width-one-twelfth:nth-child(3n):last-child,
#header .usa-width-one-twelfth:nth-child(3n):last-child,
#layout-before-main .usa-width-one-twelfth:nth-child(3n):last-child,
#layout-content .usa-width-one-twelfth:nth-child(3n):last-child,
#layout-featured .usa-width-one-twelfth:nth-child(3n):last-child,
#next .usa-width-one-twelfth:nth-child(3n):last-child,
#footer .usa-width-one-twelfth:nth-child(3n):last-child,
.zone-navigation .usa-width-one-twelfth:nth-child(3n):last-child,
.usa-grid-full .usa-width-one-twelfth:nth-child(3n):last-child {
margin-right: 0; }
.usa-grid .usa-width-one-twelfth:nth-child(12n), #translate .usa-width-one-twelfth:nth-child(12n),
#header .usa-width-one-twelfth:nth-child(12n),
#layout-before-main .usa-width-one-twelfth:nth-child(12n),
#layout-content .usa-width-one-twelfth:nth-child(12n),
#layout-featured .usa-width-one-twelfth:nth-child(12n),
#next .usa-width-one-twelfth:nth-child(12n),
#footer .usa-width-one-twelfth:nth-child(12n),
.zone-navigation .usa-width-one-twelfth:nth-child(12n),
.usa-grid-full .usa-width-one-twelfth:nth-child(12n) {
margin-right: 0; } }
.usa-grid .usa-end-row, #translate .usa-end-row,
#header .usa-end-row,
#layout-before-main .usa-end-row,
#layout-content .usa-end-row,
#layout-featured .usa-end-row,
#next .usa-end-row,
#footer .usa-end-row,
.zone-navigation .usa-end-row,
.usa-grid-full .usa-end-row {
margin-right: 0; }
.usa-grid, #translate,
#header,
#layout-before-main,
#layout-content,
#layout-featured,
#next,
#footer,
.zone-navigation {
padding: 0 2rem; }
.usa-grid-full {
padding: 0; }
.usa-sr-only {
position: absolute;
left: -999em; }
html {
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif;
font-size: 10px; }
body {
font-size: 1.7rem; }
p {
line-height: 1.5;
margin-top: 0;
margin-bottom: 1em; }
a {
color: #1a325d;
text-decoration: none; }
a:hover, a:active {
color: #1a325d;
text-decoration: underline; }
a:visited {
color: #1a325d; }
a:focus {
box-shadow: none;
outline: 0; }
p {
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif; }
h1 {
color: #333; }
h2, h3, h4, h5, h6 {
color: #333; }
h1, h2, h3, h4, h5, h6 {
text-transform: uppercase;
clear: both;
line-height: 1.3;
margin-top: .9em;
margin-bottom: .5em; }
h1, h3 {
font-family: "Trenda", "Helvetica", "Arial", sans-serif; }
h2, h4, h5, h6 {
font-family: "Trenda", "Helvetica", "Arial", sans-serif; }
hr {
border-top: 1px solid #333;
border-bottom: 1px solid transparent;
border-left: 1px solid transparent;
border-right: 1px solid transparent;
margin: 1em 0; }
b, strong {
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif !important; }
em {
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif; }
h1 {
font-size: 3rem;
font-weight: 400; }
@media screen and (max-width: 481px) {
h1 {
font-size: 3rem; } }
.widget h1 {
font-size: 3rem;
font-weight: 400; }
@media screen and (max-width: 481px) {
.widget h1 {
font-size: 2.8rem; } }
h2 {
font-size: 2.2rem;
font-weight: 400; }
h3 {
font-size: 2rem;
font-weight: 400; }
h4 {
font-size: 1.7rem;
font-weight: 400; }
h5 {
font-size: 1.5rem;
font-weight: 400; }
h6 {
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif;
font-size: 1.3rem;
font-weight: 400;
text-transform: uppercase; }
cite,
var,
address,
dfn {
font-style: normal; }
.usa-content p {
max-width: 53rem; }
.usa-content-list {
max-width: 53rem; }
p a,
.usa-content-list a {
text-decoration: underline; }
.usa-sans p,
.usa-sans a,
.usa-sans li,
.usa-sans span {
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif; }
.usa-serif p,
.usa-serif a,
.usa-serif li,
.usa-serif span {
font-family: "Merriweather", "Georgia", "Times New Roman", serif; }
.usa-sans a {
border-bottom: none;
font-weight: 600; }
.usa-display {
font-size: 2rem;
font-weight: 400;
margin-bottom: 0; }
@media screen and (min-width: 481px) {
.usa-display {
font-size: 3rem;
font-weight: 400; } }
@media screen and (min-width: 727px) {
.usa-display {
font-size: 5.2rem;
font-weight: 400; } }
.usa-font-lead {
font-size: 2rem;
font-family: "Merriweather", "Georgia", "Times New Roman", serif;
line-height: 1.7; }
.usa-image-block {
position: relative; }
.usa-image-text-block {
color: #ffffff;
left: 0;
margin-left: 8%;
position: absolute;
top: 0; }
.usa-image-text {
margin-top: 0; }
.usa-drop_text {
margin-bottom: 0; }
.usa-background-dark {
background-color: #323a45; }
.usa-background-dark p, .usa-background-dark span {
color: #ffffff; }
.usa-background-dark a {
color: #d6d7d9; }
.usa-background-dark a:hover {
color: #ffffff; }
.usa-text-small {
font-size: 1.3rem;
margin-top: 0; }
/*Orchard*/
.page-header > h1 {
margin: 0;
line-height: 1em; }
article.widget h2:first-child, article.widget h3:first-child, article.widget h4:first-child, article.widget h5:first-child, article.widget h6:first-child {
margin-top: 0; }
.has_caption {
font-size: 1.4rem;
line-height: 1.3em; }
.zone .alert {
margin-bottom: 15px; }
.caption {
margin-top: 3px;
padding-top: 0;
font-size: 16px;
color: #5f5f5f;
margin-bottom: 15px;
line-height: 1.2; }
/* This stylesheet generated by Transfonter (https://transfonter.org) on February 25, 2017 6:21 AM */
@font-face {
font-family: 'Trenda Semibold It';
src: url("fonts/Trenda-SemiboldIt.eot");
src: url("fonts/Trenda-SemiboldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-SemiboldIt.woff") format("woff"), url("fonts/Trenda-SemiboldIt.ttf") format("truetype");
font-weight: 600;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Heavy.eot");
src: url("fonts/Trenda-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Heavy.woff") format("woff"), url("fonts/Trenda-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Semibold.eot");
src: url("fonts/Trenda-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Semibold.woff") format("woff"), url("fonts/Trenda-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Heavy It';
src: url("fonts/Trenda-HeavyIt.eot");
src: url("fonts/Trenda-HeavyIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-HeavyIt.woff") format("woff"), url("fonts/Trenda-HeavyIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Semibold.eot");
src: url("fonts/SanFranciscoText-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Semibold.woff") format("woff"), url("fonts/SanFranciscoText-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda ExtraLight It';
src: url("fonts/Trenda-ExtraLightIt.eot");
src: url("fonts/Trenda-ExtraLightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLightIt.woff") format("woff"), url("fonts/Trenda-ExtraLightIt.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Thin.eot");
src: url("fonts/Trenda-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Thin.woff") format("woff"), url("fonts/Trenda-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Heavy.eot");
src: url("fonts/SanFranciscoDisplay-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Heavy.woff") format("woff"), url("fonts/SanFranciscoDisplay-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Medium.eot");
src: url("fonts/SanFranciscoDisplay-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Medium.woff") format("woff"), url("fonts/SanFranciscoDisplay-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Gotham Condensed';
src: url("fonts/GothamCondensed-Bold.eot");
src: url("fonts/GothamCondensed-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/GothamCondensed-Bold.woff") format("woff"), url("fonts/GothamCondensed-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'Trenda Black It';
src: url("fonts/Trenda-BlackIt.eot");
src: url("fonts/Trenda-BlackIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BlackIt.woff") format("woff"), url("fonts/Trenda-BlackIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda Thin It';
src: url("fonts/Trenda-ThinIt.eot");
src: url("fonts/Trenda-ThinIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ThinIt.woff") format("woff"), url("fonts/Trenda-ThinIt.ttf") format("truetype");
font-weight: 100;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Semibold.eot");
src: url("fonts/SanFranciscoDisplay-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Semibold.woff") format("woff"), url("fonts/SanFranciscoDisplay-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Bold It';
src: url("fonts/Trenda-BoldIt.eot");
src: url("fonts/Trenda-BoldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BoldIt.woff") format("woff"), url("fonts/Trenda-BoldIt.ttf") format("truetype");
font-weight: bold;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Thin.eot");
src: url("fonts/SanFranciscoText-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Thin.woff") format("woff"), url("fonts/SanFranciscoText-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda Light It';
src: url("fonts/Trenda-LightIt.eot");
src: url("fonts/Trenda-LightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-LightIt.woff") format("woff"), url("fonts/Trenda-LightIt.ttf") format("truetype");
font-weight: 300;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Heavy.eot");
src: url("fonts/SanFranciscoText-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Heavy.woff") format("woff"), url("fonts/SanFranciscoText-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Italic.eot");
src: url("fonts/SanFranciscoText-Italic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Italic.woff") format("woff"), url("fonts/SanFranciscoText-Italic.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Light.eot");
src: url("fonts/SanFranciscoDisplay-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Light.woff") format("woff"), url("fonts/SanFranciscoDisplay-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Ultralight.eot");
src: url("fonts/SanFranciscoDisplay-Ultralight.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Ultralight.woff") format("woff"), url("fonts/SanFranciscoDisplay-Ultralight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Medium.eot");
src: url("fonts/SanFranciscoText-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Medium.woff") format("woff"), url("fonts/SanFranciscoText-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-ExtraLight.eot");
src: url("fonts/Trenda-ExtraLight.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLight.woff") format("woff"), url("fonts/Trenda-ExtraLight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Regular.eot");
src: url("fonts/SanFranciscoText-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Regular.woff") format("woff"), url("fonts/SanFranciscoText-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Thin.eot");
src: url("fonts/SanFranciscoDisplay-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Thin.woff") format("woff"), url("fonts/SanFranciscoDisplay-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Regular.eot");
src: url("fonts/Trenda-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Regular.woff") format("woff"), url("fonts/Trenda-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-HeavyItalic.eot");
src: url("fonts/SanFranciscoText-HeavyItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-HeavyItalic.woff") format("woff"), url("fonts/SanFranciscoText-HeavyItalic.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Light.eot");
src: url("fonts/Trenda-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Light.woff") format("woff"), url("fonts/Trenda-Light.ttf") format("truetype");
font-weight: 300;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Bold.eot");
src: url("fonts/Trenda-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Bold.woff") format("woff"), url("fonts/Trenda-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-LightItalic.eot");
src: url("fonts/SanFranciscoText-LightItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-LightItalic.woff") format("woff"), url("fonts/SanFranciscoText-LightItalic.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Regular.eot");
src: url("fonts/SanFranciscoDisplay-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Regular.woff") format("woff"), url("fonts/SanFranciscoDisplay-Regular.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Black.eot");
src: url("fonts/Trenda-Black.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Black.woff") format("woff"), url("fonts/Trenda-Black.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Light.eot");
src: url("fonts/SanFranciscoText-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Light.woff") format("woff"), url("fonts/SanFranciscoText-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda It';
src: url("fonts/Trenda-RegularIt.eot");
src: url("fonts/Trenda-RegularIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-RegularIt.woff") format("woff"), url("fonts/Trenda-RegularIt.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
/*---------------------------------------------------
OCC Theme
----------------------------------------------------*/
/*header and footer backgrounds*/
/*#f1f1f1;*/
/*menu*/
/*buttons*/
/*translate*/
/*headings*/
/*links*/
/*---------------------------------------------------
----------------------------------------------------*/
ul, ol {
margin-top: 1em;
margin-bottom: 1em; }
ul li, ol li {
line-height: 1.2em;
margin-top: .5em;
margin-bottom: .5em; }
h1 + ul,
h1 + ol, h2 + ul,
h2 + ol, h3 + ul,
h3 + ol, h4 + ul,
h4 + ol, h5 + ul,
h5 + ol, h6 + ul,
h6 + ol, p + ul,
p + ol {
margin-top: 0;
margin-bottom: 1em; }
ul, ol {
padding-left: 40px;
display: block; }
ul > ul, ul > ol, ol > ul, ol > ol {
margin: .5em 0; }
ul li:after, ol li:after {
content: "";
display: block;
margin-bottom: 0; }
ul {
list-style-type: disc; }
ol {
list-style-type: decimal; }
ul li {
display: list-item; }
ol li {
display: list-item;
counter-increment: table-ol; }
li {
margin: 0; }
ul.menu-main-menu {
display: inline; }
.usa-unstyled-list {
margin: 0;
padding: 0;
list-style-type: none; }
.usa-unstyled-list li {
display: list-item;
margin: 0; }
.usa-unstyled-list li:before {
display: none; }
.usa-unstyled-list li:after {
display: none; }
div.zone > ul.comments {
padding-left: 0; }
ul.comments {
list-style: none;
list-style-type: none; }
input,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="search"],
input[type="file"],
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="time"],
input[type="week"],
textarea,
select {
border: 1px solid #5b616b;
border-radius: 0;
box-sizing: border-box;
color: #000;
display: block;
font-size: 1.7rem;
margin: .2em 0;
max-width: 46rem;
width: 100%;
outline: none;
padding: 1rem .7em;
appearance: none; }
input:focus, input.usa-input-focus,
input[type="text"]:focus,
input[type="text"].usa-input-focus,
input[type="email"]:focus,
input[type="email"].usa-input-focus,
input[type="password"]:focus,
input[type="password"].usa-input-focus,
input[type="url"]:focus,
input[type="url"].usa-input-focus,
input[type="tel"]:focus,
input[type="tel"].usa-input-focus,
input[type="number"]:focus,
input[type="number"].usa-input-focus,
input[type="search"]:focus,
input[type="search"].usa-input-focus,
input[type="file"]:focus,
input[type="file"].usa-input-focus,
input[type="date"]:focus,
input[type="date"].usa-input-focus,
input[type="datetime-local"]:focus,
input[type="datetime-local"].usa-input-focus,
input[type="month"]:focus,
input[type="month"].usa-input-focus,
input[type="time"]:focus,
input[type="time"].usa-input-focus,
input[type="week"]:focus,
input[type="week"].usa-input-focus,
textarea:focus,
textarea.usa-input-focus,
select:focus,
select.usa-input-focus {
box-shadow: 0 0 3px #3e94cf, 0 0 7px #3e94cf; }
input.usa-input-success,
input[type="text"].usa-input-success,
input[type="email"].usa-input-success,
input[type="password"].usa-input-success,
input[type="url"].usa-input-success,
input[type="tel"].usa-input-success,
input[type="number"].usa-input-success,
input[type="search"].usa-input-success,
input[type="file"].usa-input-success,
input[type="date"].usa-input-success,
input[type="datetime-local"].usa-input-success,
input[type="month"].usa-input-success,
input[type="time"].usa-input-success,
input[type="week"].usa-input-success,
textarea.usa-input-success,
select.usa-input-success {
border: 3px solid #4aa564; }
.usa-input-error {
border-left: 4px solid #cd2026;
margin-top: 3rem;
padding-bottom: .8rem;
padding-left: 1.5rem;
padding-top: .8rem;
position: relative;
right: 1.9rem; }
.usa-input-error input {
border: 3px solid #cd2026;
width: calc(100% + 1.5rem); }
.usa-input-error label {
margin-top: 0; }
.usa-input-error-label {
display: block;
font-size: 1.7rem;
font-weight: 600; }
.usa-input-error-message {
color: #cd2026;
display: block;
font-size: 1.7rem;
font-weight: 600;
padding-bottom: 3px;
padding-top: 3px; }
label {
display: block;
margin-top: 3rem;
max-width: 46rem;
font-weight: normal; }
textarea {
height: 25rem; }
select {
-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
background-color: #ffffff;
background-image: url("../img/arrow-down.png");
background-image: url("../img/arrow-down.svg");
background-position: right 1.3rem center;
background-repeat: no-repeat;
background-size: 1.3rem; }
legend {
font-size: 2.2rem;
font-weight: normal; }
.usa-fieldset-inputs label {
margin-top: 0; }
.usa-form-hint {
color: #757575;
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif;
margin-bottom: 0; }
/**
* Custom checkboxes
*/
input[type="checkbox"],
input[type="radio"] {
position: absolute;
left: -999em;
width: 20px !important;
height: 20px !important; }
input[type="checkbox"] + label,
input[type="radio"] + label {
cursor: pointer;
font-weight: 400;
margin-bottom: 0.5em;
display: inline;
position: relative;
top: -3px; }
input[type=range] {
-webkit-appearance: none;
border: none;
padding-left: 0;
width: 100%; }
input[type=range]:focus {
box-shadow: none;
outline: none; }
input[type=range]::-webkit-slider-runnable-track {
background: #bdbdbd;
border: 1px solid #757575;
cursor: pointer;
height: 1.2rem;
width: 100%; }
input[type=range]::-moz-range-track {
background: #0071bc;
border: 1px solid #757575;
cursor: pointer;
height: 1.2rem;
width: 100%; }
input[type=range]::-ms-track {
background: transparent;
color: transparent;
cursor: pointer;
height: 1.2rem;
width: 100%; }
input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
border: 1px solid #757575;
height: 2.2rem;
border-radius: 1.5rem;
background: #eeeeee;
cursor: pointer;
margin-top: -.65rem;
width: 2.2rem; }
input[type=range]::-moz-range-thumb {
background: #eeeeee;
border: 1px solid #757575;
border-radius: 1.5rem;
cursor: pointer;
height: 2.2rem;
width: 2.2rem; }
input[type=range]::-ms-thumb {
background: #eeeeee;
border: 1px solid #757575;
border-radius: 1.5rem;
cursor: pointer;
height: 2.2rem;
width: 2.2rem; }
input[type=range]::-ms-fill-lower {
background: #bdbdbd;
border: 1px solid #757575;
border-radius: 2rem; }
input[type=range]::-ms-fill-upper {
background: #bdbdbd;
border: 1px solid #757575;
border-radius: 2rem; }
input[type=range]:focus::-webkit-slider-thumb {
border: 2px solid #3e94cf; }
input[type=range]:focus::-moz-range-thumb {
border: 2px solid #3e94cf; }
input[type=range]:focus::-ms-thumb {
border: 2px solid #3e94cf; }
.usa-date-of-birth label {
margin-top: 0; }
.usa-date-of-birth input[type=number]::-webkit-inner-spin-button,
.usa-date-of-birth input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
appearance: none;
margin: 0; }
.usa-date-of-birth input[type=number] {
-moz-appearance: textfield; }
.usa-form-group-day,
.usa-form-group-month,
.usa-form-group-year {
float: left;
clear: none;
margin-right: 1.5rem;
width: 5rem; }
.usa-form-group-year {
width: 7rem; }
/* This stylesheet generated by Transfonter (https://transfonter.org) on February 25, 2017 6:21 AM */
@font-face {
font-family: 'Trenda Semibold It';
src: url("fonts/Trenda-SemiboldIt.eot");
src: url("fonts/Trenda-SemiboldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-SemiboldIt.woff") format("woff"), url("fonts/Trenda-SemiboldIt.ttf") format("truetype");
font-weight: 600;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Heavy.eot");
src: url("fonts/Trenda-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Heavy.woff") format("woff"), url("fonts/Trenda-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Semibold.eot");
src: url("fonts/Trenda-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Semibold.woff") format("woff"), url("fonts/Trenda-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Heavy It';
src: url("fonts/Trenda-HeavyIt.eot");
src: url("fonts/Trenda-HeavyIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-HeavyIt.woff") format("woff"), url("fonts/Trenda-HeavyIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Semibold.eot");
src: url("fonts/SanFranciscoText-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Semibold.woff") format("woff"), url("fonts/SanFranciscoText-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda ExtraLight It';
src: url("fonts/Trenda-ExtraLightIt.eot");
src: url("fonts/Trenda-ExtraLightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLightIt.woff") format("woff"), url("fonts/Trenda-ExtraLightIt.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Thin.eot");
src: url("fonts/Trenda-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Thin.woff") format("woff"), url("fonts/Trenda-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Heavy.eot");
src: url("fonts/SanFranciscoDisplay-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Heavy.woff") format("woff"), url("fonts/SanFranciscoDisplay-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Medium.eot");
src: url("fonts/SanFranciscoDisplay-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Medium.woff") format("woff"), url("fonts/SanFranciscoDisplay-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Gotham Condensed';
src: url("fonts/GothamCondensed-Bold.eot");
src: url("fonts/GothamCondensed-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/GothamCondensed-Bold.woff") format("woff"), url("fonts/GothamCondensed-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'Trenda Black It';
src: url("fonts/Trenda-BlackIt.eot");
src: url("fonts/Trenda-BlackIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BlackIt.woff") format("woff"), url("fonts/Trenda-BlackIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda Thin It';
src: url("fonts/Trenda-ThinIt.eot");
src: url("fonts/Trenda-ThinIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ThinIt.woff") format("woff"), url("fonts/Trenda-ThinIt.ttf") format("truetype");
font-weight: 100;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Semibold.eot");
src: url("fonts/SanFranciscoDisplay-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Semibold.woff") format("woff"), url("fonts/SanFranciscoDisplay-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Bold It';
src: url("fonts/Trenda-BoldIt.eot");
src: url("fonts/Trenda-BoldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BoldIt.woff") format("woff"), url("fonts/Trenda-BoldIt.ttf") format("truetype");
font-weight: bold;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Thin.eot");
src: url("fonts/SanFranciscoText-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Thin.woff") format("woff"), url("fonts/SanFranciscoText-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda Light It';
src: url("fonts/Trenda-LightIt.eot");
src: url("fonts/Trenda-LightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-LightIt.woff") format("woff"), url("fonts/Trenda-LightIt.ttf") format("truetype");
font-weight: 300;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Heavy.eot");
src: url("fonts/SanFranciscoText-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Heavy.woff") format("woff"), url("fonts/SanFranciscoText-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Italic.eot");
src: url("fonts/SanFranciscoText-Italic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Italic.woff") format("woff"), url("fonts/SanFranciscoText-Italic.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Light.eot");
src: url("fonts/SanFranciscoDisplay-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Light.woff") format("woff"), url("fonts/SanFranciscoDisplay-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Ultralight.eot");
src: url("fonts/SanFranciscoDisplay-Ultralight.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Ultralight.woff") format("woff"), url("fonts/SanFranciscoDisplay-Ultralight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Medium.eot");
src: url("fonts/SanFranciscoText-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Medium.woff") format("woff"), url("fonts/SanFranciscoText-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-ExtraLight.eot");
src: url("fonts/Trenda-ExtraLight.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLight.woff") format("woff"), url("fonts/Trenda-ExtraLight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Regular.eot");
src: url("fonts/SanFranciscoText-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Regular.woff") format("woff"), url("fonts/SanFranciscoText-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Thin.eot");
src: url("fonts/SanFranciscoDisplay-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Thin.woff") format("woff"), url("fonts/SanFranciscoDisplay-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Regular.eot");
src: url("fonts/Trenda-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Regular.woff") format("woff"), url("fonts/Trenda-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-HeavyItalic.eot");
src: url("fonts/SanFranciscoText-HeavyItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-HeavyItalic.woff") format("woff"), url("fonts/SanFranciscoText-HeavyItalic.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Light.eot");
src: url("fonts/Trenda-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Light.woff") format("woff"), url("fonts/Trenda-Light.ttf") format("truetype");
font-weight: 300;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Bold.eot");
src: url("fonts/Trenda-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Bold.woff") format("woff"), url("fonts/Trenda-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-LightItalic.eot");
src: url("fonts/SanFranciscoText-LightItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-LightItalic.woff") format("woff"), url("fonts/SanFranciscoText-LightItalic.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Regular.eot");
src: url("fonts/SanFranciscoDisplay-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Regular.woff") format("woff"), url("fonts/SanFranciscoDisplay-Regular.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Black.eot");
src: url("fonts/Trenda-Black.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Black.woff") format("woff"), url("fonts/Trenda-Black.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Light.eot");
src: url("fonts/SanFranciscoText-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Light.woff") format("woff"), url("fonts/SanFranciscoText-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda It';
src: url("fonts/Trenda-RegularIt.eot");
src: url("fonts/Trenda-RegularIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-RegularIt.woff") format("woff"), url("fonts/Trenda-RegularIt.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
/*---------------------------------------------------
OCC Theme
----------------------------------------------------*/
/*header and footer backgrounds*/
/*#f1f1f1;*/
/*menu*/
/*buttons*/
/*translate*/
/*headings*/
/*links*/
/*---------------------------------------------------
----------------------------------------------------*/
.usa-button,
.usa-button-primary,
.usa-button:visited,
.usa-button-primary:visited,
button,
[type="button"],
[type="submit"],
[type="reset"],
[type="button"],
[type="submit"],
[type="reset"],
[type="image"] {
appearance: none;
background-color: #d52628;
border: 0;
border-radius: 0.3rem;
color: white;
cursor: pointer;
display: inline-block;
font-family: "Trenda", "Helvetica", "Arial", sans-serif;
text-transform: uppercase;
font-size: 1.7rem;
font-weight: normal;
line-height: 1;
margin-top: .5em;
margin-bottom: .5em;
margin-right: .5em;
outline: none;
padding: 1rem 2rem;
/*text-align: center;*/
text-decoration: none;
/*width: 100%;*/
-webkit-font-smoothing: antialiased; }
.usa-button:hover, .usa-button.usa-button-hover,
.usa-button-primary:hover,
.usa-button-primary.usa-button-hover,
.usa-button:visited:hover,
.usa-button:visited.usa-button-hover,
.usa-button-primary:visited:hover,
.usa-button-primary:visited.usa-button-hover,
button:hover,
button.usa-button-hover,
[type="button"]:hover,
[type="button"].usa-button-hover,
[type="submit"]:hover,
[type="submit"].usa-button-hover,
[type="reset"]:hover,
[type="reset"].usa-button-hover,
[type="button"]:hover,
[type="button"].usa-button-hover,
[type="submit"]:hover,
[type="submit"].usa-button-hover,
[type="reset"]:hover,
[type="reset"].usa-button-hover,
[type="image"]:hover,
[type="image"].usa-button-hover {
background-color: #bd2b2d;
border-bottom: 0;
color: white;
text-decoration: none; }
.usa-button:focus, .usa-button.usa-button-focus,
.usa-button-primary:focus,
.usa-button-primary.usa-button-focus,
.usa-button:visited:focus,
.usa-button:visited.usa-button-focus,
.usa-button-primary:visited:focus,
.usa-button-primary:visited.usa-button-focus,
button:focus,
button.usa-button-focus,
[type="button"]:focus,
[type="button"].usa-button-focus,
[type="submit"]:focus,
[type="submit"].usa-button-focus,
[type="reset"]:focus,
[type="reset"].usa-button-focus,
[type="button"]:focus,
[type="button"].usa-button-focus,
[type="submit"]:focus,
[type="submit"].usa-button-focus,
[type="reset"]:focus,
[type="reset"].usa-button-focus,
[type="image"]:focus,
[type="image"].usa-button-focus {
box-shadow: 0 0 3px #3e94cf, 0 0 7px #3e94cf; }
.usa-button:active, .usa-button.usa-button-active,
.usa-button-primary:active,
.usa-button-primary.usa-button-active,
.usa-button:visited:active,
.usa-button:visited.usa-button-active,
.usa-button-primary:visited:active,
.usa-button-primary:visited.usa-button-active,
button:active,
button.usa-button-active,
[type="button"]:active,
[type="button"].usa-button-active,
[type="submit"]:active,
[type="submit"].usa-button-active,
[type="reset"]:active,
[type="reset"].usa-button-active,
[type="button"]:active,
[type="button"].usa-button-active,
[type="submit"]:active,
[type="submit"].usa-button-active,
[type="reset"]:active,
[type="reset"].usa-button-active,
[type="image"]:active,
[type="image"].usa-button-active {
background-color: #bd2b2d; }
@media (min-width: 481px) {
.usa-button,
.usa-button-primary,
.usa-button:visited,
.usa-button-primary:visited,
button,
[type="button"],
[type="submit"],
[type="reset"],
[type="button"],
[type="submit"],
[type="reset"],
[type="image"] {
width: auto; } }
.usa-button.usa-button-primary-alt,
.usa-button-primary.usa-button-primary-alt,
.usa-button:visited.usa-button-primary-alt,
.usa-button-primary:visited.usa-button-primary-alt,
button.usa-button-primary-alt,
[type="button"].usa-button-primary-alt,
[type="submit"].usa-button-primary-alt,
[type="reset"].usa-button-primary-alt,
[type="button"].usa-button-primary-alt,
[type="submit"].usa-button-primary-alt,
[type="reset"].usa-button-primary-alt,
[type="image"].usa-button-primary-alt {
background-color: #02bfe7;
color: #212121; }
.usa-button.usa-button-primary-alt:hover, .usa-button.usa-button-primary-alt.usa-button-hover,
.usa-button-primary.usa-button-primary-alt:hover,
.usa-button-primary.usa-button-primary-alt.usa-button-hover,
.usa-button:visited.usa-button-primary-alt:hover,
.usa-button:visited.usa-button-primary-alt.usa-button-hover,
.usa-button-primary:visited.usa-button-primary-alt:hover,
.usa-button-primary:visited.usa-button-primary-alt.usa-button-hover,
button.usa-button-primary-alt:hover,
button.usa-button-primary-alt.usa-button-hover,
[type="button"].usa-button-primary-alt:hover,
[type="button"].usa-button-primary-alt.usa-button-hover,
[type="submit"].usa-button-primary-alt:hover,
[type="submit"].usa-button-primary-alt.usa-button-hover,
[type="reset"].usa-button-primary-alt:hover,
[type="reset"].usa-button-primary-alt.usa-button-hover,
[type="button"].usa-button-primary-alt:hover,
[type="button"].usa-button-primary-alt.usa-button-hover,
[type="submit"].usa-button-primary-alt:hover,
[type="submit"].usa-button-primary-alt.usa-button-hover,
[type="reset"].usa-button-primary-alt:hover,
[type="reset"].usa-button-primary-alt.usa-button-hover,
[type="image"].usa-button-primary-alt:hover,
[type="image"].usa-button-primary-alt.usa-button-hover {
background-color: #00a6d2; }
.usa-button.usa-button-primary-alt:active, .usa-button.usa-button-primary-alt.usa-button-active,
.usa-button-primary.usa-button-primary-alt:active,
.usa-button-primary.usa-button-primary-alt.usa-button-active,
.usa-button:visited.usa-button-primary-alt:active,
.usa-button:visited.usa-button-primary-alt.usa-button-active,
.usa-button-primary:visited.usa-button-primary-alt:active,
.usa-button-primary:visited.usa-button-primary-alt.usa-button-active,
button.usa-button-primary-alt:active,
button.usa-button-primary-alt.usa-button-active,
[type="button"].usa-button-primary-alt:active,
[type="button"].usa-button-primary-alt.usa-button-active,
[type="submit"].usa-button-primary-alt:active,
[type="submit"].usa-button-primary-alt.usa-button-active,
[type="reset"].usa-button-primary-alt:active,
[type="reset"].usa-button-primary-alt.usa-button-active,
[type="button"].usa-button-primary-alt:active,
[type="button"].usa-button-primary-alt.usa-button-active,
[type="submit"].usa-button-primary-alt:active,
[type="submit"].usa-button-primary-alt.usa-button-active,
[type="reset"].usa-button-primary-alt:active,
[type="reset"].usa-button-primary-alt.usa-button-active,
[type="image"].usa-button-primary-alt:active,
[type="image"].usa-button-primary-alt.usa-button-active {
background-color: #046b99;
color: white; }
.usa-button.usa-button-secondary,
.usa-button-primary.usa-button-secondary,
.usa-button:visited.usa-button-secondary,
.usa-button-primary:visited.usa-button-secondary,
button.usa-button-secondary,
[type="button"].usa-button-secondary,
[type="submit"].usa-button-secondary,
[type="reset"].usa-button-secondary,
[type="button"].usa-button-secondary,
[type="submit"].usa-button-secondary,
[type="reset"].usa-button-secondary,
[type="image"].usa-button-secondary {
background-color: #e31c3d; }
.usa-button.usa-button-secondary:hover, .usa-button.usa-button-secondary.usa-button-hover,
.usa-button-primary.usa-button-secondary:hover,
.usa-button-primary.usa-button-secondary.usa-button-hover,
.usa-button:visited.usa-button-secondary:hover,
.usa-button:visited.usa-button-secondary.usa-button-hover,
.usa-button-primary:visited.usa-button-secondary:hover,
.usa-button-primary:visited.usa-button-secondary.usa-button-hover,
button.usa-button-secondary:hover,
button.usa-button-secondary.usa-button-hover,
[type="button"].usa-button-secondary:hover,
[type="button"].usa-button-secondary.usa-button-hover,
[type="submit"].usa-button-secondary:hover,
[type="submit"].usa-button-secondary.usa-button-hover,
[type="reset"].usa-button-secondary:hover,
[type="reset"].usa-button-secondary.usa-button-hover,
[type="button"].usa-button-secondary:hover,
[type="button"].usa-button-secondary.usa-button-hover,
[type="submit"].usa-button-secondary:hover,
[type="submit"].usa-button-secondary.usa-button-hover,
[type="reset"].usa-button-secondary:hover,
[type="reset"].usa-button-secondary.usa-button-hover,
[type="image"].usa-button-secondary:hover,
[type="image"].usa-button-secondary.usa-button-hover {
background-color: #cd2026; }
.usa-button.usa-button-secondary:active, .usa-button.usa-button-secondary.usa-button-active,
.usa-button-primary.usa-button-secondary:active,
.usa-button-primary.usa-button-secondary.usa-button-active,
.usa-button:visited.usa-button-secondary:active,
.usa-button:visited.usa-button-secondary.usa-button-active,
.usa-button-primary:visited.usa-button-secondary:active,
.usa-button-primary:visited.usa-button-secondary.usa-button-active,
button.usa-button-secondary:active,
button.usa-button-secondary.usa-button-active,
[type="button"].usa-button-secondary:active,
[type="button"].usa-button-secondary.usa-button-active,
[type="submit"].usa-button-secondary:active,
[type="submit"].usa-button-secondary.usa-button-active,
[type="reset"].usa-button-secondary:active,
[type="reset"].usa-button-secondary.usa-button-active,
[type="button"].usa-button-secondary:active,
[type="button"].usa-button-secondary.usa-button-active,
[type="submit"].usa-button-secondary:active,
[type="submit"].usa-button-secondary.usa-button-active,
[type="reset"].usa-button-secondary:active,
[type="reset"].usa-button-secondary.usa-button-active,
[type="image"].usa-button-secondary:active,
[type="image"].usa-button-secondary.usa-button-active {
background-color: #981b1e; }
.usa-button.usa-button-gray,
.usa-button-primary.usa-button-gray,
.usa-button:visited.usa-button-gray,
.usa-button-primary:visited.usa-button-gray,
button.usa-button-gray,
[type="button"].usa-button-gray,
[type="submit"].usa-button-gray,
[type="reset"].usa-button-gray,
[type="button"].usa-button-gray,
[type="submit"].usa-button-gray,
[type="reset"].usa-button-gray,
[type="image"].usa-button-gray {
background-color: #5b616b; }
.usa-button.usa-button-gray:hover, .usa-button.usa-button-gray.usa-button-hover,
.usa-button-primary.usa-button-gray:hover,
.usa-button-primary.usa-button-gray.usa-button-hover,
.usa-button:visited.usa-button-gray:hover,
.usa-button:visited.usa-button-gray.usa-button-hover,
.usa-button-primary:visited.usa-button-gray:hover,
.usa-button-primary:visited.usa-button-gray.usa-button-hover,
button.usa-button-gray:hover,
button.usa-button-gray.usa-button-hover,
[type="button"].usa-button-gray:hover,
[type="button"].usa-button-gray.usa-button-hover,
[type="submit"].usa-button-gray:hover,
[type="submit"].usa-button-gray.usa-button-hover,
[type="reset"].usa-button-gray:hover,
[type="reset"].usa-button-gray.usa-button-hover,
[type="button"].usa-button-gray:hover,
[type="button"].usa-button-gray.usa-button-hover,
[type="submit"].usa-button-gray:hover,
[type="submit"].usa-button-gray.usa-button-hover,
[type="reset"].usa-button-gray:hover,
[type="reset"].usa-button-gray.usa-button-hover,
[type="image"].usa-button-gray:hover,
[type="image"].usa-button-gray.usa-button-hover {
background-color: #323a45; }
.usa-button.usa-button-gray:active, .usa-button.usa-button-gray.usa-button-active,
.usa-button-primary.usa-button-gray:active,
.usa-button-primary.usa-button-gray.usa-button-active,
.usa-button:visited.usa-button-gray:active,
.usa-button:visited.usa-button-gray.usa-button-active,
.usa-button-primary:visited.usa-button-gray:active,
.usa-button-primary:visited.usa-button-gray.usa-button-active,
button.usa-button-gray:active,
button.usa-button-gray.usa-button-active,
[type="button"].usa-button-gray:active,
[type="button"].usa-button-gray.usa-button-active,
[type="submit"].usa-button-gray:active,
[type="submit"].usa-button-gray.usa-button-active,
[type="reset"].usa-button-gray:active,
[type="reset"].usa-button-gray.usa-button-active,
[type="button"].usa-button-gray:active,
[type="button"].usa-button-gray.usa-button-active,
[type="submit"].usa-button-gray:active,
[type="submit"].usa-button-gray.usa-button-active,
[type="reset"].usa-button-gray:active,
[type="reset"].usa-button-gray.usa-button-active,
[type="image"].usa-button-gray:active,
[type="image"].usa-button-gray.usa-button-active {
background-color: #212121; }
.usa-button.usa-button-outline,
.usa-button-primary.usa-button-outline,
.usa-button:visited.usa-button-outline,
.usa-button-primary:visited.usa-button-outline,
button.usa-button-outline,
[type="button"].usa-button-outline,
[type="submit"].usa-button-outline,
[type="reset"].usa-button-outline,
[type="button"].usa-button-outline,
[type="submit"].usa-button-outline,
[type="reset"].usa-button-outline,
[type="image"].usa-button-outline {
background-color: #ffffff;
box-shadow: inset 0 0 0 2px #0071bc;
color: #0071bc; }
.usa-button.usa-button-outline:hover, .usa-button.usa-button-outline.usa-button-hover,
.usa-button-primary.usa-button-outline:hover,
.usa-button-primary.usa-button-outline.usa-button-hover,
.usa-button:visited.usa-button-outline:hover,
.usa-button:visited.usa-button-outline.usa-button-hover,
.usa-button-primary:visited.usa-button-outline:hover,
.usa-button-primary:visited.usa-button-outline.usa-button-hover,
button.usa-button-outline:hover,
button.usa-button-outline.usa-button-hover,
[type="button"].usa-button-outline:hover,
[type="button"].usa-button-outline.usa-button-hover,
[type="submit"].usa-button-outline:hover,
[type="submit"].usa-button-outline.usa-button-hover,
[type="reset"].usa-button-outline:hover,
[type="reset"].usa-button-outline.usa-button-hover,
[type="button"].usa-button-outline:hover,
[type="button"].usa-button-outline.usa-button-hover,
[type="submit"].usa-button-outline:hover,
[type="submit"].usa-button-outline.usa-button-hover,
[type="reset"].usa-button-outline:hover,
[type="reset"].usa-button-outline.usa-button-hover,
[type="image"].usa-button-outline:hover,
[type="image"].usa-button-outline.usa-button-hover {
box-shadow: inset 0 0 0 2px #205493;
color: #205493; }
.usa-button.usa-button-outline:active, .usa-button.usa-button-outline.usa-button-active,
.usa-button-primary.usa-button-outline:active,
.usa-button-primary.usa-button-outline.usa-button-active,
.usa-button:visited.usa-button-outline:active,
.usa-button:visited.usa-button-outline.usa-button-active,
.usa-button-primary:visited.usa-button-outline:active,
.usa-button-primary:visited.usa-button-outline.usa-button-active,
button.usa-button-outline:active,
button.usa-button-outline.usa-button-active,
[type="button"].usa-button-outline:active,
[type="button"].usa-button-outline.usa-button-active,
[type="submit"].usa-button-outline:active,
[type="submit"].usa-button-outline.usa-button-active,
[type="reset"].usa-button-outline:active,
[type="reset"].usa-button-outline.usa-button-active,
[type="button"].usa-button-outline:active,
[type="button"].usa-button-outline.usa-button-active,
[type="submit"].usa-button-outline:active,
[type="submit"].usa-button-outline.usa-button-active,
[type="reset"].usa-button-outline:active,
[type="reset"].usa-button-outline.usa-button-active,
[type="image"].usa-button-outline:active,
[type="image"].usa-button-outline.usa-button-active {
box-shadow: inset 0 0 0 2px #112e51;
color: #112e51; }
.usa-button.usa-button-outline:focus, .usa-button.usa-button-outline.usa-button-focus,
.usa-button-primary.usa-button-outline:focus,
.usa-button-primary.usa-button-outline.usa-button-focus,
.usa-button:visited.usa-button-outline:focus,
.usa-button:visited.usa-button-outline.usa-button-focus,
.usa-button-primary:visited.usa-button-outline:focus,
.usa-button-primary:visited.usa-button-outline.usa-button-focus,
button.usa-button-outline:focus,
button.usa-button-outline.usa-button-focus,
[type="button"].usa-button-outline:focus,
[type="button"].usa-button-outline.usa-button-focus,
[type="submit"].usa-button-outline:focus,
[type="submit"].usa-button-outline.usa-button-focus,
[type="reset"].usa-button-outline:focus,
[type="reset"].usa-button-outline.usa-button-focus,
[type="button"].usa-button-outline:focus,
[type="button"].usa-button-outline.usa-button-focus,
[type="submit"].usa-button-outline:focus,
[type="submit"].usa-button-outline.usa-button-focus,
[type="reset"].usa-button-outline:focus,
[type="reset"].usa-button-outline.usa-button-focus,
[type="image"].usa-button-outline:focus,
[type="image"].usa-button-outline.usa-button-focus {
box-shadow: inset 0 0 0 2px #112e51, 0 0 3px #3e94cf, 0 0 7px #3e94cf; }
.usa-button.usa-button-outline-inverse,
.usa-button-primary.usa-button-outline-inverse,
.usa-button:visited.usa-button-outline-inverse,
.usa-button-primary:visited.usa-button-outline-inverse,
button.usa-button-outline-inverse,
[type="button"].usa-button-outline-inverse,
[type="submit"].usa-button-outline-inverse,
[type="reset"].usa-button-outline-inverse,
[type="button"].usa-button-outline-inverse,
[type="submit"].usa-button-outline-inverse,
[type="reset"].usa-button-outline-inverse,
[type="image"].usa-button-outline-inverse {
background: transparent;
box-shadow: inset 0 0 0 2px #ffffff;
color: #ffffff; }
.usa-button.usa-button-outline-inverse:hover, .usa-button.usa-button-outline-inverse.usa-button-hover,
.usa-button-primary.usa-button-outline-inverse:hover,
.usa-button-primary.usa-button-outline-inverse.usa-button-hover,
.usa-button:visited.usa-button-outline-inverse:hover,
.usa-button:visited.usa-button-outline-inverse.usa-button-hover,
.usa-button-primary:visited.usa-button-outline-inverse:hover,
.usa-button-primary:visited.usa-button-outline-inverse.usa-button-hover,
button.usa-button-outline-inverse:hover,
button.usa-button-outline-inverse.usa-button-hover,
[type="button"].usa-button-outline-inverse:hover,
[type="button"].usa-button-outline-inverse.usa-button-hover,
[type="submit"].usa-button-outline-inverse:hover,
[type="submit"].usa-button-outline-inverse.usa-button-hover,
[type="reset"].usa-button-outline-inverse:hover,
[type="reset"].usa-button-outline-inverse.usa-button-hover,
[type="button"].usa-button-outline-inverse:hover,
[type="button"].usa-button-outline-inverse.usa-button-hover,
[type="submit"].usa-button-outline-inverse:hover,
[type="submit"].usa-button-outline-inverse.usa-button-hover,
[type="reset"].usa-button-outline-inverse:hover,
[type="reset"].usa-button-outline-inverse.usa-button-hover,
[type="image"].usa-button-outline-inverse:hover,
[type="image"].usa-button-outline-inverse.usa-button-hover {
box-shadow: inset 0 0 0 2px #d6d7d9;
color: #d6d7d9; }
.usa-button.usa-button-outline-inverse:active, .usa-button.usa-button-outline-inverse.usa-button-active,
.usa-button-primary.usa-button-outline-inverse:active,
.usa-button-primary.usa-button-outline-inverse.usa-button-active,
.usa-button:visited.usa-button-outline-inverse:active,
.usa-button:visited.usa-button-outline-inverse.usa-button-active,
.usa-button-primary:visited.usa-button-outline-inverse:active,
.usa-button-primary:visited.usa-button-outline-inverse.usa-button-active,
button.usa-button-outline-inverse:active,
button.usa-button-outline-inverse.usa-button-active,
[type="button"].usa-button-outline-inverse:active,
[type="button"].usa-button-outline-inverse.usa-button-active,
[type="submit"].usa-button-outline-inverse:active,
[type="submit"].usa-button-outline-inverse.usa-button-active,
[type="reset"].usa-button-outline-inverse:active,
[type="reset"].usa-button-outline-inverse.usa-button-active,
[type="button"].usa-button-outline-inverse:active,
[type="button"].usa-button-outline-inverse.usa-button-active,
[type="submit"].usa-button-outline-inverse:active,
[type="submit"].usa-button-outline-inverse.usa-button-active,
[type="reset"].usa-button-outline-inverse:active,
[type="reset"].usa-button-outline-inverse.usa-button-active,
[type="image"].usa-button-outline-inverse:active,
[type="image"].usa-button-outline-inverse.usa-button-active {
box-shadow: inset 0 0 0 2px #aeb0b5;
color: #d6d7d9; }
.usa-button.usa-button-outline-inverse:focus, .usa-button.usa-button-outline-inverse.usa-button-focus,
.usa-button-primary.usa-button-outline-inverse:focus,
.usa-button-primary.usa-button-outline-inverse.usa-button-focus,
.usa-button:visited.usa-button-outline-inverse:focus,
.usa-button:visited.usa-button-outline-inverse.usa-button-focus,
.usa-button-primary:visited.usa-button-outline-inverse:focus,
.usa-button-primary:visited.usa-button-outline-inverse.usa-button-focus,
button.usa-button-outline-inverse:focus,
button.usa-button-outline-inverse.usa-button-focus,
[type="button"].usa-button-outline-inverse:focus,
[type="button"].usa-button-outline-inverse.usa-button-focus,
[type="submit"].usa-button-outline-inverse:focus,
[type="submit"].usa-button-outline-inverse.usa-button-focus,
[type="reset"].usa-button-outline-inverse:focus,
[type="reset"].usa-button-outline-inverse.usa-button-focus,
[type="button"].usa-button-outline-inverse:focus,
[type="button"].usa-button-outline-inverse.usa-button-focus,
[type="submit"].usa-button-outline-inverse:focus,
[type="submit"].usa-button-outline-inverse.usa-button-focus,
[type="reset"].usa-button-outline-inverse:focus,
[type="reset"].usa-button-outline-inverse.usa-button-focus,
[type="image"].usa-button-outline-inverse:focus,
[type="image"].usa-button-outline-inverse.usa-button-focus {
box-shadow: inset 0 0 0 2px #aeb0b5, 0 0 3px #3e94cf, 0 0 7px #3e94cf; }
.usa-button.usa-button-big,
.usa-button-primary.usa-button-big,
.usa-button:visited.usa-button-big,
.usa-button-primary:visited.usa-button-big,
button.usa-button-big,
[type="button"].usa-button-big,
[type="submit"].usa-button-big,
[type="reset"].usa-button-big,
[type="button"].usa-button-big,
[type="submit"].usa-button-big,
[type="reset"].usa-button-big,
[type="image"].usa-button-big {
font-size: 1.9rem;
padding: 1.5rem 3rem; }
[type="submit"]:disabled,
.usa-button-disabled {
background-color: #d6d7d9;
color: #323a45;
cursor: default; }
[type="submit"]:disabled:hover, [type="submit"]:disabled.usa-button-hover, [type="submit"]:disabled:active, [type="submit"]:disabled.usa-button-active, [type="submit"]:disabled:focus,
.usa-button-disabled:hover,
.usa-button-disabled.usa-button-hover,
.usa-button-disabled:active,
.usa-button-disabled.usa-button-active,
.usa-button-disabled:focus {
background-color: #d6d7d9;
border: 0;
box-shadow: none;
color: #323a45; }
.usa-button-unstyled {
background: none;
border: 0;
border-radius: 0;
outline: 0;
padding: 0;
text-align: left; }
.usa-button-unstyled:focus, .usa-button-unstyled:hover {
box-shadow: initial; }
table {
border-spacing: 0;
margin: 2em 0;
min-width: 100%; }
table thead tr {
background-color: #f1f1f1; }
table thead th {
text-align: left; }
table th, table td {
border: 1px solid #5b616b;
padding: 1.5rem; }
.usa-table-borderless thead tr {
background-color: transparent; }
.usa-table-borderless thead tr th {
border-top: 0; }
.usa-table-borderless th, .usa-table-borderless td {
border-left: 0;
border-right: 0; }
html {
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif;
font-size: 10px; }
body {
font-size: 1.7rem; }
p {
line-height: 1.5;
margin-top: 0;
margin-bottom: 1em; }
a {
color: #1a325d;
text-decoration: none; }
a:hover, a:active {
color: #1a325d;
text-decoration: underline; }
a:visited {
color: #1a325d; }
a:focus {
box-shadow: none;
outline: 0; }
p {
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif; }
h1 {
color: #333; }
h2, h3, h4, h5, h6 {
color: #333; }
h1, h2, h3, h4, h5, h6 {
text-transform: uppercase;
clear: both;
line-height: 1.3;
margin-top: .9em;
margin-bottom: .5em; }
h1, h3 {
font-family: "Trenda", "Helvetica", "Arial", sans-serif; }
h2, h4, h5, h6 {
font-family: "Trenda", "Helvetica", "Arial", sans-serif; }
hr {
border-top: 1px solid #333;
border-bottom: 1px solid transparent;
border-left: 1px solid transparent;
border-right: 1px solid transparent;
margin: 1em 0; }
b, strong {
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif !important; }
em {
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif; }
h1 {
font-size: 3rem;
font-weight: 400; }
@media screen and (max-width: 481px) {
h1 {
font-size: 3rem; } }
.widget h1 {
font-size: 3rem;
font-weight: 400; }
@media screen and (max-width: 481px) {
.widget h1 {
font-size: 2.8rem; } }
h2 {
font-size: 2.2rem;
font-weight: 400; }
h3 {
font-size: 2rem;
font-weight: 400; }
h4 {
font-size: 1.7rem;
font-weight: 400; }
h5 {
font-size: 1.5rem;
font-weight: 400; }
h6 {
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif;
font-size: 1.3rem;
font-weight: 400;
text-transform: uppercase; }
cite,
var,
address,
dfn {
font-style: normal; }
.usa-content p {
max-width: 53rem; }
.usa-content-list {
max-width: 53rem; }
p a,
.usa-content-list a {
text-decoration: underline; }
.usa-sans p,
.usa-sans a,
.usa-sans li,
.usa-sans span {
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif; }
.usa-serif p,
.usa-serif a,
.usa-serif li,
.usa-serif span {
font-family: "Merriweather", "Georgia", "Times New Roman", serif; }
.usa-sans a {
border-bottom: none;
font-weight: 600; }
.usa-display {
font-size: 2rem;
font-weight: 400;
margin-bottom: 0; }
@media screen and (min-width: 481px) {
.usa-display {
font-size: 3rem;
font-weight: 400; } }
@media screen and (min-width: 727px) {
.usa-display {
font-size: 5.2rem;
font-weight: 400; } }
.usa-font-lead {
font-size: 2rem;
font-family: "Merriweather", "Georgia", "Times New Roman", serif;
line-height: 1.7; }
.usa-image-block {
position: relative; }
.usa-image-text-block {
color: #ffffff;
left: 0;
margin-left: 8%;
position: absolute;
top: 0; }
.usa-image-text {
margin-top: 0; }
.usa-drop_text {
margin-bottom: 0; }
.usa-background-dark {
background-color: #323a45; }
.usa-background-dark p, .usa-background-dark span {
color: #ffffff; }
.usa-background-dark a {
color: #d6d7d9; }
.usa-background-dark a:hover {
color: #ffffff; }
.usa-text-small {
font-size: 1.3rem;
margin-top: 0; }
/*Orchard*/
.page-header > h1 {
margin: 0;
line-height: 1em; }
article.widget h2:first-child, article.widget h3:first-child, article.widget h4:first-child, article.widget h5:first-child, article.widget h6:first-child {
margin-top: 0; }
.has_caption {
font-size: 1.4rem;
line-height: 1.3em; }
.zone .alert {
margin-bottom: 15px; }
.caption {
margin-top: 3px;
padding-top: 0;
font-size: 16px;
color: #5f5f5f;
margin-bottom: 15px;
line-height: 1.2; }
/* This stylesheet generated by Transfonter (https://transfonter.org) on February 25, 2017 6:21 AM */
@font-face {
font-family: 'Trenda Semibold It';
src: url("fonts/Trenda-SemiboldIt.eot");
src: url("fonts/Trenda-SemiboldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-SemiboldIt.woff") format("woff"), url("fonts/Trenda-SemiboldIt.ttf") format("truetype");
font-weight: 600;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Heavy.eot");
src: url("fonts/Trenda-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Heavy.woff") format("woff"), url("fonts/Trenda-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Semibold.eot");
src: url("fonts/Trenda-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Semibold.woff") format("woff"), url("fonts/Trenda-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Heavy It';
src: url("fonts/Trenda-HeavyIt.eot");
src: url("fonts/Trenda-HeavyIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-HeavyIt.woff") format("woff"), url("fonts/Trenda-HeavyIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Semibold.eot");
src: url("fonts/SanFranciscoText-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Semibold.woff") format("woff"), url("fonts/SanFranciscoText-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda ExtraLight It';
src: url("fonts/Trenda-ExtraLightIt.eot");
src: url("fonts/Trenda-ExtraLightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLightIt.woff") format("woff"), url("fonts/Trenda-ExtraLightIt.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Thin.eot");
src: url("fonts/Trenda-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Thin.woff") format("woff"), url("fonts/Trenda-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Heavy.eot");
src: url("fonts/SanFranciscoDisplay-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Heavy.woff") format("woff"), url("fonts/SanFranciscoDisplay-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Medium.eot");
src: url("fonts/SanFranciscoDisplay-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Medium.woff") format("woff"), url("fonts/SanFranciscoDisplay-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Gotham Condensed';
src: url("fonts/GothamCondensed-Bold.eot");
src: url("fonts/GothamCondensed-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/GothamCondensed-Bold.woff") format("woff"), url("fonts/GothamCondensed-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'Trenda Black It';
src: url("fonts/Trenda-BlackIt.eot");
src: url("fonts/Trenda-BlackIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BlackIt.woff") format("woff"), url("fonts/Trenda-BlackIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda Thin It';
src: url("fonts/Trenda-ThinIt.eot");
src: url("fonts/Trenda-ThinIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ThinIt.woff") format("woff"), url("fonts/Trenda-ThinIt.ttf") format("truetype");
font-weight: 100;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Semibold.eot");
src: url("fonts/SanFranciscoDisplay-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Semibold.woff") format("woff"), url("fonts/SanFranciscoDisplay-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Bold It';
src: url("fonts/Trenda-BoldIt.eot");
src: url("fonts/Trenda-BoldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BoldIt.woff") format("woff"), url("fonts/Trenda-BoldIt.ttf") format("truetype");
font-weight: bold;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Thin.eot");
src: url("fonts/SanFranciscoText-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Thin.woff") format("woff"), url("fonts/SanFranciscoText-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda Light It';
src: url("fonts/Trenda-LightIt.eot");
src: url("fonts/Trenda-LightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-LightIt.woff") format("woff"), url("fonts/Trenda-LightIt.ttf") format("truetype");
font-weight: 300;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Heavy.eot");
src: url("fonts/SanFranciscoText-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Heavy.woff") format("woff"), url("fonts/SanFranciscoText-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Italic.eot");
src: url("fonts/SanFranciscoText-Italic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Italic.woff") format("woff"), url("fonts/SanFranciscoText-Italic.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Light.eot");
src: url("fonts/SanFranciscoDisplay-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Light.woff") format("woff"), url("fonts/SanFranciscoDisplay-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Ultralight.eot");
src: url("fonts/SanFranciscoDisplay-Ultralight.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Ultralight.woff") format("woff"), url("fonts/SanFranciscoDisplay-Ultralight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Medium.eot");
src: url("fonts/SanFranciscoText-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Medium.woff") format("woff"), url("fonts/SanFranciscoText-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-ExtraLight.eot");
src: url("fonts/Trenda-ExtraLight.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLight.woff") format("woff"), url("fonts/Trenda-ExtraLight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Regular.eot");
src: url("fonts/SanFranciscoText-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Regular.woff") format("woff"), url("fonts/SanFranciscoText-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Thin.eot");
src: url("fonts/SanFranciscoDisplay-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Thin.woff") format("woff"), url("fonts/SanFranciscoDisplay-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Regular.eot");
src: url("fonts/Trenda-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Regular.woff") format("woff"), url("fonts/Trenda-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-HeavyItalic.eot");
src: url("fonts/SanFranciscoText-HeavyItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-HeavyItalic.woff") format("woff"), url("fonts/SanFranciscoText-HeavyItalic.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Light.eot");
src: url("fonts/Trenda-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Light.woff") format("woff"), url("fonts/Trenda-Light.ttf") format("truetype");
font-weight: 300;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Bold.eot");
src: url("fonts/Trenda-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Bold.woff") format("woff"), url("fonts/Trenda-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-LightItalic.eot");
src: url("fonts/SanFranciscoText-LightItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-LightItalic.woff") format("woff"), url("fonts/SanFranciscoText-LightItalic.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Regular.eot");
src: url("fonts/SanFranciscoDisplay-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Regular.woff") format("woff"), url("fonts/SanFranciscoDisplay-Regular.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Black.eot");
src: url("fonts/Trenda-Black.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Black.woff") format("woff"), url("fonts/Trenda-Black.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Light.eot");
src: url("fonts/SanFranciscoText-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Light.woff") format("woff"), url("fonts/SanFranciscoText-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda It';
src: url("fonts/Trenda-RegularIt.eot");
src: url("fonts/Trenda-RegularIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-RegularIt.woff") format("woff"), url("fonts/Trenda-RegularIt.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
/*---------------------------------------------------
OCC Theme
----------------------------------------------------*/
/*header and footer backgrounds*/
/*#f1f1f1;*/
/*menu*/
/*buttons*/
/*translate*/
/*headings*/
/*links*/
/*---------------------------------------------------
----------------------------------------------------*/
ul, ol {
margin-top: 1em;
margin-bottom: 1em; }
ul li, ol li {
line-height: 1.2em;
margin-top: .5em;
margin-bottom: .5em; }
h1 + ul,
h1 + ol, h2 + ul,
h2 + ol, h3 + ul,
h3 + ol, h4 + ul,
h4 + ol, h5 + ul,
h5 + ol, h6 + ul,
h6 + ol, p + ul,
p + ol {
margin-top: 0;
margin-bottom: 1em; }
ul, ol {
padding-left: 40px;
display: block; }
ul > ul, ul > ol, ol > ul, ol > ol {
margin: .5em 0; }
ul li:after, ol li:after {
content: "";
display: block;
margin-bottom: 0; }
ul {
list-style-type: disc; }
ol {
list-style-type: decimal; }
ul li {
display: list-item; }
ol li {
display: list-item;
counter-increment: table-ol; }
li {
margin: 0; }
ul.menu-main-menu {
display: inline; }
.usa-unstyled-list {
margin: 0;
padding: 0;
list-style-type: none; }
.usa-unstyled-list li {
display: list-item;
margin: 0; }
.usa-unstyled-list li:before {
display: none; }
.usa-unstyled-list li:after {
display: none; }
div.zone > ul.comments {
padding-left: 0; }
ul.comments {
list-style: none;
list-style-type: none; }
/* This stylesheet generated by Transfonter (https://transfonter.org) on February 25, 2017 6:21 AM */
@font-face {
font-family: 'Trenda Semibold It';
src: url("fonts/Trenda-SemiboldIt.eot");
src: url("fonts/Trenda-SemiboldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-SemiboldIt.woff") format("woff"), url("fonts/Trenda-SemiboldIt.ttf") format("truetype");
font-weight: 600;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Heavy.eot");
src: url("fonts/Trenda-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Heavy.woff") format("woff"), url("fonts/Trenda-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Semibold.eot");
src: url("fonts/Trenda-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Semibold.woff") format("woff"), url("fonts/Trenda-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Heavy It';
src: url("fonts/Trenda-HeavyIt.eot");
src: url("fonts/Trenda-HeavyIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-HeavyIt.woff") format("woff"), url("fonts/Trenda-HeavyIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Semibold.eot");
src: url("fonts/SanFranciscoText-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Semibold.woff") format("woff"), url("fonts/SanFranciscoText-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda ExtraLight It';
src: url("fonts/Trenda-ExtraLightIt.eot");
src: url("fonts/Trenda-ExtraLightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLightIt.woff") format("woff"), url("fonts/Trenda-ExtraLightIt.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Thin.eot");
src: url("fonts/Trenda-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Thin.woff") format("woff"), url("fonts/Trenda-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Heavy.eot");
src: url("fonts/SanFranciscoDisplay-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Heavy.woff") format("woff"), url("fonts/SanFranciscoDisplay-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Medium.eot");
src: url("fonts/SanFranciscoDisplay-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Medium.woff") format("woff"), url("fonts/SanFranciscoDisplay-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Gotham Condensed';
src: url("fonts/GothamCondensed-Bold.eot");
src: url("fonts/GothamCondensed-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/GothamCondensed-Bold.woff") format("woff"), url("fonts/GothamCondensed-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'Trenda Black It';
src: url("fonts/Trenda-BlackIt.eot");
src: url("fonts/Trenda-BlackIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BlackIt.woff") format("woff"), url("fonts/Trenda-BlackIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda Thin It';
src: url("fonts/Trenda-ThinIt.eot");
src: url("fonts/Trenda-ThinIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ThinIt.woff") format("woff"), url("fonts/Trenda-ThinIt.ttf") format("truetype");
font-weight: 100;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Semibold.eot");
src: url("fonts/SanFranciscoDisplay-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Semibold.woff") format("woff"), url("fonts/SanFranciscoDisplay-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Bold It';
src: url("fonts/Trenda-BoldIt.eot");
src: url("fonts/Trenda-BoldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BoldIt.woff") format("woff"), url("fonts/Trenda-BoldIt.ttf") format("truetype");
font-weight: bold;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Thin.eot");
src: url("fonts/SanFranciscoText-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Thin.woff") format("woff"), url("fonts/SanFranciscoText-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda Light It';
src: url("fonts/Trenda-LightIt.eot");
src: url("fonts/Trenda-LightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-LightIt.woff") format("woff"), url("fonts/Trenda-LightIt.ttf") format("truetype");
font-weight: 300;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Heavy.eot");
src: url("fonts/SanFranciscoText-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Heavy.woff") format("woff"), url("fonts/SanFranciscoText-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Italic.eot");
src: url("fonts/SanFranciscoText-Italic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Italic.woff") format("woff"), url("fonts/SanFranciscoText-Italic.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Light.eot");
src: url("fonts/SanFranciscoDisplay-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Light.woff") format("woff"), url("fonts/SanFranciscoDisplay-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Ultralight.eot");
src: url("fonts/SanFranciscoDisplay-Ultralight.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Ultralight.woff") format("woff"), url("fonts/SanFranciscoDisplay-Ultralight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Medium.eot");
src: url("fonts/SanFranciscoText-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Medium.woff") format("woff"), url("fonts/SanFranciscoText-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-ExtraLight.eot");
src: url("fonts/Trenda-ExtraLight.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLight.woff") format("woff"), url("fonts/Trenda-ExtraLight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Regular.eot");
src: url("fonts/SanFranciscoText-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Regular.woff") format("woff"), url("fonts/SanFranciscoText-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Thin.eot");
src: url("fonts/SanFranciscoDisplay-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Thin.woff") format("woff"), url("fonts/SanFranciscoDisplay-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Regular.eot");
src: url("fonts/Trenda-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Regular.woff") format("woff"), url("fonts/Trenda-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-HeavyItalic.eot");
src: url("fonts/SanFranciscoText-HeavyItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-HeavyItalic.woff") format("woff"), url("fonts/SanFranciscoText-HeavyItalic.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Light.eot");
src: url("fonts/Trenda-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Light.woff") format("woff"), url("fonts/Trenda-Light.ttf") format("truetype");
font-weight: 300;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Bold.eot");
src: url("fonts/Trenda-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Bold.woff") format("woff"), url("fonts/Trenda-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-LightItalic.eot");
src: url("fonts/SanFranciscoText-LightItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-LightItalic.woff") format("woff"), url("fonts/SanFranciscoText-LightItalic.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Regular.eot");
src: url("fonts/SanFranciscoDisplay-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Regular.woff") format("woff"), url("fonts/SanFranciscoDisplay-Regular.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Black.eot");
src: url("fonts/Trenda-Black.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Black.woff") format("woff"), url("fonts/Trenda-Black.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Light.eot");
src: url("fonts/SanFranciscoText-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Light.woff") format("woff"), url("fonts/SanFranciscoText-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda It';
src: url("fonts/Trenda-RegularIt.eot");
src: url("fonts/Trenda-RegularIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-RegularIt.woff") format("woff"), url("fonts/Trenda-RegularIt.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
/*---------------------------------------------------
OCC Theme
----------------------------------------------------*/
/*header and footer backgrounds*/
/*#f1f1f1;*/
/*menu*/
/*buttons*/
/*translate*/
/*headings*/
/*links*/
/*---------------------------------------------------
----------------------------------------------------*/
.usa-button,
.usa-button-primary,
.usa-button:visited,
.usa-button-primary:visited,
button,
[type="button"],
[type="submit"],
[type="reset"],
[type="button"],
[type="submit"],
[type="reset"],
[type="image"] {
appearance: none;
background-color: #d52628;
border: 0;
border-radius: 0.3rem;
color: white;
cursor: pointer;
display: inline-block;
font-family: "Trenda", "Helvetica", "Arial", sans-serif;
text-transform: uppercase;
font-size: 1.7rem;
font-weight: normal;
line-height: 1;
margin-top: .5em;
margin-bottom: .5em;
margin-right: .5em;
outline: none;
padding: 1rem 2rem;
/*text-align: center;*/
text-decoration: none;
/*width: 100%;*/
-webkit-font-smoothing: antialiased; }
.usa-button:hover, .usa-button.usa-button-hover,
.usa-button-primary:hover,
.usa-button-primary.usa-button-hover,
.usa-button:visited:hover,
.usa-button:visited.usa-button-hover,
.usa-button-primary:visited:hover,
.usa-button-primary:visited.usa-button-hover,
button:hover,
button.usa-button-hover,
[type="button"]:hover,
[type="button"].usa-button-hover,
[type="submit"]:hover,
[type="submit"].usa-button-hover,
[type="reset"]:hover,
[type="reset"].usa-button-hover,
[type="button"]:hover,
[type="button"].usa-button-hover,
[type="submit"]:hover,
[type="submit"].usa-button-hover,
[type="reset"]:hover,
[type="reset"].usa-button-hover,
[type="image"]:hover,
[type="image"].usa-button-hover {
background-color: #bd2b2d;
border-bottom: 0;
color: white;
text-decoration: none; }
.usa-button:focus, .usa-button.usa-button-focus,
.usa-button-primary:focus,
.usa-button-primary.usa-button-focus,
.usa-button:visited:focus,
.usa-button:visited.usa-button-focus,
.usa-button-primary:visited:focus,
.usa-button-primary:visited.usa-button-focus,
button:focus,
button.usa-button-focus,
[type="button"]:focus,
[type="button"].usa-button-focus,
[type="submit"]:focus,
[type="submit"].usa-button-focus,
[type="reset"]:focus,
[type="reset"].usa-button-focus,
[type="button"]:focus,
[type="button"].usa-button-focus,
[type="submit"]:focus,
[type="submit"].usa-button-focus,
[type="reset"]:focus,
[type="reset"].usa-button-focus,
[type="image"]:focus,
[type="image"].usa-button-focus {
box-shadow: 0 0 3px #3e94cf, 0 0 7px #3e94cf; }
.usa-button:active, .usa-button.usa-button-active,
.usa-button-primary:active,
.usa-button-primary.usa-button-active,
.usa-button:visited:active,
.usa-button:visited.usa-button-active,
.usa-button-primary:visited:active,
.usa-button-primary:visited.usa-button-active,
button:active,
button.usa-button-active,
[type="button"]:active,
[type="button"].usa-button-active,
[type="submit"]:active,
[type="submit"].usa-button-active,
[type="reset"]:active,
[type="reset"].usa-button-active,
[type="button"]:active,
[type="button"].usa-button-active,
[type="submit"]:active,
[type="submit"].usa-button-active,
[type="reset"]:active,
[type="reset"].usa-button-active,
[type="image"]:active,
[type="image"].usa-button-active {
background-color: #bd2b2d; }
@media (min-width: 481px) {
.usa-button,
.usa-button-primary,
.usa-button:visited,
.usa-button-primary:visited,
button,
[type="button"],
[type="submit"],
[type="reset"],
[type="button"],
[type="submit"],
[type="reset"],
[type="image"] {
width: auto; } }
.usa-button.usa-button-primary-alt,
.usa-button-primary.usa-button-primary-alt,
.usa-button:visited.usa-button-primary-alt,
.usa-button-primary:visited.usa-button-primary-alt,
button.usa-button-primary-alt,
[type="button"].usa-button-primary-alt,
[type="submit"].usa-button-primary-alt,
[type="reset"].usa-button-primary-alt,
[type="button"].usa-button-primary-alt,
[type="submit"].usa-button-primary-alt,
[type="reset"].usa-button-primary-alt,
[type="image"].usa-button-primary-alt {
background-color: #02bfe7;
color: #212121; }
.usa-button.usa-button-primary-alt:hover, .usa-button.usa-button-primary-alt.usa-button-hover,
.usa-button-primary.usa-button-primary-alt:hover,
.usa-button-primary.usa-button-primary-alt.usa-button-hover,
.usa-button:visited.usa-button-primary-alt:hover,
.usa-button:visited.usa-button-primary-alt.usa-button-hover,
.usa-button-primary:visited.usa-button-primary-alt:hover,
.usa-button-primary:visited.usa-button-primary-alt.usa-button-hover,
button.usa-button-primary-alt:hover,
button.usa-button-primary-alt.usa-button-hover,
[type="button"].usa-button-primary-alt:hover,
[type="button"].usa-button-primary-alt.usa-button-hover,
[type="submit"].usa-button-primary-alt:hover,
[type="submit"].usa-button-primary-alt.usa-button-hover,
[type="reset"].usa-button-primary-alt:hover,
[type="reset"].usa-button-primary-alt.usa-button-hover,
[type="button"].usa-button-primary-alt:hover,
[type="button"].usa-button-primary-alt.usa-button-hover,
[type="submit"].usa-button-primary-alt:hover,
[type="submit"].usa-button-primary-alt.usa-button-hover,
[type="reset"].usa-button-primary-alt:hover,
[type="reset"].usa-button-primary-alt.usa-button-hover,
[type="image"].usa-button-primary-alt:hover,
[type="image"].usa-button-primary-alt.usa-button-hover {
background-color: #00a6d2; }
.usa-button.usa-button-primary-alt:active, .usa-button.usa-button-primary-alt.usa-button-active,
.usa-button-primary.usa-button-primary-alt:active,
.usa-button-primary.usa-button-primary-alt.usa-button-active,
.usa-button:visited.usa-button-primary-alt:active,
.usa-button:visited.usa-button-primary-alt.usa-button-active,
.usa-button-primary:visited.usa-button-primary-alt:active,
.usa-button-primary:visited.usa-button-primary-alt.usa-button-active,
button.usa-button-primary-alt:active,
button.usa-button-primary-alt.usa-button-active,
[type="button"].usa-button-primary-alt:active,
[type="button"].usa-button-primary-alt.usa-button-active,
[type="submit"].usa-button-primary-alt:active,
[type="submit"].usa-button-primary-alt.usa-button-active,
[type="reset"].usa-button-primary-alt:active,
[type="reset"].usa-button-primary-alt.usa-button-active,
[type="button"].usa-button-primary-alt:active,
[type="button"].usa-button-primary-alt.usa-button-active,
[type="submit"].usa-button-primary-alt:active,
[type="submit"].usa-button-primary-alt.usa-button-active,
[type="reset"].usa-button-primary-alt:active,
[type="reset"].usa-button-primary-alt.usa-button-active,
[type="image"].usa-button-primary-alt:active,
[type="image"].usa-button-primary-alt.usa-button-active {
background-color: #046b99;
color: white; }
.usa-button.usa-button-secondary,
.usa-button-primary.usa-button-secondary,
.usa-button:visited.usa-button-secondary,
.usa-button-primary:visited.usa-button-secondary,
button.usa-button-secondary,
[type="button"].usa-button-secondary,
[type="submit"].usa-button-secondary,
[type="reset"].usa-button-secondary,
[type="button"].usa-button-secondary,
[type="submit"].usa-button-secondary,
[type="reset"].usa-button-secondary,
[type="image"].usa-button-secondary {
background-color: #e31c3d; }
.usa-button.usa-button-secondary:hover, .usa-button.usa-button-secondary.usa-button-hover,
.usa-button-primary.usa-button-secondary:hover,
.usa-button-primary.usa-button-secondary.usa-button-hover,
.usa-button:visited.usa-button-secondary:hover,
.usa-button:visited.usa-button-secondary.usa-button-hover,
.usa-button-primary:visited.usa-button-secondary:hover,
.usa-button-primary:visited.usa-button-secondary.usa-button-hover,
button.usa-button-secondary:hover,
button.usa-button-secondary.usa-button-hover,
[type="button"].usa-button-secondary:hover,
[type="button"].usa-button-secondary.usa-button-hover,
[type="submit"].usa-button-secondary:hover,
[type="submit"].usa-button-secondary.usa-button-hover,
[type="reset"].usa-button-secondary:hover,
[type="reset"].usa-button-secondary.usa-button-hover,
[type="button"].usa-button-secondary:hover,
[type="button"].usa-button-secondary.usa-button-hover,
[type="submit"].usa-button-secondary:hover,
[type="submit"].usa-button-secondary.usa-button-hover,
[type="reset"].usa-button-secondary:hover,
[type="reset"].usa-button-secondary.usa-button-hover,
[type="image"].usa-button-secondary:hover,
[type="image"].usa-button-secondary.usa-button-hover {
background-color: #cd2026; }
.usa-button.usa-button-secondary:active, .usa-button.usa-button-secondary.usa-button-active,
.usa-button-primary.usa-button-secondary:active,
.usa-button-primary.usa-button-secondary.usa-button-active,
.usa-button:visited.usa-button-secondary:active,
.usa-button:visited.usa-button-secondary.usa-button-active,
.usa-button-primary:visited.usa-button-secondary:active,
.usa-button-primary:visited.usa-button-secondary.usa-button-active,
button.usa-button-secondary:active,
button.usa-button-secondary.usa-button-active,
[type="button"].usa-button-secondary:active,
[type="button"].usa-button-secondary.usa-button-active,
[type="submit"].usa-button-secondary:active,
[type="submit"].usa-button-secondary.usa-button-active,
[type="reset"].usa-button-secondary:active,
[type="reset"].usa-button-secondary.usa-button-active,
[type="button"].usa-button-secondary:active,
[type="button"].usa-button-secondary.usa-button-active,
[type="submit"].usa-button-secondary:active,
[type="submit"].usa-button-secondary.usa-button-active,
[type="reset"].usa-button-secondary:active,
[type="reset"].usa-button-secondary.usa-button-active,
[type="image"].usa-button-secondary:active,
[type="image"].usa-button-secondary.usa-button-active {
background-color: #981b1e; }
.usa-button.usa-button-gray,
.usa-button-primary.usa-button-gray,
.usa-button:visited.usa-button-gray,
.usa-button-primary:visited.usa-button-gray,
button.usa-button-gray,
[type="button"].usa-button-gray,
[type="submit"].usa-button-gray,
[type="reset"].usa-button-gray,
[type="button"].usa-button-gray,
[type="submit"].usa-button-gray,
[type="reset"].usa-button-gray,
[type="image"].usa-button-gray {
background-color: #5b616b; }
.usa-button.usa-button-gray:hover, .usa-button.usa-button-gray.usa-button-hover,
.usa-button-primary.usa-button-gray:hover,
.usa-button-primary.usa-button-gray.usa-button-hover,
.usa-button:visited.usa-button-gray:hover,
.usa-button:visited.usa-button-gray.usa-button-hover,
.usa-button-primary:visited.usa-button-gray:hover,
.usa-button-primary:visited.usa-button-gray.usa-button-hover,
button.usa-button-gray:hover,
button.usa-button-gray.usa-button-hover,
[type="button"].usa-button-gray:hover,
[type="button"].usa-button-gray.usa-button-hover,
[type="submit"].usa-button-gray:hover,
[type="submit"].usa-button-gray.usa-button-hover,
[type="reset"].usa-button-gray:hover,
[type="reset"].usa-button-gray.usa-button-hover,
[type="button"].usa-button-gray:hover,
[type="button"].usa-button-gray.usa-button-hover,
[type="submit"].usa-button-gray:hover,
[type="submit"].usa-button-gray.usa-button-hover,
[type="reset"].usa-button-gray:hover,
[type="reset"].usa-button-gray.usa-button-hover,
[type="image"].usa-button-gray:hover,
[type="image"].usa-button-gray.usa-button-hover {
background-color: #323a45; }
.usa-button.usa-button-gray:active, .usa-button.usa-button-gray.usa-button-active,
.usa-button-primary.usa-button-gray:active,
.usa-button-primary.usa-button-gray.usa-button-active,
.usa-button:visited.usa-button-gray:active,
.usa-button:visited.usa-button-gray.usa-button-active,
.usa-button-primary:visited.usa-button-gray:active,
.usa-button-primary:visited.usa-button-gray.usa-button-active,
button.usa-button-gray:active,
button.usa-button-gray.usa-button-active,
[type="button"].usa-button-gray:active,
[type="button"].usa-button-gray.usa-button-active,
[type="submit"].usa-button-gray:active,
[type="submit"].usa-button-gray.usa-button-active,
[type="reset"].usa-button-gray:active,
[type="reset"].usa-button-gray.usa-button-active,
[type="button"].usa-button-gray:active,
[type="button"].usa-button-gray.usa-button-active,
[type="submit"].usa-button-gray:active,
[type="submit"].usa-button-gray.usa-button-active,
[type="reset"].usa-button-gray:active,
[type="reset"].usa-button-gray.usa-button-active,
[type="image"].usa-button-gray:active,
[type="image"].usa-button-gray.usa-button-active {
background-color: #212121; }
.usa-button.usa-button-outline,
.usa-button-primary.usa-button-outline,
.usa-button:visited.usa-button-outline,
.usa-button-primary:visited.usa-button-outline,
button.usa-button-outline,
[type="button"].usa-button-outline,
[type="submit"].usa-button-outline,
[type="reset"].usa-button-outline,
[type="button"].usa-button-outline,
[type="submit"].usa-button-outline,
[type="reset"].usa-button-outline,
[type="image"].usa-button-outline {
background-color: #ffffff;
box-shadow: inset 0 0 0 2px #0071bc;
color: #0071bc; }
.usa-button.usa-button-outline:hover, .usa-button.usa-button-outline.usa-button-hover,
.usa-button-primary.usa-button-outline:hover,
.usa-button-primary.usa-button-outline.usa-button-hover,
.usa-button:visited.usa-button-outline:hover,
.usa-button:visited.usa-button-outline.usa-button-hover,
.usa-button-primary:visited.usa-button-outline:hover,
.usa-button-primary:visited.usa-button-outline.usa-button-hover,
button.usa-button-outline:hover,
button.usa-button-outline.usa-button-hover,
[type="button"].usa-button-outline:hover,
[type="button"].usa-button-outline.usa-button-hover,
[type="submit"].usa-button-outline:hover,
[type="submit"].usa-button-outline.usa-button-hover,
[type="reset"].usa-button-outline:hover,
[type="reset"].usa-button-outline.usa-button-hover,
[type="button"].usa-button-outline:hover,
[type="button"].usa-button-outline.usa-button-hover,
[type="submit"].usa-button-outline:hover,
[type="submit"].usa-button-outline.usa-button-hover,
[type="reset"].usa-button-outline:hover,
[type="reset"].usa-button-outline.usa-button-hover,
[type="image"].usa-button-outline:hover,
[type="image"].usa-button-outline.usa-button-hover {
box-shadow: inset 0 0 0 2px #205493;
color: #205493; }
.usa-button.usa-button-outline:active, .usa-button.usa-button-outline.usa-button-active,
.usa-button-primary.usa-button-outline:active,
.usa-button-primary.usa-button-outline.usa-button-active,
.usa-button:visited.usa-button-outline:active,
.usa-button:visited.usa-button-outline.usa-button-active,
.usa-button-primary:visited.usa-button-outline:active,
.usa-button-primary:visited.usa-button-outline.usa-button-active,
button.usa-button-outline:active,
button.usa-button-outline.usa-button-active,
[type="button"].usa-button-outline:active,
[type="button"].usa-button-outline.usa-button-active,
[type="submit"].usa-button-outline:active,
[type="submit"].usa-button-outline.usa-button-active,
[type="reset"].usa-button-outline:active,
[type="reset"].usa-button-outline.usa-button-active,
[type="button"].usa-button-outline:active,
[type="button"].usa-button-outline.usa-button-active,
[type="submit"].usa-button-outline:active,
[type="submit"].usa-button-outline.usa-button-active,
[type="reset"].usa-button-outline:active,
[type="reset"].usa-button-outline.usa-button-active,
[type="image"].usa-button-outline:active,
[type="image"].usa-button-outline.usa-button-active {
box-shadow: inset 0 0 0 2px #112e51;
color: #112e51; }
.usa-button.usa-button-outline:focus, .usa-button.usa-button-outline.usa-button-focus,
.usa-button-primary.usa-button-outline:focus,
.usa-button-primary.usa-button-outline.usa-button-focus,
.usa-button:visited.usa-button-outline:focus,
.usa-button:visited.usa-button-outline.usa-button-focus,
.usa-button-primary:visited.usa-button-outline:focus,
.usa-button-primary:visited.usa-button-outline.usa-button-focus,
button.usa-button-outline:focus,
button.usa-button-outline.usa-button-focus,
[type="button"].usa-button-outline:focus,
[type="button"].usa-button-outline.usa-button-focus,
[type="submit"].usa-button-outline:focus,
[type="submit"].usa-button-outline.usa-button-focus,
[type="reset"].usa-button-outline:focus,
[type="reset"].usa-button-outline.usa-button-focus,
[type="button"].usa-button-outline:focus,
[type="button"].usa-button-outline.usa-button-focus,
[type="submit"].usa-button-outline:focus,
[type="submit"].usa-button-outline.usa-button-focus,
[type="reset"].usa-button-outline:focus,
[type="reset"].usa-button-outline.usa-button-focus,
[type="image"].usa-button-outline:focus,
[type="image"].usa-button-outline.usa-button-focus {
box-shadow: inset 0 0 0 2px #112e51, 0 0 3px #3e94cf, 0 0 7px #3e94cf; }
.usa-button.usa-button-outline-inverse,
.usa-button-primary.usa-button-outline-inverse,
.usa-button:visited.usa-button-outline-inverse,
.usa-button-primary:visited.usa-button-outline-inverse,
button.usa-button-outline-inverse,
[type="button"].usa-button-outline-inverse,
[type="submit"].usa-button-outline-inverse,
[type="reset"].usa-button-outline-inverse,
[type="button"].usa-button-outline-inverse,
[type="submit"].usa-button-outline-inverse,
[type="reset"].usa-button-outline-inverse,
[type="image"].usa-button-outline-inverse {
background: transparent;
box-shadow: inset 0 0 0 2px #ffffff;
color: #ffffff; }
.usa-button.usa-button-outline-inverse:hover, .usa-button.usa-button-outline-inverse.usa-button-hover,
.usa-button-primary.usa-button-outline-inverse:hover,
.usa-button-primary.usa-button-outline-inverse.usa-button-hover,
.usa-button:visited.usa-button-outline-inverse:hover,
.usa-button:visited.usa-button-outline-inverse.usa-button-hover,
.usa-button-primary:visited.usa-button-outline-inverse:hover,
.usa-button-primary:visited.usa-button-outline-inverse.usa-button-hover,
button.usa-button-outline-inverse:hover,
button.usa-button-outline-inverse.usa-button-hover,
[type="button"].usa-button-outline-inverse:hover,
[type="button"].usa-button-outline-inverse.usa-button-hover,
[type="submit"].usa-button-outline-inverse:hover,
[type="submit"].usa-button-outline-inverse.usa-button-hover,
[type="reset"].usa-button-outline-inverse:hover,
[type="reset"].usa-button-outline-inverse.usa-button-hover,
[type="button"].usa-button-outline-inverse:hover,
[type="button"].usa-button-outline-inverse.usa-button-hover,
[type="submit"].usa-button-outline-inverse:hover,
[type="submit"].usa-button-outline-inverse.usa-button-hover,
[type="reset"].usa-button-outline-inverse:hover,
[type="reset"].usa-button-outline-inverse.usa-button-hover,
[type="image"].usa-button-outline-inverse:hover,
[type="image"].usa-button-outline-inverse.usa-button-hover {
box-shadow: inset 0 0 0 2px #d6d7d9;
color: #d6d7d9; }
.usa-button.usa-button-outline-inverse:active, .usa-button.usa-button-outline-inverse.usa-button-active,
.usa-button-primary.usa-button-outline-inverse:active,
.usa-button-primary.usa-button-outline-inverse.usa-button-active,
.usa-button:visited.usa-button-outline-inverse:active,
.usa-button:visited.usa-button-outline-inverse.usa-button-active,
.usa-button-primary:visited.usa-button-outline-inverse:active,
.usa-button-primary:visited.usa-button-outline-inverse.usa-button-active,
button.usa-button-outline-inverse:active,
button.usa-button-outline-inverse.usa-button-active,
[type="button"].usa-button-outline-inverse:active,
[type="button"].usa-button-outline-inverse.usa-button-active,
[type="submit"].usa-button-outline-inverse:active,
[type="submit"].usa-button-outline-inverse.usa-button-active,
[type="reset"].usa-button-outline-inverse:active,
[type="reset"].usa-button-outline-inverse.usa-button-active,
[type="button"].usa-button-outline-inverse:active,
[type="button"].usa-button-outline-inverse.usa-button-active,
[type="submit"].usa-button-outline-inverse:active,
[type="submit"].usa-button-outline-inverse.usa-button-active,
[type="reset"].usa-button-outline-inverse:active,
[type="reset"].usa-button-outline-inverse.usa-button-active,
[type="image"].usa-button-outline-inverse:active,
[type="image"].usa-button-outline-inverse.usa-button-active {
box-shadow: inset 0 0 0 2px #aeb0b5;
color: #d6d7d9; }
.usa-button.usa-button-outline-inverse:focus, .usa-button.usa-button-outline-inverse.usa-button-focus,
.usa-button-primary.usa-button-outline-inverse:focus,
.usa-button-primary.usa-button-outline-inverse.usa-button-focus,
.usa-button:visited.usa-button-outline-inverse:focus,
.usa-button:visited.usa-button-outline-inverse.usa-button-focus,
.usa-button-primary:visited.usa-button-outline-inverse:focus,
.usa-button-primary:visited.usa-button-outline-inverse.usa-button-focus,
button.usa-button-outline-inverse:focus,
button.usa-button-outline-inverse.usa-button-focus,
[type="button"].usa-button-outline-inverse:focus,
[type="button"].usa-button-outline-inverse.usa-button-focus,
[type="submit"].usa-button-outline-inverse:focus,
[type="submit"].usa-button-outline-inverse.usa-button-focus,
[type="reset"].usa-button-outline-inverse:focus,
[type="reset"].usa-button-outline-inverse.usa-button-focus,
[type="button"].usa-button-outline-inverse:focus,
[type="button"].usa-button-outline-inverse.usa-button-focus,
[type="submit"].usa-button-outline-inverse:focus,
[type="submit"].usa-button-outline-inverse.usa-button-focus,
[type="reset"].usa-button-outline-inverse:focus,
[type="reset"].usa-button-outline-inverse.usa-button-focus,
[type="image"].usa-button-outline-inverse:focus,
[type="image"].usa-button-outline-inverse.usa-button-focus {
box-shadow: inset 0 0 0 2px #aeb0b5, 0 0 3px #3e94cf, 0 0 7px #3e94cf; }
.usa-button.usa-button-big,
.usa-button-primary.usa-button-big,
.usa-button:visited.usa-button-big,
.usa-button-primary:visited.usa-button-big,
button.usa-button-big,
[type="button"].usa-button-big,
[type="submit"].usa-button-big,
[type="reset"].usa-button-big,
[type="button"].usa-button-big,
[type="submit"].usa-button-big,
[type="reset"].usa-button-big,
[type="image"].usa-button-big {
font-size: 1.9rem;
padding: 1.5rem 3rem; }
[type="submit"]:disabled,
.usa-button-disabled {
background-color: #d6d7d9;
color: #323a45;
cursor: default; }
[type="submit"]:disabled:hover, [type="submit"]:disabled.usa-button-hover, [type="submit"]:disabled:active, [type="submit"]:disabled.usa-button-active, [type="submit"]:disabled:focus,
.usa-button-disabled:hover,
.usa-button-disabled.usa-button-hover,
.usa-button-disabled:active,
.usa-button-disabled.usa-button-active,
.usa-button-disabled:focus {
background-color: #d6d7d9;
border: 0;
box-shadow: none;
color: #323a45; }
.usa-button-unstyled {
background: none;
border: 0;
border-radius: 0;
outline: 0;
padding: 0;
text-align: left; }
.usa-button-unstyled:focus, .usa-button-unstyled:hover {
box-shadow: initial; }
table {
border-spacing: 0;
margin: 2em 0;
min-width: 100%; }
table tbody td {
text-align: center; }
table thead tr {
background-color: #f1f1f1; }
table thead th {
text-align: center; }
table th, table td {
border: 1px solid #5b616b;
padding: 1.5rem; }
.usa-table-borderless thead tr {
background-color: transparent; }
.usa-table-borderless thead tr th {
border-top: 0; }
.usa-table-borderless th, .usa-table-borderless td {
border-left: 0;
border-right: 0; }
img {
max-width: 100%; }
.thumbnail {
display: block;
padding: 4px;
margin-bottom: 20px;
line-height: 1.42857143;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 4px;
-webkit-transition: border .2s ease-in-out;
-o-transition: border .2s ease-in-out;
transition: border .2s ease-in-out; }
a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active {
border-color: #1a325d; }
a.thumbnail:focus {
box-shadow: none; }
blockquote {
padding: 10px 20px;
margin: 0 0 20px;
border-left: 5px solid #1a325d;
box-shadow: none; }
.skipnav {
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
background: transparent;
color: #212121;
left: 0;
padding-bottom: 1rem;
padding-left: 1.5rem;
padding-right: 1.5rem;
padding-top: 1rem;
position: absolute;
top: -4.2rem;
z-index: 100; }
.skipnav:focus {
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
background: #ffffff;
left: 0;
outline: 0;
position: absolute;
top: 0; }
.usa-disclaimer {
background-color: #f1f1f1;
font-size: 1.3rem;
padding-bottom: .5rem;
padding-top: .5rem; }
@media screen and (min-width: 481px) {
.usa-disclaimer {
font-size: 1.5rem; } }
.usa-disclaimer-stage {
display: none;
float: right; }
@media screen and (min-width: 1000px) {
.usa-disclaimer-stage {
display: block; } }
.usa-flag_icon {
margin-right: .2rem; }
.usa-sidenav-list {
display: block;
margin: 0;
padding: 0;
list-style-type: none; }
.usa-sidenav-list li {
display: list-item;
margin: 0; }
.usa-sidenav-list li:before {
display: none; }
.usa-sidenav-list li:after {
display: none; }
.usa-sidenav-list li {
border-top: 1px solid #5b616b;
font-size: 1.7rem; }
.usa-sidenav-list li:first-child {
border-top: none; }
.usa-sidenav-list a {
border: none;
color: #212121;
display: block;
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif;
line-height: 1;
padding-bottom: 1rem;
padding-left: 1.8rem;
padding-right: 1rem;
padding-top: 1rem; }
.usa-sidenav-list a:hover {
background-color: #f1f1f1;
color: #0071bc;
text-decoration: none; }
.usa-sidenav-list a.usa-current {
color: #0071bc;
font-weight: 600; }
.usa-sidenav-list a.usa-current {
border-left: 4px solid #0071bc;
padding-left: 1.4rem; }
.usa-sidenav-sub_list {
margin: 0;
width: 100%; }
.usa-sidenav-sub_list li {
border: none;
font-size: 1.5rem; }
.usa-sidenav-sub_list a {
padding-left: 2.8rem;
line-height: 1.3; }
.usa-sidenav-sub_list a:hover,
.usa-sidenav-sub_list a.usa-current {
border: none;
padding-left: 2.8rem; }
.usa-sidenav-sub_list .usa-sidenav-sub_list a {
padding-left: 3.8rem; }
.usa-sidenav-sub_list .usa-sidenav-sub_list a:hover {
padding-left: 3.8rem; }
@media screen and (min-width: 727px) {
form {
max-width: 100%; } }
form a {
border-bottom: 0; }
form button[type="submit"],
form input[type="submit"] {
display: block;
margin-top: 2.5rem;
margin-bottom: 1.5em; }
@media screen and (min-width: 727px) {
form button[type="submit"],
form input[type="submit"] {
padding-left: 2.7em;
padding-right: 2.7em;
width: auto; } }
form input[name="password"] {
margin-bottom: 1.1rem; }
form input[type="checkbox"], form input[type="radio"] {
position: inherit;
left: 0;
display: inline;
width: 20px; }
form input[type="checkbox"]:focus, form input[type="radio"]:focus {
box-shadow: none; }
.usa-form-note {
float: right;
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif;
font-size: 1.5rem;
margin: 0;
margin-bottom: 1.5rem; }
.usa-form-note + * {
clear: both; }
fieldset {
border: none;
margin: 0;
padding: 0; }
@media screen and (min-width: 727px) {
.usa-form-large {
max-width: 46rem; } }
@media screen and (min-width: 727px) {
input.usa-input-tiny {
max-width: 6rem; } }
@media screen and (min-width: 727px) {
input.usa-input-medium {
max-width: 12rem; } }
@media screen and (min-width: 727px) {
.usa-input-grid {
padding-right: 5%; } }
@media screen and (min-width: 727px) {
.usa-input-grid:last-of-type {
padding-right: 0; } }
@media screen and (min-width: 727px) {
.usa-input-grid-small {
float: left;
width: 35%; } }
.usa-input-grid-small input {
margin-bottom: 3rem; }
.usa-input-grid-small select {
margin-bottom: 3rem; }
@media screen and (min-width: 727px) {
.usa-input-grid-medium {
float: left;
width: 65%; } }
.usa-input-grid-medium input {
margin-bottom: 3rem; }
.usa-input-grid-medium select {
margin-bottom: 3rem; }
@media screen and (min-width: 727px) {
.usa-input-grid-large {
float: left;
width: 100%; } }
.usa-input-grid-large input {
margin-bottom: 3rem; }
.usa-input-grid-large select {
margin-bottom: 3rem; }
.usa-form-width {
max-width: 100%; }
.usa-additional_text {
float: right;
font-style: italic;
font-weight: normal; }
.usa-input-buttons-inline button,
.usa-input-buttons-inline button[type="submit"],
.usa-input-buttons-inline input[type="submit"],
.usa-input-buttons-inline > * {
display: inline;
margin-right: 1.5em; }
.usa-checklist {
list-style: none;
margin-left: 0;
padding-left: 0; }
.usa-checklist li {
display: inline-block;
list-style: none;
margin-bottom: 0em;
margin-top: 0em;
padding-left: 3em;
text-indent: -2em; }
.usa-checklist li:before {
content: ' ';
display: inline-block;
height: .8em;
margin-right: .2em;
width: 1.8em; }
.usa-checklist-checked:before {
background-image: url("../img/correct9.png");
background-image: url("../img/correct9.svg");
background-position: 100%;
background-repeat: no-repeat;
background-size: 100%; }
form.comment-form ol {
list-style: none;
list-style-type: none;
padding-left: 0; }
form.comment-form textarea {
max-width: none;
width: 100% !important; }
article.comment span.reply {
background-color: #E6E6E6;
padding: 0 3px; }
article.comment h4 {
font-weight: normal; }
article.comment h4 span.who {
font-weight: 700; }
.usa-search {
max-width: none;
position: relative; }
.usa-search:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden; }
.usa-search [type="search"],
.usa-search .usa-search-input {
-webkit-appearance: none;
border-bottom-right-radius: 0;
border-right: none;
border-top-right-radius: 0;
float: left;
height: 3.3rem;
margin: 0;
padding-bottom: 0;
padding-top: 0;
width: calc(100% - 4.5rem); }
@media screen and (min-width: 481px) {
.usa-search [type="search"],
.usa-search .usa-search-input {
width: calc(100% - 8.5rem); } }
.usa-search [type="submit"],
.usa-search .usa-search-submit {
background-image: url("../img/search.png");
background-image: url("../img/search.svg");
background-position: 50%;
background-repeat: no-repeat;
border-bottom-left-radius: 0;
border-top-left-radius: 0;
height: 3.3rem;
margin: 0;
padding: 0;
width: 4.5rem; }
@media screen and (min-width: 481px) {
.usa-search [type="submit"],
.usa-search .usa-search-submit {
background-image: none;
width: 8.5rem; } }
.usa-search .usa-search-submit-text {
display: none; }
@media screen and (min-width: 481px) {
.usa-search .usa-search-submit-text {
display: block; } }
@media screen and (min-width: 481px) {
.usa-search.usa-search-big [type="search"],
.usa-search.usa-search-big .usa-search-input {
height: 4.4rem;
width: calc(100% - 11.6rem); }
.usa-search.usa-search-big [type="submit"],
.usa-search.usa-search-big .usa-search-submit {
height: 4.4rem;
font-size: 2rem;
width: 11.6rem; } }
@media screen and (min-width: 481px) {
.usa-search.usa-search-small [type="search"],
.usa-search.usa-search-small .usa-search-input {
width: calc(100% - 4.5rem); }
.usa-search.usa-search-small [type="submit"],
.usa-search.usa-search-small .usa-search-submit {
background-image: url("../img/search.png");
background-image: url("../img/search.svg");
background-position: 50%;
background-repeat: no-repeat;
width: 4.5rem; } }
.usa-alert, .zone .alert {
background-color: #eeeeee;
background-position: 1rem 2rem;
background-repeat: no-repeat;
background-size: 4rem;
margin-top: 1.5em;
padding: 1em;
margin-bottom: 1rem; }
@media screen and (min-width: 727px) {
.usa-alert, .zone .alert {
background-size: 5.2rem; } }
.usa-alert ul, .zone .alert ul {
margin-bottom: 0;
margin-top: 1em; }
.usa-alert-icon {
display: table-cell;
padding-right: 1rem; }
.usa-alert-body {
display: table-cell;
padding-left: 3.5rem;
vertical-align: top; }
@media screen and (min-width: 727px) {
.usa-alert-body {
padding-left: 5rem;
padding-top: 1rem; } }
.usa-alert-heading {
margin-bottom: .3rem;
margin-top: 0; }
@media screen and (min-width: 727px) {
.usa-alert-heading {
margin-top: .3rem; } }
.usa-alert-text {
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif;
margin-bottom: 0;
margin-top: 0; }
.usa-alert-success {
background-color: #E5FCDE;
background-image: url("../img/alerts/success.png");
background-image: url("../img/alerts/success.svg"); }
.usa-alert-warning {
background-color: #FDF7DC;
background-image: url("../img/alerts/warning.png");
background-image: url("../img/alerts/warning.svg"); }
.usa-alert-error {
background-color: #F9DEDE;
background-image: url("../img/alerts/error.png");
background-image: url("../img/alerts/error.svg"); }
.usa-alert-info {
background-color: #E8F5FA;
background-image: url("../img/alerts/info.png");
background-image: url("../img/alerts/info.svg"); }
.usa-alert-no_icon {
background-image: none; }
.usa-accordion + .usa-accordion,
.usa-accordion + .usa-accordion-bordered,
.usa-accordion-bordered + .usa-accordion,
.usa-accordion-bordered + .usa-accordion-bordered {
margin-top: 1rem; }
.usa-accordion > ul,
.usa-accordion-bordered > ul {
color: #212121;
margin: 0;
padding: 0;
width: 100%; }
.usa-accordion > ul > li,
.usa-accordion-bordered > ul > li {
background-color: #f1f1f1;
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif;
list-style: none;
margin-bottom: 6px;
width: 100%; }
.usa-accordion button[aria-expanded=false],
.usa-accordion-bordered button[aria-expanded=false] {
background-image: url("../img/plus.png");
background-image: url("../img/plus.svg");
background-repeat: no-repeat;
background-size: 1.3rem; }
.usa-accordion button,
.usa-accordion-bordered button {
background-color: #f1f1f1;
background-image: url("../img/minus.png");
background-image: url("../img/minus.svg");
background-position: right 3rem center;
background-repeat: no-repeat;
background-size: 13px;
color: #212121;
cursor: pointer;
display: inline-block;
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif;
margin: 0;
padding-bottom: 1.5rem;
padding-left: 3rem;
padding-right: 5.5rem;
padding-top: 1.5rem;
width: 100%; }
.usa-accordion button:focus,
.usa-accordion-bordered button:focus {
box-shadow: 0 0 3px #3e94cf, 0 0 7px #3e94cf; }
.usa-accordion button:hover,
.usa-accordion-bordered button:hover {
background-color: #d6d7d9;
color: #212121; }
.usa-accordion button h1, .usa-accordion button h2, .usa-accordion button h3, .usa-accordion button h4, .usa-accordion button h5, .usa-accordion button h6,
.usa-accordion-bordered button h1,
.usa-accordion-bordered button h2,
.usa-accordion-bordered button h3,
.usa-accordion-bordered button h4,
.usa-accordion-bordered button h5,
.usa-accordion-bordered button h6 {
margin: 0; }
.usa-accordion-bordered .usa-accordion-content {
border-bottom: 3px solid #f1f1f1;
border-left: 3px solid #f1f1f1;
border-right: 3px solid #f1f1f1; }
.usa-accordion-content {
display: block;
background-color: white;
overflow: auto;
padding: 3rem; }
.usa-accordion-content > *:first-child {
margin-top: 0; }
.usa-accordion-content > *:last-child {
margin-bottom: 0; }
/* This stylesheet generated by Transfonter (https://transfonter.org) on February 25, 2017 6:21 AM */
@font-face {
font-family: 'Trenda Semibold It';
src: url("fonts/Trenda-SemiboldIt.eot");
src: url("fonts/Trenda-SemiboldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-SemiboldIt.woff") format("woff"), url("fonts/Trenda-SemiboldIt.ttf") format("truetype");
font-weight: 600;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Heavy.eot");
src: url("fonts/Trenda-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Heavy.woff") format("woff"), url("fonts/Trenda-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Semibold.eot");
src: url("fonts/Trenda-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Semibold.woff") format("woff"), url("fonts/Trenda-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Heavy It';
src: url("fonts/Trenda-HeavyIt.eot");
src: url("fonts/Trenda-HeavyIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-HeavyIt.woff") format("woff"), url("fonts/Trenda-HeavyIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Semibold.eot");
src: url("fonts/SanFranciscoText-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Semibold.woff") format("woff"), url("fonts/SanFranciscoText-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda ExtraLight It';
src: url("fonts/Trenda-ExtraLightIt.eot");
src: url("fonts/Trenda-ExtraLightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLightIt.woff") format("woff"), url("fonts/Trenda-ExtraLightIt.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Thin.eot");
src: url("fonts/Trenda-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Thin.woff") format("woff"), url("fonts/Trenda-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Heavy.eot");
src: url("fonts/SanFranciscoDisplay-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Heavy.woff") format("woff"), url("fonts/SanFranciscoDisplay-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Medium.eot");
src: url("fonts/SanFranciscoDisplay-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Medium.woff") format("woff"), url("fonts/SanFranciscoDisplay-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Gotham Condensed';
src: url("fonts/GothamCondensed-Bold.eot");
src: url("fonts/GothamCondensed-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/GothamCondensed-Bold.woff") format("woff"), url("fonts/GothamCondensed-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'Trenda Black It';
src: url("fonts/Trenda-BlackIt.eot");
src: url("fonts/Trenda-BlackIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BlackIt.woff") format("woff"), url("fonts/Trenda-BlackIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda Thin It';
src: url("fonts/Trenda-ThinIt.eot");
src: url("fonts/Trenda-ThinIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ThinIt.woff") format("woff"), url("fonts/Trenda-ThinIt.ttf") format("truetype");
font-weight: 100;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Semibold.eot");
src: url("fonts/SanFranciscoDisplay-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Semibold.woff") format("woff"), url("fonts/SanFranciscoDisplay-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Bold It';
src: url("fonts/Trenda-BoldIt.eot");
src: url("fonts/Trenda-BoldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BoldIt.woff") format("woff"), url("fonts/Trenda-BoldIt.ttf") format("truetype");
font-weight: bold;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Thin.eot");
src: url("fonts/SanFranciscoText-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Thin.woff") format("woff"), url("fonts/SanFranciscoText-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda Light It';
src: url("fonts/Trenda-LightIt.eot");
src: url("fonts/Trenda-LightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-LightIt.woff") format("woff"), url("fonts/Trenda-LightIt.ttf") format("truetype");
font-weight: 300;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Heavy.eot");
src: url("fonts/SanFranciscoText-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Heavy.woff") format("woff"), url("fonts/SanFranciscoText-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Italic.eot");
src: url("fonts/SanFranciscoText-Italic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Italic.woff") format("woff"), url("fonts/SanFranciscoText-Italic.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Light.eot");
src: url("fonts/SanFranciscoDisplay-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Light.woff") format("woff"), url("fonts/SanFranciscoDisplay-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Ultralight.eot");
src: url("fonts/SanFranciscoDisplay-Ultralight.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Ultralight.woff") format("woff"), url("fonts/SanFranciscoDisplay-Ultralight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Medium.eot");
src: url("fonts/SanFranciscoText-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Medium.woff") format("woff"), url("fonts/SanFranciscoText-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-ExtraLight.eot");
src: url("fonts/Trenda-ExtraLight.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLight.woff") format("woff"), url("fonts/Trenda-ExtraLight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Regular.eot");
src: url("fonts/SanFranciscoText-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Regular.woff") format("woff"), url("fonts/SanFranciscoText-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Thin.eot");
src: url("fonts/SanFranciscoDisplay-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Thin.woff") format("woff"), url("fonts/SanFranciscoDisplay-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Regular.eot");
src: url("fonts/Trenda-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Regular.woff") format("woff"), url("fonts/Trenda-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-HeavyItalic.eot");
src: url("fonts/SanFranciscoText-HeavyItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-HeavyItalic.woff") format("woff"), url("fonts/SanFranciscoText-HeavyItalic.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Light.eot");
src: url("fonts/Trenda-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Light.woff") format("woff"), url("fonts/Trenda-Light.ttf") format("truetype");
font-weight: 300;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Bold.eot");
src: url("fonts/Trenda-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Bold.woff") format("woff"), url("fonts/Trenda-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-LightItalic.eot");
src: url("fonts/SanFranciscoText-LightItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-LightItalic.woff") format("woff"), url("fonts/SanFranciscoText-LightItalic.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Regular.eot");
src: url("fonts/SanFranciscoDisplay-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Regular.woff") format("woff"), url("fonts/SanFranciscoDisplay-Regular.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Black.eot");
src: url("fonts/Trenda-Black.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Black.woff") format("woff"), url("fonts/Trenda-Black.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Light.eot");
src: url("fonts/SanFranciscoText-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Light.woff") format("woff"), url("fonts/SanFranciscoText-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda It';
src: url("fonts/Trenda-RegularIt.eot");
src: url("fonts/Trenda-RegularIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-RegularIt.woff") format("woff"), url("fonts/Trenda-RegularIt.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
/*---------------------------------------------------
OCC Theme
----------------------------------------------------*/
/*header and footer backgrounds*/
/*#f1f1f1;*/
/*menu*/
/*buttons*/
/*translate*/
/*headings*/
/*links*/
/*---------------------------------------------------
----------------------------------------------------*/
.widget-translate {
margin-top: 2px; }
#layout-header img {
margin: 5px 0; }
#hero, .tilewrapper, .librarywrapper {
max-width: 68em;
margin-left: auto;
margin-right: auto; }
#hero:after, .tilewrapper:after, .librarywrapper:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden; }
.row {
margin: 0 -10px;
clear: both; }
#layout-navigation {
padding-top: 2rem; }
.widget-content {
clear: both; }
[class*="usa-width-"]:nth-last-of-type(1) {
margin-right: 0 !important; }
.search_translate {
width: 300px;
float: right; }
.projection-page > ul, .widget-projection-widget > ul {
padding: 0;
list-style: none;
list-style-type: none; }
ul.tagged-posts {
padding: 0;
list-style: none;
list-style-type: none; }
.usa-accordion-content {
border: 2px solid #F1F1F1; }
.social_icons img {
vertical-align: middle; }
.social_icons span {
font-size: 14px; }
.inline {
display: inline !important; }
#layout-content article.widget:first-of-type > header > h1,
html.detail-projection-page article.blog-post:first-of-type > header > h1,
html.orchard-blogs article.blog-post:first-of-type > header > h1,
html.orchard-tags article.blog-post:first-of-type > header > h1 {
margin-top: 0; }
#layout-main-container {
margin-top: 1rem; }
@media screen and (min-width: 727px) {
body {
padding-top: 1rem; } }
.recaptchatable, #recaptcha_area tr, #recaptcha_area td, #recaptcha_area th {
line-height: 0 !important; }
#recaptcha_area input {
height: auto;
display: inline; }
/* This stylesheet generated by Transfonter (https://transfonter.org) on February 25, 2017 6:21 AM */
@font-face {
font-family: 'Trenda Semibold It';
src: url("fonts/Trenda-SemiboldIt.eot");
src: url("fonts/Trenda-SemiboldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-SemiboldIt.woff") format("woff"), url("fonts/Trenda-SemiboldIt.ttf") format("truetype");
font-weight: 600;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Heavy.eot");
src: url("fonts/Trenda-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Heavy.woff") format("woff"), url("fonts/Trenda-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Semibold.eot");
src: url("fonts/Trenda-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Semibold.woff") format("woff"), url("fonts/Trenda-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Heavy It';
src: url("fonts/Trenda-HeavyIt.eot");
src: url("fonts/Trenda-HeavyIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-HeavyIt.woff") format("woff"), url("fonts/Trenda-HeavyIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Semibold.eot");
src: url("fonts/SanFranciscoText-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Semibold.woff") format("woff"), url("fonts/SanFranciscoText-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda ExtraLight It';
src: url("fonts/Trenda-ExtraLightIt.eot");
src: url("fonts/Trenda-ExtraLightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLightIt.woff") format("woff"), url("fonts/Trenda-ExtraLightIt.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Thin.eot");
src: url("fonts/Trenda-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Thin.woff") format("woff"), url("fonts/Trenda-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Heavy.eot");
src: url("fonts/SanFranciscoDisplay-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Heavy.woff") format("woff"), url("fonts/SanFranciscoDisplay-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Medium.eot");
src: url("fonts/SanFranciscoDisplay-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Medium.woff") format("woff"), url("fonts/SanFranciscoDisplay-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Gotham Condensed';
src: url("fonts/GothamCondensed-Bold.eot");
src: url("fonts/GothamCondensed-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/GothamCondensed-Bold.woff") format("woff"), url("fonts/GothamCondensed-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'Trenda Black It';
src: url("fonts/Trenda-BlackIt.eot");
src: url("fonts/Trenda-BlackIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BlackIt.woff") format("woff"), url("fonts/Trenda-BlackIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda Thin It';
src: url("fonts/Trenda-ThinIt.eot");
src: url("fonts/Trenda-ThinIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ThinIt.woff") format("woff"), url("fonts/Trenda-ThinIt.ttf") format("truetype");
font-weight: 100;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Semibold.eot");
src: url("fonts/SanFranciscoDisplay-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Semibold.woff") format("woff"), url("fonts/SanFranciscoDisplay-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Bold It';
src: url("fonts/Trenda-BoldIt.eot");
src: url("fonts/Trenda-BoldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BoldIt.woff") format("woff"), url("fonts/Trenda-BoldIt.ttf") format("truetype");
font-weight: bold;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Thin.eot");
src: url("fonts/SanFranciscoText-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Thin.woff") format("woff"), url("fonts/SanFranciscoText-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda Light It';
src: url("fonts/Trenda-LightIt.eot");
src: url("fonts/Trenda-LightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-LightIt.woff") format("woff"), url("fonts/Trenda-LightIt.ttf") format("truetype");
font-weight: 300;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Heavy.eot");
src: url("fonts/SanFranciscoText-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Heavy.woff") format("woff"), url("fonts/SanFranciscoText-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Italic.eot");
src: url("fonts/SanFranciscoText-Italic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Italic.woff") format("woff"), url("fonts/SanFranciscoText-Italic.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Light.eot");
src: url("fonts/SanFranciscoDisplay-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Light.woff") format("woff"), url("fonts/SanFranciscoDisplay-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Ultralight.eot");
src: url("fonts/SanFranciscoDisplay-Ultralight.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Ultralight.woff") format("woff"), url("fonts/SanFranciscoDisplay-Ultralight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Medium.eot");
src: url("fonts/SanFranciscoText-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Medium.woff") format("woff"), url("fonts/SanFranciscoText-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-ExtraLight.eot");
src: url("fonts/Trenda-ExtraLight.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLight.woff") format("woff"), url("fonts/Trenda-ExtraLight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Regular.eot");
src: url("fonts/SanFranciscoText-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Regular.woff") format("woff"), url("fonts/SanFranciscoText-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Thin.eot");
src: url("fonts/SanFranciscoDisplay-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Thin.woff") format("woff"), url("fonts/SanFranciscoDisplay-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Regular.eot");
src: url("fonts/Trenda-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Regular.woff") format("woff"), url("fonts/Trenda-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-HeavyItalic.eot");
src: url("fonts/SanFranciscoText-HeavyItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-HeavyItalic.woff") format("woff"), url("fonts/SanFranciscoText-HeavyItalic.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Light.eot");
src: url("fonts/Trenda-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Light.woff") format("woff"), url("fonts/Trenda-Light.ttf") format("truetype");
font-weight: 300;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Bold.eot");
src: url("fonts/Trenda-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Bold.woff") format("woff"), url("fonts/Trenda-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-LightItalic.eot");
src: url("fonts/SanFranciscoText-LightItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-LightItalic.woff") format("woff"), url("fonts/SanFranciscoText-LightItalic.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Regular.eot");
src: url("fonts/SanFranciscoDisplay-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Regular.woff") format("woff"), url("fonts/SanFranciscoDisplay-Regular.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Black.eot");
src: url("fonts/Trenda-Black.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Black.woff") format("woff"), url("fonts/Trenda-Black.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Light.eot");
src: url("fonts/SanFranciscoText-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Light.woff") format("woff"), url("fonts/SanFranciscoText-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda It';
src: url("fonts/Trenda-RegularIt.eot");
src: url("fonts/Trenda-RegularIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-RegularIt.woff") format("woff"), url("fonts/Trenda-RegularIt.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
/*---------------------------------------------------
OCC Theme
----------------------------------------------------*/
/*header and footer backgrounds*/
/*#f1f1f1;*/
/*menu*/
/*buttons*/
/*translate*/
/*headings*/
/*links*/
/*---------------------------------------------------
----------------------------------------------------*/
.tagline {
margin-top: 4px; }
#search input {
margin-bottom: 10px; }
input, input[type="text"], input[type="email"], input[type="password"], input[type="url"], input[type="tel"], input[type="number"], input[type="search"], input[type="file"], input[type="date"], input[type="datetime-local"], input[type="month"], input[type="time"], input[type="week"], textarea, select {
border: 1px solid #62C196; }
ul.menu-main-menu {
margin: 0;
list-style-type: none;
padding-left: 0; }
ul.menu-main-menu li {
display: inline-block; }
ul.menu-main-menu li:last-child {
margin-right: 0; }
ul.menu-main-menu li > a {
text-decoration: none; }
ul.menu-main-menu li.current > a, ul.menu-main-menu li:hover > a {
color: #1a325d;
text-decoration: underline; }
ul.menu-main-menu li a {
font-weight: normal;
font-family: "Trenda", "Helvetica", "Arial", sans-serif;
color: #333;
text-transform: uppercase; }
ul.menu-main-menu li a:hover {
text-decoration: none; }
@media screen and (min-width: 1000px) {
ul.menu-main-menu {
float: right;
position: relative;
top: -29px; }
ul.menu-main-menu > li > a {
padding: 0 0 0 26px; } }
@media screen and (max-width: 1000px) {
.search_translate {
display: none; } }
@media screen and (min-width: 727px) and (max-width: 1000px) {
ul.menu-main-menu {
text-align: right;
display: block;
float: none;
margin: 1rem 0; }
ul.menu-main-menu > li > a {
padding: 0 12px 0 0; } }
@media screen and (min-width: 727px) {
ul.menu-main-menu > li > a:hover {
text-decoration: underline; }
.logo {
width: 173px;
vertical-align: middle; }
.logoMobile {
display: none; }
button#tgl {
display: none; } }
@media screen and (max-width: 727px) {
.navbar-wrapper {
margin-bottom: 1rem; }
.tagline {
padding-right: 45px; }
.logoMobile {
max-width: 100px; }
.logo {
display: none; }
button#tgl {
position: absolute;
right: 2rem;
top: 2rem; }
ul.menu-main-menu {
margin-top: 15px;
padding-left: 0;
display: none;
clear: both;
width: 100%; }
ul.menu-main-menu > li {
width: 100%;
display: block;
margin-top: 0;
margin-bottom: 10px;
line-height: 1.5;
background-color: #f1f1f1; }
ul.menu-main-menu > li.last {
margin-bottom: 0; }
ul.menu-main-menu > li.first {
margin-top: 20px; }
ul.menu-main-menu > li:after {
margin-bottom: 0.25em; }
ul.menu-main-menu > li > a {
display: inline-block;
width: 100%;
padding: 5px;
text-decoration: none; }
ul.menu-main-menu > li > a:hover {
text-decoration: none; } }
/*Header BG*/
.navbar-wrapper {
background-color: white;
border-bottom: none; }
a.navbar-brand:hover {
text-decoration: none; }
.zone-content {
clear: both; }
/* This stylesheet generated by Transfonter (https://transfonter.org) on February 25, 2017 6:21 AM */
@font-face {
font-family: 'Trenda Semibold It';
src: url("fonts/Trenda-SemiboldIt.eot");
src: url("fonts/Trenda-SemiboldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-SemiboldIt.woff") format("woff"), url("fonts/Trenda-SemiboldIt.ttf") format("truetype");
font-weight: 600;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Heavy.eot");
src: url("fonts/Trenda-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Heavy.woff") format("woff"), url("fonts/Trenda-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Semibold.eot");
src: url("fonts/Trenda-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Semibold.woff") format("woff"), url("fonts/Trenda-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Heavy It';
src: url("fonts/Trenda-HeavyIt.eot");
src: url("fonts/Trenda-HeavyIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-HeavyIt.woff") format("woff"), url("fonts/Trenda-HeavyIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Semibold.eot");
src: url("fonts/SanFranciscoText-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Semibold.woff") format("woff"), url("fonts/SanFranciscoText-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda ExtraLight It';
src: url("fonts/Trenda-ExtraLightIt.eot");
src: url("fonts/Trenda-ExtraLightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLightIt.woff") format("woff"), url("fonts/Trenda-ExtraLightIt.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Thin.eot");
src: url("fonts/Trenda-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Thin.woff") format("woff"), url("fonts/Trenda-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Heavy.eot");
src: url("fonts/SanFranciscoDisplay-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Heavy.woff") format("woff"), url("fonts/SanFranciscoDisplay-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Medium.eot");
src: url("fonts/SanFranciscoDisplay-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Medium.woff") format("woff"), url("fonts/SanFranciscoDisplay-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Gotham Condensed';
src: url("fonts/GothamCondensed-Bold.eot");
src: url("fonts/GothamCondensed-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/GothamCondensed-Bold.woff") format("woff"), url("fonts/GothamCondensed-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'Trenda Black It';
src: url("fonts/Trenda-BlackIt.eot");
src: url("fonts/Trenda-BlackIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BlackIt.woff") format("woff"), url("fonts/Trenda-BlackIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda Thin It';
src: url("fonts/Trenda-ThinIt.eot");
src: url("fonts/Trenda-ThinIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ThinIt.woff") format("woff"), url("fonts/Trenda-ThinIt.ttf") format("truetype");
font-weight: 100;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Semibold.eot");
src: url("fonts/SanFranciscoDisplay-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Semibold.woff") format("woff"), url("fonts/SanFranciscoDisplay-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Bold It';
src: url("fonts/Trenda-BoldIt.eot");
src: url("fonts/Trenda-BoldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BoldIt.woff") format("woff"), url("fonts/Trenda-BoldIt.ttf") format("truetype");
font-weight: bold;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Thin.eot");
src: url("fonts/SanFranciscoText-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Thin.woff") format("woff"), url("fonts/SanFranciscoText-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda Light It';
src: url("fonts/Trenda-LightIt.eot");
src: url("fonts/Trenda-LightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-LightIt.woff") format("woff"), url("fonts/Trenda-LightIt.ttf") format("truetype");
font-weight: 300;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Heavy.eot");
src: url("fonts/SanFranciscoText-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Heavy.woff") format("woff"), url("fonts/SanFranciscoText-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Italic.eot");
src: url("fonts/SanFranciscoText-Italic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Italic.woff") format("woff"), url("fonts/SanFranciscoText-Italic.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Light.eot");
src: url("fonts/SanFranciscoDisplay-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Light.woff") format("woff"), url("fonts/SanFranciscoDisplay-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Ultralight.eot");
src: url("fonts/SanFranciscoDisplay-Ultralight.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Ultralight.woff") format("woff"), url("fonts/SanFranciscoDisplay-Ultralight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Medium.eot");
src: url("fonts/SanFranciscoText-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Medium.woff") format("woff"), url("fonts/SanFranciscoText-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-ExtraLight.eot");
src: url("fonts/Trenda-ExtraLight.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLight.woff") format("woff"), url("fonts/Trenda-ExtraLight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Regular.eot");
src: url("fonts/SanFranciscoText-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Regular.woff") format("woff"), url("fonts/SanFranciscoText-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Thin.eot");
src: url("fonts/SanFranciscoDisplay-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Thin.woff") format("woff"), url("fonts/SanFranciscoDisplay-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Regular.eot");
src: url("fonts/Trenda-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Regular.woff") format("woff"), url("fonts/Trenda-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-HeavyItalic.eot");
src: url("fonts/SanFranciscoText-HeavyItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-HeavyItalic.woff") format("woff"), url("fonts/SanFranciscoText-HeavyItalic.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Light.eot");
src: url("fonts/Trenda-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Light.woff") format("woff"), url("fonts/Trenda-Light.ttf") format("truetype");
font-weight: 300;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Bold.eot");
src: url("fonts/Trenda-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Bold.woff") format("woff"), url("fonts/Trenda-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-LightItalic.eot");
src: url("fonts/SanFranciscoText-LightItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-LightItalic.woff") format("woff"), url("fonts/SanFranciscoText-LightItalic.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Regular.eot");
src: url("fonts/SanFranciscoDisplay-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Regular.woff") format("woff"), url("fonts/SanFranciscoDisplay-Regular.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Black.eot");
src: url("fonts/Trenda-Black.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Black.woff") format("woff"), url("fonts/Trenda-Black.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Light.eot");
src: url("fonts/SanFranciscoText-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Light.woff") format("woff"), url("fonts/SanFranciscoText-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda It';
src: url("fonts/Trenda-RegularIt.eot");
src: url("fonts/Trenda-RegularIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-RegularIt.woff") format("woff"), url("fonts/Trenda-RegularIt.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
/*---------------------------------------------------
OCC Theme
----------------------------------------------------*/
/*header and footer backgrounds*/
/*#f1f1f1;*/
/*menu*/
/*buttons*/
/*translate*/
/*headings*/
/*links*/
/*---------------------------------------------------
----------------------------------------------------*/
#footer_wrapper {
background-color: white;
border-top: none;
margin-top: 2rem; }
#footer {
padding-top: 20px;
padding-bottom: 20px;
color: white; }
#footer p, #footer h1, #footer h2, #footer h3, #footer h4 {
color: white; }
#footer a {
color: #1a325d; }
#footer .copyright {
clear: both;
padding-top: 1em; }
#footer input {
margin-right: 20px; }
#footer form button[type="submit"], #footer form input[type="submit"] {
display: inline;
margin-top: 0;
margin-bottom: 0;
background-color: #d52628; }
#footer form button[type="submit"]:hover, #footer form input[type="submit"]:hover {
background-color: #bd2b2d; }
#footer h1.footertitle, #footer label.footertitle {
text-transform: uppercase;
font-size: 24px;
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif;
font-weight: normal;
margin-top: 0;
margin-bottom: 0; }
@media screen and (max-width: 727px) {
#footer h1.footertitle {
margin-top: 20px; } }
article.widget .image-gallery {
padding: 0; }
article.widget .image-gallery ul {
margin: 0;
width: 100%; }
article.widget .image-gallery ul li {
margin: 0;
display: inline-block; }
article.widget .image-gallery ul li a {
height: 100%; }
article.widget .image-gallery ul li a:focus {
box-shadow: none; }
article.widget .image-gallery ul li a img {
max-width: none;
margin-right: 10px;
border: none; }
/*lightbox*/
#lightbox-nav-btnPrev {
background: url(img/lightbox-btn-prev.gif) no-repeat transparent !important; }
#lightbox-nav-btnNext {
background: url(img/lightbox-btn-next.gif) no-repeat 100% 0% transparent !important; }
#lightbox-container-image-box {
height: auto !important; }
#jquery-lightbox {
margin-top: 0; }
#jquery-lightbox #lightbox-container-image-data-box {
max-width: 80% !important; }
#jquery-lightbox #lightbox-container-image-box {
max-width: 80% !important;
max-height: 80% !important; }
#jquery-lightbox #lightbox-container-image-box img {
width: 100% !important; }
/* This stylesheet generated by Transfonter (https://transfonter.org) on February 25, 2017 6:21 AM */
@font-face {
font-family: 'Trenda Semibold It';
src: url("fonts/Trenda-SemiboldIt.eot");
src: url("fonts/Trenda-SemiboldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-SemiboldIt.woff") format("woff"), url("fonts/Trenda-SemiboldIt.ttf") format("truetype");
font-weight: 600;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Heavy.eot");
src: url("fonts/Trenda-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Heavy.woff") format("woff"), url("fonts/Trenda-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Semibold.eot");
src: url("fonts/Trenda-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Semibold.woff") format("woff"), url("fonts/Trenda-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Heavy It';
src: url("fonts/Trenda-HeavyIt.eot");
src: url("fonts/Trenda-HeavyIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-HeavyIt.woff") format("woff"), url("fonts/Trenda-HeavyIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Semibold.eot");
src: url("fonts/SanFranciscoText-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Semibold.woff") format("woff"), url("fonts/SanFranciscoText-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda ExtraLight It';
src: url("fonts/Trenda-ExtraLightIt.eot");
src: url("fonts/Trenda-ExtraLightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLightIt.woff") format("woff"), url("fonts/Trenda-ExtraLightIt.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Thin.eot");
src: url("fonts/Trenda-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Thin.woff") format("woff"), url("fonts/Trenda-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Heavy.eot");
src: url("fonts/SanFranciscoDisplay-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Heavy.woff") format("woff"), url("fonts/SanFranciscoDisplay-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Medium.eot");
src: url("fonts/SanFranciscoDisplay-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Medium.woff") format("woff"), url("fonts/SanFranciscoDisplay-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Gotham Condensed';
src: url("fonts/GothamCondensed-Bold.eot");
src: url("fonts/GothamCondensed-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/GothamCondensed-Bold.woff") format("woff"), url("fonts/GothamCondensed-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'Trenda Black It';
src: url("fonts/Trenda-BlackIt.eot");
src: url("fonts/Trenda-BlackIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BlackIt.woff") format("woff"), url("fonts/Trenda-BlackIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda Thin It';
src: url("fonts/Trenda-ThinIt.eot");
src: url("fonts/Trenda-ThinIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ThinIt.woff") format("woff"), url("fonts/Trenda-ThinIt.ttf") format("truetype");
font-weight: 100;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Semibold.eot");
src: url("fonts/SanFranciscoDisplay-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Semibold.woff") format("woff"), url("fonts/SanFranciscoDisplay-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Bold It';
src: url("fonts/Trenda-BoldIt.eot");
src: url("fonts/Trenda-BoldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BoldIt.woff") format("woff"), url("fonts/Trenda-BoldIt.ttf") format("truetype");
font-weight: bold;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Thin.eot");
src: url("fonts/SanFranciscoText-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Thin.woff") format("woff"), url("fonts/SanFranciscoText-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda Light It';
src: url("fonts/Trenda-LightIt.eot");
src: url("fonts/Trenda-LightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-LightIt.woff") format("woff"), url("fonts/Trenda-LightIt.ttf") format("truetype");
font-weight: 300;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Heavy.eot");
src: url("fonts/SanFranciscoText-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Heavy.woff") format("woff"), url("fonts/SanFranciscoText-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Italic.eot");
src: url("fonts/SanFranciscoText-Italic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Italic.woff") format("woff"), url("fonts/SanFranciscoText-Italic.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Light.eot");
src: url("fonts/SanFranciscoDisplay-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Light.woff") format("woff"), url("fonts/SanFranciscoDisplay-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Ultralight.eot");
src: url("fonts/SanFranciscoDisplay-Ultralight.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Ultralight.woff") format("woff"), url("fonts/SanFranciscoDisplay-Ultralight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Medium.eot");
src: url("fonts/SanFranciscoText-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Medium.woff") format("woff"), url("fonts/SanFranciscoText-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-ExtraLight.eot");
src: url("fonts/Trenda-ExtraLight.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLight.woff") format("woff"), url("fonts/Trenda-ExtraLight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Regular.eot");
src: url("fonts/SanFranciscoText-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Regular.woff") format("woff"), url("fonts/SanFranciscoText-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Thin.eot");
src: url("fonts/SanFranciscoDisplay-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Thin.woff") format("woff"), url("fonts/SanFranciscoDisplay-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Regular.eot");
src: url("fonts/Trenda-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Regular.woff") format("woff"), url("fonts/Trenda-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-HeavyItalic.eot");
src: url("fonts/SanFranciscoText-HeavyItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-HeavyItalic.woff") format("woff"), url("fonts/SanFranciscoText-HeavyItalic.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Light.eot");
src: url("fonts/Trenda-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Light.woff") format("woff"), url("fonts/Trenda-Light.ttf") format("truetype");
font-weight: 300;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Bold.eot");
src: url("fonts/Trenda-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Bold.woff") format("woff"), url("fonts/Trenda-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-LightItalic.eot");
src: url("fonts/SanFranciscoText-LightItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-LightItalic.woff") format("woff"), url("fonts/SanFranciscoText-LightItalic.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Regular.eot");
src: url("fonts/SanFranciscoDisplay-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Regular.woff") format("woff"), url("fonts/SanFranciscoDisplay-Regular.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Black.eot");
src: url("fonts/Trenda-Black.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Black.woff") format("woff"), url("fonts/Trenda-Black.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Light.eot");
src: url("fonts/SanFranciscoText-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Light.woff") format("woff"), url("fonts/SanFranciscoText-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda It';
src: url("fonts/Trenda-RegularIt.eot");
src: url("fonts/Trenda-RegularIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-RegularIt.woff") format("woff"), url("fonts/Trenda-RegularIt.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
/*---------------------------------------------------
OCC Theme
----------------------------------------------------*/
/*header and footer backgrounds*/
/*#f1f1f1;*/
/*menu*/
/*buttons*/
/*translate*/
/*headings*/
/*links*/
/*---------------------------------------------------
----------------------------------------------------*/
#translate_wrapper {
background-color: #727272;
color: white; }
@media screen and (min-width: 1000px) {
#translate_wrapper {
max-height: 31px; } }
article.widget-translate {
display: inline-block; }
@media screen and (max-width: 1000px) {
article.widget-translate p {
margin-top: 8px; } }
@media screen and (min-width: 1000px) {
article.widget-translate p {
margin-top: 2px; } }
article.widget-translate:nth-child(2) {
float: right; }
article.widget-translate #google_translate_element {
float: right;
margin-top: 1px; }
article.widget-translate .goog-te-gadget .goog-te-combo {
margin: 0; }
article.widget-translate select {
padding: .5rem .25em; }
article.widget-translate .goog-te-gadget, article.widget-translate .goog-logo-link {
color: white !important; }
.widget-header p, .widget-translate p {
margin: 0; }
/* This stylesheet generated by Transfonter (https://transfonter.org) on February 25, 2017 6:21 AM */
@font-face {
font-family: 'Trenda Semibold It';
src: url("fonts/Trenda-SemiboldIt.eot");
src: url("fonts/Trenda-SemiboldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-SemiboldIt.woff") format("woff"), url("fonts/Trenda-SemiboldIt.ttf") format("truetype");
font-weight: 600;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Heavy.eot");
src: url("fonts/Trenda-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Heavy.woff") format("woff"), url("fonts/Trenda-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Semibold.eot");
src: url("fonts/Trenda-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Semibold.woff") format("woff"), url("fonts/Trenda-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Heavy It';
src: url("fonts/Trenda-HeavyIt.eot");
src: url("fonts/Trenda-HeavyIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-HeavyIt.woff") format("woff"), url("fonts/Trenda-HeavyIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Semibold.eot");
src: url("fonts/SanFranciscoText-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Semibold.woff") format("woff"), url("fonts/SanFranciscoText-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda ExtraLight It';
src: url("fonts/Trenda-ExtraLightIt.eot");
src: url("fonts/Trenda-ExtraLightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLightIt.woff") format("woff"), url("fonts/Trenda-ExtraLightIt.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Thin.eot");
src: url("fonts/Trenda-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Thin.woff") format("woff"), url("fonts/Trenda-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Heavy.eot");
src: url("fonts/SanFranciscoDisplay-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Heavy.woff") format("woff"), url("fonts/SanFranciscoDisplay-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Medium.eot");
src: url("fonts/SanFranciscoDisplay-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Medium.woff") format("woff"), url("fonts/SanFranciscoDisplay-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Gotham Condensed';
src: url("fonts/GothamCondensed-Bold.eot");
src: url("fonts/GothamCondensed-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/GothamCondensed-Bold.woff") format("woff"), url("fonts/GothamCondensed-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'Trenda Black It';
src: url("fonts/Trenda-BlackIt.eot");
src: url("fonts/Trenda-BlackIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BlackIt.woff") format("woff"), url("fonts/Trenda-BlackIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda Thin It';
src: url("fonts/Trenda-ThinIt.eot");
src: url("fonts/Trenda-ThinIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ThinIt.woff") format("woff"), url("fonts/Trenda-ThinIt.ttf") format("truetype");
font-weight: 100;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Semibold.eot");
src: url("fonts/SanFranciscoDisplay-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Semibold.woff") format("woff"), url("fonts/SanFranciscoDisplay-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Bold It';
src: url("fonts/Trenda-BoldIt.eot");
src: url("fonts/Trenda-BoldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BoldIt.woff") format("woff"), url("fonts/Trenda-BoldIt.ttf") format("truetype");
font-weight: bold;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Thin.eot");
src: url("fonts/SanFranciscoText-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Thin.woff") format("woff"), url("fonts/SanFranciscoText-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda Light It';
src: url("fonts/Trenda-LightIt.eot");
src: url("fonts/Trenda-LightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-LightIt.woff") format("woff"), url("fonts/Trenda-LightIt.ttf") format("truetype");
font-weight: 300;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Heavy.eot");
src: url("fonts/SanFranciscoText-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Heavy.woff") format("woff"), url("fonts/SanFranciscoText-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Italic.eot");
src: url("fonts/SanFranciscoText-Italic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Italic.woff") format("woff"), url("fonts/SanFranciscoText-Italic.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Light.eot");
src: url("fonts/SanFranciscoDisplay-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Light.woff") format("woff"), url("fonts/SanFranciscoDisplay-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Ultralight.eot");
src: url("fonts/SanFranciscoDisplay-Ultralight.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Ultralight.woff") format("woff"), url("fonts/SanFranciscoDisplay-Ultralight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Medium.eot");
src: url("fonts/SanFranciscoText-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Medium.woff") format("woff"), url("fonts/SanFranciscoText-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-ExtraLight.eot");
src: url("fonts/Trenda-ExtraLight.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLight.woff") format("woff"), url("fonts/Trenda-ExtraLight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Regular.eot");
src: url("fonts/SanFranciscoText-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Regular.woff") format("woff"), url("fonts/SanFranciscoText-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Thin.eot");
src: url("fonts/SanFranciscoDisplay-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Thin.woff") format("woff"), url("fonts/SanFranciscoDisplay-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Regular.eot");
src: url("fonts/Trenda-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Regular.woff") format("woff"), url("fonts/Trenda-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-HeavyItalic.eot");
src: url("fonts/SanFranciscoText-HeavyItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-HeavyItalic.woff") format("woff"), url("fonts/SanFranciscoText-HeavyItalic.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Light.eot");
src: url("fonts/Trenda-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Light.woff") format("woff"), url("fonts/Trenda-Light.ttf") format("truetype");
font-weight: 300;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Bold.eot");
src: url("fonts/Trenda-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Bold.woff") format("woff"), url("fonts/Trenda-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-LightItalic.eot");
src: url("fonts/SanFranciscoText-LightItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-LightItalic.woff") format("woff"), url("fonts/SanFranciscoText-LightItalic.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Regular.eot");
src: url("fonts/SanFranciscoDisplay-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Regular.woff") format("woff"), url("fonts/SanFranciscoDisplay-Regular.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Black.eot");
src: url("fonts/Trenda-Black.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Black.woff") format("woff"), url("fonts/Trenda-Black.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Light.eot");
src: url("fonts/SanFranciscoText-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Light.woff") format("woff"), url("fonts/SanFranciscoText-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda It';
src: url("fonts/Trenda-RegularIt.eot");
src: url("fonts/Trenda-RegularIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-RegularIt.woff") format("woff"), url("fonts/Trenda-RegularIt.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
/*---------------------------------------------------
OCC Theme
----------------------------------------------------*/
/*header and footer backgrounds*/
/*#f1f1f1;*/
/*menu*/
/*buttons*/
/*translate*/
/*headings*/
/*links*/
/*---------------------------------------------------
----------------------------------------------------*/
.graybg, .widget-nextup {
background-color: #ededed;
padding: 1px 2rem; }
a, a:visited, a:hover {
word-wrap: break-word;
color: #1e5ca8; }
.mocs {
background-color: #1E5CA8;
color: white; }
.mocs a {
color: white; }
p, a, li {
word-wrap: break-word; }
.lead {
font-weight: 200;
font-size: 2.5rem; }
blockquote {
border-left: 5px solid #ededed; }
@media screen and (max-width: 727px) {
.lead {
font-size: 2rem; } }
.content-h1, .dyntail-daily-action .daily-action-title {
margin-top: .66667rem;
font-size: 3.2rem;
text-transform: none; }
.zone-right-one-third h1 {
font-size: 22px; }
.small-gray, .tagline, article.daily-action p.date-time-field, p.date-time-field, .published {
font-size: 14px;
color: gray; }
.navbar-brand > img {
width: 320px; }
#ind, #tac, a.navbar-brand:visited, a.navbar-brand:hover, a.navbar-brand {
color: #1e5ca8; }
#ind {
font-family: "Trenda", "Helvetica", "Arial", sans-serif;
text-transform: uppercase;
font-size: 30px; }
#tac {
font-family: "Trenda", "Helvetica", "Arial", sans-serif;
text-transform: uppercase; }
#social_buttons a, #social_buttons a:hover {
text-decoration: none; }
#social_buttons h1 {
margin-top: 0; }
#social_buttons span img {
width: 35px; }
@media screen and (min-width: 727px) {
.mobile {
display: none; } }
li a, ul a {
text-decoration: underline; }
.widget-content > header > h1 {
margin-top: 0; }
.widget-featured > hr {
margin-top: 0; }
.moc {
text-align: center;
font-size: 14px; }
@media screen and (max-width: 360px) {
.moc {
font-size: 12px; } }
.mocs {
background-color: #eaeaea;
overflow: auto;
padding: 10px 0 0 0; }
#hero > header > h1 {
text-align: center;
color: white;
font-size: 8rem;
margin: 0;
background-image: url("https://indivisibletacoma.blob.core.windows.net/media/Default/images/IndTac_DomePhoto_960x200.jpg");
background-size: 100% auto; }
@media screen and (max-width: 727px) {
#hero > header > h1 {
font-size: 5rem; } }
@media screen and (max-width: 727px) {
#hero > header > h1 {
font-size: 3rem; } }
.widget-homedailyaction {
clear: both;
/*border:3px solid $it-blue;
padding:0 $grid-margins $grid-margins $grid-margins;*/
margin-bottom: 2rem; }
.widget-homedailyaction > ul {
margin-top: 0; }
.widget-homedailyaction > header > h1 {
margin-bottom: 0; }
.widget-homedailyaction p.moredailyactions {
text-align: right;
margin-bottom: 0; }
.widget-homedailyaction > header > h1 {
margin-top: .3em; }
article.daily-action p.date-time-field {
margin-bottom: 2px; }
article.daily-action h1 {
font-size: 18px;
margin-top: 0;
text-transform: none; }
p.date-time-field {
margin-bottom: 2px; }
.dyntail-daily-action blockquote > h2:first-of-type {
margin-top: 0; }
.media-thumbnail {
display: none; }
.video-container {
position: relative;
padding-bottom: 56.25%;
padding-top: 35px;
height: 0;
overflow: hidden; }
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%; }
.widget-featuredblog .blog-title-summary {
margin-bottom: 1rem; }
.widget-featuredblog .metadata {
margin-bottom: 1rem; }
.widget-featuredblog .media-library-picker-field-media {
max-width: 250px;
float: right;
margin-left: 2rem; }
.widget-nextup {
margin: 2rem 0; }
.widget-nextup article.content-item > header > h1 {
font-size: 18px; }
.widget-nextup article.content-item section.media-library-picker-field, .widget-nextup article.content-item .metadata, .widget-nextup article.content-item p, .widget-nextup article.content-item ul, .widget-nextup article.content-item div {
display: none; }
article.media-item {
margin-bottom: 2rem; }
.widget-pastblogentries {
border-top: 4px solid #1e5ca8;
margin-top: 2rem; }
.widget-pastblogentries .blog-title-summary {
font-size: 18px; }
.dynchard-tags #layout-content #content h1.page-title {
margin-top: 0; }
.dyntail-blog-post .media-item img {
max-height: 300px; }
@media screen and (min-width: 360px) {
.dynchard-tags #social_buttons {
position: relative;
top: -60px; } }
.blog-page-title {
margin-top: 0; }
ul.blog-posts li {
list-style-type: none; }
p.tags {
margin-bottom: 0;
line-height: 1em; }
p.tags > a {
font-weight: bold;
font-size: 14px; }
p.tags > a:before {
content: "#"; }
.blog-post-title {
margin-top: 0.66667rem;
font-size: 3.2rem;
text-transform: none; }
.blog-title-summary {
font-size: 2.5rem;
margin-bottom: 1em;
margin-top: .2em;
text-transform: none; }
.dynchard-blogs #content {
display: none !important;
margin: 0 !important; }
@media screen and (max-width: 727px) {
.blog-title-summary {
margin-top: .2em;
font-size: 1.7rem; } }
.calendar-container {
position: relative;
padding-bottom: 75%;
height: 0;
overflow: hidden;
margin-bottom: 20px; }
.calendar-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%; }
@media screen and (max-width: 727px) {
button[type="submit"], input[type="submit"] {
width: 100%;
max-width: 46rem;
margin-top: 2.5rem; } }
.widget-groups {
border: 3px dashed #d52628;
padding: 0 2rem 2rem 2rem; }
.arrow {
height: 20px;
width: 20px; }
#events_x5F_link:hover,
#legislative_x5F_link:hover,
#education-outreach_x5F_link:hover,
#media_x5F_link:hover,
#fundraising_x5F_link:hover,
#creative_x5F_link:hover,
#social-media-website_x5F_link:hover,
#membership_x5F_link:hover,
#allyship-diversity_x5F_link:hover {
fill: white;
transition: 200ms;
transition-timing-function: ease-in-out;
-webkit-transition: 200ms;
-webkit-transition-timing-function: ease-in-out; }
.widget-about p {
font-size: 2rem; }
#footer #mc-embedded-subscribe {
margin-top: 10px; }
#footer #mc_embed_signup h2, #footer form h2 {
font-size: 2.7rem; }
#footer form {
margin-bottom: 20px; }
@media screen and (min-width: 727px) {
.mc-field-group {
width: 30%;
display: inline-block; } }
@media screen and (min-width: 727px) {
.usa-input-grid-small {
float: left;
width: 33%; } }
@media screen and (max-width: 727px) {
#footer #mc-embedded-subscribe {
margin-top: 2.5rem; }
.widget-about header > h1 {
margin-top: 0; }
#fb, #tw, .desktop {
display: none; } }
@media screen and (max-width: 481px) {
.navbar-brand > img {
width: 260px; } }
@media screen and (max-width: 360px) {
.navbar-brand > img {
width: 200px; } }
#footer_wrapper {
background-color: #1e5ca8; }
.usa-input-grid-small label, .usa-input-grid-small input {
margin-top: 1rem;
margin-bottom: 1rem; }
input {
margin-right: 10px; }
label {
margin-top: 1rem; }
hr {
border-top: 2px solid #1e5ca8;
border-bottom: 2px solid #1e5ca8; }
legend {
font-size: 3rem;
font-family: "Trenda", "Helvetica", "Arial", sans-serif;
text-transform: uppercase; }
input, input[type="text"], input[type="email"], input[type="password"], input[type="url"], input[type="tel"], input[type="number"], input[type="search"], input[type="file"], input[type="date"], input[type="datetime-local"], input[type="month"], input[type="time"], input[type="week"], textarea, select {
border: 1px solid #1e5ca8; }
.widget-faq {
margin-bottom: 2rem; }
.callout {
overflow: auto;
background-color: #1e5ca8;
padding: 2rem; }
.callout a, .callout a:hover, .callout p, .callout h1, .callout h2, .callout h3, .callout legend, .callout label {
color: white; }
.callout form button[type="submit"], .callout form input[type="submit"] {
margin-top: 1rem;
margin-bottom: .2rem; }
.light-callout, .widget-homedailyaction {
overflow: auto;
border: 3px solid #1e5ca8;
padding: 2rem;
margin-bottom: 2rem; }
.light-callout form button[type="submit"], .widget-homedailyaction form button[type="submit"], .light-callout form input[type="submit"], .widget-homedailyaction form input[type="submit"] {
margin-top: 1rem;
margin-bottom: .2rem; } | src/Orchard.Web/Themes/Bourbon/Content/css/main.css | html {
box-sizing: border-box; }
*, *::after, *::before {
box-sizing: inherit; }
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
* 1. Set default font family to sans-serif.
* 2. Prevent iOS text size adjust after orientation change, without disabling
* user zoom.
*/
html {
font-family: sans-serif;
/* 1 */
-ms-text-size-adjust: 100%;
/* 2 */
-webkit-text-size-adjust: 100%;
/* 2 */ }
/**
* Remove default margin.
*/
body {
margin: 0; }
/* HTML5 display definitions
========================================================================== */
/**
* Correct `block` display not defined for any HTML5 element in IE 8/9.
* Correct `block` display not defined for `details` or `summary` in IE 10/11
* and Firefox.
* Correct `block` display not defined for `main` in IE 11.
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
display: block; }
/**
* 1. Correct `inline-block` display not defined in IE 8/9.
* 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
*/
audio,
canvas,
progress,
video {
display: inline-block;
/* 1 */
vertical-align: baseline;
/* 2 */ }
/**
* Prevent modern browsers from displaying `audio` without controls.
* Remove excess height in iOS 5 devices.
*/
audio:not([controls]) {
display: none;
height: 0; }
/**
* Address `[hidden]` styling not present in IE 8/9/10.
* Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
*/
[hidden],
template {
display: none; }
/* Links
========================================================================== */
/**
* Remove the gray background color from active links in IE 10.
*/
a {
background-color: transparent; }
/**
* Improve readability when focused and also mouse hovered in all browsers.
*/
a:active,
a:hover {
outline: 0; }
/* Text-level semantics
========================================================================== */
/**
* Address styling not present in IE 8/9/10/11, Safari, and Chrome.
*/
abbr[title] {
border-bottom: 1px dotted; }
/**
* Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
*/
b,
strong {
font-weight: bold; }
/**
* Address styling not present in Safari and Chrome.
*/
dfn {
font-style: italic; }
/**
* Address variable `h1` font-size and margin within `section` and `article`
* contexts in Firefox 4+, Safari, and Chrome.
*/
h1 {
font-size: 2em;
margin: 0.67em 0; }
/**
* Address styling not present in IE 8/9.
*/
mark {
background: #ff0;
color: #000; }
/**
* Address inconsistent and variable font size in all browsers.
*/
small {
font-size: 80%; }
/**
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
*/
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline; }
sup {
top: -0.5em; }
sub {
bottom: -0.25em; }
/* Embedded content
========================================================================== */
/**
* Remove border when inside `a` element in IE 8/9/10.
*/
img {
border: 0; }
/**
* Correct overflow not hidden in IE 9/10/11.
*/
svg:not(:root) {
overflow: hidden; }
/* Grouping content
========================================================================== */
/**
* Address margin not present in IE 8/9 and Safari.
*/
figure {
margin: 1em 40px; }
/**
* Address differences between Firefox and other browsers.
*/
hr {
-moz-box-sizing: content-box;
box-sizing: content-box;
height: 0; }
/**
* Contain overflow in all browsers.
*/
pre {
overflow: auto; }
/**
* Address odd `em`-unit font size rendering in all browsers.
*/
code,
kbd,
pre,
samp {
font-family: monospace, monospace;
font-size: 1em; }
/* Forms
========================================================================== */
/**
* Known limitation: by default, Chrome and Safari on OS X allow very limited
* styling of `select`, unless a `border` property is set.
*/
/**
* 1. Correct color not being inherited.
* Known issue: affects color of disabled elements.
* 2. Correct font properties not being inherited.
* 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
*/
button,
input,
optgroup,
select,
textarea {
color: inherit;
/* 1 */
font: inherit;
/* 2 */
margin: 0;
/* 3 */ }
/**
* Address `overflow` set to `hidden` in IE 8/9/10/11.
*/
button {
overflow: visible; }
/**
* Address inconsistent `text-transform` inheritance for `button` and `select`.
* All other form control elements do not inherit `text-transform` values.
* Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
* Correct `select` style inheritance in Firefox.
*/
button,
select {
text-transform: none; }
/**
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
* and `video` controls.
* 2. Correct inability to style clickable `input` types in iOS.
* 3. Improve usability and consistency of cursor style between image-type
* `input` and others.
*/
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button;
/* 2 */
cursor: pointer;
/* 3 */ }
/**
* Re-set default cursor for disabled elements.
*/
button[disabled],
html input[disabled] {
cursor: default; }
/**
* Remove inner padding and border in Firefox 4+.
*/
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0; }
/**
* Address Firefox 4+ setting `line-height` on `input` using `!important` in
* the UA stylesheet.
*/
input {
line-height: normal; }
/**
* It's recommended that you don't attempt to style these elements.
* Firefox's implementation doesn't respect box-sizing, padding, or width.
*
* 1. Address box sizing set to `content-box` in IE 8/9/10.
* 2. Remove excess padding in IE 8/9/10.
*/
input[type="checkbox"],
input[type="radio"] {
box-sizing: border-box;
/* 1 */
padding: 0;
/* 2 */ }
/**
* Fix the cursor style for Chrome's increment/decrement buttons. For certain
* `font-size` values of the `input`, it causes the cursor style of the
* decrement button to change from `default` to `text`.
*/
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
height: auto; }
/**
* 1. Address `appearance` set to `searchfield` in Safari and Chrome.
* 2. Address `box-sizing` set to `border-box` in Safari and Chrome
* (include `-moz` to future-proof).
*/
input[type="search"] {
-webkit-appearance: textfield;
/* 1 */
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
/* 2 */
box-sizing: content-box; }
/**
* Remove inner padding and search cancel button in Safari and Chrome on OS X.
* Safari (but not Chrome) clips the cancel button when the search input has
* padding (and `textfield` appearance).
*/
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none; }
/**
* Define consistent border, margin, and padding.
*/
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em; }
/**
* 1. Correct `color` not being inherited in IE 8/9/10/11.
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
*/
legend {
border: 0;
/* 1 */
padding: 0;
/* 2 */ }
/**
* Remove default vertical scrollbar in IE 8/9/10/11.
*/
textarea {
overflow: auto; }
/**
* Don't inherit the `font-weight` (applied by a rule above).
* NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
*/
optgroup {
font-weight: bold; }
/* Tables
========================================================================== */
/**
* Remove most spacing between table cells.
*/
table {
border-collapse: collapse;
border-spacing: 0; }
td,
th {
padding: 0; }
/* This stylesheet generated by Transfonter (https://transfonter.org) on February 25, 2017 6:21 AM */
@font-face {
font-family: 'Trenda Semibold It';
src: url("fonts/Trenda-SemiboldIt.eot");
src: url("fonts/Trenda-SemiboldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-SemiboldIt.woff") format("woff"), url("fonts/Trenda-SemiboldIt.ttf") format("truetype");
font-weight: 600;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Heavy.eot");
src: url("fonts/Trenda-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Heavy.woff") format("woff"), url("fonts/Trenda-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Semibold.eot");
src: url("fonts/Trenda-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Semibold.woff") format("woff"), url("fonts/Trenda-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Heavy It';
src: url("fonts/Trenda-HeavyIt.eot");
src: url("fonts/Trenda-HeavyIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-HeavyIt.woff") format("woff"), url("fonts/Trenda-HeavyIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Semibold.eot");
src: url("fonts/SanFranciscoText-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Semibold.woff") format("woff"), url("fonts/SanFranciscoText-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda ExtraLight It';
src: url("fonts/Trenda-ExtraLightIt.eot");
src: url("fonts/Trenda-ExtraLightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLightIt.woff") format("woff"), url("fonts/Trenda-ExtraLightIt.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Thin.eot");
src: url("fonts/Trenda-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Thin.woff") format("woff"), url("fonts/Trenda-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Heavy.eot");
src: url("fonts/SanFranciscoDisplay-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Heavy.woff") format("woff"), url("fonts/SanFranciscoDisplay-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Medium.eot");
src: url("fonts/SanFranciscoDisplay-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Medium.woff") format("woff"), url("fonts/SanFranciscoDisplay-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Gotham Condensed';
src: url("fonts/GothamCondensed-Bold.eot");
src: url("fonts/GothamCondensed-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/GothamCondensed-Bold.woff") format("woff"), url("fonts/GothamCondensed-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'Trenda Black It';
src: url("fonts/Trenda-BlackIt.eot");
src: url("fonts/Trenda-BlackIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BlackIt.woff") format("woff"), url("fonts/Trenda-BlackIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda Thin It';
src: url("fonts/Trenda-ThinIt.eot");
src: url("fonts/Trenda-ThinIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ThinIt.woff") format("woff"), url("fonts/Trenda-ThinIt.ttf") format("truetype");
font-weight: 100;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Semibold.eot");
src: url("fonts/SanFranciscoDisplay-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Semibold.woff") format("woff"), url("fonts/SanFranciscoDisplay-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Bold It';
src: url("fonts/Trenda-BoldIt.eot");
src: url("fonts/Trenda-BoldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BoldIt.woff") format("woff"), url("fonts/Trenda-BoldIt.ttf") format("truetype");
font-weight: bold;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Thin.eot");
src: url("fonts/SanFranciscoText-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Thin.woff") format("woff"), url("fonts/SanFranciscoText-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda Light It';
src: url("fonts/Trenda-LightIt.eot");
src: url("fonts/Trenda-LightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-LightIt.woff") format("woff"), url("fonts/Trenda-LightIt.ttf") format("truetype");
font-weight: 300;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Heavy.eot");
src: url("fonts/SanFranciscoText-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Heavy.woff") format("woff"), url("fonts/SanFranciscoText-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Italic.eot");
src: url("fonts/SanFranciscoText-Italic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Italic.woff") format("woff"), url("fonts/SanFranciscoText-Italic.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Light.eot");
src: url("fonts/SanFranciscoDisplay-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Light.woff") format("woff"), url("fonts/SanFranciscoDisplay-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Ultralight.eot");
src: url("fonts/SanFranciscoDisplay-Ultralight.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Ultralight.woff") format("woff"), url("fonts/SanFranciscoDisplay-Ultralight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Medium.eot");
src: url("fonts/SanFranciscoText-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Medium.woff") format("woff"), url("fonts/SanFranciscoText-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-ExtraLight.eot");
src: url("fonts/Trenda-ExtraLight.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLight.woff") format("woff"), url("fonts/Trenda-ExtraLight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Regular.eot");
src: url("fonts/SanFranciscoText-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Regular.woff") format("woff"), url("fonts/SanFranciscoText-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Thin.eot");
src: url("fonts/SanFranciscoDisplay-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Thin.woff") format("woff"), url("fonts/SanFranciscoDisplay-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Regular.eot");
src: url("fonts/Trenda-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Regular.woff") format("woff"), url("fonts/Trenda-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-HeavyItalic.eot");
src: url("fonts/SanFranciscoText-HeavyItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-HeavyItalic.woff") format("woff"), url("fonts/SanFranciscoText-HeavyItalic.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Light.eot");
src: url("fonts/Trenda-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Light.woff") format("woff"), url("fonts/Trenda-Light.ttf") format("truetype");
font-weight: 300;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Bold.eot");
src: url("fonts/Trenda-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Bold.woff") format("woff"), url("fonts/Trenda-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-LightItalic.eot");
src: url("fonts/SanFranciscoText-LightItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-LightItalic.woff") format("woff"), url("fonts/SanFranciscoText-LightItalic.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Regular.eot");
src: url("fonts/SanFranciscoDisplay-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Regular.woff") format("woff"), url("fonts/SanFranciscoDisplay-Regular.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Black.eot");
src: url("fonts/Trenda-Black.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Black.woff") format("woff"), url("fonts/Trenda-Black.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Light.eot");
src: url("fonts/SanFranciscoText-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Light.woff") format("woff"), url("fonts/SanFranciscoText-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda It';
src: url("fonts/Trenda-RegularIt.eot");
src: url("fonts/Trenda-RegularIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-RegularIt.woff") format("woff"), url("fonts/Trenda-RegularIt.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
/*---------------------------------------------------
OCC Theme
----------------------------------------------------*/
/*header and footer backgrounds*/
/*#f1f1f1;*/
/*menu*/
/*buttons*/
/*translate*/
/*headings*/
/*links*/
/*---------------------------------------------------
----------------------------------------------------*/
/* -----------------------------------------------------------------------------
HAMBURGER ICONS COMPONENT
----------------------------------------------------------------------------- */
/**
* Toggle Switch Globals
*
* All switches should take on the class `c-hamburger` as well as their
* variant that will give them unique properties. This class is an overview
* class that acts as a reset for all versions of the icon.
*/
.c-hamburger {
display: block;
position: relative;
overflow: hidden;
margin: 2px 0 2px 0;
padding: 0;
width: 40px;
height: 40px;
font-size: 0;
text-indent: -9999px;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
box-shadow: none;
border-radius: none;
border: none;
cursor: pointer;
transition: background 0.3s; }
.c-hamburger:focus {
outline: none; }
.c-hamburger span {
display: block;
position: absolute;
top: 18px;
left: 10px;
right: 10px;
height: 4px;
background: white; }
.c-hamburger span::before,
.c-hamburger span::after {
position: absolute;
display: block;
left: 0;
width: 100%;
height: 4px;
background-color: #fff;
content: ""; }
.c-hamburger span::before {
top: -7px; }
.c-hamburger span::after {
bottom: -7px; }
/**
* Style 1
*
* Rotating hamburger icon (rot), that simply rotates 90 degrees when activated.
* Nothing too fancy, simple transition.
*/
.c-hamburger--rot {
background-color: #28aadc; }
.c-hamburger--rot span {
transition: transform 0.3s; }
/* active state, i.e. menu open */
.c-hamburger--rot.is-active {
background-color: #166888; }
.c-hamburger--rot.is-active span {
transform: rotate(90deg); }
/**
* Style 2
*
* Hamburger to "x" (htx). Takes on a hamburger shape, bars slide
* down to center and transform into an "x".
*/
.c-hamburger--htx {
background-color: #1e5ca8; }
.c-hamburger--htx:hover {
background-color: #1e5ca8; }
.c-hamburger--htx span {
transition: background 0s 0.3s; }
.c-hamburger--htx span::before,
.c-hamburger--htx span::after {
transition-duration: 0.3s, 0.3s;
transition-delay: 0.3s, 0s; }
.c-hamburger--htx span::before {
transition-property: top, transform; }
.c-hamburger--htx span::after {
transition-property: bottom, transform; }
/* active state, i.e. menu open */
.c-hamburger--htx.is-active, .c-hamburger--htx:active, .c-hamburger--htx:hover {
background-color: #1a325d; }
.c-hamburger--htx.is-active span {
background: none; }
.c-hamburger--htx.is-active span::before {
top: 0;
transform: rotate(45deg); }
.c-hamburger--htx.is-active span::after {
bottom: 0;
transform: rotate(-45deg); }
.c-hamburger--htx.is-active span::before,
.c-hamburger--htx.is-active span::after {
transition-delay: 0s, 0.3s; }
/**
* Style 3
*
* Hamburger to left-arrow (htla). Hamburger menu transforms to a left-pointing
* arrow. Usually indicates an off canvas menu sliding in from left that
* will be close on re-click of the icon.
*/
.c-hamburger--htla {
background-color: #32dc64; }
.c-hamburger--htla span {
transition: transform 0.3s; }
.c-hamburger--htla span::before {
transform-origin: top right;
transition: transform 0.3s, width 0.3s, top 0.3s; }
.c-hamburger--htla span::after {
transform-origin: bottom right;
transition: transform 0.3s, width 0.3s, bottom 0.3s; }
/* active state, i.e. menu open */
.c-hamburger--htla.is-active {
background-color: #19903c; }
.c-hamburger--htla.is-active span {
transform: rotate(180deg); }
.c-hamburger--htla.is-active span::before,
.c-hamburger--htla.is-active span::after {
width: 50%; }
.c-hamburger--htla.is-active span::before {
top: 0;
transform: translateX(14px) translateY(2px) rotate(45deg); }
.c-hamburger--htla.is-active span::after {
bottom: 0;
transform: translateX(14px) translateY(-2px) rotate(-45deg); }
/**
* Style 4
*
* Hamburger to right-arrow (htra). Hamburger menu transforms to a
* right-pointing arrow. Usually indicates an off canvas menu sliding in from
* right that will be close on re-click of the icon.
*/
.c-hamburger--htra {
background-color: #ff9650; }
.c-hamburger--htra span {
transition: transform 0.3s; }
.c-hamburger--htra span::before {
transform-origin: top left;
transition: transform 0.3s, width 0.3s, top 0.3s; }
.c-hamburger--htra span::after {
transform-origin: bottom left;
transition: transform 0.3s, width 0.3s, bottom 0.3s; }
/* active state, i.e. menu open */
.c-hamburger--htra.is-active {
background-color: #e95d00; }
.c-hamburger--htra.is-active span {
transform: rotate(180deg); }
.c-hamburger--htra.is-active span::before,
.c-hamburger--htra.is-active span::after {
width: 50%; }
.c-hamburger--htra.is-active span::before {
top: 0;
transform: translateX(-4px) translateY(2px) rotate(-45deg); }
.c-hamburger--htra.is-active span::after {
bottom: 0;
transform: translateX(-4px) translateY(-2px) rotate(45deg); }
/* apply a natural box layout model to all elements, but allowing components to change */
html {
box-sizing: border-box; }
*, *:before, *:after {
box-sizing: inherit; }
body {
background-color: #ffffff; }
.lt-ie9 * {
filter: none !important; }
[aria-hidden=true] {
display: none !important; }
.usa-grid, #translate,
#header,
#layout-before-main,
#layout-content,
#layout-featured,
#next,
#footer,
.zone-navigation,
.usa-grid-full {
max-width: 68em;
margin-left: auto;
margin-right: auto;
max-width: 1000px; }
.usa-grid::after, #translate::after,
#header::after,
#layout-before-main::after,
#layout-content::after,
#layout-featured::after,
#next::after,
#footer::after,
.zone-navigation::after,
.usa-grid-full::after {
clear: both;
content: "";
display: table; }
@media screen and (min-width: 727px) {
.usa-grid .usa-width-one-whole, #translate .usa-width-one-whole,
#header .usa-width-one-whole,
#layout-before-main .usa-width-one-whole,
#layout-content .usa-width-one-whole,
#layout-featured .usa-width-one-whole,
#next .usa-width-one-whole,
#footer .usa-width-one-whole,
.zone-navigation .usa-width-one-whole, .usa-grid #before-content, #translate #before-content,
#header #before-content,
#layout-before-main #before-content,
#layout-content #before-content,
#layout-featured #before-content,
#next #before-content,
#footer #before-content,
.zone-navigation #before-content, .usa-grid
#messages, #translate
#messages,
#header
#messages,
#layout-before-main
#messages,
#layout-content
#messages,
#layout-featured
#messages,
#next
#messages,
#footer
#messages,
.zone-navigation
#messages, .usa-grid
#content, #translate
#content,
#header
#content,
#layout-before-main
#content,
#layout-content
#content,
#layout-featured
#content,
#next
#content,
#footer
#content,
.zone-navigation
#content, .usa-grid
#after-content, #translate
#after-content,
#header
#after-content,
#layout-before-main
#after-content,
#layout-content
#after-content,
#layout-featured
#after-content,
#next
#after-content,
#footer
#after-content,
.zone-navigation
#after-content, .usa-grid
#footer-sig, #translate
#footer-sig,
#header
#footer-sig,
#layout-before-main
#footer-sig,
#layout-content
#footer-sig,
#layout-featured
#footer-sig,
#next
#footer-sig,
#footer
#footer-sig,
.zone-navigation
#footer-sig, .usa-grid
.zone-content, #translate
.zone-content,
#header
.zone-content,
#layout-before-main
.zone-content,
#layout-content
.zone-content,
#layout-featured
.zone-content,
#next
.zone-content,
#footer
.zone-content,
.zone-navigation
.zone-content, .usa-grid
#threecolumn, #translate
#threecolumn,
#header
#threecolumn,
#layout-before-main
#threecolumn,
#layout-content
#threecolumn,
#layout-featured
#threecolumn,
#next
#threecolumn,
#footer
#threecolumn,
.zone-navigation
#threecolumn,
.usa-grid-full .usa-width-one-whole,
.usa-grid-full #before-content,
.usa-grid-full
#messages,
.usa-grid-full
#content,
.usa-grid-full
#after-content,
.usa-grid-full
#footer-sig,
.usa-grid-full
.zone-content,
.usa-grid-full
#threecolumn {
float: left;
display: block;
margin-right: 4.82916%;
width: 100%; }
.usa-grid .usa-width-one-whole:last-child, #translate .usa-width-one-whole:last-child,
#header .usa-width-one-whole:last-child,
#layout-before-main .usa-width-one-whole:last-child,
#layout-content .usa-width-one-whole:last-child,
#layout-featured .usa-width-one-whole:last-child,
#next .usa-width-one-whole:last-child,
#footer .usa-width-one-whole:last-child,
.zone-navigation .usa-width-one-whole:last-child, .usa-grid #before-content:last-child, #translate #before-content:last-child,
#header #before-content:last-child,
#layout-before-main #before-content:last-child,
#layout-content #before-content:last-child,
#layout-featured #before-content:last-child,
#next #before-content:last-child,
#footer #before-content:last-child,
.zone-navigation #before-content:last-child, .usa-grid
#messages:last-child, #translate
#messages:last-child,
#header
#messages:last-child,
#layout-before-main
#messages:last-child,
#layout-content
#messages:last-child,
#layout-featured
#messages:last-child,
#next
#messages:last-child,
#footer
#messages:last-child,
.zone-navigation
#messages:last-child, .usa-grid
#content:last-child, #translate
#content:last-child,
#header
#content:last-child,
#layout-before-main
#content:last-child,
#layout-content
#content:last-child,
#layout-featured
#content:last-child,
#next
#content:last-child,
#footer
#content:last-child,
.zone-navigation
#content:last-child, .usa-grid
#after-content:last-child, #translate
#after-content:last-child,
#header
#after-content:last-child,
#layout-before-main
#after-content:last-child,
#layout-content
#after-content:last-child,
#layout-featured
#after-content:last-child,
#next
#after-content:last-child,
#footer
#after-content:last-child,
.zone-navigation
#after-content:last-child, .usa-grid
#footer-sig:last-child, #translate
#footer-sig:last-child,
#header
#footer-sig:last-child,
#layout-before-main
#footer-sig:last-child,
#layout-content
#footer-sig:last-child,
#layout-featured
#footer-sig:last-child,
#next
#footer-sig:last-child,
#footer
#footer-sig:last-child,
.zone-navigation
#footer-sig:last-child, .usa-grid
.zone-content:last-child, #translate
.zone-content:last-child,
#header
.zone-content:last-child,
#layout-before-main
.zone-content:last-child,
#layout-content
.zone-content:last-child,
#layout-featured
.zone-content:last-child,
#next
.zone-content:last-child,
#footer
.zone-content:last-child,
.zone-navigation
.zone-content:last-child, .usa-grid
#threecolumn:last-child, #translate
#threecolumn:last-child,
#header
#threecolumn:last-child,
#layout-before-main
#threecolumn:last-child,
#layout-content
#threecolumn:last-child,
#layout-featured
#threecolumn:last-child,
#next
#threecolumn:last-child,
#footer
#threecolumn:last-child,
.zone-navigation
#threecolumn:last-child,
.usa-grid-full .usa-width-one-whole:last-child,
.usa-grid-full #before-content:last-child,
.usa-grid-full
#messages:last-child,
.usa-grid-full
#content:last-child,
.usa-grid-full
#after-content:last-child,
.usa-grid-full
#footer-sig:last-child,
.usa-grid-full
.zone-content:last-child,
.usa-grid-full
#threecolumn:last-child {
margin-right: 0; }
.usa-grid .usa-width-one-half, #translate .usa-width-one-half,
#header .usa-width-one-half,
#layout-before-main .usa-width-one-half,
#layout-content .usa-width-one-half,
#layout-featured .usa-width-one-half,
#next .usa-width-one-half,
#footer .usa-width-one-half,
.zone-navigation .usa-width-one-half, .usa-grid #left-half, #translate #left-half,
#header #left-half,
#layout-before-main #left-half,
#layout-content #left-half,
#layout-featured #left-half,
#next #left-half,
#footer #left-half,
.zone-navigation #left-half, .usa-grid
#right-half, #translate
#right-half,
#header
#right-half,
#layout-before-main
#right-half,
#layout-content
#right-half,
#layout-featured
#right-half,
#next
#right-half,
#footer
#right-half,
.zone-navigation
#right-half, .usa-grid
#footer-first-half, #translate
#footer-first-half,
#header
#footer-first-half,
#layout-before-main
#footer-first-half,
#layout-content
#footer-first-half,
#layout-featured
#footer-first-half,
#next
#footer-first-half,
#footer
#footer-first-half,
.zone-navigation
#footer-first-half, .usa-grid
#footer-second-half, #translate
#footer-second-half,
#header
#footer-second-half,
#layout-before-main
#footer-second-half,
#layout-content
#footer-second-half,
#layout-featured
#footer-second-half,
#next
#footer-second-half,
#footer
#footer-second-half,
.zone-navigation
#footer-second-half,
.usa-grid-full .usa-width-one-half,
.usa-grid-full #left-half,
.usa-grid-full
#right-half,
.usa-grid-full
#footer-first-half,
.usa-grid-full
#footer-second-half {
float: left;
display: block;
margin-right: 4.82916%;
width: 47.58542%; }
.usa-grid .usa-width-one-half:last-child, #translate .usa-width-one-half:last-child,
#header .usa-width-one-half:last-child,
#layout-before-main .usa-width-one-half:last-child,
#layout-content .usa-width-one-half:last-child,
#layout-featured .usa-width-one-half:last-child,
#next .usa-width-one-half:last-child,
#footer .usa-width-one-half:last-child,
.zone-navigation .usa-width-one-half:last-child, .usa-grid #left-half:last-child, #translate #left-half:last-child,
#header #left-half:last-child,
#layout-before-main #left-half:last-child,
#layout-content #left-half:last-child,
#layout-featured #left-half:last-child,
#next #left-half:last-child,
#footer #left-half:last-child,
.zone-navigation #left-half:last-child, .usa-grid
#right-half:last-child, #translate
#right-half:last-child,
#header
#right-half:last-child,
#layout-before-main
#right-half:last-child,
#layout-content
#right-half:last-child,
#layout-featured
#right-half:last-child,
#next
#right-half:last-child,
#footer
#right-half:last-child,
.zone-navigation
#right-half:last-child, .usa-grid
#footer-first-half:last-child, #translate
#footer-first-half:last-child,
#header
#footer-first-half:last-child,
#layout-before-main
#footer-first-half:last-child,
#layout-content
#footer-first-half:last-child,
#layout-featured
#footer-first-half:last-child,
#next
#footer-first-half:last-child,
#footer
#footer-first-half:last-child,
.zone-navigation
#footer-first-half:last-child, .usa-grid
#footer-second-half:last-child, #translate
#footer-second-half:last-child,
#header
#footer-second-half:last-child,
#layout-before-main
#footer-second-half:last-child,
#layout-content
#footer-second-half:last-child,
#layout-featured
#footer-second-half:last-child,
#next
#footer-second-half:last-child,
#footer
#footer-second-half:last-child,
.zone-navigation
#footer-second-half:last-child,
.usa-grid-full .usa-width-one-half:last-child,
.usa-grid-full #left-half:last-child,
.usa-grid-full
#right-half:last-child,
.usa-grid-full
#footer-first-half:last-child,
.usa-grid-full
#footer-second-half:last-child {
margin-right: 0; }
.usa-grid .usa-width-one-third, #translate .usa-width-one-third,
#header .usa-width-one-third,
#layout-before-main .usa-width-one-third,
#layout-content .usa-width-one-third,
#layout-featured .usa-width-one-third,
#next .usa-width-one-third,
#footer .usa-width-one-third,
.zone-navigation .usa-width-one-third, .usa-grid #left-one-third, #translate #left-one-third,
#header #left-one-third,
#layout-before-main #left-one-third,
#layout-content #left-one-third,
#layout-featured #left-one-third,
#next #left-one-third,
#footer #left-one-third,
.zone-navigation #left-one-third, .usa-grid
#right-one-third, #translate
#right-one-third,
#header
#right-one-third,
#layout-before-main
#right-one-third,
#layout-content
#right-one-third,
#layout-featured
#right-one-third,
#next
#right-one-third,
#footer
#right-one-third,
.zone-navigation
#right-one-third, .usa-grid
#left-one-third-tile, #translate
#left-one-third-tile,
#header
#left-one-third-tile,
#layout-before-main
#left-one-third-tile,
#layout-content
#left-one-third-tile,
#layout-featured
#left-one-third-tile,
#next
#left-one-third-tile,
#footer
#left-one-third-tile,
.zone-navigation
#left-one-third-tile, .usa-grid
#triple-first, #translate
#triple-first,
#header
#triple-first,
#layout-before-main
#triple-first,
#layout-content
#triple-first,
#layout-featured
#triple-first,
#next
#triple-first,
#footer
#triple-first,
.zone-navigation
#triple-first, .usa-grid
#triple-second, #translate
#triple-second,
#header
#triple-second,
#layout-before-main
#triple-second,
#layout-content
#triple-second,
#layout-featured
#triple-second,
#next
#triple-second,
#footer
#triple-second,
.zone-navigation
#triple-second, .usa-grid
#triple-third, #translate
#triple-third,
#header
#triple-third,
#layout-before-main
#triple-third,
#layout-content
#triple-third,
#layout-featured
#triple-third,
#next
#triple-third,
#footer
#triple-third,
.zone-navigation
#triple-third,
.usa-grid-full .usa-width-one-third,
.usa-grid-full #left-one-third,
.usa-grid-full
#right-one-third,
.usa-grid-full
#left-one-third-tile,
.usa-grid-full
#triple-first,
.usa-grid-full
#triple-second,
.usa-grid-full
#triple-third {
float: left;
display: block;
margin-right: 4.82916%;
width: 30.11389%; }
.usa-grid .usa-width-one-third:last-child, #translate .usa-width-one-third:last-child,
#header .usa-width-one-third:last-child,
#layout-before-main .usa-width-one-third:last-child,
#layout-content .usa-width-one-third:last-child,
#layout-featured .usa-width-one-third:last-child,
#next .usa-width-one-third:last-child,
#footer .usa-width-one-third:last-child,
.zone-navigation .usa-width-one-third:last-child, .usa-grid #left-one-third:last-child, #translate #left-one-third:last-child,
#header #left-one-third:last-child,
#layout-before-main #left-one-third:last-child,
#layout-content #left-one-third:last-child,
#layout-featured #left-one-third:last-child,
#next #left-one-third:last-child,
#footer #left-one-third:last-child,
.zone-navigation #left-one-third:last-child, .usa-grid
#right-one-third:last-child, #translate
#right-one-third:last-child,
#header
#right-one-third:last-child,
#layout-before-main
#right-one-third:last-child,
#layout-content
#right-one-third:last-child,
#layout-featured
#right-one-third:last-child,
#next
#right-one-third:last-child,
#footer
#right-one-third:last-child,
.zone-navigation
#right-one-third:last-child, .usa-grid
#left-one-third-tile:last-child, #translate
#left-one-third-tile:last-child,
#header
#left-one-third-tile:last-child,
#layout-before-main
#left-one-third-tile:last-child,
#layout-content
#left-one-third-tile:last-child,
#layout-featured
#left-one-third-tile:last-child,
#next
#left-one-third-tile:last-child,
#footer
#left-one-third-tile:last-child,
.zone-navigation
#left-one-third-tile:last-child, .usa-grid
#triple-first:last-child, #translate
#triple-first:last-child,
#header
#triple-first:last-child,
#layout-before-main
#triple-first:last-child,
#layout-content
#triple-first:last-child,
#layout-featured
#triple-first:last-child,
#next
#triple-first:last-child,
#footer
#triple-first:last-child,
.zone-navigation
#triple-first:last-child, .usa-grid
#triple-second:last-child, #translate
#triple-second:last-child,
#header
#triple-second:last-child,
#layout-before-main
#triple-second:last-child,
#layout-content
#triple-second:last-child,
#layout-featured
#triple-second:last-child,
#next
#triple-second:last-child,
#footer
#triple-second:last-child,
.zone-navigation
#triple-second:last-child, .usa-grid
#triple-third:last-child, #translate
#triple-third:last-child,
#header
#triple-third:last-child,
#layout-before-main
#triple-third:last-child,
#layout-content
#triple-third:last-child,
#layout-featured
#triple-third:last-child,
#next
#triple-third:last-child,
#footer
#triple-third:last-child,
.zone-navigation
#triple-third:last-child,
.usa-grid-full .usa-width-one-third:last-child,
.usa-grid-full #left-one-third:last-child,
.usa-grid-full
#right-one-third:last-child,
.usa-grid-full
#left-one-third-tile:last-child,
.usa-grid-full
#triple-first:last-child,
.usa-grid-full
#triple-second:last-child,
.usa-grid-full
#triple-third:last-child {
margin-right: 0; }
.usa-grid .usa-width-two-thirds, #translate .usa-width-two-thirds,
#header .usa-width-two-thirds,
#layout-before-main .usa-width-two-thirds,
#layout-content .usa-width-two-thirds,
#layout-featured .usa-width-two-thirds,
#next .usa-width-two-thirds,
#footer .usa-width-two-thirds,
.zone-navigation .usa-width-two-thirds, .usa-grid #right-two-thirds, #translate #right-two-thirds,
#header #right-two-thirds,
#layout-before-main #right-two-thirds,
#layout-content #right-two-thirds,
#layout-featured #right-two-thirds,
#next #right-two-thirds,
#footer #right-two-thirds,
.zone-navigation #right-two-thirds, .usa-grid
#left-two-thirds, #translate
#left-two-thirds,
#header
#left-two-thirds,
#layout-before-main
#left-two-thirds,
#layout-content
#left-two-thirds,
#layout-featured
#left-two-thirds,
#next
#left-two-thirds,
#footer
#left-two-thirds,
.zone-navigation
#left-two-thirds, .usa-grid
#right-two-thirds-tile, #translate
#right-two-thirds-tile,
#header
#right-two-thirds-tile,
#layout-before-main
#right-two-thirds-tile,
#layout-content
#right-two-thirds-tile,
#layout-featured
#right-two-thirds-tile,
#next
#right-two-thirds-tile,
#footer
#right-two-thirds-tile,
.zone-navigation
#right-two-thirds-tile, .usa-grid
.librarywrapper, #translate
.librarywrapper,
#header
.librarywrapper,
#layout-before-main
.librarywrapper,
#layout-content
.librarywrapper,
#layout-featured
.librarywrapper,
#next
.librarywrapper,
#footer
.librarywrapper,
.zone-navigation
.librarywrapper,
.usa-grid-full .usa-width-two-thirds,
.usa-grid-full #right-two-thirds,
.usa-grid-full
#left-two-thirds,
.usa-grid-full
#right-two-thirds-tile,
.usa-grid-full
.librarywrapper {
float: left;
display: block;
margin-right: 4.82916%;
width: 65.05695%; }
.usa-grid .usa-width-two-thirds:last-child, #translate .usa-width-two-thirds:last-child,
#header .usa-width-two-thirds:last-child,
#layout-before-main .usa-width-two-thirds:last-child,
#layout-content .usa-width-two-thirds:last-child,
#layout-featured .usa-width-two-thirds:last-child,
#next .usa-width-two-thirds:last-child,
#footer .usa-width-two-thirds:last-child,
.zone-navigation .usa-width-two-thirds:last-child, .usa-grid #right-two-thirds:last-child, #translate #right-two-thirds:last-child,
#header #right-two-thirds:last-child,
#layout-before-main #right-two-thirds:last-child,
#layout-content #right-two-thirds:last-child,
#layout-featured #right-two-thirds:last-child,
#next #right-two-thirds:last-child,
#footer #right-two-thirds:last-child,
.zone-navigation #right-two-thirds:last-child, .usa-grid
#left-two-thirds:last-child, #translate
#left-two-thirds:last-child,
#header
#left-two-thirds:last-child,
#layout-before-main
#left-two-thirds:last-child,
#layout-content
#left-two-thirds:last-child,
#layout-featured
#left-two-thirds:last-child,
#next
#left-two-thirds:last-child,
#footer
#left-two-thirds:last-child,
.zone-navigation
#left-two-thirds:last-child, .usa-grid
#right-two-thirds-tile:last-child, #translate
#right-two-thirds-tile:last-child,
#header
#right-two-thirds-tile:last-child,
#layout-before-main
#right-two-thirds-tile:last-child,
#layout-content
#right-two-thirds-tile:last-child,
#layout-featured
#right-two-thirds-tile:last-child,
#next
#right-two-thirds-tile:last-child,
#footer
#right-two-thirds-tile:last-child,
.zone-navigation
#right-two-thirds-tile:last-child, .usa-grid
.librarywrapper:last-child, #translate
.librarywrapper:last-child,
#header
.librarywrapper:last-child,
#layout-before-main
.librarywrapper:last-child,
#layout-content
.librarywrapper:last-child,
#layout-featured
.librarywrapper:last-child,
#next
.librarywrapper:last-child,
#footer
.librarywrapper:last-child,
.zone-navigation
.librarywrapper:last-child,
.usa-grid-full .usa-width-two-thirds:last-child,
.usa-grid-full #right-two-thirds:last-child,
.usa-grid-full
#left-two-thirds:last-child,
.usa-grid-full
#right-two-thirds-tile:last-child,
.usa-grid-full
.librarywrapper:last-child {
margin-right: 0; }
.usa-grid .usa-width-one-fourth, #translate .usa-width-one-fourth,
#header .usa-width-one-fourth,
#layout-before-main .usa-width-one-fourth,
#layout-content .usa-width-one-fourth,
#layout-featured .usa-width-one-fourth,
#next .usa-width-one-fourth,
#footer .usa-width-one-fourth,
.zone-navigation .usa-width-one-fourth, .usa-grid #quad-first, #translate #quad-first,
#header #quad-first,
#layout-before-main #quad-first,
#layout-content #quad-first,
#layout-featured #quad-first,
#next #quad-first,
#footer #quad-first,
.zone-navigation #quad-first, .usa-grid
#quad-second, #translate
#quad-second,
#header
#quad-second,
#layout-before-main
#quad-second,
#layout-content
#quad-second,
#layout-featured
#quad-second,
#next
#quad-second,
#footer
#quad-second,
.zone-navigation
#quad-second, .usa-grid
#quad-third, #translate
#quad-third,
#header
#quad-third,
#layout-before-main
#quad-third,
#layout-content
#quad-third,
#layout-featured
#quad-third,
#next
#quad-third,
#footer
#quad-third,
.zone-navigation
#quad-third, .usa-grid
#quad-fourth, #translate
#quad-fourth,
#header
#quad-fourth,
#layout-before-main
#quad-fourth,
#layout-content
#quad-fourth,
#layout-featured
#quad-fourth,
#next
#quad-fourth,
#footer
#quad-fourth,
.zone-navigation
#quad-fourth, .usa-grid
#footer-quad-first, #translate
#footer-quad-first,
#header
#footer-quad-first,
#layout-before-main
#footer-quad-first,
#layout-content
#footer-quad-first,
#layout-featured
#footer-quad-first,
#next
#footer-quad-first,
#footer
#footer-quad-first,
.zone-navigation
#footer-quad-first, .usa-grid
#footer-quad-second, #translate
#footer-quad-second,
#header
#footer-quad-second,
#layout-before-main
#footer-quad-second,
#layout-content
#footer-quad-second,
#layout-featured
#footer-quad-second,
#next
#footer-quad-second,
#footer
#footer-quad-second,
.zone-navigation
#footer-quad-second, .usa-grid
#footer-quad-third, #translate
#footer-quad-third,
#header
#footer-quad-third,
#layout-before-main
#footer-quad-third,
#layout-content
#footer-quad-third,
#layout-featured
#footer-quad-third,
#next
#footer-quad-third,
#footer
#footer-quad-third,
.zone-navigation
#footer-quad-third, .usa-grid
#footer-quad-fourth, #translate
#footer-quad-fourth,
#header
#footer-quad-fourth,
#layout-before-main
#footer-quad-fourth,
#layout-content
#footer-quad-fourth,
#layout-featured
#footer-quad-fourth,
#next
#footer-quad-fourth,
#footer
#footer-quad-fourth,
.zone-navigation
#footer-quad-fourth,
.usa-grid-full .usa-width-one-fourth,
.usa-grid-full #quad-first,
.usa-grid-full
#quad-second,
.usa-grid-full
#quad-third,
.usa-grid-full
#quad-fourth,
.usa-grid-full
#footer-quad-first,
.usa-grid-full
#footer-quad-second,
.usa-grid-full
#footer-quad-third,
.usa-grid-full
#footer-quad-fourth {
float: left;
display: block;
margin-right: 4.82916%;
width: 47.58542%; }
.usa-grid .usa-width-one-fourth:last-child, #translate .usa-width-one-fourth:last-child,
#header .usa-width-one-fourth:last-child,
#layout-before-main .usa-width-one-fourth:last-child,
#layout-content .usa-width-one-fourth:last-child,
#layout-featured .usa-width-one-fourth:last-child,
#next .usa-width-one-fourth:last-child,
#footer .usa-width-one-fourth:last-child,
.zone-navigation .usa-width-one-fourth:last-child, .usa-grid #quad-first:last-child, #translate #quad-first:last-child,
#header #quad-first:last-child,
#layout-before-main #quad-first:last-child,
#layout-content #quad-first:last-child,
#layout-featured #quad-first:last-child,
#next #quad-first:last-child,
#footer #quad-first:last-child,
.zone-navigation #quad-first:last-child, .usa-grid
#quad-second:last-child, #translate
#quad-second:last-child,
#header
#quad-second:last-child,
#layout-before-main
#quad-second:last-child,
#layout-content
#quad-second:last-child,
#layout-featured
#quad-second:last-child,
#next
#quad-second:last-child,
#footer
#quad-second:last-child,
.zone-navigation
#quad-second:last-child, .usa-grid
#quad-third:last-child, #translate
#quad-third:last-child,
#header
#quad-third:last-child,
#layout-before-main
#quad-third:last-child,
#layout-content
#quad-third:last-child,
#layout-featured
#quad-third:last-child,
#next
#quad-third:last-child,
#footer
#quad-third:last-child,
.zone-navigation
#quad-third:last-child, .usa-grid
#quad-fourth:last-child, #translate
#quad-fourth:last-child,
#header
#quad-fourth:last-child,
#layout-before-main
#quad-fourth:last-child,
#layout-content
#quad-fourth:last-child,
#layout-featured
#quad-fourth:last-child,
#next
#quad-fourth:last-child,
#footer
#quad-fourth:last-child,
.zone-navigation
#quad-fourth:last-child, .usa-grid
#footer-quad-first:last-child, #translate
#footer-quad-first:last-child,
#header
#footer-quad-first:last-child,
#layout-before-main
#footer-quad-first:last-child,
#layout-content
#footer-quad-first:last-child,
#layout-featured
#footer-quad-first:last-child,
#next
#footer-quad-first:last-child,
#footer
#footer-quad-first:last-child,
.zone-navigation
#footer-quad-first:last-child, .usa-grid
#footer-quad-second:last-child, #translate
#footer-quad-second:last-child,
#header
#footer-quad-second:last-child,
#layout-before-main
#footer-quad-second:last-child,
#layout-content
#footer-quad-second:last-child,
#layout-featured
#footer-quad-second:last-child,
#next
#footer-quad-second:last-child,
#footer
#footer-quad-second:last-child,
.zone-navigation
#footer-quad-second:last-child, .usa-grid
#footer-quad-third:last-child, #translate
#footer-quad-third:last-child,
#header
#footer-quad-third:last-child,
#layout-before-main
#footer-quad-third:last-child,
#layout-content
#footer-quad-third:last-child,
#layout-featured
#footer-quad-third:last-child,
#next
#footer-quad-third:last-child,
#footer
#footer-quad-third:last-child,
.zone-navigation
#footer-quad-third:last-child, .usa-grid
#footer-quad-fourth:last-child, #translate
#footer-quad-fourth:last-child,
#header
#footer-quad-fourth:last-child,
#layout-before-main
#footer-quad-fourth:last-child,
#layout-content
#footer-quad-fourth:last-child,
#layout-featured
#footer-quad-fourth:last-child,
#next
#footer-quad-fourth:last-child,
#footer
#footer-quad-fourth:last-child,
.zone-navigation
#footer-quad-fourth:last-child,
.usa-grid-full .usa-width-one-fourth:last-child,
.usa-grid-full #quad-first:last-child,
.usa-grid-full
#quad-second:last-child,
.usa-grid-full
#quad-third:last-child,
.usa-grid-full
#quad-fourth:last-child,
.usa-grid-full
#footer-quad-first:last-child,
.usa-grid-full
#footer-quad-second:last-child,
.usa-grid-full
#footer-quad-third:last-child,
.usa-grid-full
#footer-quad-fourth:last-child {
margin-right: 0; }
.usa-grid .usa-width-one-fourth:nth-child(2n), #translate .usa-width-one-fourth:nth-child(2n),
#header .usa-width-one-fourth:nth-child(2n),
#layout-before-main .usa-width-one-fourth:nth-child(2n),
#layout-content .usa-width-one-fourth:nth-child(2n),
#layout-featured .usa-width-one-fourth:nth-child(2n),
#next .usa-width-one-fourth:nth-child(2n),
#footer .usa-width-one-fourth:nth-child(2n),
.zone-navigation .usa-width-one-fourth:nth-child(2n), .usa-grid #quad-first:nth-child(2n), #translate #quad-first:nth-child(2n),
#header #quad-first:nth-child(2n),
#layout-before-main #quad-first:nth-child(2n),
#layout-content #quad-first:nth-child(2n),
#layout-featured #quad-first:nth-child(2n),
#next #quad-first:nth-child(2n),
#footer #quad-first:nth-child(2n),
.zone-navigation #quad-first:nth-child(2n), .usa-grid
#quad-second:nth-child(2n), #translate
#quad-second:nth-child(2n),
#header
#quad-second:nth-child(2n),
#layout-before-main
#quad-second:nth-child(2n),
#layout-content
#quad-second:nth-child(2n),
#layout-featured
#quad-second:nth-child(2n),
#next
#quad-second:nth-child(2n),
#footer
#quad-second:nth-child(2n),
.zone-navigation
#quad-second:nth-child(2n), .usa-grid
#quad-third:nth-child(2n), #translate
#quad-third:nth-child(2n),
#header
#quad-third:nth-child(2n),
#layout-before-main
#quad-third:nth-child(2n),
#layout-content
#quad-third:nth-child(2n),
#layout-featured
#quad-third:nth-child(2n),
#next
#quad-third:nth-child(2n),
#footer
#quad-third:nth-child(2n),
.zone-navigation
#quad-third:nth-child(2n), .usa-grid
#quad-fourth:nth-child(2n), #translate
#quad-fourth:nth-child(2n),
#header
#quad-fourth:nth-child(2n),
#layout-before-main
#quad-fourth:nth-child(2n),
#layout-content
#quad-fourth:nth-child(2n),
#layout-featured
#quad-fourth:nth-child(2n),
#next
#quad-fourth:nth-child(2n),
#footer
#quad-fourth:nth-child(2n),
.zone-navigation
#quad-fourth:nth-child(2n), .usa-grid
#footer-quad-first:nth-child(2n), #translate
#footer-quad-first:nth-child(2n),
#header
#footer-quad-first:nth-child(2n),
#layout-before-main
#footer-quad-first:nth-child(2n),
#layout-content
#footer-quad-first:nth-child(2n),
#layout-featured
#footer-quad-first:nth-child(2n),
#next
#footer-quad-first:nth-child(2n),
#footer
#footer-quad-first:nth-child(2n),
.zone-navigation
#footer-quad-first:nth-child(2n), .usa-grid
#footer-quad-second:nth-child(2n), #translate
#footer-quad-second:nth-child(2n),
#header
#footer-quad-second:nth-child(2n),
#layout-before-main
#footer-quad-second:nth-child(2n),
#layout-content
#footer-quad-second:nth-child(2n),
#layout-featured
#footer-quad-second:nth-child(2n),
#next
#footer-quad-second:nth-child(2n),
#footer
#footer-quad-second:nth-child(2n),
.zone-navigation
#footer-quad-second:nth-child(2n), .usa-grid
#footer-quad-third:nth-child(2n), #translate
#footer-quad-third:nth-child(2n),
#header
#footer-quad-third:nth-child(2n),
#layout-before-main
#footer-quad-third:nth-child(2n),
#layout-content
#footer-quad-third:nth-child(2n),
#layout-featured
#footer-quad-third:nth-child(2n),
#next
#footer-quad-third:nth-child(2n),
#footer
#footer-quad-third:nth-child(2n),
.zone-navigation
#footer-quad-third:nth-child(2n), .usa-grid
#footer-quad-fourth:nth-child(2n), #translate
#footer-quad-fourth:nth-child(2n),
#header
#footer-quad-fourth:nth-child(2n),
#layout-before-main
#footer-quad-fourth:nth-child(2n),
#layout-content
#footer-quad-fourth:nth-child(2n),
#layout-featured
#footer-quad-fourth:nth-child(2n),
#next
#footer-quad-fourth:nth-child(2n),
#footer
#footer-quad-fourth:nth-child(2n),
.zone-navigation
#footer-quad-fourth:nth-child(2n),
.usa-grid-full .usa-width-one-fourth:nth-child(2n),
.usa-grid-full #quad-first:nth-child(2n),
.usa-grid-full
#quad-second:nth-child(2n),
.usa-grid-full
#quad-third:nth-child(2n),
.usa-grid-full
#quad-fourth:nth-child(2n),
.usa-grid-full
#footer-quad-first:nth-child(2n),
.usa-grid-full
#footer-quad-second:nth-child(2n),
.usa-grid-full
#footer-quad-third:nth-child(2n),
.usa-grid-full
#footer-quad-fourth:nth-child(2n) {
margin-right: 0; }
.usa-grid .usa-width-three-fourths, #translate .usa-width-three-fourths,
#header .usa-width-three-fourths,
#layout-before-main .usa-width-three-fourths,
#layout-content .usa-width-three-fourths,
#layout-featured .usa-width-three-fourths,
#next .usa-width-three-fourths,
#footer .usa-width-three-fourths,
.zone-navigation .usa-width-three-fourths,
.usa-grid-full .usa-width-three-fourths {
float: left;
display: block;
margin-right: 4.82916%;
width: 100%; }
.usa-grid .usa-width-three-fourths:last-child, #translate .usa-width-three-fourths:last-child,
#header .usa-width-three-fourths:last-child,
#layout-before-main .usa-width-three-fourths:last-child,
#layout-content .usa-width-three-fourths:last-child,
#layout-featured .usa-width-three-fourths:last-child,
#next .usa-width-three-fourths:last-child,
#footer .usa-width-three-fourths:last-child,
.zone-navigation .usa-width-three-fourths:last-child,
.usa-grid-full .usa-width-three-fourths:last-child {
margin-right: 0; }
.usa-grid .usa-width-one-sixth, #translate .usa-width-one-sixth,
#header .usa-width-one-sixth,
#layout-before-main .usa-width-one-sixth,
#layout-content .usa-width-one-sixth,
#layout-featured .usa-width-one-sixth,
#next .usa-width-one-sixth,
#footer .usa-width-one-sixth,
.zone-navigation .usa-width-one-sixth,
.usa-grid-full .usa-width-one-sixth {
float: left;
display: block;
margin-right: 4.82916%;
width: 30.11389%; }
.usa-grid .usa-width-one-sixth:last-child, #translate .usa-width-one-sixth:last-child,
#header .usa-width-one-sixth:last-child,
#layout-before-main .usa-width-one-sixth:last-child,
#layout-content .usa-width-one-sixth:last-child,
#layout-featured .usa-width-one-sixth:last-child,
#next .usa-width-one-sixth:last-child,
#footer .usa-width-one-sixth:last-child,
.zone-navigation .usa-width-one-sixth:last-child,
.usa-grid-full .usa-width-one-sixth:last-child {
margin-right: 0; }
.usa-grid .usa-width-one-sixth:nth-child(3n), #translate .usa-width-one-sixth:nth-child(3n),
#header .usa-width-one-sixth:nth-child(3n),
#layout-before-main .usa-width-one-sixth:nth-child(3n),
#layout-content .usa-width-one-sixth:nth-child(3n),
#layout-featured .usa-width-one-sixth:nth-child(3n),
#next .usa-width-one-sixth:nth-child(3n),
#footer .usa-width-one-sixth:nth-child(3n),
.zone-navigation .usa-width-one-sixth:nth-child(3n),
.usa-grid-full .usa-width-one-sixth:nth-child(3n) {
margin-right: 0; }
.usa-grid .usa-width-five-sixths, #translate .usa-width-five-sixths,
#header .usa-width-five-sixths,
#layout-before-main .usa-width-five-sixths,
#layout-content .usa-width-five-sixths,
#layout-featured .usa-width-five-sixths,
#next .usa-width-five-sixths,
#footer .usa-width-five-sixths,
.zone-navigation .usa-width-five-sixths,
.usa-grid-full .usa-width-five-sixths {
float: left;
display: block;
margin-right: 4.82916%;
width: 82.52847%; }
.usa-grid .usa-width-five-sixths:last-child, #translate .usa-width-five-sixths:last-child,
#header .usa-width-five-sixths:last-child,
#layout-before-main .usa-width-five-sixths:last-child,
#layout-content .usa-width-five-sixths:last-child,
#layout-featured .usa-width-five-sixths:last-child,
#next .usa-width-five-sixths:last-child,
#footer .usa-width-five-sixths:last-child,
.zone-navigation .usa-width-five-sixths:last-child,
.usa-grid-full .usa-width-five-sixths:last-child {
margin-right: 0; }
.usa-grid .usa-width-one-twelfth, #translate .usa-width-one-twelfth,
#header .usa-width-one-twelfth,
#layout-before-main .usa-width-one-twelfth,
#layout-content .usa-width-one-twelfth,
#layout-featured .usa-width-one-twelfth,
#next .usa-width-one-twelfth,
#footer .usa-width-one-twelfth,
.zone-navigation .usa-width-one-twelfth,
.usa-grid-full .usa-width-one-twelfth {
float: left;
display: block;
margin-right: 4.82916%;
width: 30.11389%; }
.usa-grid .usa-width-one-twelfth:last-child, #translate .usa-width-one-twelfth:last-child,
#header .usa-width-one-twelfth:last-child,
#layout-before-main .usa-width-one-twelfth:last-child,
#layout-content .usa-width-one-twelfth:last-child,
#layout-featured .usa-width-one-twelfth:last-child,
#next .usa-width-one-twelfth:last-child,
#footer .usa-width-one-twelfth:last-child,
.zone-navigation .usa-width-one-twelfth:last-child,
.usa-grid-full .usa-width-one-twelfth:last-child {
margin-right: 0; }
.usa-grid .usa-width-one-twelfth:nth-child(3n), #translate .usa-width-one-twelfth:nth-child(3n),
#header .usa-width-one-twelfth:nth-child(3n),
#layout-before-main .usa-width-one-twelfth:nth-child(3n),
#layout-content .usa-width-one-twelfth:nth-child(3n),
#layout-featured .usa-width-one-twelfth:nth-child(3n),
#next .usa-width-one-twelfth:nth-child(3n),
#footer .usa-width-one-twelfth:nth-child(3n),
.zone-navigation .usa-width-one-twelfth:nth-child(3n),
.usa-grid-full .usa-width-one-twelfth:nth-child(3n) {
margin-right: 0; } }
@media screen and (min-width: 1000px) {
.usa-grid .usa-width-one-whole, #translate .usa-width-one-whole,
#header .usa-width-one-whole,
#layout-before-main .usa-width-one-whole,
#layout-content .usa-width-one-whole,
#layout-featured .usa-width-one-whole,
#next .usa-width-one-whole,
#footer .usa-width-one-whole,
.zone-navigation .usa-width-one-whole, .usa-grid #before-content, #translate #before-content,
#header #before-content,
#layout-before-main #before-content,
#layout-content #before-content,
#layout-featured #before-content,
#next #before-content,
#footer #before-content,
.zone-navigation #before-content, .usa-grid
#messages, #translate
#messages,
#header
#messages,
#layout-before-main
#messages,
#layout-content
#messages,
#layout-featured
#messages,
#next
#messages,
#footer
#messages,
.zone-navigation
#messages, .usa-grid
#content, #translate
#content,
#header
#content,
#layout-before-main
#content,
#layout-content
#content,
#layout-featured
#content,
#next
#content,
#footer
#content,
.zone-navigation
#content, .usa-grid
#after-content, #translate
#after-content,
#header
#after-content,
#layout-before-main
#after-content,
#layout-content
#after-content,
#layout-featured
#after-content,
#next
#after-content,
#footer
#after-content,
.zone-navigation
#after-content, .usa-grid
#footer-sig, #translate
#footer-sig,
#header
#footer-sig,
#layout-before-main
#footer-sig,
#layout-content
#footer-sig,
#layout-featured
#footer-sig,
#next
#footer-sig,
#footer
#footer-sig,
.zone-navigation
#footer-sig, .usa-grid
.zone-content, #translate
.zone-content,
#header
.zone-content,
#layout-before-main
.zone-content,
#layout-content
.zone-content,
#layout-featured
.zone-content,
#next
.zone-content,
#footer
.zone-content,
.zone-navigation
.zone-content, .usa-grid
#threecolumn, #translate
#threecolumn,
#header
#threecolumn,
#layout-before-main
#threecolumn,
#layout-content
#threecolumn,
#layout-featured
#threecolumn,
#next
#threecolumn,
#footer
#threecolumn,
.zone-navigation
#threecolumn,
.usa-grid-full .usa-width-one-whole,
.usa-grid-full #before-content,
.usa-grid-full
#messages,
.usa-grid-full
#content,
.usa-grid-full
#after-content,
.usa-grid-full
#footer-sig,
.usa-grid-full
.zone-content,
.usa-grid-full
#threecolumn {
float: left;
display: block;
margin-right: 2.35765%;
width: 100%; }
.usa-grid .usa-width-one-whole:last-child, #translate .usa-width-one-whole:last-child,
#header .usa-width-one-whole:last-child,
#layout-before-main .usa-width-one-whole:last-child,
#layout-content .usa-width-one-whole:last-child,
#layout-featured .usa-width-one-whole:last-child,
#next .usa-width-one-whole:last-child,
#footer .usa-width-one-whole:last-child,
.zone-navigation .usa-width-one-whole:last-child, .usa-grid #before-content:last-child, #translate #before-content:last-child,
#header #before-content:last-child,
#layout-before-main #before-content:last-child,
#layout-content #before-content:last-child,
#layout-featured #before-content:last-child,
#next #before-content:last-child,
#footer #before-content:last-child,
.zone-navigation #before-content:last-child, .usa-grid
#messages:last-child, #translate
#messages:last-child,
#header
#messages:last-child,
#layout-before-main
#messages:last-child,
#layout-content
#messages:last-child,
#layout-featured
#messages:last-child,
#next
#messages:last-child,
#footer
#messages:last-child,
.zone-navigation
#messages:last-child, .usa-grid
#content:last-child, #translate
#content:last-child,
#header
#content:last-child,
#layout-before-main
#content:last-child,
#layout-content
#content:last-child,
#layout-featured
#content:last-child,
#next
#content:last-child,
#footer
#content:last-child,
.zone-navigation
#content:last-child, .usa-grid
#after-content:last-child, #translate
#after-content:last-child,
#header
#after-content:last-child,
#layout-before-main
#after-content:last-child,
#layout-content
#after-content:last-child,
#layout-featured
#after-content:last-child,
#next
#after-content:last-child,
#footer
#after-content:last-child,
.zone-navigation
#after-content:last-child, .usa-grid
#footer-sig:last-child, #translate
#footer-sig:last-child,
#header
#footer-sig:last-child,
#layout-before-main
#footer-sig:last-child,
#layout-content
#footer-sig:last-child,
#layout-featured
#footer-sig:last-child,
#next
#footer-sig:last-child,
#footer
#footer-sig:last-child,
.zone-navigation
#footer-sig:last-child, .usa-grid
.zone-content:last-child, #translate
.zone-content:last-child,
#header
.zone-content:last-child,
#layout-before-main
.zone-content:last-child,
#layout-content
.zone-content:last-child,
#layout-featured
.zone-content:last-child,
#next
.zone-content:last-child,
#footer
.zone-content:last-child,
.zone-navigation
.zone-content:last-child, .usa-grid
#threecolumn:last-child, #translate
#threecolumn:last-child,
#header
#threecolumn:last-child,
#layout-before-main
#threecolumn:last-child,
#layout-content
#threecolumn:last-child,
#layout-featured
#threecolumn:last-child,
#next
#threecolumn:last-child,
#footer
#threecolumn:last-child,
.zone-navigation
#threecolumn:last-child,
.usa-grid-full .usa-width-one-whole:last-child,
.usa-grid-full #before-content:last-child,
.usa-grid-full
#messages:last-child,
.usa-grid-full
#content:last-child,
.usa-grid-full
#after-content:last-child,
.usa-grid-full
#footer-sig:last-child,
.usa-grid-full
.zone-content:last-child,
.usa-grid-full
#threecolumn:last-child {
margin-right: 0; }
.usa-grid .usa-width-one-half, #translate .usa-width-one-half,
#header .usa-width-one-half,
#layout-before-main .usa-width-one-half,
#layout-content .usa-width-one-half,
#layout-featured .usa-width-one-half,
#next .usa-width-one-half,
#footer .usa-width-one-half,
.zone-navigation .usa-width-one-half, .usa-grid #left-half, #translate #left-half,
#header #left-half,
#layout-before-main #left-half,
#layout-content #left-half,
#layout-featured #left-half,
#next #left-half,
#footer #left-half,
.zone-navigation #left-half, .usa-grid
#right-half, #translate
#right-half,
#header
#right-half,
#layout-before-main
#right-half,
#layout-content
#right-half,
#layout-featured
#right-half,
#next
#right-half,
#footer
#right-half,
.zone-navigation
#right-half, .usa-grid
#footer-first-half, #translate
#footer-first-half,
#header
#footer-first-half,
#layout-before-main
#footer-first-half,
#layout-content
#footer-first-half,
#layout-featured
#footer-first-half,
#next
#footer-first-half,
#footer
#footer-first-half,
.zone-navigation
#footer-first-half, .usa-grid
#footer-second-half, #translate
#footer-second-half,
#header
#footer-second-half,
#layout-before-main
#footer-second-half,
#layout-content
#footer-second-half,
#layout-featured
#footer-second-half,
#next
#footer-second-half,
#footer
#footer-second-half,
.zone-navigation
#footer-second-half,
.usa-grid-full .usa-width-one-half,
.usa-grid-full #left-half,
.usa-grid-full
#right-half,
.usa-grid-full
#footer-first-half,
.usa-grid-full
#footer-second-half {
float: left;
display: block;
margin-right: 2.35765%;
width: 48.82117%; }
.usa-grid .usa-width-one-half:last-child, #translate .usa-width-one-half:last-child,
#header .usa-width-one-half:last-child,
#layout-before-main .usa-width-one-half:last-child,
#layout-content .usa-width-one-half:last-child,
#layout-featured .usa-width-one-half:last-child,
#next .usa-width-one-half:last-child,
#footer .usa-width-one-half:last-child,
.zone-navigation .usa-width-one-half:last-child, .usa-grid #left-half:last-child, #translate #left-half:last-child,
#header #left-half:last-child,
#layout-before-main #left-half:last-child,
#layout-content #left-half:last-child,
#layout-featured #left-half:last-child,
#next #left-half:last-child,
#footer #left-half:last-child,
.zone-navigation #left-half:last-child, .usa-grid
#right-half:last-child, #translate
#right-half:last-child,
#header
#right-half:last-child,
#layout-before-main
#right-half:last-child,
#layout-content
#right-half:last-child,
#layout-featured
#right-half:last-child,
#next
#right-half:last-child,
#footer
#right-half:last-child,
.zone-navigation
#right-half:last-child, .usa-grid
#footer-first-half:last-child, #translate
#footer-first-half:last-child,
#header
#footer-first-half:last-child,
#layout-before-main
#footer-first-half:last-child,
#layout-content
#footer-first-half:last-child,
#layout-featured
#footer-first-half:last-child,
#next
#footer-first-half:last-child,
#footer
#footer-first-half:last-child,
.zone-navigation
#footer-first-half:last-child, .usa-grid
#footer-second-half:last-child, #translate
#footer-second-half:last-child,
#header
#footer-second-half:last-child,
#layout-before-main
#footer-second-half:last-child,
#layout-content
#footer-second-half:last-child,
#layout-featured
#footer-second-half:last-child,
#next
#footer-second-half:last-child,
#footer
#footer-second-half:last-child,
.zone-navigation
#footer-second-half:last-child,
.usa-grid-full .usa-width-one-half:last-child,
.usa-grid-full #left-half:last-child,
.usa-grid-full
#right-half:last-child,
.usa-grid-full
#footer-first-half:last-child,
.usa-grid-full
#footer-second-half:last-child {
margin-right: 0; }
.usa-grid .usa-width-one-third, #translate .usa-width-one-third,
#header .usa-width-one-third,
#layout-before-main .usa-width-one-third,
#layout-content .usa-width-one-third,
#layout-featured .usa-width-one-third,
#next .usa-width-one-third,
#footer .usa-width-one-third,
.zone-navigation .usa-width-one-third, .usa-grid #left-one-third, #translate #left-one-third,
#header #left-one-third,
#layout-before-main #left-one-third,
#layout-content #left-one-third,
#layout-featured #left-one-third,
#next #left-one-third,
#footer #left-one-third,
.zone-navigation #left-one-third, .usa-grid
#right-one-third, #translate
#right-one-third,
#header
#right-one-third,
#layout-before-main
#right-one-third,
#layout-content
#right-one-third,
#layout-featured
#right-one-third,
#next
#right-one-third,
#footer
#right-one-third,
.zone-navigation
#right-one-third, .usa-grid
#left-one-third-tile, #translate
#left-one-third-tile,
#header
#left-one-third-tile,
#layout-before-main
#left-one-third-tile,
#layout-content
#left-one-third-tile,
#layout-featured
#left-one-third-tile,
#next
#left-one-third-tile,
#footer
#left-one-third-tile,
.zone-navigation
#left-one-third-tile, .usa-grid
#triple-first, #translate
#triple-first,
#header
#triple-first,
#layout-before-main
#triple-first,
#layout-content
#triple-first,
#layout-featured
#triple-first,
#next
#triple-first,
#footer
#triple-first,
.zone-navigation
#triple-first, .usa-grid
#triple-second, #translate
#triple-second,
#header
#triple-second,
#layout-before-main
#triple-second,
#layout-content
#triple-second,
#layout-featured
#triple-second,
#next
#triple-second,
#footer
#triple-second,
.zone-navigation
#triple-second, .usa-grid
#triple-third, #translate
#triple-third,
#header
#triple-third,
#layout-before-main
#triple-third,
#layout-content
#triple-third,
#layout-featured
#triple-third,
#next
#triple-third,
#footer
#triple-third,
.zone-navigation
#triple-third,
.usa-grid-full .usa-width-one-third,
.usa-grid-full #left-one-third,
.usa-grid-full
#right-one-third,
.usa-grid-full
#left-one-third-tile,
.usa-grid-full
#triple-first,
.usa-grid-full
#triple-second,
.usa-grid-full
#triple-third {
float: left;
display: block;
margin-right: 2.35765%;
width: 31.76157%; }
.usa-grid .usa-width-one-third:last-child, #translate .usa-width-one-third:last-child,
#header .usa-width-one-third:last-child,
#layout-before-main .usa-width-one-third:last-child,
#layout-content .usa-width-one-third:last-child,
#layout-featured .usa-width-one-third:last-child,
#next .usa-width-one-third:last-child,
#footer .usa-width-one-third:last-child,
.zone-navigation .usa-width-one-third:last-child, .usa-grid #left-one-third:last-child, #translate #left-one-third:last-child,
#header #left-one-third:last-child,
#layout-before-main #left-one-third:last-child,
#layout-content #left-one-third:last-child,
#layout-featured #left-one-third:last-child,
#next #left-one-third:last-child,
#footer #left-one-third:last-child,
.zone-navigation #left-one-third:last-child, .usa-grid
#right-one-third:last-child, #translate
#right-one-third:last-child,
#header
#right-one-third:last-child,
#layout-before-main
#right-one-third:last-child,
#layout-content
#right-one-third:last-child,
#layout-featured
#right-one-third:last-child,
#next
#right-one-third:last-child,
#footer
#right-one-third:last-child,
.zone-navigation
#right-one-third:last-child, .usa-grid
#left-one-third-tile:last-child, #translate
#left-one-third-tile:last-child,
#header
#left-one-third-tile:last-child,
#layout-before-main
#left-one-third-tile:last-child,
#layout-content
#left-one-third-tile:last-child,
#layout-featured
#left-one-third-tile:last-child,
#next
#left-one-third-tile:last-child,
#footer
#left-one-third-tile:last-child,
.zone-navigation
#left-one-third-tile:last-child, .usa-grid
#triple-first:last-child, #translate
#triple-first:last-child,
#header
#triple-first:last-child,
#layout-before-main
#triple-first:last-child,
#layout-content
#triple-first:last-child,
#layout-featured
#triple-first:last-child,
#next
#triple-first:last-child,
#footer
#triple-first:last-child,
.zone-navigation
#triple-first:last-child, .usa-grid
#triple-second:last-child, #translate
#triple-second:last-child,
#header
#triple-second:last-child,
#layout-before-main
#triple-second:last-child,
#layout-content
#triple-second:last-child,
#layout-featured
#triple-second:last-child,
#next
#triple-second:last-child,
#footer
#triple-second:last-child,
.zone-navigation
#triple-second:last-child, .usa-grid
#triple-third:last-child, #translate
#triple-third:last-child,
#header
#triple-third:last-child,
#layout-before-main
#triple-third:last-child,
#layout-content
#triple-third:last-child,
#layout-featured
#triple-third:last-child,
#next
#triple-third:last-child,
#footer
#triple-third:last-child,
.zone-navigation
#triple-third:last-child,
.usa-grid-full .usa-width-one-third:last-child,
.usa-grid-full #left-one-third:last-child,
.usa-grid-full
#right-one-third:last-child,
.usa-grid-full
#left-one-third-tile:last-child,
.usa-grid-full
#triple-first:last-child,
.usa-grid-full
#triple-second:last-child,
.usa-grid-full
#triple-third:last-child {
margin-right: 0; }
.usa-grid .usa-width-two-thirds, #translate .usa-width-two-thirds,
#header .usa-width-two-thirds,
#layout-before-main .usa-width-two-thirds,
#layout-content .usa-width-two-thirds,
#layout-featured .usa-width-two-thirds,
#next .usa-width-two-thirds,
#footer .usa-width-two-thirds,
.zone-navigation .usa-width-two-thirds, .usa-grid #right-two-thirds, #translate #right-two-thirds,
#header #right-two-thirds,
#layout-before-main #right-two-thirds,
#layout-content #right-two-thirds,
#layout-featured #right-two-thirds,
#next #right-two-thirds,
#footer #right-two-thirds,
.zone-navigation #right-two-thirds, .usa-grid
#left-two-thirds, #translate
#left-two-thirds,
#header
#left-two-thirds,
#layout-before-main
#left-two-thirds,
#layout-content
#left-two-thirds,
#layout-featured
#left-two-thirds,
#next
#left-two-thirds,
#footer
#left-two-thirds,
.zone-navigation
#left-two-thirds, .usa-grid
#right-two-thirds-tile, #translate
#right-two-thirds-tile,
#header
#right-two-thirds-tile,
#layout-before-main
#right-two-thirds-tile,
#layout-content
#right-two-thirds-tile,
#layout-featured
#right-two-thirds-tile,
#next
#right-two-thirds-tile,
#footer
#right-two-thirds-tile,
.zone-navigation
#right-two-thirds-tile, .usa-grid
.librarywrapper, #translate
.librarywrapper,
#header
.librarywrapper,
#layout-before-main
.librarywrapper,
#layout-content
.librarywrapper,
#layout-featured
.librarywrapper,
#next
.librarywrapper,
#footer
.librarywrapper,
.zone-navigation
.librarywrapper,
.usa-grid-full .usa-width-two-thirds,
.usa-grid-full #right-two-thirds,
.usa-grid-full
#left-two-thirds,
.usa-grid-full
#right-two-thirds-tile,
.usa-grid-full
.librarywrapper {
float: left;
display: block;
margin-right: 2.35765%;
width: 65.88078%; }
.usa-grid .usa-width-two-thirds:last-child, #translate .usa-width-two-thirds:last-child,
#header .usa-width-two-thirds:last-child,
#layout-before-main .usa-width-two-thirds:last-child,
#layout-content .usa-width-two-thirds:last-child,
#layout-featured .usa-width-two-thirds:last-child,
#next .usa-width-two-thirds:last-child,
#footer .usa-width-two-thirds:last-child,
.zone-navigation .usa-width-two-thirds:last-child, .usa-grid #right-two-thirds:last-child, #translate #right-two-thirds:last-child,
#header #right-two-thirds:last-child,
#layout-before-main #right-two-thirds:last-child,
#layout-content #right-two-thirds:last-child,
#layout-featured #right-two-thirds:last-child,
#next #right-two-thirds:last-child,
#footer #right-two-thirds:last-child,
.zone-navigation #right-two-thirds:last-child, .usa-grid
#left-two-thirds:last-child, #translate
#left-two-thirds:last-child,
#header
#left-two-thirds:last-child,
#layout-before-main
#left-two-thirds:last-child,
#layout-content
#left-two-thirds:last-child,
#layout-featured
#left-two-thirds:last-child,
#next
#left-two-thirds:last-child,
#footer
#left-two-thirds:last-child,
.zone-navigation
#left-two-thirds:last-child, .usa-grid
#right-two-thirds-tile:last-child, #translate
#right-two-thirds-tile:last-child,
#header
#right-two-thirds-tile:last-child,
#layout-before-main
#right-two-thirds-tile:last-child,
#layout-content
#right-two-thirds-tile:last-child,
#layout-featured
#right-two-thirds-tile:last-child,
#next
#right-two-thirds-tile:last-child,
#footer
#right-two-thirds-tile:last-child,
.zone-navigation
#right-two-thirds-tile:last-child, .usa-grid
.librarywrapper:last-child, #translate
.librarywrapper:last-child,
#header
.librarywrapper:last-child,
#layout-before-main
.librarywrapper:last-child,
#layout-content
.librarywrapper:last-child,
#layout-featured
.librarywrapper:last-child,
#next
.librarywrapper:last-child,
#footer
.librarywrapper:last-child,
.zone-navigation
.librarywrapper:last-child,
.usa-grid-full .usa-width-two-thirds:last-child,
.usa-grid-full #right-two-thirds:last-child,
.usa-grid-full
#left-two-thirds:last-child,
.usa-grid-full
#right-two-thirds-tile:last-child,
.usa-grid-full
.librarywrapper:last-child {
margin-right: 0; }
.usa-grid .usa-width-one-fourth, #translate .usa-width-one-fourth,
#header .usa-width-one-fourth,
#layout-before-main .usa-width-one-fourth,
#layout-content .usa-width-one-fourth,
#layout-featured .usa-width-one-fourth,
#next .usa-width-one-fourth,
#footer .usa-width-one-fourth,
.zone-navigation .usa-width-one-fourth, .usa-grid #quad-first, #translate #quad-first,
#header #quad-first,
#layout-before-main #quad-first,
#layout-content #quad-first,
#layout-featured #quad-first,
#next #quad-first,
#footer #quad-first,
.zone-navigation #quad-first, .usa-grid
#quad-second, #translate
#quad-second,
#header
#quad-second,
#layout-before-main
#quad-second,
#layout-content
#quad-second,
#layout-featured
#quad-second,
#next
#quad-second,
#footer
#quad-second,
.zone-navigation
#quad-second, .usa-grid
#quad-third, #translate
#quad-third,
#header
#quad-third,
#layout-before-main
#quad-third,
#layout-content
#quad-third,
#layout-featured
#quad-third,
#next
#quad-third,
#footer
#quad-third,
.zone-navigation
#quad-third, .usa-grid
#quad-fourth, #translate
#quad-fourth,
#header
#quad-fourth,
#layout-before-main
#quad-fourth,
#layout-content
#quad-fourth,
#layout-featured
#quad-fourth,
#next
#quad-fourth,
#footer
#quad-fourth,
.zone-navigation
#quad-fourth, .usa-grid
#footer-quad-first, #translate
#footer-quad-first,
#header
#footer-quad-first,
#layout-before-main
#footer-quad-first,
#layout-content
#footer-quad-first,
#layout-featured
#footer-quad-first,
#next
#footer-quad-first,
#footer
#footer-quad-first,
.zone-navigation
#footer-quad-first, .usa-grid
#footer-quad-second, #translate
#footer-quad-second,
#header
#footer-quad-second,
#layout-before-main
#footer-quad-second,
#layout-content
#footer-quad-second,
#layout-featured
#footer-quad-second,
#next
#footer-quad-second,
#footer
#footer-quad-second,
.zone-navigation
#footer-quad-second, .usa-grid
#footer-quad-third, #translate
#footer-quad-third,
#header
#footer-quad-third,
#layout-before-main
#footer-quad-third,
#layout-content
#footer-quad-third,
#layout-featured
#footer-quad-third,
#next
#footer-quad-third,
#footer
#footer-quad-third,
.zone-navigation
#footer-quad-third, .usa-grid
#footer-quad-fourth, #translate
#footer-quad-fourth,
#header
#footer-quad-fourth,
#layout-before-main
#footer-quad-fourth,
#layout-content
#footer-quad-fourth,
#layout-featured
#footer-quad-fourth,
#next
#footer-quad-fourth,
#footer
#footer-quad-fourth,
.zone-navigation
#footer-quad-fourth,
.usa-grid-full .usa-width-one-fourth,
.usa-grid-full #quad-first,
.usa-grid-full
#quad-second,
.usa-grid-full
#quad-third,
.usa-grid-full
#quad-fourth,
.usa-grid-full
#footer-quad-first,
.usa-grid-full
#footer-quad-second,
.usa-grid-full
#footer-quad-third,
.usa-grid-full
#footer-quad-fourth {
float: left;
display: block;
margin-right: 2.35765%;
width: 23.23176%; }
.usa-grid .usa-width-one-fourth:last-child, #translate .usa-width-one-fourth:last-child,
#header .usa-width-one-fourth:last-child,
#layout-before-main .usa-width-one-fourth:last-child,
#layout-content .usa-width-one-fourth:last-child,
#layout-featured .usa-width-one-fourth:last-child,
#next .usa-width-one-fourth:last-child,
#footer .usa-width-one-fourth:last-child,
.zone-navigation .usa-width-one-fourth:last-child, .usa-grid #quad-first:last-child, #translate #quad-first:last-child,
#header #quad-first:last-child,
#layout-before-main #quad-first:last-child,
#layout-content #quad-first:last-child,
#layout-featured #quad-first:last-child,
#next #quad-first:last-child,
#footer #quad-first:last-child,
.zone-navigation #quad-first:last-child, .usa-grid
#quad-second:last-child, #translate
#quad-second:last-child,
#header
#quad-second:last-child,
#layout-before-main
#quad-second:last-child,
#layout-content
#quad-second:last-child,
#layout-featured
#quad-second:last-child,
#next
#quad-second:last-child,
#footer
#quad-second:last-child,
.zone-navigation
#quad-second:last-child, .usa-grid
#quad-third:last-child, #translate
#quad-third:last-child,
#header
#quad-third:last-child,
#layout-before-main
#quad-third:last-child,
#layout-content
#quad-third:last-child,
#layout-featured
#quad-third:last-child,
#next
#quad-third:last-child,
#footer
#quad-third:last-child,
.zone-navigation
#quad-third:last-child, .usa-grid
#quad-fourth:last-child, #translate
#quad-fourth:last-child,
#header
#quad-fourth:last-child,
#layout-before-main
#quad-fourth:last-child,
#layout-content
#quad-fourth:last-child,
#layout-featured
#quad-fourth:last-child,
#next
#quad-fourth:last-child,
#footer
#quad-fourth:last-child,
.zone-navigation
#quad-fourth:last-child, .usa-grid
#footer-quad-first:last-child, #translate
#footer-quad-first:last-child,
#header
#footer-quad-first:last-child,
#layout-before-main
#footer-quad-first:last-child,
#layout-content
#footer-quad-first:last-child,
#layout-featured
#footer-quad-first:last-child,
#next
#footer-quad-first:last-child,
#footer
#footer-quad-first:last-child,
.zone-navigation
#footer-quad-first:last-child, .usa-grid
#footer-quad-second:last-child, #translate
#footer-quad-second:last-child,
#header
#footer-quad-second:last-child,
#layout-before-main
#footer-quad-second:last-child,
#layout-content
#footer-quad-second:last-child,
#layout-featured
#footer-quad-second:last-child,
#next
#footer-quad-second:last-child,
#footer
#footer-quad-second:last-child,
.zone-navigation
#footer-quad-second:last-child, .usa-grid
#footer-quad-third:last-child, #translate
#footer-quad-third:last-child,
#header
#footer-quad-third:last-child,
#layout-before-main
#footer-quad-third:last-child,
#layout-content
#footer-quad-third:last-child,
#layout-featured
#footer-quad-third:last-child,
#next
#footer-quad-third:last-child,
#footer
#footer-quad-third:last-child,
.zone-navigation
#footer-quad-third:last-child, .usa-grid
#footer-quad-fourth:last-child, #translate
#footer-quad-fourth:last-child,
#header
#footer-quad-fourth:last-child,
#layout-before-main
#footer-quad-fourth:last-child,
#layout-content
#footer-quad-fourth:last-child,
#layout-featured
#footer-quad-fourth:last-child,
#next
#footer-quad-fourth:last-child,
#footer
#footer-quad-fourth:last-child,
.zone-navigation
#footer-quad-fourth:last-child,
.usa-grid-full .usa-width-one-fourth:last-child,
.usa-grid-full #quad-first:last-child,
.usa-grid-full
#quad-second:last-child,
.usa-grid-full
#quad-third:last-child,
.usa-grid-full
#quad-fourth:last-child,
.usa-grid-full
#footer-quad-first:last-child,
.usa-grid-full
#footer-quad-second:last-child,
.usa-grid-full
#footer-quad-third:last-child,
.usa-grid-full
#footer-quad-fourth:last-child {
margin-right: 0; }
.usa-grid .usa-width-one-fourth:nth-child(2n), #translate .usa-width-one-fourth:nth-child(2n),
#header .usa-width-one-fourth:nth-child(2n),
#layout-before-main .usa-width-one-fourth:nth-child(2n),
#layout-content .usa-width-one-fourth:nth-child(2n),
#layout-featured .usa-width-one-fourth:nth-child(2n),
#next .usa-width-one-fourth:nth-child(2n),
#footer .usa-width-one-fourth:nth-child(2n),
.zone-navigation .usa-width-one-fourth:nth-child(2n), .usa-grid #quad-first:nth-child(2n), #translate #quad-first:nth-child(2n),
#header #quad-first:nth-child(2n),
#layout-before-main #quad-first:nth-child(2n),
#layout-content #quad-first:nth-child(2n),
#layout-featured #quad-first:nth-child(2n),
#next #quad-first:nth-child(2n),
#footer #quad-first:nth-child(2n),
.zone-navigation #quad-first:nth-child(2n), .usa-grid
#quad-second:nth-child(2n), #translate
#quad-second:nth-child(2n),
#header
#quad-second:nth-child(2n),
#layout-before-main
#quad-second:nth-child(2n),
#layout-content
#quad-second:nth-child(2n),
#layout-featured
#quad-second:nth-child(2n),
#next
#quad-second:nth-child(2n),
#footer
#quad-second:nth-child(2n),
.zone-navigation
#quad-second:nth-child(2n), .usa-grid
#quad-third:nth-child(2n), #translate
#quad-third:nth-child(2n),
#header
#quad-third:nth-child(2n),
#layout-before-main
#quad-third:nth-child(2n),
#layout-content
#quad-third:nth-child(2n),
#layout-featured
#quad-third:nth-child(2n),
#next
#quad-third:nth-child(2n),
#footer
#quad-third:nth-child(2n),
.zone-navigation
#quad-third:nth-child(2n), .usa-grid
#quad-fourth:nth-child(2n), #translate
#quad-fourth:nth-child(2n),
#header
#quad-fourth:nth-child(2n),
#layout-before-main
#quad-fourth:nth-child(2n),
#layout-content
#quad-fourth:nth-child(2n),
#layout-featured
#quad-fourth:nth-child(2n),
#next
#quad-fourth:nth-child(2n),
#footer
#quad-fourth:nth-child(2n),
.zone-navigation
#quad-fourth:nth-child(2n), .usa-grid
#footer-quad-first:nth-child(2n), #translate
#footer-quad-first:nth-child(2n),
#header
#footer-quad-first:nth-child(2n),
#layout-before-main
#footer-quad-first:nth-child(2n),
#layout-content
#footer-quad-first:nth-child(2n),
#layout-featured
#footer-quad-first:nth-child(2n),
#next
#footer-quad-first:nth-child(2n),
#footer
#footer-quad-first:nth-child(2n),
.zone-navigation
#footer-quad-first:nth-child(2n), .usa-grid
#footer-quad-second:nth-child(2n), #translate
#footer-quad-second:nth-child(2n),
#header
#footer-quad-second:nth-child(2n),
#layout-before-main
#footer-quad-second:nth-child(2n),
#layout-content
#footer-quad-second:nth-child(2n),
#layout-featured
#footer-quad-second:nth-child(2n),
#next
#footer-quad-second:nth-child(2n),
#footer
#footer-quad-second:nth-child(2n),
.zone-navigation
#footer-quad-second:nth-child(2n), .usa-grid
#footer-quad-third:nth-child(2n), #translate
#footer-quad-third:nth-child(2n),
#header
#footer-quad-third:nth-child(2n),
#layout-before-main
#footer-quad-third:nth-child(2n),
#layout-content
#footer-quad-third:nth-child(2n),
#layout-featured
#footer-quad-third:nth-child(2n),
#next
#footer-quad-third:nth-child(2n),
#footer
#footer-quad-third:nth-child(2n),
.zone-navigation
#footer-quad-third:nth-child(2n), .usa-grid
#footer-quad-fourth:nth-child(2n), #translate
#footer-quad-fourth:nth-child(2n),
#header
#footer-quad-fourth:nth-child(2n),
#layout-before-main
#footer-quad-fourth:nth-child(2n),
#layout-content
#footer-quad-fourth:nth-child(2n),
#layout-featured
#footer-quad-fourth:nth-child(2n),
#next
#footer-quad-fourth:nth-child(2n),
#footer
#footer-quad-fourth:nth-child(2n),
.zone-navigation
#footer-quad-fourth:nth-child(2n),
.usa-grid-full .usa-width-one-fourth:nth-child(2n),
.usa-grid-full #quad-first:nth-child(2n),
.usa-grid-full
#quad-second:nth-child(2n),
.usa-grid-full
#quad-third:nth-child(2n),
.usa-grid-full
#quad-fourth:nth-child(2n),
.usa-grid-full
#footer-quad-first:nth-child(2n),
.usa-grid-full
#footer-quad-second:nth-child(2n),
.usa-grid-full
#footer-quad-third:nth-child(2n),
.usa-grid-full
#footer-quad-fourth:nth-child(2n) {
float: left;
display: block;
margin-right: 2.35765%;
width: 23.23176%; }
.usa-grid .usa-width-one-fourth:nth-child(2n):last-child, #translate .usa-width-one-fourth:nth-child(2n):last-child,
#header .usa-width-one-fourth:nth-child(2n):last-child,
#layout-before-main .usa-width-one-fourth:nth-child(2n):last-child,
#layout-content .usa-width-one-fourth:nth-child(2n):last-child,
#layout-featured .usa-width-one-fourth:nth-child(2n):last-child,
#next .usa-width-one-fourth:nth-child(2n):last-child,
#footer .usa-width-one-fourth:nth-child(2n):last-child,
.zone-navigation .usa-width-one-fourth:nth-child(2n):last-child, .usa-grid #quad-first:nth-child(2n):last-child, #translate #quad-first:nth-child(2n):last-child,
#header #quad-first:nth-child(2n):last-child,
#layout-before-main #quad-first:nth-child(2n):last-child,
#layout-content #quad-first:nth-child(2n):last-child,
#layout-featured #quad-first:nth-child(2n):last-child,
#next #quad-first:nth-child(2n):last-child,
#footer #quad-first:nth-child(2n):last-child,
.zone-navigation #quad-first:nth-child(2n):last-child, .usa-grid
#quad-second:nth-child(2n):last-child, #translate
#quad-second:nth-child(2n):last-child,
#header
#quad-second:nth-child(2n):last-child,
#layout-before-main
#quad-second:nth-child(2n):last-child,
#layout-content
#quad-second:nth-child(2n):last-child,
#layout-featured
#quad-second:nth-child(2n):last-child,
#next
#quad-second:nth-child(2n):last-child,
#footer
#quad-second:nth-child(2n):last-child,
.zone-navigation
#quad-second:nth-child(2n):last-child, .usa-grid
#quad-third:nth-child(2n):last-child, #translate
#quad-third:nth-child(2n):last-child,
#header
#quad-third:nth-child(2n):last-child,
#layout-before-main
#quad-third:nth-child(2n):last-child,
#layout-content
#quad-third:nth-child(2n):last-child,
#layout-featured
#quad-third:nth-child(2n):last-child,
#next
#quad-third:nth-child(2n):last-child,
#footer
#quad-third:nth-child(2n):last-child,
.zone-navigation
#quad-third:nth-child(2n):last-child, .usa-grid
#quad-fourth:nth-child(2n):last-child, #translate
#quad-fourth:nth-child(2n):last-child,
#header
#quad-fourth:nth-child(2n):last-child,
#layout-before-main
#quad-fourth:nth-child(2n):last-child,
#layout-content
#quad-fourth:nth-child(2n):last-child,
#layout-featured
#quad-fourth:nth-child(2n):last-child,
#next
#quad-fourth:nth-child(2n):last-child,
#footer
#quad-fourth:nth-child(2n):last-child,
.zone-navigation
#quad-fourth:nth-child(2n):last-child, .usa-grid
#footer-quad-first:nth-child(2n):last-child, #translate
#footer-quad-first:nth-child(2n):last-child,
#header
#footer-quad-first:nth-child(2n):last-child,
#layout-before-main
#footer-quad-first:nth-child(2n):last-child,
#layout-content
#footer-quad-first:nth-child(2n):last-child,
#layout-featured
#footer-quad-first:nth-child(2n):last-child,
#next
#footer-quad-first:nth-child(2n):last-child,
#footer
#footer-quad-first:nth-child(2n):last-child,
.zone-navigation
#footer-quad-first:nth-child(2n):last-child, .usa-grid
#footer-quad-second:nth-child(2n):last-child, #translate
#footer-quad-second:nth-child(2n):last-child,
#header
#footer-quad-second:nth-child(2n):last-child,
#layout-before-main
#footer-quad-second:nth-child(2n):last-child,
#layout-content
#footer-quad-second:nth-child(2n):last-child,
#layout-featured
#footer-quad-second:nth-child(2n):last-child,
#next
#footer-quad-second:nth-child(2n):last-child,
#footer
#footer-quad-second:nth-child(2n):last-child,
.zone-navigation
#footer-quad-second:nth-child(2n):last-child, .usa-grid
#footer-quad-third:nth-child(2n):last-child, #translate
#footer-quad-third:nth-child(2n):last-child,
#header
#footer-quad-third:nth-child(2n):last-child,
#layout-before-main
#footer-quad-third:nth-child(2n):last-child,
#layout-content
#footer-quad-third:nth-child(2n):last-child,
#layout-featured
#footer-quad-third:nth-child(2n):last-child,
#next
#footer-quad-third:nth-child(2n):last-child,
#footer
#footer-quad-third:nth-child(2n):last-child,
.zone-navigation
#footer-quad-third:nth-child(2n):last-child, .usa-grid
#footer-quad-fourth:nth-child(2n):last-child, #translate
#footer-quad-fourth:nth-child(2n):last-child,
#header
#footer-quad-fourth:nth-child(2n):last-child,
#layout-before-main
#footer-quad-fourth:nth-child(2n):last-child,
#layout-content
#footer-quad-fourth:nth-child(2n):last-child,
#layout-featured
#footer-quad-fourth:nth-child(2n):last-child,
#next
#footer-quad-fourth:nth-child(2n):last-child,
#footer
#footer-quad-fourth:nth-child(2n):last-child,
.zone-navigation
#footer-quad-fourth:nth-child(2n):last-child,
.usa-grid-full .usa-width-one-fourth:nth-child(2n):last-child,
.usa-grid-full #quad-first:nth-child(2n):last-child,
.usa-grid-full
#quad-second:nth-child(2n):last-child,
.usa-grid-full
#quad-third:nth-child(2n):last-child,
.usa-grid-full
#quad-fourth:nth-child(2n):last-child,
.usa-grid-full
#footer-quad-first:nth-child(2n):last-child,
.usa-grid-full
#footer-quad-second:nth-child(2n):last-child,
.usa-grid-full
#footer-quad-third:nth-child(2n):last-child,
.usa-grid-full
#footer-quad-fourth:nth-child(2n):last-child {
margin-right: 0; }
.usa-grid .usa-width-one-fourth:nth-child(4n), #translate .usa-width-one-fourth:nth-child(4n),
#header .usa-width-one-fourth:nth-child(4n),
#layout-before-main .usa-width-one-fourth:nth-child(4n),
#layout-content .usa-width-one-fourth:nth-child(4n),
#layout-featured .usa-width-one-fourth:nth-child(4n),
#next .usa-width-one-fourth:nth-child(4n),
#footer .usa-width-one-fourth:nth-child(4n),
.zone-navigation .usa-width-one-fourth:nth-child(4n), .usa-grid #quad-first:nth-child(4n), #translate #quad-first:nth-child(4n),
#header #quad-first:nth-child(4n),
#layout-before-main #quad-first:nth-child(4n),
#layout-content #quad-first:nth-child(4n),
#layout-featured #quad-first:nth-child(4n),
#next #quad-first:nth-child(4n),
#footer #quad-first:nth-child(4n),
.zone-navigation #quad-first:nth-child(4n), .usa-grid
#quad-second:nth-child(4n), #translate
#quad-second:nth-child(4n),
#header
#quad-second:nth-child(4n),
#layout-before-main
#quad-second:nth-child(4n),
#layout-content
#quad-second:nth-child(4n),
#layout-featured
#quad-second:nth-child(4n),
#next
#quad-second:nth-child(4n),
#footer
#quad-second:nth-child(4n),
.zone-navigation
#quad-second:nth-child(4n), .usa-grid
#quad-third:nth-child(4n), #translate
#quad-third:nth-child(4n),
#header
#quad-third:nth-child(4n),
#layout-before-main
#quad-third:nth-child(4n),
#layout-content
#quad-third:nth-child(4n),
#layout-featured
#quad-third:nth-child(4n),
#next
#quad-third:nth-child(4n),
#footer
#quad-third:nth-child(4n),
.zone-navigation
#quad-third:nth-child(4n), .usa-grid
#quad-fourth:nth-child(4n), #translate
#quad-fourth:nth-child(4n),
#header
#quad-fourth:nth-child(4n),
#layout-before-main
#quad-fourth:nth-child(4n),
#layout-content
#quad-fourth:nth-child(4n),
#layout-featured
#quad-fourth:nth-child(4n),
#next
#quad-fourth:nth-child(4n),
#footer
#quad-fourth:nth-child(4n),
.zone-navigation
#quad-fourth:nth-child(4n), .usa-grid
#footer-quad-first:nth-child(4n), #translate
#footer-quad-first:nth-child(4n),
#header
#footer-quad-first:nth-child(4n),
#layout-before-main
#footer-quad-first:nth-child(4n),
#layout-content
#footer-quad-first:nth-child(4n),
#layout-featured
#footer-quad-first:nth-child(4n),
#next
#footer-quad-first:nth-child(4n),
#footer
#footer-quad-first:nth-child(4n),
.zone-navigation
#footer-quad-first:nth-child(4n), .usa-grid
#footer-quad-second:nth-child(4n), #translate
#footer-quad-second:nth-child(4n),
#header
#footer-quad-second:nth-child(4n),
#layout-before-main
#footer-quad-second:nth-child(4n),
#layout-content
#footer-quad-second:nth-child(4n),
#layout-featured
#footer-quad-second:nth-child(4n),
#next
#footer-quad-second:nth-child(4n),
#footer
#footer-quad-second:nth-child(4n),
.zone-navigation
#footer-quad-second:nth-child(4n), .usa-grid
#footer-quad-third:nth-child(4n), #translate
#footer-quad-third:nth-child(4n),
#header
#footer-quad-third:nth-child(4n),
#layout-before-main
#footer-quad-third:nth-child(4n),
#layout-content
#footer-quad-third:nth-child(4n),
#layout-featured
#footer-quad-third:nth-child(4n),
#next
#footer-quad-third:nth-child(4n),
#footer
#footer-quad-third:nth-child(4n),
.zone-navigation
#footer-quad-third:nth-child(4n), .usa-grid
#footer-quad-fourth:nth-child(4n), #translate
#footer-quad-fourth:nth-child(4n),
#header
#footer-quad-fourth:nth-child(4n),
#layout-before-main
#footer-quad-fourth:nth-child(4n),
#layout-content
#footer-quad-fourth:nth-child(4n),
#layout-featured
#footer-quad-fourth:nth-child(4n),
#next
#footer-quad-fourth:nth-child(4n),
#footer
#footer-quad-fourth:nth-child(4n),
.zone-navigation
#footer-quad-fourth:nth-child(4n),
.usa-grid-full .usa-width-one-fourth:nth-child(4n),
.usa-grid-full #quad-first:nth-child(4n),
.usa-grid-full
#quad-second:nth-child(4n),
.usa-grid-full
#quad-third:nth-child(4n),
.usa-grid-full
#quad-fourth:nth-child(4n),
.usa-grid-full
#footer-quad-first:nth-child(4n),
.usa-grid-full
#footer-quad-second:nth-child(4n),
.usa-grid-full
#footer-quad-third:nth-child(4n),
.usa-grid-full
#footer-quad-fourth:nth-child(4n) {
margin-right: 0; }
.usa-grid .usa-width-three-fourths, #translate .usa-width-three-fourths,
#header .usa-width-three-fourths,
#layout-before-main .usa-width-three-fourths,
#layout-content .usa-width-three-fourths,
#layout-featured .usa-width-three-fourths,
#next .usa-width-three-fourths,
#footer .usa-width-three-fourths,
.zone-navigation .usa-width-three-fourths,
.usa-grid-full .usa-width-three-fourths {
float: left;
display: block;
margin-right: 2.35765%;
width: 74.41059%; }
.usa-grid .usa-width-three-fourths:last-child, #translate .usa-width-three-fourths:last-child,
#header .usa-width-three-fourths:last-child,
#layout-before-main .usa-width-three-fourths:last-child,
#layout-content .usa-width-three-fourths:last-child,
#layout-featured .usa-width-three-fourths:last-child,
#next .usa-width-three-fourths:last-child,
#footer .usa-width-three-fourths:last-child,
.zone-navigation .usa-width-three-fourths:last-child,
.usa-grid-full .usa-width-three-fourths:last-child {
margin-right: 0; }
.usa-grid .usa-width-one-sixth, #translate .usa-width-one-sixth,
#header .usa-width-one-sixth,
#layout-before-main .usa-width-one-sixth,
#layout-content .usa-width-one-sixth,
#layout-featured .usa-width-one-sixth,
#next .usa-width-one-sixth,
#footer .usa-width-one-sixth,
.zone-navigation .usa-width-one-sixth,
.usa-grid-full .usa-width-one-sixth {
float: left;
display: block;
margin-right: 2.35765%;
width: 14.70196%; }
.usa-grid .usa-width-one-sixth:last-child, #translate .usa-width-one-sixth:last-child,
#header .usa-width-one-sixth:last-child,
#layout-before-main .usa-width-one-sixth:last-child,
#layout-content .usa-width-one-sixth:last-child,
#layout-featured .usa-width-one-sixth:last-child,
#next .usa-width-one-sixth:last-child,
#footer .usa-width-one-sixth:last-child,
.zone-navigation .usa-width-one-sixth:last-child,
.usa-grid-full .usa-width-one-sixth:last-child {
margin-right: 0; }
.usa-grid .usa-width-one-sixth:nth-child(3n), #translate .usa-width-one-sixth:nth-child(3n),
#header .usa-width-one-sixth:nth-child(3n),
#layout-before-main .usa-width-one-sixth:nth-child(3n),
#layout-content .usa-width-one-sixth:nth-child(3n),
#layout-featured .usa-width-one-sixth:nth-child(3n),
#next .usa-width-one-sixth:nth-child(3n),
#footer .usa-width-one-sixth:nth-child(3n),
.zone-navigation .usa-width-one-sixth:nth-child(3n),
.usa-grid-full .usa-width-one-sixth:nth-child(3n) {
float: left;
display: block;
margin-right: 2.35765%;
width: 14.70196%; }
.usa-grid .usa-width-one-sixth:nth-child(3n):last-child, #translate .usa-width-one-sixth:nth-child(3n):last-child,
#header .usa-width-one-sixth:nth-child(3n):last-child,
#layout-before-main .usa-width-one-sixth:nth-child(3n):last-child,
#layout-content .usa-width-one-sixth:nth-child(3n):last-child,
#layout-featured .usa-width-one-sixth:nth-child(3n):last-child,
#next .usa-width-one-sixth:nth-child(3n):last-child,
#footer .usa-width-one-sixth:nth-child(3n):last-child,
.zone-navigation .usa-width-one-sixth:nth-child(3n):last-child,
.usa-grid-full .usa-width-one-sixth:nth-child(3n):last-child {
margin-right: 0; }
.usa-grid .usa-width-one-sixth:nth-child(6n), #translate .usa-width-one-sixth:nth-child(6n),
#header .usa-width-one-sixth:nth-child(6n),
#layout-before-main .usa-width-one-sixth:nth-child(6n),
#layout-content .usa-width-one-sixth:nth-child(6n),
#layout-featured .usa-width-one-sixth:nth-child(6n),
#next .usa-width-one-sixth:nth-child(6n),
#footer .usa-width-one-sixth:nth-child(6n),
.zone-navigation .usa-width-one-sixth:nth-child(6n),
.usa-grid-full .usa-width-one-sixth:nth-child(6n) {
margin-right: 0; }
.usa-grid .usa-width-five-sixths, #translate .usa-width-five-sixths,
#header .usa-width-five-sixths,
#layout-before-main .usa-width-five-sixths,
#layout-content .usa-width-five-sixths,
#layout-featured .usa-width-five-sixths,
#next .usa-width-five-sixths,
#footer .usa-width-five-sixths,
.zone-navigation .usa-width-five-sixths,
.usa-grid-full .usa-width-five-sixths {
float: left;
display: block;
margin-right: 2.35765%;
width: 82.94039%; }
.usa-grid .usa-width-five-sixths:last-child, #translate .usa-width-five-sixths:last-child,
#header .usa-width-five-sixths:last-child,
#layout-before-main .usa-width-five-sixths:last-child,
#layout-content .usa-width-five-sixths:last-child,
#layout-featured .usa-width-five-sixths:last-child,
#next .usa-width-five-sixths:last-child,
#footer .usa-width-five-sixths:last-child,
.zone-navigation .usa-width-five-sixths:last-child,
.usa-grid-full .usa-width-five-sixths:last-child {
margin-right: 0; }
.usa-grid .usa-width-one-twelfth, #translate .usa-width-one-twelfth,
#header .usa-width-one-twelfth,
#layout-before-main .usa-width-one-twelfth,
#layout-content .usa-width-one-twelfth,
#layout-featured .usa-width-one-twelfth,
#next .usa-width-one-twelfth,
#footer .usa-width-one-twelfth,
.zone-navigation .usa-width-one-twelfth,
.usa-grid-full .usa-width-one-twelfth {
float: left;
display: block;
margin-right: 2.35765%;
width: 6.17215%; }
.usa-grid .usa-width-one-twelfth:last-child, #translate .usa-width-one-twelfth:last-child,
#header .usa-width-one-twelfth:last-child,
#layout-before-main .usa-width-one-twelfth:last-child,
#layout-content .usa-width-one-twelfth:last-child,
#layout-featured .usa-width-one-twelfth:last-child,
#next .usa-width-one-twelfth:last-child,
#footer .usa-width-one-twelfth:last-child,
.zone-navigation .usa-width-one-twelfth:last-child,
.usa-grid-full .usa-width-one-twelfth:last-child {
margin-right: 0; }
.usa-grid .usa-width-one-twelfth:nth-child(3n), #translate .usa-width-one-twelfth:nth-child(3n),
#header .usa-width-one-twelfth:nth-child(3n),
#layout-before-main .usa-width-one-twelfth:nth-child(3n),
#layout-content .usa-width-one-twelfth:nth-child(3n),
#layout-featured .usa-width-one-twelfth:nth-child(3n),
#next .usa-width-one-twelfth:nth-child(3n),
#footer .usa-width-one-twelfth:nth-child(3n),
.zone-navigation .usa-width-one-twelfth:nth-child(3n),
.usa-grid-full .usa-width-one-twelfth:nth-child(3n) {
float: left;
display: block;
margin-right: 2.35765%;
width: 6.17215%; }
.usa-grid .usa-width-one-twelfth:nth-child(3n):last-child, #translate .usa-width-one-twelfth:nth-child(3n):last-child,
#header .usa-width-one-twelfth:nth-child(3n):last-child,
#layout-before-main .usa-width-one-twelfth:nth-child(3n):last-child,
#layout-content .usa-width-one-twelfth:nth-child(3n):last-child,
#layout-featured .usa-width-one-twelfth:nth-child(3n):last-child,
#next .usa-width-one-twelfth:nth-child(3n):last-child,
#footer .usa-width-one-twelfth:nth-child(3n):last-child,
.zone-navigation .usa-width-one-twelfth:nth-child(3n):last-child,
.usa-grid-full .usa-width-one-twelfth:nth-child(3n):last-child {
margin-right: 0; }
.usa-grid .usa-width-one-twelfth:nth-child(12n), #translate .usa-width-one-twelfth:nth-child(12n),
#header .usa-width-one-twelfth:nth-child(12n),
#layout-before-main .usa-width-one-twelfth:nth-child(12n),
#layout-content .usa-width-one-twelfth:nth-child(12n),
#layout-featured .usa-width-one-twelfth:nth-child(12n),
#next .usa-width-one-twelfth:nth-child(12n),
#footer .usa-width-one-twelfth:nth-child(12n),
.zone-navigation .usa-width-one-twelfth:nth-child(12n),
.usa-grid-full .usa-width-one-twelfth:nth-child(12n) {
margin-right: 0; } }
.usa-grid .usa-end-row, #translate .usa-end-row,
#header .usa-end-row,
#layout-before-main .usa-end-row,
#layout-content .usa-end-row,
#layout-featured .usa-end-row,
#next .usa-end-row,
#footer .usa-end-row,
.zone-navigation .usa-end-row,
.usa-grid-full .usa-end-row {
margin-right: 0; }
.usa-grid, #translate,
#header,
#layout-before-main,
#layout-content,
#layout-featured,
#next,
#footer,
.zone-navigation {
padding: 0 2rem; }
.usa-grid-full {
padding: 0; }
.usa-sr-only {
position: absolute;
left: -999em; }
html {
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif;
font-size: 10px; }
body {
font-size: 1.7rem; }
p {
line-height: 1.5;
margin-top: 0;
margin-bottom: 1em; }
a {
color: #1a325d;
text-decoration: none; }
a:hover, a:active {
color: #1a325d;
text-decoration: underline; }
a:visited {
color: #1a325d; }
a:focus {
box-shadow: none;
outline: 0; }
p {
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif; }
h1 {
color: #333; }
h2, h3, h4, h5, h6 {
color: #333; }
h1, h2, h3, h4, h5, h6 {
text-transform: uppercase;
clear: both;
line-height: 1.3;
margin-top: .9em;
margin-bottom: .5em; }
h1, h3 {
font-family: "Trenda", "Helvetica", "Arial", sans-serif; }
h2, h4, h5, h6 {
font-family: "Trenda", "Helvetica", "Arial", sans-serif; }
hr {
border-top: 1px solid #333;
border-bottom: 1px solid transparent;
border-left: 1px solid transparent;
border-right: 1px solid transparent;
margin: 1em 0; }
b, strong {
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif !important; }
em {
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif; }
h1 {
font-size: 3rem;
font-weight: 400; }
@media screen and (max-width: 481px) {
h1 {
font-size: 3rem; } }
.widget h1 {
font-size: 3rem;
font-weight: 400; }
@media screen and (max-width: 481px) {
.widget h1 {
font-size: 2.8rem; } }
h2 {
font-size: 2.2rem;
font-weight: 400; }
h3 {
font-size: 2rem;
font-weight: 400; }
h4 {
font-size: 1.7rem;
font-weight: 400; }
h5 {
font-size: 1.5rem;
font-weight: 400; }
h6 {
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif;
font-size: 1.3rem;
font-weight: 400;
text-transform: uppercase; }
cite,
var,
address,
dfn {
font-style: normal; }
.usa-content p {
max-width: 53rem; }
.usa-content-list {
max-width: 53rem; }
p a,
.usa-content-list a {
text-decoration: underline; }
.usa-sans p,
.usa-sans a,
.usa-sans li,
.usa-sans span {
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif; }
.usa-serif p,
.usa-serif a,
.usa-serif li,
.usa-serif span {
font-family: "Merriweather", "Georgia", "Times New Roman", serif; }
.usa-sans a {
border-bottom: none;
font-weight: 600; }
.usa-display {
font-size: 2rem;
font-weight: 400;
margin-bottom: 0; }
@media screen and (min-width: 481px) {
.usa-display {
font-size: 3rem;
font-weight: 400; } }
@media screen and (min-width: 727px) {
.usa-display {
font-size: 5.2rem;
font-weight: 400; } }
.usa-font-lead {
font-size: 2rem;
font-family: "Merriweather", "Georgia", "Times New Roman", serif;
line-height: 1.7; }
.usa-image-block {
position: relative; }
.usa-image-text-block {
color: #ffffff;
left: 0;
margin-left: 8%;
position: absolute;
top: 0; }
.usa-image-text {
margin-top: 0; }
.usa-drop_text {
margin-bottom: 0; }
.usa-background-dark {
background-color: #323a45; }
.usa-background-dark p, .usa-background-dark span {
color: #ffffff; }
.usa-background-dark a {
color: #d6d7d9; }
.usa-background-dark a:hover {
color: #ffffff; }
.usa-text-small {
font-size: 1.3rem;
margin-top: 0; }
/*Orchard*/
.page-header > h1 {
margin: 0;
line-height: 1em; }
article.widget h2:first-child, article.widget h3:first-child, article.widget h4:first-child, article.widget h5:first-child, article.widget h6:first-child {
margin-top: 0; }
.has_caption {
font-size: 1.4rem;
line-height: 1.3em; }
.zone .alert {
margin-bottom: 15px; }
.caption {
margin-top: 3px;
padding-top: 0;
font-size: 16px;
color: #5f5f5f;
margin-bottom: 15px;
line-height: 1.2; }
/* This stylesheet generated by Transfonter (https://transfonter.org) on February 25, 2017 6:21 AM */
@font-face {
font-family: 'Trenda Semibold It';
src: url("fonts/Trenda-SemiboldIt.eot");
src: url("fonts/Trenda-SemiboldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-SemiboldIt.woff") format("woff"), url("fonts/Trenda-SemiboldIt.ttf") format("truetype");
font-weight: 600;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Heavy.eot");
src: url("fonts/Trenda-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Heavy.woff") format("woff"), url("fonts/Trenda-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Semibold.eot");
src: url("fonts/Trenda-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Semibold.woff") format("woff"), url("fonts/Trenda-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Heavy It';
src: url("fonts/Trenda-HeavyIt.eot");
src: url("fonts/Trenda-HeavyIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-HeavyIt.woff") format("woff"), url("fonts/Trenda-HeavyIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Semibold.eot");
src: url("fonts/SanFranciscoText-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Semibold.woff") format("woff"), url("fonts/SanFranciscoText-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda ExtraLight It';
src: url("fonts/Trenda-ExtraLightIt.eot");
src: url("fonts/Trenda-ExtraLightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLightIt.woff") format("woff"), url("fonts/Trenda-ExtraLightIt.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Thin.eot");
src: url("fonts/Trenda-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Thin.woff") format("woff"), url("fonts/Trenda-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Heavy.eot");
src: url("fonts/SanFranciscoDisplay-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Heavy.woff") format("woff"), url("fonts/SanFranciscoDisplay-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Medium.eot");
src: url("fonts/SanFranciscoDisplay-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Medium.woff") format("woff"), url("fonts/SanFranciscoDisplay-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Gotham Condensed';
src: url("fonts/GothamCondensed-Bold.eot");
src: url("fonts/GothamCondensed-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/GothamCondensed-Bold.woff") format("woff"), url("fonts/GothamCondensed-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'Trenda Black It';
src: url("fonts/Trenda-BlackIt.eot");
src: url("fonts/Trenda-BlackIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BlackIt.woff") format("woff"), url("fonts/Trenda-BlackIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda Thin It';
src: url("fonts/Trenda-ThinIt.eot");
src: url("fonts/Trenda-ThinIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ThinIt.woff") format("woff"), url("fonts/Trenda-ThinIt.ttf") format("truetype");
font-weight: 100;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Semibold.eot");
src: url("fonts/SanFranciscoDisplay-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Semibold.woff") format("woff"), url("fonts/SanFranciscoDisplay-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Bold It';
src: url("fonts/Trenda-BoldIt.eot");
src: url("fonts/Trenda-BoldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BoldIt.woff") format("woff"), url("fonts/Trenda-BoldIt.ttf") format("truetype");
font-weight: bold;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Thin.eot");
src: url("fonts/SanFranciscoText-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Thin.woff") format("woff"), url("fonts/SanFranciscoText-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda Light It';
src: url("fonts/Trenda-LightIt.eot");
src: url("fonts/Trenda-LightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-LightIt.woff") format("woff"), url("fonts/Trenda-LightIt.ttf") format("truetype");
font-weight: 300;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Heavy.eot");
src: url("fonts/SanFranciscoText-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Heavy.woff") format("woff"), url("fonts/SanFranciscoText-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Italic.eot");
src: url("fonts/SanFranciscoText-Italic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Italic.woff") format("woff"), url("fonts/SanFranciscoText-Italic.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Light.eot");
src: url("fonts/SanFranciscoDisplay-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Light.woff") format("woff"), url("fonts/SanFranciscoDisplay-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Ultralight.eot");
src: url("fonts/SanFranciscoDisplay-Ultralight.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Ultralight.woff") format("woff"), url("fonts/SanFranciscoDisplay-Ultralight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Medium.eot");
src: url("fonts/SanFranciscoText-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Medium.woff") format("woff"), url("fonts/SanFranciscoText-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-ExtraLight.eot");
src: url("fonts/Trenda-ExtraLight.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLight.woff") format("woff"), url("fonts/Trenda-ExtraLight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Regular.eot");
src: url("fonts/SanFranciscoText-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Regular.woff") format("woff"), url("fonts/SanFranciscoText-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Thin.eot");
src: url("fonts/SanFranciscoDisplay-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Thin.woff") format("woff"), url("fonts/SanFranciscoDisplay-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Regular.eot");
src: url("fonts/Trenda-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Regular.woff") format("woff"), url("fonts/Trenda-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-HeavyItalic.eot");
src: url("fonts/SanFranciscoText-HeavyItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-HeavyItalic.woff") format("woff"), url("fonts/SanFranciscoText-HeavyItalic.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Light.eot");
src: url("fonts/Trenda-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Light.woff") format("woff"), url("fonts/Trenda-Light.ttf") format("truetype");
font-weight: 300;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Bold.eot");
src: url("fonts/Trenda-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Bold.woff") format("woff"), url("fonts/Trenda-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-LightItalic.eot");
src: url("fonts/SanFranciscoText-LightItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-LightItalic.woff") format("woff"), url("fonts/SanFranciscoText-LightItalic.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Regular.eot");
src: url("fonts/SanFranciscoDisplay-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Regular.woff") format("woff"), url("fonts/SanFranciscoDisplay-Regular.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Black.eot");
src: url("fonts/Trenda-Black.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Black.woff") format("woff"), url("fonts/Trenda-Black.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Light.eot");
src: url("fonts/SanFranciscoText-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Light.woff") format("woff"), url("fonts/SanFranciscoText-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda It';
src: url("fonts/Trenda-RegularIt.eot");
src: url("fonts/Trenda-RegularIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-RegularIt.woff") format("woff"), url("fonts/Trenda-RegularIt.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
/*---------------------------------------------------
OCC Theme
----------------------------------------------------*/
/*header and footer backgrounds*/
/*#f1f1f1;*/
/*menu*/
/*buttons*/
/*translate*/
/*headings*/
/*links*/
/*---------------------------------------------------
----------------------------------------------------*/
ul, ol {
margin-top: 1em;
margin-bottom: 1em; }
ul li, ol li {
line-height: 1.2em;
margin-top: .5em;
margin-bottom: .5em; }
h1 + ul,
h1 + ol, h2 + ul,
h2 + ol, h3 + ul,
h3 + ol, h4 + ul,
h4 + ol, h5 + ul,
h5 + ol, h6 + ul,
h6 + ol, p + ul,
p + ol {
margin-top: 0;
margin-bottom: 1em; }
ul, ol {
padding-left: 40px;
display: block; }
ul > ul, ul > ol, ol > ul, ol > ol {
margin: .5em 0; }
ul li:after, ol li:after {
content: "";
display: block;
margin-bottom: 0; }
ul {
list-style-type: disc; }
ol {
list-style-type: decimal; }
ul li {
display: list-item; }
ol li {
display: list-item;
counter-increment: table-ol; }
li {
margin: 0; }
ul.menu-main-menu {
display: inline; }
.usa-unstyled-list {
margin: 0;
padding: 0;
list-style-type: none; }
.usa-unstyled-list li {
display: list-item;
margin: 0; }
.usa-unstyled-list li:before {
display: none; }
.usa-unstyled-list li:after {
display: none; }
div.zone > ul.comments {
padding-left: 0; }
ul.comments {
list-style: none;
list-style-type: none; }
input,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="search"],
input[type="file"],
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="time"],
input[type="week"],
textarea,
select {
border: 1px solid #5b616b;
border-radius: 0;
box-sizing: border-box;
color: #000;
display: block;
font-size: 1.7rem;
margin: .2em 0;
max-width: 46rem;
width: 100%;
outline: none;
padding: 1rem .7em;
appearance: none; }
input:focus, input.usa-input-focus,
input[type="text"]:focus,
input[type="text"].usa-input-focus,
input[type="email"]:focus,
input[type="email"].usa-input-focus,
input[type="password"]:focus,
input[type="password"].usa-input-focus,
input[type="url"]:focus,
input[type="url"].usa-input-focus,
input[type="tel"]:focus,
input[type="tel"].usa-input-focus,
input[type="number"]:focus,
input[type="number"].usa-input-focus,
input[type="search"]:focus,
input[type="search"].usa-input-focus,
input[type="file"]:focus,
input[type="file"].usa-input-focus,
input[type="date"]:focus,
input[type="date"].usa-input-focus,
input[type="datetime-local"]:focus,
input[type="datetime-local"].usa-input-focus,
input[type="month"]:focus,
input[type="month"].usa-input-focus,
input[type="time"]:focus,
input[type="time"].usa-input-focus,
input[type="week"]:focus,
input[type="week"].usa-input-focus,
textarea:focus,
textarea.usa-input-focus,
select:focus,
select.usa-input-focus {
box-shadow: 0 0 3px #3e94cf, 0 0 7px #3e94cf; }
input.usa-input-success,
input[type="text"].usa-input-success,
input[type="email"].usa-input-success,
input[type="password"].usa-input-success,
input[type="url"].usa-input-success,
input[type="tel"].usa-input-success,
input[type="number"].usa-input-success,
input[type="search"].usa-input-success,
input[type="file"].usa-input-success,
input[type="date"].usa-input-success,
input[type="datetime-local"].usa-input-success,
input[type="month"].usa-input-success,
input[type="time"].usa-input-success,
input[type="week"].usa-input-success,
textarea.usa-input-success,
select.usa-input-success {
border: 3px solid #4aa564; }
.usa-input-error {
border-left: 4px solid #cd2026;
margin-top: 3rem;
padding-bottom: .8rem;
padding-left: 1.5rem;
padding-top: .8rem;
position: relative;
right: 1.9rem; }
.usa-input-error input {
border: 3px solid #cd2026;
width: calc(100% + 1.5rem); }
.usa-input-error label {
margin-top: 0; }
.usa-input-error-label {
display: block;
font-size: 1.7rem;
font-weight: 600; }
.usa-input-error-message {
color: #cd2026;
display: block;
font-size: 1.7rem;
font-weight: 600;
padding-bottom: 3px;
padding-top: 3px; }
label {
display: block;
margin-top: 3rem;
max-width: 46rem;
font-weight: normal; }
textarea {
height: 25rem; }
select {
-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
background-color: #ffffff;
background-image: url("../img/arrow-down.png");
background-image: url("../img/arrow-down.svg");
background-position: right 1.3rem center;
background-repeat: no-repeat;
background-size: 1.3rem; }
legend {
font-size: 2.2rem;
font-weight: normal; }
.usa-fieldset-inputs label {
margin-top: 0; }
.usa-form-hint {
color: #757575;
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif;
margin-bottom: 0; }
/**
* Custom checkboxes
*/
input[type="checkbox"],
input[type="radio"] {
position: absolute;
left: -999em;
width: 20px !important;
height: 20px !important; }
input[type="checkbox"] + label,
input[type="radio"] + label {
cursor: pointer;
font-weight: 400;
margin-bottom: 0.5em;
display: inline;
position: relative;
top: -3px; }
input[type=range] {
-webkit-appearance: none;
border: none;
padding-left: 0;
width: 100%; }
input[type=range]:focus {
box-shadow: none;
outline: none; }
input[type=range]::-webkit-slider-runnable-track {
background: #bdbdbd;
border: 1px solid #757575;
cursor: pointer;
height: 1.2rem;
width: 100%; }
input[type=range]::-moz-range-track {
background: #0071bc;
border: 1px solid #757575;
cursor: pointer;
height: 1.2rem;
width: 100%; }
input[type=range]::-ms-track {
background: transparent;
color: transparent;
cursor: pointer;
height: 1.2rem;
width: 100%; }
input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
border: 1px solid #757575;
height: 2.2rem;
border-radius: 1.5rem;
background: #eeeeee;
cursor: pointer;
margin-top: -.65rem;
width: 2.2rem; }
input[type=range]::-moz-range-thumb {
background: #eeeeee;
border: 1px solid #757575;
border-radius: 1.5rem;
cursor: pointer;
height: 2.2rem;
width: 2.2rem; }
input[type=range]::-ms-thumb {
background: #eeeeee;
border: 1px solid #757575;
border-radius: 1.5rem;
cursor: pointer;
height: 2.2rem;
width: 2.2rem; }
input[type=range]::-ms-fill-lower {
background: #bdbdbd;
border: 1px solid #757575;
border-radius: 2rem; }
input[type=range]::-ms-fill-upper {
background: #bdbdbd;
border: 1px solid #757575;
border-radius: 2rem; }
input[type=range]:focus::-webkit-slider-thumb {
border: 2px solid #3e94cf; }
input[type=range]:focus::-moz-range-thumb {
border: 2px solid #3e94cf; }
input[type=range]:focus::-ms-thumb {
border: 2px solid #3e94cf; }
.usa-date-of-birth label {
margin-top: 0; }
.usa-date-of-birth input[type=number]::-webkit-inner-spin-button,
.usa-date-of-birth input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
appearance: none;
margin: 0; }
.usa-date-of-birth input[type=number] {
-moz-appearance: textfield; }
.usa-form-group-day,
.usa-form-group-month,
.usa-form-group-year {
float: left;
clear: none;
margin-right: 1.5rem;
width: 5rem; }
.usa-form-group-year {
width: 7rem; }
/* This stylesheet generated by Transfonter (https://transfonter.org) on February 25, 2017 6:21 AM */
@font-face {
font-family: 'Trenda Semibold It';
src: url("fonts/Trenda-SemiboldIt.eot");
src: url("fonts/Trenda-SemiboldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-SemiboldIt.woff") format("woff"), url("fonts/Trenda-SemiboldIt.ttf") format("truetype");
font-weight: 600;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Heavy.eot");
src: url("fonts/Trenda-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Heavy.woff") format("woff"), url("fonts/Trenda-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Semibold.eot");
src: url("fonts/Trenda-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Semibold.woff") format("woff"), url("fonts/Trenda-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Heavy It';
src: url("fonts/Trenda-HeavyIt.eot");
src: url("fonts/Trenda-HeavyIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-HeavyIt.woff") format("woff"), url("fonts/Trenda-HeavyIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Semibold.eot");
src: url("fonts/SanFranciscoText-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Semibold.woff") format("woff"), url("fonts/SanFranciscoText-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda ExtraLight It';
src: url("fonts/Trenda-ExtraLightIt.eot");
src: url("fonts/Trenda-ExtraLightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLightIt.woff") format("woff"), url("fonts/Trenda-ExtraLightIt.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Thin.eot");
src: url("fonts/Trenda-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Thin.woff") format("woff"), url("fonts/Trenda-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Heavy.eot");
src: url("fonts/SanFranciscoDisplay-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Heavy.woff") format("woff"), url("fonts/SanFranciscoDisplay-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Medium.eot");
src: url("fonts/SanFranciscoDisplay-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Medium.woff") format("woff"), url("fonts/SanFranciscoDisplay-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Gotham Condensed';
src: url("fonts/GothamCondensed-Bold.eot");
src: url("fonts/GothamCondensed-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/GothamCondensed-Bold.woff") format("woff"), url("fonts/GothamCondensed-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'Trenda Black It';
src: url("fonts/Trenda-BlackIt.eot");
src: url("fonts/Trenda-BlackIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BlackIt.woff") format("woff"), url("fonts/Trenda-BlackIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda Thin It';
src: url("fonts/Trenda-ThinIt.eot");
src: url("fonts/Trenda-ThinIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ThinIt.woff") format("woff"), url("fonts/Trenda-ThinIt.ttf") format("truetype");
font-weight: 100;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Semibold.eot");
src: url("fonts/SanFranciscoDisplay-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Semibold.woff") format("woff"), url("fonts/SanFranciscoDisplay-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Bold It';
src: url("fonts/Trenda-BoldIt.eot");
src: url("fonts/Trenda-BoldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BoldIt.woff") format("woff"), url("fonts/Trenda-BoldIt.ttf") format("truetype");
font-weight: bold;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Thin.eot");
src: url("fonts/SanFranciscoText-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Thin.woff") format("woff"), url("fonts/SanFranciscoText-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda Light It';
src: url("fonts/Trenda-LightIt.eot");
src: url("fonts/Trenda-LightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-LightIt.woff") format("woff"), url("fonts/Trenda-LightIt.ttf") format("truetype");
font-weight: 300;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Heavy.eot");
src: url("fonts/SanFranciscoText-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Heavy.woff") format("woff"), url("fonts/SanFranciscoText-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Italic.eot");
src: url("fonts/SanFranciscoText-Italic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Italic.woff") format("woff"), url("fonts/SanFranciscoText-Italic.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Light.eot");
src: url("fonts/SanFranciscoDisplay-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Light.woff") format("woff"), url("fonts/SanFranciscoDisplay-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Ultralight.eot");
src: url("fonts/SanFranciscoDisplay-Ultralight.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Ultralight.woff") format("woff"), url("fonts/SanFranciscoDisplay-Ultralight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Medium.eot");
src: url("fonts/SanFranciscoText-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Medium.woff") format("woff"), url("fonts/SanFranciscoText-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-ExtraLight.eot");
src: url("fonts/Trenda-ExtraLight.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLight.woff") format("woff"), url("fonts/Trenda-ExtraLight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Regular.eot");
src: url("fonts/SanFranciscoText-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Regular.woff") format("woff"), url("fonts/SanFranciscoText-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Thin.eot");
src: url("fonts/SanFranciscoDisplay-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Thin.woff") format("woff"), url("fonts/SanFranciscoDisplay-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Regular.eot");
src: url("fonts/Trenda-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Regular.woff") format("woff"), url("fonts/Trenda-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-HeavyItalic.eot");
src: url("fonts/SanFranciscoText-HeavyItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-HeavyItalic.woff") format("woff"), url("fonts/SanFranciscoText-HeavyItalic.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Light.eot");
src: url("fonts/Trenda-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Light.woff") format("woff"), url("fonts/Trenda-Light.ttf") format("truetype");
font-weight: 300;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Bold.eot");
src: url("fonts/Trenda-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Bold.woff") format("woff"), url("fonts/Trenda-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-LightItalic.eot");
src: url("fonts/SanFranciscoText-LightItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-LightItalic.woff") format("woff"), url("fonts/SanFranciscoText-LightItalic.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Regular.eot");
src: url("fonts/SanFranciscoDisplay-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Regular.woff") format("woff"), url("fonts/SanFranciscoDisplay-Regular.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Black.eot");
src: url("fonts/Trenda-Black.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Black.woff") format("woff"), url("fonts/Trenda-Black.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Light.eot");
src: url("fonts/SanFranciscoText-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Light.woff") format("woff"), url("fonts/SanFranciscoText-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda It';
src: url("fonts/Trenda-RegularIt.eot");
src: url("fonts/Trenda-RegularIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-RegularIt.woff") format("woff"), url("fonts/Trenda-RegularIt.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
/*---------------------------------------------------
OCC Theme
----------------------------------------------------*/
/*header and footer backgrounds*/
/*#f1f1f1;*/
/*menu*/
/*buttons*/
/*translate*/
/*headings*/
/*links*/
/*---------------------------------------------------
----------------------------------------------------*/
.usa-button,
.usa-button-primary,
.usa-button:visited,
.usa-button-primary:visited,
button,
[type="button"],
[type="submit"],
[type="reset"],
[type="button"],
[type="submit"],
[type="reset"],
[type="image"] {
appearance: none;
background-color: #d52628;
border: 0;
border-radius: 0.3rem;
color: white;
cursor: pointer;
display: inline-block;
font-family: "Trenda", "Helvetica", "Arial", sans-serif;
text-transform: uppercase;
font-size: 1.7rem;
font-weight: normal;
line-height: 1;
margin-top: .5em;
margin-bottom: .5em;
margin-right: .5em;
outline: none;
padding: 1rem 2rem;
/*text-align: center;*/
text-decoration: none;
/*width: 100%;*/
-webkit-font-smoothing: antialiased; }
.usa-button:hover, .usa-button.usa-button-hover,
.usa-button-primary:hover,
.usa-button-primary.usa-button-hover,
.usa-button:visited:hover,
.usa-button:visited.usa-button-hover,
.usa-button-primary:visited:hover,
.usa-button-primary:visited.usa-button-hover,
button:hover,
button.usa-button-hover,
[type="button"]:hover,
[type="button"].usa-button-hover,
[type="submit"]:hover,
[type="submit"].usa-button-hover,
[type="reset"]:hover,
[type="reset"].usa-button-hover,
[type="button"]:hover,
[type="button"].usa-button-hover,
[type="submit"]:hover,
[type="submit"].usa-button-hover,
[type="reset"]:hover,
[type="reset"].usa-button-hover,
[type="image"]:hover,
[type="image"].usa-button-hover {
background-color: #bd2b2d;
border-bottom: 0;
color: white;
text-decoration: none; }
.usa-button:focus, .usa-button.usa-button-focus,
.usa-button-primary:focus,
.usa-button-primary.usa-button-focus,
.usa-button:visited:focus,
.usa-button:visited.usa-button-focus,
.usa-button-primary:visited:focus,
.usa-button-primary:visited.usa-button-focus,
button:focus,
button.usa-button-focus,
[type="button"]:focus,
[type="button"].usa-button-focus,
[type="submit"]:focus,
[type="submit"].usa-button-focus,
[type="reset"]:focus,
[type="reset"].usa-button-focus,
[type="button"]:focus,
[type="button"].usa-button-focus,
[type="submit"]:focus,
[type="submit"].usa-button-focus,
[type="reset"]:focus,
[type="reset"].usa-button-focus,
[type="image"]:focus,
[type="image"].usa-button-focus {
box-shadow: 0 0 3px #3e94cf, 0 0 7px #3e94cf; }
.usa-button:active, .usa-button.usa-button-active,
.usa-button-primary:active,
.usa-button-primary.usa-button-active,
.usa-button:visited:active,
.usa-button:visited.usa-button-active,
.usa-button-primary:visited:active,
.usa-button-primary:visited.usa-button-active,
button:active,
button.usa-button-active,
[type="button"]:active,
[type="button"].usa-button-active,
[type="submit"]:active,
[type="submit"].usa-button-active,
[type="reset"]:active,
[type="reset"].usa-button-active,
[type="button"]:active,
[type="button"].usa-button-active,
[type="submit"]:active,
[type="submit"].usa-button-active,
[type="reset"]:active,
[type="reset"].usa-button-active,
[type="image"]:active,
[type="image"].usa-button-active {
background-color: #bd2b2d; }
@media (min-width: 481px) {
.usa-button,
.usa-button-primary,
.usa-button:visited,
.usa-button-primary:visited,
button,
[type="button"],
[type="submit"],
[type="reset"],
[type="button"],
[type="submit"],
[type="reset"],
[type="image"] {
width: auto; } }
.usa-button.usa-button-primary-alt,
.usa-button-primary.usa-button-primary-alt,
.usa-button:visited.usa-button-primary-alt,
.usa-button-primary:visited.usa-button-primary-alt,
button.usa-button-primary-alt,
[type="button"].usa-button-primary-alt,
[type="submit"].usa-button-primary-alt,
[type="reset"].usa-button-primary-alt,
[type="button"].usa-button-primary-alt,
[type="submit"].usa-button-primary-alt,
[type="reset"].usa-button-primary-alt,
[type="image"].usa-button-primary-alt {
background-color: #02bfe7;
color: #212121; }
.usa-button.usa-button-primary-alt:hover, .usa-button.usa-button-primary-alt.usa-button-hover,
.usa-button-primary.usa-button-primary-alt:hover,
.usa-button-primary.usa-button-primary-alt.usa-button-hover,
.usa-button:visited.usa-button-primary-alt:hover,
.usa-button:visited.usa-button-primary-alt.usa-button-hover,
.usa-button-primary:visited.usa-button-primary-alt:hover,
.usa-button-primary:visited.usa-button-primary-alt.usa-button-hover,
button.usa-button-primary-alt:hover,
button.usa-button-primary-alt.usa-button-hover,
[type="button"].usa-button-primary-alt:hover,
[type="button"].usa-button-primary-alt.usa-button-hover,
[type="submit"].usa-button-primary-alt:hover,
[type="submit"].usa-button-primary-alt.usa-button-hover,
[type="reset"].usa-button-primary-alt:hover,
[type="reset"].usa-button-primary-alt.usa-button-hover,
[type="button"].usa-button-primary-alt:hover,
[type="button"].usa-button-primary-alt.usa-button-hover,
[type="submit"].usa-button-primary-alt:hover,
[type="submit"].usa-button-primary-alt.usa-button-hover,
[type="reset"].usa-button-primary-alt:hover,
[type="reset"].usa-button-primary-alt.usa-button-hover,
[type="image"].usa-button-primary-alt:hover,
[type="image"].usa-button-primary-alt.usa-button-hover {
background-color: #00a6d2; }
.usa-button.usa-button-primary-alt:active, .usa-button.usa-button-primary-alt.usa-button-active,
.usa-button-primary.usa-button-primary-alt:active,
.usa-button-primary.usa-button-primary-alt.usa-button-active,
.usa-button:visited.usa-button-primary-alt:active,
.usa-button:visited.usa-button-primary-alt.usa-button-active,
.usa-button-primary:visited.usa-button-primary-alt:active,
.usa-button-primary:visited.usa-button-primary-alt.usa-button-active,
button.usa-button-primary-alt:active,
button.usa-button-primary-alt.usa-button-active,
[type="button"].usa-button-primary-alt:active,
[type="button"].usa-button-primary-alt.usa-button-active,
[type="submit"].usa-button-primary-alt:active,
[type="submit"].usa-button-primary-alt.usa-button-active,
[type="reset"].usa-button-primary-alt:active,
[type="reset"].usa-button-primary-alt.usa-button-active,
[type="button"].usa-button-primary-alt:active,
[type="button"].usa-button-primary-alt.usa-button-active,
[type="submit"].usa-button-primary-alt:active,
[type="submit"].usa-button-primary-alt.usa-button-active,
[type="reset"].usa-button-primary-alt:active,
[type="reset"].usa-button-primary-alt.usa-button-active,
[type="image"].usa-button-primary-alt:active,
[type="image"].usa-button-primary-alt.usa-button-active {
background-color: #046b99;
color: white; }
.usa-button.usa-button-secondary,
.usa-button-primary.usa-button-secondary,
.usa-button:visited.usa-button-secondary,
.usa-button-primary:visited.usa-button-secondary,
button.usa-button-secondary,
[type="button"].usa-button-secondary,
[type="submit"].usa-button-secondary,
[type="reset"].usa-button-secondary,
[type="button"].usa-button-secondary,
[type="submit"].usa-button-secondary,
[type="reset"].usa-button-secondary,
[type="image"].usa-button-secondary {
background-color: #e31c3d; }
.usa-button.usa-button-secondary:hover, .usa-button.usa-button-secondary.usa-button-hover,
.usa-button-primary.usa-button-secondary:hover,
.usa-button-primary.usa-button-secondary.usa-button-hover,
.usa-button:visited.usa-button-secondary:hover,
.usa-button:visited.usa-button-secondary.usa-button-hover,
.usa-button-primary:visited.usa-button-secondary:hover,
.usa-button-primary:visited.usa-button-secondary.usa-button-hover,
button.usa-button-secondary:hover,
button.usa-button-secondary.usa-button-hover,
[type="button"].usa-button-secondary:hover,
[type="button"].usa-button-secondary.usa-button-hover,
[type="submit"].usa-button-secondary:hover,
[type="submit"].usa-button-secondary.usa-button-hover,
[type="reset"].usa-button-secondary:hover,
[type="reset"].usa-button-secondary.usa-button-hover,
[type="button"].usa-button-secondary:hover,
[type="button"].usa-button-secondary.usa-button-hover,
[type="submit"].usa-button-secondary:hover,
[type="submit"].usa-button-secondary.usa-button-hover,
[type="reset"].usa-button-secondary:hover,
[type="reset"].usa-button-secondary.usa-button-hover,
[type="image"].usa-button-secondary:hover,
[type="image"].usa-button-secondary.usa-button-hover {
background-color: #cd2026; }
.usa-button.usa-button-secondary:active, .usa-button.usa-button-secondary.usa-button-active,
.usa-button-primary.usa-button-secondary:active,
.usa-button-primary.usa-button-secondary.usa-button-active,
.usa-button:visited.usa-button-secondary:active,
.usa-button:visited.usa-button-secondary.usa-button-active,
.usa-button-primary:visited.usa-button-secondary:active,
.usa-button-primary:visited.usa-button-secondary.usa-button-active,
button.usa-button-secondary:active,
button.usa-button-secondary.usa-button-active,
[type="button"].usa-button-secondary:active,
[type="button"].usa-button-secondary.usa-button-active,
[type="submit"].usa-button-secondary:active,
[type="submit"].usa-button-secondary.usa-button-active,
[type="reset"].usa-button-secondary:active,
[type="reset"].usa-button-secondary.usa-button-active,
[type="button"].usa-button-secondary:active,
[type="button"].usa-button-secondary.usa-button-active,
[type="submit"].usa-button-secondary:active,
[type="submit"].usa-button-secondary.usa-button-active,
[type="reset"].usa-button-secondary:active,
[type="reset"].usa-button-secondary.usa-button-active,
[type="image"].usa-button-secondary:active,
[type="image"].usa-button-secondary.usa-button-active {
background-color: #981b1e; }
.usa-button.usa-button-gray,
.usa-button-primary.usa-button-gray,
.usa-button:visited.usa-button-gray,
.usa-button-primary:visited.usa-button-gray,
button.usa-button-gray,
[type="button"].usa-button-gray,
[type="submit"].usa-button-gray,
[type="reset"].usa-button-gray,
[type="button"].usa-button-gray,
[type="submit"].usa-button-gray,
[type="reset"].usa-button-gray,
[type="image"].usa-button-gray {
background-color: #5b616b; }
.usa-button.usa-button-gray:hover, .usa-button.usa-button-gray.usa-button-hover,
.usa-button-primary.usa-button-gray:hover,
.usa-button-primary.usa-button-gray.usa-button-hover,
.usa-button:visited.usa-button-gray:hover,
.usa-button:visited.usa-button-gray.usa-button-hover,
.usa-button-primary:visited.usa-button-gray:hover,
.usa-button-primary:visited.usa-button-gray.usa-button-hover,
button.usa-button-gray:hover,
button.usa-button-gray.usa-button-hover,
[type="button"].usa-button-gray:hover,
[type="button"].usa-button-gray.usa-button-hover,
[type="submit"].usa-button-gray:hover,
[type="submit"].usa-button-gray.usa-button-hover,
[type="reset"].usa-button-gray:hover,
[type="reset"].usa-button-gray.usa-button-hover,
[type="button"].usa-button-gray:hover,
[type="button"].usa-button-gray.usa-button-hover,
[type="submit"].usa-button-gray:hover,
[type="submit"].usa-button-gray.usa-button-hover,
[type="reset"].usa-button-gray:hover,
[type="reset"].usa-button-gray.usa-button-hover,
[type="image"].usa-button-gray:hover,
[type="image"].usa-button-gray.usa-button-hover {
background-color: #323a45; }
.usa-button.usa-button-gray:active, .usa-button.usa-button-gray.usa-button-active,
.usa-button-primary.usa-button-gray:active,
.usa-button-primary.usa-button-gray.usa-button-active,
.usa-button:visited.usa-button-gray:active,
.usa-button:visited.usa-button-gray.usa-button-active,
.usa-button-primary:visited.usa-button-gray:active,
.usa-button-primary:visited.usa-button-gray.usa-button-active,
button.usa-button-gray:active,
button.usa-button-gray.usa-button-active,
[type="button"].usa-button-gray:active,
[type="button"].usa-button-gray.usa-button-active,
[type="submit"].usa-button-gray:active,
[type="submit"].usa-button-gray.usa-button-active,
[type="reset"].usa-button-gray:active,
[type="reset"].usa-button-gray.usa-button-active,
[type="button"].usa-button-gray:active,
[type="button"].usa-button-gray.usa-button-active,
[type="submit"].usa-button-gray:active,
[type="submit"].usa-button-gray.usa-button-active,
[type="reset"].usa-button-gray:active,
[type="reset"].usa-button-gray.usa-button-active,
[type="image"].usa-button-gray:active,
[type="image"].usa-button-gray.usa-button-active {
background-color: #212121; }
.usa-button.usa-button-outline,
.usa-button-primary.usa-button-outline,
.usa-button:visited.usa-button-outline,
.usa-button-primary:visited.usa-button-outline,
button.usa-button-outline,
[type="button"].usa-button-outline,
[type="submit"].usa-button-outline,
[type="reset"].usa-button-outline,
[type="button"].usa-button-outline,
[type="submit"].usa-button-outline,
[type="reset"].usa-button-outline,
[type="image"].usa-button-outline {
background-color: #ffffff;
box-shadow: inset 0 0 0 2px #0071bc;
color: #0071bc; }
.usa-button.usa-button-outline:hover, .usa-button.usa-button-outline.usa-button-hover,
.usa-button-primary.usa-button-outline:hover,
.usa-button-primary.usa-button-outline.usa-button-hover,
.usa-button:visited.usa-button-outline:hover,
.usa-button:visited.usa-button-outline.usa-button-hover,
.usa-button-primary:visited.usa-button-outline:hover,
.usa-button-primary:visited.usa-button-outline.usa-button-hover,
button.usa-button-outline:hover,
button.usa-button-outline.usa-button-hover,
[type="button"].usa-button-outline:hover,
[type="button"].usa-button-outline.usa-button-hover,
[type="submit"].usa-button-outline:hover,
[type="submit"].usa-button-outline.usa-button-hover,
[type="reset"].usa-button-outline:hover,
[type="reset"].usa-button-outline.usa-button-hover,
[type="button"].usa-button-outline:hover,
[type="button"].usa-button-outline.usa-button-hover,
[type="submit"].usa-button-outline:hover,
[type="submit"].usa-button-outline.usa-button-hover,
[type="reset"].usa-button-outline:hover,
[type="reset"].usa-button-outline.usa-button-hover,
[type="image"].usa-button-outline:hover,
[type="image"].usa-button-outline.usa-button-hover {
box-shadow: inset 0 0 0 2px #205493;
color: #205493; }
.usa-button.usa-button-outline:active, .usa-button.usa-button-outline.usa-button-active,
.usa-button-primary.usa-button-outline:active,
.usa-button-primary.usa-button-outline.usa-button-active,
.usa-button:visited.usa-button-outline:active,
.usa-button:visited.usa-button-outline.usa-button-active,
.usa-button-primary:visited.usa-button-outline:active,
.usa-button-primary:visited.usa-button-outline.usa-button-active,
button.usa-button-outline:active,
button.usa-button-outline.usa-button-active,
[type="button"].usa-button-outline:active,
[type="button"].usa-button-outline.usa-button-active,
[type="submit"].usa-button-outline:active,
[type="submit"].usa-button-outline.usa-button-active,
[type="reset"].usa-button-outline:active,
[type="reset"].usa-button-outline.usa-button-active,
[type="button"].usa-button-outline:active,
[type="button"].usa-button-outline.usa-button-active,
[type="submit"].usa-button-outline:active,
[type="submit"].usa-button-outline.usa-button-active,
[type="reset"].usa-button-outline:active,
[type="reset"].usa-button-outline.usa-button-active,
[type="image"].usa-button-outline:active,
[type="image"].usa-button-outline.usa-button-active {
box-shadow: inset 0 0 0 2px #112e51;
color: #112e51; }
.usa-button.usa-button-outline:focus, .usa-button.usa-button-outline.usa-button-focus,
.usa-button-primary.usa-button-outline:focus,
.usa-button-primary.usa-button-outline.usa-button-focus,
.usa-button:visited.usa-button-outline:focus,
.usa-button:visited.usa-button-outline.usa-button-focus,
.usa-button-primary:visited.usa-button-outline:focus,
.usa-button-primary:visited.usa-button-outline.usa-button-focus,
button.usa-button-outline:focus,
button.usa-button-outline.usa-button-focus,
[type="button"].usa-button-outline:focus,
[type="button"].usa-button-outline.usa-button-focus,
[type="submit"].usa-button-outline:focus,
[type="submit"].usa-button-outline.usa-button-focus,
[type="reset"].usa-button-outline:focus,
[type="reset"].usa-button-outline.usa-button-focus,
[type="button"].usa-button-outline:focus,
[type="button"].usa-button-outline.usa-button-focus,
[type="submit"].usa-button-outline:focus,
[type="submit"].usa-button-outline.usa-button-focus,
[type="reset"].usa-button-outline:focus,
[type="reset"].usa-button-outline.usa-button-focus,
[type="image"].usa-button-outline:focus,
[type="image"].usa-button-outline.usa-button-focus {
box-shadow: inset 0 0 0 2px #112e51, 0 0 3px #3e94cf, 0 0 7px #3e94cf; }
.usa-button.usa-button-outline-inverse,
.usa-button-primary.usa-button-outline-inverse,
.usa-button:visited.usa-button-outline-inverse,
.usa-button-primary:visited.usa-button-outline-inverse,
button.usa-button-outline-inverse,
[type="button"].usa-button-outline-inverse,
[type="submit"].usa-button-outline-inverse,
[type="reset"].usa-button-outline-inverse,
[type="button"].usa-button-outline-inverse,
[type="submit"].usa-button-outline-inverse,
[type="reset"].usa-button-outline-inverse,
[type="image"].usa-button-outline-inverse {
background: transparent;
box-shadow: inset 0 0 0 2px #ffffff;
color: #ffffff; }
.usa-button.usa-button-outline-inverse:hover, .usa-button.usa-button-outline-inverse.usa-button-hover,
.usa-button-primary.usa-button-outline-inverse:hover,
.usa-button-primary.usa-button-outline-inverse.usa-button-hover,
.usa-button:visited.usa-button-outline-inverse:hover,
.usa-button:visited.usa-button-outline-inverse.usa-button-hover,
.usa-button-primary:visited.usa-button-outline-inverse:hover,
.usa-button-primary:visited.usa-button-outline-inverse.usa-button-hover,
button.usa-button-outline-inverse:hover,
button.usa-button-outline-inverse.usa-button-hover,
[type="button"].usa-button-outline-inverse:hover,
[type="button"].usa-button-outline-inverse.usa-button-hover,
[type="submit"].usa-button-outline-inverse:hover,
[type="submit"].usa-button-outline-inverse.usa-button-hover,
[type="reset"].usa-button-outline-inverse:hover,
[type="reset"].usa-button-outline-inverse.usa-button-hover,
[type="button"].usa-button-outline-inverse:hover,
[type="button"].usa-button-outline-inverse.usa-button-hover,
[type="submit"].usa-button-outline-inverse:hover,
[type="submit"].usa-button-outline-inverse.usa-button-hover,
[type="reset"].usa-button-outline-inverse:hover,
[type="reset"].usa-button-outline-inverse.usa-button-hover,
[type="image"].usa-button-outline-inverse:hover,
[type="image"].usa-button-outline-inverse.usa-button-hover {
box-shadow: inset 0 0 0 2px #d6d7d9;
color: #d6d7d9; }
.usa-button.usa-button-outline-inverse:active, .usa-button.usa-button-outline-inverse.usa-button-active,
.usa-button-primary.usa-button-outline-inverse:active,
.usa-button-primary.usa-button-outline-inverse.usa-button-active,
.usa-button:visited.usa-button-outline-inverse:active,
.usa-button:visited.usa-button-outline-inverse.usa-button-active,
.usa-button-primary:visited.usa-button-outline-inverse:active,
.usa-button-primary:visited.usa-button-outline-inverse.usa-button-active,
button.usa-button-outline-inverse:active,
button.usa-button-outline-inverse.usa-button-active,
[type="button"].usa-button-outline-inverse:active,
[type="button"].usa-button-outline-inverse.usa-button-active,
[type="submit"].usa-button-outline-inverse:active,
[type="submit"].usa-button-outline-inverse.usa-button-active,
[type="reset"].usa-button-outline-inverse:active,
[type="reset"].usa-button-outline-inverse.usa-button-active,
[type="button"].usa-button-outline-inverse:active,
[type="button"].usa-button-outline-inverse.usa-button-active,
[type="submit"].usa-button-outline-inverse:active,
[type="submit"].usa-button-outline-inverse.usa-button-active,
[type="reset"].usa-button-outline-inverse:active,
[type="reset"].usa-button-outline-inverse.usa-button-active,
[type="image"].usa-button-outline-inverse:active,
[type="image"].usa-button-outline-inverse.usa-button-active {
box-shadow: inset 0 0 0 2px #aeb0b5;
color: #d6d7d9; }
.usa-button.usa-button-outline-inverse:focus, .usa-button.usa-button-outline-inverse.usa-button-focus,
.usa-button-primary.usa-button-outline-inverse:focus,
.usa-button-primary.usa-button-outline-inverse.usa-button-focus,
.usa-button:visited.usa-button-outline-inverse:focus,
.usa-button:visited.usa-button-outline-inverse.usa-button-focus,
.usa-button-primary:visited.usa-button-outline-inverse:focus,
.usa-button-primary:visited.usa-button-outline-inverse.usa-button-focus,
button.usa-button-outline-inverse:focus,
button.usa-button-outline-inverse.usa-button-focus,
[type="button"].usa-button-outline-inverse:focus,
[type="button"].usa-button-outline-inverse.usa-button-focus,
[type="submit"].usa-button-outline-inverse:focus,
[type="submit"].usa-button-outline-inverse.usa-button-focus,
[type="reset"].usa-button-outline-inverse:focus,
[type="reset"].usa-button-outline-inverse.usa-button-focus,
[type="button"].usa-button-outline-inverse:focus,
[type="button"].usa-button-outline-inverse.usa-button-focus,
[type="submit"].usa-button-outline-inverse:focus,
[type="submit"].usa-button-outline-inverse.usa-button-focus,
[type="reset"].usa-button-outline-inverse:focus,
[type="reset"].usa-button-outline-inverse.usa-button-focus,
[type="image"].usa-button-outline-inverse:focus,
[type="image"].usa-button-outline-inverse.usa-button-focus {
box-shadow: inset 0 0 0 2px #aeb0b5, 0 0 3px #3e94cf, 0 0 7px #3e94cf; }
.usa-button.usa-button-big,
.usa-button-primary.usa-button-big,
.usa-button:visited.usa-button-big,
.usa-button-primary:visited.usa-button-big,
button.usa-button-big,
[type="button"].usa-button-big,
[type="submit"].usa-button-big,
[type="reset"].usa-button-big,
[type="button"].usa-button-big,
[type="submit"].usa-button-big,
[type="reset"].usa-button-big,
[type="image"].usa-button-big {
font-size: 1.9rem;
padding: 1.5rem 3rem; }
[type="submit"]:disabled,
.usa-button-disabled {
background-color: #d6d7d9;
color: #323a45;
cursor: default; }
[type="submit"]:disabled:hover, [type="submit"]:disabled.usa-button-hover, [type="submit"]:disabled:active, [type="submit"]:disabled.usa-button-active, [type="submit"]:disabled:focus,
.usa-button-disabled:hover,
.usa-button-disabled.usa-button-hover,
.usa-button-disabled:active,
.usa-button-disabled.usa-button-active,
.usa-button-disabled:focus {
background-color: #d6d7d9;
border: 0;
box-shadow: none;
color: #323a45; }
.usa-button-unstyled {
background: none;
border: 0;
border-radius: 0;
outline: 0;
padding: 0;
text-align: left; }
.usa-button-unstyled:focus, .usa-button-unstyled:hover {
box-shadow: initial; }
table {
border-spacing: 0;
margin: 2em 0;
min-width: 100%; }
table thead tr {
background-color: #f1f1f1; }
table thead th {
text-align: left; }
table th, table td {
border: 1px solid #5b616b;
padding: 1.5rem; }
.usa-table-borderless thead tr {
background-color: transparent; }
.usa-table-borderless thead tr th {
border-top: 0; }
.usa-table-borderless th, .usa-table-borderless td {
border-left: 0;
border-right: 0; }
html {
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif;
font-size: 10px; }
body {
font-size: 1.7rem; }
p {
line-height: 1.5;
margin-top: 0;
margin-bottom: 1em; }
a {
color: #1a325d;
text-decoration: none; }
a:hover, a:active {
color: #1a325d;
text-decoration: underline; }
a:visited {
color: #1a325d; }
a:focus {
box-shadow: none;
outline: 0; }
p {
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif; }
h1 {
color: #333; }
h2, h3, h4, h5, h6 {
color: #333; }
h1, h2, h3, h4, h5, h6 {
text-transform: uppercase;
clear: both;
line-height: 1.3;
margin-top: .9em;
margin-bottom: .5em; }
h1, h3 {
font-family: "Trenda", "Helvetica", "Arial", sans-serif; }
h2, h4, h5, h6 {
font-family: "Trenda", "Helvetica", "Arial", sans-serif; }
hr {
border-top: 1px solid #333;
border-bottom: 1px solid transparent;
border-left: 1px solid transparent;
border-right: 1px solid transparent;
margin: 1em 0; }
b, strong {
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif !important; }
em {
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif; }
h1 {
font-size: 3rem;
font-weight: 400; }
@media screen and (max-width: 481px) {
h1 {
font-size: 3rem; } }
.widget h1 {
font-size: 3rem;
font-weight: 400; }
@media screen and (max-width: 481px) {
.widget h1 {
font-size: 2.8rem; } }
h2 {
font-size: 2.2rem;
font-weight: 400; }
h3 {
font-size: 2rem;
font-weight: 400; }
h4 {
font-size: 1.7rem;
font-weight: 400; }
h5 {
font-size: 1.5rem;
font-weight: 400; }
h6 {
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif;
font-size: 1.3rem;
font-weight: 400;
text-transform: uppercase; }
cite,
var,
address,
dfn {
font-style: normal; }
.usa-content p {
max-width: 53rem; }
.usa-content-list {
max-width: 53rem; }
p a,
.usa-content-list a {
text-decoration: underline; }
.usa-sans p,
.usa-sans a,
.usa-sans li,
.usa-sans span {
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif; }
.usa-serif p,
.usa-serif a,
.usa-serif li,
.usa-serif span {
font-family: "Merriweather", "Georgia", "Times New Roman", serif; }
.usa-sans a {
border-bottom: none;
font-weight: 600; }
.usa-display {
font-size: 2rem;
font-weight: 400;
margin-bottom: 0; }
@media screen and (min-width: 481px) {
.usa-display {
font-size: 3rem;
font-weight: 400; } }
@media screen and (min-width: 727px) {
.usa-display {
font-size: 5.2rem;
font-weight: 400; } }
.usa-font-lead {
font-size: 2rem;
font-family: "Merriweather", "Georgia", "Times New Roman", serif;
line-height: 1.7; }
.usa-image-block {
position: relative; }
.usa-image-text-block {
color: #ffffff;
left: 0;
margin-left: 8%;
position: absolute;
top: 0; }
.usa-image-text {
margin-top: 0; }
.usa-drop_text {
margin-bottom: 0; }
.usa-background-dark {
background-color: #323a45; }
.usa-background-dark p, .usa-background-dark span {
color: #ffffff; }
.usa-background-dark a {
color: #d6d7d9; }
.usa-background-dark a:hover {
color: #ffffff; }
.usa-text-small {
font-size: 1.3rem;
margin-top: 0; }
/*Orchard*/
.page-header > h1 {
margin: 0;
line-height: 1em; }
article.widget h2:first-child, article.widget h3:first-child, article.widget h4:first-child, article.widget h5:first-child, article.widget h6:first-child {
margin-top: 0; }
.has_caption {
font-size: 1.4rem;
line-height: 1.3em; }
.zone .alert {
margin-bottom: 15px; }
.caption {
margin-top: 3px;
padding-top: 0;
font-size: 16px;
color: #5f5f5f;
margin-bottom: 15px;
line-height: 1.2; }
/* This stylesheet generated by Transfonter (https://transfonter.org) on February 25, 2017 6:21 AM */
@font-face {
font-family: 'Trenda Semibold It';
src: url("fonts/Trenda-SemiboldIt.eot");
src: url("fonts/Trenda-SemiboldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-SemiboldIt.woff") format("woff"), url("fonts/Trenda-SemiboldIt.ttf") format("truetype");
font-weight: 600;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Heavy.eot");
src: url("fonts/Trenda-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Heavy.woff") format("woff"), url("fonts/Trenda-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Semibold.eot");
src: url("fonts/Trenda-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Semibold.woff") format("woff"), url("fonts/Trenda-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Heavy It';
src: url("fonts/Trenda-HeavyIt.eot");
src: url("fonts/Trenda-HeavyIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-HeavyIt.woff") format("woff"), url("fonts/Trenda-HeavyIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Semibold.eot");
src: url("fonts/SanFranciscoText-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Semibold.woff") format("woff"), url("fonts/SanFranciscoText-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda ExtraLight It';
src: url("fonts/Trenda-ExtraLightIt.eot");
src: url("fonts/Trenda-ExtraLightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLightIt.woff") format("woff"), url("fonts/Trenda-ExtraLightIt.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Thin.eot");
src: url("fonts/Trenda-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Thin.woff") format("woff"), url("fonts/Trenda-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Heavy.eot");
src: url("fonts/SanFranciscoDisplay-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Heavy.woff") format("woff"), url("fonts/SanFranciscoDisplay-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Medium.eot");
src: url("fonts/SanFranciscoDisplay-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Medium.woff") format("woff"), url("fonts/SanFranciscoDisplay-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Gotham Condensed';
src: url("fonts/GothamCondensed-Bold.eot");
src: url("fonts/GothamCondensed-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/GothamCondensed-Bold.woff") format("woff"), url("fonts/GothamCondensed-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'Trenda Black It';
src: url("fonts/Trenda-BlackIt.eot");
src: url("fonts/Trenda-BlackIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BlackIt.woff") format("woff"), url("fonts/Trenda-BlackIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda Thin It';
src: url("fonts/Trenda-ThinIt.eot");
src: url("fonts/Trenda-ThinIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ThinIt.woff") format("woff"), url("fonts/Trenda-ThinIt.ttf") format("truetype");
font-weight: 100;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Semibold.eot");
src: url("fonts/SanFranciscoDisplay-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Semibold.woff") format("woff"), url("fonts/SanFranciscoDisplay-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Bold It';
src: url("fonts/Trenda-BoldIt.eot");
src: url("fonts/Trenda-BoldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BoldIt.woff") format("woff"), url("fonts/Trenda-BoldIt.ttf") format("truetype");
font-weight: bold;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Thin.eot");
src: url("fonts/SanFranciscoText-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Thin.woff") format("woff"), url("fonts/SanFranciscoText-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda Light It';
src: url("fonts/Trenda-LightIt.eot");
src: url("fonts/Trenda-LightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-LightIt.woff") format("woff"), url("fonts/Trenda-LightIt.ttf") format("truetype");
font-weight: 300;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Heavy.eot");
src: url("fonts/SanFranciscoText-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Heavy.woff") format("woff"), url("fonts/SanFranciscoText-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Italic.eot");
src: url("fonts/SanFranciscoText-Italic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Italic.woff") format("woff"), url("fonts/SanFranciscoText-Italic.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Light.eot");
src: url("fonts/SanFranciscoDisplay-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Light.woff") format("woff"), url("fonts/SanFranciscoDisplay-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Ultralight.eot");
src: url("fonts/SanFranciscoDisplay-Ultralight.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Ultralight.woff") format("woff"), url("fonts/SanFranciscoDisplay-Ultralight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Medium.eot");
src: url("fonts/SanFranciscoText-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Medium.woff") format("woff"), url("fonts/SanFranciscoText-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-ExtraLight.eot");
src: url("fonts/Trenda-ExtraLight.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLight.woff") format("woff"), url("fonts/Trenda-ExtraLight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Regular.eot");
src: url("fonts/SanFranciscoText-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Regular.woff") format("woff"), url("fonts/SanFranciscoText-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Thin.eot");
src: url("fonts/SanFranciscoDisplay-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Thin.woff") format("woff"), url("fonts/SanFranciscoDisplay-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Regular.eot");
src: url("fonts/Trenda-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Regular.woff") format("woff"), url("fonts/Trenda-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-HeavyItalic.eot");
src: url("fonts/SanFranciscoText-HeavyItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-HeavyItalic.woff") format("woff"), url("fonts/SanFranciscoText-HeavyItalic.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Light.eot");
src: url("fonts/Trenda-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Light.woff") format("woff"), url("fonts/Trenda-Light.ttf") format("truetype");
font-weight: 300;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Bold.eot");
src: url("fonts/Trenda-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Bold.woff") format("woff"), url("fonts/Trenda-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-LightItalic.eot");
src: url("fonts/SanFranciscoText-LightItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-LightItalic.woff") format("woff"), url("fonts/SanFranciscoText-LightItalic.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Regular.eot");
src: url("fonts/SanFranciscoDisplay-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Regular.woff") format("woff"), url("fonts/SanFranciscoDisplay-Regular.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Black.eot");
src: url("fonts/Trenda-Black.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Black.woff") format("woff"), url("fonts/Trenda-Black.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Light.eot");
src: url("fonts/SanFranciscoText-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Light.woff") format("woff"), url("fonts/SanFranciscoText-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda It';
src: url("fonts/Trenda-RegularIt.eot");
src: url("fonts/Trenda-RegularIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-RegularIt.woff") format("woff"), url("fonts/Trenda-RegularIt.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
/*---------------------------------------------------
OCC Theme
----------------------------------------------------*/
/*header and footer backgrounds*/
/*#f1f1f1;*/
/*menu*/
/*buttons*/
/*translate*/
/*headings*/
/*links*/
/*---------------------------------------------------
----------------------------------------------------*/
ul, ol {
margin-top: 1em;
margin-bottom: 1em; }
ul li, ol li {
line-height: 1.2em;
margin-top: .5em;
margin-bottom: .5em; }
h1 + ul,
h1 + ol, h2 + ul,
h2 + ol, h3 + ul,
h3 + ol, h4 + ul,
h4 + ol, h5 + ul,
h5 + ol, h6 + ul,
h6 + ol, p + ul,
p + ol {
margin-top: 0;
margin-bottom: 1em; }
ul, ol {
padding-left: 40px;
display: block; }
ul > ul, ul > ol, ol > ul, ol > ol {
margin: .5em 0; }
ul li:after, ol li:after {
content: "";
display: block;
margin-bottom: 0; }
ul {
list-style-type: disc; }
ol {
list-style-type: decimal; }
ul li {
display: list-item; }
ol li {
display: list-item;
counter-increment: table-ol; }
li {
margin: 0; }
ul.menu-main-menu {
display: inline; }
.usa-unstyled-list {
margin: 0;
padding: 0;
list-style-type: none; }
.usa-unstyled-list li {
display: list-item;
margin: 0; }
.usa-unstyled-list li:before {
display: none; }
.usa-unstyled-list li:after {
display: none; }
div.zone > ul.comments {
padding-left: 0; }
ul.comments {
list-style: none;
list-style-type: none; }
/* This stylesheet generated by Transfonter (https://transfonter.org) on February 25, 2017 6:21 AM */
@font-face {
font-family: 'Trenda Semibold It';
src: url("fonts/Trenda-SemiboldIt.eot");
src: url("fonts/Trenda-SemiboldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-SemiboldIt.woff") format("woff"), url("fonts/Trenda-SemiboldIt.ttf") format("truetype");
font-weight: 600;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Heavy.eot");
src: url("fonts/Trenda-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Heavy.woff") format("woff"), url("fonts/Trenda-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Semibold.eot");
src: url("fonts/Trenda-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Semibold.woff") format("woff"), url("fonts/Trenda-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Heavy It';
src: url("fonts/Trenda-HeavyIt.eot");
src: url("fonts/Trenda-HeavyIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-HeavyIt.woff") format("woff"), url("fonts/Trenda-HeavyIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Semibold.eot");
src: url("fonts/SanFranciscoText-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Semibold.woff") format("woff"), url("fonts/SanFranciscoText-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda ExtraLight It';
src: url("fonts/Trenda-ExtraLightIt.eot");
src: url("fonts/Trenda-ExtraLightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLightIt.woff") format("woff"), url("fonts/Trenda-ExtraLightIt.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Thin.eot");
src: url("fonts/Trenda-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Thin.woff") format("woff"), url("fonts/Trenda-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Heavy.eot");
src: url("fonts/SanFranciscoDisplay-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Heavy.woff") format("woff"), url("fonts/SanFranciscoDisplay-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Medium.eot");
src: url("fonts/SanFranciscoDisplay-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Medium.woff") format("woff"), url("fonts/SanFranciscoDisplay-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Gotham Condensed';
src: url("fonts/GothamCondensed-Bold.eot");
src: url("fonts/GothamCondensed-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/GothamCondensed-Bold.woff") format("woff"), url("fonts/GothamCondensed-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'Trenda Black It';
src: url("fonts/Trenda-BlackIt.eot");
src: url("fonts/Trenda-BlackIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BlackIt.woff") format("woff"), url("fonts/Trenda-BlackIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda Thin It';
src: url("fonts/Trenda-ThinIt.eot");
src: url("fonts/Trenda-ThinIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ThinIt.woff") format("woff"), url("fonts/Trenda-ThinIt.ttf") format("truetype");
font-weight: 100;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Semibold.eot");
src: url("fonts/SanFranciscoDisplay-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Semibold.woff") format("woff"), url("fonts/SanFranciscoDisplay-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Bold It';
src: url("fonts/Trenda-BoldIt.eot");
src: url("fonts/Trenda-BoldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BoldIt.woff") format("woff"), url("fonts/Trenda-BoldIt.ttf") format("truetype");
font-weight: bold;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Thin.eot");
src: url("fonts/SanFranciscoText-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Thin.woff") format("woff"), url("fonts/SanFranciscoText-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda Light It';
src: url("fonts/Trenda-LightIt.eot");
src: url("fonts/Trenda-LightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-LightIt.woff") format("woff"), url("fonts/Trenda-LightIt.ttf") format("truetype");
font-weight: 300;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Heavy.eot");
src: url("fonts/SanFranciscoText-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Heavy.woff") format("woff"), url("fonts/SanFranciscoText-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Italic.eot");
src: url("fonts/SanFranciscoText-Italic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Italic.woff") format("woff"), url("fonts/SanFranciscoText-Italic.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Light.eot");
src: url("fonts/SanFranciscoDisplay-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Light.woff") format("woff"), url("fonts/SanFranciscoDisplay-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Ultralight.eot");
src: url("fonts/SanFranciscoDisplay-Ultralight.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Ultralight.woff") format("woff"), url("fonts/SanFranciscoDisplay-Ultralight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Medium.eot");
src: url("fonts/SanFranciscoText-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Medium.woff") format("woff"), url("fonts/SanFranciscoText-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-ExtraLight.eot");
src: url("fonts/Trenda-ExtraLight.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLight.woff") format("woff"), url("fonts/Trenda-ExtraLight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Regular.eot");
src: url("fonts/SanFranciscoText-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Regular.woff") format("woff"), url("fonts/SanFranciscoText-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Thin.eot");
src: url("fonts/SanFranciscoDisplay-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Thin.woff") format("woff"), url("fonts/SanFranciscoDisplay-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Regular.eot");
src: url("fonts/Trenda-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Regular.woff") format("woff"), url("fonts/Trenda-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-HeavyItalic.eot");
src: url("fonts/SanFranciscoText-HeavyItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-HeavyItalic.woff") format("woff"), url("fonts/SanFranciscoText-HeavyItalic.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Light.eot");
src: url("fonts/Trenda-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Light.woff") format("woff"), url("fonts/Trenda-Light.ttf") format("truetype");
font-weight: 300;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Bold.eot");
src: url("fonts/Trenda-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Bold.woff") format("woff"), url("fonts/Trenda-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-LightItalic.eot");
src: url("fonts/SanFranciscoText-LightItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-LightItalic.woff") format("woff"), url("fonts/SanFranciscoText-LightItalic.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Regular.eot");
src: url("fonts/SanFranciscoDisplay-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Regular.woff") format("woff"), url("fonts/SanFranciscoDisplay-Regular.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Black.eot");
src: url("fonts/Trenda-Black.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Black.woff") format("woff"), url("fonts/Trenda-Black.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Light.eot");
src: url("fonts/SanFranciscoText-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Light.woff") format("woff"), url("fonts/SanFranciscoText-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda It';
src: url("fonts/Trenda-RegularIt.eot");
src: url("fonts/Trenda-RegularIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-RegularIt.woff") format("woff"), url("fonts/Trenda-RegularIt.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
/*---------------------------------------------------
OCC Theme
----------------------------------------------------*/
/*header and footer backgrounds*/
/*#f1f1f1;*/
/*menu*/
/*buttons*/
/*translate*/
/*headings*/
/*links*/
/*---------------------------------------------------
----------------------------------------------------*/
.usa-button,
.usa-button-primary,
.usa-button:visited,
.usa-button-primary:visited,
button,
[type="button"],
[type="submit"],
[type="reset"],
[type="button"],
[type="submit"],
[type="reset"],
[type="image"] {
appearance: none;
background-color: #d52628;
border: 0;
border-radius: 0.3rem;
color: white;
cursor: pointer;
display: inline-block;
font-family: "Trenda", "Helvetica", "Arial", sans-serif;
text-transform: uppercase;
font-size: 1.7rem;
font-weight: normal;
line-height: 1;
margin-top: .5em;
margin-bottom: .5em;
margin-right: .5em;
outline: none;
padding: 1rem 2rem;
/*text-align: center;*/
text-decoration: none;
/*width: 100%;*/
-webkit-font-smoothing: antialiased; }
.usa-button:hover, .usa-button.usa-button-hover,
.usa-button-primary:hover,
.usa-button-primary.usa-button-hover,
.usa-button:visited:hover,
.usa-button:visited.usa-button-hover,
.usa-button-primary:visited:hover,
.usa-button-primary:visited.usa-button-hover,
button:hover,
button.usa-button-hover,
[type="button"]:hover,
[type="button"].usa-button-hover,
[type="submit"]:hover,
[type="submit"].usa-button-hover,
[type="reset"]:hover,
[type="reset"].usa-button-hover,
[type="button"]:hover,
[type="button"].usa-button-hover,
[type="submit"]:hover,
[type="submit"].usa-button-hover,
[type="reset"]:hover,
[type="reset"].usa-button-hover,
[type="image"]:hover,
[type="image"].usa-button-hover {
background-color: #bd2b2d;
border-bottom: 0;
color: white;
text-decoration: none; }
.usa-button:focus, .usa-button.usa-button-focus,
.usa-button-primary:focus,
.usa-button-primary.usa-button-focus,
.usa-button:visited:focus,
.usa-button:visited.usa-button-focus,
.usa-button-primary:visited:focus,
.usa-button-primary:visited.usa-button-focus,
button:focus,
button.usa-button-focus,
[type="button"]:focus,
[type="button"].usa-button-focus,
[type="submit"]:focus,
[type="submit"].usa-button-focus,
[type="reset"]:focus,
[type="reset"].usa-button-focus,
[type="button"]:focus,
[type="button"].usa-button-focus,
[type="submit"]:focus,
[type="submit"].usa-button-focus,
[type="reset"]:focus,
[type="reset"].usa-button-focus,
[type="image"]:focus,
[type="image"].usa-button-focus {
box-shadow: 0 0 3px #3e94cf, 0 0 7px #3e94cf; }
.usa-button:active, .usa-button.usa-button-active,
.usa-button-primary:active,
.usa-button-primary.usa-button-active,
.usa-button:visited:active,
.usa-button:visited.usa-button-active,
.usa-button-primary:visited:active,
.usa-button-primary:visited.usa-button-active,
button:active,
button.usa-button-active,
[type="button"]:active,
[type="button"].usa-button-active,
[type="submit"]:active,
[type="submit"].usa-button-active,
[type="reset"]:active,
[type="reset"].usa-button-active,
[type="button"]:active,
[type="button"].usa-button-active,
[type="submit"]:active,
[type="submit"].usa-button-active,
[type="reset"]:active,
[type="reset"].usa-button-active,
[type="image"]:active,
[type="image"].usa-button-active {
background-color: #bd2b2d; }
@media (min-width: 481px) {
.usa-button,
.usa-button-primary,
.usa-button:visited,
.usa-button-primary:visited,
button,
[type="button"],
[type="submit"],
[type="reset"],
[type="button"],
[type="submit"],
[type="reset"],
[type="image"] {
width: auto; } }
.usa-button.usa-button-primary-alt,
.usa-button-primary.usa-button-primary-alt,
.usa-button:visited.usa-button-primary-alt,
.usa-button-primary:visited.usa-button-primary-alt,
button.usa-button-primary-alt,
[type="button"].usa-button-primary-alt,
[type="submit"].usa-button-primary-alt,
[type="reset"].usa-button-primary-alt,
[type="button"].usa-button-primary-alt,
[type="submit"].usa-button-primary-alt,
[type="reset"].usa-button-primary-alt,
[type="image"].usa-button-primary-alt {
background-color: #02bfe7;
color: #212121; }
.usa-button.usa-button-primary-alt:hover, .usa-button.usa-button-primary-alt.usa-button-hover,
.usa-button-primary.usa-button-primary-alt:hover,
.usa-button-primary.usa-button-primary-alt.usa-button-hover,
.usa-button:visited.usa-button-primary-alt:hover,
.usa-button:visited.usa-button-primary-alt.usa-button-hover,
.usa-button-primary:visited.usa-button-primary-alt:hover,
.usa-button-primary:visited.usa-button-primary-alt.usa-button-hover,
button.usa-button-primary-alt:hover,
button.usa-button-primary-alt.usa-button-hover,
[type="button"].usa-button-primary-alt:hover,
[type="button"].usa-button-primary-alt.usa-button-hover,
[type="submit"].usa-button-primary-alt:hover,
[type="submit"].usa-button-primary-alt.usa-button-hover,
[type="reset"].usa-button-primary-alt:hover,
[type="reset"].usa-button-primary-alt.usa-button-hover,
[type="button"].usa-button-primary-alt:hover,
[type="button"].usa-button-primary-alt.usa-button-hover,
[type="submit"].usa-button-primary-alt:hover,
[type="submit"].usa-button-primary-alt.usa-button-hover,
[type="reset"].usa-button-primary-alt:hover,
[type="reset"].usa-button-primary-alt.usa-button-hover,
[type="image"].usa-button-primary-alt:hover,
[type="image"].usa-button-primary-alt.usa-button-hover {
background-color: #00a6d2; }
.usa-button.usa-button-primary-alt:active, .usa-button.usa-button-primary-alt.usa-button-active,
.usa-button-primary.usa-button-primary-alt:active,
.usa-button-primary.usa-button-primary-alt.usa-button-active,
.usa-button:visited.usa-button-primary-alt:active,
.usa-button:visited.usa-button-primary-alt.usa-button-active,
.usa-button-primary:visited.usa-button-primary-alt:active,
.usa-button-primary:visited.usa-button-primary-alt.usa-button-active,
button.usa-button-primary-alt:active,
button.usa-button-primary-alt.usa-button-active,
[type="button"].usa-button-primary-alt:active,
[type="button"].usa-button-primary-alt.usa-button-active,
[type="submit"].usa-button-primary-alt:active,
[type="submit"].usa-button-primary-alt.usa-button-active,
[type="reset"].usa-button-primary-alt:active,
[type="reset"].usa-button-primary-alt.usa-button-active,
[type="button"].usa-button-primary-alt:active,
[type="button"].usa-button-primary-alt.usa-button-active,
[type="submit"].usa-button-primary-alt:active,
[type="submit"].usa-button-primary-alt.usa-button-active,
[type="reset"].usa-button-primary-alt:active,
[type="reset"].usa-button-primary-alt.usa-button-active,
[type="image"].usa-button-primary-alt:active,
[type="image"].usa-button-primary-alt.usa-button-active {
background-color: #046b99;
color: white; }
.usa-button.usa-button-secondary,
.usa-button-primary.usa-button-secondary,
.usa-button:visited.usa-button-secondary,
.usa-button-primary:visited.usa-button-secondary,
button.usa-button-secondary,
[type="button"].usa-button-secondary,
[type="submit"].usa-button-secondary,
[type="reset"].usa-button-secondary,
[type="button"].usa-button-secondary,
[type="submit"].usa-button-secondary,
[type="reset"].usa-button-secondary,
[type="image"].usa-button-secondary {
background-color: #e31c3d; }
.usa-button.usa-button-secondary:hover, .usa-button.usa-button-secondary.usa-button-hover,
.usa-button-primary.usa-button-secondary:hover,
.usa-button-primary.usa-button-secondary.usa-button-hover,
.usa-button:visited.usa-button-secondary:hover,
.usa-button:visited.usa-button-secondary.usa-button-hover,
.usa-button-primary:visited.usa-button-secondary:hover,
.usa-button-primary:visited.usa-button-secondary.usa-button-hover,
button.usa-button-secondary:hover,
button.usa-button-secondary.usa-button-hover,
[type="button"].usa-button-secondary:hover,
[type="button"].usa-button-secondary.usa-button-hover,
[type="submit"].usa-button-secondary:hover,
[type="submit"].usa-button-secondary.usa-button-hover,
[type="reset"].usa-button-secondary:hover,
[type="reset"].usa-button-secondary.usa-button-hover,
[type="button"].usa-button-secondary:hover,
[type="button"].usa-button-secondary.usa-button-hover,
[type="submit"].usa-button-secondary:hover,
[type="submit"].usa-button-secondary.usa-button-hover,
[type="reset"].usa-button-secondary:hover,
[type="reset"].usa-button-secondary.usa-button-hover,
[type="image"].usa-button-secondary:hover,
[type="image"].usa-button-secondary.usa-button-hover {
background-color: #cd2026; }
.usa-button.usa-button-secondary:active, .usa-button.usa-button-secondary.usa-button-active,
.usa-button-primary.usa-button-secondary:active,
.usa-button-primary.usa-button-secondary.usa-button-active,
.usa-button:visited.usa-button-secondary:active,
.usa-button:visited.usa-button-secondary.usa-button-active,
.usa-button-primary:visited.usa-button-secondary:active,
.usa-button-primary:visited.usa-button-secondary.usa-button-active,
button.usa-button-secondary:active,
button.usa-button-secondary.usa-button-active,
[type="button"].usa-button-secondary:active,
[type="button"].usa-button-secondary.usa-button-active,
[type="submit"].usa-button-secondary:active,
[type="submit"].usa-button-secondary.usa-button-active,
[type="reset"].usa-button-secondary:active,
[type="reset"].usa-button-secondary.usa-button-active,
[type="button"].usa-button-secondary:active,
[type="button"].usa-button-secondary.usa-button-active,
[type="submit"].usa-button-secondary:active,
[type="submit"].usa-button-secondary.usa-button-active,
[type="reset"].usa-button-secondary:active,
[type="reset"].usa-button-secondary.usa-button-active,
[type="image"].usa-button-secondary:active,
[type="image"].usa-button-secondary.usa-button-active {
background-color: #981b1e; }
.usa-button.usa-button-gray,
.usa-button-primary.usa-button-gray,
.usa-button:visited.usa-button-gray,
.usa-button-primary:visited.usa-button-gray,
button.usa-button-gray,
[type="button"].usa-button-gray,
[type="submit"].usa-button-gray,
[type="reset"].usa-button-gray,
[type="button"].usa-button-gray,
[type="submit"].usa-button-gray,
[type="reset"].usa-button-gray,
[type="image"].usa-button-gray {
background-color: #5b616b; }
.usa-button.usa-button-gray:hover, .usa-button.usa-button-gray.usa-button-hover,
.usa-button-primary.usa-button-gray:hover,
.usa-button-primary.usa-button-gray.usa-button-hover,
.usa-button:visited.usa-button-gray:hover,
.usa-button:visited.usa-button-gray.usa-button-hover,
.usa-button-primary:visited.usa-button-gray:hover,
.usa-button-primary:visited.usa-button-gray.usa-button-hover,
button.usa-button-gray:hover,
button.usa-button-gray.usa-button-hover,
[type="button"].usa-button-gray:hover,
[type="button"].usa-button-gray.usa-button-hover,
[type="submit"].usa-button-gray:hover,
[type="submit"].usa-button-gray.usa-button-hover,
[type="reset"].usa-button-gray:hover,
[type="reset"].usa-button-gray.usa-button-hover,
[type="button"].usa-button-gray:hover,
[type="button"].usa-button-gray.usa-button-hover,
[type="submit"].usa-button-gray:hover,
[type="submit"].usa-button-gray.usa-button-hover,
[type="reset"].usa-button-gray:hover,
[type="reset"].usa-button-gray.usa-button-hover,
[type="image"].usa-button-gray:hover,
[type="image"].usa-button-gray.usa-button-hover {
background-color: #323a45; }
.usa-button.usa-button-gray:active, .usa-button.usa-button-gray.usa-button-active,
.usa-button-primary.usa-button-gray:active,
.usa-button-primary.usa-button-gray.usa-button-active,
.usa-button:visited.usa-button-gray:active,
.usa-button:visited.usa-button-gray.usa-button-active,
.usa-button-primary:visited.usa-button-gray:active,
.usa-button-primary:visited.usa-button-gray.usa-button-active,
button.usa-button-gray:active,
button.usa-button-gray.usa-button-active,
[type="button"].usa-button-gray:active,
[type="button"].usa-button-gray.usa-button-active,
[type="submit"].usa-button-gray:active,
[type="submit"].usa-button-gray.usa-button-active,
[type="reset"].usa-button-gray:active,
[type="reset"].usa-button-gray.usa-button-active,
[type="button"].usa-button-gray:active,
[type="button"].usa-button-gray.usa-button-active,
[type="submit"].usa-button-gray:active,
[type="submit"].usa-button-gray.usa-button-active,
[type="reset"].usa-button-gray:active,
[type="reset"].usa-button-gray.usa-button-active,
[type="image"].usa-button-gray:active,
[type="image"].usa-button-gray.usa-button-active {
background-color: #212121; }
.usa-button.usa-button-outline,
.usa-button-primary.usa-button-outline,
.usa-button:visited.usa-button-outline,
.usa-button-primary:visited.usa-button-outline,
button.usa-button-outline,
[type="button"].usa-button-outline,
[type="submit"].usa-button-outline,
[type="reset"].usa-button-outline,
[type="button"].usa-button-outline,
[type="submit"].usa-button-outline,
[type="reset"].usa-button-outline,
[type="image"].usa-button-outline {
background-color: #ffffff;
box-shadow: inset 0 0 0 2px #0071bc;
color: #0071bc; }
.usa-button.usa-button-outline:hover, .usa-button.usa-button-outline.usa-button-hover,
.usa-button-primary.usa-button-outline:hover,
.usa-button-primary.usa-button-outline.usa-button-hover,
.usa-button:visited.usa-button-outline:hover,
.usa-button:visited.usa-button-outline.usa-button-hover,
.usa-button-primary:visited.usa-button-outline:hover,
.usa-button-primary:visited.usa-button-outline.usa-button-hover,
button.usa-button-outline:hover,
button.usa-button-outline.usa-button-hover,
[type="button"].usa-button-outline:hover,
[type="button"].usa-button-outline.usa-button-hover,
[type="submit"].usa-button-outline:hover,
[type="submit"].usa-button-outline.usa-button-hover,
[type="reset"].usa-button-outline:hover,
[type="reset"].usa-button-outline.usa-button-hover,
[type="button"].usa-button-outline:hover,
[type="button"].usa-button-outline.usa-button-hover,
[type="submit"].usa-button-outline:hover,
[type="submit"].usa-button-outline.usa-button-hover,
[type="reset"].usa-button-outline:hover,
[type="reset"].usa-button-outline.usa-button-hover,
[type="image"].usa-button-outline:hover,
[type="image"].usa-button-outline.usa-button-hover {
box-shadow: inset 0 0 0 2px #205493;
color: #205493; }
.usa-button.usa-button-outline:active, .usa-button.usa-button-outline.usa-button-active,
.usa-button-primary.usa-button-outline:active,
.usa-button-primary.usa-button-outline.usa-button-active,
.usa-button:visited.usa-button-outline:active,
.usa-button:visited.usa-button-outline.usa-button-active,
.usa-button-primary:visited.usa-button-outline:active,
.usa-button-primary:visited.usa-button-outline.usa-button-active,
button.usa-button-outline:active,
button.usa-button-outline.usa-button-active,
[type="button"].usa-button-outline:active,
[type="button"].usa-button-outline.usa-button-active,
[type="submit"].usa-button-outline:active,
[type="submit"].usa-button-outline.usa-button-active,
[type="reset"].usa-button-outline:active,
[type="reset"].usa-button-outline.usa-button-active,
[type="button"].usa-button-outline:active,
[type="button"].usa-button-outline.usa-button-active,
[type="submit"].usa-button-outline:active,
[type="submit"].usa-button-outline.usa-button-active,
[type="reset"].usa-button-outline:active,
[type="reset"].usa-button-outline.usa-button-active,
[type="image"].usa-button-outline:active,
[type="image"].usa-button-outline.usa-button-active {
box-shadow: inset 0 0 0 2px #112e51;
color: #112e51; }
.usa-button.usa-button-outline:focus, .usa-button.usa-button-outline.usa-button-focus,
.usa-button-primary.usa-button-outline:focus,
.usa-button-primary.usa-button-outline.usa-button-focus,
.usa-button:visited.usa-button-outline:focus,
.usa-button:visited.usa-button-outline.usa-button-focus,
.usa-button-primary:visited.usa-button-outline:focus,
.usa-button-primary:visited.usa-button-outline.usa-button-focus,
button.usa-button-outline:focus,
button.usa-button-outline.usa-button-focus,
[type="button"].usa-button-outline:focus,
[type="button"].usa-button-outline.usa-button-focus,
[type="submit"].usa-button-outline:focus,
[type="submit"].usa-button-outline.usa-button-focus,
[type="reset"].usa-button-outline:focus,
[type="reset"].usa-button-outline.usa-button-focus,
[type="button"].usa-button-outline:focus,
[type="button"].usa-button-outline.usa-button-focus,
[type="submit"].usa-button-outline:focus,
[type="submit"].usa-button-outline.usa-button-focus,
[type="reset"].usa-button-outline:focus,
[type="reset"].usa-button-outline.usa-button-focus,
[type="image"].usa-button-outline:focus,
[type="image"].usa-button-outline.usa-button-focus {
box-shadow: inset 0 0 0 2px #112e51, 0 0 3px #3e94cf, 0 0 7px #3e94cf; }
.usa-button.usa-button-outline-inverse,
.usa-button-primary.usa-button-outline-inverse,
.usa-button:visited.usa-button-outline-inverse,
.usa-button-primary:visited.usa-button-outline-inverse,
button.usa-button-outline-inverse,
[type="button"].usa-button-outline-inverse,
[type="submit"].usa-button-outline-inverse,
[type="reset"].usa-button-outline-inverse,
[type="button"].usa-button-outline-inverse,
[type="submit"].usa-button-outline-inverse,
[type="reset"].usa-button-outline-inverse,
[type="image"].usa-button-outline-inverse {
background: transparent;
box-shadow: inset 0 0 0 2px #ffffff;
color: #ffffff; }
.usa-button.usa-button-outline-inverse:hover, .usa-button.usa-button-outline-inverse.usa-button-hover,
.usa-button-primary.usa-button-outline-inverse:hover,
.usa-button-primary.usa-button-outline-inverse.usa-button-hover,
.usa-button:visited.usa-button-outline-inverse:hover,
.usa-button:visited.usa-button-outline-inverse.usa-button-hover,
.usa-button-primary:visited.usa-button-outline-inverse:hover,
.usa-button-primary:visited.usa-button-outline-inverse.usa-button-hover,
button.usa-button-outline-inverse:hover,
button.usa-button-outline-inverse.usa-button-hover,
[type="button"].usa-button-outline-inverse:hover,
[type="button"].usa-button-outline-inverse.usa-button-hover,
[type="submit"].usa-button-outline-inverse:hover,
[type="submit"].usa-button-outline-inverse.usa-button-hover,
[type="reset"].usa-button-outline-inverse:hover,
[type="reset"].usa-button-outline-inverse.usa-button-hover,
[type="button"].usa-button-outline-inverse:hover,
[type="button"].usa-button-outline-inverse.usa-button-hover,
[type="submit"].usa-button-outline-inverse:hover,
[type="submit"].usa-button-outline-inverse.usa-button-hover,
[type="reset"].usa-button-outline-inverse:hover,
[type="reset"].usa-button-outline-inverse.usa-button-hover,
[type="image"].usa-button-outline-inverse:hover,
[type="image"].usa-button-outline-inverse.usa-button-hover {
box-shadow: inset 0 0 0 2px #d6d7d9;
color: #d6d7d9; }
.usa-button.usa-button-outline-inverse:active, .usa-button.usa-button-outline-inverse.usa-button-active,
.usa-button-primary.usa-button-outline-inverse:active,
.usa-button-primary.usa-button-outline-inverse.usa-button-active,
.usa-button:visited.usa-button-outline-inverse:active,
.usa-button:visited.usa-button-outline-inverse.usa-button-active,
.usa-button-primary:visited.usa-button-outline-inverse:active,
.usa-button-primary:visited.usa-button-outline-inverse.usa-button-active,
button.usa-button-outline-inverse:active,
button.usa-button-outline-inverse.usa-button-active,
[type="button"].usa-button-outline-inverse:active,
[type="button"].usa-button-outline-inverse.usa-button-active,
[type="submit"].usa-button-outline-inverse:active,
[type="submit"].usa-button-outline-inverse.usa-button-active,
[type="reset"].usa-button-outline-inverse:active,
[type="reset"].usa-button-outline-inverse.usa-button-active,
[type="button"].usa-button-outline-inverse:active,
[type="button"].usa-button-outline-inverse.usa-button-active,
[type="submit"].usa-button-outline-inverse:active,
[type="submit"].usa-button-outline-inverse.usa-button-active,
[type="reset"].usa-button-outline-inverse:active,
[type="reset"].usa-button-outline-inverse.usa-button-active,
[type="image"].usa-button-outline-inverse:active,
[type="image"].usa-button-outline-inverse.usa-button-active {
box-shadow: inset 0 0 0 2px #aeb0b5;
color: #d6d7d9; }
.usa-button.usa-button-outline-inverse:focus, .usa-button.usa-button-outline-inverse.usa-button-focus,
.usa-button-primary.usa-button-outline-inverse:focus,
.usa-button-primary.usa-button-outline-inverse.usa-button-focus,
.usa-button:visited.usa-button-outline-inverse:focus,
.usa-button:visited.usa-button-outline-inverse.usa-button-focus,
.usa-button-primary:visited.usa-button-outline-inverse:focus,
.usa-button-primary:visited.usa-button-outline-inverse.usa-button-focus,
button.usa-button-outline-inverse:focus,
button.usa-button-outline-inverse.usa-button-focus,
[type="button"].usa-button-outline-inverse:focus,
[type="button"].usa-button-outline-inverse.usa-button-focus,
[type="submit"].usa-button-outline-inverse:focus,
[type="submit"].usa-button-outline-inverse.usa-button-focus,
[type="reset"].usa-button-outline-inverse:focus,
[type="reset"].usa-button-outline-inverse.usa-button-focus,
[type="button"].usa-button-outline-inverse:focus,
[type="button"].usa-button-outline-inverse.usa-button-focus,
[type="submit"].usa-button-outline-inverse:focus,
[type="submit"].usa-button-outline-inverse.usa-button-focus,
[type="reset"].usa-button-outline-inverse:focus,
[type="reset"].usa-button-outline-inverse.usa-button-focus,
[type="image"].usa-button-outline-inverse:focus,
[type="image"].usa-button-outline-inverse.usa-button-focus {
box-shadow: inset 0 0 0 2px #aeb0b5, 0 0 3px #3e94cf, 0 0 7px #3e94cf; }
.usa-button.usa-button-big,
.usa-button-primary.usa-button-big,
.usa-button:visited.usa-button-big,
.usa-button-primary:visited.usa-button-big,
button.usa-button-big,
[type="button"].usa-button-big,
[type="submit"].usa-button-big,
[type="reset"].usa-button-big,
[type="button"].usa-button-big,
[type="submit"].usa-button-big,
[type="reset"].usa-button-big,
[type="image"].usa-button-big {
font-size: 1.9rem;
padding: 1.5rem 3rem; }
[type="submit"]:disabled,
.usa-button-disabled {
background-color: #d6d7d9;
color: #323a45;
cursor: default; }
[type="submit"]:disabled:hover, [type="submit"]:disabled.usa-button-hover, [type="submit"]:disabled:active, [type="submit"]:disabled.usa-button-active, [type="submit"]:disabled:focus,
.usa-button-disabled:hover,
.usa-button-disabled.usa-button-hover,
.usa-button-disabled:active,
.usa-button-disabled.usa-button-active,
.usa-button-disabled:focus {
background-color: #d6d7d9;
border: 0;
box-shadow: none;
color: #323a45; }
.usa-button-unstyled {
background: none;
border: 0;
border-radius: 0;
outline: 0;
padding: 0;
text-align: left; }
.usa-button-unstyled:focus, .usa-button-unstyled:hover {
box-shadow: initial; }
table {
border-spacing: 0;
margin: 2em 0;
min-width: 100%; }
table tbody td {
text-align: center; }
table thead tr {
background-color: #f1f1f1; }
table thead th {
text-align: center; }
table th, table td {
border: 1px solid #5b616b;
padding: 1.5rem; }
.usa-table-borderless thead tr {
background-color: transparent; }
.usa-table-borderless thead tr th {
border-top: 0; }
.usa-table-borderless th, .usa-table-borderless td {
border-left: 0;
border-right: 0; }
img {
max-width: 100%; }
.thumbnail {
display: block;
padding: 4px;
margin-bottom: 20px;
line-height: 1.42857143;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 4px;
-webkit-transition: border .2s ease-in-out;
-o-transition: border .2s ease-in-out;
transition: border .2s ease-in-out; }
a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active {
border-color: #1a325d; }
a.thumbnail:focus {
box-shadow: none; }
blockquote {
padding: 10px 20px;
margin: 0 0 20px;
border-left: 5px solid #1a325d;
box-shadow: none; }
.skipnav {
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
background: transparent;
color: #212121;
left: 0;
padding-bottom: 1rem;
padding-left: 1.5rem;
padding-right: 1.5rem;
padding-top: 1rem;
position: absolute;
top: -4.2rem;
z-index: 100; }
.skipnav:focus {
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
background: #ffffff;
left: 0;
outline: 0;
position: absolute;
top: 0; }
.usa-disclaimer {
background-color: #f1f1f1;
font-size: 1.3rem;
padding-bottom: .5rem;
padding-top: .5rem; }
@media screen and (min-width: 481px) {
.usa-disclaimer {
font-size: 1.5rem; } }
.usa-disclaimer-stage {
display: none;
float: right; }
@media screen and (min-width: 1000px) {
.usa-disclaimer-stage {
display: block; } }
.usa-flag_icon {
margin-right: .2rem; }
.usa-sidenav-list {
display: block;
margin: 0;
padding: 0;
list-style-type: none; }
.usa-sidenav-list li {
display: list-item;
margin: 0; }
.usa-sidenav-list li:before {
display: none; }
.usa-sidenav-list li:after {
display: none; }
.usa-sidenav-list li {
border-top: 1px solid #5b616b;
font-size: 1.7rem; }
.usa-sidenav-list li:first-child {
border-top: none; }
.usa-sidenav-list a {
border: none;
color: #212121;
display: block;
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif;
line-height: 1;
padding-bottom: 1rem;
padding-left: 1.8rem;
padding-right: 1rem;
padding-top: 1rem; }
.usa-sidenav-list a:hover {
background-color: #f1f1f1;
color: #0071bc;
text-decoration: none; }
.usa-sidenav-list a.usa-current {
color: #0071bc;
font-weight: 600; }
.usa-sidenav-list a.usa-current {
border-left: 4px solid #0071bc;
padding-left: 1.4rem; }
.usa-sidenav-sub_list {
margin: 0;
width: 100%; }
.usa-sidenav-sub_list li {
border: none;
font-size: 1.5rem; }
.usa-sidenav-sub_list a {
padding-left: 2.8rem;
line-height: 1.3; }
.usa-sidenav-sub_list a:hover,
.usa-sidenav-sub_list a.usa-current {
border: none;
padding-left: 2.8rem; }
.usa-sidenav-sub_list .usa-sidenav-sub_list a {
padding-left: 3.8rem; }
.usa-sidenav-sub_list .usa-sidenav-sub_list a:hover {
padding-left: 3.8rem; }
@media screen and (min-width: 727px) {
form {
max-width: 100%; } }
form a {
border-bottom: 0; }
form button[type="submit"],
form input[type="submit"] {
display: block;
margin-top: 2.5rem;
margin-bottom: 1.5em; }
@media screen and (min-width: 727px) {
form button[type="submit"],
form input[type="submit"] {
padding-left: 2.7em;
padding-right: 2.7em;
width: auto; } }
form input[name="password"] {
margin-bottom: 1.1rem; }
form input[type="checkbox"], form input[type="radio"] {
position: inherit;
left: 0;
display: inline;
width: 20px; }
form input[type="checkbox"]:focus, form input[type="radio"]:focus {
box-shadow: none; }
.usa-form-note {
float: right;
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif;
font-size: 1.5rem;
margin: 0;
margin-bottom: 1.5rem; }
.usa-form-note + * {
clear: both; }
fieldset {
border: none;
margin: 0;
padding: 0; }
@media screen and (min-width: 727px) {
.usa-form-large {
max-width: 46rem; } }
@media screen and (min-width: 727px) {
input.usa-input-tiny {
max-width: 6rem; } }
@media screen and (min-width: 727px) {
input.usa-input-medium {
max-width: 12rem; } }
@media screen and (min-width: 727px) {
.usa-input-grid {
padding-right: 5%; } }
@media screen and (min-width: 727px) {
.usa-input-grid:last-of-type {
padding-right: 0; } }
@media screen and (min-width: 727px) {
.usa-input-grid-small {
float: left;
width: 35%; } }
.usa-input-grid-small input {
margin-bottom: 3rem; }
.usa-input-grid-small select {
margin-bottom: 3rem; }
@media screen and (min-width: 727px) {
.usa-input-grid-medium {
float: left;
width: 65%; } }
.usa-input-grid-medium input {
margin-bottom: 3rem; }
.usa-input-grid-medium select {
margin-bottom: 3rem; }
@media screen and (min-width: 727px) {
.usa-input-grid-large {
float: left;
width: 100%; } }
.usa-input-grid-large input {
margin-bottom: 3rem; }
.usa-input-grid-large select {
margin-bottom: 3rem; }
.usa-form-width {
max-width: 100%; }
.usa-additional_text {
float: right;
font-style: italic;
font-weight: normal; }
.usa-input-buttons-inline button,
.usa-input-buttons-inline button[type="submit"],
.usa-input-buttons-inline input[type="submit"],
.usa-input-buttons-inline > * {
display: inline;
margin-right: 1.5em; }
.usa-checklist {
list-style: none;
margin-left: 0;
padding-left: 0; }
.usa-checklist li {
display: inline-block;
list-style: none;
margin-bottom: 0em;
margin-top: 0em;
padding-left: 3em;
text-indent: -2em; }
.usa-checklist li:before {
content: ' ';
display: inline-block;
height: .8em;
margin-right: .2em;
width: 1.8em; }
.usa-checklist-checked:before {
background-image: url("../img/correct9.png");
background-image: url("../img/correct9.svg");
background-position: 100%;
background-repeat: no-repeat;
background-size: 100%; }
form.comment-form ol {
list-style: none;
list-style-type: none;
padding-left: 0; }
form.comment-form textarea {
max-width: none;
width: 100% !important; }
article.comment span.reply {
background-color: #E6E6E6;
padding: 0 3px; }
article.comment h4 {
font-weight: normal; }
article.comment h4 span.who {
font-weight: 700; }
.usa-search {
max-width: none;
position: relative; }
.usa-search:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden; }
.usa-search [type="search"],
.usa-search .usa-search-input {
-webkit-appearance: none;
border-bottom-right-radius: 0;
border-right: none;
border-top-right-radius: 0;
float: left;
height: 3.3rem;
margin: 0;
padding-bottom: 0;
padding-top: 0;
width: calc(100% - 4.5rem); }
@media screen and (min-width: 481px) {
.usa-search [type="search"],
.usa-search .usa-search-input {
width: calc(100% - 8.5rem); } }
.usa-search [type="submit"],
.usa-search .usa-search-submit {
background-image: url("../img/search.png");
background-image: url("../img/search.svg");
background-position: 50%;
background-repeat: no-repeat;
border-bottom-left-radius: 0;
border-top-left-radius: 0;
height: 3.3rem;
margin: 0;
padding: 0;
width: 4.5rem; }
@media screen and (min-width: 481px) {
.usa-search [type="submit"],
.usa-search .usa-search-submit {
background-image: none;
width: 8.5rem; } }
.usa-search .usa-search-submit-text {
display: none; }
@media screen and (min-width: 481px) {
.usa-search .usa-search-submit-text {
display: block; } }
@media screen and (min-width: 481px) {
.usa-search.usa-search-big [type="search"],
.usa-search.usa-search-big .usa-search-input {
height: 4.4rem;
width: calc(100% - 11.6rem); }
.usa-search.usa-search-big [type="submit"],
.usa-search.usa-search-big .usa-search-submit {
height: 4.4rem;
font-size: 2rem;
width: 11.6rem; } }
@media screen and (min-width: 481px) {
.usa-search.usa-search-small [type="search"],
.usa-search.usa-search-small .usa-search-input {
width: calc(100% - 4.5rem); }
.usa-search.usa-search-small [type="submit"],
.usa-search.usa-search-small .usa-search-submit {
background-image: url("../img/search.png");
background-image: url("../img/search.svg");
background-position: 50%;
background-repeat: no-repeat;
width: 4.5rem; } }
.usa-alert, .zone .alert {
background-color: #eeeeee;
background-position: 1rem 2rem;
background-repeat: no-repeat;
background-size: 4rem;
margin-top: 1.5em;
padding: 1em;
margin-bottom: 1rem; }
@media screen and (min-width: 727px) {
.usa-alert, .zone .alert {
background-size: 5.2rem; } }
.usa-alert ul, .zone .alert ul {
margin-bottom: 0;
margin-top: 1em; }
.usa-alert-icon {
display: table-cell;
padding-right: 1rem; }
.usa-alert-body {
display: table-cell;
padding-left: 3.5rem;
vertical-align: top; }
@media screen and (min-width: 727px) {
.usa-alert-body {
padding-left: 5rem;
padding-top: 1rem; } }
.usa-alert-heading {
margin-bottom: .3rem;
margin-top: 0; }
@media screen and (min-width: 727px) {
.usa-alert-heading {
margin-top: .3rem; } }
.usa-alert-text {
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif;
margin-bottom: 0;
margin-top: 0; }
.usa-alert-success {
background-color: #E5FCDE;
background-image: url("../img/alerts/success.png");
background-image: url("../img/alerts/success.svg"); }
.usa-alert-warning {
background-color: #FDF7DC;
background-image: url("../img/alerts/warning.png");
background-image: url("../img/alerts/warning.svg"); }
.usa-alert-error {
background-color: #F9DEDE;
background-image: url("../img/alerts/error.png");
background-image: url("../img/alerts/error.svg"); }
.usa-alert-info {
background-color: #E8F5FA;
background-image: url("../img/alerts/info.png");
background-image: url("../img/alerts/info.svg"); }
.usa-alert-no_icon {
background-image: none; }
.usa-accordion + .usa-accordion,
.usa-accordion + .usa-accordion-bordered,
.usa-accordion-bordered + .usa-accordion,
.usa-accordion-bordered + .usa-accordion-bordered {
margin-top: 1rem; }
.usa-accordion > ul,
.usa-accordion-bordered > ul {
color: #212121;
margin: 0;
padding: 0;
width: 100%; }
.usa-accordion > ul > li,
.usa-accordion-bordered > ul > li {
background-color: #f1f1f1;
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif;
list-style: none;
margin-bottom: 6px;
width: 100%; }
.usa-accordion button[aria-expanded=false],
.usa-accordion-bordered button[aria-expanded=false] {
background-image: url("../img/plus.png");
background-image: url("../img/plus.svg");
background-repeat: no-repeat;
background-size: 1.3rem; }
.usa-accordion button,
.usa-accordion-bordered button {
background-color: #f1f1f1;
background-image: url("../img/minus.png");
background-image: url("../img/minus.svg");
background-position: right 3rem center;
background-repeat: no-repeat;
background-size: 13px;
color: #212121;
cursor: pointer;
display: inline-block;
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif;
margin: 0;
padding-bottom: 1.5rem;
padding-left: 3rem;
padding-right: 5.5rem;
padding-top: 1.5rem;
width: 100%; }
.usa-accordion button:focus,
.usa-accordion-bordered button:focus {
box-shadow: 0 0 3px #3e94cf, 0 0 7px #3e94cf; }
.usa-accordion button:hover,
.usa-accordion-bordered button:hover {
background-color: #d6d7d9;
color: #212121; }
.usa-accordion button h1, .usa-accordion button h2, .usa-accordion button h3, .usa-accordion button h4, .usa-accordion button h5, .usa-accordion button h6,
.usa-accordion-bordered button h1,
.usa-accordion-bordered button h2,
.usa-accordion-bordered button h3,
.usa-accordion-bordered button h4,
.usa-accordion-bordered button h5,
.usa-accordion-bordered button h6 {
margin: 0; }
.usa-accordion-bordered .usa-accordion-content {
border-bottom: 3px solid #f1f1f1;
border-left: 3px solid #f1f1f1;
border-right: 3px solid #f1f1f1; }
.usa-accordion-content {
display: block;
background-color: white;
overflow: auto;
padding: 3rem; }
.usa-accordion-content > *:first-child {
margin-top: 0; }
.usa-accordion-content > *:last-child {
margin-bottom: 0; }
/* This stylesheet generated by Transfonter (https://transfonter.org) on February 25, 2017 6:21 AM */
@font-face {
font-family: 'Trenda Semibold It';
src: url("fonts/Trenda-SemiboldIt.eot");
src: url("fonts/Trenda-SemiboldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-SemiboldIt.woff") format("woff"), url("fonts/Trenda-SemiboldIt.ttf") format("truetype");
font-weight: 600;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Heavy.eot");
src: url("fonts/Trenda-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Heavy.woff") format("woff"), url("fonts/Trenda-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Semibold.eot");
src: url("fonts/Trenda-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Semibold.woff") format("woff"), url("fonts/Trenda-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Heavy It';
src: url("fonts/Trenda-HeavyIt.eot");
src: url("fonts/Trenda-HeavyIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-HeavyIt.woff") format("woff"), url("fonts/Trenda-HeavyIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Semibold.eot");
src: url("fonts/SanFranciscoText-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Semibold.woff") format("woff"), url("fonts/SanFranciscoText-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda ExtraLight It';
src: url("fonts/Trenda-ExtraLightIt.eot");
src: url("fonts/Trenda-ExtraLightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLightIt.woff") format("woff"), url("fonts/Trenda-ExtraLightIt.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Thin.eot");
src: url("fonts/Trenda-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Thin.woff") format("woff"), url("fonts/Trenda-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Heavy.eot");
src: url("fonts/SanFranciscoDisplay-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Heavy.woff") format("woff"), url("fonts/SanFranciscoDisplay-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Medium.eot");
src: url("fonts/SanFranciscoDisplay-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Medium.woff") format("woff"), url("fonts/SanFranciscoDisplay-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Gotham Condensed';
src: url("fonts/GothamCondensed-Bold.eot");
src: url("fonts/GothamCondensed-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/GothamCondensed-Bold.woff") format("woff"), url("fonts/GothamCondensed-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'Trenda Black It';
src: url("fonts/Trenda-BlackIt.eot");
src: url("fonts/Trenda-BlackIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BlackIt.woff") format("woff"), url("fonts/Trenda-BlackIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda Thin It';
src: url("fonts/Trenda-ThinIt.eot");
src: url("fonts/Trenda-ThinIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ThinIt.woff") format("woff"), url("fonts/Trenda-ThinIt.ttf") format("truetype");
font-weight: 100;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Semibold.eot");
src: url("fonts/SanFranciscoDisplay-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Semibold.woff") format("woff"), url("fonts/SanFranciscoDisplay-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Bold It';
src: url("fonts/Trenda-BoldIt.eot");
src: url("fonts/Trenda-BoldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BoldIt.woff") format("woff"), url("fonts/Trenda-BoldIt.ttf") format("truetype");
font-weight: bold;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Thin.eot");
src: url("fonts/SanFranciscoText-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Thin.woff") format("woff"), url("fonts/SanFranciscoText-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda Light It';
src: url("fonts/Trenda-LightIt.eot");
src: url("fonts/Trenda-LightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-LightIt.woff") format("woff"), url("fonts/Trenda-LightIt.ttf") format("truetype");
font-weight: 300;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Heavy.eot");
src: url("fonts/SanFranciscoText-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Heavy.woff") format("woff"), url("fonts/SanFranciscoText-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Italic.eot");
src: url("fonts/SanFranciscoText-Italic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Italic.woff") format("woff"), url("fonts/SanFranciscoText-Italic.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Light.eot");
src: url("fonts/SanFranciscoDisplay-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Light.woff") format("woff"), url("fonts/SanFranciscoDisplay-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Ultralight.eot");
src: url("fonts/SanFranciscoDisplay-Ultralight.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Ultralight.woff") format("woff"), url("fonts/SanFranciscoDisplay-Ultralight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Medium.eot");
src: url("fonts/SanFranciscoText-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Medium.woff") format("woff"), url("fonts/SanFranciscoText-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-ExtraLight.eot");
src: url("fonts/Trenda-ExtraLight.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLight.woff") format("woff"), url("fonts/Trenda-ExtraLight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Regular.eot");
src: url("fonts/SanFranciscoText-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Regular.woff") format("woff"), url("fonts/SanFranciscoText-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Thin.eot");
src: url("fonts/SanFranciscoDisplay-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Thin.woff") format("woff"), url("fonts/SanFranciscoDisplay-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Regular.eot");
src: url("fonts/Trenda-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Regular.woff") format("woff"), url("fonts/Trenda-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-HeavyItalic.eot");
src: url("fonts/SanFranciscoText-HeavyItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-HeavyItalic.woff") format("woff"), url("fonts/SanFranciscoText-HeavyItalic.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Light.eot");
src: url("fonts/Trenda-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Light.woff") format("woff"), url("fonts/Trenda-Light.ttf") format("truetype");
font-weight: 300;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Bold.eot");
src: url("fonts/Trenda-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Bold.woff") format("woff"), url("fonts/Trenda-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-LightItalic.eot");
src: url("fonts/SanFranciscoText-LightItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-LightItalic.woff") format("woff"), url("fonts/SanFranciscoText-LightItalic.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Regular.eot");
src: url("fonts/SanFranciscoDisplay-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Regular.woff") format("woff"), url("fonts/SanFranciscoDisplay-Regular.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Black.eot");
src: url("fonts/Trenda-Black.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Black.woff") format("woff"), url("fonts/Trenda-Black.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Light.eot");
src: url("fonts/SanFranciscoText-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Light.woff") format("woff"), url("fonts/SanFranciscoText-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda It';
src: url("fonts/Trenda-RegularIt.eot");
src: url("fonts/Trenda-RegularIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-RegularIt.woff") format("woff"), url("fonts/Trenda-RegularIt.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
/*---------------------------------------------------
OCC Theme
----------------------------------------------------*/
/*header and footer backgrounds*/
/*#f1f1f1;*/
/*menu*/
/*buttons*/
/*translate*/
/*headings*/
/*links*/
/*---------------------------------------------------
----------------------------------------------------*/
.widget-translate {
margin-top: 2px; }
#layout-header img {
margin: 5px 0; }
#hero, .tilewrapper, .librarywrapper {
max-width: 68em;
margin-left: auto;
margin-right: auto; }
#hero:after, .tilewrapper:after, .librarywrapper:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden; }
.row {
margin: 0 -10px;
clear: both; }
#layout-navigation {
padding-top: 2rem; }
.widget-content {
clear: both; }
[class*="usa-width-"]:nth-last-of-type(1) {
margin-right: 0 !important; }
.search_translate {
width: 300px;
float: right; }
.projection-page > ul, .widget-projection-widget > ul {
padding: 0;
list-style: none;
list-style-type: none; }
ul.tagged-posts {
padding: 0;
list-style: none;
list-style-type: none; }
.usa-accordion-content {
border: 2px solid #F1F1F1; }
.social_icons img {
vertical-align: middle; }
.social_icons span {
font-size: 14px; }
.inline {
display: inline !important; }
#layout-content article.widget:first-of-type > header > h1,
html.detail-projection-page article.blog-post:first-of-type > header > h1,
html.orchard-blogs article.blog-post:first-of-type > header > h1,
html.orchard-tags article.blog-post:first-of-type > header > h1 {
margin-top: 0; }
#layout-main-container {
margin-top: 1rem; }
@media screen and (min-width: 727px) {
body {
padding-top: 1rem; } }
.recaptchatable, #recaptcha_area tr, #recaptcha_area td, #recaptcha_area th {
line-height: 0 !important; }
#recaptcha_area input {
height: auto;
display: inline; }
/* This stylesheet generated by Transfonter (https://transfonter.org) on February 25, 2017 6:21 AM */
@font-face {
font-family: 'Trenda Semibold It';
src: url("fonts/Trenda-SemiboldIt.eot");
src: url("fonts/Trenda-SemiboldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-SemiboldIt.woff") format("woff"), url("fonts/Trenda-SemiboldIt.ttf") format("truetype");
font-weight: 600;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Heavy.eot");
src: url("fonts/Trenda-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Heavy.woff") format("woff"), url("fonts/Trenda-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Semibold.eot");
src: url("fonts/Trenda-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Semibold.woff") format("woff"), url("fonts/Trenda-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Heavy It';
src: url("fonts/Trenda-HeavyIt.eot");
src: url("fonts/Trenda-HeavyIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-HeavyIt.woff") format("woff"), url("fonts/Trenda-HeavyIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Semibold.eot");
src: url("fonts/SanFranciscoText-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Semibold.woff") format("woff"), url("fonts/SanFranciscoText-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda ExtraLight It';
src: url("fonts/Trenda-ExtraLightIt.eot");
src: url("fonts/Trenda-ExtraLightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLightIt.woff") format("woff"), url("fonts/Trenda-ExtraLightIt.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Thin.eot");
src: url("fonts/Trenda-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Thin.woff") format("woff"), url("fonts/Trenda-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Heavy.eot");
src: url("fonts/SanFranciscoDisplay-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Heavy.woff") format("woff"), url("fonts/SanFranciscoDisplay-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Medium.eot");
src: url("fonts/SanFranciscoDisplay-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Medium.woff") format("woff"), url("fonts/SanFranciscoDisplay-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Gotham Condensed';
src: url("fonts/GothamCondensed-Bold.eot");
src: url("fonts/GothamCondensed-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/GothamCondensed-Bold.woff") format("woff"), url("fonts/GothamCondensed-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'Trenda Black It';
src: url("fonts/Trenda-BlackIt.eot");
src: url("fonts/Trenda-BlackIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BlackIt.woff") format("woff"), url("fonts/Trenda-BlackIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda Thin It';
src: url("fonts/Trenda-ThinIt.eot");
src: url("fonts/Trenda-ThinIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ThinIt.woff") format("woff"), url("fonts/Trenda-ThinIt.ttf") format("truetype");
font-weight: 100;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Semibold.eot");
src: url("fonts/SanFranciscoDisplay-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Semibold.woff") format("woff"), url("fonts/SanFranciscoDisplay-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Bold It';
src: url("fonts/Trenda-BoldIt.eot");
src: url("fonts/Trenda-BoldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BoldIt.woff") format("woff"), url("fonts/Trenda-BoldIt.ttf") format("truetype");
font-weight: bold;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Thin.eot");
src: url("fonts/SanFranciscoText-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Thin.woff") format("woff"), url("fonts/SanFranciscoText-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda Light It';
src: url("fonts/Trenda-LightIt.eot");
src: url("fonts/Trenda-LightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-LightIt.woff") format("woff"), url("fonts/Trenda-LightIt.ttf") format("truetype");
font-weight: 300;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Heavy.eot");
src: url("fonts/SanFranciscoText-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Heavy.woff") format("woff"), url("fonts/SanFranciscoText-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Italic.eot");
src: url("fonts/SanFranciscoText-Italic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Italic.woff") format("woff"), url("fonts/SanFranciscoText-Italic.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Light.eot");
src: url("fonts/SanFranciscoDisplay-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Light.woff") format("woff"), url("fonts/SanFranciscoDisplay-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Ultralight.eot");
src: url("fonts/SanFranciscoDisplay-Ultralight.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Ultralight.woff") format("woff"), url("fonts/SanFranciscoDisplay-Ultralight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Medium.eot");
src: url("fonts/SanFranciscoText-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Medium.woff") format("woff"), url("fonts/SanFranciscoText-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-ExtraLight.eot");
src: url("fonts/Trenda-ExtraLight.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLight.woff") format("woff"), url("fonts/Trenda-ExtraLight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Regular.eot");
src: url("fonts/SanFranciscoText-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Regular.woff") format("woff"), url("fonts/SanFranciscoText-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Thin.eot");
src: url("fonts/SanFranciscoDisplay-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Thin.woff") format("woff"), url("fonts/SanFranciscoDisplay-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Regular.eot");
src: url("fonts/Trenda-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Regular.woff") format("woff"), url("fonts/Trenda-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-HeavyItalic.eot");
src: url("fonts/SanFranciscoText-HeavyItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-HeavyItalic.woff") format("woff"), url("fonts/SanFranciscoText-HeavyItalic.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Light.eot");
src: url("fonts/Trenda-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Light.woff") format("woff"), url("fonts/Trenda-Light.ttf") format("truetype");
font-weight: 300;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Bold.eot");
src: url("fonts/Trenda-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Bold.woff") format("woff"), url("fonts/Trenda-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-LightItalic.eot");
src: url("fonts/SanFranciscoText-LightItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-LightItalic.woff") format("woff"), url("fonts/SanFranciscoText-LightItalic.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Regular.eot");
src: url("fonts/SanFranciscoDisplay-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Regular.woff") format("woff"), url("fonts/SanFranciscoDisplay-Regular.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Black.eot");
src: url("fonts/Trenda-Black.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Black.woff") format("woff"), url("fonts/Trenda-Black.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Light.eot");
src: url("fonts/SanFranciscoText-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Light.woff") format("woff"), url("fonts/SanFranciscoText-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda It';
src: url("fonts/Trenda-RegularIt.eot");
src: url("fonts/Trenda-RegularIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-RegularIt.woff") format("woff"), url("fonts/Trenda-RegularIt.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
/*---------------------------------------------------
OCC Theme
----------------------------------------------------*/
/*header and footer backgrounds*/
/*#f1f1f1;*/
/*menu*/
/*buttons*/
/*translate*/
/*headings*/
/*links*/
/*---------------------------------------------------
----------------------------------------------------*/
.tagline {
margin-top: 4px; }
#search input {
margin-bottom: 10px; }
input, input[type="text"], input[type="email"], input[type="password"], input[type="url"], input[type="tel"], input[type="number"], input[type="search"], input[type="file"], input[type="date"], input[type="datetime-local"], input[type="month"], input[type="time"], input[type="week"], textarea, select {
border: 1px solid #62C196; }
ul.menu-main-menu {
margin: 0;
list-style-type: none;
padding-left: 0; }
ul.menu-main-menu li {
display: inline-block; }
ul.menu-main-menu li:last-child {
margin-right: 0; }
ul.menu-main-menu li > a {
text-decoration: none; }
ul.menu-main-menu li.current > a, ul.menu-main-menu li:hover > a {
color: #1a325d;
text-decoration: underline; }
ul.menu-main-menu li a {
font-weight: normal;
font-family: "Trenda", "Helvetica", "Arial", sans-serif;
color: #333;
text-transform: uppercase; }
ul.menu-main-menu li a:hover {
text-decoration: none; }
@media screen and (min-width: 1000px) {
ul.menu-main-menu {
float: right;
position: relative;
top: -29px; }
ul.menu-main-menu > li > a {
padding: 0 0 0 26px; } }
@media screen and (max-width: 1000px) {
.search_translate {
display: none; } }
@media screen and (min-width: 727px) and (max-width: 1000px) {
ul.menu-main-menu {
text-align: right;
display: block;
float: none;
margin: 1rem 0; }
ul.menu-main-menu > li > a {
padding: 0 12px 0 0; } }
@media screen and (min-width: 727px) {
ul.menu-main-menu > li > a:hover {
text-decoration: underline; }
.logo {
width: 173px;
vertical-align: middle; }
.logoMobile {
display: none; }
button#tgl {
display: none; } }
@media screen and (max-width: 727px) {
.navbar-wrapper {
margin-bottom: 1rem; }
.tagline {
padding-right: 45px; }
.logoMobile {
max-width: 100px; }
.logo {
display: none; }
button#tgl {
position: absolute;
right: 2rem;
top: 2rem; }
ul.menu-main-menu {
margin-top: 15px;
padding-left: 0;
display: none;
clear: both;
width: 100%; }
ul.menu-main-menu > li {
width: 100%;
display: block;
margin-top: 0;
margin-bottom: 10px;
line-height: 1.5;
background-color: #f1f1f1; }
ul.menu-main-menu > li.last {
margin-bottom: 0; }
ul.menu-main-menu > li.first {
margin-top: 20px; }
ul.menu-main-menu > li:after {
margin-bottom: 0.25em; }
ul.menu-main-menu > li > a {
display: inline-block;
width: 100%;
padding: 5px;
text-decoration: none; }
ul.menu-main-menu > li > a:hover {
text-decoration: none; } }
/*Header BG*/
.navbar-wrapper {
background-color: white;
border-bottom: none; }
a.navbar-brand:hover {
text-decoration: none; }
.zone-content {
clear: both; }
/* This stylesheet generated by Transfonter (https://transfonter.org) on February 25, 2017 6:21 AM */
@font-face {
font-family: 'Trenda Semibold It';
src: url("fonts/Trenda-SemiboldIt.eot");
src: url("fonts/Trenda-SemiboldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-SemiboldIt.woff") format("woff"), url("fonts/Trenda-SemiboldIt.ttf") format("truetype");
font-weight: 600;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Heavy.eot");
src: url("fonts/Trenda-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Heavy.woff") format("woff"), url("fonts/Trenda-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Semibold.eot");
src: url("fonts/Trenda-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Semibold.woff") format("woff"), url("fonts/Trenda-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Heavy It';
src: url("fonts/Trenda-HeavyIt.eot");
src: url("fonts/Trenda-HeavyIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-HeavyIt.woff") format("woff"), url("fonts/Trenda-HeavyIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Semibold.eot");
src: url("fonts/SanFranciscoText-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Semibold.woff") format("woff"), url("fonts/SanFranciscoText-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda ExtraLight It';
src: url("fonts/Trenda-ExtraLightIt.eot");
src: url("fonts/Trenda-ExtraLightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLightIt.woff") format("woff"), url("fonts/Trenda-ExtraLightIt.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Thin.eot");
src: url("fonts/Trenda-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Thin.woff") format("woff"), url("fonts/Trenda-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Heavy.eot");
src: url("fonts/SanFranciscoDisplay-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Heavy.woff") format("woff"), url("fonts/SanFranciscoDisplay-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Medium.eot");
src: url("fonts/SanFranciscoDisplay-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Medium.woff") format("woff"), url("fonts/SanFranciscoDisplay-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Gotham Condensed';
src: url("fonts/GothamCondensed-Bold.eot");
src: url("fonts/GothamCondensed-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/GothamCondensed-Bold.woff") format("woff"), url("fonts/GothamCondensed-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'Trenda Black It';
src: url("fonts/Trenda-BlackIt.eot");
src: url("fonts/Trenda-BlackIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BlackIt.woff") format("woff"), url("fonts/Trenda-BlackIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda Thin It';
src: url("fonts/Trenda-ThinIt.eot");
src: url("fonts/Trenda-ThinIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ThinIt.woff") format("woff"), url("fonts/Trenda-ThinIt.ttf") format("truetype");
font-weight: 100;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Semibold.eot");
src: url("fonts/SanFranciscoDisplay-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Semibold.woff") format("woff"), url("fonts/SanFranciscoDisplay-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Bold It';
src: url("fonts/Trenda-BoldIt.eot");
src: url("fonts/Trenda-BoldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BoldIt.woff") format("woff"), url("fonts/Trenda-BoldIt.ttf") format("truetype");
font-weight: bold;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Thin.eot");
src: url("fonts/SanFranciscoText-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Thin.woff") format("woff"), url("fonts/SanFranciscoText-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda Light It';
src: url("fonts/Trenda-LightIt.eot");
src: url("fonts/Trenda-LightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-LightIt.woff") format("woff"), url("fonts/Trenda-LightIt.ttf") format("truetype");
font-weight: 300;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Heavy.eot");
src: url("fonts/SanFranciscoText-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Heavy.woff") format("woff"), url("fonts/SanFranciscoText-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Italic.eot");
src: url("fonts/SanFranciscoText-Italic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Italic.woff") format("woff"), url("fonts/SanFranciscoText-Italic.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Light.eot");
src: url("fonts/SanFranciscoDisplay-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Light.woff") format("woff"), url("fonts/SanFranciscoDisplay-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Ultralight.eot");
src: url("fonts/SanFranciscoDisplay-Ultralight.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Ultralight.woff") format("woff"), url("fonts/SanFranciscoDisplay-Ultralight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Medium.eot");
src: url("fonts/SanFranciscoText-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Medium.woff") format("woff"), url("fonts/SanFranciscoText-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-ExtraLight.eot");
src: url("fonts/Trenda-ExtraLight.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLight.woff") format("woff"), url("fonts/Trenda-ExtraLight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Regular.eot");
src: url("fonts/SanFranciscoText-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Regular.woff") format("woff"), url("fonts/SanFranciscoText-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Thin.eot");
src: url("fonts/SanFranciscoDisplay-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Thin.woff") format("woff"), url("fonts/SanFranciscoDisplay-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Regular.eot");
src: url("fonts/Trenda-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Regular.woff") format("woff"), url("fonts/Trenda-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-HeavyItalic.eot");
src: url("fonts/SanFranciscoText-HeavyItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-HeavyItalic.woff") format("woff"), url("fonts/SanFranciscoText-HeavyItalic.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Light.eot");
src: url("fonts/Trenda-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Light.woff") format("woff"), url("fonts/Trenda-Light.ttf") format("truetype");
font-weight: 300;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Bold.eot");
src: url("fonts/Trenda-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Bold.woff") format("woff"), url("fonts/Trenda-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-LightItalic.eot");
src: url("fonts/SanFranciscoText-LightItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-LightItalic.woff") format("woff"), url("fonts/SanFranciscoText-LightItalic.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Regular.eot");
src: url("fonts/SanFranciscoDisplay-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Regular.woff") format("woff"), url("fonts/SanFranciscoDisplay-Regular.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Black.eot");
src: url("fonts/Trenda-Black.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Black.woff") format("woff"), url("fonts/Trenda-Black.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Light.eot");
src: url("fonts/SanFranciscoText-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Light.woff") format("woff"), url("fonts/SanFranciscoText-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda It';
src: url("fonts/Trenda-RegularIt.eot");
src: url("fonts/Trenda-RegularIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-RegularIt.woff") format("woff"), url("fonts/Trenda-RegularIt.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
/*---------------------------------------------------
OCC Theme
----------------------------------------------------*/
/*header and footer backgrounds*/
/*#f1f1f1;*/
/*menu*/
/*buttons*/
/*translate*/
/*headings*/
/*links*/
/*---------------------------------------------------
----------------------------------------------------*/
#footer_wrapper {
background-color: white;
border-top: none;
margin-top: 2rem; }
#footer {
padding-top: 20px;
padding-bottom: 20px;
color: white; }
#footer p, #footer h1, #footer h2, #footer h3, #footer h4 {
color: white; }
#footer a {
color: #1a325d; }
#footer .copyright {
clear: both;
padding-top: 1em; }
#footer input {
margin-right: 20px; }
#footer form button[type="submit"], #footer form input[type="submit"] {
display: inline;
margin-top: 0;
margin-bottom: 0;
background-color: #d52628; }
#footer form button[type="submit"]:hover, #footer form input[type="submit"]:hover {
background-color: #bd2b2d; }
#footer h1.footertitle, #footer label.footertitle {
text-transform: uppercase;
font-size: 24px;
font-family: "San Francisco Text", "Helvetica", "Arial", sans-serif;
font-weight: normal;
margin-top: 0;
margin-bottom: 0; }
@media screen and (max-width: 727px) {
#footer h1.footertitle {
margin-top: 20px; } }
article.widget .image-gallery {
padding: 0; }
article.widget .image-gallery ul {
margin: 0;
width: 100%; }
article.widget .image-gallery ul li {
margin: 0;
display: inline-block; }
article.widget .image-gallery ul li a {
height: 100%; }
article.widget .image-gallery ul li a:focus {
box-shadow: none; }
article.widget .image-gallery ul li a img {
max-width: none;
margin-right: 10px;
border: none; }
/*lightbox*/
#lightbox-nav-btnPrev {
background: url(img/lightbox-btn-prev.gif) no-repeat transparent !important; }
#lightbox-nav-btnNext {
background: url(img/lightbox-btn-next.gif) no-repeat 100% 0% transparent !important; }
#lightbox-container-image-box {
height: auto !important; }
#jquery-lightbox {
margin-top: 0; }
#jquery-lightbox #lightbox-container-image-data-box {
max-width: 80% !important; }
#jquery-lightbox #lightbox-container-image-box {
max-width: 80% !important;
max-height: 80% !important; }
#jquery-lightbox #lightbox-container-image-box img {
width: 100% !important; }
/* This stylesheet generated by Transfonter (https://transfonter.org) on February 25, 2017 6:21 AM */
@font-face {
font-family: 'Trenda Semibold It';
src: url("fonts/Trenda-SemiboldIt.eot");
src: url("fonts/Trenda-SemiboldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-SemiboldIt.woff") format("woff"), url("fonts/Trenda-SemiboldIt.ttf") format("truetype");
font-weight: 600;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Heavy.eot");
src: url("fonts/Trenda-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Heavy.woff") format("woff"), url("fonts/Trenda-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Semibold.eot");
src: url("fonts/Trenda-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Semibold.woff") format("woff"), url("fonts/Trenda-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Heavy It';
src: url("fonts/Trenda-HeavyIt.eot");
src: url("fonts/Trenda-HeavyIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-HeavyIt.woff") format("woff"), url("fonts/Trenda-HeavyIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Semibold.eot");
src: url("fonts/SanFranciscoText-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Semibold.woff") format("woff"), url("fonts/SanFranciscoText-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda ExtraLight It';
src: url("fonts/Trenda-ExtraLightIt.eot");
src: url("fonts/Trenda-ExtraLightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLightIt.woff") format("woff"), url("fonts/Trenda-ExtraLightIt.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Thin.eot");
src: url("fonts/Trenda-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Thin.woff") format("woff"), url("fonts/Trenda-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Heavy.eot");
src: url("fonts/SanFranciscoDisplay-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Heavy.woff") format("woff"), url("fonts/SanFranciscoDisplay-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Medium.eot");
src: url("fonts/SanFranciscoDisplay-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Medium.woff") format("woff"), url("fonts/SanFranciscoDisplay-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Gotham Condensed';
src: url("fonts/GothamCondensed-Bold.eot");
src: url("fonts/GothamCondensed-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/GothamCondensed-Bold.woff") format("woff"), url("fonts/GothamCondensed-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'Trenda Black It';
src: url("fonts/Trenda-BlackIt.eot");
src: url("fonts/Trenda-BlackIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BlackIt.woff") format("woff"), url("fonts/Trenda-BlackIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda Thin It';
src: url("fonts/Trenda-ThinIt.eot");
src: url("fonts/Trenda-ThinIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ThinIt.woff") format("woff"), url("fonts/Trenda-ThinIt.ttf") format("truetype");
font-weight: 100;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Semibold.eot");
src: url("fonts/SanFranciscoDisplay-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Semibold.woff") format("woff"), url("fonts/SanFranciscoDisplay-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Bold It';
src: url("fonts/Trenda-BoldIt.eot");
src: url("fonts/Trenda-BoldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BoldIt.woff") format("woff"), url("fonts/Trenda-BoldIt.ttf") format("truetype");
font-weight: bold;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Thin.eot");
src: url("fonts/SanFranciscoText-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Thin.woff") format("woff"), url("fonts/SanFranciscoText-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda Light It';
src: url("fonts/Trenda-LightIt.eot");
src: url("fonts/Trenda-LightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-LightIt.woff") format("woff"), url("fonts/Trenda-LightIt.ttf") format("truetype");
font-weight: 300;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Heavy.eot");
src: url("fonts/SanFranciscoText-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Heavy.woff") format("woff"), url("fonts/SanFranciscoText-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Italic.eot");
src: url("fonts/SanFranciscoText-Italic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Italic.woff") format("woff"), url("fonts/SanFranciscoText-Italic.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Light.eot");
src: url("fonts/SanFranciscoDisplay-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Light.woff") format("woff"), url("fonts/SanFranciscoDisplay-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Ultralight.eot");
src: url("fonts/SanFranciscoDisplay-Ultralight.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Ultralight.woff") format("woff"), url("fonts/SanFranciscoDisplay-Ultralight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Medium.eot");
src: url("fonts/SanFranciscoText-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Medium.woff") format("woff"), url("fonts/SanFranciscoText-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-ExtraLight.eot");
src: url("fonts/Trenda-ExtraLight.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLight.woff") format("woff"), url("fonts/Trenda-ExtraLight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Regular.eot");
src: url("fonts/SanFranciscoText-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Regular.woff") format("woff"), url("fonts/SanFranciscoText-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Thin.eot");
src: url("fonts/SanFranciscoDisplay-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Thin.woff") format("woff"), url("fonts/SanFranciscoDisplay-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Regular.eot");
src: url("fonts/Trenda-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Regular.woff") format("woff"), url("fonts/Trenda-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-HeavyItalic.eot");
src: url("fonts/SanFranciscoText-HeavyItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-HeavyItalic.woff") format("woff"), url("fonts/SanFranciscoText-HeavyItalic.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Light.eot");
src: url("fonts/Trenda-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Light.woff") format("woff"), url("fonts/Trenda-Light.ttf") format("truetype");
font-weight: 300;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Bold.eot");
src: url("fonts/Trenda-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Bold.woff") format("woff"), url("fonts/Trenda-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-LightItalic.eot");
src: url("fonts/SanFranciscoText-LightItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-LightItalic.woff") format("woff"), url("fonts/SanFranciscoText-LightItalic.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Regular.eot");
src: url("fonts/SanFranciscoDisplay-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Regular.woff") format("woff"), url("fonts/SanFranciscoDisplay-Regular.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Black.eot");
src: url("fonts/Trenda-Black.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Black.woff") format("woff"), url("fonts/Trenda-Black.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Light.eot");
src: url("fonts/SanFranciscoText-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Light.woff") format("woff"), url("fonts/SanFranciscoText-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda It';
src: url("fonts/Trenda-RegularIt.eot");
src: url("fonts/Trenda-RegularIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-RegularIt.woff") format("woff"), url("fonts/Trenda-RegularIt.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
/*---------------------------------------------------
OCC Theme
----------------------------------------------------*/
/*header and footer backgrounds*/
/*#f1f1f1;*/
/*menu*/
/*buttons*/
/*translate*/
/*headings*/
/*links*/
/*---------------------------------------------------
----------------------------------------------------*/
#translate_wrapper {
background-color: #727272;
color: white; }
@media screen and (min-width: 1000px) {
#translate_wrapper {
max-height: 31px; } }
article.widget-translate {
display: inline-block; }
@media screen and (max-width: 1000px) {
article.widget-translate p {
margin-top: 8px; } }
@media screen and (min-width: 1000px) {
article.widget-translate p {
margin-top: 2px; } }
article.widget-translate:nth-child(2) {
float: right; }
article.widget-translate #google_translate_element {
float: right;
margin-top: 1px; }
article.widget-translate .goog-te-gadget .goog-te-combo {
margin: 0; }
article.widget-translate select {
padding: .5rem .25em; }
article.widget-translate .goog-te-gadget, article.widget-translate .goog-logo-link {
color: white !important; }
.widget-header p, .widget-translate p {
margin: 0; }
/* This stylesheet generated by Transfonter (https://transfonter.org) on February 25, 2017 6:21 AM */
@font-face {
font-family: 'Trenda Semibold It';
src: url("fonts/Trenda-SemiboldIt.eot");
src: url("fonts/Trenda-SemiboldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-SemiboldIt.woff") format("woff"), url("fonts/Trenda-SemiboldIt.ttf") format("truetype");
font-weight: 600;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Heavy.eot");
src: url("fonts/Trenda-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Heavy.woff") format("woff"), url("fonts/Trenda-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Semibold.eot");
src: url("fonts/Trenda-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Semibold.woff") format("woff"), url("fonts/Trenda-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Heavy It';
src: url("fonts/Trenda-HeavyIt.eot");
src: url("fonts/Trenda-HeavyIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-HeavyIt.woff") format("woff"), url("fonts/Trenda-HeavyIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Semibold.eot");
src: url("fonts/SanFranciscoText-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Semibold.woff") format("woff"), url("fonts/SanFranciscoText-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda ExtraLight It';
src: url("fonts/Trenda-ExtraLightIt.eot");
src: url("fonts/Trenda-ExtraLightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLightIt.woff") format("woff"), url("fonts/Trenda-ExtraLightIt.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Thin.eot");
src: url("fonts/Trenda-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Thin.woff") format("woff"), url("fonts/Trenda-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Heavy.eot");
src: url("fonts/SanFranciscoDisplay-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Heavy.woff") format("woff"), url("fonts/SanFranciscoDisplay-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Medium.eot");
src: url("fonts/SanFranciscoDisplay-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Medium.woff") format("woff"), url("fonts/SanFranciscoDisplay-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Gotham Condensed';
src: url("fonts/GothamCondensed-Bold.eot");
src: url("fonts/GothamCondensed-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/GothamCondensed-Bold.woff") format("woff"), url("fonts/GothamCondensed-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'Trenda Black It';
src: url("fonts/Trenda-BlackIt.eot");
src: url("fonts/Trenda-BlackIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BlackIt.woff") format("woff"), url("fonts/Trenda-BlackIt.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda Thin It';
src: url("fonts/Trenda-ThinIt.eot");
src: url("fonts/Trenda-ThinIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ThinIt.woff") format("woff"), url("fonts/Trenda-ThinIt.ttf") format("truetype");
font-weight: 100;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Semibold.eot");
src: url("fonts/SanFranciscoDisplay-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Semibold.woff") format("woff"), url("fonts/SanFranciscoDisplay-Semibold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: 'Trenda Bold It';
src: url("fonts/Trenda-BoldIt.eot");
src: url("fonts/Trenda-BoldIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-BoldIt.woff") format("woff"), url("fonts/Trenda-BoldIt.ttf") format("truetype");
font-weight: bold;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Thin.eot");
src: url("fonts/SanFranciscoText-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Thin.woff") format("woff"), url("fonts/SanFranciscoText-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda Light It';
src: url("fonts/Trenda-LightIt.eot");
src: url("fonts/Trenda-LightIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-LightIt.woff") format("woff"), url("fonts/Trenda-LightIt.ttf") format("truetype");
font-weight: 300;
font-style: italic; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Heavy.eot");
src: url("fonts/SanFranciscoText-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Heavy.woff") format("woff"), url("fonts/SanFranciscoText-Heavy.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Italic.eot");
src: url("fonts/SanFranciscoText-Italic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Italic.woff") format("woff"), url("fonts/SanFranciscoText-Italic.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Light.eot");
src: url("fonts/SanFranciscoDisplay-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Light.woff") format("woff"), url("fonts/SanFranciscoDisplay-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Ultralight.eot");
src: url("fonts/SanFranciscoDisplay-Ultralight.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Ultralight.woff") format("woff"), url("fonts/SanFranciscoDisplay-Ultralight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Medium.eot");
src: url("fonts/SanFranciscoText-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Medium.woff") format("woff"), url("fonts/SanFranciscoText-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-ExtraLight.eot");
src: url("fonts/Trenda-ExtraLight.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-ExtraLight.woff") format("woff"), url("fonts/Trenda-ExtraLight.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Regular.eot");
src: url("fonts/SanFranciscoText-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Regular.woff") format("woff"), url("fonts/SanFranciscoText-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Thin.eot");
src: url("fonts/SanFranciscoDisplay-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Thin.woff") format("woff"), url("fonts/SanFranciscoDisplay-Thin.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Regular.eot");
src: url("fonts/Trenda-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Regular.woff") format("woff"), url("fonts/Trenda-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-HeavyItalic.eot");
src: url("fonts/SanFranciscoText-HeavyItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-HeavyItalic.woff") format("woff"), url("fonts/SanFranciscoText-HeavyItalic.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Light.eot");
src: url("fonts/Trenda-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Light.woff") format("woff"), url("fonts/Trenda-Light.ttf") format("truetype");
font-weight: 300;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Bold.eot");
src: url("fonts/Trenda-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Bold.woff") format("woff"), url("fonts/Trenda-Bold.ttf") format("truetype");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-LightItalic.eot");
src: url("fonts/SanFranciscoText-LightItalic.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-LightItalic.woff") format("woff"), url("fonts/SanFranciscoText-LightItalic.ttf") format("truetype");
font-weight: 200;
font-style: italic; }
@font-face {
font-family: 'San Francisco Display';
src: url("fonts/SanFranciscoDisplay-Regular.eot");
src: url("fonts/SanFranciscoDisplay-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoDisplay-Regular.woff") format("woff"), url("fonts/SanFranciscoDisplay-Regular.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda';
src: url("fonts/Trenda-Black.eot");
src: url("fonts/Trenda-Black.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-Black.woff") format("woff"), url("fonts/Trenda-Black.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: 'San Francisco Text';
src: url("fonts/SanFranciscoText-Light.eot");
src: url("fonts/SanFranciscoText-Light.eot?#iefix") format("embedded-opentype"), url("fonts/SanFranciscoText-Light.woff") format("woff"), url("fonts/SanFranciscoText-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: 'Trenda It';
src: url("fonts/Trenda-RegularIt.eot");
src: url("fonts/Trenda-RegularIt.eot?#iefix") format("embedded-opentype"), url("fonts/Trenda-RegularIt.woff") format("woff"), url("fonts/Trenda-RegularIt.ttf") format("truetype");
font-weight: normal;
font-style: italic; }
/*---------------------------------------------------
OCC Theme
----------------------------------------------------*/
/*header and footer backgrounds*/
/*#f1f1f1;*/
/*menu*/
/*buttons*/
/*translate*/
/*headings*/
/*links*/
/*---------------------------------------------------
----------------------------------------------------*/
.graybg, .widget-nextup {
background-color: #ededed;
padding: 1px 2rem; }
a, a:visited, a:hover {
word-wrap: break-word;
color: #1e5ca8; }
.mocs {
background-color: #1E5CA8;
color: white; }
.mocs a {
color: white; }
p, a, li {
word-wrap: break-word; }
.lead {
font-weight: 200;
font-size: 2.5rem; }
blockquote {
border-left: 5px solid #ededed; }
@media screen and (max-width: 727px) {
.lead {
font-size: 2rem; } }
.content-h1, .dyntail-daily-action .daily-action-title {
margin-top: .66667rem;
font-size: 3.2rem;
text-transform: none; }
.zone-right-one-third h1 {
font-size: 22px; }
.small-gray, .tagline, article.daily-action p.date-time-field, p.date-time-field, .published {
font-size: 14px;
color: gray; }
.navbar-brand > img {
width: 320px; }
#ind, #tac, a.navbar-brand:visited, a.navbar-brand:hover, a.navbar-brand {
color: #1e5ca8; }
#ind {
font-family: "Trenda", "Helvetica", "Arial", sans-serif;
text-transform: uppercase;
font-size: 30px; }
#tac {
font-family: "Trenda", "Helvetica", "Arial", sans-serif;
text-transform: uppercase; }
#social_buttons a, #social_buttons a:hover {
text-decoration: none; }
#social_buttons h1 {
margin-top: 0; }
#social_buttons span img {
width: 35px; }
@media screen and (min-width: 727px) {
.mobile {
display: none; } }
li a, ul a {
text-decoration: underline; }
.widget-content > header > h1 {
margin-top: 0; }
.widget-featured > hr {
margin-top: 0; }
.moc {
text-align: center;
font-size: 14px; }
@media screen and (max-width: 360px) {
.moc {
font-size: 12px; } }
.mocs {
background-color: #eaeaea;
overflow: auto;
padding: 10px 0 0 0; }
#hero > header > h1 {
text-align: center;
color: white;
font-size: 8rem;
margin: 0;
background-image: url("https://indivisibletacoma.blob.core.windows.net/media/Default/images/IndTac_DomePhoto_960x200.jpg");
background-size: 100% auto; }
@media screen and (max-width: 727px) {
#hero > header > h1 {
font-size: 5rem; } }
@media screen and (max-width: 727px) {
#hero > header > h1 {
font-size: 3rem; } }
.widget-homedailyaction {
clear: both;
/*border:3px solid $it-blue;
padding:0 $grid-margins $grid-margins $grid-margins;*/
margin-bottom: 2rem; }
.widget-homedailyaction > ul {
margin-top: 0; }
.widget-homedailyaction > header > h1 {
margin-bottom: 0; }
.widget-homedailyaction p.moredailyactions {
text-align: right;
margin-bottom: 0; }
.widget-homedailyaction > header > h1 {
margin-top: .3em; }
article.daily-action p.date-time-field {
margin-bottom: 2px; }
article.daily-action h1 {
font-size: 18px;
margin-top: 0;
text-transform: none; }
p.date-time-field {
margin-bottom: 2px; }
.dyntail-daily-action blockquote > h2:first-of-type {
margin-top: 0; }
.media-thumbnail {
display: none; }
.video-container {
position: relative;
padding-bottom: 56.25%;
padding-top: 35px;
height: 0;
overflow: hidden; }
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%; }
.widget-featuredblog .blog-title-summary {
margin-bottom: 1rem; }
.widget-featuredblog .metadata {
margin-bottom: 1rem; }
.widget-featuredblog .media-library-picker-field-media {
max-width: 250px;
float: right;
margin-left: 2rem; }
.widget-nextup {
margin: 2rem 0; }
.widget-nextup article.content-item > header > h1 {
font-size: 18px; }
.widget-nextup article.content-item section.media-library-picker-field, .widget-nextup article.content-item .metadata, .widget-nextup article.content-item p, .widget-nextup article.content-item ul, .widget-nextup article.content-item div {
display: none; }
article.media-item {
margin-bottom: 2rem; }
.widget-pastblogentries {
border-top: 4px solid #1e5ca8;
margin-top: 2rem; }
.widget-pastblogentries .blog-title-summary {
font-size: 18px; }
.dynchard-tags #layout-content #content h1.page-title {
margin-top: 0; }
.dyntail-blog-post .media-item img {
max-height: 300px; }
@media screen and (min-width: 360px) {
.dynchard-tags #social_buttons {
position: relative;
top: -60px; } }
.blog-page-title {
margin-top: 0; }
ul.blog-posts li {
list-style-type: none; }
p.tags {
margin-bottom: 0;
line-height: 1em; }
p.tags > a {
font-weight: bold;
font-size: 14px; }
p.tags > a:before {
content: "#"; }
.blog-post-title {
margin-top: 0.66667rem;
font-size: 3.2rem;
text-transform: none; }
.blog-title-summary {
font-size: 2.5rem;
margin-bottom: 1em;
margin-top: .2em;
text-transform: none; }
.dynchard-blogs #content {
display: none !important;
margin: 0 !important; }
@media screen and (max-width: 727px) {
.blog-title-summary {
margin-top: .2em;
font-size: 1.7rem; } }
.calendar-container {
position: relative;
padding-bottom: 75%;
height: 0;
overflow: hidden;
margin-bottom: 20px; }
.calendar-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%; }
@media screen and (max-width: 727px) {
button[type="submit"], input[type="submit"] {
width: 100%;
max-width: 46rem;
margin-top: 2.5rem; } }
.widget-groups {
border: 3px dashed #d52628;
padding: 0 2rem 2rem 2rem; }
.arrow {
height: 20px;
width: 20px; }
#events_x5F_link:hover,
#legislative_x5F_link:hover,
#education-outreach_x5F_link:hover,
#media_x5F_link:hover,
#fundraising_x5F_link:hover,
#creative_x5F_link:hover,
#social-media-website_x5F_link:hover,
#membership_x5F_link:hover,
#allyship-diversity_x5F_link:hover {
fill: white;
transition: 200ms;
transition-timing-function: ease-in-out;
-webkit-transition: 200ms;
-webkit-transition-timing-function: ease-in-out; }
.widget-about p {
font-size: 2rem; }
#footer #mc-embedded-subscribe {
margin-top: 10px; }
#footer #mc_embed_signup h2, #footer form h2 {
font-size: 2.7rem; }
#footer form {
margin-bottom: 20px; }
@media screen and (min-width: 727px) {
.mc-field-group {
width: 30%;
display: inline-block; } }
@media screen and (min-width: 727px) {
.usa-input-grid-small {
float: left;
width: 33%; } }
@media screen and (max-width: 727px) {
#footer #mc-embedded-subscribe {
margin-top: 2.5rem; }
.widget-about header > h1 {
margin-top: 0; }
#fb, #tw, .desktop {
display: none; } }
@media screen and (max-width: 481px) {
.navbar-brand > img {
width: 260px; } }
@media screen and (max-width: 360px) {
.navbar-brand > img {
width: 200px; } }
#footer_wrapper {
background-color: #1e5ca8; }
.usa-input-grid-small label, .usa-input-grid-small input {
margin-top: 1rem;
margin-bottom: 1rem; }
input {
margin-right: 10px; }
label {
margin-top: 1rem; }
hr {
border-top: 2px solid #1e5ca8;
border-bottom: 2px solid #1e5ca8; }
legend {
font-size: 3rem;
font-family: "Trenda", "Helvetica", "Arial", sans-serif;
text-transform: uppercase; }
input, input[type="text"], input[type="email"], input[type="password"], input[type="url"], input[type="tel"], input[type="number"], input[type="search"], input[type="file"], input[type="date"], input[type="datetime-local"], input[type="month"], input[type="time"], input[type="week"], textarea, select {
border: 1px solid #1e5ca8; }
.widget-faq {
margin-bottom: 2rem; }
.callout {
overflow: auto;
background-color: #1e5ca8;
padding: 2rem; }
.callout a, .callout a:hover, .callout p, .callout h1, .callout h2, .callout h3, .callout legend, .callout label {
color: white; }
.callout form button[type="submit"], .callout form input[type="submit"] {
margin-top: 1rem;
margin-bottom: .2rem; }
.light-callout, .widget-homedailyaction {
overflow: auto;
border: 3px solid #1e5ca8;
padding: 2rem;
margin-bottom: 2rem; }
.light-callout form button[type="submit"], .widget-homedailyaction form button[type="submit"], .light-callout form input[type="submit"], .widget-homedailyaction form input[type="submit"] {
margin-top: 1rem;
margin-bottom: .2rem; } | 0.730001 | 0.074265 |
.collapsible {
background-color: #777;
color: white;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
}
.active, .collapsible:hover {
background-color: #555;
}
.collapsible:after {
content: '\002B';
color: white;
font-weight: bold;
float: right;
margin-left: 5px;
}
.collapsible:after {
content: '\002B';
color: black;
font-weight: bold;
float: right;
margin-left: 5px;
}
.active:after {
content: "\2212";
}
.contentCollapse {
/* padding: 0 18px; */
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
/* background-color: #f1f1f1; */
}
/* Collapsible model input */
.collapsibleModel {
height: 50px;
background-color: white;
color: black;
/* cursor: pointer; */
display: flex;
flex-direction: row;
padding: 8px;
width: 100%;
margin: 2px;
/* border: none; */
text-align: left;
outline: none;
font-size: 15px;
border: 1px black;
border-style: solid;
}
/* Premium features box */
.premiumBox {
height: 125%;
background-color: white;
color: black;
margin: auto;
/* cursor: pointer; */
display: flex;
flex-direction: row;
padding: 5px;
width: 420px;
/* border: none; */
text-align: left;
outline: none;
font-size: 15px;
border: 1px black;
border-style: solid;
}
.symbolExpand{
margin-left: auto;
text-align: center;
vertical-align: middle;
height: 50%;
font-size: 25px;
width: 75px;
cursor: pointer;
/* background-color: lightgrey; */
}
/* .active, .collapsibleModel:hover {
background-color: #555;
} */
/* .collapsibleModel:after {
content: '\002B';
color: black;
font-weight: bold;
float: right;
margin-left: 5px;
margin-left: auto;
order: 2;
} */
/* .active:after {
content: "\2212";
} */
/* Model input boxes */
.modelBox{
height: 100px;
background-color:white;
display: flex;
flex-direction:row;
/* justify-content: flex-start; */
}
/* Zoom on hover */
.zoomin img {
/* height: 200px;
width: 200px; */
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.zoomin img:hover {
transform: scale(1.5)
}
/* modelOutput */
.modelOutput {
width: 100%;
margin: 2.5rem 0;
display: -moz-flex;
display: -webkit-flex;
display: -ms-flex;
display: flex;
-moz-flex-wrap: wrap;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-moz-align-items: -moz-stretch;
-webkit-align-items: -webkit-stretch;
-ms-align-items: -ms-stretch;
align-items: stretch; }
.modelOutput > * {
-moz-flex-shrink: 1;
-webkit-flex-shrink: 1;
-ms-flex-shrink: 1;
flex-shrink: 1;
-moz-flex-grow: 0;
-webkit-flex-grow: 0;
-ms-flex-grow: 0;
flex-grow: 0; }
.modelOutput > * {
width: 50%; }
.modelOutput > * {
padding: 1.5rem;
width: calc(50% + 1rem); }
.modelOutput > :nth-child(-n + 2) {
padding-top: 0; }
.modelOutput > :nth-last-child(-n + 2) {
padding-bottom: 0; }
.modelOutput > :nth-child(2n + 1) {
padding-left: 0; }
.modelOutput > :nth-child(2n) {
padding-right: 0; }
.modelOutput > :nth-child(2n + 1),
.modelOutput > :nth-child(2n) {
width: calc(50% + -0.5rem); }
.modelOutput .content {
border-radius: 4px;
height: 100%;
padding: 0rem; /* Was 3 */
text-align: center; }
.modelOutput .content .icon {
font-size: 5rem; }
.modelOutput > div > :last-child {
margin-bottom: 0; }
/* @media screen and (max-width: 980px) {
.modelOutput > * {
width: 50%; }
.modelOutput > * {
padding: 1rem;
width: calc(50% + 0.5rem); }
.modelOutput > :nth-child(-n + 2) {
padding-top: 1rem; }
.modelOutput > :nth-last-child(-n + 2) {
padding-bottom: 1rem; }
.modelOutput > :nth-child(2n + 1) {
padding-left: 1rem; }
.modelOutput > :nth-child(2n) {
padding-right: 1rem; }
.modelOutput > :nth-child(2n + 1),
.modelOutput > :nth-child(2n) {
padding: 1rem;
width: calc(50% + 1rem); }
.modelOutput > * {
padding: 1rem;
width: calc(50% + 1rem); }
.modelOutput > :nth-child(-n + 2) {
padding-top: 0; }
.modelOutput > :nth-last-child(-n + 2) {
padding-bottom: 0; }
.modelOutput > :nth-child(2n + 1) {
padding-left: 0; }
.modelOutput > :nth-child(2n) {
padding-right: 0; }
.modelOutput > :nth-child(2n + 1),
.modelOutput > :nth-child(2n) {
width: calc(50% + 0rem); }
.modelOutput .content {
padding: 0rem; } } */
@media screen and (max-width: 980px) { /* Was 736 */
.modelOutput > * {
width: 100%; }
.modelOutput > * {
padding: 1rem;
width: calc(50% + 0.5rem); }
.modelOutput > :nth-child(-n + 2) {
padding-top: 1rem; }
.modelOutput > :nth-last-child(-n + 2) {
padding-bottom: 1rem; }
.modelOutput > :nth-child(2n + 1) {
padding-left: 1rem; }
.modelOutput > :nth-child(2n) {
padding-right: 1rem; }
.modelOutput > :nth-child(2n + 1),
.modelOutput > :nth-child(2n) {
padding: 1rem;
width: calc(100% + 2rem); }
.modelOutput > * {
padding: 1rem;
width: calc(50% + 1rem); }
.modelOutput > :nth-child(-n + 2) {
padding-top: 1rem; }
.modelOutput > :nth-last-child(-n + 2) {
padding-bottom: 1rem; }
.modelOutput > :nth-child(2n + 1) {
padding-left: 1rem; }
.modelOutput > :nth-child(2n) {
padding-right: 1rem; }
.modelOutput > :nth-child(2n + 1),
.modelOutput > :nth-child(2n) {
padding: 1rem;
width: calc(100% + 2rem); }
.modelOutput > * {
padding: 1rem;
width: calc(100% + 2rem); }
.modelOutput > :nth-child(-n + 1) {
padding-top: 0; }
.modelOutput > :nth-last-child(-n + 1) {
padding-bottom: 0; }
.modelOutput > :nth-child(1n + 1) {
padding-left: 0; }
.modelOutput > :nth-child(1n) {
padding-right: 0; }
.modelOutput > :nth-child(1n + 1),
.modelOutput > :nth-child(1n) {
width: calc(100% + 1rem); } }
.modelOutput .content {
background: #ffffff;
box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.025); }
input[type=checkbox]
{
-webkit-appearance:checkbox;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Firefox */
input[type=number] {
-moz-appearance: textfield;
} | assets/css/add-ons.css | .collapsible {
background-color: #777;
color: white;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
}
.active, .collapsible:hover {
background-color: #555;
}
.collapsible:after {
content: '\002B';
color: white;
font-weight: bold;
float: right;
margin-left: 5px;
}
.collapsible:after {
content: '\002B';
color: black;
font-weight: bold;
float: right;
margin-left: 5px;
}
.active:after {
content: "\2212";
}
.contentCollapse {
/* padding: 0 18px; */
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
/* background-color: #f1f1f1; */
}
/* Collapsible model input */
.collapsibleModel {
height: 50px;
background-color: white;
color: black;
/* cursor: pointer; */
display: flex;
flex-direction: row;
padding: 8px;
width: 100%;
margin: 2px;
/* border: none; */
text-align: left;
outline: none;
font-size: 15px;
border: 1px black;
border-style: solid;
}
/* Premium features box */
.premiumBox {
height: 125%;
background-color: white;
color: black;
margin: auto;
/* cursor: pointer; */
display: flex;
flex-direction: row;
padding: 5px;
width: 420px;
/* border: none; */
text-align: left;
outline: none;
font-size: 15px;
border: 1px black;
border-style: solid;
}
.symbolExpand{
margin-left: auto;
text-align: center;
vertical-align: middle;
height: 50%;
font-size: 25px;
width: 75px;
cursor: pointer;
/* background-color: lightgrey; */
}
/* .active, .collapsibleModel:hover {
background-color: #555;
} */
/* .collapsibleModel:after {
content: '\002B';
color: black;
font-weight: bold;
float: right;
margin-left: 5px;
margin-left: auto;
order: 2;
} */
/* .active:after {
content: "\2212";
} */
/* Model input boxes */
.modelBox{
height: 100px;
background-color:white;
display: flex;
flex-direction:row;
/* justify-content: flex-start; */
}
/* Zoom on hover */
.zoomin img {
/* height: 200px;
width: 200px; */
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.zoomin img:hover {
transform: scale(1.5)
}
/* modelOutput */
.modelOutput {
width: 100%;
margin: 2.5rem 0;
display: -moz-flex;
display: -webkit-flex;
display: -ms-flex;
display: flex;
-moz-flex-wrap: wrap;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-moz-align-items: -moz-stretch;
-webkit-align-items: -webkit-stretch;
-ms-align-items: -ms-stretch;
align-items: stretch; }
.modelOutput > * {
-moz-flex-shrink: 1;
-webkit-flex-shrink: 1;
-ms-flex-shrink: 1;
flex-shrink: 1;
-moz-flex-grow: 0;
-webkit-flex-grow: 0;
-ms-flex-grow: 0;
flex-grow: 0; }
.modelOutput > * {
width: 50%; }
.modelOutput > * {
padding: 1.5rem;
width: calc(50% + 1rem); }
.modelOutput > :nth-child(-n + 2) {
padding-top: 0; }
.modelOutput > :nth-last-child(-n + 2) {
padding-bottom: 0; }
.modelOutput > :nth-child(2n + 1) {
padding-left: 0; }
.modelOutput > :nth-child(2n) {
padding-right: 0; }
.modelOutput > :nth-child(2n + 1),
.modelOutput > :nth-child(2n) {
width: calc(50% + -0.5rem); }
.modelOutput .content {
border-radius: 4px;
height: 100%;
padding: 0rem; /* Was 3 */
text-align: center; }
.modelOutput .content .icon {
font-size: 5rem; }
.modelOutput > div > :last-child {
margin-bottom: 0; }
/* @media screen and (max-width: 980px) {
.modelOutput > * {
width: 50%; }
.modelOutput > * {
padding: 1rem;
width: calc(50% + 0.5rem); }
.modelOutput > :nth-child(-n + 2) {
padding-top: 1rem; }
.modelOutput > :nth-last-child(-n + 2) {
padding-bottom: 1rem; }
.modelOutput > :nth-child(2n + 1) {
padding-left: 1rem; }
.modelOutput > :nth-child(2n) {
padding-right: 1rem; }
.modelOutput > :nth-child(2n + 1),
.modelOutput > :nth-child(2n) {
padding: 1rem;
width: calc(50% + 1rem); }
.modelOutput > * {
padding: 1rem;
width: calc(50% + 1rem); }
.modelOutput > :nth-child(-n + 2) {
padding-top: 0; }
.modelOutput > :nth-last-child(-n + 2) {
padding-bottom: 0; }
.modelOutput > :nth-child(2n + 1) {
padding-left: 0; }
.modelOutput > :nth-child(2n) {
padding-right: 0; }
.modelOutput > :nth-child(2n + 1),
.modelOutput > :nth-child(2n) {
width: calc(50% + 0rem); }
.modelOutput .content {
padding: 0rem; } } */
@media screen and (max-width: 980px) { /* Was 736 */
.modelOutput > * {
width: 100%; }
.modelOutput > * {
padding: 1rem;
width: calc(50% + 0.5rem); }
.modelOutput > :nth-child(-n + 2) {
padding-top: 1rem; }
.modelOutput > :nth-last-child(-n + 2) {
padding-bottom: 1rem; }
.modelOutput > :nth-child(2n + 1) {
padding-left: 1rem; }
.modelOutput > :nth-child(2n) {
padding-right: 1rem; }
.modelOutput > :nth-child(2n + 1),
.modelOutput > :nth-child(2n) {
padding: 1rem;
width: calc(100% + 2rem); }
.modelOutput > * {
padding: 1rem;
width: calc(50% + 1rem); }
.modelOutput > :nth-child(-n + 2) {
padding-top: 1rem; }
.modelOutput > :nth-last-child(-n + 2) {
padding-bottom: 1rem; }
.modelOutput > :nth-child(2n + 1) {
padding-left: 1rem; }
.modelOutput > :nth-child(2n) {
padding-right: 1rem; }
.modelOutput > :nth-child(2n + 1),
.modelOutput > :nth-child(2n) {
padding: 1rem;
width: calc(100% + 2rem); }
.modelOutput > * {
padding: 1rem;
width: calc(100% + 2rem); }
.modelOutput > :nth-child(-n + 1) {
padding-top: 0; }
.modelOutput > :nth-last-child(-n + 1) {
padding-bottom: 0; }
.modelOutput > :nth-child(1n + 1) {
padding-left: 0; }
.modelOutput > :nth-child(1n) {
padding-right: 0; }
.modelOutput > :nth-child(1n + 1),
.modelOutput > :nth-child(1n) {
width: calc(100% + 1rem); } }
.modelOutput .content {
background: #ffffff;
box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.025); }
input[type=checkbox]
{
-webkit-appearance:checkbox;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Firefox */
input[type=number] {
-moz-appearance: textfield;
} | 0.459319 | 0.08292 |
@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro:400,400i');
* {
font-family : 'Source Code Pro', monospace;
}
#chat.show-seconds .time, #chat.show-seconds .chat-view[data-type="channel"] .msg.highlight .time {
width : auto;
}
/* END */
:root {
--body-color : #eee;
--body-color-muted : #9b9b9b;
--border-color : #222;
--body-bg-color : #000 !important;
--body-bg-color-light : #111;
--button-color : #2980b9;
--button-color-muted : #3498db;
--button-text-color-hover : #fff;
--overlay-bg-color : rgba(0, 0, 0, 0.5);
--link-color : #3498db;
--window-bg-color : #000;
--window-heading-color : #6c797a;
--date-marker-color : var(--button-color);
--unread-marker-color : var(--button-color);
--highlight-bg-color : var(--border-color);
--highlight-border-color : var(--button-color);
--upload-progressbar-color : var(--button-color);
}
::-webkit-scrollbar:hover {
background-color : var(--body-bg-color-light);
}
::-webkit-scrollbar-thumb:vertical {
background-color : var(--border-color);
border-radius : 0;
}
::-webkit-scrollbar-thumb:vertical:active {
background-color : #444;
}
body,
.input {
background : var(--body-bg-color);
}
.input {
border : 1px solid var(--border-color);
color : var(--body-color);
}
a:visited {
color : #9b59b6;
}
.logo-container {
display : none;
}
.channel-list-item[data-type=lobby] {
color : var(--button-color);
}
.channel-list-item[data-type="lobby"]:hover,
.channel-list-item[data-type="lobby"].active {
color : var(--button-color-muted);
}
.btn:active,
.btn:focus,
.input:focus {
outline : 0;
box-shadow : 0 0 0 1px rgba(41, 128, 185, .5);
}
.input:not(:disabled):focus,
.input:not(:disabled):hover {
border-color : var(--button-color);
}
#chat button.mentions,
#chat button.menu,
#viewport .lt,
#viewport .rt,
.topic-container .save-topic span,
.password-container .reveal-password span,
#form #submit,
#form #upload {
color : var(--body-color-muted);
}
#form {
background : inherit;
color : var(--body-color);
border-top : 1px solid var(--border-color);
}
.jump-to-input .input {
color : var(--body-color);
}
::placeholder {
color : var(--body-color-muted);
}
#chat .header {
border-bottom : 1px solid var(--border-color);
}
#chat .userlist,
#chat .content {
border-left : 1px solid var(--border-color);
}
#chat .userlist .count {
background : inherit;
}
#chat .msg[data-type=monospace_block] .text,
#chat .toggle-content,
#form #nick {
background : var(--body-bg-color-light);
color : var(--body-color);
}
#footer button:hover,
#footer button.active,
.channel-list-item:hover {
background-color : var(--body-bg-color-light);
color : var(--body-color);
}
#footer button {
color : inherit;
}
#footer button.active,
.channel-list-item.active {
background-color : var(--body-bg-color-light);
color : var(--body-color);
}
#sidebar {
color : var(--body-color-muted);
}
.channel-list-item .badge {
background : var(--border-color);
color : var(--body-color);
}
.channel-list-item .badge.highlight {
background : var(--body-color);
color : var(--border-color);
}
#chat .msg[data-type=invite] .from:before,
#chat .msg[data-type="topic"] .from::before,
#chat .msg[data-type="mode"] .from::before,
#chat .msg[data-type="mode_channel"] .from::before,
#chat .msg[data-type=whois] .from:before,
#chat .msg[data-type=nick] .from:before,
#chat .msg[data-type=join] .from:before,
#chat .msg.self[data-type=raw] .from:before {
color : var(--button-color);
}
code,
.irc-monospace {
background-color : var(--border-color);
}
pre {
background-color : #f5f5f5;
}
#context-menu {
background : var(--body-bg-color);
border : 1px solid var(--border-color);
}
.context-menu-item {
color : var(--body-color-muted);
}
.context-menu-item:hover {
background : var(--body-bg-color-light);
color : var(--body-color);
}
#chat.colored-nicks .user.color-1 {color : #f7adf7}
#chat.colored-nicks .user.color-2 {color : #abf99f}
#chat.colored-nicks .user.color-3 {color : #86efdc}
#chat.colored-nicks .user.color-4 {color : #b76ee5}
#chat.colored-nicks .user.color-5 {color : #f9a4b3}
#chat.colored-nicks .user.color-6 {color : #f7999a}
#chat.colored-nicks .user.color-7 {color : #f497b9}
#chat.colored-nicks .user.color-8 {color : #f9a9d7}
#chat.colored-nicks .user.color-9 {color : #7fa2e2}
#chat.colored-nicks .user.color-10 {color : #a8b8ff}
#chat.colored-nicks .user.color-11 {color : #ad88fc}
#chat.colored-nicks .user.color-12 {color : #f4aead}
#chat.colored-nicks .user.color-13 {color : #fc71ab}
#chat.colored-nicks .user.color-14 {color : #ff72e0}
#chat.colored-nicks .user.color-15 {color : #8cb6ea}
#chat.colored-nicks .user.color-16 {color : #f9857c}
#chat.colored-nicks .user.color-17 {color : #ed9b82}
#chat.colored-nicks .user.color-18 {color : #8df484}
#chat.colored-nicks .user.color-19 {color : #ffcce3}
#chat.colored-nicks .user.color-20 {color : #efcc81}
#chat.colored-nicks .user.color-21 {color : #90a1ed}
#chat.colored-nicks .user.color-22 {color : #f4d484}
#chat.colored-nicks .user.color-23 {color : #97ea70}
#chat.colored-nicks .user.color-24 {color : #fcbbba}
#chat.colored-nicks .user.color-25 {color : #eef975}
#chat.colored-nicks .user.color-26 {color : #c7ff93}
#chat.colored-nicks .user.color-27 {color : #ffade1}
#chat.colored-nicks .user.color-28 { color : #98ecf2; }
#chat.colored-nicks .user.color-29 { color : #7187f2; }
#chat.colored-nicks .user.color-30 { color : #9676e2; }
#chat.colored-nicks .user.color-31 { color : #f2a4eb; }
#chat.colored-nicks .user.color-32 { color : #85f27d; }
/* Increase contrast of some IRC colors */
.irc-fg2 {
color : #0074d9;
}
.irc-fg5 {
color : #e969a7;
}
.irc-fg12 {
color : #50a8ff;
} | theme.css | @import url('https://fonts.googleapis.com/css?family=Source+Code+Pro:400,400i');
* {
font-family : 'Source Code Pro', monospace;
}
#chat.show-seconds .time, #chat.show-seconds .chat-view[data-type="channel"] .msg.highlight .time {
width : auto;
}
/* END */
:root {
--body-color : #eee;
--body-color-muted : #9b9b9b;
--border-color : #222;
--body-bg-color : #000 !important;
--body-bg-color-light : #111;
--button-color : #2980b9;
--button-color-muted : #3498db;
--button-text-color-hover : #fff;
--overlay-bg-color : rgba(0, 0, 0, 0.5);
--link-color : #3498db;
--window-bg-color : #000;
--window-heading-color : #6c797a;
--date-marker-color : var(--button-color);
--unread-marker-color : var(--button-color);
--highlight-bg-color : var(--border-color);
--highlight-border-color : var(--button-color);
--upload-progressbar-color : var(--button-color);
}
::-webkit-scrollbar:hover {
background-color : var(--body-bg-color-light);
}
::-webkit-scrollbar-thumb:vertical {
background-color : var(--border-color);
border-radius : 0;
}
::-webkit-scrollbar-thumb:vertical:active {
background-color : #444;
}
body,
.input {
background : var(--body-bg-color);
}
.input {
border : 1px solid var(--border-color);
color : var(--body-color);
}
a:visited {
color : #9b59b6;
}
.logo-container {
display : none;
}
.channel-list-item[data-type=lobby] {
color : var(--button-color);
}
.channel-list-item[data-type="lobby"]:hover,
.channel-list-item[data-type="lobby"].active {
color : var(--button-color-muted);
}
.btn:active,
.btn:focus,
.input:focus {
outline : 0;
box-shadow : 0 0 0 1px rgba(41, 128, 185, .5);
}
.input:not(:disabled):focus,
.input:not(:disabled):hover {
border-color : var(--button-color);
}
#chat button.mentions,
#chat button.menu,
#viewport .lt,
#viewport .rt,
.topic-container .save-topic span,
.password-container .reveal-password span,
#form #submit,
#form #upload {
color : var(--body-color-muted);
}
#form {
background : inherit;
color : var(--body-color);
border-top : 1px solid var(--border-color);
}
.jump-to-input .input {
color : var(--body-color);
}
::placeholder {
color : var(--body-color-muted);
}
#chat .header {
border-bottom : 1px solid var(--border-color);
}
#chat .userlist,
#chat .content {
border-left : 1px solid var(--border-color);
}
#chat .userlist .count {
background : inherit;
}
#chat .msg[data-type=monospace_block] .text,
#chat .toggle-content,
#form #nick {
background : var(--body-bg-color-light);
color : var(--body-color);
}
#footer button:hover,
#footer button.active,
.channel-list-item:hover {
background-color : var(--body-bg-color-light);
color : var(--body-color);
}
#footer button {
color : inherit;
}
#footer button.active,
.channel-list-item.active {
background-color : var(--body-bg-color-light);
color : var(--body-color);
}
#sidebar {
color : var(--body-color-muted);
}
.channel-list-item .badge {
background : var(--border-color);
color : var(--body-color);
}
.channel-list-item .badge.highlight {
background : var(--body-color);
color : var(--border-color);
}
#chat .msg[data-type=invite] .from:before,
#chat .msg[data-type="topic"] .from::before,
#chat .msg[data-type="mode"] .from::before,
#chat .msg[data-type="mode_channel"] .from::before,
#chat .msg[data-type=whois] .from:before,
#chat .msg[data-type=nick] .from:before,
#chat .msg[data-type=join] .from:before,
#chat .msg.self[data-type=raw] .from:before {
color : var(--button-color);
}
code,
.irc-monospace {
background-color : var(--border-color);
}
pre {
background-color : #f5f5f5;
}
#context-menu {
background : var(--body-bg-color);
border : 1px solid var(--border-color);
}
.context-menu-item {
color : var(--body-color-muted);
}
.context-menu-item:hover {
background : var(--body-bg-color-light);
color : var(--body-color);
}
#chat.colored-nicks .user.color-1 {color : #f7adf7}
#chat.colored-nicks .user.color-2 {color : #abf99f}
#chat.colored-nicks .user.color-3 {color : #86efdc}
#chat.colored-nicks .user.color-4 {color : #b76ee5}
#chat.colored-nicks .user.color-5 {color : #f9a4b3}
#chat.colored-nicks .user.color-6 {color : #f7999a}
#chat.colored-nicks .user.color-7 {color : #f497b9}
#chat.colored-nicks .user.color-8 {color : #f9a9d7}
#chat.colored-nicks .user.color-9 {color : #7fa2e2}
#chat.colored-nicks .user.color-10 {color : #a8b8ff}
#chat.colored-nicks .user.color-11 {color : #ad88fc}
#chat.colored-nicks .user.color-12 {color : #f4aead}
#chat.colored-nicks .user.color-13 {color : #fc71ab}
#chat.colored-nicks .user.color-14 {color : #ff72e0}
#chat.colored-nicks .user.color-15 {color : #8cb6ea}
#chat.colored-nicks .user.color-16 {color : #f9857c}
#chat.colored-nicks .user.color-17 {color : #ed9b82}
#chat.colored-nicks .user.color-18 {color : #8df484}
#chat.colored-nicks .user.color-19 {color : #ffcce3}
#chat.colored-nicks .user.color-20 {color : #efcc81}
#chat.colored-nicks .user.color-21 {color : #90a1ed}
#chat.colored-nicks .user.color-22 {color : #f4d484}
#chat.colored-nicks .user.color-23 {color : #97ea70}
#chat.colored-nicks .user.color-24 {color : #fcbbba}
#chat.colored-nicks .user.color-25 {color : #eef975}
#chat.colored-nicks .user.color-26 {color : #c7ff93}
#chat.colored-nicks .user.color-27 {color : #ffade1}
#chat.colored-nicks .user.color-28 { color : #98ecf2; }
#chat.colored-nicks .user.color-29 { color : #7187f2; }
#chat.colored-nicks .user.color-30 { color : #9676e2; }
#chat.colored-nicks .user.color-31 { color : #f2a4eb; }
#chat.colored-nicks .user.color-32 { color : #85f27d; }
/* Increase contrast of some IRC colors */
.irc-fg2 {
color : #0074d9;
}
.irc-fg5 {
color : #e969a7;
}
.irc-fg12 {
color : #50a8ff;
} | 0.334589 | 0.073497 |
body, html {
height: 100%;
margin: 0;
}
.bg {
background-image: url("https://galatislv.files.wordpress.com/2015/02/tablecloth.png");
height: 100%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.bg-text {
position: fixed;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 2;
width: 1000px;
padding: 20px;
text-align: center;
}
p.underline {
font-size: 130%;
text-decoration: underline;
}
h1 {
font-size: 400%;
margin-top: 140px;
margin-bottom: 50px;
font-family: cursive;
background-color: rgba(255, 255, 255, 0.824);
border: 3px solid rgb(179, 0, 0);
border-style: double;
border-radius: 50px;
}
h2.double {
margin-bottom: 100px;
font-size: 150%;
font-family: Times;
width: 570px;
padding: 8px;
border: 3px solid rgb(179, 0, 0);
background-color: rgba(255, 255, 255, 0.838);
border-style: double;
border-radius: 50px;
margin: auto;
margin-bottom: 50px;
}
h2 {
margin-bottom: 100px;
font-size: 150%;
font-family: Times;
width: 570px;
padding: 8px;
border: 3px solid rgb(179, 0, 0);
background-color: rgba(255, 255, 255, 0.838);
border-style: double;
border-radius: 50px;
margin: auto;
margin-bottom: 50px;
}
.meat, .veggies {
display: inline-block;
margin-bottom: 20px;
}
.order-custom {
display: none;
background-color: rgba(255, 255, 255, 0.845);
border-radius: 5px;
width: 550px;
margin: auto;
}
.order-signature {
display: none;
font-family: 'Times New Roman', Times, serif;
font-size: 120%;
background-color: rgba(255, 255, 255, 0.845);
border-radius: 5px;
width: 550px;
margin: auto;
}
.confirmation {
display: none;
background-color: rgba(255, 255, 255, 0.845);
border-radius: 5px;
width: 400px;
height: 190px;
margin: auto;
}
.checkout {
display: none;
}
p.checkout {
background-color: rgba(255, 255, 255, 0.817);
border-radius: 5px;
width: 600px;
padding: 8px;
margin: auto;
font-size: 120%;
font-family: 'Times New Roman', Times, serif;
}
#total {
display:none;
font-family: 'Times New Roman', Times, serif;
margin-top: 100px;
font-size: 250%;
}
#add-more {
display: none;
margin-top: 20px;
}
#btn, #btn2, #btn-checkout, #btn-custom, #btn-home {
background-color: #009dffd9;
border: none;
border-radius: 50px;
color: white;
padding: 15px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 20px;
width: 200px;
margin: 20px 2px;
cursor: pointer;
}
#btn-custom:hover, #btn:hover, #btn2:hover, #btn-checkout:hover, #btn-home:hover {
background-color: #7cdcff;
} | css/styles.css | body, html {
height: 100%;
margin: 0;
}
.bg {
background-image: url("https://galatislv.files.wordpress.com/2015/02/tablecloth.png");
height: 100%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.bg-text {
position: fixed;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 2;
width: 1000px;
padding: 20px;
text-align: center;
}
p.underline {
font-size: 130%;
text-decoration: underline;
}
h1 {
font-size: 400%;
margin-top: 140px;
margin-bottom: 50px;
font-family: cursive;
background-color: rgba(255, 255, 255, 0.824);
border: 3px solid rgb(179, 0, 0);
border-style: double;
border-radius: 50px;
}
h2.double {
margin-bottom: 100px;
font-size: 150%;
font-family: Times;
width: 570px;
padding: 8px;
border: 3px solid rgb(179, 0, 0);
background-color: rgba(255, 255, 255, 0.838);
border-style: double;
border-radius: 50px;
margin: auto;
margin-bottom: 50px;
}
h2 {
margin-bottom: 100px;
font-size: 150%;
font-family: Times;
width: 570px;
padding: 8px;
border: 3px solid rgb(179, 0, 0);
background-color: rgba(255, 255, 255, 0.838);
border-style: double;
border-radius: 50px;
margin: auto;
margin-bottom: 50px;
}
.meat, .veggies {
display: inline-block;
margin-bottom: 20px;
}
.order-custom {
display: none;
background-color: rgba(255, 255, 255, 0.845);
border-radius: 5px;
width: 550px;
margin: auto;
}
.order-signature {
display: none;
font-family: 'Times New Roman', Times, serif;
font-size: 120%;
background-color: rgba(255, 255, 255, 0.845);
border-radius: 5px;
width: 550px;
margin: auto;
}
.confirmation {
display: none;
background-color: rgba(255, 255, 255, 0.845);
border-radius: 5px;
width: 400px;
height: 190px;
margin: auto;
}
.checkout {
display: none;
}
p.checkout {
background-color: rgba(255, 255, 255, 0.817);
border-radius: 5px;
width: 600px;
padding: 8px;
margin: auto;
font-size: 120%;
font-family: 'Times New Roman', Times, serif;
}
#total {
display:none;
font-family: 'Times New Roman', Times, serif;
margin-top: 100px;
font-size: 250%;
}
#add-more {
display: none;
margin-top: 20px;
}
#btn, #btn2, #btn-checkout, #btn-custom, #btn-home {
background-color: #009dffd9;
border: none;
border-radius: 50px;
color: white;
padding: 15px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 20px;
width: 200px;
margin: 20px 2px;
cursor: pointer;
}
#btn-custom:hover, #btn:hover, #btn2:hover, #btn-checkout:hover, #btn-home:hover {
background-color: #7cdcff;
} | 0.50708 | 0.087447 |
@tailwind base;
@tailwind components;
@tailwind utilities;
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Creepster&display=swap");
:root {
--font-base: "DM Sans", sans-serif;
--primary-color: #edf2f8;
--secondary-color: #313bac;
--black-color: #030303;
--lightGray-color: #e4e4e4;
--gray-color: #6b7688;
--brown-color: #46364a;
--white-color: #ffffff;
--github-color: #333;
--linkedin-color: #0077B5;
--twitter-color: #1<PASSWORD>;
--facebook-color: #4267B2;
--instagram-color: #da2980;
}
* {
box-sizing: border-box;
padding: 0;
margin: 0;
scroll-behavior: smooth;
}
body {
background-color: #e8eaf6;
}
.section_gap {
padding: 60px 0;
}
svg {
overflow: hidden;
vertical-align: middle;
}
::-webkit-scrollbar {
width: 10px;
height: 10px;
}
::-webkit-scrollbar-track {
background-color: #e6e6e6;
}
::-webkit-scrollbar-thumb {
background: #c1c9d6;
border-radius: 20px;
}
::-webkit-scrollbar-corner {
background-color: #1f1f1f;
visibility: visible;
}
::-webkit-input-placeholder {
color: #eee;
}
:-ms-input-placeholder {
color: #eee;
}
::placeholder {
color: #eee;
}
.loader-container {
background-color: #e8eaf6;
width: 100vw;
height: 100vh;
z-index: 2000;
position: absolute;
-moz-animation: cssAnimation 1s ease-in 3s forwards;
/* Firefox */
animation: cssAnimation 1s ease-in 3s forwards;
/* Safari and Chrome */
-o-animation: cssAnimation 1s ease-in 3s forwards;
/* Opera */
animation: cssAnimation 1s ease-in 3s forwards;
animation-fill-mode: forwards;
animation-fill-mode: forwards;
}
@media (min-width: 768px) {
.loader-container {
width: calc(100vw - 10px);
}
}
@keyframes cssAnimation {
to {
opacity: 0;
display: none;
visibility: hidden;
}
}
.spinner {
margin: 50vh auto 0;
width: 100px;
text-align: center;
}
.spinner > div {
width: 18px;
height: 18px;
border-radius: 100%;
display: inline-block;
animation: sk-bouncedelay 1.4s infinite ease-in-out both;
animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.spinner > div:not(:last-child) {
margin-right: 0.2rem;
}
.spinner .bounce1 {
background-color: #434dbe;
animation-delay: -0.32s;
}
.spinner .bounce2 {
background-color: #434dbe;
animation-delay: -0.16s;
}
.spinner .bounce3 {
background-color: #434dbe;
}
@keyframes sk-bouncedelay {
0%, 80%, 100% { transform: scale(0) }
40% { transform: scale(1) }
} | src/index.css | @tailwind base;
@tailwind components;
@tailwind utilities;
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Creepster&display=swap");
:root {
--font-base: "DM Sans", sans-serif;
--primary-color: #edf2f8;
--secondary-color: #313bac;
--black-color: #030303;
--lightGray-color: #e4e4e4;
--gray-color: #6b7688;
--brown-color: #46364a;
--white-color: #ffffff;
--github-color: #333;
--linkedin-color: #0077B5;
--twitter-color: #1<PASSWORD>;
--facebook-color: #4267B2;
--instagram-color: #da2980;
}
* {
box-sizing: border-box;
padding: 0;
margin: 0;
scroll-behavior: smooth;
}
body {
background-color: #e8eaf6;
}
.section_gap {
padding: 60px 0;
}
svg {
overflow: hidden;
vertical-align: middle;
}
::-webkit-scrollbar {
width: 10px;
height: 10px;
}
::-webkit-scrollbar-track {
background-color: #e6e6e6;
}
::-webkit-scrollbar-thumb {
background: #c1c9d6;
border-radius: 20px;
}
::-webkit-scrollbar-corner {
background-color: #1f1f1f;
visibility: visible;
}
::-webkit-input-placeholder {
color: #eee;
}
:-ms-input-placeholder {
color: #eee;
}
::placeholder {
color: #eee;
}
.loader-container {
background-color: #e8eaf6;
width: 100vw;
height: 100vh;
z-index: 2000;
position: absolute;
-moz-animation: cssAnimation 1s ease-in 3s forwards;
/* Firefox */
animation: cssAnimation 1s ease-in 3s forwards;
/* Safari and Chrome */
-o-animation: cssAnimation 1s ease-in 3s forwards;
/* Opera */
animation: cssAnimation 1s ease-in 3s forwards;
animation-fill-mode: forwards;
animation-fill-mode: forwards;
}
@media (min-width: 768px) {
.loader-container {
width: calc(100vw - 10px);
}
}
@keyframes cssAnimation {
to {
opacity: 0;
display: none;
visibility: hidden;
}
}
.spinner {
margin: 50vh auto 0;
width: 100px;
text-align: center;
}
.spinner > div {
width: 18px;
height: 18px;
border-radius: 100%;
display: inline-block;
animation: sk-bouncedelay 1.4s infinite ease-in-out both;
animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.spinner > div:not(:last-child) {
margin-right: 0.2rem;
}
.spinner .bounce1 {
background-color: #434dbe;
animation-delay: -0.32s;
}
.spinner .bounce2 {
background-color: #434dbe;
animation-delay: -0.16s;
}
.spinner .bounce3 {
background-color: #434dbe;
}
@keyframes sk-bouncedelay {
0%, 80%, 100% { transform: scale(0) }
40% { transform: scale(1) }
} | 0.454714 | 0.086516 |
@media (min-width: 576px) {
.slider-content br {
display: none;
}
.filter-tabs li {
font-size: 20px;
}
.filter-tabs li:not(:last-child) {
margin-right: 40px;
}
.blog {
padding: 120px 0;
}
.blog .title {
font-size: 36px;
}
.single-post .meta a {
font-size: 16px;
}
}
@media (min-width: 768px) {
.logo a::before {
display: block;
}
.main-menu {
position: relative;
}
.main-menu li {
position: relative;
}
.main-menu li::after {
content: "";
width: 100%;
height: 1px;
background: #dddddd;
position: absolute;
top: 0;
}
.main-menu li:first-child::after {
width: 50%;
right: 0;
}
.main-menu li:last-child::after {
width: 50%;
}
.main-menu li::before {
content: "";
width: 1px;
height: 30px;
background: #dddddd;
position: absolute;
top: 0;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
z-index: 1;
-webkit-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.main-menu li:hover::before {
width: 3px;
background-color: #fe4156;
}
.main-menu a {
font-weight: 700;
}
.swiper-slide-active .single-post:first-of-type .col-md-6 {
-webkit-box-ordinal-group: 2;
-ms-flex-order: 1;
order: 1;
}
.swiper-slide-active .single-post:first-of-type .col-md-6:nth-child(2) {
-webkit-box-ordinal-group: 2;
-ms-flex-order: 1;
order: 1;
}
.slider .social a {
font-size: 14px;
}
.social a {
font-size: 14px;
}
.social a i {
margin-right: 10px;
}
}
@media (min-width: 768px) and (prefers-reduced-motion: reduce) {
.main-menu li::before {
-webkit-transition: none;
transition: none;
}
}
@media (min-width: 992px) {
.main-nav .nav-link {
padding: 2rem 1.9rem;
}
.main-nav a {
font-size: 18px;
}
.slider .slide-img {
margin-top: 0;
}
.slider .swiper-pagination-bullet {
font-size: 60px;
}
.slider .swiper-pagination-bullet:not(:last-child) {
margin-right: 100px;
}
.slider .swiper-pagination-bullet:not(:last-child)::after {
width: 100px;
}
.slider-content h5 {
font-size: 60px;
display: block;
}
.slider-content h5 span {
font-size: 80px;
}
.slider-content h5 span:last-of-type {
font-size: 71px;
}
.slider-content br {
display: block;
}
.slide-control {
background: #f8f8f8;
margin-left: 50%;
}
.filter-tabs {
width: 80%;
margin: 0 auto;
}
.filter-tabs li {
font-size: 24px;
}
.filter-tabs li:not(:last-child) {
margin-right: 50px;
}
.filter-tabs li.active::after {
top: 50%;
right: -15px;
}
.review {
padding: 160px 0;
}
.review .control-btn {
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
padding: 15px 10px;
}
.review .control-btn br {
display: block;
}
.review-slider .swiper-slide {
padding: 150px 100px;
}
.blog .title {
font-size: 48px;
}
}
@media (min-width: 1200px) {
.slider .swiper-pagination-bullet {
font-size: 82px;
}
.slider .swiper-pagination-bullet:not(:last-child) {
margin-right: 120px;
}
.slider .swiper-pagination-bullet:not(:last-child)::after {
width: 120px;
}
}
@media (min-width: 1200px) and (max-width: 1443px) {
.slider-content {
margin-left: 0;
}
.slider-content br {
display: none;
}
.slider-content h5 {
font-size: 40px;
}
.slider-content h5 span {
font-size: 55px;
}
.slider-content h5 span:last-of-type {
font-size: 71px;
}
}
/*# sourceMappingURL=responsive.css.map */ | flaskProject/backstage/static/assets/css/responsive.css | @media (min-width: 576px) {
.slider-content br {
display: none;
}
.filter-tabs li {
font-size: 20px;
}
.filter-tabs li:not(:last-child) {
margin-right: 40px;
}
.blog {
padding: 120px 0;
}
.blog .title {
font-size: 36px;
}
.single-post .meta a {
font-size: 16px;
}
}
@media (min-width: 768px) {
.logo a::before {
display: block;
}
.main-menu {
position: relative;
}
.main-menu li {
position: relative;
}
.main-menu li::after {
content: "";
width: 100%;
height: 1px;
background: #dddddd;
position: absolute;
top: 0;
}
.main-menu li:first-child::after {
width: 50%;
right: 0;
}
.main-menu li:last-child::after {
width: 50%;
}
.main-menu li::before {
content: "";
width: 1px;
height: 30px;
background: #dddddd;
position: absolute;
top: 0;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
z-index: 1;
-webkit-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.main-menu li:hover::before {
width: 3px;
background-color: #fe4156;
}
.main-menu a {
font-weight: 700;
}
.swiper-slide-active .single-post:first-of-type .col-md-6 {
-webkit-box-ordinal-group: 2;
-ms-flex-order: 1;
order: 1;
}
.swiper-slide-active .single-post:first-of-type .col-md-6:nth-child(2) {
-webkit-box-ordinal-group: 2;
-ms-flex-order: 1;
order: 1;
}
.slider .social a {
font-size: 14px;
}
.social a {
font-size: 14px;
}
.social a i {
margin-right: 10px;
}
}
@media (min-width: 768px) and (prefers-reduced-motion: reduce) {
.main-menu li::before {
-webkit-transition: none;
transition: none;
}
}
@media (min-width: 992px) {
.main-nav .nav-link {
padding: 2rem 1.9rem;
}
.main-nav a {
font-size: 18px;
}
.slider .slide-img {
margin-top: 0;
}
.slider .swiper-pagination-bullet {
font-size: 60px;
}
.slider .swiper-pagination-bullet:not(:last-child) {
margin-right: 100px;
}
.slider .swiper-pagination-bullet:not(:last-child)::after {
width: 100px;
}
.slider-content h5 {
font-size: 60px;
display: block;
}
.slider-content h5 span {
font-size: 80px;
}
.slider-content h5 span:last-of-type {
font-size: 71px;
}
.slider-content br {
display: block;
}
.slide-control {
background: #f8f8f8;
margin-left: 50%;
}
.filter-tabs {
width: 80%;
margin: 0 auto;
}
.filter-tabs li {
font-size: 24px;
}
.filter-tabs li:not(:last-child) {
margin-right: 50px;
}
.filter-tabs li.active::after {
top: 50%;
right: -15px;
}
.review {
padding: 160px 0;
}
.review .control-btn {
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
padding: 15px 10px;
}
.review .control-btn br {
display: block;
}
.review-slider .swiper-slide {
padding: 150px 100px;
}
.blog .title {
font-size: 48px;
}
}
@media (min-width: 1200px) {
.slider .swiper-pagination-bullet {
font-size: 82px;
}
.slider .swiper-pagination-bullet:not(:last-child) {
margin-right: 120px;
}
.slider .swiper-pagination-bullet:not(:last-child)::after {
width: 120px;
}
}
@media (min-width: 1200px) and (max-width: 1443px) {
.slider-content {
margin-left: 0;
}
.slider-content br {
display: none;
}
.slider-content h5 {
font-size: 40px;
}
.slider-content h5 span {
font-size: 55px;
}
.slider-content h5 span:last-of-type {
font-size: 71px;
}
}
/*# sourceMappingURL=responsive.css.map */ | 0.441191 | 0.089097 |
@import url(https://fonts.googleapis.com/css?family=Open+Sans:600);
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
margin: 0;
padding: 0;
color: black;
}
body {
background-color: white;
background-image: url("http://i.imgur.com/7M48i1w.png") !important;
background-size: contain !important;
background-repeat: repeat-y !important;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
fieldset,
img {
border: 0;
}
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
font-style: normal;
font-weight: normal;
}
ol,
ul {
list-style: none;
}
caption,
th {
text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-size: 100%;
font-weight: normal;
}
q:before,
q:after {
content: '';
}
abbr,
acronym {
border: 0;
}
.clearfix:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
.clearfix {
display: inline-block;
}
html[xmlns] .clearfix {
display: block;
}
* html .clearfix {
height: 1%;
}
/* * * * * * * * * * * * * * * * * * * * *
* General
* * * * * * * * * * * * * * * * * * * * */
body {
font-family: 'Open Sans', sans-serif;
text-shadow: 0 0 black;
color: black;
-webkit-font-smoothing: antialiased;
padding: 120px 0;
}
body.clearfix {
display: block;
}
header {
float: left;
margin-bottom: 20px;
width: 100%;
}
#thecontainer {
width: 750px;
margin: 0 auto 80px;
}
#thecontainer a {
color: black;
}
#thecontainer a:hover {
color: #fff;
}
.c1 {
width: 800px;
float: left;
}
p {
font-size: 10px;
line-height: 1.3;
}
h2 {
font-size: 16px;
color: #bbb;
text-shadow: #262729 0 -1px 0;
font-weight: 300;
text-align: center;
margin-bottom: 15px;
}
h2.look {
font-size: 22px;
margin-bottom: 45px;
}
h2 strong {
color: #fafafa;
}
h3 {
font-size: 12px;
color: black;
margin-bottom: 8px;
}
input {
font: normal 10px/1.3 'helvetica neue', helvetica, arial;
font-size: 18px;
border-radius: 10px;
border: solid 1px #555;
float: left;
margin-right: 10px;
margin-bottom: 15px;
color: black;
}
input:focus {
border: none;
outline: none;
background-color: #eee;
border-top: solid 1px #aaa;
border-right: solid 1px #e6e6e6;
border-bottom: solid 1px #e6e6e6;
border-left: solid 1px #aaa;
}
.button {
color: #b01116;
margin-right: 5px;
margin-top: 3px;
padding: 5px;
border-radius: 10px;
border: solid 1px #d4d4d4;
display: block;
float: left;
background-color: rgba(0, 0, 0, 0.1);
text-shadow: 1px 1px 3px #b3b3b3;
padding-left: 15px;
padding-right: 15px;
font-weight: bold;
}
.button:hover {
background-color: rgba(255, 255, 255, 0.1);
cursor: pointer;
}
#add-initiative {
color: white;
background-color: #b01116;
text-shadow: 0 1px 3px #1a1a1a;
font-weight: bold;
}
.primary-button {
color: white;
background-color: #737373;
text-shadow: 0 1px 3px #4d4d4d;
font-weight: bold;
}
.primary-button:hover {
background-color: #808080;
}
.defective-toptop {
float: left;
margin: auto;
width: 70%;
margin-left: 16px;
text-align: center;
}
.defective-toptop h5 {
font-size: 30px;
color: white;
text-shadow: 0px 1px 3px black;
font-weight: bold;
}
.defective-container .button {
color: white;
margin-right: 5px;
padding: 5px;
border-radius: 10px;
border: solid 1px #58595b;
display: block;
float: left;
background-color: rgba(0, 0, 0, 0.1);
text-shadow: 1px 1px 1px black;
}
.defective-container .button:hover {
background-color: rgba(255, 255, 255, 0.05);
cursor: pointer;
}
.defective-container h5 {
margin-top: 10px;
color: white;
text-shadow: 0px 1px 3px black;
font-weight: bold;
}
.defective-container .sort-by {
padding: 10px;
}
.sort-by input {
margin-right: 8px;
}
table {
border-collapse: collapse;
width: 100%;
margin-bottom: 10px;
}
th {
background-color: rgba(0, 0, 0, 0.1);
border: solid 1px rgba(255, 255, 255, 0.1);
padding: 10px 10px;
text-align: left;
font-weight: bold;
color: #dddddd;
}
td {
padding: 10px 10px;
border: solid 1px rgba(255, 255, 255, 0.1);
}
p.preamble {
font-size: 22px;
color: #cecece;
text-shadow: #262729 0 -1px 0;
font-weight: 300;
}
p.preamble strong {
color: #fafafa;
}
p.preamble .bugwarning {
color: #959494;
font-weight: 300;
font-size: 16px;
}
div.info {
margin-bottom: 40px;
clear: both;
}
#example-list {
margin-bottom: 30px;
}
#example-list .list {
clear: both;
}
#example-list li {
font-size: 20px;
color: black;
text-shadow: #262729 0 -1px 0;
font-weight: 300;
border-top: solid 1px #666;
padding: 10px 0;
}
#example-list li strong {
color: #fafafa;
}
/* * * * * * * * * * * * * * * * * * * * *
* Examples
* * * * * * * * * * * * * * * * * * * * */
#thecontainer .example-page {
margin-top: 30px;
}
h1 {
font: 100 40px "helvetica neue", helvetica, arial;
letter-spacing: 1px;
color: black;
text-align: center;
margin-bottom: 20px;
text-shadow: #262729 0 -1px 0;
}
#lovely-things-list {
margin-bottom: 60px;
}
#lovely-things-list .thumb {
max-width: 70px;
max-height: 70px;
width: auto;
height: auto;
float: left;
margin-top: 3px;
margin-right: 13px;
margin-bottom: 0px;
}
#lovely-things-list .list {
clear: both;
margin-bottom: 10px;
}
#lovely-things-list .list li {
padding: 20px;
}
#lovely-things-list .list li:nth-child(2n+1) {
background-color: rgba(0, 0, 0, 0.1);
border: solid 1px rgba(255, 255, 255, 0.1);
border-radius: 10px;
}
#lovely-things-list h4 {
color: black;
font-weight: bold;
margin-bottom: 6px;
}
#lovely-things-list p {
font: normal 14px/1.3 'helvetica neue', helvetica, arial;
color: black;
text-align: justify;
}
#lovely-things-list .sort-by {
margin-bottom: 10px;
width: 100%;
float: left;
clear: both;
}
#lovely-things-list .filter {
margin-bottom: 10px;
width: 100%;
float: left;
clear: both;
}
@media screen and (max-width: 750px) {
#lovely-things-list {
width: 600px;
}
}
#mainkategories .button {
margin-bottom: 10px;
}
/* * * * * * * * * * * * * * * * * * * * *
* Syntax coloring
* * * * * * * * * * * * * * * * * * * * */
pre {
border-top: solid 1px rgba(255, 255, 255, 0.15);
border-bottom: solid 1px rgba(255, 255, 255, 0.15);
background-color: rgba(0, 0, 0, 0.2);
padding: 0 20px 10px;
margin: 0 -20px 20px;
line-height: 1.5;
}
pre,
code {
font-family: 'monaco', sans-serif;
font-size: 12px;
}
pre .keyword {
color: black;
}
pre .string {
color: black;
}
pre .regexp {
color: black;
}
pre .class {
color: black;
font-weight: bold;
}
pre .special {
color: black;
}
pre .number {
color: black;
}
pre .comment {
color: grey;
font-style: italic;
}
a {
text-decoration: none;
}
.searched {
font-size: 15px;
color: #58595b;
padding: 5px;
margin-right: 10px;
}
.filtercheckbox {
margin-top: 1px;
margin-bottom: -15px;
}
a:hover {
text-decoration: none !important;
}
.fellow {
font-size: 14px;
}
.category {
margin-top: 35px;
font-size: 15px;
text-align: center;
}
.name {
font-size: 20px;
font-weight: bold;
cursor: pointer;
color: #b01116;
}
/*
MODAL
*/
.modal-dialog {
background-color: white;
border: 1px #b01116;
}
.modal-header {
text-align: center;
background-color: white;
padding: 10px;
}
.modal-title {
font-size: 34px;
color: #b01116;
}
.modal-body {
background-color: white;
color: #58595b;
}
.modal-body h4 {
font-size: 20px;
color: #58595b;
padding-top: 20px;
}
.modal-filter {
margin-top: 5px;
}
.modal-footer {
background-color: white;
color: black;
}
.modal-website {
font-size: 20px !important;
color: #58595b !important;
text-decoration: none !important;
}
.modal-website:hover {
color: black !important;
}
#modal-body-1 span,
#modal-body-2 span {
padding-top: 10px;
line-height: 150%;
}
.modal-thumb {
max-width: 100px;
max-height: 100px;
width: auto;
height: auto;
margin: 15px;
}
/*
DEFECTIVE SECTION
*/
.defective-top {
padding-top: 150px;
width: 60%;
float: center;
margin: auto;
}
.defective-container {
float: left;
margin: auto;
width: 70%;
padding: 10px;
margin-left: 16px;
padding-bottom: 300px;
}
.defective-container .button {
margin-top: 5px;
margin-bottom: 5px;
}
.defective-container h5 {
margin-top: 30px;
}
.filter-notes {
color: #58595b;
margin-bottom: 17px !important;
}
.initiative-bar {
text-align: center;
font-size: 16px;
font-weight: bold;
}
.initiative-bar .initiative-title {
float: left;
}
.breaker {
padding: 4px;
}
#lLength {
margin-left: 20px;
font-size: 20px;
font-weight: bold;
color: #b01116;
}
.fa-spinner {
text-align: center;
margin-top: 120px;
margin-left: 400px;
} | css/style.css | @import url(https://fonts.googleapis.com/css?family=Open+Sans:600);
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
margin: 0;
padding: 0;
color: black;
}
body {
background-color: white;
background-image: url("http://i.imgur.com/7M48i1w.png") !important;
background-size: contain !important;
background-repeat: repeat-y !important;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
fieldset,
img {
border: 0;
}
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
font-style: normal;
font-weight: normal;
}
ol,
ul {
list-style: none;
}
caption,
th {
text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-size: 100%;
font-weight: normal;
}
q:before,
q:after {
content: '';
}
abbr,
acronym {
border: 0;
}
.clearfix:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
.clearfix {
display: inline-block;
}
html[xmlns] .clearfix {
display: block;
}
* html .clearfix {
height: 1%;
}
/* * * * * * * * * * * * * * * * * * * * *
* General
* * * * * * * * * * * * * * * * * * * * */
body {
font-family: 'Open Sans', sans-serif;
text-shadow: 0 0 black;
color: black;
-webkit-font-smoothing: antialiased;
padding: 120px 0;
}
body.clearfix {
display: block;
}
header {
float: left;
margin-bottom: 20px;
width: 100%;
}
#thecontainer {
width: 750px;
margin: 0 auto 80px;
}
#thecontainer a {
color: black;
}
#thecontainer a:hover {
color: #fff;
}
.c1 {
width: 800px;
float: left;
}
p {
font-size: 10px;
line-height: 1.3;
}
h2 {
font-size: 16px;
color: #bbb;
text-shadow: #262729 0 -1px 0;
font-weight: 300;
text-align: center;
margin-bottom: 15px;
}
h2.look {
font-size: 22px;
margin-bottom: 45px;
}
h2 strong {
color: #fafafa;
}
h3 {
font-size: 12px;
color: black;
margin-bottom: 8px;
}
input {
font: normal 10px/1.3 'helvetica neue', helvetica, arial;
font-size: 18px;
border-radius: 10px;
border: solid 1px #555;
float: left;
margin-right: 10px;
margin-bottom: 15px;
color: black;
}
input:focus {
border: none;
outline: none;
background-color: #eee;
border-top: solid 1px #aaa;
border-right: solid 1px #e6e6e6;
border-bottom: solid 1px #e6e6e6;
border-left: solid 1px #aaa;
}
.button {
color: #b01116;
margin-right: 5px;
margin-top: 3px;
padding: 5px;
border-radius: 10px;
border: solid 1px #d4d4d4;
display: block;
float: left;
background-color: rgba(0, 0, 0, 0.1);
text-shadow: 1px 1px 3px #b3b3b3;
padding-left: 15px;
padding-right: 15px;
font-weight: bold;
}
.button:hover {
background-color: rgba(255, 255, 255, 0.1);
cursor: pointer;
}
#add-initiative {
color: white;
background-color: #b01116;
text-shadow: 0 1px 3px #1a1a1a;
font-weight: bold;
}
.primary-button {
color: white;
background-color: #737373;
text-shadow: 0 1px 3px #4d4d4d;
font-weight: bold;
}
.primary-button:hover {
background-color: #808080;
}
.defective-toptop {
float: left;
margin: auto;
width: 70%;
margin-left: 16px;
text-align: center;
}
.defective-toptop h5 {
font-size: 30px;
color: white;
text-shadow: 0px 1px 3px black;
font-weight: bold;
}
.defective-container .button {
color: white;
margin-right: 5px;
padding: 5px;
border-radius: 10px;
border: solid 1px #58595b;
display: block;
float: left;
background-color: rgba(0, 0, 0, 0.1);
text-shadow: 1px 1px 1px black;
}
.defective-container .button:hover {
background-color: rgba(255, 255, 255, 0.05);
cursor: pointer;
}
.defective-container h5 {
margin-top: 10px;
color: white;
text-shadow: 0px 1px 3px black;
font-weight: bold;
}
.defective-container .sort-by {
padding: 10px;
}
.sort-by input {
margin-right: 8px;
}
table {
border-collapse: collapse;
width: 100%;
margin-bottom: 10px;
}
th {
background-color: rgba(0, 0, 0, 0.1);
border: solid 1px rgba(255, 255, 255, 0.1);
padding: 10px 10px;
text-align: left;
font-weight: bold;
color: #dddddd;
}
td {
padding: 10px 10px;
border: solid 1px rgba(255, 255, 255, 0.1);
}
p.preamble {
font-size: 22px;
color: #cecece;
text-shadow: #262729 0 -1px 0;
font-weight: 300;
}
p.preamble strong {
color: #fafafa;
}
p.preamble .bugwarning {
color: #959494;
font-weight: 300;
font-size: 16px;
}
div.info {
margin-bottom: 40px;
clear: both;
}
#example-list {
margin-bottom: 30px;
}
#example-list .list {
clear: both;
}
#example-list li {
font-size: 20px;
color: black;
text-shadow: #262729 0 -1px 0;
font-weight: 300;
border-top: solid 1px #666;
padding: 10px 0;
}
#example-list li strong {
color: #fafafa;
}
/* * * * * * * * * * * * * * * * * * * * *
* Examples
* * * * * * * * * * * * * * * * * * * * */
#thecontainer .example-page {
margin-top: 30px;
}
h1 {
font: 100 40px "helvetica neue", helvetica, arial;
letter-spacing: 1px;
color: black;
text-align: center;
margin-bottom: 20px;
text-shadow: #262729 0 -1px 0;
}
#lovely-things-list {
margin-bottom: 60px;
}
#lovely-things-list .thumb {
max-width: 70px;
max-height: 70px;
width: auto;
height: auto;
float: left;
margin-top: 3px;
margin-right: 13px;
margin-bottom: 0px;
}
#lovely-things-list .list {
clear: both;
margin-bottom: 10px;
}
#lovely-things-list .list li {
padding: 20px;
}
#lovely-things-list .list li:nth-child(2n+1) {
background-color: rgba(0, 0, 0, 0.1);
border: solid 1px rgba(255, 255, 255, 0.1);
border-radius: 10px;
}
#lovely-things-list h4 {
color: black;
font-weight: bold;
margin-bottom: 6px;
}
#lovely-things-list p {
font: normal 14px/1.3 'helvetica neue', helvetica, arial;
color: black;
text-align: justify;
}
#lovely-things-list .sort-by {
margin-bottom: 10px;
width: 100%;
float: left;
clear: both;
}
#lovely-things-list .filter {
margin-bottom: 10px;
width: 100%;
float: left;
clear: both;
}
@media screen and (max-width: 750px) {
#lovely-things-list {
width: 600px;
}
}
#mainkategories .button {
margin-bottom: 10px;
}
/* * * * * * * * * * * * * * * * * * * * *
* Syntax coloring
* * * * * * * * * * * * * * * * * * * * */
pre {
border-top: solid 1px rgba(255, 255, 255, 0.15);
border-bottom: solid 1px rgba(255, 255, 255, 0.15);
background-color: rgba(0, 0, 0, 0.2);
padding: 0 20px 10px;
margin: 0 -20px 20px;
line-height: 1.5;
}
pre,
code {
font-family: 'monaco', sans-serif;
font-size: 12px;
}
pre .keyword {
color: black;
}
pre .string {
color: black;
}
pre .regexp {
color: black;
}
pre .class {
color: black;
font-weight: bold;
}
pre .special {
color: black;
}
pre .number {
color: black;
}
pre .comment {
color: grey;
font-style: italic;
}
a {
text-decoration: none;
}
.searched {
font-size: 15px;
color: #58595b;
padding: 5px;
margin-right: 10px;
}
.filtercheckbox {
margin-top: 1px;
margin-bottom: -15px;
}
a:hover {
text-decoration: none !important;
}
.fellow {
font-size: 14px;
}
.category {
margin-top: 35px;
font-size: 15px;
text-align: center;
}
.name {
font-size: 20px;
font-weight: bold;
cursor: pointer;
color: #b01116;
}
/*
MODAL
*/
.modal-dialog {
background-color: white;
border: 1px #b01116;
}
.modal-header {
text-align: center;
background-color: white;
padding: 10px;
}
.modal-title {
font-size: 34px;
color: #b01116;
}
.modal-body {
background-color: white;
color: #58595b;
}
.modal-body h4 {
font-size: 20px;
color: #58595b;
padding-top: 20px;
}
.modal-filter {
margin-top: 5px;
}
.modal-footer {
background-color: white;
color: black;
}
.modal-website {
font-size: 20px !important;
color: #58595b !important;
text-decoration: none !important;
}
.modal-website:hover {
color: black !important;
}
#modal-body-1 span,
#modal-body-2 span {
padding-top: 10px;
line-height: 150%;
}
.modal-thumb {
max-width: 100px;
max-height: 100px;
width: auto;
height: auto;
margin: 15px;
}
/*
DEFECTIVE SECTION
*/
.defective-top {
padding-top: 150px;
width: 60%;
float: center;
margin: auto;
}
.defective-container {
float: left;
margin: auto;
width: 70%;
padding: 10px;
margin-left: 16px;
padding-bottom: 300px;
}
.defective-container .button {
margin-top: 5px;
margin-bottom: 5px;
}
.defective-container h5 {
margin-top: 30px;
}
.filter-notes {
color: #58595b;
margin-bottom: 17px !important;
}
.initiative-bar {
text-align: center;
font-size: 16px;
font-weight: bold;
}
.initiative-bar .initiative-title {
float: left;
}
.breaker {
padding: 4px;
}
#lLength {
margin-left: 20px;
font-size: 20px;
font-weight: bold;
color: #b01116;
}
.fa-spinner {
text-align: center;
margin-top: 120px;
margin-left: 400px;
} | 0.313945 | 0.109325 |
body{
font-family: 'Indie Flower', cursive;
background: black; color: #ffef45;
height: 99vh;
overflow: hidden;
}
span, i{
font-family: 'Indie Flower', cursive;
}
button{ outline: 0; background-color: transparent; border: 0;color: #ffef45;
font-size: 25px;
}
button:active{ outline: 0}
.guesses{
position: fixed;
bottom: 10px;
text-align: center;
position: fixed;
width: 100%;
z-index: 999;
transition-duration: 500ms;
transform: translate(0, 150%);
}
.guesses.loaded{
transition-duration: 500ms;
transform: translate(0, 0);
}
.guesses button{
width: 25%;
margin-left: 2%;
margin-right: 2%;
/* background: #f8fbdf; */
background-position: center center;
background-size: 100% 100%;
border: 0;
color: black;
font-size: large;
padding: 25px;
position: relative;
height: 110px;
background-color: transparent;
font-size: 24px;
}
button img, img.answer{
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-color: transparent;
}
/*
button:hover img, img.answer:hover{
transition-duration: 500ms;
transform: scale(10%)
} */
button img.bg{
opacity: 0.5;
}
button:hover span{
font-weight: bold;
}
button span{
position: absolute;
z-index: 9999;
left: 0;
margin-top: -15px;
width: 100%;
text-align: center;
}
.player{
/* margin-top: 30px; */
text-align: center;
height: 100%;
width: 100%;
}
video{
width: 100%;
height: 100%;
max-height: 100%;
max-width: 100%;
}
.next{
position: fixed;
top: 43%;
right: 40px;
width: 100px;
height: 100px;
text-align: center;
background-color: transparent;
display: none;
}
.next button{
background-position: center center;
background-size: 100% 100%;
border: 0;
color: black;
font-size: large;
padding: 15px;
width: 100%;
height: 100%;
background-color: transparent;
}
/*
button.guessed{
background-color: red;
}
button.guessed.correct{
background-color: greenyellow;
} */
.success{
margin-top: 30px;
text-align: center;
background-color: greenyellow;
color: black;
padding: 10px;
font-size: large;
}
.timer{
text-align: right;
padding: 15px;
position: absolute;
color: white;
position: fixed;
font-size: 40px;
width: 10%;
padding-top: 40px;
z-index: 9999;
}
.tmp{
position: fixed; bottom: 0;right: 0;
cursor: default; color: #aaa; opacity: 0.5;
}
button.lang{
position: absolute;
top: 0px;
right: 0px;
/* color: white; */
background: transparent;
border: 0;
padding: 30px;
font-size: 24px;
}
.intro-screen, .score-screen{
position: absolute; top: 0; left: 0; width: 100%; height: 100%;
background: #813b8e; color: #ffef45;
font-family: 'Indie Flower', cursive;
z-index: 999;
}
.intro-screen h1, .score-screen h2{
font-size: 60px; text-transform: uppercase;
position: absolute; top: 35%; text-align: center;
width: 100%;
display: block;
}
.score-screen h2{
top: 10%;
}
.scores{
font-size: 30px;
position: absolute; top:40%; text-align: center; width: 100%; font-style: italic;
}
.start-game{
position: absolute; display: block; top:75%; left: calc( 50% - 150px ); width: 300px;
height: 80px;
}
.start-game-info{
font-size: 30px;
position: absolute; top:55%; text-align: center; width: 100%; font-style: italic;
}
.hidden{display: none;} | css/activeet.css | body{
font-family: 'Indie Flower', cursive;
background: black; color: #ffef45;
height: 99vh;
overflow: hidden;
}
span, i{
font-family: 'Indie Flower', cursive;
}
button{ outline: 0; background-color: transparent; border: 0;color: #ffef45;
font-size: 25px;
}
button:active{ outline: 0}
.guesses{
position: fixed;
bottom: 10px;
text-align: center;
position: fixed;
width: 100%;
z-index: 999;
transition-duration: 500ms;
transform: translate(0, 150%);
}
.guesses.loaded{
transition-duration: 500ms;
transform: translate(0, 0);
}
.guesses button{
width: 25%;
margin-left: 2%;
margin-right: 2%;
/* background: #f8fbdf; */
background-position: center center;
background-size: 100% 100%;
border: 0;
color: black;
font-size: large;
padding: 25px;
position: relative;
height: 110px;
background-color: transparent;
font-size: 24px;
}
button img, img.answer{
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-color: transparent;
}
/*
button:hover img, img.answer:hover{
transition-duration: 500ms;
transform: scale(10%)
} */
button img.bg{
opacity: 0.5;
}
button:hover span{
font-weight: bold;
}
button span{
position: absolute;
z-index: 9999;
left: 0;
margin-top: -15px;
width: 100%;
text-align: center;
}
.player{
/* margin-top: 30px; */
text-align: center;
height: 100%;
width: 100%;
}
video{
width: 100%;
height: 100%;
max-height: 100%;
max-width: 100%;
}
.next{
position: fixed;
top: 43%;
right: 40px;
width: 100px;
height: 100px;
text-align: center;
background-color: transparent;
display: none;
}
.next button{
background-position: center center;
background-size: 100% 100%;
border: 0;
color: black;
font-size: large;
padding: 15px;
width: 100%;
height: 100%;
background-color: transparent;
}
/*
button.guessed{
background-color: red;
}
button.guessed.correct{
background-color: greenyellow;
} */
.success{
margin-top: 30px;
text-align: center;
background-color: greenyellow;
color: black;
padding: 10px;
font-size: large;
}
.timer{
text-align: right;
padding: 15px;
position: absolute;
color: white;
position: fixed;
font-size: 40px;
width: 10%;
padding-top: 40px;
z-index: 9999;
}
.tmp{
position: fixed; bottom: 0;right: 0;
cursor: default; color: #aaa; opacity: 0.5;
}
button.lang{
position: absolute;
top: 0px;
right: 0px;
/* color: white; */
background: transparent;
border: 0;
padding: 30px;
font-size: 24px;
}
.intro-screen, .score-screen{
position: absolute; top: 0; left: 0; width: 100%; height: 100%;
background: #813b8e; color: #ffef45;
font-family: 'Indie Flower', cursive;
z-index: 999;
}
.intro-screen h1, .score-screen h2{
font-size: 60px; text-transform: uppercase;
position: absolute; top: 35%; text-align: center;
width: 100%;
display: block;
}
.score-screen h2{
top: 10%;
}
.scores{
font-size: 30px;
position: absolute; top:40%; text-align: center; width: 100%; font-style: italic;
}
.start-game{
position: absolute; display: block; top:75%; left: calc( 50% - 150px ); width: 300px;
height: 80px;
}
.start-game-info{
font-size: 30px;
position: absolute; top:55%; text-align: center; width: 100%; font-style: italic;
}
.hidden{display: none;} | 0.519034 | 0.067362 |
body {
position: relative;
}
h3 code, code {
font-size: 14px;
font-weight: normal;
}
body > .navbar {
font-size: 13px;
}
section {
padding-top: 30px;
}
section > .page-header,
section > .lead {
color: #5a5a5a;
}
section > ul li {
margin-bottom: 5px;
}
.jumbotron {
position: relative;
padding: 40px 0;
color: #fff;
text-align: center;
text-shadow: 0 1px 3px rgba(0,0,0,.4), 0 0 30px rgba(0,0,0,.075);
background: #020031; /* Old browsers */
background: -moz-linear-gradient(45deg, #020031 0%, #6d3353 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left bottom, right top, color-stop(0%,#020031), color-stop(100%,#6d3353)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(45deg, #020031 0%,#6d3353 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(45deg, #020031 0%,#6d3353 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(45deg, #020031 0%,#6d3353 100%); /* IE10+ */
background: linear-gradient(45deg, #020031 0%,#6d3353 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#020031', endColorstr='#6d3353',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
-webkit-box-shadow: inset 0 3px 7px rgba(0,0,0,.2), inset 0 -3px 7px rgba(0,0,0,.2);
-moz-box-shadow: inset 0 3px 7px rgba(0,0,0,.2), inset 0 -3px 7px rgba(0,0,0,.2);
box-shadow: inset 0 3px 7px rgba(0,0,0,.2), inset 0 -3px 7px rgba(0,0,0,.2);
}
.jumbotron h1 {
font-size: 80px;
font-weight: bold;
letter-spacing: -1px;
line-height: 1;
}
.jumbotron p {
font-size: 24px;
font-weight: 300;
line-height: 1.25;
margin-bottom: 30px;
}
.jumbotron a {
color: #fff;
color: rgba(255,255,255,.5);
-webkit-transition: all .2s ease-in-out;
-moz-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
}
.jumbotron a:hover {
color: #fff;
text-shadow: 0 0 10px rgba(255,255,255,.25);
}
.subhead {
text-align: left;
border-bottom: 1px solid #ddd;
}
.subhead h1 {
font-size: 60px;
}
.subhead p {
margin-bottom: 20px;
}
.subhead .navbar {
display: none;
}
.footer {
text-align: center;
padding: 30px 0;
margin-top: 70px;
border-top: 1px solid #e5e5e5;
background-color: #f5f5f5;
}
.footer p {
margin-bottom: 0;
color: #777;
}
.footer-links {
margin: 10px 0;
}
.footer-links li {
display: inline;
padding: 0 2px;
}
.footer-links li:first-child {
padding-left: 0;
} | doc/css/docs.css | body {
position: relative;
}
h3 code, code {
font-size: 14px;
font-weight: normal;
}
body > .navbar {
font-size: 13px;
}
section {
padding-top: 30px;
}
section > .page-header,
section > .lead {
color: #5a5a5a;
}
section > ul li {
margin-bottom: 5px;
}
.jumbotron {
position: relative;
padding: 40px 0;
color: #fff;
text-align: center;
text-shadow: 0 1px 3px rgba(0,0,0,.4), 0 0 30px rgba(0,0,0,.075);
background: #020031; /* Old browsers */
background: -moz-linear-gradient(45deg, #020031 0%, #6d3353 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left bottom, right top, color-stop(0%,#020031), color-stop(100%,#6d3353)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(45deg, #020031 0%,#6d3353 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(45deg, #020031 0%,#6d3353 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(45deg, #020031 0%,#6d3353 100%); /* IE10+ */
background: linear-gradient(45deg, #020031 0%,#6d3353 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#020031', endColorstr='#6d3353',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
-webkit-box-shadow: inset 0 3px 7px rgba(0,0,0,.2), inset 0 -3px 7px rgba(0,0,0,.2);
-moz-box-shadow: inset 0 3px 7px rgba(0,0,0,.2), inset 0 -3px 7px rgba(0,0,0,.2);
box-shadow: inset 0 3px 7px rgba(0,0,0,.2), inset 0 -3px 7px rgba(0,0,0,.2);
}
.jumbotron h1 {
font-size: 80px;
font-weight: bold;
letter-spacing: -1px;
line-height: 1;
}
.jumbotron p {
font-size: 24px;
font-weight: 300;
line-height: 1.25;
margin-bottom: 30px;
}
.jumbotron a {
color: #fff;
color: rgba(255,255,255,.5);
-webkit-transition: all .2s ease-in-out;
-moz-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
}
.jumbotron a:hover {
color: #fff;
text-shadow: 0 0 10px rgba(255,255,255,.25);
}
.subhead {
text-align: left;
border-bottom: 1px solid #ddd;
}
.subhead h1 {
font-size: 60px;
}
.subhead p {
margin-bottom: 20px;
}
.subhead .navbar {
display: none;
}
.footer {
text-align: center;
padding: 30px 0;
margin-top: 70px;
border-top: 1px solid #e5e5e5;
background-color: #f5f5f5;
}
.footer p {
margin-bottom: 0;
color: #777;
}
.footer-links {
margin: 10px 0;
}
.footer-links li {
display: inline;
padding: 0 2px;
}
.footer-links li:first-child {
padding-left: 0;
} | 0.378919 | 0.08772 |
.mprm-container .mp_menu_item .mprm-title,
.mprm-container .mprm-price-container .mprm-price {
font-style: $h6_font_style;
font-weight: $h6_font_weight;
font-size: $h6_font_size{px};
line-height: $h6_line_height;
font-family: @font_family( $h6_font_family );
letter-spacing: $h6_letter_spacing{em};
}
.mprm-container .mp_menu_item .mprm-title {
color: $regular_h6_color;
}
.mprm-container.mprm-shortcode-items[class*="mprm-view-"] .mprm-header.with-image .mprm-header-content .mprm-title{
color: $invert_text_color;
}
.mprm-container.mprm-shortcode-items.mprm-view-simple-list .type-mp_menu_item .mprm-flex-container-simple-view.mprm-right .mprm-flex-item:first-child,
.mprm-container.mprm-view-simple-list .mprm-title.mprm-flex-item a,
.mprm_widget .mprm-main-wrapper .mprm-content-container.mprm-title a,
.mprm_widget .mprm-container .mprm-content-container.mprm-title a {
font-weight: $h6_font_weight;
}
.mprm-related-items a {
color: $regular_link_color;
}
.mprm-container .mprm-title a:hover,
.mprm-related-items a:hover {
color: $regular_link_hover_color;
}
.mprm-container .mprm-price {
color: $regular_accent_color_1;
}
.mprm-container .mprm-price-container .mprm-price,
.mprm-container.mprm-view-grid .mprm-price-container .mprm-price {
font-style: $h5_font_style;
font-weight: $h5_font_weight;
font-size: $h5_font_size{px};
line-height: $h5_line_height;
font-family: @font_family( $h5_font_family );
letter-spacing: $h5_letter_spacing{em};
text-align: $h5_text_align;
}
.mprm-container.mprm-view-grid .mp_menu_item .mprm-title,
.mprm-container.mprm-view-grid .mprm-price-container .mprm-price {
font-style: $h6_font_style;
font-weight: $h6_font_weight;
font-size: $h6_font_size{px};
line-height: $h6_line_height;
font-family: @font_family( $h6_font_family );
letter-spacing: $h6_letter_spacing{em};
}
.mprm-container .mprm-tags a {
font-style: $meta_font_style;
background-color: $regular_accent_color_1;
color: $invert_accent_color_1;
border-color: $regular_accent_color_1;
}
.mprm-container .mprm-tags a:hover {
background-color: @alpha( $regular_accent_color_1, 0 );
color: $regular_accent_color_1;
border-color: $regular_accent_color_1;
}
/* Gallery item pop-up */
.mprm-item-gallery a:before {
background-color: $regular_accent_color_1;
}
/* buy button */
.mprm_menu_item_buy_button .mprm-submit.mprm-inherit:not(.plain),
.mprm_checkout a,
#mprm_purchase_submit .mprm-submit.mprm-inherit,
#mprm-next-submit-wrap .mprm-submit.mprm-inherit {
color: $regular_accent_color_1;
box-shadow: 2px 3px 0 0 $regular_accent_color_1;
}
.mprm_menu_item_buy_button .mprm-submit.mprm-inherit:not(.plain):hover,
.mprm_checkout a:hover,
#mprm_purchase_submit .mprm-submit.mprm-inherit:hover,
#mprm-next-submit-wrap .mprm-submit.mprm-inherit:hover{
background-color: $regular_accent_color_1;
border-color: $regular_accent_color_1;
color: $invert_text_color;
}
.invert .mprm_menu_item_buy_button .mprm-submit.mprm-inherit:not(.plain),
.invert .mprm_checkout a{
color: $invert_accent_color_1;
box-shadow: 2px 3px 0 0 $invert_accent_color_1;
}
.invert .mprm_menu_item_buy_button .mprm-submit.mprm-inherit:not(.plain):hover,
.invert .mprm_checkout a:hover {
color: $regular_accent_color_1;
background-color: $invert_accent_color_1;
border-color: $invert_accent_color_1;
}
/* mprm_cart_widget */
.widget_mprm_cart_widget .mprm-cart-item.mprm_subtotal {
font-style: $h6_font_style;
font-weight: $h6_font_weight;
font-size: $h6_font_size{px};
line-height: $h6_line_height;
font-family: @font_family( $h6_font_family );
letter-spacing: $h6_letter_spacing{em};
color: $regular_h6_color;
}
.widget_mprm_cart_widget .mprm-cart-item.mprm_subtotal .subtotal {
color: $regular_accent_color_1;
}
/* Checkout */
#mprm_checkout_cart thead th,
.mprm-table,
#mprm_checkout_form_wrap fieldset#mprm_purchase_submit #mprm_final_total_wrap strong,
#mprm_purchase_receipt_products th,
#mprm_user_history th,
#mprm_checkout_wrap label.mprm-label {
color: $regular_h6_color;
}
#mprm_checkout_cart td.mprm_cart_item_price,
.mprm_cart_amount,
.mprm_cart_subtotal_amount{
color: $regular_accent_color_1;
}
#mprm_checkout_cart td.mprm_cart_item_name .mprm-link {
color: $regular_link_hover_color;
}
#mprm_checkout_cart td.mprm_cart_item_name .mprm-link:hover {
color: $regular_link_color;
}
.mprm-payment-mode-label,
.mprm-payment-details-label,
.mprm-order-details-label {
font-style: $h6_font_style;
font-weight: $h6_font_weight;
font-size: $h6_font_size{px};
line-height: $h6_line_height;
font-family: @font_family( $h6_font_family );
letter-spacing: $h6_letter_spacing{em};
color: $regular_h6_color;
}
#mprm_checkout_form_wrap fieldset#mprm_purchase_submit #mprm_final_total_wrap {
background-color: $regular_accent_color_3;
}
#mprm_checkout_wrap .mprm-required-indicator,
.mprm-required:after {
color: $regular_accent_color_1;
}
.mprm-container[class*="mprm-taxonomy-items-"] .mprm-header.with-image .mprm-title {
font-size: @font_size($h1_font_size, multiple, ceil, 0.57)px;
font-style: $h1_font_style;
font-weight: $h1_font_weight;
line-height: $h1_line_height;
font-family: @font_family( $h1_font_family );
letter-spacing: $h1_letter_spacing{em};
}
@media (min-width: 992px) {
.mprm-container[class*="mprm-taxonomy-items-"] .mprm-header.with-image .mprm-title { font-size: $h1_font_size{px}; }
}
.mprm-container .mprm-price-container .mprm-price,
.mprm-container.mprm-view-grid .mprm-price-container .mprm-price {
font-style: $meta_font_style;
}
.mprm-container.mprm-shortcode-categories.mprm-view-list .mprm-title {
font-style: $h1_font_style;
font-weight: $h1_font_weight;
font-size: @font_size($h1_font_size, multiple, ceil, 0.57)px;
line-height: $h1_line_height;
font-family: @font_family( $h1_font_family );
letter-spacing: $h1_letter_spacing{em};
color: $regular_h1_color;
}
@media (min-width: 992px) {
.mprm-container.mprm-shortcode-categories.mprm-view-list .mprm-title {
font-size: $h1_font_size{px};
}
} | web/app/themes/lafood/assets/css/dynamic/plugins/mp-restaurant-menu.css | .mprm-container .mp_menu_item .mprm-title,
.mprm-container .mprm-price-container .mprm-price {
font-style: $h6_font_style;
font-weight: $h6_font_weight;
font-size: $h6_font_size{px};
line-height: $h6_line_height;
font-family: @font_family( $h6_font_family );
letter-spacing: $h6_letter_spacing{em};
}
.mprm-container .mp_menu_item .mprm-title {
color: $regular_h6_color;
}
.mprm-container.mprm-shortcode-items[class*="mprm-view-"] .mprm-header.with-image .mprm-header-content .mprm-title{
color: $invert_text_color;
}
.mprm-container.mprm-shortcode-items.mprm-view-simple-list .type-mp_menu_item .mprm-flex-container-simple-view.mprm-right .mprm-flex-item:first-child,
.mprm-container.mprm-view-simple-list .mprm-title.mprm-flex-item a,
.mprm_widget .mprm-main-wrapper .mprm-content-container.mprm-title a,
.mprm_widget .mprm-container .mprm-content-container.mprm-title a {
font-weight: $h6_font_weight;
}
.mprm-related-items a {
color: $regular_link_color;
}
.mprm-container .mprm-title a:hover,
.mprm-related-items a:hover {
color: $regular_link_hover_color;
}
.mprm-container .mprm-price {
color: $regular_accent_color_1;
}
.mprm-container .mprm-price-container .mprm-price,
.mprm-container.mprm-view-grid .mprm-price-container .mprm-price {
font-style: $h5_font_style;
font-weight: $h5_font_weight;
font-size: $h5_font_size{px};
line-height: $h5_line_height;
font-family: @font_family( $h5_font_family );
letter-spacing: $h5_letter_spacing{em};
text-align: $h5_text_align;
}
.mprm-container.mprm-view-grid .mp_menu_item .mprm-title,
.mprm-container.mprm-view-grid .mprm-price-container .mprm-price {
font-style: $h6_font_style;
font-weight: $h6_font_weight;
font-size: $h6_font_size{px};
line-height: $h6_line_height;
font-family: @font_family( $h6_font_family );
letter-spacing: $h6_letter_spacing{em};
}
.mprm-container .mprm-tags a {
font-style: $meta_font_style;
background-color: $regular_accent_color_1;
color: $invert_accent_color_1;
border-color: $regular_accent_color_1;
}
.mprm-container .mprm-tags a:hover {
background-color: @alpha( $regular_accent_color_1, 0 );
color: $regular_accent_color_1;
border-color: $regular_accent_color_1;
}
/* Gallery item pop-up */
.mprm-item-gallery a:before {
background-color: $regular_accent_color_1;
}
/* buy button */
.mprm_menu_item_buy_button .mprm-submit.mprm-inherit:not(.plain),
.mprm_checkout a,
#mprm_purchase_submit .mprm-submit.mprm-inherit,
#mprm-next-submit-wrap .mprm-submit.mprm-inherit {
color: $regular_accent_color_1;
box-shadow: 2px 3px 0 0 $regular_accent_color_1;
}
.mprm_menu_item_buy_button .mprm-submit.mprm-inherit:not(.plain):hover,
.mprm_checkout a:hover,
#mprm_purchase_submit .mprm-submit.mprm-inherit:hover,
#mprm-next-submit-wrap .mprm-submit.mprm-inherit:hover{
background-color: $regular_accent_color_1;
border-color: $regular_accent_color_1;
color: $invert_text_color;
}
.invert .mprm_menu_item_buy_button .mprm-submit.mprm-inherit:not(.plain),
.invert .mprm_checkout a{
color: $invert_accent_color_1;
box-shadow: 2px 3px 0 0 $invert_accent_color_1;
}
.invert .mprm_menu_item_buy_button .mprm-submit.mprm-inherit:not(.plain):hover,
.invert .mprm_checkout a:hover {
color: $regular_accent_color_1;
background-color: $invert_accent_color_1;
border-color: $invert_accent_color_1;
}
/* mprm_cart_widget */
.widget_mprm_cart_widget .mprm-cart-item.mprm_subtotal {
font-style: $h6_font_style;
font-weight: $h6_font_weight;
font-size: $h6_font_size{px};
line-height: $h6_line_height;
font-family: @font_family( $h6_font_family );
letter-spacing: $h6_letter_spacing{em};
color: $regular_h6_color;
}
.widget_mprm_cart_widget .mprm-cart-item.mprm_subtotal .subtotal {
color: $regular_accent_color_1;
}
/* Checkout */
#mprm_checkout_cart thead th,
.mprm-table,
#mprm_checkout_form_wrap fieldset#mprm_purchase_submit #mprm_final_total_wrap strong,
#mprm_purchase_receipt_products th,
#mprm_user_history th,
#mprm_checkout_wrap label.mprm-label {
color: $regular_h6_color;
}
#mprm_checkout_cart td.mprm_cart_item_price,
.mprm_cart_amount,
.mprm_cart_subtotal_amount{
color: $regular_accent_color_1;
}
#mprm_checkout_cart td.mprm_cart_item_name .mprm-link {
color: $regular_link_hover_color;
}
#mprm_checkout_cart td.mprm_cart_item_name .mprm-link:hover {
color: $regular_link_color;
}
.mprm-payment-mode-label,
.mprm-payment-details-label,
.mprm-order-details-label {
font-style: $h6_font_style;
font-weight: $h6_font_weight;
font-size: $h6_font_size{px};
line-height: $h6_line_height;
font-family: @font_family( $h6_font_family );
letter-spacing: $h6_letter_spacing{em};
color: $regular_h6_color;
}
#mprm_checkout_form_wrap fieldset#mprm_purchase_submit #mprm_final_total_wrap {
background-color: $regular_accent_color_3;
}
#mprm_checkout_wrap .mprm-required-indicator,
.mprm-required:after {
color: $regular_accent_color_1;
}
.mprm-container[class*="mprm-taxonomy-items-"] .mprm-header.with-image .mprm-title {
font-size: @font_size($h1_font_size, multiple, ceil, 0.57)px;
font-style: $h1_font_style;
font-weight: $h1_font_weight;
line-height: $h1_line_height;
font-family: @font_family( $h1_font_family );
letter-spacing: $h1_letter_spacing{em};
}
@media (min-width: 992px) {
.mprm-container[class*="mprm-taxonomy-items-"] .mprm-header.with-image .mprm-title { font-size: $h1_font_size{px}; }
}
.mprm-container .mprm-price-container .mprm-price,
.mprm-container.mprm-view-grid .mprm-price-container .mprm-price {
font-style: $meta_font_style;
}
.mprm-container.mprm-shortcode-categories.mprm-view-list .mprm-title {
font-style: $h1_font_style;
font-weight: $h1_font_weight;
font-size: @font_size($h1_font_size, multiple, ceil, 0.57)px;
line-height: $h1_line_height;
font-family: @font_family( $h1_font_family );
letter-spacing: $h1_letter_spacing{em};
color: $regular_h1_color;
}
@media (min-width: 992px) {
.mprm-container.mprm-shortcode-categories.mprm-view-list .mprm-title {
font-size: $h1_font_size{px};
}
} | 0.371251 | 0.035511 |
body {
font-family: 'Lato', sans-serif;
font-weight: bold;
color: purple;
}
li {
list-style-type: none;
margin: 0;
padding: 0;
}
.nav-brand {
display: block;
padding: 8px;
background-color: silver;
border-color: silver;
}
.nav-list {
display: flex;
flex-direction: row;
border: 10px;
font-family: 'Lato', sans-serif;
align-self: center;
margin-left: 20px;
margin-right: 30px;
animation: fade-in-from-top 0.5s;
font-family: fantasy;
}
.nav-item-1 {
margin: 10px 10px 10px 100px;
}
.nav-item-2 {
margin: 10px 10px 10px 100px;
}
.nav-item-3 {
margin: 10px 10px 10px 100px;
}
.nav-item-4 {
margin: 10px 10px 10px 100px;
}
.nav-item-5 {
margin: 10px 10px 10px 100px;
}
.nav-item-6 {
margin: 10px 10px 10px 100px;
}
.nav-item-7 {
margin: 10px 10px 10px 100px;
}
button {
background-color: blueviolet;
font-family: 'Lato', sans-serif;
font-weight: bold;
color: white;
}
.topic-list {
display: grid;
height: 100vh;
grid-template-columns: 0.5fr 0.5fr 0.5fr;
grid-template-rows: 0.2fr 0.5fr 0.5fr;
}
.latest-photos {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
grid-auto-rows: minmax(100px, auto);
}
/*.latest-1 {
grid-column: 1 / 3;
grid-row: 1;
}
.latest-2 {
grid-column: 1 / 6;
grid-row: 1 / 6;
}
.latest-3 {
grid-column: 1/9;
grid-row: 1/9;
}
.latest-4 {
grid-column: 1/12;
grid-row: 1/12;
}
.latest-5 {
grid-column: 1/15;
grid-row: 1/15;
}
.latest-6 {
grid-column: 3;
grid-row: 4;
}
*/
/*
.form-control {
margin-left: 1000px;
}
.subscribe-btn {
margin-left: 1000px;
}
.donate-btn {
margin-left: 1000px;
}
*/
.main-image-div {
position: relative;
text-align: center;
color: purple;
}
.thirteen {
position: absolute;
bottom: 8px;
left: 16px;
}
.cycle {
display: grid;
height: 100vh;
grid-template-columns: 0.5fr 0.5fr 0.5fr 0.5fr;
grid-template-rows: 0.2fr 0.5fr 0.5fr 0.5fr;
}
.text {
padding-left: 700px;
}
.meet-authors{
display: flex;
justify-content: center;
}
.news-header {
color: white;
}
.news-letter {
background-color: purple;
text-align: center;
} | client/style.css | body {
font-family: 'Lato', sans-serif;
font-weight: bold;
color: purple;
}
li {
list-style-type: none;
margin: 0;
padding: 0;
}
.nav-brand {
display: block;
padding: 8px;
background-color: silver;
border-color: silver;
}
.nav-list {
display: flex;
flex-direction: row;
border: 10px;
font-family: 'Lato', sans-serif;
align-self: center;
margin-left: 20px;
margin-right: 30px;
animation: fade-in-from-top 0.5s;
font-family: fantasy;
}
.nav-item-1 {
margin: 10px 10px 10px 100px;
}
.nav-item-2 {
margin: 10px 10px 10px 100px;
}
.nav-item-3 {
margin: 10px 10px 10px 100px;
}
.nav-item-4 {
margin: 10px 10px 10px 100px;
}
.nav-item-5 {
margin: 10px 10px 10px 100px;
}
.nav-item-6 {
margin: 10px 10px 10px 100px;
}
.nav-item-7 {
margin: 10px 10px 10px 100px;
}
button {
background-color: blueviolet;
font-family: 'Lato', sans-serif;
font-weight: bold;
color: white;
}
.topic-list {
display: grid;
height: 100vh;
grid-template-columns: 0.5fr 0.5fr 0.5fr;
grid-template-rows: 0.2fr 0.5fr 0.5fr;
}
.latest-photos {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
grid-auto-rows: minmax(100px, auto);
}
/*.latest-1 {
grid-column: 1 / 3;
grid-row: 1;
}
.latest-2 {
grid-column: 1 / 6;
grid-row: 1 / 6;
}
.latest-3 {
grid-column: 1/9;
grid-row: 1/9;
}
.latest-4 {
grid-column: 1/12;
grid-row: 1/12;
}
.latest-5 {
grid-column: 1/15;
grid-row: 1/15;
}
.latest-6 {
grid-column: 3;
grid-row: 4;
}
*/
/*
.form-control {
margin-left: 1000px;
}
.subscribe-btn {
margin-left: 1000px;
}
.donate-btn {
margin-left: 1000px;
}
*/
.main-image-div {
position: relative;
text-align: center;
color: purple;
}
.thirteen {
position: absolute;
bottom: 8px;
left: 16px;
}
.cycle {
display: grid;
height: 100vh;
grid-template-columns: 0.5fr 0.5fr 0.5fr 0.5fr;
grid-template-rows: 0.2fr 0.5fr 0.5fr 0.5fr;
}
.text {
padding-left: 700px;
}
.meet-authors{
display: flex;
justify-content: center;
}
.news-header {
color: white;
}
.news-letter {
background-color: purple;
text-align: center;
} | 0.575349 | 0.15511 |
*{margin:0;padding:0;}
body{background: white;font-family:'Noto Sans',Helvetica, Arial, sans-serif!important}
a:hover{text-decoration: none!important;}
i{background: url("../images/bg.png");}
.time-new-roman{font-family: "Time New Roman";font-size: 15px}
header{box-shadow: 0 2px 5px rgba(0,0,0,0.2);width: 100%;padding:14px 0;position: relative;}
header .logo{float: left;font-weight: bold;font-size: 20px;text-align: center;}
header .logo a{color:black;display: inline-block;position: relative;}
header .logo a img{height: 50px;margin-right: 15px;float: left;}
header .logo a p{padding:10px 0 0 0;margin-left: 70px;margin-bottom: 0;text-align: center;}
header .link{float: right;text-align: center!important;margin-top: 6px;}
a.bt-join{background: #2a70b8;padding: 8px 20px;color:white;font-weight: bold;display: inline-block;font-family: "Helvetica Neue",Helvetica,Arial,sans-serif}
a.bt-join:hover{color:white;background-color: #175CA2}
a.underline:hover{text-decoration: underline!important;}
i.muiten{background-position: -265px -210px!important;width: 12px!important;height: 15px!important;display: inline-block;margin-bottom: -2px!important;position: static!important;}
.ads{margin-top: 30px}
.ads .col-md-4{padding: 0;margin-top: 10px}
.ads .col-md-4:nth-child(1){padding-right: 30px;}
.ads .col-md-4:nth-child(2){padding:0 15px;}
.ads .col-md-4:nth-child(3){padding-left: 30px;}
.item-ads{background: #e4e0e0}
.item-ads img{border:1px solid #5C5C5C;width: 100%;height: auto;min-height: 200px}
.contents-job{margin-top: 80px;}
.contents-job .info-company .logo{width: 100%;text-align: center;line-height: 120px;border:1px solid #CDCDCD;text-align: center;}
.contents-job .col-md-4{padding-right: 30px;padding-left: 0;margin-bottom: 20px}
.contents-job .info-company .info{border:1px solid #CDCDCD;padding: 20px;background: #efefef;}
.contents-job .title{font-size: 24px;font-weight: bold;margin-bottom: 15px}
.contents-job .info-company .info .star{margin-bottom: 20px}
.contents-job .info-company .info .star img{padding: 6px;height: 25px;border-radius: 8px;background: #2a70b8;margin-right:-2px}
.contents-job .info-company .info p i{display: inline-block;width: 20px;height: 20px;position: absolute;left:-30px;top:-2px}
.contents-job .info-company .info p:nth-of-type(1){margin-bottom: 5px}
.contents-job .info-company .info p:nth-of-type(2) i{background-position: -145px -210px}
.contents-job .info-company .info p:nth-of-type(3) i{background-position: -247px -210px}
.contents-job .info-company .info p:nth-of-type(4) i{background-position: -95px -210px;width: 22px}
.contents-job .info-company .info p:nth-of-type(5) i{background-position: -225px -210px}
.contents-job .info-company .info p:nth-of-type(6)>i{background-position: -0px -210px}
.contents-job .info-company .info p:nth-of-type(7)>i{background-position: -194px -210px;width: 25px}
.contents-job .info-company .info p:nth-of-type(8) i{background-position: -168px -210px}
.contents-job .info-company .info p:nth-of-type(9) i{background-position: -124px -210px}
.contents-job .info-company .info p.time-new-roman{margin-left: 30px;position: relative;}
.contents-job .info-company .link{text-align: center;margin-top: 20px;}
.contents-job .info-company .link a{color:#2a70b8;}
.info-job p i{display: inline-block;width: 20px;height: 20px;position: absolute;left:-30px;top:-2px}
.info-job p.time-new-roman{margin-left: 30px;position: relative;}
.info-job p:nth-of-type(2)>i{background-position: -95px -210px;width: 22px}
.info-job p:nth-of-type(3)>i{background-position: -23px -210px}
.info-job p:nth-of-type(4)>i{background-position: -72px -210px}
.info-job p:nth-of-type(5)>i{background-position: 0px -210px;}
.info-job p:nth-of-type(6)>i{background-position: -50px -210px;}
.info-job .bt {margin-top: 20px;margin-bottom: 9px;border-bottom: 1px solid #BABABA;position: relative;}
.info-job .bt span span{float: right;font-size: 18px;font-weight:bold;padding-top: 8px;margin-right: 20px;}
.info-job .bt a.icon{float: right;overflow: hidden;width: 30px;height: 30px;background: #2a70b8;display: inline-block;border-radius: 50%;text-align: center;margin-top: 5px;margin-right:5px;}
.info-job .bt a.icon i{display: inline-block;}
.info-job .bt a:nth-child(3){background-color: #ed1e27}
.info-job .bt a:nth-child(5){background-color: #ed1e27}
.info-job .bt a.icon i.i5{background-position: 0 -185px;width: 10px;height: 20px;margin-top: 6px}
.info-job .bt a.icon i.i4{background-position: -15px -185px;width: 25px;height: 20px;margin-top: 6px}
.info-job .bt a.icon i.i3{background-position: -40px -185px;width: 20px;height: 20px;margin-top: 6px}
.info-job .bt a.icon i.i2{background-position: -60px -185px;width: 25px;height: 20px;margin-top: 6px}
.info-job .bt a.icon i.i1{background-position: -82px -185px;width: 25px;height: 20px;margin-top: 6px}
.contents-job .item{margin-top: 20px;border: 1px solid #e4e3e3;border-radius: 8px;height: 200px;box-shadow: 0 2px 2px rgba(0,0,0,0.1)}
.contents-job .item .title{background-color: #f5f8fa;padding:10px 20px;color:#9ea5aa;font-size: 14px;text-transform: uppercase;margin-top: 10px}
.related-work{margin-top: 30px;font-family: "Helvetica Neue",Helvetica,Arial,sans-serif}
.related-work p.title{font-weight: bold;color:#464646;font-size: 15px;margin-bottom: 20px}
.related-work p.title i{background: url("../images/bg.png") -37px -38px;width: 26px;height: 25px;float: left;margin-right: 10px;margin-top: -2px;}
.wrapper{position: relative;margin-top: 10px}
.wrapper .next img,.prev img{background: white;padding:8px 10px ;border:1px solid #c9c9c9;border-radius: 50%;height: 30px;width:30px;text-align: center;}
.wrapper .next{margin-right: -40px;height: 190px;width: 40px;line-height: 190px;text-align: center;position: absolute;right: 0;z-index: 1000}
.wrapper .prev{margin-left: -40px;height: 190px;width: 40px;line-height: 190px;text-align: center;position: absolute;left: 0;z-index: 1000;}
.wrapper .prev button{background-position: -60px -60px;}
.wrapper .next img:hover,.prev img:hover{background: #c9c9c9;}
.wrapper #contents{display: inline-block;}
.item-work{padding:0 5px;width: 200px;float: left;}
.item-work .border-item{border-top:3px solid #2a70b8;}
.item-work a{width: 100%;border:1px solid #dce7f3;margin:0;overflow: hidden;display: inline-block;border-top: none;color:black;}
.item-work .details{position: relative;background: white;border-top: 1px solid #c9c9c9;margin: 0;width: 100%;height: 68px}
.item-work .single{padding: 18px 10%}
.item-work .single p{font-weight: bold;margin: 0;font-size: 12px;overflow: hidden;}
.item-work .single p{text-align: center;background: white;word-wrap: break-word;overflow: hidden;text-overflow: ellipsis;
display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;}
.item-work .work-view{background: white;position: absolute;top:-1px;left: 0px;width: 100%;display: none;margin: 0;padding: 0 1px}
.item-work .work-view i{background-image: url("../images/bg.png");width: 20px ;height: 15px;display: inline-block;margin-bottom: -3px;margin-right: 15px}
.item-work .work-view .location i{background-position:-20px -60px}
.item-work .work-view .salary i{background-position:0 -60px}
.item-work .work-view .salary,.location{font-size: 12px;height: 33px;background: #2a70b8;padding: 0px 20px;line-height: 33px;color:white;text-overflow:ellipsis;overflow: hidden;white-space: nowrap;margin:0 -2px;}
.item-work .work-view .location{margin-bottom: 2px;}
.work-img{height: 120px;text-align: center;background: white;margin:-3px -1px -3px -1px;height: 100%;border: 3px solid transparent}
.work-img img{width: auto;height: 70%;margin: 10% 0;position: relative;}
.item-work a:hover{overflow: visible;}
.item-work a:hover .work-img{border-color:#2a70b8;border-bottom-color: transparent;}
.item-work a:hover .work-view{display:block;}
.related-work .mobile a{overflow: visible;}
.related-work .mobile .details{height: 136px}
.related-work .mobile .work-img{margin:0;}
.related-work .mobile .work-view{display: block;top: 68px!important}
.related-work .mobile .next{height: 350px;line-height: 250px;}
.related-work .mobile .prev{height: 350px;line-height: 250px;}
footer{width: 100%;margin-top: 100px;border-top: 3px solid #2A70B8}
.footer-top{margin: 40px 0;color:#9B9B9B;border-bottom: 1px solid #E9E9E9;padding-bottom: 10px}
.footer-top .title{text-transform: uppercase;font-size: 14px;color:#5c5c5c;font-weight: bold;}
.footer-top p{margin-bottom: 20px;font-size: 13px}
.footer-top a{color:#959595;font-weight: bold;}
.footer-top a:hover{color:#427cbd;}
.footer-top .footer-col{margin-bottom: 20px}
.footer-top .contact{text-align: center;}
.footer-top .mxh a{width: 47px;height: 50px;background: url("../images/bg.png") no-repeat;display: inline-block;margin-right: -3px;}
.footer-top .mxh a:nth-child(1){background-position:0px -80px;}
.footer-top .mxh a:nth-child(2){background-position:-50px -80px;}
.footer-top .mxh a:nth-child(3){background-position:0px -132px}
.footer-top .app a{width: 170px;height: 52px;background: url("../images/bg.png") no-repeat;display: inline-block;}
.footer-top .app a:nth-child(1){background-position:0 -535px}
.footer-top .app a:nth-child(2){background-position:-177px -535px}
.footer-bot{font-size: 11px;color:#9B9B9B;margin-bottom: 50px}
.footer-bot p{margin-bottom: 0px;}
.item .content{padding: 0 10px;}
@media (min-width: 1200px) {
.container {
width: 1000px !important;
}
}
@media(max-width: 1000px){
.ads .col-xs-12{padding:0 !important;}
.contents-job .col-md-4{padding: 0;}
.contents-job .info-job{margin-top: 40px}
.wrapper .next{margin-right: 0;}
.wrapper .prev{margin-left: 0}
.footer-top{text-align: center;}
.footer-col{text-align: left;}
}
@media (max-width: 768px) {
.ads{margin-top: 80px}
.contents-job .col-md-4{padding: 0 15px;}
.ads .col-xs-12{padding:0 15px !important;}
header .logo{float: none;font-size: 18px}
header .link{position: absolute;bottom: -60px;width: 100%;}
}
@media (max-width: 480px) {
.bt>span{margin-top: 10px;float: none!important;width: 100%;clear:both;display:block;}
header .logo{padding: 0 15px}
header .logo a p{margin-left: 60px}
.info-job .bt span span{font-size: 16px;}
}
@media (max-width: 320px) {
.info-job .bt span span{font-size: 14px;}
} | public/css/fptHomeCss.css | *{margin:0;padding:0;}
body{background: white;font-family:'Noto Sans',Helvetica, Arial, sans-serif!important}
a:hover{text-decoration: none!important;}
i{background: url("../images/bg.png");}
.time-new-roman{font-family: "Time New Roman";font-size: 15px}
header{box-shadow: 0 2px 5px rgba(0,0,0,0.2);width: 100%;padding:14px 0;position: relative;}
header .logo{float: left;font-weight: bold;font-size: 20px;text-align: center;}
header .logo a{color:black;display: inline-block;position: relative;}
header .logo a img{height: 50px;margin-right: 15px;float: left;}
header .logo a p{padding:10px 0 0 0;margin-left: 70px;margin-bottom: 0;text-align: center;}
header .link{float: right;text-align: center!important;margin-top: 6px;}
a.bt-join{background: #2a70b8;padding: 8px 20px;color:white;font-weight: bold;display: inline-block;font-family: "Helvetica Neue",Helvetica,Arial,sans-serif}
a.bt-join:hover{color:white;background-color: #175CA2}
a.underline:hover{text-decoration: underline!important;}
i.muiten{background-position: -265px -210px!important;width: 12px!important;height: 15px!important;display: inline-block;margin-bottom: -2px!important;position: static!important;}
.ads{margin-top: 30px}
.ads .col-md-4{padding: 0;margin-top: 10px}
.ads .col-md-4:nth-child(1){padding-right: 30px;}
.ads .col-md-4:nth-child(2){padding:0 15px;}
.ads .col-md-4:nth-child(3){padding-left: 30px;}
.item-ads{background: #e4e0e0}
.item-ads img{border:1px solid #5C5C5C;width: 100%;height: auto;min-height: 200px}
.contents-job{margin-top: 80px;}
.contents-job .info-company .logo{width: 100%;text-align: center;line-height: 120px;border:1px solid #CDCDCD;text-align: center;}
.contents-job .col-md-4{padding-right: 30px;padding-left: 0;margin-bottom: 20px}
.contents-job .info-company .info{border:1px solid #CDCDCD;padding: 20px;background: #efefef;}
.contents-job .title{font-size: 24px;font-weight: bold;margin-bottom: 15px}
.contents-job .info-company .info .star{margin-bottom: 20px}
.contents-job .info-company .info .star img{padding: 6px;height: 25px;border-radius: 8px;background: #2a70b8;margin-right:-2px}
.contents-job .info-company .info p i{display: inline-block;width: 20px;height: 20px;position: absolute;left:-30px;top:-2px}
.contents-job .info-company .info p:nth-of-type(1){margin-bottom: 5px}
.contents-job .info-company .info p:nth-of-type(2) i{background-position: -145px -210px}
.contents-job .info-company .info p:nth-of-type(3) i{background-position: -247px -210px}
.contents-job .info-company .info p:nth-of-type(4) i{background-position: -95px -210px;width: 22px}
.contents-job .info-company .info p:nth-of-type(5) i{background-position: -225px -210px}
.contents-job .info-company .info p:nth-of-type(6)>i{background-position: -0px -210px}
.contents-job .info-company .info p:nth-of-type(7)>i{background-position: -194px -210px;width: 25px}
.contents-job .info-company .info p:nth-of-type(8) i{background-position: -168px -210px}
.contents-job .info-company .info p:nth-of-type(9) i{background-position: -124px -210px}
.contents-job .info-company .info p.time-new-roman{margin-left: 30px;position: relative;}
.contents-job .info-company .link{text-align: center;margin-top: 20px;}
.contents-job .info-company .link a{color:#2a70b8;}
.info-job p i{display: inline-block;width: 20px;height: 20px;position: absolute;left:-30px;top:-2px}
.info-job p.time-new-roman{margin-left: 30px;position: relative;}
.info-job p:nth-of-type(2)>i{background-position: -95px -210px;width: 22px}
.info-job p:nth-of-type(3)>i{background-position: -23px -210px}
.info-job p:nth-of-type(4)>i{background-position: -72px -210px}
.info-job p:nth-of-type(5)>i{background-position: 0px -210px;}
.info-job p:nth-of-type(6)>i{background-position: -50px -210px;}
.info-job .bt {margin-top: 20px;margin-bottom: 9px;border-bottom: 1px solid #BABABA;position: relative;}
.info-job .bt span span{float: right;font-size: 18px;font-weight:bold;padding-top: 8px;margin-right: 20px;}
.info-job .bt a.icon{float: right;overflow: hidden;width: 30px;height: 30px;background: #2a70b8;display: inline-block;border-radius: 50%;text-align: center;margin-top: 5px;margin-right:5px;}
.info-job .bt a.icon i{display: inline-block;}
.info-job .bt a:nth-child(3){background-color: #ed1e27}
.info-job .bt a:nth-child(5){background-color: #ed1e27}
.info-job .bt a.icon i.i5{background-position: 0 -185px;width: 10px;height: 20px;margin-top: 6px}
.info-job .bt a.icon i.i4{background-position: -15px -185px;width: 25px;height: 20px;margin-top: 6px}
.info-job .bt a.icon i.i3{background-position: -40px -185px;width: 20px;height: 20px;margin-top: 6px}
.info-job .bt a.icon i.i2{background-position: -60px -185px;width: 25px;height: 20px;margin-top: 6px}
.info-job .bt a.icon i.i1{background-position: -82px -185px;width: 25px;height: 20px;margin-top: 6px}
.contents-job .item{margin-top: 20px;border: 1px solid #e4e3e3;border-radius: 8px;height: 200px;box-shadow: 0 2px 2px rgba(0,0,0,0.1)}
.contents-job .item .title{background-color: #f5f8fa;padding:10px 20px;color:#9ea5aa;font-size: 14px;text-transform: uppercase;margin-top: 10px}
.related-work{margin-top: 30px;font-family: "Helvetica Neue",Helvetica,Arial,sans-serif}
.related-work p.title{font-weight: bold;color:#464646;font-size: 15px;margin-bottom: 20px}
.related-work p.title i{background: url("../images/bg.png") -37px -38px;width: 26px;height: 25px;float: left;margin-right: 10px;margin-top: -2px;}
.wrapper{position: relative;margin-top: 10px}
.wrapper .next img,.prev img{background: white;padding:8px 10px ;border:1px solid #c9c9c9;border-radius: 50%;height: 30px;width:30px;text-align: center;}
.wrapper .next{margin-right: -40px;height: 190px;width: 40px;line-height: 190px;text-align: center;position: absolute;right: 0;z-index: 1000}
.wrapper .prev{margin-left: -40px;height: 190px;width: 40px;line-height: 190px;text-align: center;position: absolute;left: 0;z-index: 1000;}
.wrapper .prev button{background-position: -60px -60px;}
.wrapper .next img:hover,.prev img:hover{background: #c9c9c9;}
.wrapper #contents{display: inline-block;}
.item-work{padding:0 5px;width: 200px;float: left;}
.item-work .border-item{border-top:3px solid #2a70b8;}
.item-work a{width: 100%;border:1px solid #dce7f3;margin:0;overflow: hidden;display: inline-block;border-top: none;color:black;}
.item-work .details{position: relative;background: white;border-top: 1px solid #c9c9c9;margin: 0;width: 100%;height: 68px}
.item-work .single{padding: 18px 10%}
.item-work .single p{font-weight: bold;margin: 0;font-size: 12px;overflow: hidden;}
.item-work .single p{text-align: center;background: white;word-wrap: break-word;overflow: hidden;text-overflow: ellipsis;
display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;}
.item-work .work-view{background: white;position: absolute;top:-1px;left: 0px;width: 100%;display: none;margin: 0;padding: 0 1px}
.item-work .work-view i{background-image: url("../images/bg.png");width: 20px ;height: 15px;display: inline-block;margin-bottom: -3px;margin-right: 15px}
.item-work .work-view .location i{background-position:-20px -60px}
.item-work .work-view .salary i{background-position:0 -60px}
.item-work .work-view .salary,.location{font-size: 12px;height: 33px;background: #2a70b8;padding: 0px 20px;line-height: 33px;color:white;text-overflow:ellipsis;overflow: hidden;white-space: nowrap;margin:0 -2px;}
.item-work .work-view .location{margin-bottom: 2px;}
.work-img{height: 120px;text-align: center;background: white;margin:-3px -1px -3px -1px;height: 100%;border: 3px solid transparent}
.work-img img{width: auto;height: 70%;margin: 10% 0;position: relative;}
.item-work a:hover{overflow: visible;}
.item-work a:hover .work-img{border-color:#2a70b8;border-bottom-color: transparent;}
.item-work a:hover .work-view{display:block;}
.related-work .mobile a{overflow: visible;}
.related-work .mobile .details{height: 136px}
.related-work .mobile .work-img{margin:0;}
.related-work .mobile .work-view{display: block;top: 68px!important}
.related-work .mobile .next{height: 350px;line-height: 250px;}
.related-work .mobile .prev{height: 350px;line-height: 250px;}
footer{width: 100%;margin-top: 100px;border-top: 3px solid #2A70B8}
.footer-top{margin: 40px 0;color:#9B9B9B;border-bottom: 1px solid #E9E9E9;padding-bottom: 10px}
.footer-top .title{text-transform: uppercase;font-size: 14px;color:#5c5c5c;font-weight: bold;}
.footer-top p{margin-bottom: 20px;font-size: 13px}
.footer-top a{color:#959595;font-weight: bold;}
.footer-top a:hover{color:#427cbd;}
.footer-top .footer-col{margin-bottom: 20px}
.footer-top .contact{text-align: center;}
.footer-top .mxh a{width: 47px;height: 50px;background: url("../images/bg.png") no-repeat;display: inline-block;margin-right: -3px;}
.footer-top .mxh a:nth-child(1){background-position:0px -80px;}
.footer-top .mxh a:nth-child(2){background-position:-50px -80px;}
.footer-top .mxh a:nth-child(3){background-position:0px -132px}
.footer-top .app a{width: 170px;height: 52px;background: url("../images/bg.png") no-repeat;display: inline-block;}
.footer-top .app a:nth-child(1){background-position:0 -535px}
.footer-top .app a:nth-child(2){background-position:-177px -535px}
.footer-bot{font-size: 11px;color:#9B9B9B;margin-bottom: 50px}
.footer-bot p{margin-bottom: 0px;}
.item .content{padding: 0 10px;}
@media (min-width: 1200px) {
.container {
width: 1000px !important;
}
}
@media(max-width: 1000px){
.ads .col-xs-12{padding:0 !important;}
.contents-job .col-md-4{padding: 0;}
.contents-job .info-job{margin-top: 40px}
.wrapper .next{margin-right: 0;}
.wrapper .prev{margin-left: 0}
.footer-top{text-align: center;}
.footer-col{text-align: left;}
}
@media (max-width: 768px) {
.ads{margin-top: 80px}
.contents-job .col-md-4{padding: 0 15px;}
.ads .col-xs-12{padding:0 15px !important;}
header .logo{float: none;font-size: 18px}
header .link{position: absolute;bottom: -60px;width: 100%;}
}
@media (max-width: 480px) {
.bt>span{margin-top: 10px;float: none!important;width: 100%;clear:both;display:block;}
header .logo{padding: 0 15px}
header .logo a p{margin-left: 60px}
.info-job .bt span span{font-size: 16px;}
}
@media (max-width: 320px) {
.info-job .bt span span{font-size: 14px;}
} | 0.235108 | 0.062274 |
html,body{
display:block;
width:100%;
height:100%;
}
.top{
width:100%;
height:auto;
}
.bg-img-1 {
width: 100%;
height: auto;
}
.info {
display: flex;
flex-direction: column;
align-items: center;
}
input{
border: none;
outline: none;
background-color: rgba(255,255,255,0);
}
#et_phone {
width: 90%;
height: 44px;
/*
margin: 10px 5% 10px 5%;
background: url(../images/1v4_et_phone.png) no-repeat;
border: none;
outline: none;
background-size: 100% 100%;
*/
padding-left: 20px;
}
.code {
width: 85%;
height: 44px;
border-radius: 44px;
border:1px #ccc solid;
/*position: relative;*/
display: flex;
/*flex-direction: column;*/
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
#et_code {
width: 90%;
height: 44px;
/*
background: url(../images/1v4_et_phone.png) no-repeat;
border: none;
outline: none;
background-size: 100% 100%;
*/
padding-left: 20px;
}
/* 获取验证码 */
#get_code {
width: 150px;
height: 44px;
border-radius: 44px;
border: 1px #ccc solid;
background-color: #fff;
outline: none;
/*
background: url(../images/1v4_btn_get_code.png) no-repeat;
border: none;
outline: none;
background-size: 100% 100%;
margin: 1px 0px 0px 55%;
position: relative;
z-index: 1; */
}
/* 免费领取 */
#get_course {
width: 90%;
height: 48px;
margin: 10px 0px 10px 0px;
background: url(../images/1v4_btn_get.png) no-repeat;
border: none;
outline: none;
background-size: 100% 100%;
}
.bg-img-2 {
width: 100%;
height: auto;
}
.container {
margin: 0 auto;
z-index: 1;
bottom: 0px;
background: url(../images/1v4_image_2_bottom.png) no-repeat;
border: none;
outline: none;
background-size: 100% 100%;
margin-top: -5px;
}
.content2{
width:100%;
height:auto;
}
.content2 img{
width:100%;
height:auto;
}
.nav-img {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.img-btn-1 {
width: 42%;
height: auto;
margin-left: 5%;
}
.img-btn-2 {
width: 42%;
height: auto;
margin-right: 5%;
}
.img-container {
width: 90%;
height: auto;
margin: 5px 5% 0px 5%;
} | css/1v4.css | html,body{
display:block;
width:100%;
height:100%;
}
.top{
width:100%;
height:auto;
}
.bg-img-1 {
width: 100%;
height: auto;
}
.info {
display: flex;
flex-direction: column;
align-items: center;
}
input{
border: none;
outline: none;
background-color: rgba(255,255,255,0);
}
#et_phone {
width: 90%;
height: 44px;
/*
margin: 10px 5% 10px 5%;
background: url(../images/1v4_et_phone.png) no-repeat;
border: none;
outline: none;
background-size: 100% 100%;
*/
padding-left: 20px;
}
.code {
width: 85%;
height: 44px;
border-radius: 44px;
border:1px #ccc solid;
/*position: relative;*/
display: flex;
/*flex-direction: column;*/
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
#et_code {
width: 90%;
height: 44px;
/*
background: url(../images/1v4_et_phone.png) no-repeat;
border: none;
outline: none;
background-size: 100% 100%;
*/
padding-left: 20px;
}
/* 获取验证码 */
#get_code {
width: 150px;
height: 44px;
border-radius: 44px;
border: 1px #ccc solid;
background-color: #fff;
outline: none;
/*
background: url(../images/1v4_btn_get_code.png) no-repeat;
border: none;
outline: none;
background-size: 100% 100%;
margin: 1px 0px 0px 55%;
position: relative;
z-index: 1; */
}
/* 免费领取 */
#get_course {
width: 90%;
height: 48px;
margin: 10px 0px 10px 0px;
background: url(../images/1v4_btn_get.png) no-repeat;
border: none;
outline: none;
background-size: 100% 100%;
}
.bg-img-2 {
width: 100%;
height: auto;
}
.container {
margin: 0 auto;
z-index: 1;
bottom: 0px;
background: url(../images/1v4_image_2_bottom.png) no-repeat;
border: none;
outline: none;
background-size: 100% 100%;
margin-top: -5px;
}
.content2{
width:100%;
height:auto;
}
.content2 img{
width:100%;
height:auto;
}
.nav-img {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.img-btn-1 {
width: 42%;
height: auto;
margin-left: 5%;
}
.img-btn-2 {
width: 42%;
height: auto;
margin-right: 5%;
}
.img-container {
width: 90%;
height: auto;
margin: 5px 5% 0px 5%;
} | 0.336658 | 0.059292 |
.centered{ text-align: center; }
.c-pad{ padding-bottom: 50px; }
strong{ font-weight: normal; }
a{ color: #000; text-decoration: none; }
a:hover{ color: #000; text-decoration: none; }
.erreur{ color: red; }
.nextTo p{ margin-left: 5px!important; }
.nextTo p, .nextTo img{ display: inline-block; vertical-align: middle; margin:0; padding:0; }
/**
** HEADER
**/
.mobspe{ display: inline-block; }
.ouiPouceDiv{ color: green; }
.nonPouceDiv{ color: red; }
.ouiPouce, .nonPouce{ font-size: 10px!important; display: inline-block!important; margin-right: 4px; }
.row{ margin-bottom: 10px; }
.logoClub{ }
.nopad{ padding-left: 0px; padding-right: 0px!important; }
.line-timer{ line-height: 63px!important; font-size: 11px; color: #666666; }
.logo{ font-size: 25px; }
.table-center th, .table-center td{ text-align: left; }
.table-center th{ padding-left: 19px!important; }
.vote{ position: relative; }
.vote p{ display: inline-block; }
.vote p strong{ font-weight: bold; cursor: pointer; }
.vote em{ font-style: normal; }
.table-center thead th{ background-color: #fff; color: #000; border:none!important; }
.table-center tbody td{ height: 40px; line-height: 40px; }
body .table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th{ vertical-align: middle!important; padding:4px!important; font-weight: normal; }
.table-center tr{ }
.centered-th{ text-align: center!important; }
.table-center tbody tr{ }
.leftY{ text-align: left; margin:0!important; }
.rightY{ text-align: right; margin:0!important; }
.table-center td, .table-center th{ }
.pas em{ display: inline-block; background: #4ea64e; font-style: normal; color: #fff; border-radius: 22px; padding: 5px; font-weight: bold; font-size: 12px; }
.passpe em{ display: inline-block; background: #00aded; box-shadow: inset 0 0 9px rgba(49,79,119,0.5); font-style: normal; color: #fff; border-radius: 22px; padding: 5px 10px 5px 10px; font-weight: bold; font-size: 15px; }
a{ cursor: pointer; }
.npad{ padding-right: 0!important; padding-left: 5px!important; text-align: center; }
.pads{ padding-left: 13px!important; }
.nopad{ padding-left: 0!important; }
.playerinfo div, .player p{ padding-left: 0!important; color:#000; }
.gras{ font-weight: bold; }
body h2{ color:#000; }
body .mon{ text-align: left!important; padding-left: 0px!important; }
.playerinfo .list-group{ margin-bottom: 10px; }
body .activ{ color: #337ab7; }
body .btn-infospe{ font-size: 11px; cursor: pointer; padding: 0px 3px 0px 3px; margin-top: -5px; margin-left: 18px; background: rgba(0, 184, 255, 0.51); font-weight: bold; border: none; }
/**
** MAIN
**/
.lien{ cursor: pointer; }
.lien:hover{ color: #337ab7; }
.lp{ text-align: left; }
.rp{ text-align: right; }
.rp, .lp{ padding-right: 4px!important; padding-left: 4px!important; }
body .spe-th{ padding-left: 8px!important; }
#result{ z-index: 1000; position: absolute; right: 15px; left: 15px; border-radius: 0px!important; top: 44px; }
#result .list-group-item:first-child{ border-radius: 0px; border-top: 0px; }
.hide-montant{ display: none; }
.title{ font-size: 14px; border-bottom: 1px dotted #ddd; margin: 0; }
.title strong{ display: inline-block; text-transform: none; background: #fff; color: #000; padding: 10px 5px 8px 0px; font-weight: bold; }
body .table>tbody>tr>.none{ display: none; padding-top:8px!important; color: rgba(0,74,171,0.54); font-size: 12px; }
body .table>tbody>tr>.none_show{ display: block; padding-top:13px!important; color: rgba(0,74,171,0.54); font-size: 12px; }
.title .pays{ display: inline-block; vertical-align: bottom; margin-left: 5px; margin-right: 5px; margin-bottom: 8px; }
.playername p{ display: inline-block; vertical-align:middle; margin-right: 15px; }
.playername{ margin-top: 0!important; margin-bottom: 0px; border-bottom: 1px dotted #ddd; }
.display{ display: inline-block; vertical-align: top; margin-right: 5px; margin-bottom: 0; }
.chevron{ font-size: 11px!important; }
.voir{ height: 40px; background: #f9f9f9; line-height: 40px; font-size: 11px; color:#666; border-top: 1px solid #ddd; }
.table-center{ margin-bottom: 0px!important; }
.voir:hover{ background: rgba(0,65,183,0.12); cursor: pointer; }
.nomore{ cursor: default!important; display: none; }
.green{ color: green; }
.red{ color: red; }
.lil{ font-size: 12px; cursor: pointer; display: inline-block; vertical-align: bottom; margin-top: 5px; margin-left: 10px; text-transform: none; background: #f9f9f9; border-radius: 14px; padding: 3px 10px 3px 10px; color:#917474; font-weight: normal; }
#linkSearch{ width: 100%; display: inline-block; height: 100%; padding: 10px 15px; }
#imgSearch{ display: inline-block; vertical-align: bottom; margin-right: 10px; }
.flag{ margin-bottom: 4px; }
.logo_club{ margin-bottom: 2px; }
#nameSearch{ display: inline-block; vertical-align: bottom; margin-top: 5px; }
.nopadd{ padding: 0px!important; }
body .valeur{ margin-left: -53px; background: #00aded; padding: 2px 10px 2px 10px!important; box-shadow: inset 0 0 50px rgba(49,79,119,0.5); }
body .valeur:hover{ background: #0cbafb; }
.valeur em{ font-weight: bold; font-style: normal; color: #fff; font-size: 20px; }
.valeur p{ margin-bottom: 0px; margin-top: -10px; }
.valeur p strong{ font-weight: normal; font-size: 10px; color: #fff; font-style: italic; }
body .paddiv{ padding-left: 15px; padding-right: 15px; }
.bourselink{ padding-top: 11px; }
.bourselink strong{ font-weight: normal; }
body .inputbourse{ margin:0px 5px 0px 5px; vertical-align: bottom; border-radius: 0px; padding: 1px; width: 39px; border: 1px solid #e8e8e8; display: inline-block; height: 25px; transition: 0s border; }
body .inputbourse:focus{ border: 1px solid #65afe9; box-shadow: 0 0 0; transition: 0s border; }
body .chespe{ font-size: 15px; cursor: pointer; }
body .chespegreen{ color: green; }
body .chespered{ color: red; }
.million{ font-size: 12px; }
.onlymob{ display: none; }
/**
** FOOTER
**/
footer{ background: black; color: #fff; text-align: left; font-size: 15px!important; padding: 15px 0 20px 0; font-weight: normal; }
footer ul{ padding: 0; margin: 0; }
.anniv ul li{ display: inline-block; vertical-align: top; margin-right: 10px; }
.anniv ul li a{ color:#fff; }
.anniv p{ text-transform: none; font-weight: bold; margin: 0; }
.anniv ul li p{ font-weight: normal; display: inline-block; vertical-align: middle; text-transform: none; }
.anniv ul li .pad{ padding-top: 4px; }
.copyright{ font-weight: bold; margin-top: 10px; }
.nav-foot p{ margin-bottom: 4px; }
.nav-foot ul li{ margin-right:0px; }
/**
** ADMIN
**/
.action{ text-align: left; }
.glyphicon{ font-size: 18px; }
.glyphicon-special{ font-size: 15px!important; top:4px!important; }
.glyphicon-plus{ color: green; }
.glyphicon-remove{ color: red; }
.glyphicon-edit{ color: blue; }
.toTheRight{ float: right;}
.adminsearch .stylish-input-group{
margin-top: 10px;
}
.adminsearch .stylish-input-group input{ background: #fff; color: #000; box-shadow: none; transition: 0s border; height: 30px; border: 1px solid #e8e8e8;
line-height: 30px; border-right: none; }
.adminsearch .stylish-input-group .input-group-addon{
background: #fff !important;
border-color: #e8e8e8;
border-radius: 0px;
color:#cacaca;
padding-left: 10px;
padding-right: 10px;
padding-top: 0;
padding-bottom: 0;
}
.adminsearch .stylish-input-group .form-control{
border-top-left-radius: 0px;
border-bottom-left-radius: 0px;
}
.adminsearch .stylish-input-group button{
border:0;
background:transparent;
}
.adminsearch #result2{ z-index: 1000; position: absolute; right: 15px; left: 15px; border-radius: 0px!important; top: 40px; }
.adminsearch #result2 .list-group-item:first-child{ border-radius: 0px; border-top: 0px; }
.adminsearch .linkAdmin{ color: #000!important; text-decoration: none!important; }
.glyspe{ font-size: 12px; margin-right: 5px; }
.pubbourse{ margin-top: 10px; background: #00aded; box-shadow: inset 0 0 25px rgba(49,79,119,0.5); text-align: center; height: 40px; line-height: 40px; }
.pubbourse a{ color: #fff; display: block; width: 100%; }
.pubbourse a:hover{ color: #fff; }
.pubbourse:hover{ background: #0cbafb; }
#chart{ margin-right: 5px; }
.rankdis{ display: inline-block; }
body .premier-league:nth-child(1) { display: block!important; background: red; }
.adminUp, .adminDown{ font-size: 12px; text-align: right; }
.adminUpDown{ float: right; }
.list-league{ display: none; }
.ajaxIn{ cursor: pointer; }
.logoflag{ width: 19px; height: 12.5px; }
.logoflagbig{ width: 22px; height: 15px; }
.logoclub{ width: 14px; height:18px; }
.nextTo-logo{ display: inline-block; vertical-align: bottom; margin-left: 3px; }
.table-left{ float: left; color: #666; }
.table-right{ float:right; } | public/css/public/app.css | .centered{ text-align: center; }
.c-pad{ padding-bottom: 50px; }
strong{ font-weight: normal; }
a{ color: #000; text-decoration: none; }
a:hover{ color: #000; text-decoration: none; }
.erreur{ color: red; }
.nextTo p{ margin-left: 5px!important; }
.nextTo p, .nextTo img{ display: inline-block; vertical-align: middle; margin:0; padding:0; }
/**
** HEADER
**/
.mobspe{ display: inline-block; }
.ouiPouceDiv{ color: green; }
.nonPouceDiv{ color: red; }
.ouiPouce, .nonPouce{ font-size: 10px!important; display: inline-block!important; margin-right: 4px; }
.row{ margin-bottom: 10px; }
.logoClub{ }
.nopad{ padding-left: 0px; padding-right: 0px!important; }
.line-timer{ line-height: 63px!important; font-size: 11px; color: #666666; }
.logo{ font-size: 25px; }
.table-center th, .table-center td{ text-align: left; }
.table-center th{ padding-left: 19px!important; }
.vote{ position: relative; }
.vote p{ display: inline-block; }
.vote p strong{ font-weight: bold; cursor: pointer; }
.vote em{ font-style: normal; }
.table-center thead th{ background-color: #fff; color: #000; border:none!important; }
.table-center tbody td{ height: 40px; line-height: 40px; }
body .table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th{ vertical-align: middle!important; padding:4px!important; font-weight: normal; }
.table-center tr{ }
.centered-th{ text-align: center!important; }
.table-center tbody tr{ }
.leftY{ text-align: left; margin:0!important; }
.rightY{ text-align: right; margin:0!important; }
.table-center td, .table-center th{ }
.pas em{ display: inline-block; background: #4ea64e; font-style: normal; color: #fff; border-radius: 22px; padding: 5px; font-weight: bold; font-size: 12px; }
.passpe em{ display: inline-block; background: #00aded; box-shadow: inset 0 0 9px rgba(49,79,119,0.5); font-style: normal; color: #fff; border-radius: 22px; padding: 5px 10px 5px 10px; font-weight: bold; font-size: 15px; }
a{ cursor: pointer; }
.npad{ padding-right: 0!important; padding-left: 5px!important; text-align: center; }
.pads{ padding-left: 13px!important; }
.nopad{ padding-left: 0!important; }
.playerinfo div, .player p{ padding-left: 0!important; color:#000; }
.gras{ font-weight: bold; }
body h2{ color:#000; }
body .mon{ text-align: left!important; padding-left: 0px!important; }
.playerinfo .list-group{ margin-bottom: 10px; }
body .activ{ color: #337ab7; }
body .btn-infospe{ font-size: 11px; cursor: pointer; padding: 0px 3px 0px 3px; margin-top: -5px; margin-left: 18px; background: rgba(0, 184, 255, 0.51); font-weight: bold; border: none; }
/**
** MAIN
**/
.lien{ cursor: pointer; }
.lien:hover{ color: #337ab7; }
.lp{ text-align: left; }
.rp{ text-align: right; }
.rp, .lp{ padding-right: 4px!important; padding-left: 4px!important; }
body .spe-th{ padding-left: 8px!important; }
#result{ z-index: 1000; position: absolute; right: 15px; left: 15px; border-radius: 0px!important; top: 44px; }
#result .list-group-item:first-child{ border-radius: 0px; border-top: 0px; }
.hide-montant{ display: none; }
.title{ font-size: 14px; border-bottom: 1px dotted #ddd; margin: 0; }
.title strong{ display: inline-block; text-transform: none; background: #fff; color: #000; padding: 10px 5px 8px 0px; font-weight: bold; }
body .table>tbody>tr>.none{ display: none; padding-top:8px!important; color: rgba(0,74,171,0.54); font-size: 12px; }
body .table>tbody>tr>.none_show{ display: block; padding-top:13px!important; color: rgba(0,74,171,0.54); font-size: 12px; }
.title .pays{ display: inline-block; vertical-align: bottom; margin-left: 5px; margin-right: 5px; margin-bottom: 8px; }
.playername p{ display: inline-block; vertical-align:middle; margin-right: 15px; }
.playername{ margin-top: 0!important; margin-bottom: 0px; border-bottom: 1px dotted #ddd; }
.display{ display: inline-block; vertical-align: top; margin-right: 5px; margin-bottom: 0; }
.chevron{ font-size: 11px!important; }
.voir{ height: 40px; background: #f9f9f9; line-height: 40px; font-size: 11px; color:#666; border-top: 1px solid #ddd; }
.table-center{ margin-bottom: 0px!important; }
.voir:hover{ background: rgba(0,65,183,0.12); cursor: pointer; }
.nomore{ cursor: default!important; display: none; }
.green{ color: green; }
.red{ color: red; }
.lil{ font-size: 12px; cursor: pointer; display: inline-block; vertical-align: bottom; margin-top: 5px; margin-left: 10px; text-transform: none; background: #f9f9f9; border-radius: 14px; padding: 3px 10px 3px 10px; color:#917474; font-weight: normal; }
#linkSearch{ width: 100%; display: inline-block; height: 100%; padding: 10px 15px; }
#imgSearch{ display: inline-block; vertical-align: bottom; margin-right: 10px; }
.flag{ margin-bottom: 4px; }
.logo_club{ margin-bottom: 2px; }
#nameSearch{ display: inline-block; vertical-align: bottom; margin-top: 5px; }
.nopadd{ padding: 0px!important; }
body .valeur{ margin-left: -53px; background: #00aded; padding: 2px 10px 2px 10px!important; box-shadow: inset 0 0 50px rgba(49,79,119,0.5); }
body .valeur:hover{ background: #0cbafb; }
.valeur em{ font-weight: bold; font-style: normal; color: #fff; font-size: 20px; }
.valeur p{ margin-bottom: 0px; margin-top: -10px; }
.valeur p strong{ font-weight: normal; font-size: 10px; color: #fff; font-style: italic; }
body .paddiv{ padding-left: 15px; padding-right: 15px; }
.bourselink{ padding-top: 11px; }
.bourselink strong{ font-weight: normal; }
body .inputbourse{ margin:0px 5px 0px 5px; vertical-align: bottom; border-radius: 0px; padding: 1px; width: 39px; border: 1px solid #e8e8e8; display: inline-block; height: 25px; transition: 0s border; }
body .inputbourse:focus{ border: 1px solid #65afe9; box-shadow: 0 0 0; transition: 0s border; }
body .chespe{ font-size: 15px; cursor: pointer; }
body .chespegreen{ color: green; }
body .chespered{ color: red; }
.million{ font-size: 12px; }
.onlymob{ display: none; }
/**
** FOOTER
**/
footer{ background: black; color: #fff; text-align: left; font-size: 15px!important; padding: 15px 0 20px 0; font-weight: normal; }
footer ul{ padding: 0; margin: 0; }
.anniv ul li{ display: inline-block; vertical-align: top; margin-right: 10px; }
.anniv ul li a{ color:#fff; }
.anniv p{ text-transform: none; font-weight: bold; margin: 0; }
.anniv ul li p{ font-weight: normal; display: inline-block; vertical-align: middle; text-transform: none; }
.anniv ul li .pad{ padding-top: 4px; }
.copyright{ font-weight: bold; margin-top: 10px; }
.nav-foot p{ margin-bottom: 4px; }
.nav-foot ul li{ margin-right:0px; }
/**
** ADMIN
**/
.action{ text-align: left; }
.glyphicon{ font-size: 18px; }
.glyphicon-special{ font-size: 15px!important; top:4px!important; }
.glyphicon-plus{ color: green; }
.glyphicon-remove{ color: red; }
.glyphicon-edit{ color: blue; }
.toTheRight{ float: right;}
.adminsearch .stylish-input-group{
margin-top: 10px;
}
.adminsearch .stylish-input-group input{ background: #fff; color: #000; box-shadow: none; transition: 0s border; height: 30px; border: 1px solid #e8e8e8;
line-height: 30px; border-right: none; }
.adminsearch .stylish-input-group .input-group-addon{
background: #fff !important;
border-color: #e8e8e8;
border-radius: 0px;
color:#cacaca;
padding-left: 10px;
padding-right: 10px;
padding-top: 0;
padding-bottom: 0;
}
.adminsearch .stylish-input-group .form-control{
border-top-left-radius: 0px;
border-bottom-left-radius: 0px;
}
.adminsearch .stylish-input-group button{
border:0;
background:transparent;
}
.adminsearch #result2{ z-index: 1000; position: absolute; right: 15px; left: 15px; border-radius: 0px!important; top: 40px; }
.adminsearch #result2 .list-group-item:first-child{ border-radius: 0px; border-top: 0px; }
.adminsearch .linkAdmin{ color: #000!important; text-decoration: none!important; }
.glyspe{ font-size: 12px; margin-right: 5px; }
.pubbourse{ margin-top: 10px; background: #00aded; box-shadow: inset 0 0 25px rgba(49,79,119,0.5); text-align: center; height: 40px; line-height: 40px; }
.pubbourse a{ color: #fff; display: block; width: 100%; }
.pubbourse a:hover{ color: #fff; }
.pubbourse:hover{ background: #0cbafb; }
#chart{ margin-right: 5px; }
.rankdis{ display: inline-block; }
body .premier-league:nth-child(1) { display: block!important; background: red; }
.adminUp, .adminDown{ font-size: 12px; text-align: right; }
.adminUpDown{ float: right; }
.list-league{ display: none; }
.ajaxIn{ cursor: pointer; }
.logoflag{ width: 19px; height: 12.5px; }
.logoflagbig{ width: 22px; height: 15px; }
.logoclub{ width: 14px; height:18px; }
.nextTo-logo{ display: inline-block; vertical-align: bottom; margin-left: 3px; }
.table-left{ float: left; color: #666; }
.table-right{ float:right; } | 0.546738 | 0.141015 |
.BestSeller {
display: flex;
flex-wrap: wrap;
margin-bottom: 20px;
}
.Product {
width: calc(25%);
padding: 15px 15px 20px 15px;
text-align: center;
height: calc(25vw);
}
.Product:hover {
background-clip: border-box;
box-shadow: 0 0 3px 0 #dee2e6;
border-radius: 6px;
}
.product-img {
height: calc(25vw - 100px);
position: relative;
transition: transform .3s;
}
.product-img:hover {
cursor: pointer;
transform: scale(1.15);
}
.product-tag {
position: absolute;
z-index: 2;
font-size: 10px;
color: #fff;
font-family: sans-serif;
font-weight: bold;
top: 5px;
left: 0;
}
.product-tag-item {
line-height: 20px;
width: 40px;
height: auto;
margin: 10px 0;
border-radius: 5px;
text-align: center;
}
.sale {
background: red;
}
.hot {
background: #fc5050;
}
.new {
background: #fc9953;
}
.product-img-bg {
height: 100%;
width: 100%;
}
.product-img-bg img {
height: 100%;
transition: 1s;
width: 100%;
}
.product-img-bg .img-default {
position: absolute;
top: 0;
left: 0;
}
.hide {
visibility: hidden;
opacity: 0;
}
.product-title {
margin-top: 20px;
font-size: 14px;
/* Add ... if text is full */
max-width: 100%;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
}
.product-price {
margin-top: 10px;
font-size: 12px;
font-weight: bold;
color: red;
}
.product-overlay {
position: absolute;
width: 100%;
height: 50%;
bottom: 0;
overflow: hidden;
display: flex;
align-items: flex-end;
justify-content: space-around;
}
.product-icon-box {
width: 20px;
height: 20px;
border-radius: 50%;
}
.icon-cart {
position: relative;
transition: .5s;
bottom: -60px;
}
.icon-view {
transition: .5s;
position: relative;
bottom: -60px;
}
.Product:hover .icon-cart {
transform: translateY(-55px);
}
.Product:hover .icon-view {
transform: translateY(-55px);
}
.flex-center {
display: flex;
justify-content: center;
align-items: center;
}
.flex-right{
display: flex;
justify-content: center;
align-items: revert;
}
.btn-product {
height: 40px;
width: 40px;
margin: 5px;
background-color: #232323 !important;
color: #fff !important;
cursor: pointer;
font-size: 20px;
border-radius: 7px;
} | frontend/src/components/Client/Product/Product.css | .BestSeller {
display: flex;
flex-wrap: wrap;
margin-bottom: 20px;
}
.Product {
width: calc(25%);
padding: 15px 15px 20px 15px;
text-align: center;
height: calc(25vw);
}
.Product:hover {
background-clip: border-box;
box-shadow: 0 0 3px 0 #dee2e6;
border-radius: 6px;
}
.product-img {
height: calc(25vw - 100px);
position: relative;
transition: transform .3s;
}
.product-img:hover {
cursor: pointer;
transform: scale(1.15);
}
.product-tag {
position: absolute;
z-index: 2;
font-size: 10px;
color: #fff;
font-family: sans-serif;
font-weight: bold;
top: 5px;
left: 0;
}
.product-tag-item {
line-height: 20px;
width: 40px;
height: auto;
margin: 10px 0;
border-radius: 5px;
text-align: center;
}
.sale {
background: red;
}
.hot {
background: #fc5050;
}
.new {
background: #fc9953;
}
.product-img-bg {
height: 100%;
width: 100%;
}
.product-img-bg img {
height: 100%;
transition: 1s;
width: 100%;
}
.product-img-bg .img-default {
position: absolute;
top: 0;
left: 0;
}
.hide {
visibility: hidden;
opacity: 0;
}
.product-title {
margin-top: 20px;
font-size: 14px;
/* Add ... if text is full */
max-width: 100%;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
}
.product-price {
margin-top: 10px;
font-size: 12px;
font-weight: bold;
color: red;
}
.product-overlay {
position: absolute;
width: 100%;
height: 50%;
bottom: 0;
overflow: hidden;
display: flex;
align-items: flex-end;
justify-content: space-around;
}
.product-icon-box {
width: 20px;
height: 20px;
border-radius: 50%;
}
.icon-cart {
position: relative;
transition: .5s;
bottom: -60px;
}
.icon-view {
transition: .5s;
position: relative;
bottom: -60px;
}
.Product:hover .icon-cart {
transform: translateY(-55px);
}
.Product:hover .icon-view {
transform: translateY(-55px);
}
.flex-center {
display: flex;
justify-content: center;
align-items: center;
}
.flex-right{
display: flex;
justify-content: center;
align-items: revert;
}
.btn-product {
height: 40px;
width: 40px;
margin: 5px;
background-color: #232323 !important;
color: #fff !important;
cursor: pointer;
font-size: 20px;
border-radius: 7px;
} | 0.555194 | 0.117851 |
@font-face {
font-family: 'hurtigruten';
src: url('../fonts/hurtigruten.eot?39553187');
src: url('../fonts/hurtigruten.eot?39553187#iefix') format('embedded-opentype'),
url('../fonts/hurtigruten.woff2?39553187') format('woff2'),
url('../fonts/hurtigruten.woff?39553187') format('woff'),
url('../font/hurtigruten.ttf?39553187') format('truetype'),
url('../fonts/hurtigruten.svg?39553187#hurtigruten') format('svg');
font-weight: normal;
font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: 'hurtigruten';
src: url('../fonts/hurtigruten.svg?39553187#hurtigruten') format('svg');
}
}
*/
[class^="icon-"]:before, [class*=" icon-"]:before {
font-family: "hurtigruten";
font-style: normal;
font-weight: normal;
speak: none;
display: inline-block;
text-decoration: inherit;
font-variant: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-angle-right:before { content: '\e800'; } /* '' */
.icon-angle-left:before { content: '\e801'; } /* '' */
.icon-facebook:before { content: '\e802'; } /* '' */
.icon-gplus:before { content: '\e803'; } /* '' */
.icon-instagram:before { content: '\e804'; } /* '' */
.icon-linkedin:before { content: '\e805'; } /* '' */
.icon-pinterest:before { content: '\e806'; } /* '' */
.icon-pinterest-circled:before { content: '\e807'; } /* '' */
.icon-twitter:before { content: '\e808'; } /* '' */
.icon-youtube:before { content: '\e809'; } /* '' */
.icon-file-pdf:before { content: '\e80a'; } /* '' */
.icon-arrows-cw-outline:before { content: '\e80b'; } /* '' */
.icon-off:before { content: '\e80c'; } /* '' */
.icon-mail:before { content: '\e80d'; } /* '' */
.icon-qrcode:before { content: '\e80e'; } /* '' */
.icon-credit-card:before { content: '\e80f'; } /* '' */
.icon-plus:before { content: '\e810'; } /* '' */
.icon-minus:before { content: '\e811'; } /* '' */
.icon-angle-up:before { content: '\e812'; } /* '' */
.icon-angle-down:before { content: '\e813'; } /* '' */
.icon-quote:before { content: '\e814'; } /* '' */
.icon-pencil:before { content: '\e815'; } /* '' */
.icon-play-circled:before { content: '\e816'; } /* '' */
.icon-paper-plane-empty:before { content: '\e817'; } /* '' */
.icon-dot-circled:before { content: '\e818'; } /* '' */
.icon-print:before { content: '\e819'; } /* '' */
.icon-globe:before { content: '\e81a'; } /* '' */
.icon-lock:before { content: '\e81b'; } /* '' */
.icon-pin-outline:before { content: '\e81c'; } /* '' */
.icon-ok-circled:before { content: '\e81d'; } /* '' */
.icon-location-outline:before { content: '\e81e'; } /* '' */
.icon-plane-outline:before { content: '\e81f'; } /* '' */
.icon-link:before { content: '\e820'; } /* '' */
.icon-user-1:before { content: '\e821'; } /* '' */
.icon-phone:before { content: '\e822'; } /* '' */
.icon-looped-square-outline:before { content: '\e823'; } /* '' */
.icon-help-1:before { content: '\e824'; } /* '' */
.icon-home:before { content: '\e825'; } /* '' */
.icon-cancel-1:before { content: '\e826'; } /* '' */
.icon-cloud-sun-inv:before { content: '\e827'; } /* '' */
.icon-cancel-outline:before { content: '\e828'; } /* '' */
.icon-ok:before { content: '\e829'; } /* '' */
.icon-ok-1:before { content: '\e82a'; } /* '' */
.icon-hourglass:before { content: '\e82b'; } /* '' */
.icon-bell:before { content: '\e82c'; } /* '' */
.icon-anchor:before { content: '\e82d'; } /* '' */
.icon-login:before { content: '\e82e'; } /* '' */
.icon-logout:before { content: '\e82f'; } /* '' */
.icon-certificate:before { content: '\e830'; } /* '' */
.icon-looped-square-interest:before { content: '\e831'; } /* '' */
.icon-arrow-left:before { content: '\e832'; } /* '' */
.icon-arrow-down-2:before { content: '\e833'; } /* '' */
.icon-box-arrow-left:before { content: '\e834'; } /* '' */
.icon-bag:before { content: '\e835'; } /* '' */
.icon-arrow-right:before { content: '\e836'; } /* '' */
.icon-camera:before { content: '\e837'; } /* '' */
.icon-chatt:before { content: '\e838'; } /* '' */
.icon-circel-check:before { content: '\e839'; } /* '' */
.icon-compass:before { content: '\e83a'; } /* '' */
.icon-navigation:before { content: '\e83b'; } /* '' */
.icon-language:before { content: '\e83c'; } /* '' */
.icon-ship-1:before { content: '\e83d'; } /* '' */
.icon-phone-1:before { content: '\e83e'; } /* '' */
.icon-user:before { content: '\e83f'; } /* '' */
.icon-call:before { content: '\e840'; } /* '' */
.icon-spoon:before { content: '\e841'; } /* '' */
.icon-down-arrow:before { content: '\e842'; } /* '' */
.icon-search:before { content: '\e843'; } /* '' */
.icon-map:before { content: '\e844'; } /* '' */
.icon-compass-3:before { content: '\e846'; } /* '' */
.icon-pinterest-squared:before { content: '\f0d3'; } /* '' */
.icon-chat-empty:before { content: '\f0e6'; } /* '' */
.icon-help:before { content: '\f128'; } /* '' */
.icon-compass-1:before { content: '\f14e'; } /* '' */
.icon-dollar:before { content: '\f155'; } /* '' */
.icon-tumblr:before { content: '\f173'; } /* '' */
.icon-skype:before { content: '\f17e'; } /* '' */
.icon-cab:before { content: '\f1b9'; } /* '' */
.icon-share:before { content: '\f1e0'; } /* '' */
.icon-ship:before { content: '\f21a'; } /* '' */
.icon-train:before { content: '\f238'; } /* '' */
.icon-creative-commons:before { content: '\f25e'; } /* '' */ | public/css/frontend/icon-font.css | @font-face {
font-family: 'hurtigruten';
src: url('../fonts/hurtigruten.eot?39553187');
src: url('../fonts/hurtigruten.eot?39553187#iefix') format('embedded-opentype'),
url('../fonts/hurtigruten.woff2?39553187') format('woff2'),
url('../fonts/hurtigruten.woff?39553187') format('woff'),
url('../font/hurtigruten.ttf?39553187') format('truetype'),
url('../fonts/hurtigruten.svg?39553187#hurtigruten') format('svg');
font-weight: normal;
font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: 'hurtigruten';
src: url('../fonts/hurtigruten.svg?39553187#hurtigruten') format('svg');
}
}
*/
[class^="icon-"]:before, [class*=" icon-"]:before {
font-family: "hurtigruten";
font-style: normal;
font-weight: normal;
speak: none;
display: inline-block;
text-decoration: inherit;
font-variant: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-angle-right:before { content: '\e800'; } /* '' */
.icon-angle-left:before { content: '\e801'; } /* '' */
.icon-facebook:before { content: '\e802'; } /* '' */
.icon-gplus:before { content: '\e803'; } /* '' */
.icon-instagram:before { content: '\e804'; } /* '' */
.icon-linkedin:before { content: '\e805'; } /* '' */
.icon-pinterest:before { content: '\e806'; } /* '' */
.icon-pinterest-circled:before { content: '\e807'; } /* '' */
.icon-twitter:before { content: '\e808'; } /* '' */
.icon-youtube:before { content: '\e809'; } /* '' */
.icon-file-pdf:before { content: '\e80a'; } /* '' */
.icon-arrows-cw-outline:before { content: '\e80b'; } /* '' */
.icon-off:before { content: '\e80c'; } /* '' */
.icon-mail:before { content: '\e80d'; } /* '' */
.icon-qrcode:before { content: '\e80e'; } /* '' */
.icon-credit-card:before { content: '\e80f'; } /* '' */
.icon-plus:before { content: '\e810'; } /* '' */
.icon-minus:before { content: '\e811'; } /* '' */
.icon-angle-up:before { content: '\e812'; } /* '' */
.icon-angle-down:before { content: '\e813'; } /* '' */
.icon-quote:before { content: '\e814'; } /* '' */
.icon-pencil:before { content: '\e815'; } /* '' */
.icon-play-circled:before { content: '\e816'; } /* '' */
.icon-paper-plane-empty:before { content: '\e817'; } /* '' */
.icon-dot-circled:before { content: '\e818'; } /* '' */
.icon-print:before { content: '\e819'; } /* '' */
.icon-globe:before { content: '\e81a'; } /* '' */
.icon-lock:before { content: '\e81b'; } /* '' */
.icon-pin-outline:before { content: '\e81c'; } /* '' */
.icon-ok-circled:before { content: '\e81d'; } /* '' */
.icon-location-outline:before { content: '\e81e'; } /* '' */
.icon-plane-outline:before { content: '\e81f'; } /* '' */
.icon-link:before { content: '\e820'; } /* '' */
.icon-user-1:before { content: '\e821'; } /* '' */
.icon-phone:before { content: '\e822'; } /* '' */
.icon-looped-square-outline:before { content: '\e823'; } /* '' */
.icon-help-1:before { content: '\e824'; } /* '' */
.icon-home:before { content: '\e825'; } /* '' */
.icon-cancel-1:before { content: '\e826'; } /* '' */
.icon-cloud-sun-inv:before { content: '\e827'; } /* '' */
.icon-cancel-outline:before { content: '\e828'; } /* '' */
.icon-ok:before { content: '\e829'; } /* '' */
.icon-ok-1:before { content: '\e82a'; } /* '' */
.icon-hourglass:before { content: '\e82b'; } /* '' */
.icon-bell:before { content: '\e82c'; } /* '' */
.icon-anchor:before { content: '\e82d'; } /* '' */
.icon-login:before { content: '\e82e'; } /* '' */
.icon-logout:before { content: '\e82f'; } /* '' */
.icon-certificate:before { content: '\e830'; } /* '' */
.icon-looped-square-interest:before { content: '\e831'; } /* '' */
.icon-arrow-left:before { content: '\e832'; } /* '' */
.icon-arrow-down-2:before { content: '\e833'; } /* '' */
.icon-box-arrow-left:before { content: '\e834'; } /* '' */
.icon-bag:before { content: '\e835'; } /* '' */
.icon-arrow-right:before { content: '\e836'; } /* '' */
.icon-camera:before { content: '\e837'; } /* '' */
.icon-chatt:before { content: '\e838'; } /* '' */
.icon-circel-check:before { content: '\e839'; } /* '' */
.icon-compass:before { content: '\e83a'; } /* '' */
.icon-navigation:before { content: '\e83b'; } /* '' */
.icon-language:before { content: '\e83c'; } /* '' */
.icon-ship-1:before { content: '\e83d'; } /* '' */
.icon-phone-1:before { content: '\e83e'; } /* '' */
.icon-user:before { content: '\e83f'; } /* '' */
.icon-call:before { content: '\e840'; } /* '' */
.icon-spoon:before { content: '\e841'; } /* '' */
.icon-down-arrow:before { content: '\e842'; } /* '' */
.icon-search:before { content: '\e843'; } /* '' */
.icon-map:before { content: '\e844'; } /* '' */
.icon-compass-3:before { content: '\e846'; } /* '' */
.icon-pinterest-squared:before { content: '\f0d3'; } /* '' */
.icon-chat-empty:before { content: '\f0e6'; } /* '' */
.icon-help:before { content: '\f128'; } /* '' */
.icon-compass-1:before { content: '\f14e'; } /* '' */
.icon-dollar:before { content: '\f155'; } /* '' */
.icon-tumblr:before { content: '\f173'; } /* '' */
.icon-skype:before { content: '\f17e'; } /* '' */
.icon-cab:before { content: '\f1b9'; } /* '' */
.icon-share:before { content: '\f1e0'; } /* '' */
.icon-ship:before { content: '\f21a'; } /* '' */
.icon-train:before { content: '\f238'; } /* '' */
.icon-creative-commons:before { content: '\f25e'; } /* '' */ | 0.229794 | 0.063077 |
body {
font: 13px/20px Arial, Helvetica, 'Nimbus Sans L', sans-serif;
text-align: left;
padding: 0;
margin: 20px 10px;
text-rendering: optimizeLegibility;
}
header,
footer,
article,
section,
nav,
figure,
address,
hgroup,
abbr,
figcaption,
aside {
display: block;
padding: 0;
margin: 0;
}
abbr {
display: inline;
}
address {
font-style: normal;
}
a {
color: #21759b;
text-decoration: none;
cursor: pointer;
outline: none;
}
a:hover {
color: #d54e21;
-webkit-transition: color .3s ease-in-out;
-moz-transition: color .3s ease-in-out;
-ms-transition: color .3s ease-in-out;
-o-transition: color .3s ease-in-out;
transition: color .3s ease-in-out;
}
p {
padding: 0 0 20px;
margin: 0;
}
ol,
ul,
li,
dl,
dt,
dd {
padding: 0;
margin: 0;
}
ol,
ul {
margin: 0 0 20px;
}
ol {
list-style-position: inside;
}
ol ol,
ol ul,
ul ol,
ul ul {
padding-left: 20px;
margin-bottom: 0;
}
ol li {
line-height: 24px;
}
ul li {
list-style: disc inside;
line-height: 24px;
}
img {
padding: 0;
border: 0;
}
a img {
border: 0;
display: inline-block;
}
figure img {
display: block;
}
.max-width,
.full-width {
display: block;
height: auto;
max-width: 100%;
}
.full-width {
min-width: 100%;
}
img.max-width,
img.full-width {
image-rendering: optimizeQuality;
-ms-interpolation-mode: bicubic;
}
div {
text-align: left;
padding: 0;
margin: 0;
}
q,
blockquote,
code {
padding: 0;
margin: 0;
}
small {
font-size: 11px;
line-height: 16px;
}
blockquote {
font: italic 16px/24px Georgia, Times, 'Century Schoolbook L', serif;
padding: 10px 20px 10px 30px;
margin: 0;
position: relative;
vertical-align: baseline;
}
q {
font-family: Georgia, Times, 'Century Schoolbook L', serif;
font-style: italic;
padding: 0;
margin: 0;
}
table {
margin-bottom: 20px;
}
table.table {
width: 100%;
}
code {
font:13px/20px 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
background: #f5f5f5;
padding: 15px;
margin: 10px 0 20px;
display: block;
position: relative;
}
dl {
padding-left: 20px;
}
dt {
font-weight: bold;
padding-bottom: 10px;
}
dd {
padding-bottom: 20px;
}
object,
video,
audio,
embed {
display: block;
}
video {
background-color: #000000;
}
h1,
h2,
h3,
h4,
h5,
h6 {
padding: 0;
margin: 0 0 20px;
}
h1 {
font: 28px/45px 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
}
h2 {
font: 24px/36px 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
}
h3 {
font: 20px/27px 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
}
h4 {
font: 18px/24px 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
}
h5 {
font: 16px/21px 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
}
h6 {
font: 14px/20px 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
}
.fl {
float: left;
}
.fr {
float: right;
}
.dn {
display: none;
}
.cl,
.clear {
border-top: 1px dashed #f5f5f5;
clear: both;
}
.ovh {
overflow: hidden;
}
hr,
.divider {
border-top: 1px dotted #dedede;
height: 1px;
margin: 20px 0 30px;
clear: both;
}
hr {
background: none;
color: transparent;
}
.one_first,
.one_half,
.one_third,
.two_third,
.one_fourth,
.three_fourth {
float: left;
margin-bottom: 20px;
margin-right: 4%;
position: relative;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.one_half.last,
.one_third.last,
.two_third.last,
.one_fourth.last,
.three_fourth.last {
float: right;
margin-right: 0;
}
.one_first {
width: 100%;
float: none;
margin-right: 0;
overflow: hidden;
}
.one_half,
.one_half.last {
width: 48%;
}
.one_third,
.one_third.last {
width: 30.65%;
}
.two_third ,
.two_third.last {
width: 65.35%;
}
.one_fourth,
.one_fourth.last {
width: 22%;
}
.three_fourth,
.three_fourth.last {
width: 74%;
}
.one_half + .one_half,
.one_third + .two_third,
.two_third + .one_third,
.one_third + .one_third + .one_third,
.one_fourth + .one_fourth + .one_half,
.one_fourth + .one_half + .one_fourth,
.one_half + .one_fourth + .one_fourth,
.one_fourth + .three_fourth,
.three_fourth + .one_fourth,
.one_fourth + .one_fourth + .one_fourth + .one_fourth {
float: right;
margin-right: 0;
}
.alignleft {
margin: 0 20px 20px 0;
}
.alignright {
margin: 0 0 20px 20px;
}
.aligncenter {
text-align: center;
margin: 0 auto;
}
.wp-caption {
padding: 5px;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.wp-caption a,
.wp-caption img {
display: block;
width: 100%;
}
.wp-caption-dd {
font-size: 13px;
line-height: 20px;
text-align: center;
padding: 0 0 10px;
margin: -5px 0 0;
} | public/denta/framework/admin/inc/css/custom-editor-style.css | body {
font: 13px/20px Arial, Helvetica, 'Nimbus Sans L', sans-serif;
text-align: left;
padding: 0;
margin: 20px 10px;
text-rendering: optimizeLegibility;
}
header,
footer,
article,
section,
nav,
figure,
address,
hgroup,
abbr,
figcaption,
aside {
display: block;
padding: 0;
margin: 0;
}
abbr {
display: inline;
}
address {
font-style: normal;
}
a {
color: #21759b;
text-decoration: none;
cursor: pointer;
outline: none;
}
a:hover {
color: #d54e21;
-webkit-transition: color .3s ease-in-out;
-moz-transition: color .3s ease-in-out;
-ms-transition: color .3s ease-in-out;
-o-transition: color .3s ease-in-out;
transition: color .3s ease-in-out;
}
p {
padding: 0 0 20px;
margin: 0;
}
ol,
ul,
li,
dl,
dt,
dd {
padding: 0;
margin: 0;
}
ol,
ul {
margin: 0 0 20px;
}
ol {
list-style-position: inside;
}
ol ol,
ol ul,
ul ol,
ul ul {
padding-left: 20px;
margin-bottom: 0;
}
ol li {
line-height: 24px;
}
ul li {
list-style: disc inside;
line-height: 24px;
}
img {
padding: 0;
border: 0;
}
a img {
border: 0;
display: inline-block;
}
figure img {
display: block;
}
.max-width,
.full-width {
display: block;
height: auto;
max-width: 100%;
}
.full-width {
min-width: 100%;
}
img.max-width,
img.full-width {
image-rendering: optimizeQuality;
-ms-interpolation-mode: bicubic;
}
div {
text-align: left;
padding: 0;
margin: 0;
}
q,
blockquote,
code {
padding: 0;
margin: 0;
}
small {
font-size: 11px;
line-height: 16px;
}
blockquote {
font: italic 16px/24px Georgia, Times, 'Century Schoolbook L', serif;
padding: 10px 20px 10px 30px;
margin: 0;
position: relative;
vertical-align: baseline;
}
q {
font-family: Georgia, Times, 'Century Schoolbook L', serif;
font-style: italic;
padding: 0;
margin: 0;
}
table {
margin-bottom: 20px;
}
table.table {
width: 100%;
}
code {
font:13px/20px 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
background: #f5f5f5;
padding: 15px;
margin: 10px 0 20px;
display: block;
position: relative;
}
dl {
padding-left: 20px;
}
dt {
font-weight: bold;
padding-bottom: 10px;
}
dd {
padding-bottom: 20px;
}
object,
video,
audio,
embed {
display: block;
}
video {
background-color: #000000;
}
h1,
h2,
h3,
h4,
h5,
h6 {
padding: 0;
margin: 0 0 20px;
}
h1 {
font: 28px/45px 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
}
h2 {
font: 24px/36px 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
}
h3 {
font: 20px/27px 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
}
h4 {
font: 18px/24px 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
}
h5 {
font: 16px/21px 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
}
h6 {
font: 14px/20px 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
}
.fl {
float: left;
}
.fr {
float: right;
}
.dn {
display: none;
}
.cl,
.clear {
border-top: 1px dashed #f5f5f5;
clear: both;
}
.ovh {
overflow: hidden;
}
hr,
.divider {
border-top: 1px dotted #dedede;
height: 1px;
margin: 20px 0 30px;
clear: both;
}
hr {
background: none;
color: transparent;
}
.one_first,
.one_half,
.one_third,
.two_third,
.one_fourth,
.three_fourth {
float: left;
margin-bottom: 20px;
margin-right: 4%;
position: relative;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.one_half.last,
.one_third.last,
.two_third.last,
.one_fourth.last,
.three_fourth.last {
float: right;
margin-right: 0;
}
.one_first {
width: 100%;
float: none;
margin-right: 0;
overflow: hidden;
}
.one_half,
.one_half.last {
width: 48%;
}
.one_third,
.one_third.last {
width: 30.65%;
}
.two_third ,
.two_third.last {
width: 65.35%;
}
.one_fourth,
.one_fourth.last {
width: 22%;
}
.three_fourth,
.three_fourth.last {
width: 74%;
}
.one_half + .one_half,
.one_third + .two_third,
.two_third + .one_third,
.one_third + .one_third + .one_third,
.one_fourth + .one_fourth + .one_half,
.one_fourth + .one_half + .one_fourth,
.one_half + .one_fourth + .one_fourth,
.one_fourth + .three_fourth,
.three_fourth + .one_fourth,
.one_fourth + .one_fourth + .one_fourth + .one_fourth {
float: right;
margin-right: 0;
}
.alignleft {
margin: 0 20px 20px 0;
}
.alignright {
margin: 0 0 20px 20px;
}
.aligncenter {
text-align: center;
margin: 0 auto;
}
.wp-caption {
padding: 5px;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.wp-caption a,
.wp-caption img {
display: block;
width: 100%;
}
.wp-caption-dd {
font-size: 13px;
line-height: 20px;
text-align: center;
padding: 0 0 10px;
margin: -5px 0 0;
} | 0.298083 | 0.077553 |